File: C:/ProgramData/MySQL/MySQL Server 5.7/Backup/mysql_dump-2023-02-19T18.04.40.sql
-- MySQL dump 10.13 Distrib 5.7.41, for Win64 (x86_64)
--
-- Host: localhost Database:
-- ------------------------------------------------------
-- Server version 5.7.41-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Current Database: `mysql`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `mysql`;
--
-- Table structure for table `columns_priv`
--
DROP TABLE IF EXISTS `columns_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `columns_priv` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '',
`Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`Column_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '',
PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `columns_priv`
--
LOCK TABLES `columns_priv` WRITE;
/*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */;
/*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `db`
--
DROP TABLE IF EXISTS `db`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `db` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '',
`Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
PRIMARY KEY (`Host`,`Db`,`User`),
KEY `User` (`User`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `db`
--
LOCK TABLES `db` WRITE;
/*!40000 ALTER TABLE `db` DISABLE KEYS */;
INSERT INTO `db` VALUES ('localhost','performance_schema','mysql.session','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N'),('localhost','sys','mysql.sys','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','Y');
/*!40000 ALTER TABLE `db` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `engine_cost`
--
DROP TABLE IF EXISTS `engine_cost`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `engine_cost` (
`engine_name` varchar(64) NOT NULL,
`device_type` int(11) NOT NULL,
`cost_name` varchar(64) NOT NULL,
`cost_value` float DEFAULT NULL,
`last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`comment` varchar(1024) DEFAULT NULL,
PRIMARY KEY (`cost_name`,`engine_name`,`device_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `engine_cost`
--
LOCK TABLES `engine_cost` WRITE;
/*!40000 ALTER TABLE `engine_cost` DISABLE KEYS */;
INSERT INTO `engine_cost` VALUES ('default',0,'io_block_read_cost',NULL,'2023-02-19 16:45:26',NULL),('default',0,'memory_block_read_cost',NULL,'2023-02-19 16:45:26',NULL);
/*!40000 ALTER TABLE `engine_cost` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `event`
--
DROP TABLE IF EXISTS `event`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `event` (
`db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`name` char(64) NOT NULL DEFAULT '',
`body` longblob NOT NULL,
`definer` char(93) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`execute_at` datetime DEFAULT NULL,
`interval_value` int(11) DEFAULT NULL,
`interval_field` enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') DEFAULT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_executed` datetime DEFAULT NULL,
`starts` datetime DEFAULT NULL,
`ends` datetime DEFAULT NULL,
`status` enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') NOT NULL DEFAULT 'ENABLED',
`on_completion` enum('DROP','PRESERVE') NOT NULL DEFAULT 'DROP',
`sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '',
`comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`originator` int(10) unsigned NOT NULL,
`time_zone` char(64) CHARACTER SET latin1 NOT NULL DEFAULT 'SYSTEM',
`character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`body_utf8` longblob,
PRIMARY KEY (`db`,`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Events';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `event`
--
LOCK TABLES `event` WRITE;
/*!40000 ALTER TABLE `event` DISABLE KEYS */;
/*!40000 ALTER TABLE `event` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `func`
--
DROP TABLE IF EXISTS `func`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `func` (
`name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`ret` tinyint(1) NOT NULL DEFAULT '0',
`dl` char(128) COLLATE utf8_bin NOT NULL DEFAULT '',
`type` enum('function','aggregate') CHARACTER SET utf8 NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User defined functions';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `func`
--
LOCK TABLES `func` WRITE;
/*!40000 ALTER TABLE `func` DISABLE KEYS */;
/*!40000 ALTER TABLE `func` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `gtid_executed`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE IF NOT EXISTS `gtid_executed` (
`source_uuid` char(36) NOT NULL COMMENT 'uuid of the source where the transaction was originally executed.',
`interval_start` bigint(20) NOT NULL COMMENT 'First number of interval.',
`interval_end` bigint(20) NOT NULL COMMENT 'Last number of interval.',
PRIMARY KEY (`source_uuid`,`interval_start`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `help_category`
--
DROP TABLE IF EXISTS `help_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `help_category` (
`help_category_id` smallint(5) unsigned NOT NULL,
`name` char(64) NOT NULL,
`parent_category_id` smallint(5) unsigned DEFAULT NULL,
`url` text NOT NULL,
PRIMARY KEY (`help_category_id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='help categories';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `help_category`
--
LOCK TABLES `help_category` WRITE;
/*!40000 ALTER TABLE `help_category` DISABLE KEYS */;
INSERT INTO `help_category` VALUES (0,'Contents',0,''),(1,'Help Metadata',0,''),(2,'Data Types',0,''),(3,'Administration',0,''),(4,'Functions',0,''),(5,'Enterprise Encryption Functions',4,''),(6,'Procedures',0,''),(7,'Language Structure',0,''),(8,'Geographic Features',0,''),(9,'MBR',8,''),(10,'WKT',8,''),(11,'Comparison Operators',4,''),(12,'Logical Operators',4,''),(13,'Flow Control Functions',4,''),(14,'Numeric Functions',4,''),(15,'Date and Time Functions',4,''),(16,'String Functions',4,''),(17,'Cast Functions and Operators',4,''),(18,'XML',4,''),(19,'Bit Functions',4,''),(20,'Encryption Functions',4,''),(21,'Locking Functions',4,''),(22,'Information Functions',4,''),(23,'Spatial Functions',4,''),(24,'WKT Functions',23,''),(25,'WKB Functions',23,''),(26,'Geometry Constructors',23,''),(27,'Geometry Property Functions',23,''),(28,'Point Property Functions',23,''),(29,'LineString Property Functions',23,''),(30,'Polygon Property Functions',23,''),(31,'GeometryCollection Property Functions',23,''),(32,'Geometry Relation Functions',23,''),(33,'MBR Functions',23,''),(34,'GTID',4,''),(35,'Aggregate Functions and Modifiers',4,''),(36,'GROUP BY Functions and Modifiers',4,''),(37,'Miscellaneous Functions',4,''),(38,'Data Definition',0,''),(39,'Data Manipulation',0,''),(40,'Transactions',0,''),(41,'Replication Statements',0,''),(42,'Prepared Statements',0,''),(43,'Compound Statements',0,''),(44,'Account Management',0,''),(45,'Table Maintenance',0,''),(46,'Loadable Functions',0,''),(47,'Plugins',0,''),(48,'Utility',0,''),(49,'Storage Engines',0,'');
/*!40000 ALTER TABLE `help_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `help_keyword`
--
DROP TABLE IF EXISTS `help_keyword`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `help_keyword` (
`help_keyword_id` int(10) unsigned NOT NULL,
`name` char(64) NOT NULL,
PRIMARY KEY (`help_keyword_id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='help keywords';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `help_keyword`
--
LOCK TABLES `help_keyword` WRITE;
/*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */;
INSERT INTO `help_keyword` VALUES (114,'%'),(263,'&'),(478,'(JSON'),(92,'*'),(90,'+'),(91,'-'),(479,'->'),(481,'->>'),(93,'/'),(81,':='),(65,'<'),(265,'<<'),(64,'<='),(62,'<=>'),(63,'<>'),(61,'='),(67,'>'),(66,'>='),(266,'>>'),(96,'ABS'),(831,'ACCOUNT'),(97,'ACOS'),(633,'ACTION'),(55,'ADD'),(126,'ADDDATE'),(127,'ADDTIME'),(269,'AES_DECRYPT'),(270,'AES_ENCRYPT'),(569,'AFTER'),(249,'AGAINST'),(863,'AGGREGATE'),(570,'ALGORITHM'),(698,'ALL'),(56,'ALTER'),(15,'ANALYSE'),(571,'ANALYZE'),(68,'AND'),(531,'ANY_VALUE'),(634,'ARCHIVE'),(409,'AREA'),(699,'AS'),(373,'ASBINARY'),(513,'ASC'),(191,'ASCII'),(98,'ASIN'),(375,'ASTEXT'),(374,'ASWKB'),(376,'ASWKT'),(6,'ASYMMETRIC_DECRYPT'),(7,'ASYMMETRIC_DERIVE'),(8,'ASYMMETRIC_ENCRYPT'),(9,'ASYMMETRIC_SIGN'),(10,'ASYMMETRIC_VERIFY'),(623,'AT'),(99,'ATAN'),(100,'ATAN2'),(722,'AUTOCOMMIT'),(658,'AUTOEXTEND_SIZE'),(572,'AUTO_INCREMENT'),(507,'AVG'),(573,'AVG_ROW_LENGTH'),(750,'BEFORE'),(723,'BEGIN'),(291,'BENCHMARK'),(69,'BETWEEN'),(192,'BIN'),(254,'BINARY'),(886,'BINLOG'),(509,'BIT_AND'),(268,'BIT_COUNT'),(193,'BIT_LENGTH'),(510,'BIT_OR'),(511,'BIT_XOR'),(23,'BOOL'),(24,'BOOLEAN'),(236,'BOTH'),(627,'BTREE'),(424,'BUFFER'),(514,'BY'),(48,'BYTE'),(17,'CACHE'),(666,'CALL'),(635,'CASCADE'),(82,'CASE'),(255,'CAST'),(812,'CATALOG_NAME'),(101,'CEIL'),(102,'CEILING'),(410,'CENTROID'),(724,'CHAIN'),(574,'CHANGE'),(755,'CHANNEL'),(49,'CHAR'),(45,'CHARACTER'),(195,'CHARACTER_LENGTH'),(292,'CHARSET'),(194,'CHAR_LENGTH'),(575,'CHECK'),(576,'CHECKSUM'),(832,'CIPHER'),(813,'CLASS_ORIGIN'),(844,'CLIENT'),(672,'CLOSE'),(71,'COALESCE'),(889,'CODE'),(293,'COERCIBILITY'),(546,'COLLATE'),(294,'COLLATION'),(577,'COLUMN'),(578,'COLUMNS'),(814,'COLUMN_NAME'),(552,'COMMENT'),(725,'COMMIT'),(739,'COMMITTED'),(636,'COMPACT'),(553,'COMPLETION'),(271,'COMPRESS'),(637,'COMPRESSED'),(579,'COMPRESSION'),(196,'CONCAT'),(197,'CONCAT_WS'),(685,'CONCURRENT'),(808,'CONDITION'),(580,'CONNECTION'),(295,'CONNECTION_ID'),(726,'CONSISTENT'),(581,'CONSTRAINT'),(815,'CONSTRAINT_CATALOG'),(816,'CONSTRAINT_NAME'),(817,'CONSTRAINT_SCHEMA'),(455,'CONTAINS'),(809,'CONTINUE'),(103,'CONV'),(259,'CONVERT'),(128,'CONVERT_TZ'),(425,'CONVEXHULL'),(104,'COS'),(105,'COT'),(512,'COUNT'),(106,'CRC32'),(57,'CREATE'),(11,'CREATE_ASYMMETRIC_PRIV_KEY'),(12,'CREATE_ASYMMETRIC_PUB_KEY'),(13,'CREATE_DH_PARAMETERS'),(14,'CREATE_DIGEST'),(717,'CROSS'),(433,'CROSSES'),(638,'CSV'),(129,'CURDATE'),(130,'CURRENT_DATE'),(131,'CURRENT_TIME'),(132,'CURRENT_TIMESTAMP'),(296,'CURRENT_USER'),(806,'CURSOR'),(818,'CURSOR_NAME'),(133,'CURTIME'),(547,'DATA'),(297,'DATABASE'),(872,'DATABASES'),(618,'DATAFILE'),(42,'DATE'),(134,'DATEDIFF'),(256,'DATETIME'),(135,'DATE_ADD'),(150,'DATE_FORMAT'),(136,'DATE_SUB'),(137,'DAY'),(151,'DAYNAME'),(152,'DAYOFMONTH'),(153,'DAYOFWEEK'),(154,'DAYOFYEAR'),(138,'DAY_HOUR'),(139,'DAY_MINUTE'),(140,'DAY_SECOND'),(797,'DEALLOCATE'),(34,'DEC'),(37,'DECIMAL'),(798,'DECLARE'),(272,'DECODE'),(2,'DEFAULT'),(788,'DEFAULT_AUTH'),(554,'DEFINER'),(107,'DEGREES'),(679,'DELAYED'),(582,'DELAY_KEY_WRITE'),(639,'DELETE'),(515,'DESC'),(904,'DESCRIBE'),(273,'DES_DECRYPT'),(274,'DES_ENCRYPT'),(894,'DES_KEY_FILE'),(819,'DIAGNOSTICS'),(381,'DIMENSION'),(548,'DIRECTORY'),(555,'DISABLE'),(583,'DISCARD'),(456,'DISJOINT'),(434,'DISTANCE'),(508,'DISTINCT'),(700,'DISTINCTROW'),(94,'DIV'),(556,'DO'),(584,'DROP'),(716,'DUAL'),(701,'DUMPFILE'),(680,'DUPLICATE'),(640,'DYNAMIC'),(83,'ELSE'),(799,'ELSEIF'),(198,'ELT'),(557,'ENABLE'),(686,'ENCLOSED'),(275,'ENCODE'),(276,'ENCRYPT'),(585,'ENCRYPTION'),(84,'END'),(397,'ENDPOINT'),(624,'ENDS'),(586,'ENGINE'),(873,'ENGINES'),(382,'ENVELOPE'),(457,'EQUALS'),(895,'ERROR'),(874,'ERRORS'),(245,'ESCAPE'),(687,'ESCAPED'),(558,'EVENT'),(887,'EVENTS'),(625,'EVERY'),(587,'EXCHANGE'),(796,'EXECUTE'),(622,'EXISTS'),(810,'EXIT'),(108,'EXP'),(250,'EXPANSION'),(833,'EXPIRE'),(905,'EXPLAIN'),(896,'EXPORT'),(199,'EXPORT_SET'),(861,'EXTENDED'),(659,'EXTENT_SIZE'),(411,'EXTERIORRING'),(155,'EXTRACT'),(480,'EXTRACTION)'),(260,'EXTRACTVALUE'),(21,'FALSE'),(859,'FAST'),(641,'FEDERATED'),(807,'FETCH'),(200,'FIELD'),(688,'FIELDS'),(845,'FILE'),(660,'FILE_BLOCK_SIZE'),(779,'FILTER'),(201,'FIND_IN_SET'),(588,'FIRST'),(35,'FIXED'),(38,'FLOAT4'),(39,'FLOAT8'),(109,'FLOOR'),(18,'FLUSH'),(702,'FOR'),(718,'FORCE'),(589,'FOREIGN'),(202,'FORMAT'),(298,'FOUND_ROWS'),(237,'FROM'),(203,'FROM_BASE64'),(156,'FROM_DAYS'),(157,'FROM_UNIXTIME'),(642,'FULL'),(590,'FULLTEXT'),(175,'FUNCTION'),(897,'GENERAL'),(306,'GEOMCOLLFROMTEXT'),(336,'GEOMCOLLFROMWKB'),(366,'GEOMETRYCOLLECTION'),(307,'GEOMETRYCOLLECTIONFROMTEXT'),(337,'GEOMETRYCOLLECTIONFROMWKB'),(308,'GEOMETRYFROMTEXT'),(338,'GEOMETRYFROMWKB'),(420,'GEOMETRYN'),(383,'GEOMETRYTYPE'),(309,'GEOMFROMTEXT'),(339,'GEOMFROMWKB'),(820,'GET'),(158,'GET_FORMAT'),(286,'GET_LOCK'),(398,'GLENGTH'),(740,'GLOBAL'),(846,'GRANT'),(875,'GRANTS'),(72,'GREATEST'),(565,'GROUP'),(516,'GROUP_CONCAT'),(503,'GTID_SUBSET'),(504,'GTID_SUBTRACT'),(673,'HANDLER'),(703,'HAVING'),(643,'HEAP'),(5,'HELP'),(0,'HELP_DATE'),(1,'HELP_VERSION'),(204,'HEX'),(681,'HIGH_PRIORITY'),(628,'HOST'),(876,'HOSTS'),(141,'HOUR'),(142,'HOUR_MINUTE'),(143,'HOUR_SECOND'),(696,'IDENTIFIED'),(87,'IF'),(88,'IFNULL'),(682,'IGNORE'),(756,'IGNORE_SERVER_IDS'),(591,'IMPORT'),(73,'IN'),(58,'INDEX'),(877,'INDEXES'),(534,'INET6_ATON'),(535,'INET6_NTOA'),(532,'INET_ATON'),(533,'INET_NTOA'),(689,'INFILE'),(619,'INITIAL_SIZE'),(482,'INLINE'),(719,'INNER'),(644,'INNODB'),(205,'INSERT'),(592,'INSERT_METHOD'),(867,'INSTALL'),(564,'INSTANCE'),(206,'INSTR'),(25,'INT1'),(28,'INT2'),(29,'INT3'),(31,'INT4'),(33,'INT8'),(32,'INTEGER'),(412,'INTERIORRINGN'),(458,'INTERSECTS'),(74,'INTERVAL'),(683,'INTO'),(789,'IO_THREAD'),(75,'IS'),(399,'ISCLOSED'),(384,'ISEMPTY'),(77,'ISNULL'),(741,'ISOLATION'),(385,'ISSIMPLE'),(834,'ISSUER'),(287,'IS_FREE_LOCK'),(536,'IS_IPV4'),(537,'IS_IPV4_COMPAT'),(538,'IS_IPV4_MAPPED'),(539,'IS_IPV6'),(288,'IS_USED_LOCK'),(800,'ITERATE'),(704,'JOIN'),(257,'JSON'),(486,'JSON_APPEND'),(472,'JSON_ARRAY'),(519,'JSON_ARRAYAGG'),(487,'JSON_ARRAY_APPEND'),(488,'JSON_ARRAY_INSERT'),(475,'JSON_CONTAINS'),(476,'JSON_CONTAINS_PATH'),(497,'JSON_DEPTH'),(477,'JSON_EXTRACT'),(489,'JSON_INSERT'),(484,'JSON_KEYS'),(498,'JSON_LENGTH'),(490,'JSON_MERGE'),(491,'JSON_MERGE_PATCH'),(492,'JSON_MERGE_PRESERVE'),(473,'JSON_OBJECT'),(520,'JSON_OBJECTAGG'),(501,'JSON_PRETTY'),(474,'JSON_QUOTE'),(493,'JSON_REMOVE'),(494,'JSON_REPLACE'),(485,'JSON_SEARCH'),(495,'JSON_SET'),(502,'JSON_STORAGE_SIZE'),(499,'JSON_TYPE'),(496,'JSON_UNQUOTE'),(500,'JSON_VALID'),(59,'KEY'),(593,'KEYS'),(594,'KEY_BLOCK_SIZE'),(902,'KILL'),(674,'LAST'),(159,'LAST_DAY'),(299,'LAST_INSERT_ID'),(207,'LCASE'),(238,'LEADING'),(78,'LEAST'),(801,'LEAVE'),(903,'LEAVES'),(208,'LEFT'),(209,'LENGTH'),(742,'LEVEL'),(229,'LIKE'),(667,'LIMIT'),(310,'LINEFROMTEXT'),(340,'LINEFROMWKB'),(690,'LINES'),(367,'LINESTRING'),(311,'LINESTRINGFROMTEXT'),(341,'LINESTRINGFROMWKB'),(110,'LN'),(691,'LOAD'),(210,'LOAD_FILE'),(692,'LOCAL'),(160,'LOCALTIME'),(161,'LOCALTIMESTAMP'),(211,'LOCATE'),(595,'LOCK'),(111,'LOG'),(113,'LOG10'),(112,'LOG2'),(566,'LOGFILE'),(751,'LOGS'),(53,'LONG'),(54,'LONGBINARY'),(802,'LOOP'),(212,'LOWER'),(668,'LOW_PRIORITY'),(213,'LPAD'),(214,'LTRIM'),(162,'MAKEDATE'),(163,'MAKETIME'),(215,'MAKE_SET'),(752,'MASTER'),(757,'MASTER_AUTO_POSITION'),(758,'MASTER_BIND'),(759,'MASTER_CONNECT_RETRY'),(760,'MASTER_HEARTBEAT_PERIOD'),(761,'MASTER_HOST'),(762,'MASTER_LOG_FILE'),(763,'MASTER_LOG_POS'),(764,'MASTER_PASSWORD'),(765,'MASTER_PORT'),(540,'MASTER_POS_WAIT'),(766,'MASTER_RETRY_COUNT'),(767,'MASTER_SSL'),(768,'MASTER_SSL_CA'),(769,'MASTER_SSL_CERT'),(770,'MASTER_SSL_CIPHER'),(771,'MASTER_SSL_CRL'),(772,'MASTER_SSL_CRLPATH'),(773,'MASTER_SSL_KEY'),(774,'MASTER_SSL_VERIFY_SERVER_CERT'),(775,'MASTER_TLS_VERSION'),(776,'MASTER_USER'),(251,'MATCH'),(521,'MAX'),(835,'MAX_CONNECTIONS_PER_HOUR'),(836,'MAX_QUERIES_PER_HOUR'),(596,'MAX_ROWS'),(661,'MAX_SIZE'),(837,'MAX_UPDATES_PER_HOUR'),(838,'MAX_USER_CONNECTIONS'),(445,'MBRCONTAINS'),(446,'MBRCOVEREDBY'),(447,'MBRCOVERS'),(448,'MBRDISJOINT'),(449,'MBREQUAL'),(450,'MBREQUALS'),(451,'MBRINTERSECTS'),(452,'MBROVERLAPS'),(453,'MBRTOUCHES'),(454,'MBRWITHIN'),(277,'MD5'),(860,'MEDIUM'),(705,'MEMORY'),(645,'MERGE'),(821,'MESSAGE_TEXT'),(164,'MICROSECOND'),(216,'MID'),(30,'MIDDLEINT'),(522,'MIN'),(144,'MINUTE'),(145,'MINUTE_SECOND'),(597,'MIN_ROWS'),(312,'MLINEFROMTEXT'),(342,'MLINEFROMWKB'),(95,'MOD'),(252,'MODE'),(598,'MODIFY'),(146,'MONTH'),(165,'MONTHNAME'),(314,'MPOINTFROMTEXT'),(344,'MPOINTFROMWKB'),(316,'MPOLYFROMTEXT'),(346,'MPOLYFROMWKB'),(646,'MRG_MYISAM'),(368,'MULTILINESTRING'),(313,'MULTILINESTRINGFROMTEXT'),(343,'MULTILINESTRINGFROMWKB'),(369,'MULTIPOINT'),(315,'MULTIPOINTFROMTEXT'),(345,'MULTIPOINTFROMWKB'),(370,'MULTIPOLYGON'),(317,'MULTIPOLYGONFROMTEXT'),(347,'MULTIPOLYGONFROMWKB'),(878,'MUTEX'),(647,'MYISAM'),(822,'MYSQL_ERRNO'),(549,'NAME'),(871,'NAMES'),(541,'NAME_CONST'),(46,'NATIONAL'),(720,'NATURAL'),(47,'NCHAR'),(648,'NDB'),(649,'NDBCLUSTER'),(839,'NEVER'),(675,'NEXT'),(650,'NO'),(662,'NODEGROUP'),(847,'NONE'),(70,'NOT'),(166,'NOW'),(858,'NO_WRITE_TO_BINLOG'),(76,'NULL'),(89,'NULLIF'),(823,'NUMBER'),(36,'NUMERIC'),(421,'NUMGEOMETRIES'),(413,'NUMINTERIORRINGS'),(400,'NUMPOINTS'),(50,'NVARCHAR'),(217,'OCT'),(218,'OCTET_LENGTH'),(706,'OFFSET'),(559,'ON'),(727,'ONLY'),(676,'OPEN'),(599,'OPTIMIZE'),(898,'OPTIMIZER_COSTS'),(848,'OPTION'),(693,'OPTIONALLY'),(567,'OPTIONS'),(79,'OR'),(219,'ORD'),(517,'ORDER'),(721,'OUTER'),(707,'OUTFILE'),(459,'OVERLAPS'),(629,'OWNER'),(600,'PACK_KEYS'),(601,'PARSER'),(651,'PARTIAL'),(602,'PARTITION'),(603,'PARTITIONING'),(906,'PARTITIONS'),(278,'PASSWORD'),(483,'PATH)'),(167,'PERIOD_ADD'),(168,'PERIOD_DIFF'),(115,'PI'),(868,'PLUGIN'),(890,'PLUGINS'),(790,'PLUGIN_DIR'),(371,'POINT'),(318,'POINTFROMTEXT'),(348,'POINTFROMWKB'),(401,'POINTN'),(319,'POLYFROMTEXT'),(349,'POLYFROMWKB'),(372,'POLYGON'),(320,'POLYGONFROMTEXT'),(350,'POLYGONFROMWKB'),(630,'PORT'),(220,'POSITION'),(116,'POW'),(117,'POWER'),(40,'PRECISION'),(747,'PREPARE'),(560,'PRESERVE'),(677,'PREV'),(604,'PRIMARY'),(849,'PRIVILEGES'),(16,'PROCEDURE'),(850,'PROCESS'),(879,'PROCESSLIST'),(891,'PROFILE'),(892,'PROFILES'),(856,'PROXY'),(753,'PURGE'),(169,'QUARTER'),(19,'QUERY'),(669,'QUICK'),(221,'QUOTE'),(118,'RADIANS'),(119,'RAND'),(279,'RANDOM_BYTES'),(678,'READ'),(41,'REAL'),(605,'REBUILD'),(748,'RECOVER'),(652,'REDUNDANT'),(653,'REFERENCES'),(247,'REGEXP'),(899,'RELAY'),(893,'RELAYLOG'),(777,'RELAY_LOG_FILE'),(778,'RELAY_LOG_POS'),(728,'RELEASE'),(289,'RELEASE_ALL_LOCKS'),(290,'RELEASE_LOCK'),(851,'RELOAD'),(606,'REMOVE'),(561,'RENAME'),(607,'REORGANIZE'),(608,'REPAIR'),(222,'REPEAT'),(743,'REPEATABLE'),(223,'REPLACE'),(780,'REPLICATE_DO_DB'),(781,'REPLICATE_DO_TABLE'),(782,'REPLICATE_IGNORE_DB'),(783,'REPLICATE_IGNORE_TABLE'),(784,'REPLICATE_REWRITE_DB'),(785,'REPLICATE_WILD_DO_TABLE'),(786,'REPLICATE_WILD_IGNORE_TABLE'),(787,'REPLICATION'),(840,'REQUIRE'),(20,'RESET'),(828,'RESIGNAL'),(656,'RESTRICT'),(804,'RETURN'),(824,'RETURNED_SQLSTATE'),(864,'RETURNS'),(224,'REVERSE'),(857,'REVOKE'),(225,'RIGHT'),(248,'RLIKE'),(729,'ROLLBACK'),(120,'ROUND'),(697,'ROWS'),(300,'ROW_COUNT'),(609,'ROW_FORMAT'),(226,'RPAD'),(227,'RTRIM'),(735,'SAVEPOINT'),(562,'SCHEDULE'),(301,'SCHEMA'),(880,'SCHEMAS'),(825,'SCHEMA_NAME'),(147,'SECOND'),(852,'SECURITY'),(170,'SEC_TO_TIME'),(684,'SELECT'),(518,'SEPARATOR'),(3,'SERIAL'),(744,'SERIALIZABLE'),(568,'SERVER'),(745,'SESSION'),(302,'SESSION_USER'),(550,'SET'),(280,'SHA'),(281,'SHA1'),(282,'SHA2'),(708,'SHARE'),(881,'SHOW'),(853,'SHUTDOWN'),(121,'SIGN'),(830,'SIGNAL'),(258,'SIGNED'),(122,'SIN'),(563,'SLAVE'),(542,'SLEEP'),(900,'SLOW'),(730,'SNAPSHOT'),(631,'SOCKET'),(865,'SONAME'),(228,'SOUNDEX'),(230,'SOUNDS'),(231,'SPACE'),(610,'SPATIAL'),(829,'SQLSTATE'),(791,'SQL_AFTER_GTIDS'),(792,'SQL_AFTER_MTS_GAPS'),(793,'SQL_BEFORE_GTIDS'),(709,'SQL_BIG_RESULT'),(710,'SQL_BUFFER_RESULT'),(711,'SQL_CACHE'),(712,'SQL_CALC_FOUND_ROWS'),(754,'SQL_LOG_BIN'),(713,'SQL_NO_CACHE'),(714,'SQL_SMALL_RESULT'),(794,'SQL_THREAD'),(123,'SQRT'),(386,'SRID'),(841,'SSL'),(731,'START'),(694,'STARTING'),(408,'STARTPOINT'),(626,'STARTS'),(611,'STATS_AUTO_RECALC'),(612,'STATS_PERSISTENT'),(613,'STATS_SAMPLE_PAGES'),(882,'STATUS'),(523,'STD'),(524,'STDDEV'),(525,'STDDEV_POP'),(526,'STDDEV_SAMP'),(795,'STOP'),(888,'STORAGE'),(654,'STORED'),(715,'STRAIGHT_JOIN'),(246,'STRCMP'),(866,'STRING'),(171,'STR_TO_DATE'),(414,'ST_AREA'),(377,'ST_ASBINARY'),(465,'ST_ASGEOJSON'),(379,'ST_ASTEXT'),(378,'ST_ASWKB'),(380,'ST_ASWKT'),(426,'ST_BUFFER'),(427,'ST_BUFFER_STRATEGY'),(415,'ST_CENTROID'),(435,'ST_CONTAINS'),(428,'ST_CONVEXHULL'),(436,'ST_CROSSES'),(429,'ST_DIFFERENCE'),(387,'ST_DIMENSION'),(437,'ST_DISJOINT'),(438,'ST_DISTANCE'),(467,'ST_DISTANCE_SPHERE'),(402,'ST_ENDPOINT'),(388,'ST_ENVELOPE'),(439,'ST_EQUALS'),(416,'ST_EXTERIORRING'),(461,'ST_GEOHASH'),(321,'ST_GEOMCOLLFROMTEXT'),(351,'ST_GEOMCOLLFROMWKB'),(322,'ST_GEOMETRYCOLLECTIONFROMTEXT'),(352,'ST_GEOMETRYCOLLECTIONFROMWKB'),(323,'ST_GEOMETRYFROMTEXT'),(353,'ST_GEOMETRYFROMWKB'),(422,'ST_GEOMETRYN'),(389,'ST_GEOMETRYTYPE'),(466,'ST_GEOMFROMGEOJSON'),(324,'ST_GEOMFROMTEXT'),(354,'ST_GEOMFROMWKB'),(417,'ST_INTERIORRINGN'),(430,'ST_INTERSECTION'),(440,'ST_INTERSECTS'),(403,'ST_ISCLOSED'),(390,'ST_ISEMPTY'),(391,'ST_ISSIMPLE'),(468,'ST_ISVALID'),(462,'ST_LATFROMGEOHASH'),(404,'ST_LENGTH'),(325,'ST_LINEFROMTEXT'),(355,'ST_LINEFROMWKB'),(326,'ST_LINESTRINGFROMTEXT'),(356,'ST_LINESTRINGFROMWKB'),(463,'ST_LONGFROMGEOHASH'),(469,'ST_MAKEENVELOPE'),(327,'ST_MLINEFROMTEXT'),(357,'ST_MLINEFROMWKB'),(329,'ST_MPOINTFROMTEXT'),(359,'ST_MPOINTFROMWKB'),(331,'ST_MPOLYFROMTEXT'),(361,'ST_MPOLYFROMWKB'),(328,'ST_MULTILINESTRINGFROMTEXT'),(358,'ST_MULTILINESTRINGFROMWKB'),(330,'ST_MULTIPOINTFROMTEXT'),(360,'ST_MULTIPOINTFROMWKB'),(332,'ST_MULTIPOLYGONFROMTEXT'),(362,'ST_MULTIPOLYGONFROMWKB'),(423,'ST_NUMGEOMETRIES'),(418,'ST_NUMINTERIORRING'),(419,'ST_NUMINTERIORRINGS'),(405,'ST_NUMPOINTS'),(441,'ST_OVERLAPS'),(464,'ST_POINTFROMGEOHASH'),(333,'ST_POINTFROMTEXT'),(363,'ST_POINTFROMWKB'),(406,'ST_POINTN'),(334,'ST_POLYFROMTEXT'),(364,'ST_POLYFROMWKB'),(335,'ST_POLYGONFROMTEXT'),(365,'ST_POLYGONFROMWKB'),(470,'ST_SIMPLIFY'),(392,'ST_SRID'),(407,'ST_STARTPOINT'),(431,'ST_SYMDIFFERENCE'),(442,'ST_TOUCHES'),(432,'ST_UNION'),(471,'ST_VALIDATE'),(443,'ST_WITHIN'),(393,'ST_X'),(394,'ST_Y'),(826,'SUBCLASS_ORIGIN'),(172,'SUBDATE'),(842,'SUBJECT'),(232,'SUBSTR'),(233,'SUBSTRING'),(234,'SUBSTRING_INDEX'),(173,'SUBTIME'),(527,'SUM'),(854,'SUPER'),(174,'SYSDATE'),(303,'SYSTEM_USER'),(60,'TABLE'),(737,'TABLES'),(614,'TABLESPACE'),(827,'TABLE_NAME'),(124,'TAN'),(665,'TEMPORARY'),(695,'TERMINATED'),(85,'THEN'),(44,'TIME'),(176,'TIMEDIFF'),(43,'TIMESTAMP'),(177,'TIMESTAMPADD'),(178,'TIMESTAMPDIFF'),(179,'TIME_FORMAT'),(180,'TIME_TO_SEC'),(736,'TO'),(444,'TOUCHES'),(235,'TO_BASE64'),(181,'TO_DAYS'),(182,'TO_SECONDS'),(907,'TRADITIONAL'),(239,'TRAILING'),(732,'TRANSACTION'),(664,'TRIGGER'),(883,'TRIGGERS'),(240,'TRIM'),(22,'TRUE'),(125,'TRUNCATE'),(615,'TYPE'),(241,'UCASE'),(746,'UNCOMMITTED'),(283,'UNCOMPRESS'),(284,'UNCOMPRESSED_LENGTH'),(811,'UNDO'),(242,'UNHEX'),(869,'UNINSTALL'),(616,'UNION'),(617,'UNIQUE'),(183,'UNIX_TIMESTAMP'),(738,'UNLOCK'),(26,'UNSIGNED'),(803,'UNTIL'),(657,'UPDATE'),(261,'UPDATEXML'),(551,'UPGRADE'),(243,'UPPER'),(855,'USAGE'),(663,'USE'),(304,'USER'),(901,'USER_RESOURCES'),(862,'USE_FRM'),(670,'USING'),(184,'UTC_DATE'),(185,'UTC_TIME'),(186,'UTC_TIMESTAMP'),(543,'UUID'),(544,'UUID_SHORT'),(285,'VALIDATE_PASSWORD_STRENGTH'),(4,'VALUE'),(545,'VALUES'),(51,'VARCHARACTER'),(870,'VARIABLE'),(884,'VARIABLES'),(530,'VARIANCE'),(52,'VARYING'),(528,'VAR_POP'),(529,'VAR_SAMP'),(305,'VERSION'),(621,'VIEW'),(655,'VIRTUAL'),(620,'WAIT'),(505,'WAIT_FOR_EXECUTED_GTID_SET'),(506,'WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS'),(885,'WARNINGS'),(187,'WEEK'),(188,'WEEKDAY'),(189,'WEEKOFYEAR'),(244,'WEIGHT_STRING'),(86,'WHEN'),(671,'WHERE'),(805,'WHILE'),(253,'WITH'),(460,'WITHIN'),(733,'WORK'),(632,'WRAPPER'),(734,'WRITE'),(395,'X'),(843,'X509'),(749,'XA'),(80,'XOR'),(396,'Y'),(148,'YEAR'),(190,'YEARWEEK'),(149,'YEAR_MONTH'),(27,'ZEROFILL'),(264,'^'),(262,'|'),(267,'~');
/*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `help_relation`
--
DROP TABLE IF EXISTS `help_relation`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `help_relation` (
`help_topic_id` int(10) unsigned NOT NULL,
`help_keyword_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`help_keyword_id`,`help_topic_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='keyword-topic relation';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `help_relation`
--
LOCK TABLES `help_relation` WRITE;
/*!40000 ALTER TABLE `help_relation` DISABLE KEYS */;
INSERT INTO `help_relation` VALUES (0,0),(1,1),(2,2),(471,2),(486,2),(487,2),(494,2),(497,2),(498,2),(505,2),(506,2),(527,2),(532,2),(563,2),(581,2),(582,2),(2,3),(505,3),(2,4),(527,4),(532,4),(579,4),(580,4),(3,5),(656,5),(4,6),(5,7),(6,8),(7,9),(8,10),(9,11),(10,12),(11,13),(12,14),(13,15),(13,16),(492,16),(502,16),(503,16),(514,16),(515,16),(533,16),(601,16),(613,16),(632,16),(633,16),(14,17),(647,17),(648,17),(650,17),(651,17),(14,18),(648,18),(14,19),(238,19),(648,19),(649,19),(651,19),(14,20),(550,20),(554,20),(651,20),(15,21),(16,21),(15,22),(16,22),(18,23),(19,23),(18,24),(238,24),(18,25),(18,26),(22,26),(24,26),(25,26),(27,26),(28,26),(240,26),(18,27),(22,27),(24,27),(25,27),(27,27),(28,27),(20,28),(21,29),(21,30),(22,31),(22,32),(240,32),(593,32),(24,33),(25,34),(25,35),(505,35),(25,36),(26,37),(240,37),(593,37),(27,38),(28,39),(28,40),(28,41),(593,41),(30,42),(131,42),(133,42),(240,42),(32,43),(167,43),(33,44),(165,44),(240,44),(35,45),(37,45),(486,45),(487,45),(494,45),(497,45),(498,45),(505,45),(530,45),(531,45),(533,45),(598,45),(599,45),(601,45),(605,45),(35,46),(37,46),(35,47),(36,48),(36,49),(186,49),(240,49),(37,50),(37,51),(37,52),(46,53),(46,54),(55,55),(494,55),(495,55),(507,55),(55,56),(486,56),(487,56),(488,56),(489,56),(490,56),(491,56),(492,56),(493,56),(494,56),(495,56),(496,56),(581,56),(584,56),(55,57),(497,57),(498,57),(499,57),(500,57),(501,57),(502,57),(503,57),(504,57),(505,57),(507,57),(508,57),(509,57),(582,57),(593,57),(601,57),(609,57),(610,57),(611,57),(612,57),(613,57),(614,57),(616,57),(55,58),(494,58),(500,58),(505,58),(513,58),(535,58),(601,58),(627,58),(647,58),(650,58),(55,59),(494,59),(505,59),(506,59),(527,59),(55,60),(494,60),(505,60),(517,60),(521,60),(522,60),(588,60),(589,60),(590,60),(591,60),(592,60),(601,60),(614,60),(641,60),(56,61),(81,61),(57,62),(58,63),(59,64),(60,65),(61,66),(62,67),(63,68),(77,68),(63,69),(64,69),(64,70),(68,70),(71,70),(73,70),(76,70),(234,70),(236,70),(497,70),(498,70),(499,70),(582,70),(65,71),(494,71),(66,72),(67,73),(68,73),(238,73),(533,73),(604,73),(607,73),(608,73),(627,73),(637,73),(69,74),(133,74),(499,74),(581,74),(582,74),(70,75),(71,75),(72,75),(73,75),(72,76),(73,76),(506,76),(74,77),(75,78),(78,79),(79,80),(80,81),(82,82),(564,82),(82,83),(564,83),(82,84),(547,84),(561,84),(564,84),(565,84),(568,84),(569,84),(571,84),(82,85),(564,85),(565,85),(82,86),(564,86),(83,87),(497,87),(498,87),(499,87),(510,87),(511,87),(512,87),(516,87),(517,87),(520,87),(565,87),(581,87),(582,87),(583,87),(594,87),(84,88),(85,89),(86,90),(87,91),(88,91),(89,92),(90,93),(91,94),(92,95),(111,95),(93,96),(94,97),(95,98),(96,99),(97,100),(98,101),(99,102),(100,103),(101,104),(102,105),(103,106),(104,107),(105,108),(106,109),(107,110),(108,111),(109,112),(110,113),(111,114),(112,115),(113,116),(114,117),(115,118),(116,119),(117,120),(118,121),(119,122),(120,123),(121,124),(122,125),(494,125),(522,125),(123,126),(124,127),(125,128),(126,129),(127,130),(128,131),(129,132),(130,133),(132,134),(133,135),(133,136),(135,136),(133,137),(136,137),(133,138),(133,139),(133,140),(133,141),(145,141),(133,142),(133,143),(133,144),(152,144),(133,145),(133,146),(153,146),(133,147),(159,147),(133,148),(181,148),(133,149),(134,150),(137,151),(138,152),(139,153),(140,154),(141,155),(142,156),(143,157),(144,158),(146,159),(147,160),(148,161),(149,162),(150,163),(151,164),(154,165),(155,166),(156,167),(157,168),(158,169),(160,170),(161,171),(162,172),(163,173),(164,174),(165,175),(167,175),(216,175),(489,175),(502,175),(503,175),(514,175),(515,175),(593,175),(594,175),(601,175),(612,175),(624,175),(625,175),(166,176),(168,177),(169,178),(170,179),(171,180),(172,181),(173,182),(174,183),(175,184),(176,185),(177,186),(178,187),(179,188),(180,189),(182,190),(183,191),(184,192),(185,193),(187,194),(188,195),(189,196),(190,197),(191,198),(192,199),(193,200),(194,201),(195,202),(653,202),(654,202),(655,202),(196,203),(197,204),(198,205),(527,205),(528,205),(529,205),(199,206),(200,207),(201,208),(535,208),(202,209),(203,210),(204,211),(205,212),(206,213),(207,214),(208,215),(209,216),(210,217),(211,218),(212,219),(213,220),(214,221),(215,222),(569,222),(216,223),(530,223),(531,223),(532,223),(217,224),(218,225),(535,225),(219,226),(220,227),(221,228),(222,229),(234,229),(601,229),(607,229),(608,229),(222,230),(223,231),(224,232),(225,233),(226,234),(227,235),(228,236),(228,237),(524,237),(533,237),(601,237),(604,237),(607,237),(608,237),(627,237),(637,237),(228,238),(228,239),(228,240),(229,241),(230,242),(231,243),(232,244),(233,245),(235,246),(236,247),(237,248),(238,249),(238,250),(238,251),(238,252),(533,252),(238,253),(494,253),(500,253),(505,253),(581,253),(582,253),(584,253),(648,253),(239,254),(240,254),(548,254),(549,254),(602,254),(603,254),(648,254),(240,255),(240,256),(240,257),(653,257),(654,257),(655,257),(240,258),(241,259),(242,260),(243,261),(244,262),(245,263),(246,264),(247,265),(248,266),(249,267),(250,268),(251,269),(252,270),(253,271),(254,272),(255,273),(256,274),(257,275),(258,276),(259,277),(260,278),(494,278),(504,278),(555,278),(581,278),(582,278),(584,278),(587,278),(261,279),(262,280),(262,281),(263,282),(264,283),(265,284),(266,285),(267,286),(268,287),(269,288),(270,289),(271,290),(272,291),(273,292),(598,292),(599,292),(274,293),(275,294),(601,294),(606,294),(276,295),(277,296),(488,296),(499,296),(278,297),(486,297),(487,297),(497,297),(498,297),(504,297),(510,297),(511,297),(601,297),(609,297),(610,297),(279,298),(280,299),(281,300),(578,300),(282,301),(486,301),(487,301),(497,301),(498,301),(510,301),(511,301),(601,301),(609,301),(610,301),(283,302),(284,303),(285,304),(504,304),(555,304),(581,304),(582,304),(583,304),(585,304),(616,304),(286,305),(287,306),(287,307),(288,308),(288,309),(289,310),(289,311),(290,312),(290,313),(291,314),(291,315),(292,316),(292,317),(293,318),(294,319),(294,320),(295,321),(295,322),(296,323),(296,324),(297,325),(297,326),(298,327),(298,328),(299,329),(299,330),(300,331),(300,332),(301,333),(302,334),(302,335),(303,336),(303,337),(304,338),(304,339),(305,340),(305,341),(306,342),(306,343),(307,344),(307,345),(308,346),(308,347),(309,348),(310,349),(310,350),(311,351),(311,352),(312,353),(312,354),(313,355),(313,356),(314,357),(314,358),(315,359),(315,360),(316,361),(316,362),(317,363),(318,364),(318,365),(319,366),(320,367),(321,368),(322,369),(323,370),(324,371),(325,372),(326,373),(326,374),(327,375),(327,376),(328,377),(328,378),(329,379),(329,380),(330,381),(331,382),(332,383),(333,384),(334,385),(335,386),(336,387),(337,388),(338,389),(339,390),(340,391),(341,392),(342,393),(343,394),(344,395),(345,396),(346,397),(347,398),(348,399),(349,400),(350,401),(351,402),(352,403),(353,404),(354,405),(355,406),(356,407),(357,408),(358,409),(359,410),(360,411),(361,412),(362,413),(363,414),(364,415),(365,416),(366,417),(367,418),(367,419),(368,420),(369,421),(370,422),(371,423),(372,424),(373,425),(374,426),(375,427),(376,428),(377,429),(378,430),(379,431),(380,432),(381,433),(382,434),(383,435),(384,436),(385,437),(386,438),(387,439),(388,440),(389,441),(390,442),(391,443),(392,444),(393,445),(394,446),(395,447),(396,448),(397,449),(398,450),(399,451),(400,452),(401,453),(402,454),(403,455),(404,456),(405,457),(406,458),(407,459),(408,460),(409,461),(410,462),(411,463),(412,464),(413,465),(414,466),(415,467),(416,468),(417,469),(418,470),(419,471),(420,472),(421,473),(422,474),(423,475),(424,476),(425,477),(426,478),(427,478),(426,479),(426,480),(427,481),(427,482),(427,483),(428,484),(429,485),(430,486),(431,487),(432,488),(433,489),(434,490),(435,491),(436,492),(437,493),(438,494),(439,495),(440,496),(441,497),(442,498),(443,499),(444,500),(445,501),(446,502),(447,503),(448,504),(449,505),(450,506),(451,507),(451,508),(456,508),(457,508),(460,508),(461,508),(466,508),(533,508),(536,508),(452,509),(453,510),(454,511),(455,512),(456,512),(622,512),(645,512),(457,513),(533,513),(457,514),(494,514),(505,514),(524,514),(530,514),(531,514),(533,514),(537,514),(581,514),(582,514),(584,514),(457,515),(533,515),(653,515),(654,515),(655,515),(457,516),(457,517),(494,517),(524,517),(533,517),(537,517),(457,518),(458,519),(459,520),(460,521),(461,522),(462,523),(463,524),(464,525),(465,526),(466,527),(467,528),(468,529),(469,530),(470,531),(472,532),(473,533),(474,534),(475,535),(476,536),(477,537),(478,538),(479,539),(480,540),(481,541),(482,542),(483,543),(484,544),(485,545),(527,545),(532,545),(486,546),(487,546),(494,546),(497,546),(498,546),(505,546),(486,547),(487,547),(494,547),(504,547),(505,547),(530,547),(486,548),(487,548),(494,548),(505,548),(486,549),(487,549),(486,550),(487,550),(494,550),(497,550),(498,550),(505,550),(506,550),(527,550),(530,550),(531,550),(532,550),(533,550),(537,550),(538,550),(539,550),(540,550),(541,550),(551,550),(579,550),(580,550),(587,550),(597,550),(598,550),(599,550),(600,550),(601,550),(605,550),(486,551),(487,551),(494,551),(589,551),(488,552),(494,552),(499,552),(500,552),(505,552),(507,552),(488,553),(499,553),(488,554),(499,554),(488,555),(494,555),(499,555),(488,556),(499,556),(525,556),(571,556),(488,557),(494,557),(499,557),(488,558),(499,558),(512,558),(611,558),(488,559),(499,559),(506,559),(535,559),(488,560),(499,560),(488,561),(494,561),(521,561),(585,561),(488,562),(499,562),(488,563),(499,563),(554,563),(555,563),(556,563),(638,563),(639,563),(651,563),(490,564),(491,565),(501,565),(507,565),(533,565),(491,566),(501,566),(507,566),(493,567),(504,567),(493,568),(504,568),(516,568),(494,569),(494,570),(494,571),(588,571),(494,572),(494,573),(505,573),(494,574),(552,574),(553,574),(494,575),(505,575),(589,575),(494,576),(505,576),(590,576),(494,577),(494,578),(505,578),(530,578),(601,578),(607,578),(608,578),(494,579),(494,580),(505,580),(649,580),(653,580),(654,580),(655,580),(494,581),(505,581),(494,582),(505,582),(494,583),(494,584),(495,584),(510,584),(511,584),(512,584),(513,584),(514,584),(515,584),(516,584),(517,584),(518,584),(519,584),(520,584),(559,584),(560,584),(583,584),(594,584),(494,585),(494,586),(495,586),(505,586),(507,586),(518,586),(601,586),(620,586),(648,586),(494,587),(494,588),(505,588),(526,588),(494,589),(504,589),(505,589),(506,589),(494,590),(500,590),(505,590),(494,591),(530,591),(494,592),(505,592),(494,593),(601,593),(627,593),(494,594),(505,594),(494,595),(533,595),(545,595),(581,595),(582,595),(648,595),(494,596),(505,596),(494,597),(505,597),(494,598),(494,599),(591,599),(494,600),(505,600),(494,601),(500,601),(505,601),(494,602),(505,602),(524,602),(527,602),(530,602),(532,602),(533,602),(535,602),(647,602),(650,602),(494,603),(494,604),(494,605),(494,606),(494,607),(494,608),(592,608),(494,609),(505,609),(494,610),(500,610),(494,611),(505,611),(494,612),(505,612),(494,613),(505,613),(494,614),(495,614),(507,614),(518,614),(494,615),(494,616),(536,616),(494,617),(495,618),(507,618),(495,619),(507,619),(495,620),(507,620),(496,621),(509,621),(520,621),(497,622),(498,622),(499,622),(510,622),(511,622),(512,622),(516,622),(517,622),(520,622),(581,622),(582,622),(583,622),(594,622),(499,623),(499,624),(499,625),(499,626),(500,627),(504,628),(504,629),(504,630),(504,631),(504,632),(505,633),(506,633),(505,634),(505,635),(506,635),(517,635),(520,635),(505,636),(505,637),(505,638),(530,638),(505,639),(506,639),(524,639),(505,640),(505,641),(505,642),(601,642),(607,642),(608,642),(634,642),(642,642),(505,643),(505,644),(601,644),(505,645),(505,646),(505,647),(505,648),(505,649),(505,650),(506,650),(505,651),(505,652),(505,653),(506,653),(584,653),(505,654),(505,655),(506,656),(517,656),(520,656),(506,657),(527,657),(533,657),(537,657),(507,658),(507,659),(507,660),(507,661),(507,662),(507,663),(535,663),(657,663),(508,664),(519,664),(601,664),(517,665),(523,666),(524,667),(526,667),(533,667),(537,667),(604,667),(637,667),(524,668),(527,668),(530,668),(531,668),(532,668),(537,668),(545,668),(524,669),(589,669),(592,669),(524,670),(535,670),(558,670),(524,671),(526,671),(537,671),(607,671),(608,671),(627,671),(526,672),(572,672),(526,673),(577,673),(526,674),(526,675),(526,676),(575,676),(601,676),(629,676),(526,677),(526,678),(538,678),(539,678),(540,678),(541,678),(545,678),(546,678),(547,678),(648,678),(527,679),(529,679),(532,679),(527,680),(527,681),(533,681),(527,682),(530,682),(531,682),(533,682),(535,682),(537,682),(650,682),(527,683),(532,683),(533,683),(650,683),(527,684),(528,684),(532,684),(533,684),(653,684),(654,684),(655,684),(530,685),(531,685),(530,686),(530,687),(530,688),(601,688),(607,688),(608,688),(530,689),(531,689),(530,690),(531,690),(530,691),(650,691),(530,692),(531,692),(545,692),(588,692),(591,692),(592,692),(648,692),(530,693),(530,694),(530,695),(531,696),(581,696),(582,696),(584,696),(531,697),(533,698),(536,698),(554,698),(584,698),(586,698),(647,698),(650,698),(533,699),(535,699),(545,699),(581,699),(582,699),(533,700),(533,701),(533,702),(552,702),(554,702),(555,702),(556,702),(573,702),(576,702),(577,702),(587,702),(601,702),(637,702),(639,702),(648,702),(653,702),(654,702),(655,702),(533,703),(533,704),(535,704),(533,705),(533,706),(533,707),(533,708),(533,709),(533,710),(533,711),(533,712),(533,713),(533,714),(533,715),(535,715),(534,716),(535,717),(535,718),(535,719),(535,720),(535,721),(538,722),(539,722),(540,722),(541,722),(538,723),(539,723),(540,723),(541,723),(547,723),(561,723),(538,724),(539,724),(540,724),(541,724),(538,725),(539,725),(540,725),(541,725),(547,725),(538,726),(539,726),(540,726),(541,726),(547,726),(538,727),(539,727),(540,727),(541,727),(546,727),(547,727),(538,728),(539,728),(540,728),(541,728),(542,728),(543,728),(544,728),(547,728),(538,729),(539,729),(540,729),(541,729),(542,729),(543,729),(544,729),(547,729),(538,730),(539,730),(540,730),(541,730),(547,730),(538,731),(539,731),(540,731),(541,731),(547,731),(555,731),(538,732),(539,732),(540,732),(541,732),(546,732),(538,733),(539,733),(540,733),(541,733),(538,734),(539,734),(540,734),(541,734),(545,734),(546,734),(547,734),(542,735),(543,735),(544,735),(542,736),(543,736),(544,736),(548,736),(549,736),(552,736),(545,737),(601,737),(629,737),(642,737),(648,737),(545,738),(581,738),(582,738),(546,739),(546,740),(597,740),(640,740),(644,740),(546,741),(546,742),(546,743),(546,744),(546,745),(597,745),(640,745),(644,745),(546,746),(547,747),(557,747),(559,747),(560,747),(547,748),(547,749),(548,750),(549,750),(548,751),(549,751),(601,751),(602,751),(603,751),(648,751),(548,752),(549,752),(550,752),(552,752),(602,752),(603,752),(628,752),(651,752),(548,753),(549,753),(551,754),(552,755),(554,755),(555,755),(556,755),(637,755),(639,755),(648,755),(552,756),(552,757),(552,758),(552,759),(552,760),(552,761),(552,762),(552,763),(552,764),(552,765),(552,766),(552,767),(552,768),(552,769),(552,770),(552,771),(552,772),(552,773),(552,774),(552,775),(552,776),(552,777),(552,778),(553,779),(553,780),(553,781),(553,782),(553,783),(553,784),(553,785),(553,786),(553,787),(584,787),(555,788),(555,789),(556,789),(555,790),(555,791),(555,792),(555,793),(555,794),(556,794),(556,795),(558,796),(584,796),(559,797),(560,797),(563,798),(573,798),(576,798),(577,798),(565,799),(566,800),(567,801),(568,802),(569,803),(570,804),(571,805),(573,806),(574,807),(576,808),(577,809),(577,810),(577,811),(578,812),(579,812),(580,812),(578,813),(579,813),(580,813),(578,814),(579,814),(580,814),(578,815),(579,815),(580,815),(578,816),(579,816),(580,816),(578,817),(579,817),(580,817),(578,818),(579,818),(580,818),(578,819),(578,820),(578,821),(579,821),(580,821),(578,822),(579,822),(580,822),(578,823),(578,824),(578,825),(579,825),(580,825),(578,826),(579,826),(580,826),(578,827),(579,827),(580,827),(579,828),(579,829),(580,829),(580,830),(581,831),(582,831),(581,832),(582,832),(584,832),(581,833),(582,833),(581,834),(582,834),(584,834),(581,835),(582,835),(584,835),(581,836),(582,836),(584,836),(581,837),(582,837),(584,837),(581,838),(582,838),(584,838),(581,839),(582,839),(581,840),(582,840),(584,840),(581,841),(582,841),(584,841),(581,842),(582,842),(584,842),(581,843),(582,843),(584,843),(584,844),(584,845),(584,846),(586,846),(584,847),(584,848),(586,848),(584,849),(586,849),(631,849),(648,849),(584,850),(584,851),(584,852),(584,853),(652,853),(584,854),(584,855),(586,856),(586,857),(588,858),(591,858),(592,858),(648,858),(589,859),(589,860),(592,861),(653,861),(654,861),(655,861),(592,862),(593,863),(593,864),(593,865),(593,866),(595,867),(595,868),(596,868),(601,868),(596,869),(597,870),(600,871),(601,872),(618,872),(619,872),(601,873),(621,873),(601,874),(622,874),(601,875),(626,875),(601,876),(638,876),(648,876),(601,877),(601,878),(620,878),(601,879),(634,879),(601,880),(618,880),(619,880),(601,881),(602,881),(603,881),(604,881),(605,881),(606,881),(607,881),(608,881),(609,881),(610,881),(611,881),(612,881),(613,881),(614,881),(616,881),(618,881),(619,881),(620,881),(621,881),(622,881),(623,881),(624,881),(625,881),(626,881),(627,881),(628,881),(629,881),(630,881),(631,881),(632,881),(633,881),(634,881),(635,881),(636,881),(637,881),(638,881),(639,881),(640,881),(641,881),(642,881),(643,881),(644,881),(645,881),(601,882),(620,882),(625,882),(628,882),(633,882),(639,882),(640,882),(641,882),(648,882),(601,883),(643,883),(601,884),(644,884),(601,885),(645,885),(604,886),(646,886),(604,887),(623,887),(637,887),(621,888),(624,889),(632,889),(630,890),(635,891),(636,892),(637,893),(648,894),(648,895),(648,896),(648,897),(648,898),(648,899),(648,900),(648,901),(649,902),(650,903),(653,904),(654,904),(655,904),(653,905),(654,905),(655,905),(653,906),(654,906),(655,906),(653,907),(654,907),(655,907);
/*!40000 ALTER TABLE `help_relation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `help_topic`
--
DROP TABLE IF EXISTS `help_topic`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `help_topic` (
`help_topic_id` int(10) unsigned NOT NULL,
`name` char(64) NOT NULL,
`help_category_id` smallint(5) unsigned NOT NULL,
`description` text NOT NULL,
`example` text NOT NULL,
`url` text NOT NULL,
PRIMARY KEY (`help_topic_id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='help topics';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `help_topic`
--
LOCK TABLES `help_topic` WRITE;
/*!40000 ALTER TABLE `help_topic` DISABLE KEYS */;
INSERT INTO `help_topic` VALUES (0,'HELP_DATE',1,'This help information was generated from the MySQL 5.7 Reference Manual\non: 2022-08-29\n','',''),(1,'HELP_VERSION',1,'This help information was generated from the MySQL 5.7 Reference Manual\non: 2022-08-29 (revision: 74028)\n\nThis information applies to MySQL 5.7 through 5.7.39.\n','',''),(2,'AUTO_INCREMENT',2,'The AUTO_INCREMENT attribute can be used to generate a unique identity\nfor new rows:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/example-auto-increment.html\n\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n);\n\nINSERT INTO animals (name) VALUES\n (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\n\nSELECT * FROM animals;\n','https://dev.mysql.com/doc/refman/5.7/en/example-auto-increment.html'),(3,'HELP COMMAND',3,'Syntax:\nmysql> help search_string\n\nIf you provide an argument to the help command, mysql uses it as a\nsearch string to access server-side help from the contents of the MySQL\nReference Manual. The proper operation of this command requires that\nthe help tables in the mysql database be initialized with help topic\ninformation (see\nhttps://dev.mysql.com/doc/refman/5.7/en/server-side-help-support.html).\n\nIf there is no match for the search string, the search fails:\n\nmysql> help me\n\nNothing found\nPlease try to run \'help contents\' for a list of all accessible topics\n\nUse help contents to see a list of the help categories:\n\nmysql> help contents\nYou asked for help about help category: \"Contents\"\nFor more information, type \'help <item>\', where <item> is one of the\nfollowing categories:\n Account Management\n Administration\n Data Definition\n Data Manipulation\n Data Types\n Functions\n Functions and Modifiers for Use with GROUP BY\n Geographic Features\n Language Structure\n Plugins\n Storage Engines\n Stored Routines\n Table Maintenance\n Transactions\n Triggers\n\nIf the search string matches multiple items, mysql shows a list of\nmatching topics:\n\nmysql> help logs\nMany help items for your request exist.\nTo make a more specific request, please type \'help <item>\',\nwhere <item> is one of the following topics:\n SHOW\n SHOW BINARY LOGS\n SHOW ENGINE\n SHOW LOGS\n\nUse a topic as the search string to see the help entry for that topic:\n\nmysql> help show binary logs\nName: \'SHOW BINARY LOGS\'\nDescription:\nSyntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [purge-binary-logs], that shows how\nto determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP rep% returns a list of topics that\nbegin with rep:\n\nmysql> HELP rep%\nMany help items for your request exist.\nTo make a more specific request, please type \'help <item>\',\nwhere <item> is one of the following\ntopics:\n REPAIR TABLE\n REPEAT FUNCTION\n REPEAT LOOP\n REPLACE\n REPLACE FUNCTION\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mysql-server-side-help.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/mysql-server-side-help.html'),(4,'ASYMMETRIC_DECRYPT',5,'Syntax:\nasymmetric_decrypt(algorithm, crypt_str, key_str)\n\nDecrypts an encrypted string using the given algorithm and key string,\nand returns the resulting plaintext as a binary string. If decryption\nfails, the result is NULL.\n\nkey_str must be a valid key string in PEM format. For successful\ndecryption, it must be the public or private key string corresponding\nto the private or public key string used with asymmetric_encrypt() to\nproduce the encrypted string. algorithm indicates the encryption\nalgorithm used to create the key.\n\nSupported algorithm values: \'RSA\'\n\nFor a usage example, see the description of asymmetric_encrypt().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(5,'ASYMMETRIC_DERIVE',5,'Syntax:\nasymmetric_derive(pub_key_str, priv_key_str)\n\nDerives a symmetric key using the private key of one party and the\npublic key of another, and returns the resulting key as a binary\nstring. If key derivation fails, the result is NULL.\n\npub_key_str and priv_key_str must be valid key strings in PEM format.\nThey must be created using the DH algorithm.\n\nSuppose that you have two pairs of public and private keys:\n\nSET @dhp = create_dh_parameters(1024);\nSET @priv1 = create_asymmetric_priv_key(\'DH\', @dhp);\nSET @pub1 = create_asymmetric_pub_key(\'DH\', @priv1);\nSET @priv2 = create_asymmetric_priv_key(\'DH\', @dhp);\nSET @pub2 = create_asymmetric_pub_key(\'DH\', @priv2);\n\nSuppose further that you use the private key from one pair and the\npublic key from the other pair to create a symmetric key string. Then\nthis symmetric key identity relationship holds:\n\nasymmetric_derive(@pub1, @priv2) = asymmetric_derive(@pub2, @priv1)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(6,'ASYMMETRIC_ENCRYPT',5,'Syntax:\nasymmetric_encrypt(algorithm, str, key_str)\n\nEncrypts a string using the given algorithm and key string, and returns\nthe resulting ciphertext as a binary string. If encryption fails, the\nresult is NULL.\n\nThe str length cannot be greater than the key_str length − 11, in\nbytes\n\nkey_str must be a valid key string in PEM format. algorithm indicates\nthe encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\'\n\nTo encrypt a string, pass a private or public key string to\nasymmetric_encrypt(). To recover the original unencrypted string, pass\nthe encrypted string to asymmetric_decrypt(), along with the public or\nprivate key string correponding to the private or public key string\nused for encryption.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','-- Generate private/public key pair\nSET @priv = create_asymmetric_priv_key(\'RSA\', 1024);\nSET @pub = create_asymmetric_pub_key(\'RSA\', @priv);\n\n-- Encrypt using private key, decrypt using public key\nSET @ciphertext = asymmetric_encrypt(\'RSA\', \'The quick brown fox\', @priv);\nSET @plaintext = asymmetric_decrypt(\'RSA\', @ciphertext, @pub);\n\n-- Encrypt using public key, decrypt using private key\nSET @ciphertext = asymmetric_encrypt(\'RSA\', \'The quick brown fox\', @pub);\nSET @plaintext = asymmetric_decrypt(\'RSA\', @ciphertext, @priv);\n','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(7,'ASYMMETRIC_SIGN',5,'Syntax:\nasymmetric_sign(algorithm, digest_str, priv_key_str, digest_type)\n\nSigns a digest string using a private key string, and returns the\nsignature as a binary string. If signing fails, the result is NULL.\n\ndigest_str is the digest string. It can be generated by calling\ncreate_digest(). digest_type indicates the digest algorithm used to\ngenerate the digest string.\n\npriv_key_str is the private key string to use for signing the digest\nstring. It must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\'\n\nSupported digest_type values: \'SHA224\', \'SHA256\', \'SHA384\', \'SHA512\'\n\nFor a usage example, see the description of asymmetric_verify().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(8,'ASYMMETRIC_VERIFY',5,'Syntax:\nasymmetric_verify(algorithm, digest_str, sig_str, pub_key_str,\ndigest_type)\n\nVerifies whether the signature string matches the digest string, and\nreturns 1 or 0 to indicate whether verification succeeded or failed.\n\ndigest_str is the digest string. It can be generated by calling\ncreate_digest(). digest_type indicates the digest algorithm used to\ngenerate the digest string.\n\nsig_str is the signature string. It can be generated by calling\nasymmetric_sign().\n\npub_key_str is the public key string of the signer. It corresponds to\nthe private key passed to asymmetric_sign() to generate the signature\nstring and must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\'\n\nSupported digest_type values: \'SHA224\', \'SHA256\', \'SHA384\', \'SHA512\'\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','-- Set the encryption algorithm and digest type\nSET @algo = \'RSA\';\nSET @dig_type = \'SHA224\';\n\n-- Create private/public key pair\nSET @priv = create_asymmetric_priv_key(@algo, 1024);\nSET @pub = create_asymmetric_pub_key(@algo, @priv);\n\n-- Generate digest from string\nSET @dig = create_digest(@dig_type, \'The quick brown fox\');\n\n-- Generate signature for digest and verify signature against digest\nSET @sig = asymmetric_sign(@algo, @dig, @priv, @dig_type);\nSET @verf = asymmetric_verify(@algo, @dig, @sig, @pub, @dig_type);\n','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(9,'CREATE_ASYMMETRIC_PRIV_KEY',5,'Syntax:\ncreate_asymmetric_priv_key(algorithm, {key_len|dh_secret})\n\nCreates a private key using the given algorithm and key length or DH\nsecret, and returns the key as a binary string in PEM format. If key\ngeneration fails, the result is NULL.\n\nSupported algorithm values: \'RSA\', \'DSA\', \'DH\'\n\nSupported key_len values: The minimum key length in bits is 1,024. The\nmaximum key length depends on the algorithm: 16,384 for RSA and 10,000\nfor DSA. These key-length limits are constraints imposed by OpenSSL.\nServer administrators can impose additional limits on maximum key\nlength by setting environment variables. See\nhttps://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-usage.html\n.\n\nFor DH keys, pass a shared DH secret instead of a key length. To create\nthe secret, pass the key length to create_dh_parameters().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','SET @priv = create_asymmetric_priv_key(\'DSA\', 2048);\nSET @pub = create_asymmetric_pub_key(\'DSA\', @priv);\n','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(10,'CREATE_ASYMMETRIC_PUB_KEY',5,'Syntax:\ncreate_asymmetric_pub_key(algorithm, priv_key_str)\n\nDerives a public key from the given private key using the given\nalgorithm, and returns the key as a binary string in PEM format. If key\nderivation fails, the result is NULL.\n\npriv_key_str must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\', \'DH\'\n\nFor a usage example, see the description of\ncreate_asymmetric_priv_key().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(11,'CREATE_DH_PARAMETERS',5,'create_dh_parameters(key_len)\n\nCreates a shared secret for generating a DH private/public key pair and\nreturns a binary string that can be passed to\ncreate_asymmetric_priv_key(). If secret generation fails, the result is\nnull.\n\nSupported key_len values: The minimum and maximum key lengths in bits\nare 1,024 and 10,000. These key-length limits are constraints imposed\nby OpenSSL. Server administrators can impose additional limits on\nmaximum key length by setting environment variables. See\nhttps://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-usage.html\n.\n\nFor an example showing how to use the return value for generating\nsymmetric keys, see the description of asymmetric_derive().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','SET @dhp = create_dh_parameters(1024);\n','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(12,'CREATE_DIGEST',5,'Syntax:\ncreate_digest(digest_type, str)\n\nCreates a digest from the given string using the given digest type, and\nreturns the digest as a binary string. If digest generation fails, the\nresult is NULL.\n\nSupported digest_type values: \'SHA224\', \'SHA256\', \'SHA384\', \'SHA512\'\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','SET @dig = create_digest(\'SHA512\', The quick brown fox\');\n','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(13,'PROCEDURE ANALYSE',6,'Syntax:\nANALYSE([max_elements[,max_memory]])\n\n*Note*:\n\nPROCEDURE ANALYSE() is deprecated as of MySQL 5.7.18, and is removed in\nMySQL 8.0.\n\nANALYSE() examines the result from a query and returns an analysis of\nthe results that suggests optimal data types for each column that may\nhelp reduce table sizes. To obtain this analysis, append PROCEDURE\nANALYSE to the end of a SELECT statement:\n\nSELECT ... FROM ... WHERE ... PROCEDURE ANALYSE([max_elements,[max_memory]])\n\nFor example:\n\nSELECT col1, col2 FROM table1 PROCEDURE ANALYSE(10, 2000);\n\nThe results show some statistics for the values returned by the query,\nand propose an optimal data type for the columns. This can be helpful\nfor checking your existing tables, or after importing new data. You may\nneed to try different settings for the arguments so that PROCEDURE\nANALYSE() does not suggest the ENUM data type when it is not\nappropriate.\n\nThe arguments are optional and are used as follows:\n\no max_elements (default 256) is the maximum number of distinct values\n that ANALYSE() notices per column. This is used by ANALYSE() to check\n whether the optimal data type should be of type ENUM; if there are\n more than max_elements distinct values, then ENUM is not a suggested\n type.\n\no max_memory (default 8192) is the maximum amount of memory that\n ANALYSE() should allocate per column while trying to find all\n distinct values.\n\nA PROCEDURE clause is not permitted in a UNION statement.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/procedure-analyse.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/procedure-analyse.html'),(14,'FLUSH QUERY CACHE',3,'You can defragment the query cache to better utilize its memory with\nthe FLUSH QUERY CACHE statement. The statement does not remove any\nqueries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/query-cache-status-and-maintenance.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/query-cache-status-and-maintenance.html'),(15,'TRUE',7,'The constants TRUE and FALSE evaluate to 1 and 0, respectively. The\nconstant names can be written in any lettercase.\n\nmysql> SELECT TRUE, true, FALSE, false;\n -> 1, 1, 0, 0\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/boolean-literals.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/boolean-literals.html'),(16,'FALSE',7,'The constants TRUE and FALSE evaluate to 1 and 0, respectively. The\nconstant names can be written in any lettercase.\n\nmysql> SELECT TRUE, true, FALSE, false;\n -> 1, 1, 0, 0\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/boolean-literals.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/boolean-literals.html'),(17,'BIT',2,'BIT[(M)]\n\nA bit-value type. M indicates the number of bits per value, from 1 to\n64. The default is 1 if M is omitted.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(18,'TINYINT',2,'TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The unsigned\nrange is 0 to 255.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(19,'BOOLEAN',2,'BOOL, BOOLEAN\n\nThese types are synonyms for TINYINT(1). A value of zero is considered\nfalse. Nonzero values are considered true:\n\nmysql> SELECT IF(0, \'true\', \'false\');\n+------------------------+\n| IF(0, \'true\', \'false\') |\n+------------------------+\n| false |\n+------------------------+\n\nmysql> SELECT IF(1, \'true\', \'false\');\n+------------------------+\n| IF(1, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nmysql> SELECT IF(2, \'true\', \'false\');\n+------------------------+\n| IF(2, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nHowever, the values TRUE and FALSE are merely aliases for 1 and 0,\nrespectively, as shown here:\n\nmysql> SELECT IF(0 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(0 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| true |\n+--------------------------------+\n\nmysql> SELECT IF(1 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(1 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| true |\n+-------------------------------+\n\nmysql> SELECT IF(2 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(2 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| false |\n+-------------------------------+\n\nmysql> SELECT IF(2 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(2 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| false |\n+--------------------------------+\n\nThe last two statements display the results shown because 2 is equal to\nneither 1 nor 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(20,'SMALLINT',2,'SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The unsigned\nrange is 0 to 65535.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(21,'MEDIUMINT',2,'MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-sized integer. The signed range is -8388608 to 8388607. The\nunsigned range is 0 to 16777215.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(22,'INT',2,'INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to 2147483647.\nThe unsigned range is 0 to 4294967295.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(23,'INTEGER',2,'INTEGER[(M)] [UNSIGNED] [ZEROFILL]\n\nThis type is a synonym for INT.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(24,'BIGINT',2,'BIGINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to 18446744073709551615.\n\nSERIAL is an alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(25,'DECIMAL',2,'DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nA packed \"exact\" fixed-point number. M is the total number of digits\n(the precision) and D is the number of digits after the decimal point\n(the scale). The decimal point and (for negative numbers) the - sign\nare not counted in M. If D is 0, values have no decimal point or\nfractional part. The maximum number of digits (M) for DECIMAL is 65.\nThe maximum number of supported decimals (D) is 30. If D is omitted,\nthe default is 0. If M is omitted, the default is 10. (There is also a\nlimit on how long the text of DECIMAL literals can be; see\nhttps://dev.mysql.com/doc/refman/5.7/en/precision-math-expressions.html\n.)\n\nUNSIGNED, if specified, disallows negative values.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are done with\na precision of 65 digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(26,'DEC',2,'DEC[(M[,D])] [UNSIGNED] [ZEROFILL], NUMERIC[(M[,D])] [UNSIGNED]\n[ZEROFILL], FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese types are synonyms for DECIMAL. The FIXED synonym is available\nfor compatibility with other database systems.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(27,'FLOAT',2,'FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA small (single-precision) floating-point number. Permissible values\nare -3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to\n3.402823466E+38. These are the theoretical limits, based on the IEEE\nstandard. The actual range might be slightly smaller depending on your\nhardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits permitted by the hardware. A single-precision floating-point\nnumber is accurate to approximately 7 decimal places.\n\nFLOAT(M,D) is a nonstandard MySQL extension.\n\nUNSIGNED, if specified, disallows negative values.\n\nUsing FLOAT might give you some unexpected problems because all\ncalculations in MySQL are done with double precision. See\nhttps://dev.mysql.com/doc/refman/5.7/en/no-matching-rows.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(28,'DOUBLE',2,'DOUBLE[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Permissible\nvalues are -1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and\n2.2250738585072014E-308 to 1.7976931348623157E+308. These are the\ntheoretical limits, based on the IEEE standard. The actual range might\nbe slightly smaller depending on your hardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits permitted by the hardware. A double-precision floating-point\nnumber is accurate to approximately 15 decimal places.\n\nDOUBLE(M,D) is a nonstandard MySQL extension.\n\nUNSIGNED, if specified, disallows negative values.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(29,'DOUBLE PRECISION',2,'DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL], REAL[(M,D)] [UNSIGNED]\n[ZEROFILL]\n\nThese types are synonyms for DOUBLE. Exception: If the REAL_AS_FLOAT\nSQL mode is enabled, REAL is a synonym for FLOAT rather than DOUBLE.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(30,'DATE',2,'DATE\n\nA date. The supported range is \'1000-01-01\' to \'9999-12-31\'. MySQL\ndisplays DATE values in \'YYYY-MM-DD\' format, but permits assignment of\nvalues to DATE columns using either strings or numbers.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(31,'DATETIME',2,'DATETIME[(fsp)]\n\nA date and time combination. The supported range is \'1000-01-01\n00:00:00.000000\' to \'9999-12-31 23:59:59.999999\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD hh:mm:ss[.fraction]\' format, but permits\nassignment of values to DATETIME columns using either strings or\nnumbers.\n\nAn optional fsp value in the range from 0 to 6 may be given to specify\nfractional seconds precision. A value of 0 signifies that there is no\nfractional part. If omitted, the default precision is 0.\n\nAutomatic initialization and updating to the current date and time for\nDATETIME columns can be specified using DEFAULT and ON UPDATE column\ndefinition clauses, as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/timestamp-initialization.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(32,'TIMESTAMP',2,'TIMESTAMP[(fsp)]\n\nA timestamp. The range is \'1970-01-01 00:00:01.000000\' UTC to\n\'2038-01-19 03:14:07.999999\' UTC. TIMESTAMP values are stored as the\nnumber of seconds since the epoch (\'1970-01-01 00:00:00\' UTC). A\nTIMESTAMP cannot represent the value \'1970-01-01 00:00:00\' because that\nis equivalent to 0 seconds from the epoch and the value 0 is reserved\nfor representing \'0000-00-00 00:00:00\', the \"zero\" TIMESTAMP value.\n\nAn optional fsp value in the range from 0 to 6 may be given to specify\nfractional seconds precision. A value of 0 signifies that there is no\nfractional part. If omitted, the default precision is 0.\n\nThe way the server handles TIMESTAMP definitions depends on the value\nof the explicit_defaults_for_timestamp system variable (see\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html).\n\nIf explicit_defaults_for_timestamp is enabled, there is no automatic\nassignment of the DEFAULT CURRENT_TIMESTAMP or ON UPDATE\nCURRENT_TIMESTAMP attributes to any TIMESTAMP column. They must be\nincluded explicitly in the column definition. Also, any TIMESTAMP not\nexplicitly declared as NOT NULL permits NULL values.\n\nIf explicit_defaults_for_timestamp is disabled, the server handles\nTIMESTAMP as follows:\n\nUnless specified otherwise, the first TIMESTAMP column in a table is\ndefined to be automatically set to the date and time of the most recent\nmodification if not explicitly assigned a value. This makes TIMESTAMP\nuseful for recording the timestamp of an INSERT or UPDATE operation.\nYou can also set any TIMESTAMP column to the current date and time by\nassigning it a NULL value, unless it has been defined with the NULL\nattribute to permit NULL values.\n\nAutomatic initialization and updating to the current date and time can\nbe specified using DEFAULT CURRENT_TIMESTAMP and ON UPDATE\nCURRENT_TIMESTAMP column definition clauses. By default, the first\nTIMESTAMP column has these properties, as previously noted. However,\nany TIMESTAMP column in a table can be defined to have these\nproperties.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(33,'TIME',2,'TIME[(fsp)]\n\nA time. The range is \'-838:59:59.000000\' to \'838:59:59.000000\'. MySQL\ndisplays TIME values in \'hh:mm:ss[.fraction]\' format, but permits\nassignment of values to TIME columns using either strings or numbers.\n\nAn optional fsp value in the range from 0 to 6 may be given to specify\nfractional seconds precision. A value of 0 signifies that there is no\nfractional part. If omitted, the default precision is 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(34,'YEAR DATA TYPE',2,'YEAR[(4)]\n\nA year in 4-digit format. MySQL displays YEAR values in YYYY format,\nbut permits assignment of values to YEAR columns using either strings\nor numbers. Values display as 1901 to 2155, or 0000.\n\n*Note*:\n\nThe YEAR(2) data type is deprecated and support for it is removed in\nMySQL 5.7.5. To convert 2-digit YEAR(2) columns to 4-digit YEAR\ncolumns, see\nhttps://dev.mysql.com/doc/refman/5.7/en/migrating-from-year2.html.\n\nFor additional information about YEAR display format and interpretation\nof input values, see https://dev.mysql.com/doc/refman/5.7/en/year.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(35,'CHAR',2,'[NATIONAL] CHAR[(M)] [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length in\ncharacters. The range of M is 0 to 255. If M is omitted, the length is\n1.\n\n*Note*:\n\nTrailing spaces are removed when CHAR values are retrieved unless the\nPAD_CHAR_TO_FULL_LENGTH SQL mode is enabled.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(36,'CHAR BYTE',2,'The CHAR BYTE data type is an alias for the BINARY data type. This is a\ncompatibility feature.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(37,'VARCHAR',2,'[NATIONAL] VARCHAR(M) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA variable-length string. M represents the maximum column length in\ncharacters. The range of M is 0 to 65,535. The effective maximum length\nof a VARCHAR is subject to the maximum row size (65,535 bytes, which is\nshared among all columns) and the character set used. For example, utf8\ncharacters can require up to three bytes per character, so a VARCHAR\ncolumn that uses the utf8 character set can be declared to be a maximum\nof 21,844 characters. See\nhttps://dev.mysql.com/doc/refman/5.7/en/column-count-limit.html.\n\nMySQL stores VARCHAR values as a 1-byte or 2-byte length prefix plus\ndata. The length prefix indicates the number of bytes in the value. A\nVARCHAR column uses one length byte if values require no more than 255\nbytes, two length bytes if values may require more than 255 bytes.\n\n*Note*:\n\nMySQL follows the standard SQL specification, and does not remove\ntrailing spaces from VARCHAR values.\n\nVARCHAR is shorthand for CHARACTER VARYING. NATIONAL VARCHAR is the\nstandard SQL way to define that a VARCHAR column should use some\npredefined character set. MySQL uses utf8 as this predefined character\nset. https://dev.mysql.com/doc/refman/5.7/en/charset-national.html.\nNVARCHAR is shorthand for NATIONAL VARCHAR.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(38,'BINARY',2,'BINARY[(M)]\n\nThe BINARY type is similar to the CHAR type, but stores binary byte\nstrings rather than nonbinary character strings. An optional length M\nrepresents the column length in bytes. If omitted, M defaults to 1.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(39,'VARBINARY',2,'VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores binary\nbyte strings rather than nonbinary character strings. M represents the\nmaximum column length in bytes.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(40,'TINYBLOB',2,'TINYBLOB\n\nA BLOB column with a maximum length of 255 (28 − 1) bytes. Each\nTINYBLOB value is stored using a 1-byte length prefix that indicates\nthe number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(41,'TINYTEXT',2,'TINYTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 255 (28 − 1) characters. The\neffective maximum length is less if the value contains multibyte\ncharacters. Each TINYTEXT value is stored using a 1-byte length prefix\nthat indicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(42,'BLOB',2,'BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535 (216 − 1) bytes. Each\nBLOB value is stored using a 2-byte length prefix that indicates the\nnumber of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest BLOB type large enough to hold\nvalues M bytes long.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(43,'TEXT',2,'TEXT[(M)] [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 65,535 (216 − 1) characters.\nThe effective maximum length is less if the value contains multibyte\ncharacters. Each TEXT value is stored using a 2-byte length prefix that\nindicates the number of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest TEXT type large enough to hold\nvalues M characters long.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(44,'MEDIUMBLOB',2,'MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215 (224 − 1) bytes.\nEach MEDIUMBLOB value is stored using a 3-byte length prefix that\nindicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(45,'MEDIUMTEXT',2,'MEDIUMTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 16,777,215 (224 − 1)\ncharacters. The effective maximum length is less if the value contains\nmultibyte characters. Each MEDIUMTEXT value is stored using a 3-byte\nlength prefix that indicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(46,'LONGBLOB',2,'LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or 4GB (232 − 1)\nbytes. The effective maximum length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and\navailable memory. Each LONGBLOB value is stored using a 4-byte length\nprefix that indicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(47,'LONGTEXT',2,'LONGTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 4,294,967,295 or 4GB (232 − 1)\ncharacters. The effective maximum length is less if the value contains\nmultibyte characters. The effective maximum length of LONGTEXT columns\nalso depends on the configured maximum packet size in the client/server\nprotocol and available memory. Each LONGTEXT value is stored using a\n4-byte length prefix that indicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(48,'ENUM',2,'ENUM(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ..., NULL or the special \'\'\nerror value. ENUM values are represented internally as integers.\n\nAn ENUM column can have a maximum of 65,535 distinct elements. (The\npractical limit is less than 3000.) A table can have no more than 255\nunique element list definitions among its ENUM and SET columns\nconsidered as a group. For more information on these limits, see\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-files.html#limits-\nfrm-file.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(49,'SET DATA TYPE',2,'SET(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA set. A string object that can have zero or more values, each of which\nmust be chosen from the list of values \'value1\', \'value2\', ... SET\nvalues are represented internally as integers.\n\nA SET column can have a maximum of 64 distinct members. A table can\nhave no more than 255 unique element list definitions among its ENUM\nand SET columns considered as a group. For more information on this\nlimit, see\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-files.html#limits-\nfrm-file.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(50,'BLOB DATA TYPE',2,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types are TINYBLOB, BLOB, MEDIUMBLOB, and LONGBLOB.\nThese differ only in the maximum length of the values they can hold.\nThe four TEXT types are TINYTEXT, TEXT, MEDIUMTEXT, and LONGTEXT. These\ncorrespond to the four BLOB types and have the same maximum lengths and\nstorage requirements. See\nhttps://dev.mysql.com/doc/refman/5.7/en/storage-requirements.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/blob.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/blob.html'),(51,'GEOMETRY HIERARCHY',8,'Geometry is the base class. It is an abstract class. The instantiable\nsubclasses of Geometry are restricted to zero-, one-, and\ntwo-dimensional geometric objects that exist in two-dimensional\ncoordinate space. All instantiable geometry classes are defined so that\nvalid instances of a geometry class are topologically closed (that is,\nall defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point, Curve, Surface, and\nGeometryCollection:\n\no Point represents zero-dimensional objects.\n\no Curve represents one-dimensional objects, and has subclass\n LineString, with sub-subclasses Line and LinearRing.\n\no Surface is designed for two-dimensional objects and has subclass\n Polygon.\n\no GeometryCollection has specialized zero-, one-, and two-dimensional\n collection classes named MultiPoint, MultiLineString, and\n MultiPolygon for modeling geometries corresponding to collections of\n Points, LineStrings, and Polygons, respectively. MultiCurve and\n MultiSurface are introduced as abstract superclasses that generalize\n the collection interfaces to handle Curves and Surfaces.\n\nGeometry, Curve, Surface, MultiCurve, and MultiSurface are defined as\nnoninstantiable classes. They define a common set of methods for their\nsubclasses and are included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection, MultiPoint,\nMultiLineString, and MultiPolygon are instantiable classes.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-geometry-class-hierarchy.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-geometry-class-hierarchy.html'),(52,'MBR DEFINITION',9,'Its MBR (minimum bounding rectangle), or envelope. This is the bounding\ngeometry, formed by the minimum and maximum (X,Y) coordinates:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-class-geometry.html\n\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','https://dev.mysql.com/doc/refman/5.7/en/gis-class-geometry.html'),(53,'WKT DEFINITION',10,'The Well-Known Text (WKT) representation of geometry values is designed\nfor exchanging geometry data in ASCII form. The OpenGIS specification\nprovides a Backus-Naur grammar that specifies the formal production\nrules for writing WKT values (see\nhttps://dev.mysql.com/doc/refman/5.7/en/spatial-types.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-data-formats.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-data-formats.html'),(54,'SPATIAL COLUMNS',8,'MySQL provides a standard way of creating spatial columns for geometry\ntypes, for example, with CREATE TABLE or ALTER TABLE. Spatial columns\nare supported for MyISAM, InnoDB, NDB, and ARCHIVE tables. See also the\nnotes about spatial indexes under [HELP SPATIAL indexes].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/creating-spatial-columns.html\n\n','CREATE TABLE geom (g GEOMETRY);\n','https://dev.mysql.com/doc/refman/5.7/en/creating-spatial-columns.html'),(55,'SPATIAL INDEXES',8,'For InnoDB and MyISAM tables, MySQL can create spatial indexes using\nsyntax similar to that for creating regular indexes, but using the\nSPATIAL keyword. Columns in spatial indexes must be declared NOT NULL.\nThe following examples demonstrate how to create spatial indexes:\n\no With CREATE TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\no With ALTER TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL);\nALTER TABLE geom ADD SPATIAL INDEX(g);\n\no With CREATE INDEX:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL);\nCREATE SPATIAL INDEX g ON geom (g);\n\nSPATIAL INDEX creates an R-tree index. For storage engines that support\nnonspatial indexing of spatial columns, the engine creates a B-tree\nindex. A B-tree index on spatial values is useful for exact-value\nlookups, but not for range scans.\n\nFor more information on indexing spatial columns, see [HELP CREATE\nINDEX].\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\no With ALTER TABLE:\n\nALTER TABLE geom DROP INDEX g;\n\no With DROP INDEX:\n\nDROP INDEX g ON geom;\n\nExample: Suppose that a table geom contains more than 32,000\ngeometries, which are stored in the column g of type GEOMETRY. The\ntable also has an AUTO_INCREMENT column fid for storing object ID\nvalues.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/creating-spatial-indexes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/creating-spatial-indexes.html'),(56,'=',11,'=\n\nEqual:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 1 = 0;\n -> 0\nmysql> SELECT \'0\' = 0;\n -> 1\nmysql> SELECT \'0.0\' = 0;\n -> 1\nmysql> SELECT \'0.01\' = 0;\n -> 0\nmysql> SELECT \'.01\' = 0.01;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(57,'<=>',11,'Syntax:\n<=>\n\nNULL-safe equal. This operator performs an equality comparison like the\n= operator, but returns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n\nThe <=> operator is equivalent to the standard SQL IS NOT DISTINCT FROM\noperator.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(58,'!=',11,'Syntax:\n<>, !=\n\nNot equal:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(59,'<=',11,'Syntax:\n<=\n\nLess than or equal:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 0.1 <= 2;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(60,'<',11,'Syntax:\n<\n\nLess than:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 2 < 2;\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(61,'>=',11,'Syntax:\n>=\n\nGreater than or equal:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 2 >= 2;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(62,'>',11,'Syntax:\n>\n\nGreater than:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 2 > 2;\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(63,'BETWEEN AND',11,'Syntax:\nexpr BETWEEN min AND max\n\nIf expr is greater than or equal to min and expr is less than or equal\nto max, BETWEEN returns 1, otherwise it returns 0. This is equivalent\nto the expression (min <= expr AND expr <= max) if all the arguments\nare of the same type. Otherwise type conversion takes place according\nto the rules described in\nhttps://dev.mysql.com/doc/refman/5.7/en/type-conversion.html, but\napplied to all the three arguments.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 2 BETWEEN 1 AND 3, 2 BETWEEN 3 and 1;\n -> 1, 0\nmysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(64,'NOT BETWEEN',11,'Syntax:\nexpr NOT BETWEEN min AND max\n\nThis is the same as NOT (expr BETWEEN min AND max).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(65,'COALESCE',11,'Syntax:\nCOALESCE(value,...)\n\nReturns the first non-NULL value in the list, or NULL if there are no\nnon-NULL values.\n\nThe return type of COALESCE() is the aggregated type of the argument\ntypes.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(66,'GREATEST',11,'Syntax:\nGREATEST(value1,value2,...)\n\nWith two or more arguments, returns the largest (maximum-valued)\nargument. The arguments are compared using the same rules as for\nLEAST().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(67,'IN',11,'Syntax:\nexpr IN (value,...)\n\nReturns 1 (true) if expr is equal to any of the values in the IN()\nlist, else returns 0 (false).\n\nType conversion takes place according to the rules described in\nhttps://dev.mysql.com/doc/refman/5.7/en/type-conversion.html, applied\nto all the arguments. If no type conversion is needed for the values in\nthe IN() list, they are all constants of the same type, and expr can be\ncompared to each of them as a value of the same type (possibly after\ntype conversion), an optimization takes place. The values the list are\nsorted and the search for expr is done using a binary search, which\nmakes the IN() operation very quick.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 2 IN (0,3,5,7);\n -> 0\nmysql> SELECT \'wefwf\' IN (\'wee\',\'wefwf\',\'weg\');\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(68,'NOT IN',11,'Syntax:\nexpr NOT IN (value,...)\n\nThis is the same as NOT (expr IN (value,...)).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(69,'INTERVAL',11,'Syntax:\nINTERVAL(N,N1,N2,N3,...)\n\nReturns 0 if N < N1, 1 if N < N2 and so on or -1 if N is NULL. All\narguments are treated as integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because a binary\nsearch is used (very fast).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(70,'IS',11,'Syntax:\nIS boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(71,'IS NOT',11,'Syntax:\nIS NOT boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(72,'IS NULL',11,'Syntax:\nIS NULL\n\nTests whether a value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(73,'IS NOT NULL',11,'Syntax:\nIS NOT NULL\n\nTests whether a value is not NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(74,'ISNULL',11,'Syntax:\nISNULL(expr)\n\nIf expr is NULL, ISNULL() returns 1, otherwise it returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(75,'LEAST',11,'Syntax:\nLEAST(value1,value2,...)\n\nWith two or more arguments, returns the smallest (minimum-valued)\nargument. The arguments are compared using the following rules:\n\no If any argument is NULL, the result is NULL. No comparison is needed.\n\no If all arguments are integer-valued, they are compared as integers.\n\no If at least one argument is double precision, they are compared as\n double-precision values. Otherwise, if at least one argument is a\n DECIMAL value, they are compared as DECIMAL values.\n\no If the arguments comprise a mix of numbers and strings, they are\n compared as numbers.\n\no If any argument is a nonbinary (character) string, the arguments are\n compared as nonbinary strings.\n\no In all other cases, the arguments are compared as binary strings.\n\nThe return type of LEAST() is the aggregated type of the comparison\nargument types.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT LEAST(2,0);\n -> 0\nmysql> SELECT LEAST(34.0,3.0,5.0,767.0);\n -> 3.0\nmysql> SELECT LEAST(\'B\',\'A\',\'C\');\n -> \'A\'\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(76,'!',12,'Syntax:\nNOT, !\n\nLogical NOT. Evaluates to 1 if the operand is 0, to 0 if the operand is\nnonzero, and NOT NULL returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html\n\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html'),(77,'AND',12,'Syntax:\nAND, &&\n\nLogical AND. Evaluates to 1 if all operands are nonzero and not NULL,\nto 0 if one or more operands are 0, otherwise NULL is returned.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html\n\n','mysql> SELECT 1 AND 1;\n -> 1\nmysql> SELECT 1 AND 0;\n -> 0\nmysql> SELECT 1 AND NULL;\n -> NULL\nmysql> SELECT 0 AND NULL;\n -> 0\nmysql> SELECT NULL AND 0;\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html'),(78,'OR',12,'Syntax:\nOR, ||\n\nLogical OR. When both operands are non-NULL, the result is 1 if any\noperand is nonzero, and 0 otherwise. With a NULL operand, the result is\n1 if the other operand is nonzero, and NULL otherwise. If both operands\nare NULL, the result is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html\n\n','mysql> SELECT 1 OR 1;\n -> 1\nmysql> SELECT 1 OR 0;\n -> 1\nmysql> SELECT 0 OR 0;\n -> 0\nmysql> SELECT 0 OR NULL;\n -> NULL\nmysql> SELECT 1 OR NULL;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html'),(79,'XOR',12,'Syntax:\nXOR\n\nLogical XOR. Returns NULL if either operand is NULL. For non-NULL\noperands, evaluates to 1 if an odd number of operands is nonzero,\notherwise 0 is returned.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html\n\n','mysql> SELECT 1 XOR 1;\n -> 0\nmysql> SELECT 1 XOR 0;\n -> 1\nmysql> SELECT 1 XOR NULL;\n -> NULL\nmysql> SELECT 1 XOR 1 XOR 1;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html'),(80,'ASSIGN-VALUE',12,'Syntax:\n:=\n\nAssignment operator. Causes the user variable on the left hand side of\nthe operator to take on the value to its right. The value on the right\nhand side may be a literal value, another variable storing a value, or\nany legal expression that yields a scalar value, including the result\nof a query (provided that this value is a scalar value). You can\nperform multiple assignments in the same SET statement. You can perform\nmultiple assignments in the same statement.\n\nUnlike =, the := operator is never interpreted as a comparison\noperator. This means you can use := in any valid SQL statement (not\njust in SET statements) to assign a value to a variable.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/assignment-operators.html\n\n','mysql> SELECT @var1, @var2;\n -> NULL, NULL\nmysql> SELECT @var1 := 1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2 := @var1;\n -> 1, 1\nmysql> SELECT @var1, @var2;\n -> 1, 1\n\nmysql> SELECT @var1:=COUNT(*) FROM t1;\n -> 4\nmysql> SELECT @var1;\n -> 4\n','https://dev.mysql.com/doc/refman/5.7/en/assignment-operators.html'),(81,'ASSIGN-EQUAL',12,'Syntax:\n=\n\nThis operator is used to perform value assignments in two cases,\ndescribed in the next two paragraphs.\n\nWithin a SET statement, = is treated as an assignment operator that\ncauses the user variable on the left hand side of the operator to take\non the value to its right. (In other words, when used in a SET\nstatement, = is treated identically to :=.) The value on the right hand\nside may be a literal value, another variable storing a value, or any\nlegal expression that yields a scalar value, including the result of a\nquery (provided that this value is a scalar value). You can perform\nmultiple assignments in the same SET statement.\n\nIn the SET clause of an UPDATE statement, = also acts as an assignment\noperator; in this case, however, it causes the column named on the left\nhand side of the operator to assume the value given to the right,\nprovided any WHERE conditions that are part of the UPDATE are met. You\ncan make multiple assignments in the same SET clause of an UPDATE\nstatement.\n\nIn any other context, = is treated as a comparison operator.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/assignment-operators.html\n\n','mysql> SELECT @var1, @var2;\n -> NULL, NULL\nmysql> SELECT @var1 := 1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2 := @var1;\n -> 1, 1\nmysql> SELECT @var1, @var2;\n -> 1, 1\n','https://dev.mysql.com/doc/refman/5.7/en/assignment-operators.html'),(82,'CASE OPERATOR',13,'Syntax:\nCASE value WHEN compare_value THEN result [WHEN compare_value THEN\nresult ...] [ELSE result] END\n\nCASE WHEN condition THEN result [WHEN condition THEN result ...] [ELSE\nresult] END\n\nThe first CASE syntax returns the result for the first\nvalue=compare_value comparison that is true. The second syntax returns\nthe result for the first condition that is true. If no comparison or\ncondition is true, the result after ELSE is returned, or NULL if there\nis no ELSE part.\n\n*Note*:\n\nThe syntax of the CASE operator described here differs slightly from\nthat of the SQL CASE statement described in [HELP CASE statement], for\nuse inside stored programs. The CASE statement cannot have an ELSE NULL\nclause, and it is terminated with END CASE instead of END.\n\nThe return type of a CASE expression result is the aggregated type of\nall result values.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html\n\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html'),(83,'IF FUNCTION',13,'Syntax:\nIF(expr1,expr2,expr3)\n\nIf expr1 is TRUE (expr1 <> 0 and expr1 IS NOT NULL), IF() returns\nexpr2. Otherwise, it returns expr3.\n\n*Note*:\n\nThere is also an IF statement, which differs from the IF() function\ndescribed here. See [HELP IF statement].\n\nIf only one of expr2 or expr3 is explicitly NULL, the result type of\nthe IF() function is the type of the non-NULL expression.\n\nThe default return type of IF() (which may matter when it is stored\ninto a temporary table) is calculated as follows:\n\no If expr2 or expr3 produce a string, the result is a string.\n\n If expr2 and expr3 are both strings, the result is case-sensitive if\n either string is case-sensitive.\n\no If expr2 or expr3 produce a floating-point value, the result is a\n floating-point value.\n\no If expr2 or expr3 produce an integer, the result is an integer.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html\n\n','mysql> SELECT IF(1>2,2,3);\n -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n -> \'no\'\n','https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html'),(84,'IFNULL',13,'Syntax:\nIFNULL(expr1,expr2)\n\nIf expr1 is not NULL, IFNULL() returns expr1; otherwise it returns\nexpr2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html\n\n','mysql> SELECT IFNULL(1,0);\n -> 1\nmysql> SELECT IFNULL(NULL,10);\n -> 10\nmysql> SELECT IFNULL(1/0,10);\n -> 10\nmysql> SELECT IFNULL(1/0,\'yes\');\n -> \'yes\'\n','https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html'),(85,'NULLIF',13,'Syntax:\nNULLIF(expr1,expr2)\n\nReturns NULL if expr1 = expr2 is true, otherwise returns expr1. This is\nthe same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n\nThe return value has the same type as the first argument.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html\n\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html'),(86,'+',14,'Syntax:\n+\n\nAddition:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT 3+5;\n -> 8\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(87,'- BINARY',14,'Syntax:\n-\n\nSubtraction:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT 3-5;\n -> -2\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(88,'- UNARY',14,'Syntax:\n-\n\nUnary minus. This operator changes the sign of the operand.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT - 2;\n -> -2\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(89,'*',14,'Syntax:\n*\n\nMultiplication:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> out-of-range error\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(90,'/',14,'Syntax:\n/\n\nDivision:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT 3/5;\n -> 0.60\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(91,'DIV',14,'Syntax:\nDIV\n\nInteger division. Discards from the division result any fractional part\nto the right of the decimal point.\n\nIf either operand has a noninteger type, the operands are converted to\nDECIMAL and divided using DECIMAL arithmetic before converting the\nresult to BIGINT. If the result exceeds BIGINT range, an error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT 5 DIV 2, -5 DIV 2, 5 DIV -2, -5 DIV -2;\n -> 2, -2, -2, 2\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(92,'%',14,'Syntax:\nN % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M. For more\ninformation, see the description for the MOD() function in\nhttps://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(93,'ABS',14,'Syntax:\nABS(X)\n\nReturns the absolute value of X, or NULL if X is NULL.\n\nThe result type is derived from the argument type. An implication of\nthis is that ABS(-9223372036854775808) produces an error because the\nresult cannot be stored in a signed BIGINT value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(94,'ACOS',14,'Syntax:\nACOS(X)\n\nReturns the arc cosine of X, that is, the value whose cosine is X.\nReturns NULL if X is not in the range -1 to 1.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ACOS(1);\n -> 0\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.5707963267949\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(95,'ASIN',14,'Syntax:\nASIN(X)\n\nReturns the arc sine of X, that is, the value whose sine is X. Returns\nNULL if X is not in the range -1 to 1.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ASIN(0.2);\n -> 0.20135792079033\nmysql> SELECT ASIN(\'foo\');\n\n+-------------+\n| ASIN(\'foo\') |\n+-------------+\n| 0 |\n+-------------+\n1 row in set, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+---------+------+-----------------------------------------+\n| Level | Code | Message |\n+---------+------+-----------------------------------------+\n| Warning | 1292 | Truncated incorrect DOUBLE value: \'foo\' |\n+---------+------+-----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(96,'ATAN',14,'Syntax:\nATAN(X)\n\nReturns the arc tangent of X, that is, the value whose tangent is X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(2);\n -> 1.1071487177941\nmysql> SELECT ATAN(-2);\n -> -1.1071487177941\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(97,'ATAN2',14,'Syntax:\nATAN(Y,X), ATAN2(Y,X)\n\nReturns the arc tangent of the two variables X and Y. It is similar to\ncalculating the arc tangent of Y / X, except that the signs of both\narguments are used to determine the quadrant of the result.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(-2,2);\n -> -0.78539816339745\nmysql> SELECT ATAN2(PI(),0);\n -> 1.5707963267949\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(98,'CEIL',14,'Syntax:\nCEIL(X)\n\nCEIL() is a synonym for CEILING().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(99,'CEILING',14,'Syntax:\nCEILING(X)\n\nReturns the smallest integer value not less than X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEILING(-1.23);\n -> -1\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(100,'CONV',14,'Syntax:\nCONV(N,from_base,to_base)\n\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base to base\nto_base. Returns NULL if any argument is NULL. The argument N is\ninterpreted as an integer, but may be specified as an integer or a\nstring. The minimum base is 2 and the maximum base is 36. If from_base\nis a negative number, N is regarded as a signed number. Otherwise, N is\ntreated as unsigned. CONV() works with 64-bit precision.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+X\'0a\',10,10);\n -> \'40\'\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(101,'COS',14,'Syntax:\nCOS(X)\n\nReturns the cosine of X, where X is given in radians.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT COS(PI());\n -> -1\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(102,'COT',14,'Syntax:\nCOT(X)\n\nReturns the cotangent of X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT COT(12);\n -> -1.5726734063977\nmysql> SELECT COT(0);\n -> out-of-range error\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(103,'CRC32',14,'Syntax:\nCRC32(expr)\n\nComputes a cyclic redundancy check value and returns a 32-bit unsigned\nvalue. The result is NULL if the argument is NULL. The argument is\nexpected to be a string and (if possible) is treated as one if it is\nnot.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556\nmysql> SELECT CRC32(\'mysql\');\n -> 2501908538\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(104,'DEGREES',14,'Syntax:\nDEGREES(X)\n\nReturns the argument X, converted from radians to degrees.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT DEGREES(PI());\n -> 180\nmysql> SELECT DEGREES(PI() / 2);\n -> 90\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(105,'EXP',14,'Syntax:\nEXP(X)\n\nReturns the value of e (the base of natural logarithms) raised to the\npower of X. The inverse of this function is LOG() (using a single\nargument only) or LN().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT EXP(2);\n -> 7.3890560989307\nmysql> SELECT EXP(-2);\n -> 0.13533528323661\nmysql> SELECT EXP(0);\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(106,'FLOOR',14,'Syntax:\nFLOOR(X)\n\nReturns the largest integer value not greater than X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT FLOOR(1.23), FLOOR(-1.23);\n -> 1, -2\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(107,'LN',14,'Syntax:\nLN(X)\n\nReturns the natural logarithm of X; that is, the base-e logarithm of X.\nIf X is less than or equal to 0.0E0, the function returns NULL and a\nwarning \"Invalid argument for logarithm\" is reported.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT LN(2);\n -> 0.69314718055995\nmysql> SELECT LN(-2);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(108,'LOG',14,'Syntax:\nLOG(X), LOG(B,X)\n\nIf called with one parameter, this function returns the natural\nlogarithm of X. If X is less than or equal to 0.0E0, the function\nreturns NULL and a warning \"Invalid argument for logarithm\" is\nreported.\n\nThe inverse of this function (when called with a single argument) is\nthe EXP() function.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT LOG(2);\n -> 0.69314718055995\nmysql> SELECT LOG(-2);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(109,'LOG2',14,'Syntax:\nLOG2(X)\n\nReturns the base-2 logarithm of X. If X is less than or equal to 0.0E0,\nthe function returns NULL and a warning \"Invalid argument for\nlogarithm\" is reported.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT LOG2(65536);\n -> 16\nmysql> SELECT LOG2(-100);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(110,'LOG10',14,'Syntax:\nLOG10(X)\n\nReturns the base-10 logarithm of X. If X is less than or equal to\n0.0E0, the function returns NULL and a warning \"Invalid argument for\nlogarithm\" is reported.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT LOG10(2);\n -> 0.30102999566398\nmysql> SELECT LOG10(100);\n -> 2\nmysql> SELECT LOG10(-100);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(111,'MOD',14,'Syntax:\nMOD(N,M), N % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT MOD(234, 10);\n -> 4\nmysql> SELECT 253 % 7;\n -> 1\nmysql> SELECT MOD(29,9);\n -> 2\nmysql> SELECT 29 MOD 9;\n -> 2\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(112,'PI',14,'Syntax:\nPI()\n\nReturns the value of π (pi). The default number of decimal places\ndisplayed is seven, but MySQL uses the full double-precision value\ninternally.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(113,'POW',14,'Syntax:\nPOW(X,Y)\n\nReturns the value of X raised to the power of Y.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT POW(2,2);\n -> 4\nmysql> SELECT POW(2,-2);\n -> 0.25\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(114,'POWER',14,'Syntax:\nPOWER(X,Y)\n\nThis is a synonym for POW().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(115,'RADIANS',14,'Syntax:\nRADIANS(X)\n\nReturns the argument X, converted from degrees to radians. (Note that\nπ radians equals 180 degrees.)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT RADIANS(90);\n -> 1.5707963267949\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(116,'RAND',14,'Syntax:\nRAND([N])\n\nReturns a random floating-point value v in the range 0 <= v < 1.0. To\nobtain a random integer R in the range i <= R < j, use the expression\nFLOOR(i + RAND() * (j − i)). For example, to obtain a random integer\nin the range the range 7 <= R < 12, use the following statement:\n\nSELECT FLOOR(7 + (RAND() * 5));\n\nIf an integer argument N is specified, it is used as the seed value:\n\no With a constant initializer argument, the seed is initialized once\n when the statement is prepared, prior to execution.\n\no With a nonconstant initializer argument (such as a column name), the\n seed is initialized with the value for each invocation of RAND().\n\nOne implication of this behavior is that for equal argument values,\nRAND(N) returns the same value each time, and thus produces a\nrepeatable sequence of column values. In the following example, the\nsequence of values produced by RAND(3) is the same both places it\noccurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> CREATE TABLE t (i INT);\nQuery OK, 0 rows affected (0.42 sec)\n\nmysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.61914388706828 |\n| 2 | 0.93845168309142 |\n| 3 | 0.83482678498591 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.35877890638893 |\n| 2 | 0.28941420772058 |\n| 3 | 0.37073435016976 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.01 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(117,'ROUND',14,'Syntax:\nROUND(X), ROUND(X,D)\n\nRounds the argument X to D decimal places. The rounding algorithm\ndepends on the data type of X. D defaults to 0 if not specified. D can\nbe negative to cause D digits left of the decimal point of the value X\nto become zero. The maximum absolute value for D is 30; any digits in\nexcess of 30 (or -30) are truncated.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20\nmysql> SELECT ROUND(.12345678901234567890123456789012345, 35);\n -> 0.123456789012345678901234567890\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(118,'SIGN',14,'Syntax:\nSIGN(X)\n\nReturns the sign of the argument as -1, 0, or 1, depending on whether X\nis negative, zero, or positive.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(119,'SIN',14,'Syntax:\nSIN(X)\n\nReturns the sine of X, where X is given in radians.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT SIN(PI());\n -> 1.2246063538224e-16\nmysql> SELECT ROUND(SIN(PI()));\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(120,'SQRT',14,'Syntax:\nSQRT(X)\n\nReturns the square root of a nonnegative number X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT SQRT(4);\n -> 2\nmysql> SELECT SQRT(20);\n -> 4.4721359549996\nmysql> SELECT SQRT(-16);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(121,'TAN',14,'Syntax:\nTAN(X)\n\nReturns the tangent of X, where X is given in radians.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT TAN(PI());\n -> -1.2246063538224e-16\nmysql> SELECT TAN(PI()+1);\n -> 1.5574077246549\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(122,'TRUNCATE',14,'Syntax:\nTRUNCATE(X,D)\n\nReturns the number X, truncated to D decimal places. If D is 0, the\nresult has no decimal point or fractional part. D can be negative to\ncause D digits left of the decimal point of the value X to become zero.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT TRUNCATE(1.223,1);\n -> 1.2\nmysql> SELECT TRUNCATE(1.999,1);\n -> 1.9\nmysql> SELECT TRUNCATE(1.999,0);\n -> 1\nmysql> SELECT TRUNCATE(-1.999,1);\n -> -1.9\nmysql> SELECT TRUNCATE(122,-2);\n -> 100\nmysql> SELECT TRUNCATE(10.28*100,0);\n -> 1028\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(123,'ADDDATE',15,'Syntax:\nADDDATE(date,INTERVAL expr unit), ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, ADDDATE()\nis a synonym for DATE_ADD(). The related function SUBDATE() is a\nsynonym for DATE_SUB(). For information on the INTERVAL unit argument,\nsee\nhttps://dev.mysql.com/doc/refman/5.7/en/expressions.html#temporal-inter\nvals.\n\nmysql> SELECT DATE_ADD(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\nmysql> SELECT ADDDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\n\nWhen invoked with the days form of the second argument, MySQL treats it\nas an integer number of days to be added to expr.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT ADDDATE(\'2008-01-02\', 31);\n -> \'2008-02-02\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(124,'ADDTIME',15,'Syntax:\nADDTIME(expr1,expr2)\n\nADDTIME() adds expr2 to expr1 and returns the result. expr1 is a time\nor datetime expression, and expr2 is a time expression.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT ADDTIME(\'2007-12-31 23:59:59.999999\', \'1 1:1:1.000002\');\n -> \'2008-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(125,'CONVERT_TZ',15,'Syntax:\nCONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ() converts a datetime value dt from the time zone given by\nfrom_tz to the time zone given by to_tz and returns the resulting\nvalue. Time zones are specified as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html. This\nfunction returns NULL if the arguments are invalid.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'GMT\',\'MET\');\n -> \'2004-01-01 13:00:00\'\nmysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'+00:00\',\'+10:00\');\n -> \'2004-01-01 22:00:00\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(126,'CURDATE',15,'Syntax:\nCURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD format,\ndepending on whether the function is used in string or numeric context.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT CURDATE();\n -> \'2008-06-13\'\nmysql> SELECT CURDATE() + 0;\n -> 20080613\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(127,'CURRENT_DATE',15,'Syntax:\nCURRENT_DATE, CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(128,'CURRENT_TIME',15,'Syntax:\nCURRENT_TIME, CURRENT_TIME([fsp])\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(129,'CURRENT_TIMESTAMP',15,'Syntax:\nCURRENT_TIMESTAMP, CURRENT_TIMESTAMP([fsp])\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(130,'CURTIME',15,'Syntax:\nCURTIME([fsp])\n\nReturns the current time as a value in \'hh:mm:ss\' or hhmmss format,\ndepending on whether the function is used in string or numeric context.\nThe value is expressed in the session time zone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026.000000\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(131,'DATE FUNCTION',15,'Syntax:\nDATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(132,'DATEDIFF',15,'Syntax:\nDATEDIFF(expr1,expr2)\n\nDATEDIFF() returns expr1 − expr2 expressed as a value in days from\none date to the other. expr1 and expr2 are date or date-and-time\nexpressions. Only the date parts of the values are used in the\ncalculation.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DATEDIFF(\'2007-12-31 23:59:59\',\'2007-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'2010-11-30 23:59:59\',\'2010-12-31\');\n -> -31\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(133,'DATE_ADD',15,'Syntax:\nDATE_ADD(date,INTERVAL expr unit), DATE_SUB(date,INTERVAL expr unit)\n\nThese functions perform date arithmetic. The date argument specifies\nthe starting date or datetime value. expr is an expression specifying\nthe interval value to be added or subtracted from the starting date.\nexpr is evaluated as a string; it may start with a - for negative\nintervals. unit is a keyword indicating the units in which the\nexpression should be interpreted.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_ADD(\'2018-05-01\',INTERVAL 1 DAY);\n -> \'2018-05-02\'\nmysql> SELECT DATE_SUB(\'2018-05-01\',INTERVAL 1 YEAR);\n -> \'2017-05-01\'\nmysql> SELECT DATE_ADD(\'2020-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'2021-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'2018-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'2019-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'2100-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'2101-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'2025-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'2024-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1900-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1899-12-30 14:00:00\'\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT DATE_ADD(\'1992-12-31 23:59:59.000002\',\n -> INTERVAL \'1.999999\' SECOND_MICROSECOND);\n -> \'1993-01-01 00:00:01.000001\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(134,'DATE_FORMAT',15,'Syntax:\nDATE_FORMAT(date,format)\n\nFormats the date value according to the format string.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2009-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Sunday October 2009\'\nmysql> SELECT DATE_FORMAT(\'2007-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1900-10-04 22:23:00\',\n -> \'%D %y %a %d %m %b %j\');\n -> \'4th 00 Thu 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n -> \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'\nmysql> SELECT DATE_FORMAT(\'2006-06-00\', \'%d\');\n -> \'00\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(135,'DATE_SUB',15,'Syntax:\nDATE_SUB(date,INTERVAL expr unit)\n\nSee the description for DATE_ADD().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(136,'DAY',15,'Syntax:\nDAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(137,'DAYNAME',15,'Syntax:\nDAYNAME(date)\n\nReturns the name of the weekday for date. The language used for the\nname is controlled by the value of the lc_time_names system variable\n(https://dev.mysql.com/doc/refman/5.7/en/locale-support.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DAYNAME(\'2007-02-03\');\n -> \'Saturday\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(138,'DAYOFMONTH',15,'Syntax:\nDAYOFMONTH(date)\n\nReturns the day of the month for date, in the range 1 to 31, or 0 for\ndates such as \'0000-00-00\' or \'2008-00-00\' that have a zero day part.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFMONTH(\'2007-02-03\');\n -> 3\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(139,'DAYOFWEEK',15,'Syntax:\nDAYOFWEEK(date)\n\nReturns the weekday index for date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFWEEK(\'2007-02-03\');\n -> 7\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(140,'DAYOFYEAR',15,'Syntax:\nDAYOFYEAR(date)\n\nReturns the day of the year for date, in the range 1 to 366.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFYEAR(\'2007-02-03\');\n -> 34\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(141,'EXTRACT',15,'Syntax:\nEXTRACT(unit FROM date)\n\nThe EXTRACT() function uses the same kinds of unit specifiers as\nDATE_ADD() or DATE_SUB(), but extracts parts from the date rather than\nperforming date arithmetic. For information on the unit argument, see\nhttps://dev.mysql.com/doc/refman/5.7/en/expressions.html#temporal-inter\nvals.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT EXTRACT(YEAR FROM \'2019-07-02\');\n -> 2019\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'2019-07-02 01:02:03\');\n -> 201907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'2019-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.000123\');\n -> 123\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(142,'FROM_DAYS',15,'Syntax:\nFROM_DAYS(N)\n\nGiven a day number N, returns a DATE value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_DAYS(730669);\n -> \'2000-07-03\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(143,'FROM_UNIXTIME',15,'Syntax:\nFROM_UNIXTIME(unix_timestamp[,format])\n\nReturns a representation of unix_timestamp as a datetime or character\nstring value. The value returned is expressed using the session time\nzone. (Clients can set the session time zone as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html.)\nunix_timestamp is an internal timestamp value representing seconds\nsince \'1970-01-01 00:00:00\' UTC, such as produced by the\nUNIX_TIMESTAMP() function.\n\nIf format is omitted, this function returns a DATETIME value.\n\nIf unix_timestamp is an integer, the fractional seconds precision of\nthe DATETIME is zero. When unix_timestamp is a decimal value, the\nfractional seconds precision of the DATETIME is the same as the\nprecision of the decimal value, up to a maximum of 6. When\nunix_timestamp is a floating point number, the fractional seconds\nprecision of the datetime is 6.\n\nformat is used to format the result in the same way as the format\nstring used for the DATE_FORMAT() function. If format is supplied, the\nvalue returned is a VARCHAR.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_UNIXTIME(1447430881);\n -> \'2015-11-13 10:08:01\'\nmysql> SELECT FROM_UNIXTIME(1447430881) + 0;\n -> 20151113100801\nmysql> SELECT FROM_UNIXTIME(1447430881,\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2015 13th November 10:08:01 2015\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(144,'GET_FORMAT',15,'Syntax:\nGET_FORMAT({DATE|TIME|DATETIME}, {\'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\'})\n\nReturns a format string. This function is useful in combination with\nthe DATE_FORMAT() and the STR_TO_DATE() functions.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> \'2003-10-31\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(145,'HOUR',15,'Syntax:\nHOUR(time)\n\nReturns the hour for time. The range of the return value is 0 to 23 for\ntime-of-day values. However, the range of TIME values actually is much\nlarger, so HOUR can return values greater than 23.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10\nmysql> SELECT HOUR(\'272:59:59\');\n -> 272\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(146,'LAST_DAY',15,'Syntax:\nLAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for\nthe last day of the month. Returns NULL if the argument is invalid.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n -> \'2004-02-29\'\nmysql> SELECT LAST_DAY(\'2004-01-01 01:01:01\');\n -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(147,'LOCALTIME',15,'Syntax:\nLOCALTIME, LOCALTIME([fsp])\n\nLOCALTIME and LOCALTIME() are synonyms for NOW().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(148,'LOCALTIMESTAMP',15,'Syntax:\nLOCALTIMESTAMP, LOCALTIMESTAMP([fsp])\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(149,'MAKEDATE',15,'Syntax:\nMAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values. dayofyear must be\ngreater than 0 or the result is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MAKEDATE(2011,31), MAKEDATE(2011,32);\n -> \'2011-01-31\', \'2011-02-01\'\nmysql> SELECT MAKEDATE(2011,365), MAKEDATE(2014,365);\n -> \'2011-12-31\', \'2014-12-31\'\nmysql> SELECT MAKEDATE(2011,0);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(150,'MAKETIME',15,'Syntax:\nMAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and second\narguments.\n\nThe second argument can have a fractional part.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(151,'MICROSECOND',15,'Syntax:\nMICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'2019-12-31 23:59:59.000010\');\n -> 10\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(152,'MINUTE',15,'Syntax:\nMINUTE(time)\n\nReturns the minute for time, in the range 0 to 59.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MINUTE(\'2008-02-03 10:05:03\');\n -> 5\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(153,'MONTH',15,'Syntax:\nMONTH(date)\n\nReturns the month for date, in the range 1 to 12 for January to\nDecember, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have\na zero month part.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MONTH(\'2008-02-03\');\n -> 2\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(154,'MONTHNAME',15,'Syntax:\nMONTHNAME(date)\n\nReturns the full name of the month for date. The language used for the\nname is controlled by the value of the lc_time_names system variable\n(https://dev.mysql.com/doc/refman/5.7/en/locale-support.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MONTHNAME(\'2008-02-03\');\n -> \'February\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(155,'NOW',15,'Syntax:\nNOW([fsp])\n\nReturns the current date and time as a value in \'YYYY-MM-DD hh:mm:ss\'\nor YYYYMMDDhhmmss format, depending on whether the function is used in\nstring or numeric context. The value is expressed in the session time\nzone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT NOW();\n -> \'2007-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 20071215235026.000000\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(156,'PERIOD_ADD',15,'Syntax:\nPERIOD_ADD(P,N)\n\nAdds N months to period P (in the format YYMM or YYYYMM). Returns a\nvalue in the format YYYYMM.\n\n*Note*:\n\nThe period argument P is not a date value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_ADD(200801,2);\n -> 200803\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(157,'PERIOD_DIFF',15,'Syntax:\nPERIOD_DIFF(P1,P2)\n\nReturns the number of months between periods P1 and P2. P1 and P2\nshould be in the format YYMM or YYYYMM. Note that the period arguments\nP1 and P2 are not date values.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_DIFF(200802,200703);\n -> 11\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(158,'QUARTER',15,'Syntax:\nQUARTER(date)\n\nReturns the quarter of the year for date, in the range 1 to 4.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT QUARTER(\'2008-04-01\');\n -> 2\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(159,'SECOND',15,'Syntax:\nSECOND(time)\n\nReturns the second for time, in the range 0 to 59.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(160,'SEC_TO_TIME',15,'Syntax:\nSEC_TO_TIME(seconds)\n\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a TIME value. The range of the result is constrained to that of the\nTIME data type. A warning occurs if the argument corresponds to a value\noutside that range.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(161,'STR_TO_DATE',15,'Syntax:\nSTR_TO_DATE(str,format)\n\nThis is the inverse of the DATE_FORMAT() function. It takes a string\nstr and a format string format. STR_TO_DATE() returns a DATETIME value\nif the format string contains both date and time parts, or a DATE or\nTIME value if the string contains only date or time parts. If the date,\ntime, or datetime value extracted from str is illegal, STR_TO_DATE()\nreturns NULL and produces a warning.\n\nThe server scans str attempting to match format to it. The format\nstring can contain literal characters and format specifiers beginning\nwith %. Literal characters in format must match literally in str.\nFormat specifiers in format must match a date or time part in str. For\nthe specifiers that can be used in format, see the DATE_FORMAT()\nfunction description.\n\nmysql> SELECT STR_TO_DATE(\'01,5,2013\',\'%d,%m,%Y\');\n -> \'2013-05-01\'\nmysql> SELECT STR_TO_DATE(\'May 1, 2013\',\'%M %d,%Y\');\n -> \'2013-05-01\'\n\nScanning starts at the beginning of str and fails if format is found\nnot to match. Extra characters at the end of str are ignored.\n\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'a%h:%i:%s\');\n -> \'09:30:17\'\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'%h:%i:%s\');\n -> NULL\nmysql> SELECT STR_TO_DATE(\'09:30:17a\',\'%h:%i:%s\');\n -> \'09:30:17\'\n\nUnspecified date or time parts have a value of 0, so incompletely\nspecified values in str produce a result with some or all parts set to\n0:\n\nmysql> SELECT STR_TO_DATE(\'abc\',\'abc\');\n -> \'0000-00-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%m\');\n -> \'0000-09-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%s\');\n -> \'00:00:09\'\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(162,'SUBDATE',15,'Syntax:\nSUBDATE(date,INTERVAL expr unit), SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, SUBDATE()\nis a synonym for DATE_SUB(). For information on the INTERVAL unit\nargument, see the discussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\nmysql> SELECT SUBDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\n\nThe second form enables the use of an integer value for days. In such\ncases, it is interpreted as the number of days to be subtracted from\nthe date or datetime expression expr.\n\nmysql> SELECT SUBDATE(\'2008-01-02 12:00:00\', 31);\n -> \'2007-12-02 12:00:00\'\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(163,'SUBTIME',15,'Syntax:\nSUBTIME(expr1,expr2)\n\nSUBTIME() returns expr1 − expr2 expressed as a value in the same\nformat as expr1. expr1 is a time or datetime expression, and expr2 is a\ntime expression.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT SUBTIME(\'2007-12-31 23:59:59.999999\',\'1 1:1:1.000002\');\n -> \'2007-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(164,'SYSDATE',15,'Syntax:\nSYSDATE([fsp])\n\nReturns the current date and time as a value in \'YYYY-MM-DD hh:mm:ss\'\nor YYYYMMDDhhmmss format, depending on whether the function is used in\nstring or numeric context.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nSYSDATE() returns the time at which it executes. This differs from the\nbehavior for NOW(), which returns a constant time that indicates the\ntime at which the statement began to execute. (Within a stored function\nor trigger, NOW() returns the time at which the function or triggering\nstatement began to execute.)\n\nmysql> SELECT NOW(), SLEEP(2), NOW();\n+---------------------+----------+---------------------+\n| NOW() | SLEEP(2) | NOW() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:36 | 0 | 2006-04-12 13:47:36 |\n+---------------------+----------+---------------------+\n\nmysql> SELECT SYSDATE(), SLEEP(2), SYSDATE();\n+---------------------+----------+---------------------+\n| SYSDATE() | SLEEP(2) | SYSDATE() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:44 | 0 | 2006-04-12 13:47:46 |\n+---------------------+----------+---------------------+\n\nIn addition, the SET TIMESTAMP statement affects the value returned by\nNOW() but not by SYSDATE(). This means that timestamp settings in the\nbinary log have no effect on invocations of SYSDATE().\n\nBecause SYSDATE() can return different values even within the same\nstatement, and is not affected by SET TIMESTAMP, it is nondeterministic\nand therefore unsafe for replication if statement-based binary logging\nis used. If that is a problem, you can use row-based logging.\n\nAlternatively, you can use the --sysdate-is-now option to cause\nSYSDATE() to be an alias for NOW(). This works if the option is used on\nboth the source and the replica.\n\nThe nondeterministic nature of SYSDATE() also means that indexes cannot\nbe used for evaluating expressions that refer to it.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(165,'TIME FUNCTION',15,'Syntax:\nTIME(expr)\n\nExtracts the time part of the time or datetime expression expr and\nreturns it as a string.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT TIME(\'2003-12-31 01:02:03\');\n -> \'01:02:03\'\nmysql> SELECT TIME(\'2003-12-31 01:02:03.000123\');\n -> \'01:02:03.000123\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(166,'TIMEDIFF',15,'Syntax:\nTIMEDIFF(expr1,expr2)\n\nTIMEDIFF() returns expr1 − expr2 expressed as a time value. expr1 and\nexpr2 are time or date-and-time expressions, but both must be of the\nsame type.\n\nThe result returned by TIMEDIFF() is limited to the range allowed for\nTIME values. Alternatively, you can use either of the functions\nTIMESTAMPDIFF() and UNIX_TIMESTAMP(), both of which return integers.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'2008-12-31 23:59:59.000001\',\n -> \'2008-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(167,'TIMESTAMP FUNCTION',15,'Syntax:\nTIMESTAMP(expr), TIMESTAMP(expr1,expr2)\n\nWith a single argument, this function returns the date or datetime\nexpression expr as a datetime value. With two arguments, it adds the\ntime expression expr2 to the date or datetime expression expr1 and\nreturns the result as a datetime value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMP(\'2003-12-31\');\n -> \'2003-12-31 00:00:00\'\nmysql> SELECT TIMESTAMP(\'2003-12-31 12:00:00\',\'12:00:00\');\n -> \'2004-01-01 00:00:00\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(168,'TIMESTAMPADD',15,'Syntax:\nTIMESTAMPADD(unit,interval,datetime_expr)\n\nAdds the integer expression interval to the date or datetime expression\ndatetime_expr. The unit for interval is given by the unit argument,\nwhich should be one of the following values: MICROSECOND\n(microseconds), SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, QUARTER, or\nYEAR.\n\nThe unit value may be specified using one of keywords as shown, or with\na prefix of SQL_TSI_. For example, DAY and SQL_TSI_DAY both are legal.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPADD(MINUTE,1,\'2003-01-02\');\n -> \'2003-01-02 00:01:00\'\nmysql> SELECT TIMESTAMPADD(WEEK,1,\'2003-01-02\');\n -> \'2003-01-09\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(169,'TIMESTAMPDIFF',15,'Syntax:\nTIMESTAMPDIFF(unit,datetime_expr1,datetime_expr2)\n\nReturns datetime_expr2 − datetime_expr1, where datetime_expr1 and\ndatetime_expr2 are date or datetime expressions. One expression may be\na date and the other a datetime; a date value is treated as a datetime\nhaving the time part \'00:00:00\' where necessary. The unit for the\nresult (an integer) is given by the unit argument. The legal values for\nunit are the same as those listed in the description of the\nTIMESTAMPADD() function.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1\nmysql> SELECT TIMESTAMPDIFF(MINUTE,\'2003-02-01\',\'2003-05-01 12:05:55\');\n -> 128885\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(170,'TIME_FORMAT',15,'Syntax:\nTIME_FORMAT(time,format)\n\nThis is used like the DATE_FORMAT() function, but the format string may\ncontain format specifiers only for hours, minutes, seconds, and\nmicroseconds. Other specifiers produce a NULL value or 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_FORMAT(\'100:00:00\', \'%H %k %h %I %l\');\n -> \'100 100 04 04 4\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(171,'TIME_TO_SEC',15,'Syntax:\nTIME_TO_SEC(time)\n\nReturns the time argument, converted to seconds.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(172,'TO_DAYS',15,'Syntax:\nTO_DAYS(date)\n\nGiven a date date, returns a day number (the number of days since year\n0).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'2007-10-07\');\n -> 733321\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(173,'TO_SECONDS',15,'Syntax:\nTO_SECONDS(expr)\n\nGiven a date or datetime expr, returns the number of seconds since the\nyear 0. If expr is not a valid date or datetime value, returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT TO_SECONDS(950501);\n -> 62966505600\nmysql> SELECT TO_SECONDS(\'2009-11-29\');\n -> 63426672000\nmysql> SELECT TO_SECONDS(\'2009-11-29 13:43:32\');\n -> 63426721412\nmysql> SELECT TO_SECONDS( NOW() );\n -> 63426721458\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(174,'UNIX_TIMESTAMP',15,'Syntax:\nUNIX_TIMESTAMP([date])\n\nIf UNIX_TIMESTAMP() is called with no date argument, it returns a Unix\ntimestamp representing seconds since \'1970-01-01 00:00:00\' UTC.\n\nIf UNIX_TIMESTAMP() is called with a date argument, it returns the\nvalue of the argument as seconds since \'1970-01-01 00:00:00\' UTC. The\nserver interprets date as a value in the session time zone and converts\nit to an internal Unix timestamp value in UTC. (Clients can set the\nsession time zone as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html.) The\ndate argument may be a DATE, DATETIME, or TIMESTAMP string, or a number\nin YYMMDD, YYMMDDhhmmss, YYYYMMDD, or YYYYMMDDhhmmss format. If the\nargument includes a time part, it may optionally include a fractional\nseconds part.\n\nThe return value is an integer if no argument is given or the argument\ndoes not include a fractional seconds part, or DECIMAL if an argument\nis given that includes a fractional seconds part.\n\nWhen the date argument is a TIMESTAMP column, UNIX_TIMESTAMP() returns\nthe internal timestamp value directly, with no implicit\n\"string-to-Unix-timestamp\" conversion.\n\nThe valid range of argument values is the same as for the TIMESTAMP\ndata type: \'1970-01-01 00:00:01.000000\' UTC to \'2038-01-19\n03:14:07.999999\' UTC. If you pass an out-of-range date to\nUNIX_TIMESTAMP(), it returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 1447431666\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19\');\n -> 1447431619\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19.012\');\n -> 1447431619.012\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(175,'UTC_DATE',15,'Syntax:\nUTC_DATE, UTC_DATE()\n\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in string or numeric\ncontext.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(176,'UTC_TIME',15,'Syntax:\nUTC_TIME, UTC_TIME([fsp])\n\nReturns the current UTC time as a value in \'hh:mm:ss\' or hhmmss format,\ndepending on whether the function is used in string or numeric context.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753.000000\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(177,'UTC_TIMESTAMP',15,'Syntax:\nUTC_TIMESTAMP, UTC_TIMESTAMP([fsp])\n\nReturns the current UTC date and time as a value in \'YYYY-MM-DD\nhh:mm:ss\' or YYYYMMDDhhmmss format, depending on whether the function\nis used in string or numeric context.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804.000000\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(178,'WEEK',15,'Syntax:\nWEEK(date[,mode])\n\nThis function returns the week number for date. The two-argument form\nof WEEK() enables you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to 53\nor from 1 to 53. If the mode argument is omitted, the value of the\ndefault_week_format system variable is used. See\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT WEEK(\'2008-02-20\');\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',1);\n -> 8\nmysql> SELECT WEEK(\'2008-12-31\',1);\n -> 53\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(179,'WEEKDAY',15,'Syntax:\nWEEKDAY(date)\n\nReturns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 =\nSunday).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKDAY(\'2008-02-03 22:23:00\');\n -> 6\nmysql> SELECT WEEKDAY(\'2007-11-06\');\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(180,'WEEKOFYEAR',15,'Syntax:\nWEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the range from 1\nto 53. WEEKOFYEAR() is a compatibility function that is equivalent to\nWEEK(date,3).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKOFYEAR(\'2008-02-20\');\n -> 8\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(181,'YEAR',15,'Syntax:\nYEAR(date)\n\nReturns the year for date, in the range 1000 to 9999, or 0 for the\n\"zero\" date.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT YEAR(\'1987-01-01\');\n -> 1987\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(182,'YEARWEEK',15,'Syntax:\nYEARWEEK(date), YEARWEEK(date,mode)\n\nReturns year and week for a date. The year in the result may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n\nThe mode argument works exactly like the mode argument to WEEK(). For\nthe single-argument syntax, a mode value of 0 is used. Unlike WEEK(),\nthe value of default_week_format does not influence YEARWEEK().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198652\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(183,'ASCII',16,'Syntax:\nASCII(str)\n\nReturns the numeric value of the leftmost character of the string str.\nReturns 0 if str is the empty string. Returns NULL if str is NULL.\nASCII() works for 8-bit characters.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(184,'BIN',16,'Syntax:\nBIN(N)\n\nReturns a string representation of the binary value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,2). Returns\nNULL if N is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT BIN(12);\n -> \'1100\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(185,'BIT_LENGTH',16,'Syntax:\nBIT_LENGTH(str)\n\nReturns the length of the string str in bits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(186,'CHAR FUNCTION',16,'Syntax:\nCHAR(N,... [USING charset_name])\n\nCHAR() interprets each argument N as an integer and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\n\nBy default, CHAR() returns a binary string. To produce a string in a\ngiven character set, use the optional USING clause:\n\nmysql> SELECT CHARSET(CHAR(X\'65\')), CHARSET(CHAR(X\'65\' USING utf8));\n+----------------------+---------------------------------+\n| CHARSET(CHAR(X\'65\')) | CHARSET(CHAR(X\'65\' USING utf8)) |\n+----------------------+---------------------------------+\n| binary | utf8 |\n+----------------------+---------------------------------+\n\nIf USING is given and the result string is illegal for the given\ncharacter set, a warning is issued. Also, if strict SQL mode is\nenabled, the result from CHAR() becomes NULL.\n\nIf CHAR() is invoked from within the mysql client, binary strings\ndisplay using hexadecimal notation, depending on the value of the\n--binary-as-hex. For more information about that option, see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(187,'CHAR_LENGTH',16,'Syntax:\nCHAR_LENGTH(str)\n\nReturns the length of the string str, measured in code points. A\nmultibyte character counts as a single code point. This means that, for\na string containing two 3-byte characters, LENGTH() returns 6, whereas\nCHAR_LENGTH() returns 2, as shown here:\n\nmysql> SET @dolphin:=\'海豚\';\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SELECT LENGTH(@dolphin), CHAR_LENGTH(@dolphin);\n+------------------+-----------------------+\n| LENGTH(@dolphin) | CHAR_LENGTH(@dolphin) |\n+------------------+-----------------------+\n| 6 | 2 |\n+------------------+-----------------------+\n1 row in set (0.00 sec)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(188,'CHARACTER_LENGTH',16,'Syntax:\nCHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(189,'CONCAT',16,'Syntax:\nCONCAT(str1,str2,...)\n\nReturns the string that results from concatenating the arguments. May\nhave one or more arguments. If all arguments are nonbinary strings, the\nresult is a nonbinary string. If the arguments include any binary\nstrings, the result is a binary string. A numeric argument is converted\nto its equivalent nonbinary string form.\n\nCONCAT() returns NULL if any argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(190,'CONCAT_WS',16,'Syntax:\nCONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for Concatenate With Separator and is a special form\nof CONCAT(). The first argument is the separator for the rest of the\narguments. The separator is added between the strings to be\nconcatenated. The separator can be a string, as can the rest of the\narguments. If the separator is NULL, the result is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(191,'ELT',16,'Syntax:\nELT(N,str1,str2,str3,...)\n\nELT() returns the Nth element of the list of strings: str1 if N = 1,\nstr2 if N = 2, and so on. Returns NULL if N is less than 1 or greater\nthan the number of arguments. ELT() is the complement of FIELD().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT ELT(1, \'Aa\', \'Bb\', \'Cc\', \'Dd\');\n -> \'Aa\'\nmysql> SELECT ELT(4, \'Aa\', \'Bb\', \'Cc\', \'Dd\');\n -> \'Dd\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(192,'EXPORT_SET',16,'Syntax:\nEXPORT_SET(bits,on,off[,separator[,number_of_bits]])\n\nReturns a string such that for every bit set in the value bits, you get\nan on string and for every bit not set in the value, you get an off\nstring. Bits in bits are examined from right to left (from low-order to\nhigh-order bits). Strings are added to the result from left to right,\nseparated by the separator string (the default being the comma\ncharacter ,). The number of bits examined is given by number_of_bits,\nwhich has a default of 64 if not specified. number_of_bits is silently\nclipped to 64 if larger than 64. It is treated as an unsigned integer,\nso a value of −1 is effectively the same as 64.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);\n -> \'0,1,1,0,0,0,0,0,0,0\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(193,'FIELD',16,'Syntax:\nFIELD(str,str1,str2,str3,...)\n\nReturns the index (position) of str in the str1, str2, str3, ... list.\nReturns 0 if str is not found.\n\nIf all arguments to FIELD() are strings, all arguments are compared as\nstrings. If all arguments are numbers, they are compared as numbers.\nOtherwise, the arguments are compared as double.\n\nIf str is NULL, the return value is 0 because NULL fails equality\ncomparison with any value. FIELD() is the complement of ELT().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT FIELD(\'Bb\', \'Aa\', \'Bb\', \'Cc\', \'Dd\', \'Ff\');\n -> 2\nmysql> SELECT FIELD(\'Gg\', \'Aa\', \'Bb\', \'Cc\', \'Dd\', \'Ff\');\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(194,'FIND_IN_SET',16,'Syntax:\nFIND_IN_SET(str,strlist)\n\nReturns a value in the range of 1 to N if the string str is in the\nstring list strlist consisting of N substrings. A string list is a\nstring composed of substrings separated by , characters. If the first\nargument is a constant string and the second is a column of type SET,\nthe FIND_IN_SET() function is optimized to use bit arithmetic. Returns\n0 if str is not in strlist or if strlist is the empty string. Returns\nNULL if either argument is NULL. This function does not work properly\nif the first argument contains a comma (,) character.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(195,'FORMAT',16,'Syntax:\nFORMAT(X,D[,locale])\n\nFormats the number X to a format like \'#,###,###.##\', rounded to D\ndecimal places, and returns the result as a string. If D is 0, the\nresult has no decimal point or fractional part.\n\nThe optional third parameter enables a locale to be specified to be\nused for the result number\'s decimal point, thousands separator, and\ngrouping between separators. Permissible locale values are the same as\nthe legal values for the lc_time_names system variable (see\nhttps://dev.mysql.com/doc/refman/5.7/en/locale-support.html). If no\nlocale is specified, the default is \'en_US\'.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'\nmysql> SELECT FORMAT(12332.2,2,\'de_DE\');\n -> \'12.332,20\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(196,'FROM_BASE64',16,'Syntax:\nFROM_BASE64(str)\n\nTakes a string encoded with the base-64 encoded rules used by\nTO_BASE64() and returns the decoded result as a binary string. The\nresult is NULL if the argument is NULL or not a valid base-64 string.\nSee the description of TO_BASE64() for details about the encoding and\ndecoding rules.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT TO_BASE64(\'abc\'), FROM_BASE64(TO_BASE64(\'abc\'));\n -> \'JWJj\', \'abc\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(197,'HEX',16,'Syntax:\nHEX(str), HEX(N)\n\nFor a string argument str, HEX() returns a hexadecimal string\nrepresentation of str where each byte of each character in str is\nconverted to two hexadecimal digits. (Multibyte characters therefore\nbecome more than two digits.) The inverse of this operation is\nperformed by the UNHEX() function.\n\nFor a numeric argument N, HEX() returns a hexadecimal string\nrepresentation of the value of N treated as a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16). The inverse of this operation is\nperformed by CONV(HEX(N),16,10).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT X\'616263\', HEX(\'abc\'), UNHEX(HEX(\'abc\'));\n -> \'abc\', 616263, \'abc\'\nmysql> SELECT HEX(255), CONV(HEX(255),16,10);\n -> \'FF\', 255\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(198,'INSERT FUNCTION',16,'Syntax:\nINSERT(str,pos,len,newstr)\n\nReturns the string str, with the substring beginning at position pos\nand len characters long replaced by the string newstr. Returns the\noriginal string if pos is not within the length of the string. Replaces\nthe rest of the string from position pos if len is not within the\nlength of the rest of the string. Returns NULL if any argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT INSERT(\'Quadratic\', 3, 4, \'What\');\n -> \'QuWhattic\'\nmysql> SELECT INSERT(\'Quadratic\', -1, 4, \'What\');\n -> \'Quadratic\'\nmysql> SELECT INSERT(\'Quadratic\', 3, 100, \'What\');\n -> \'QuWhat\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(199,'INSTR',16,'Syntax:\nINSTR(str,substr)\n\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of LOCATE(),\nexcept that the order of the arguments is reversed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(200,'LCASE',16,'Syntax:\nLCASE(str)\n\nLCASE() is a synonym for LOWER().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(201,'LEFT',16,'Syntax:\nLEFT(str,len)\n\nReturns the leftmost len characters from the string str, or NULL if any\nargument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(202,'LENGTH',16,'Syntax:\nLENGTH(str)\n\nReturns the length of the string str, measured in bytes. A multibyte\ncharacter counts as multiple bytes. This means that for a string\ncontaining five 2-byte characters, LENGTH() returns 10, whereas\nCHAR_LENGTH() returns 5.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT LENGTH(\'text\');\n -> 4\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(203,'LOAD_FILE',16,'Syntax:\nLOAD_FILE(file_name)\n\nReads the file and returns the file contents as a string. To use this\nfunction, the file must be located on the server host, you must specify\nthe full path name to the file, and you must have the FILE privilege.\nThe file must be readable by all and its size less than\nmax_allowed_packet bytes. If the secure_file_priv system variable is\nset to a nonempty directory name, the file to be loaded must be located\nin that directory.\n\nIf the file does not exist or cannot be read because one of the\npreceding conditions is not satisfied, the function returns NULL.\n\nThe character_set_filesystem system variable controls interpretation of\nfile names that are given as literal strings.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> UPDATE t\n SET blob_col=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(204,'LOCATE',16,'Syntax:\nLOCATE(substr,str), LOCATE(substr,str,pos)\n\nThe first syntax returns the position of the first occurrence of\nsubstring substr in string str. The second syntax returns the position\nof the first occurrence of substring substr in string str, starting at\nposition pos. Returns 0 if substr is not in str. Returns NULL if substr\nor str is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\', 5);\n -> 7\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(205,'LOWER',16,'Syntax:\nLOWER(str)\n\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'\n\nLOWER() (and UPPER()) are ineffective when applied to binary strings\n(BINARY, VARBINARY, BLOB). To perform lettercase conversion of a binary\nstring, first convert it to a nonbinary string using a character set\nappropriate for the data stored in the string:\n\nmysql> SET @str = BINARY \'New York\';\nmysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1));\n+-------------+-----------------------------------+\n| LOWER(@str) | LOWER(CONVERT(@str USING latin1)) |\n+-------------+-----------------------------------+\n| New York | new york |\n+-------------+-----------------------------------+\n\nFor collations of Unicode character sets, LOWER() and UPPER() work\naccording to the Unicode Collation Algorithm (UCA) version in the\ncollation name, if there is one, and UCA 4.0.0 if no version is\nspecified. For example, utf8_unicode_520_ci works according to UCA\n5.2.0, whereas utf8_unicode_ci works according to UCA 4.0.0. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-unicode-sets.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(206,'LPAD',16,'Syntax:\nLPAD(str,len,padstr)\n\nReturns the string str, left-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(207,'LTRIM',16,'Syntax:\nLTRIM(str)\n\nReturns the string str with leading space characters removed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(208,'MAKE_SET',16,'Syntax:\nMAKE_SET(bits,str1,str2,...)\n\nReturns a set value (a string containing substrings separated by ,\ncharacters) consisting of the strings that have the corresponding bit\nin bits set. str1 corresponds to bit 0, str2 to bit 1, and so on. NULL\nvalues in str1, str2, ... are not appended to the result.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT MAKE_SET(1,\'a\',\'b\',\'c\');\n -> \'a\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',\'world\');\n -> \'hello,world\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',NULL,\'world\');\n -> \'hello\'\nmysql> SELECT MAKE_SET(0,\'a\',\'b\',\'c\');\n -> \'\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(209,'MID',16,'Syntax:\nMID(str,pos,len)\n\nMID(str,pos,len) is a synonym for SUBSTRING(str,pos,len).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(210,'OCT',16,'Syntax:\nOCT(N)\n\nReturns a string representation of the octal value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,8). Returns\nNULL if N is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT OCT(12);\n -> \'14\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(211,'OCTET_LENGTH',16,'Syntax:\nOCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(212,'ORD',16,'Syntax:\nORD(str)\n\nIf the leftmost character of the string str is a multibyte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multibyte character, ORD() returns\nthe same value as the ASCII() function.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT ORD(\'2\');\n -> 50\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(213,'POSITION',16,'Syntax:\nPOSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(214,'QUOTE',16,'Syntax:\nQUOTE(str)\n\nQuotes a string to produce a result that can be used as a properly\nescaped data value in an SQL statement. The string is returned enclosed\nby single quotation marks and with each instance of backslash (\\),\nsingle quote (\'), ASCII NUL, and Control+Z preceded by a backslash. If\nthe argument is NULL, the return value is the word \"NULL\" without\nenclosing single quotation marks.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(215,'REPEAT FUNCTION',16,'Syntax:\nREPEAT(str,count)\n\nReturns a string consisting of the string str repeated count times. If\ncount is less than 1, returns an empty string. Returns NULL if str or\ncount are NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(216,'REPLACE FUNCTION',16,'Syntax:\nREPLACE(str,from_str,to_str)\n\nReturns the string str with all occurrences of the string from_str\nreplaced by the string to_str. REPLACE() performs a case-sensitive\nmatch when searching for from_str.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT REPLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(217,'REVERSE',16,'Syntax:\nREVERSE(str)\n\nReturns the string str with the order of the characters reversed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(218,'RIGHT',16,'Syntax:\nRIGHT(str,len)\n\nReturns the rightmost len characters from the string str, or NULL if\nany argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(219,'RPAD',16,'Syntax:\nRPAD(str,len,padstr)\n\nReturns the string str, right-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(220,'RTRIM',16,'Syntax:\nRTRIM(str)\n\nReturns the string str with trailing space characters removed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(221,'SOUNDEX',16,'Syntax:\nSOUNDEX(str)\n\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get a\nstandard soundex string. All nonalphabetic characters in str are\nignored. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n\n*Important*:\n\nWhen using SOUNDEX(), you should be aware of the following limitations:\n\no This function, as currently implemented, is intended to work well\n with strings that are in the English language only. Strings in other\n languages may not produce reliable results.\n\no This function is not guaranteed to provide consistent results with\n strings that use multibyte character sets, including utf-8. See Bug\n #22638 for more information.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(222,'SOUNDS LIKE',16,'Syntax:\nexpr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(223,'SPACE',16,'Syntax:\nSPACE(N)\n\nReturns a string consisting of N space characters.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT SPACE(6);\n -> \' \'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(224,'SUBSTR',16,'Syntax:\nSUBSTR(str,pos), SUBSTR(str FROM pos), SUBSTR(str,pos,len), SUBSTR(str\nFROM pos FOR len)\n\nSUBSTR() is a synonym for SUBSTRING().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(225,'SUBSTRING',16,'Syntax:\nSUBSTRING(str,pos), SUBSTRING(str FROM pos), SUBSTRING(str,pos,len),\nSUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument return a substring from string str\nstarting at position pos. The forms with a len argument return a\nsubstring len characters long from string str, starting at position\npos. The forms that use FROM are standard SQL syntax. It is also\npossible to use a negative value for pos. In this case, the beginning\nof the substring is pos characters from the end of the string, rather\nthan the beginning. A negative value may be used for pos in any of the\nforms of this function. A value of 0 for pos returns an empty string.\n\nFor all forms of SUBSTRING(), the position of the first character in\nthe string from which the substring is to be extracted is reckoned as\n1.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'\nmysql> SELECT SUBSTRING(\'Sakila\', -3);\n -> \'ila\'\nmysql> SELECT SUBSTRING(\'Sakila\', -5, 3);\n -> \'aki\'\nmysql> SELECT SUBSTRING(\'Sakila\' FROM -4 FOR 2);\n -> \'ki\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(226,'SUBSTRING_INDEX',16,'Syntax:\nSUBSTRING_INDEX(str,delim,count)\n\nReturns the substring from string str before count occurrences of the\ndelimiter delim. If count is positive, everything to the left of the\nfinal delimiter (counting from the left) is returned. If count is\nnegative, everything to the right of the final delimiter (counting from\nthe right) is returned. SUBSTRING_INDEX() performs a case-sensitive\nmatch when searching for delim.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(227,'TO_BASE64',16,'Syntax:\nTO_BASE64(str)\n\nConverts the string argument to base-64 encoded form and returns the\nresult as a character string with the connection character set and\ncollation. If the argument is not a string, it is converted to a string\nbefore conversion takes place. The result is NULL if the argument is\nNULL. Base-64 encoded strings can be decoded using the FROM_BASE64()\nfunction.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT TO_BASE64(\'abc\'), FROM_BASE64(TO_BASE64(\'abc\'));\n -> \'JWJj\', \'abc\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(228,'TRIM',16,'Syntax:\nTRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str), TRIM([remstr\nFROM] str)\n\nReturns the string str with all remstr prefixes or suffixes removed. If\nnone of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is\nassumed. remstr is optional and, if not specified, spaces are removed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(229,'UCASE',16,'Syntax:\nUCASE(str)\n\nUCASE() is a synonym for UPPER().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(230,'UNHEX',16,'Syntax:\nUNHEX(str)\n\nFor a string argument str, UNHEX(str) interprets each pair of\ncharacters in the argument as a hexadecimal number and converts it to\nthe byte represented by the number. The return value is a binary\nstring.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT X\'4D7953514C\';\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(231,'UPPER',16,'Syntax:\nUPPER(str)\n\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'\n\nSee the description of LOWER() for information that also applies to\nUPPER(). This included information about how to perform lettercase\nconversion of binary strings (BINARY, VARBINARY, BLOB) for which these\nfunctions are ineffective, and information about case folding for\nUnicode character sets.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(232,'WEIGHT_STRING',16,'Syntax:\nWEIGHT_STRING(str [AS {CHAR|BINARY}(N)] [LEVEL levels] [flags])\n\nlevels: N [ASC|DESC|REVERSE] [, N [ASC|DESC|REVERSE]] ...\n\nThis function returns the weight string for the input string. The\nreturn value is a binary string that represents the comparison and\nsorting value of the string. It has these properties:\n\no If WEIGHT_STRING(str1) = WEIGHT_STRING(str2), then str1 = str2 (str1\n and str2 are considered equal)\n\no If WEIGHT_STRING(str1) < WEIGHT_STRING(str2), then str1 < str2 (str1\n sorts before str2)\n\nWEIGHT_STRING() is a debugging function intended for internal use. Its\nbehavior can change without notice between MySQL versions. It can be\nused for testing and debugging of collations, especially if you are\nadding a new collation. See\nhttps://dev.mysql.com/doc/refman/5.7/en/adding-collation.html.\n\nThis list briefly summarizes the arguments. More details are given in\nthe discussion following the list.\n\no str: The input string expression.\n\no AS clause: Optional; cast the input string to a given type and\n length.\n\no LEVEL clause: Optional; specify weight levels for the return value.\n\no flags: Optional; unused.\n\nThe input string, str, is a string expression. If the input is a\nnonbinary (character) string such as a CHAR, VARCHAR, or TEXT value,\nthe return value contains the collation weights for the string. If the\ninput is a binary (byte) string such as a BINARY, VARBINARY, or BLOB\nvalue, the return value is the same as the input (the weight for each\nbyte in a binary string is the byte value). If the input is NULL,\nWEIGHT_STRING() returns NULL.\n\nExamples:\n\nmysql> SET @s = _latin1 \'AB\' COLLATE latin1_swedish_ci;\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| AB | 4142 | 4142 |\n+------+---------+------------------------+\n\nmysql> SET @s = _latin1 \'ab\' COLLATE latin1_swedish_ci;\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| ab | 6162 | 4142 |\n+------+---------+------------------------+\n\nmysql> SET @s = CAST(\'AB\' AS BINARY);\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| AB | 4142 | 4142 |\n+------+---------+------------------------+\n\nmysql> SET @s = CAST(\'ab\' AS BINARY);\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| ab | 6162 | 6162 |\n+------+---------+------------------------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(233,'LIKE',16,'Syntax:\nexpr LIKE pat [ESCAPE \'escape_char\']\n\nPattern matching using an SQL pattern. Returns 1 (TRUE) or 0 (FALSE).\nIf either expr or pat is NULL, the result is NULL.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column. In the latter case,\nthe column must be defined as one of the MySQL string types (see\nhttps://dev.mysql.com/doc/refman/5.7/en/string-types.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html\n\n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html'),(234,'NOT LIKE',16,'Syntax:\nexpr NOT LIKE pat [ESCAPE \'escape_char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape_char\']).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html'),(235,'STRCMP',16,'Syntax:\nSTRCMP(expr1,expr2)\n\nSTRCMP() returns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort\norder, and 1 otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html\n\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html'),(236,'NOT REGEXP',16,'Syntax:\nexpr NOT REGEXP pat, expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/regexp.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/regexp.html'),(237,'REGEXP',16,'Syntax:\nexpr REGEXP pat, expr RLIKE pat\n\nReturns 1 if the string expr matches the regular expression specified\nby the pattern pat, 0 otherwise. If either expr or pat is NULL, the\nreturn value is NULL.\n\nRLIKE is a synonym for REGEXP.\n\nThe pattern can be an extended regular expression, the syntax for which\nis discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/regexp.html#regexp-syntax. The\npattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\n*Note*:\n\nMySQL uses C escape syntax in strings (for example, \\n to represent the\nnewline character). If you want your expr or pat argument to contain a\nliteral \\, you must double it. (Unless the NO_BACKSLASH_ESCAPES SQL\nmode is enabled, in which case no escape character is used.)\n\nRegular expression operations use the character set and collation of\nthe string expression and pattern arguments when deciding the type of a\ncharacter and performing the comparison. If the arguments have\ndifferent character sets or collations, coercibility rules apply as\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-collation-coercibility.\nhtml. If either argument is a binary string, the arguments are handled\nin case-sensitive fashion as binary strings.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/regexp.html\n\n','mysql> SELECT \'Michael!\' REGEXP \'.*\';\n+------------------------+\n| \'Michael!\' REGEXP \'.*\' |\n+------------------------+\n| 1 |\n+------------------------+\nmysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\';\n+---------------------------------------+\n| \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\' |\n+---------------------------------------+\n| 0 |\n+---------------------------------------+\nmysql> SELECT \'a\' REGEXP \'^[a-d]\';\n+---------------------+\n| \'a\' REGEXP \'^[a-d]\' |\n+---------------------+\n| 1 |\n+---------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/regexp.html'),(238,'MATCH AGAINST',16,'Syntax:\nMATCH (col1,col2,...) AGAINST (expr [search_modifier])\n\nMySQL has support for full-text indexing and searching:\n\no A full-text index in MySQL is an index of type FULLTEXT.\n\no Full-text indexes can be used only with InnoDB or MyISAM tables, and\n can be created only for CHAR, VARCHAR, or TEXT columns.\n\no MySQL provides a built-in full-text ngram parser that supports\n Chinese, Japanese, and Korean (CJK), and an installable MeCab\n full-text parser plugin for Japanese. Parsing differences are\n outlined in\n https://dev.mysql.com/doc/refman/5.7/en/fulltext-search-ngram.html,\n and\n https://dev.mysql.com/doc/refman/5.7/en/fulltext-search-mecab.html.\n\no A FULLTEXT index definition can be given in the CREATE TABLE\n statement when a table is created, or added later using ALTER TABLE\n or CREATE INDEX.\n\no For large data sets, it is much faster to load your data into a table\n that has no FULLTEXT index and then create the index after that, than\n to load data into a table that has an existing FULLTEXT index.\n\nFull-text searching is performed using MATCH() AGAINST() syntax.\nMATCH() takes a comma-separated list that names the columns to be\nsearched. AGAINST takes a string to search for, and an optional\nmodifier that indicates what type of search to perform. The search\nstring must be a string value that is constant during query evaluation.\nThis rules out, for example, a table column because that can differ for\neach row.\n\nThere are three types of full-text searches:\n\no A natural language search interprets the search string as a phrase in\n natural human language (a phrase in free text). There are no special\n operators, with the exception of double quote (\") characters. The\n stopword list applies. For more information about stopword lists, see\n https://dev.mysql.com/doc/refman/5.7/en/fulltext-stopwords.html.\n\n Full-text searches are natural language searches if the IN NATURAL\n LANGUAGE MODE modifier is given or if no modifier is given. For more\n information, see\n https://dev.mysql.com/doc/refman/5.7/en/fulltext-natural-language.htm\n l.\n\no A boolean search interprets the search string using the rules of a\n special query language. The string contains the words to search for.\n It can also contain operators that specify requirements such that a\n word must be present or absent in matching rows, or that it should be\n weighted higher or lower than usual. Certain common words (stopwords)\n are omitted from the search index and do not match if present in the\n search string. The IN BOOLEAN MODE modifier specifies a boolean\n search. For more information, see\n https://dev.mysql.com/doc/refman/5.7/en/fulltext-boolean.html.\n\no A query expansion search is a modification of a natural language\n search. The search string is used to perform a natural language\n search. Then words from the most relevant rows returned by the search\n are added to the search string and the search is done again. The\n query returns the rows from the second search. The IN NATURAL\n LANGUAGE MODE WITH QUERY EXPANSION or WITH QUERY EXPANSION modifier\n specifies a query expansion search. For more information, see\n https://dev.mysql.com/doc/refman/5.7/en/fulltext-query-expansion.html\n .\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/fulltext-search.html\n\n','mysql> SELECT id, body, MATCH (title,body)\n -> AGAINST (\'Security implications of running MySQL as root\'\n -> IN NATURAL LANGUAGE MODE) AS score\n -> FROM articles\n -> WHERE MATCH (title,body) \n -> AGAINST(\'Security implications of running MySQL as root\'\n -> IN NATURAL LANGUAGE MODE);\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/fulltext-search.html'),(239,'BINARY OPERATOR',17,'Syntax:\nBINARY expr\n\nThe BINARY operator converts the expression to a binary string (a\nstring that has the binary character set and binary collation). A\ncommon use for BINARY is to force a character string comparison to be\ndone byte by byte using numeric byte values rather than character by\ncharacter. The BINARY operator also causes trailing spaces in\ncomparisons to be significant. For information about the differences\nbetween the binary collation of the binary character set and the _bin\ncollations of nonbinary character sets, see\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-binary-collations.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html\n\n','mysql> SELECT \'a\' = \'A\';\n -> 1\nmysql> SELECT BINARY \'a\' = \'A\';\n -> 0\nmysql> SELECT \'a\' = \'a \';\n -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html'),(240,'CAST',17,'Syntax:\nCAST(expr AS type)\n\nCAST(expr AS type takes an expression of any type and produces a result\nvalue of the specified type. This operation may also be expressed as\nCONVERT(expr, type), which is equivalent.\n\nThese type values are permitted:\n\no BINARY[(N)]\n\n Produces a string with the VARBINARY data type, except that when the\n expression expr is empty (zero length), the result type is BINARY(0).\n If the optional length N is given, BINARY(N) causes the cast to use\n no more than N bytes of the argument. Values shorter than N bytes are\n padded with 0x00 bytes to a length of N. If the optional length N is\n not given, MySQL calculates the maximum length from the expression.\n If the supplied or calculated length is greater than an internal\n threshold, the result type is BLOB. If the length is still too long,\n the result type is LONGBLOB.\n\n For a description of how casting to BINARY affects comparisons, see\n https://dev.mysql.com/doc/refman/5.7/en/binary-varbinary.html.\n\no CHAR[(N)] [charset_info]\n\n Produces a string with the VARCHAR data type. except that when the\n expression expr is empty (zero length), the result type is CHAR(0).\n If the optional length N is given, CHAR(N) causes the cast to use no\n more than N characters of the argument. No padding occurs for values\n shorter than N characters. If the optional length N is not given,\n MySQL calculates the maximum length from the expression. If the\n supplied or calculated length is greater than an internal threshold,\n the result type is TEXT. If the length is still too long, the result\n type is LONGTEXT.\n\n With no charset_info clause, CHAR produces a string with the default\n character set. To specify the character set explicitly, these\n charset_info values are permitted:\n\n o CHARACTER SET charset_name: Produces a string with the given\n character set.\n\n o ASCII: Shorthand for CHARACTER SET latin1.\n\n o UNICODE: Shorthand for CHARACTER SET ucs2.\n\n In all cases, the string has the character set default collation.\n\no DATE\n\n Produces a DATE value.\n\no DATETIME[(M)]\n\n Produces a DATETIME value. If the optional M value is given, it\n specifies the fractional seconds precision.\n\no DECIMAL[(M[,D])]\n\n Produces a DECIMAL value. If the optional M and D values are given,\n they specify the maximum number of digits (the precision) and the\n number of digits following the decimal point (the scale). If D is\n omitted, 0 is assumed. If M is omitted, 10 is assumed.\n\no JSON\n\n Produces a JSON value. For details on the rules for conversion of\n values between JSON and other types, see\n https://dev.mysql.com/doc/refman/5.7/en/json.html#json-comparison.\n\no NCHAR[(N)]\n\n Like CHAR, but produces a string with the national character set. See\n https://dev.mysql.com/doc/refman/5.7/en/charset-national.html.\n\n Unlike CHAR, NCHAR does not permit trailing character set information\n to be specified.\n\no SIGNED [INTEGER]\n\n Produces a signed BIGINT value.\n\no TIME[(M)]\n\n Produces a TIME value. If the optional M value is given, it specifies\n the fractional seconds precision.\n\no UNSIGNED [INTEGER]\n\n Produces an unsigned BIGINT value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html'),(241,'CONVERT',17,'Syntax:\nCONVERT(expr USING transcoding_name)\n\nCONVERT(expr,type)\n\nCONVERT(expr USING transcoding_name) is standard SQL syntax. The\nnon-USING form of CONVERT() is ODBC syntax.\n\nCONVERT(expr USING transcoding_name) converts data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the default character set to the corresponding\nstring in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\nCONVERT(expr, type) syntax (without USING) takes an expression and a\ntype value specifying a result type, and produces a result value of the\nspecified type. This operation may also be expressed as CAST(expr AS\ntype), which is equivalent. For more information, see the description\nof CAST().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html'),(242,'EXTRACTVALUE',18,'Syntax:\nExtractValue(xml_frag, xpath_expr)\n\nExtractValue() takes two string arguments, a fragment of XML markup\nxml_frag and an XPath expression xpath_expr (also known as a locator);\nit returns the text (CDATA) of the first text node which is a child of\nthe element or elements matched by the XPath expression.\n\nUsing this function is the equivalent of performing a match using the\nxpath_expr after appending /text(). In other words,\nExtractValue(\'<a><b>Sakila</b></a>\', \'/a/b\') and\nExtractValue(\'<a><b>Sakila</b></a>\', \'/a/b/text()\') produce the same\nresult.\n\nIf multiple matches are found, the content of the first child text node\nof each matching element is returned (in the order matched) as a\nsingle, space-delimited string.\n\nIf no matching text node is found for the expression (including the\nimplicit /text())---for whatever reason, as long as xpath_expr is\nvalid, and xml_frag consists of elements which are properly nested and\nclosed---an empty string is returned. No distinction is made between a\nmatch on an empty element and no match at all. This is by design.\n\nIf you need to determine whether no matching element was found in\nxml_frag or such an element was found but contained no child text\nnodes, you should test the result of an expression that uses the XPath\ncount() function. For example, both of these statements return an empty\nstring, as shown here:\n\nmysql> SELECT ExtractValue(\'<a><b/></a>\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'<a><b/></a>\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'<a><c/></a>\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'<a><c/></a>\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nHowever, you can determine whether there was actually a matching\nelement using the following:\n\nmysql> SELECT ExtractValue(\'<a><b/></a>\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'<a><b/></a>\', \'count(/a/b)\') |\n+-------------------------------------+\n| 1 |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'<a><c/></a>\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'<a><c/></a>\', \'count(/a/b)\') |\n+-------------------------------------+\n| 0 |\n+-------------------------------------+\n1 row in set (0.01 sec)\n\n*Important*:\n\nExtractValue() returns only CDATA, and does not return any tags that\nmight be contained within a matching tag, nor any of their content (see\nthe result returned as val1 in the following example).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/xml-functions.html\n\n','mysql> SELECT\n -> ExtractValue(\'<a>ccc<b>ddd</b></a>\', \'/a\') AS val1,\n -> ExtractValue(\'<a>ccc<b>ddd</b></a>\', \'/a/b\') AS val2,\n -> ExtractValue(\'<a>ccc<b>ddd</b></a>\', \'//b\') AS val3,\n -> ExtractValue(\'<a>ccc<b>ddd</b></a>\', \'/b\') AS val4,\n -> ExtractValue(\'<a>ccc<b>ddd</b><b>eee</b></a>\', \'//b\') AS val5;\n\n+------+------+------+------+---------+\n| val1 | val2 | val3 | val4 | val5 |\n+------+------+------+------+---------+\n| ccc | ddd | ddd | | ddd eee |\n+------+------+------+------+---------+\n','https://dev.mysql.com/doc/refman/5.7/en/xml-functions.html'),(243,'UPDATEXML',18,'Syntax:\nUpdateXML(xml_target, xpath_expr, new_xml)\n\nThis function replaces a single portion of a given fragment of XML\nmarkup xml_target with a new XML fragment new_xml, and then returns the\nchanged XML. The portion of xml_target that is replaced matches an\nXPath expression xpath_expr supplied by the user.\n\nIf no expression matching xpath_expr is found, or if multiple matches\nare found, the function returns the original xml_target XML fragment.\nAll three arguments should be strings.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/xml-functions.html\n\n','mysql> SELECT\n -> UpdateXML(\'<a><b>ccc</b><d></d></a>\', \'/a\', \'<e>fff</e>\') AS val1,\n -> UpdateXML(\'<a><b>ccc</b><d></d></a>\', \'/b\', \'<e>fff</e>\') AS val2,\n -> UpdateXML(\'<a><b>ccc</b><d></d></a>\', \'//b\', \'<e>fff</e>\') AS val3,\n -> UpdateXML(\'<a><b>ccc</b><d></d></a>\', \'/a/d\', \'<e>fff</e>\') AS val4,\n -> UpdateXML(\'<a><d></d><b>ccc</b><d></d></a>\', \'/a/d\', \'<e>fff</e>\') AS val5\n -> \\G\n\n*************************** 1. row ***************************\nval1: <e>fff</e>\nval2: <a><b>ccc</b><d></d></a>\nval3: <a><e>fff</e><d></d></a>\nval4: <a><b>ccc</b><e>fff</e></a>\nval5: <a><d></d><b>ccc</b><d></d></a>\n','https://dev.mysql.com/doc/refman/5.7/en/xml-functions.html'),(244,'|',19,'Syntax:\n|\n\nBitwise OR.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 29 | 15;\n -> 31\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(245,'&',19,'Syntax:\n&\n\nBitwise AND.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 29 & 15;\n -> 13\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(246,'^',19,'Syntax:\n^\n\nBitwise XOR.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(247,'<<',19,'Syntax:\n<<\n\nShifts a longlong (BIGINT) number to the left.\n\nThe result is an unsigned 64-bit integer. The value is truncated to 64\nbits. In particular, if the shift count is greater or equal to the\nwidth of an unsigned 64-bit number, the result is zero.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 1 << 2;\n -> 4\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(248,'>>',19,'Syntax:\n>>\n\nShifts a longlong (BIGINT) number to the right.\n\nThe result is an unsigned 64-bit integer. The value is truncated to 64\nbits. In particular, if the shift count is greater or equal to the\nwidth of an unsigned 64-bit number, the result is zero.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 4 >> 2;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(249,'~',19,'Syntax:\n~\n\nInvert all bits.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 5 & ~1;\n -> 4\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(250,'BIT_COUNT',19,'Syntax:\nBIT_COUNT(N)\n\nReturns the number of bits that are set in the argument N as an\nunsigned 64-bit integer, or NULL if the argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT BIT_COUNT(29), BIT_COUNT(b\'101010\');\n -> 4, 3\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(251,'AES_DECRYPT',20,'Syntax:\nAES_DECRYPT(crypt_str,key_str[,init_vector])\n\nThis function decrypts data using the official AES (Advanced Encryption\nStandard) algorithm. For more information, see the description of\nAES_ENCRYPT().\n\nStatements that use AES_DECRYPT() are unsafe for statement-based\nreplication and cannot be stored in the query cache.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(252,'AES_ENCRYPT',20,'Syntax:\nAES_ENCRYPT(str,key_str[,init_vector])\n\nAES_ENCRYPT() and AES_DECRYPT() implement encryption and decryption of\ndata using the official AES (Advanced Encryption Standard) algorithm,\npreviously known as \"Rijndael.\" The AES standard permits various key\nlengths. By default these functions implement AES with a 128-bit key\nlength. Key lengths of 196 or 256 bits can be used, as described later.\nThe key length is a trade off between performance and security.\n\nAES_ENCRYPT() encrypts the string str using the key string key_str and\nreturns a binary string containing the encrypted output. AES_DECRYPT()\ndecrypts the encrypted string crypt_str using the key string key_str\nand returns the original plaintext string. If either function argument\nis NULL, the function returns NULL.\n\nThe str and crypt_str arguments can be any length, and padding is\nautomatically added to str so it is a multiple of a block as required\nby block-based algorithms such as AES. This padding is automatically\nremoved by the AES_DECRYPT() function. The length of crypt_str can be\ncalculated using this formula:\n\n16 * (trunc(string_length / 16) + 1)\n\nFor a key length of 128 bits, the most secure way to pass a key to the\nkey_str argument is to create a truly random 128-bit value and pass it\nas a binary value. For example:\n\nINSERT INTO t\nVALUES (1,AES_ENCRYPT(\'text\',UNHEX(\'F3229A0B371ED2D9441B830D21A390C3\')));\n\nA passphrase can be used to generate an AES key by hashing the\npassphrase. For example:\n\nINSERT INTO t\nVALUES (1,AES_ENCRYPT(\'text\', UNHEX(SHA2(\'My secret passphrase\',512))));\n\nDo not pass a password or passphrase directly to crypt_str, hash it\nfirst. Previous versions of this documentation suggested the former\napproach, but it is no longer recommended as the examples shown here\nare more secure.\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it returns\nNULL. However, it is possible for AES_DECRYPT() to return a non-NULL\nvalue (possibly garbage) if the input data or the key is invalid.\n\nAES_ENCRYPT() and AES_DECRYPT() permit control of the block encryption\nmode and take an optional init_vector initialization vector argument:\n\no The block_encryption_mode system variable controls the mode for\n block-based encryption algorithms. Its default value is aes-128-ecb,\n which signifies encryption using a key length of 128 bits and ECB\n mode. For a description of the permitted values of this variable, see\n https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\no The optional init_vector argument provides an initialization vector\n for block encryption modes that require it.\n\nFor modes that require the optional init_vector argument, it must be 16\nbytes or longer (bytes in excess of 16 are ignored). An error occurs if\ninit_vector is missing.\n\nFor modes that do not require init_vector, it is ignored and a warning\nis generated if it is specified.\n\nA random string of bytes to use for the initialization vector can be\nproduced by calling RANDOM_BYTES(16). For encryption modes that require\nan initialization vector, the same vector must be used for encryption\nand decryption.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SET block_encryption_mode = \'aes-256-cbc\';\nmysql> SET @key_str = SHA2(\'My secret passphrase\',512);\nmysql> SET @init_vector = RANDOM_BYTES(16);\nmysql> SET @crypt_str = AES_ENCRYPT(\'text\',@key_str,@init_vector);\nmysql> SELECT AES_DECRYPT(@crypt_str,@key_str,@init_vector);\n+-----------------------------------------------+\n| AES_DECRYPT(@crypt_str,@key_str,@init_vector) |\n+-----------------------------------------------+\n| text |\n+-----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(253,'COMPRESS',20,'Syntax:\nCOMPRESS(string_to_compress)\n\nCompresses a string and returns the result as a binary string. This\nfunction requires MySQL to have been compiled with a compression\nlibrary such as zlib. Otherwise, the return value is always NULL. The\ncompressed string can be uncompressed with UNCOMPRESS().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELECT LENGTH(COMPRESS(\'\'));\n -> 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(254,'DECODE',20,'Syntax:\nDECODE(crypt_str,pass_str)\n\nDECODE() decrypts the encrypted string crypt_str using pass_str as the\npassword. crypt_str should be a string returned from ENCODE().\n\n*Note*:\n\nThe ENCODE() and DECODE() functions are deprecated in MySQL 5.7, and\nshould no longer be used. Expect them to be removed in a future MySQL\nrelease. Consider using AES_ENCRYPT() and AES_DECRYPT() instead.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(255,'DES_DECRYPT',20,'Syntax:\nDES_DECRYPT(crypt_str[,key_str])\n\nDecrypts a string encrypted with DES_ENCRYPT(). If an error occurs,\nthis function returns NULL.\n\nThis function works only if MySQL has been configured with SSL support.\nSee https://dev.mysql.com/doc/refman/5.7/en/encrypted-connections.html.\n\nIf no key_str argument is given, DES_DECRYPT() examines the first byte\nof the encrypted string to determine the DES key number that was used\nto encrypt the original string, and then reads the key from the DES key\nfile to decrypt the message. For this to work, the user must have the\nSUPER privilege. The key file can be specified with the --des-key-file\nserver option.\n\nIf you pass this function a key_str argument, that string is used as\nthe key for decrypting the message.\n\nIf the crypt_str argument does not appear to be an encrypted string,\nMySQL returns the given crypt_str.\n\n*Note*:\n\nThe DES_ENCRYPT() and DES_DECRYPT() functions are deprecated in MySQL\n5.7, are removed in MySQL 8.0, and should no longer be used. Consider\nusing AES_ENCRYPT() and AES_DECRYPT() instead.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(256,'DES_ENCRYPT',20,'Syntax:\nDES_ENCRYPT(str[,{key_num|key_str}])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\n\nThis function works only if MySQL has been configured with SSL support.\nSee https://dev.mysql.com/doc/refman/5.7/en/encrypted-connections.html.\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given. With no argument, the first key from\nthe DES key file is used. With a key_num argument, the given key number\n(0 to 9) from the DES key file is used. With a key_str argument, the\ngiven key string is used to encrypt str.\n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character is\nCHAR(128 | key_num). If an error occurs, DES_ENCRYPT() returns NULL.\n\nThe 128 is added to make it easier to recognize an encrypted key. If\nyou use a string key, key_num is 127.\n\nThe string length for the result is given by this formula:\n\nnew_len = orig_len + (8 - (orig_len % 8)) + 1\n\nEach line in the DES key file has the following format:\n\nkey_num des_key_str\n\nEach key_num value must be a number in the range from 0 to 9. Lines in\nthe file may be in any order. des_key_str is the string that is used to\nencrypt the message. There should be at least one space between the\nnumber and the key. The first key is the default key that is used if\nyou do not specify any key argument to DES_ENCRYPT().\n\nYou can tell MySQL to read new key values from the key file with the\nFLUSH DES_KEY_FILE statement. This requires the RELOAD privilege.\n\nOne benefit of having a set of default keys is that it gives\napplications a way to check for the existence of encrypted column\nvalues, without giving the end user the right to decrypt those values.\n\n*Note*:\n\nThe DES_ENCRYPT() and DES_DECRYPT() functions are deprecated in MySQL\n5.7, are removed in MySQL 8.0, and should no longer be used. Consider\nusing AES_ENCRYPT() and AES_DECRYPT() instead.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT customer_address FROM customer_table \n > WHERE crypted_credit_card = DES_ENCRYPT(\'credit_card_number\');\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(257,'ENCODE',20,'Syntax:\nENCODE(str,pass_str)\n\nENCODE() encrypts str using pass_str as the password. The result is a\nbinary string of the same length as str. To decrypt the result, use\nDECODE().\n\n*Note*:\n\nThe ENCODE() and DECODE() functions are deprecated in MySQL 5.7, and\nshould no longer be used. Expect them to be removed in a future MySQL\nrelease.\n\nIf you still need to use ENCODE(), a salt value must be used with it to\nreduce risk. For example:\n\nENCODE(\'cleartext\', CONCAT(\'my_random_salt\',\'my_secret_password\'))\n\nA new random salt value must be used whenever a password is updated.\n\nIf ENCODE() is invoked from within the mysql client, binary strings\ndisplay using hexadecimal notation, depending on the value of the\n--binary-as-hex. For more information about that option, see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(258,'ENCRYPT',20,'Syntax:\nENCRYPT(str[,salt])\n\nEncrypts str using the Unix crypt() system call and returns a binary\nstring. The salt argument must be a string with at least two characters\nor else the result is NULL. If no salt argument is given, a random\nvalue is used.\n\n*Note*:\n\nThe ENCRYPT() function is deprecated in MySQL 5.7, are removed in MySQL\n8.0, and should no longer be used. For one-way hashing, consider using\nSHA2() instead.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(259,'MD5',20,'Syntax:\nMD5(str)\n\nCalculates an MD5 128-bit checksum for the string. The value is\nreturned as a string of 32 hexadecimal digits, or NULL if the argument\nwas NULL. The return value can, for example, be used as a hash key. See\nthe notes at the beginning of this section about storing hash values\nefficiently.\n\nThe return value is a string in the connection character set.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(260,'PASSWORD',20,'Syntax:\nPASSWORD(str)\n\n*Note*:\n\nThis function is deprecated in MySQL 5.7 and is removed in MySQL 8.0.\n\nReturns a hashed password string calculated from the cleartext password\nstr. The return value is a string in the connection character set, or\nNULL if the argument is NULL. This function is the SQL interface to the\nalgorithm used by the server to encrypt MySQL passwords for storage in\nthe mysql.user grant table.\n\nThe old_passwords system variable controls the password hashing method\nused by the PASSWORD() function. It also influences password hashing\nperformed by CREATE USER and GRANT statements that specify a password\nusing an IDENTIFIED BY clause.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(261,'RANDOM_BYTES',20,'Syntax:\nRANDOM_BYTES(len)\n\nThis function returns a binary string of len random bytes generated\nusing the random number generator of the SSL library. Permitted values\nof len range from 1 to 1024. For values outside that range, an error\noccurs.\n\nRANDOM_BYTES() can be used to provide the initialization vector for the\nAES_DECRYPT() and AES_ENCRYPT() functions. For use in that context, len\nmust be at least 16. Larger values are permitted, but bytes in excess\nof 16 are ignored.\n\nRANDOM_BYTES() generates a random value, which makes its result\nnondeterministic. Consequently, statements that use this function are\nunsafe for statement-based replication and cannot be stored in the\nquery cache.\n\nIf RANDOM_BYTES() is invoked from within the mysql client, binary\nstrings display using hexadecimal notation, depending on the value of\nthe --binary-as-hex. For more information about that option, see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(262,'SHA1',20,'Syntax:\nSHA1(str), SHA(str)\n\nCalculates an SHA-1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of\n40 hexadecimal digits, or NULL if the argument was NULL. One of the\npossible uses for this function is as a hash key. See the notes at the\nbeginning of this section about storing hash values efficiently. SHA()\nis synonymous with SHA1().\n\nThe return value is a string in the connection character set.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(263,'SHA2',20,'Syntax:\nSHA2(str, hash_length)\n\nCalculates the SHA-2 family of hash functions (SHA-224, SHA-256,\nSHA-384, and SHA-512). The first argument is the plaintext string to be\nhashed. The second argument indicates the desired bit length of the\nresult, which must have a value of 224, 256, 384, 512, or 0 (which is\nequivalent to 256). If either argument is NULL or the hash length is\nnot one of the permitted values, the return value is NULL. Otherwise,\nthe function result is a hash value containing the desired number of\nbits. See the notes at the beginning of this section about storing hash\nvalues efficiently.\n\nThe return value is a string in the connection character set.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT SHA2(\'abc\', 224);\n -> \'23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7\'\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(264,'UNCOMPRESS',20,'Syntax:\nUNCOMPRESS(string_to_uncompress)\n\nUncompresses a string compressed by the COMPRESS() function. If the\nargument is not a compressed value, the result is NULL. This function\nrequires MySQL to have been compiled with a compression library such as\nzlib. Otherwise, the return value is always NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(265,'UNCOMPRESSED_LENGTH',20,'Syntax:\nUNCOMPRESSED_LENGTH(compressed_string)\n\nReturns the length that the compressed string had before being\ncompressed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(266,'VALIDATE_PASSWORD_STRENGTH',20,'Syntax:\nVALIDATE_PASSWORD_STRENGTH(str)\n\nGiven an argument representing a plaintext password, this function\nreturns an integer to indicate how strong the password is. The return\nvalue ranges from 0 (weak) to 100 (strong).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(267,'GET_LOCK',21,'Syntax:\nGET_LOCK(str,timeout)\n\nTries to obtain a lock with a name given by the string str, using a\ntimeout of timeout seconds. A negative timeout value means infinite\ntimeout. The lock is exclusive. While held by one session, other\nsessions cannot obtain a lock of the same name.\n\nReturns 1 if the lock was obtained successfully, 0 if the attempt timed\nout (for example, because another client has previously locked the\nname), or NULL if an error occurred (such as running out of memory or\nthe thread was killed with mysqladmin kill).\n\nA lock obtained with GET_LOCK() is released explicitly by executing\nRELEASE_LOCK() or implicitly when your session terminates (either\nnormally or abnormally). Locks obtained with GET_LOCK() are not\nreleased when transactions commit or roll back.\n\nIn MySQL 5.7, GET_LOCK() was reimplemented using the metadata locking\n(MDL) subsystem and its capabilities were extended. Multiple\nsimultaneous locks can be acquired and GET_LOCK() does not release any\nexisting locks.\n\nIt is even possible for a given session to acquire multiple locks for\nthe same name. Other sessions cannot acquire a lock with that name\nuntil the acquiring session releases all its locks for the name.\n\nAs a result of the MDL reimplementation, uniquely named locks acquired\nwith GET_LOCK() appear in the Performance Schema metadata_locks table.\nThe OBJECT_TYPE column says USER LEVEL LOCK and the OBJECT_NAME column\nindicates the lock name. In the case that multiple locks are acquired\nfor the same name, only the first lock for the name registers a row in\nthe metadata_locks table. Subsequent locks for the name increment a\ncounter in the lock but do not acquire additional metadata locks. The\nmetadata_locks row for the lock is deleted when the last lock instance\non the name is released.\n\nThe capability of acquiring multiple locks means there is the\npossibility of deadlock among clients. When this happens, the server\nchooses a caller and terminates its lock-acquisition request with an\nER_USER_LOCK_DEADLOCK\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_user_lock_deadlock) error. This error does not cause\ntransactions to roll back.\n\nBefore MySQL 5.7, only a single simultaneous lock can be acquired and\nGET_LOCK() releases any existing lock. The difference in lock\nacquisition behavior as of MySQL 5.7 can be seen by the following\nexample. Suppose that you execute these statements:\n\nSELECT GET_LOCK(\'lock1\',10);\nSELECT GET_LOCK(\'lock2\',10);\nSELECT RELEASE_LOCK(\'lock2\');\nSELECT RELEASE_LOCK(\'lock1\');\n\nIn MySQL 5.7 or later, the second GET_LOCK() acquires a second lock and\nboth RELEASE_LOCK() calls return 1 (success). Before MySQL 5.7, the\nsecond GET_LOCK() releases the first lock (\'lock1\') and the second\nRELEASE_LOCK() returns NULL (failure) because there is no \'lock1\' to\nrelease.\n\nMySQL 5.7 and later enforces a maximum length on lock names of 64\ncharacters. Previously, no limit was enforced.\n\nGET_LOCK() can be used to implement application locks or to simulate\nrecord locks. Names are locked on a server-wide basis. If a name has\nbeen locked within one session, GET_LOCK() blocks any request by\nanother session for a lock with the same name. This enables clients\nthat agree on a given lock name to use the name to perform cooperative\nadvisory locking. But be aware that it also enables a client that is\nnot among the set of cooperating clients to lock a name, either\ninadvertently or deliberately, and thus prevent any of the cooperating\nclients from locking that name. One way to reduce the likelihood of\nthis is to use lock names that are database-specific or\napplication-specific. For example, use lock names of the form\ndb_name.str or app_name.str.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(268,'IS_FREE_LOCK',21,'Syntax:\nIS_FREE_LOCK(str)\n\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock), 0 if the lock\nis in use, and NULL if an error occurs (such as an incorrect argument).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(269,'IS_USED_LOCK',21,'Syntax:\nIS_USED_LOCK(str)\n\nChecks whether the lock named str is in use (that is, locked). If so,\nit returns the connection identifier of the client session that holds\nthe lock. Otherwise, it returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(270,'RELEASE_ALL_LOCKS',21,'Syntax:\nRELEASE_ALL_LOCKS()\n\nReleases all named locks held by the current session and returns the\nnumber of locks released (0 if there were none)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(271,'RELEASE_LOCK',21,'Syntax:\nRELEASE_LOCK(str)\n\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the lock was not\nestablished by this thread (in which case the lock is not released),\nand NULL if the named lock did not exist. The lock does not exist if it\nwas never obtained by a call to GET_LOCK() or if it has previously been\nreleased.\n\nThe DO statement is convenient to use with RELEASE_LOCK(). See [HELP\nDO].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(272,'BENCHMARK',22,'Syntax:\nBENCHMARK(count,expr)\n\nThe BENCHMARK() function executes the expression expr repeatedly count\ntimes. It may be used to time how quickly MySQL processes the\nexpression. The result value is 0, or NULL for inappropriate arguments\nsuch as a NULL or negative repeat count.\n\nThe intended use is from within the mysql client, which reports query\nexecution times:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT BENCHMARK(1000000,AES_ENCRYPT(\'hello\',\'goodbye\'));\n+---------------------------------------------------+\n| BENCHMARK(1000000,AES_ENCRYPT(\'hello\',\'goodbye\')) |\n+---------------------------------------------------+\n| 0 |\n+---------------------------------------------------+\n1 row in set (4.74 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(273,'CHARSET',22,'Syntax:\nCHARSET(str)\n\nReturns the character set of the string argument.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(274,'COERCIBILITY',22,'Syntax:\nCOERCIBILITY(str)\n\nReturns the collation coercibility value of the string argument.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4\nmysql> SELECT COERCIBILITY(1000);\n -> 5\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(275,'COLLATION',22,'Syntax:\nCOLLATION(str)\n\nReturns the collation of the string argument.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(276,'CONNECTION_ID',22,'Syntax:\nCONNECTION_ID()\n\nReturns the connection ID (thread ID) for the connection. Every\nconnection has an ID that is unique among the set of currently\nconnected clients.\n\nThe value returned by CONNECTION_ID() is the same type of value as\ndisplayed in the ID column of the INFORMATION_SCHEMA.PROCESSLIST table,\nthe Id column of SHOW PROCESSLIST output, and the PROCESSLIST_ID column\nof the Performance Schema threads table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT CONNECTION_ID();\n -> 23786\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(277,'CURRENT_USER',22,'Syntax:\nCURRENT_USER, CURRENT_USER()\n\nReturns the user name and host name combination for the MySQL account\nthat the server used to authenticate the current client. This account\ndetermines your access privileges. The return value is a string in the\nutf8 character set.\n\nThe value of CURRENT_USER() can differ from the value of USER().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(278,'DATABASE',22,'Syntax:\nDATABASE()\n\nReturns the default (current) database name as a string in the utf8\ncharacter set. If there is no default database, DATABASE() returns\nNULL. Within a stored routine, the default database is the database\nthat the routine is associated with, which is not necessarily the same\nas the database that is the default in the calling context.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT DATABASE();\n -> \'test\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(279,'FOUND_ROWS',22,'Syntax:\nFOUND_ROWS()\n\nA SELECT statement may include a LIMIT clause to restrict the number of\nrows the server returns to the client. In some cases, it is desirable\nto know how many rows the statement would have returned without the\nLIMIT, but without running the statement again. To obtain this row\ncount, include an SQL_CALC_FOUND_ROWS option in the SELECT statement,\nand then invoke FOUND_ROWS() afterward:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(280,'LAST_INSERT_ID',22,'Syntax:\nLAST_INSERT_ID(), LAST_INSERT_ID(expr)\n\nWith no argument, LAST_INSERT_ID() returns a BIGINT UNSIGNED (64-bit)\nvalue representing the first automatically generated value successfully\ninserted for an AUTO_INCREMENT column as a result of the most recently\nexecuted INSERT statement. The value of LAST_INSERT_ID() remains\nunchanged if no rows are successfully inserted.\n\nWith an argument, LAST_INSERT_ID() returns an unsigned integer.\n\nFor example, after inserting a row that generates an AUTO_INCREMENT\nvalue, you can get the value like this:\n\nmysql> SELECT LAST_INSERT_ID();\n -> 195\n\nThe currently executing statement does not affect the value of\nLAST_INSERT_ID(). Suppose that you generate an AUTO_INCREMENT value\nwith one statement, and then refer to LAST_INSERT_ID() in a\nmultiple-row INSERT statement that inserts rows into a table with its\nown AUTO_INCREMENT column. The value of LAST_INSERT_ID() remains stable\nin the second statement; its value for the second and later rows is not\naffected by the earlier row insertions. (However, if you mix references\nto LAST_INSERT_ID() and LAST_INSERT_ID(expr), the effect is undefined.)\n\nIf the previous statement returned an error, the value of\nLAST_INSERT_ID() is undefined. For transactional tables, if the\nstatement is rolled back due to an error, the value of LAST_INSERT_ID()\nis left undefined. For manual ROLLBACK, the value of LAST_INSERT_ID()\nis not restored to that before the transaction; it remains as it was at\nthe point of the ROLLBACK.\n\nWithin the body of a stored routine (procedure or function) or a\ntrigger, the value of LAST_INSERT_ID() changes the same way as for\nstatements executed outside the body of these kinds of objects. The\neffect of a stored routine or trigger upon the value of\nLAST_INSERT_ID() that is seen by following statements depends on the\nkind of routine:\n\no If a stored procedure executes statements that change the value of\n LAST_INSERT_ID(), the changed value is seen by statements that follow\n the procedure call.\n\no For stored functions and triggers that change the value, the value is\n restored when the function or trigger ends, so statements following\n them do not see a changed value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(281,'ROW_COUNT',22,'Syntax:\nROW_COUNT()\n\nROW_COUNT() returns a value as follows:\n\no DDL statements: 0. This applies to statements such as CREATE TABLE or\n DROP TABLE.\n\no DML statements other than SELECT: The number of affected rows. This\n applies to statements such as UPDATE, INSERT, or DELETE (as before),\n but now also to statements such as ALTER TABLE and LOAD DATA.\n\no SELECT: -1 if the statement returns a result set, or the number of\n rows \"affected\" if it does not. For example, for SELECT * FROM t1,\n ROW_COUNT() returns -1. For SELECT * FROM t1 INTO OUTFILE\n \'file_name\', ROW_COUNT() returns the number of rows written to the\n file.\n\no SIGNAL statements: 0.\n\nFor UPDATE statements, the affected-rows value by default is the number\nof rows actually changed. If you specify the CLIENT_FOUND_ROWS flag to\nmysql_real_connect()\n(https://dev.mysql.com/doc/c-api/5.7/en/mysql-real-connect.html) when\nconnecting to mysqld, the affected-rows value is the number of rows\n\"found\"; that is, matched by the WHERE clause.\n\nFor REPLACE statements, the affected-rows value is 2 if the new row\nreplaced an old row, because in this case, one row was inserted after\nthe duplicate was deleted.\n\nFor INSERT ... ON DUPLICATE KEY UPDATE statements, the affected-rows\nvalue per row is 1 if the row is inserted as a new row, 2 if an\nexisting row is updated, and 0 if an existing row is set to its current\nvalues. If you specify the CLIENT_FOUND_ROWS flag, the affected-rows\nvalue is 1 (not 0) if an existing row is set to its current values.\n\nThe ROW_COUNT() value is similar to the value from the\nmysql_affected_rows()\n(https://dev.mysql.com/doc/c-api/5.7/en/mysql-affected-rows.html) C API\nfunction and the row count that the mysql client displays following\nstatement execution.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(282,'SCHEMA',22,'Syntax:\nSCHEMA()\n\nThis function is a synonym for DATABASE().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(283,'SESSION_USER',22,'Syntax:\nSESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(284,'SYSTEM_USER',22,'Syntax:\nSYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(285,'USER',22,'Syntax:\nUSER()\n\nReturns the current MySQL user name and host name as a string in the\nutf8 character set.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(286,'VERSION',22,'Syntax:\nVERSION()\n\nReturns a string that indicates the MySQL server version. The string\nuses the utf8 character set. The value might have a suffix in addition\nto the version number. See the description of the version system\nvariable in\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT VERSION();\n -> \'5.7.39-standard\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(287,'GEOMCOLLFROMTEXT',24,'GeomCollFromText(wkt [, srid]), GeometryCollectionFromText(wkt [,\nsrid])\n\nST_GeomCollFromText(), ST_GeometryCollectionFromText(),\nST_GeomCollFromTxt(), GeomCollFromText(), and\nGeometryCollectionFromText() are synonyms. For more information, see\nthe description of ST_GeomCollFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(288,'GEOMFROMTEXT',24,'GeomFromText(wkt [, srid]), GeometryFromText(wkt [, srid])\n\nST_GeomFromText(), ST_GeometryFromText(), GeomFromText(), and\nGeometryFromText() are synonyms. For more information, see the\ndescription of ST_GeomFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(289,'LINEFROMTEXT',24,'LineFromText(wkt [, srid]), LineStringFromText(wkt [, srid])\n\nST_LineFromText(), ST_LineStringFromText(), LineFromText(), and\nLineStringFromText() are synonyms. For more information, see the\ndescription of ST_LineFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(290,'MLINEFROMTEXT',24,'MLineFromText(wkt [, srid]), MultiLineStringFromText(wkt [, srid])\n\nST_MLineFromText(), ST_MultiLineStringFromText(), MLineFromText(), and\nMultiLineStringFromText() are synonyms. For more information, see the\ndescription of ST_MLineFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(291,'MPOINTFROMTEXT',24,'MPointFromText(wkt [, srid]), MultiPointFromText(wkt [, srid])\n\nST_MPointFromText(), ST_MultiPointFromText(), MPointFromText(), and\nMultiPointFromText() are synonyms. For more information, see the\ndescription of ST_MPointFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(292,'MPOLYFROMTEXT',24,'MPolyFromText(wkt [, srid]), MultiPolygonFromText(wkt [, srid])\n\nST_MPolyFromText(), ST_MultiPolygonFromText(), MPolyFromText(), and\nMultiPolygonFromText() are synonyms. For more information, see the\ndescription of ST_MPolyFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(293,'POINTFROMTEXT',24,'PointFromText(wkt [, srid])\n\nST_PointFromText() and PointFromText() are synonyms. For more\ninformation, see the description of ST_PointFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(294,'POLYFROMTEXT',24,'PolyFromText(wkt [, srid]), PolygonFromText(wkt [, srid])\n\nST_PolyFromText(), ST_PolygonFromText(), PolyFromText(), and\nPolygonFromText() are synonyms. For more information, see the\ndescription of ST_PolyFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(295,'ST_GEOMCOLLFROMTEXT',24,'ST_GeomCollFromText(wkt [, srid]), ST_GeometryCollectionFromText(wkt [,\nsrid]), ST_GeomCollFromTxt(wkt [, srid])\n\nConstructs a GeometryCollection value using its WKT representation and\nSRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','mysql> SET @g = \"MULTILINESTRING((10 10, 11 11), (9 9, 10 10))\";\nmysql> SELECT ST_AsText(ST_GeomCollFromText(@g));\n+--------------------------------------------+\n| ST_AsText(ST_GeomCollFromText(@g)) |\n+--------------------------------------------+\n| MULTILINESTRING((10 10,11 11),(9 9,10 10)) |\n+--------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(296,'ST_GEOMFROMTEXT',24,'ST_GeomFromText(wkt [, srid]), ST_GeometryFromText(wkt [, srid])\n\nConstructs a geometry value of any type using its WKT representation\nand SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(297,'ST_LINEFROMTEXT',24,'ST_LineFromText(wkt [, srid]), ST_LineStringFromText(wkt [, srid])\n\nConstructs a LineString value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(298,'ST_MLINEFROMTEXT',24,'ST_MLineFromText(wkt [, srid]), ST_MultiLineStringFromText(wkt [,\nsrid])\n\nConstructs a MultiLineString value using its WKT representation and\nSRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(299,'ST_MPOINTFROMTEXT',24,'ST_MPointFromText(wkt [, srid]), ST_MultiPointFromText(wkt [, srid])\n\nConstructs a MultiPoint value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nFunctions such as ST_MPointFromText() and ST_GeomFromText() that accept\nWKT-format representations of MultiPoint values permit individual\npoints within values to be surrounded by parentheses. For example, both\nof the following function calls are valid:\n\nST_MPointFromText(\'MULTIPOINT (1 1, 2 2, 3 3)\')\nST_MPointFromText(\'MULTIPOINT ((1 1), (2 2), (3 3))\')\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(300,'ST_MPOLYFROMTEXT',24,'ST_MPolyFromText(wkt [, srid]), ST_MultiPolygonFromText(wkt [, srid])\n\nConstructs a MultiPolygon value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(301,'ST_POINTFROMTEXT',24,'ST_PointFromText(wkt [, srid])\n\nConstructs a Point value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(302,'ST_POLYFROMTEXT',24,'ST_PolyFromText(wkt [, srid]), ST_PolygonFromText(wkt [, srid])\n\nConstructs a Polygon value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(303,'GEOMCOLLFROMWKB',25,'GeomCollFromWKB(wkb [, srid]), GeometryCollectionFromWKB(wkb [, srid])\n\nST_GeomCollFromWKB(), ST_GeometryCollectionFromWKB(),\nGeomCollFromWKB(), and GeometryCollectionFromWKB() are synonyms. For\nmore information, see the description of ST_GeomCollFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(304,'GEOMFROMWKB',25,'GeomFromWKB(wkb [, srid]), GeometryFromWKB(wkb [, srid])\n\nST_GeomFromWKB(), ST_GeometryFromWKB(), GeomFromWKB(), and\nGeometryFromWKB() are synonyms. For more information, see the\ndescription of ST_GeomFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(305,'LINEFROMWKB',25,'LineFromWKB(wkb [, srid]), LineStringFromWKB(wkb [, srid])\n\nST_LineFromWKB(), ST_LineStringFromWKB(), LineFromWKB(), and\nLineStringFromWKB() are synonyms. For more information, see the\ndescription of ST_LineFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(306,'MLINEFROMWKB',25,'MLineFromWKB(wkb [, srid]), MultiLineStringFromWKB(wkb [, srid])\n\nST_MLineFromWKB(), ST_MultiLineStringFromWKB(), MLineFromWKB(), and\nMultiLineStringFromWKB() are synonyms. For more information, see the\ndescription of ST_MLineFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(307,'MPOINTFROMWKB',25,'MPointFromWKB(wkb [, srid]), MultiPointFromWKB(wkb [, srid])\n\nST_MPointFromWKB(), ST_MultiPointFromWKB(), MPointFromWKB(), and\nMultiPointFromWKB() are synonyms. For more information, see the\ndescription of ST_MPointFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(308,'MPOLYFROMWKB',25,'MPolyFromWKB(wkb [, srid]), MultiPolygonFromWKB(wkb [, srid])\n\nST_MPolyFromWKB(), ST_MultiPolygonFromWKB(), MPolyFromWKB(), and\nMultiPolygonFromWKB() are synonyms. For more information, see the\ndescription of ST_MPolyFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(309,'POINTFROMWKB',25,'PointFromWKB(wkb [, srid])\n\nST_PointFromWKB() and PointFromWKB() are synonyms. For more\ninformation, see the description of ST_PointFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(310,'POLYFROMWKB',25,'PolyFromWKB(wkb [, srid]), PolygonFromWKB(wkb [, srid])\n\nST_PolyFromWKB(), ST_PolygonFromWKB(), PolyFromWKB(), and\nPolygonFromWKB() are synonyms. For more information, see the\ndescription of ST_PolyFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(311,'ST_GEOMCOLLFROMWKB',25,'ST_GeomCollFromWKB(wkb [, srid]), ST_GeometryCollectionFromWKB(wkb [,\nsrid])\n\nConstructs a GeometryCollection value using its WKB representation and\nSRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(312,'ST_GEOMFROMWKB',25,'ST_GeomFromWKB(wkb [, srid]), ST_GeometryFromWKB(wkb [, srid])\n\nConstructs a geometry value of any type using its WKB representation\nand SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(313,'ST_LINEFROMWKB',25,'ST_LineFromWKB(wkb [, srid]), ST_LineStringFromWKB(wkb [, srid])\n\nConstructs a LineString value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(314,'ST_MLINEFROMWKB',25,'ST_MLineFromWKB(wkb [, srid]), ST_MultiLineStringFromWKB(wkb [, srid])\n\nConstructs a MultiLineString value using its WKB representation and\nSRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(315,'ST_MPOINTFROMWKB',25,'ST_MPointFromWKB(wkb [, srid]), ST_MultiPointFromWKB(wkb [, srid])\n\nConstructs a MultiPoint value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(316,'ST_MPOLYFROMWKB',25,'ST_MPolyFromWKB(wkb [, srid]), ST_MultiPolygonFromWKB(wkb [, srid])\n\nConstructs a MultiPolygon value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(317,'ST_POINTFROMWKB',25,'ST_PointFromWKB(wkb [, srid])\n\nConstructs a Point value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(318,'ST_POLYFROMWKB',25,'ST_PolyFromWKB(wkb [, srid]), ST_PolygonFromWKB(wkb [, srid])\n\nConstructs a Polygon value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(319,'GEOMETRYCOLLECTION',26,'GeometryCollection(g [, g] ...)\n\nConstructs a GeometryCollection value from the geometry arguments.\n\nGeometryCollection() returns all the proper geometries contained in the\narguments even if a nonsupported geometry is present.\n\nGeometryCollection() with no arguments is permitted as a way to create\nan empty geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(320,'LINESTRING',26,'LineString(pt [, pt] ...)\n\nConstructs a LineString value from a number of Point or WKB Point\narguments. If the number of arguments is less than two, the return\nvalue is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(321,'MULTILINESTRING',26,'MultiLineString(ls [, ls] ...)\n\nConstructs a MultiLineString value using LineString or WKB LineString\narguments.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(322,'MULTIPOINT',26,'MultiPoint(pt [, pt2] ...)\n\nConstructs a MultiPoint value using Point or WKB Point arguments.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(323,'MULTIPOLYGON',26,'MultiPolygon(poly [, poly] ...)\n\nConstructs a MultiPolygon value from a set of Polygon or WKB Polygon\narguments.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(324,'POINT',26,'Point(x, y)\n\nConstructs a Point using its coordinates.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(325,'POLYGON',26,'Polygon(ls [, ls] ...)\n\nConstructs a Polygon value from a number of LineString or WKB\nLineString arguments. If any argument does not represent a LinearRing\n(that is, not a closed and simple LineString), the return value is\nNULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(326,'ASBINARY',25,'AsBinary(g), AsWKB(g)\n\nST_AsBinary(), ST_AsWKB(), AsBinary(), and AsWKB() are synonyms. For\nmore information, see the description of ST_AsBinary().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html'),(327,'ASTEXT',25,'AsText(g), AsWKT(g)\n\nST_AsText(), ST_AsWKT(), AsText(), and AsWKT() are synonyms. For more\ninformation, see the description of ST_AsText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html'),(328,'ST_ASBINARY',25,'ST_AsBinary(g), ST_AsWKB(g)\n\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n\nIf the argument is NULL, the return value is NULL. If the argument is\nnot a syntactically well-formed geometry, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html\n\n','SELECT ST_AsBinary(g) FROM geom;\n','https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html'),(329,'ST_ASTEXT',25,'ST_AsText(g), ST_AsWKT(g)\n\nConverts a value in internal geometry format to its WKT representation\nand returns the string result.\n\nIf the argument is NULL, the return value is NULL. If the argument is\nnot a syntactically well-formed geometry, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html\n\n','mysql> SET @g = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_GeomFromText(@g));\n+--------------------------------+\n| ST_AsText(ST_GeomFromText(@g)) |\n+--------------------------------+\n| LINESTRING(1 1,2 2,3 3) |\n+--------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html'),(330,'DIMENSION',27,'Dimension(g)\n\nST_Dimension() and Dimension() are synonyms. For more information, see\nthe description of ST_Dimension().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(331,'ENVELOPE',27,'Envelope(g)\n\nST_Envelope() and Envelope() are synonyms. For more information, see\nthe description of ST_Envelope().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(332,'GEOMETRYTYPE',27,'GeometryType(g)\n\nST_GeometryType() and GeometryType() are synonyms. For more\ninformation, see the description of ST_GeometryType().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(333,'ISEMPTY',27,'IsEmpty(g)\n\nST_IsEmpty() and IsEmpty() are synonyms. For more information, see the\ndescription of ST_IsEmpty().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(334,'ISSIMPLE',27,'IsSimple(g)\n\nST_IsSimple() and IsSimple() are synonyms. For more information, see\nthe description of ST_IsSimple().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(335,'SRID',27,'SRID(g)\n\nST_SRID() and SRID() are synonyms. For more information, see the\ndescription of ST_SRID().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(336,'ST_DIMENSION',27,'ST_Dimension(g)\n\nReturns the inherent dimension of the geometry value g, or NULL if the\nargument is NULL. The dimension can be −1, 0, 1, or 2. The meaning of\nthese values is given in\nhttps://dev.mysql.com/doc/refman/5.7/en/gis-class-geometry.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_Dimension(ST_GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------------+\n| ST_Dimension(ST_GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------------+\n| 1 |\n+------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(337,'ST_ENVELOPE',27,'ST_Envelope(g)\n\nReturns the minimum bounding rectangle (MBR) for the geometry value g,\nor NULL if the argument is NULL. The result is returned as a Polygon\nvalue that is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n\nmysql> SELECT ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,2 2)\')));\n+----------------------------------------------------------------+\n| ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,2 2)\'))) |\n+----------------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+----------------------------------------------------------------+\n\nIf the argument is a point or a vertical or horizontal line segment,\nST_Envelope() returns the point or the line segment as its MBR rather\nthan returning an invalid polygon:\n\nmysql> SELECT ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,1 2)\')));\n+----------------------------------------------------------------+\n| ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,1 2)\'))) |\n+----------------------------------------------------------------+\n| LINESTRING(1 1,1 2) |\n+----------------------------------------------------------------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(338,'ST_GEOMETRYTYPE',27,'ST_GeometryType(g)\n\nReturns a binary string indicating the name of the geometry type of\nwhich the geometry instance g is a member, or NULL if the argument is\nNULL. The name corresponds to one of the instantiable Geometry\nsubclasses.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_GeometryType(ST_GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------------+\n| ST_GeometryType(ST_GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------------+\n| POINT |\n+------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(339,'ST_ISEMPTY',27,'ST_IsEmpty(g)\n\nThis function is a placeholder that returns 0 for any valid geometry\nvalue, 1 for any invalid geometry value, or NULL if the argument is\nNULL.\n\nMySQL does not support GIS EMPTY values such as POINT EMPTY.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(340,'ST_ISSIMPLE',27,'ST_IsSimple(g)\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. ST_IsSimple() returns 0 if\nthe argument is not simple, and NULL if the argument is NULL.\n\nThe descriptions of the instantiable geometric classes given under\nhttps://dev.mysql.com/doc/refman/5.7/en/opengis-geometry-model.html\nincludes the specific conditions that cause class instances to be\nclassified as not simple.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(341,'ST_SRID',27,'ST_SRID(g)\n\nReturns an integer indicating the spatial reference system ID\nassociated with the geometry value g, or NULL if the argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_SRID(ST_GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------------+\n| ST_SRID(ST_GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------------+\n| 101 |\n+-----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(342,'ST_X',28,'ST_X(p)\n\nReturns the X-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html\n\n','mysql> SELECT ST_X(Point(56.7, 53.34));\n+--------------------------+\n| ST_X(Point(56.7, 53.34)) |\n+--------------------------+\n| 56.7 |\n+--------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html'),(343,'ST_Y',28,'ST_Y(p)\n\nReturns the Y-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html\n\n','mysql> SELECT ST_Y(Point(56.7, 53.34));\n+--------------------------+\n| ST_Y(Point(56.7, 53.34)) |\n+--------------------------+\n| 53.34 |\n+--------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html'),(344,'X',28,'X(p)\n\nST_X() and X() are synonyms. For more information, see the description\nof ST_X().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html'),(345,'Y',28,'Y(p)\n\nST_Y() and Y() are synonyms. For more information, see the description\nof ST_Y().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html'),(346,'ENDPOINT',29,'EndPoint(ls)\n\nST_EndPoint() and EndPoint() are synonyms. For more information, see\nthe description of ST_EndPoint().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(347,'GLENGTH',29,'GLength(ls)\n\nGLength() is a nonstandard name. It corresponds to the OpenGIS\nST_Length() function. (There is an existing SQL function Length() that\ncalculates the length of string values.)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(348,'ISCLOSED',29,'IsClosed(ls)\n\nST_IsClosed() and IsClosed() are synonyms. For more information, see\nthe description of ST_IsClosed().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(349,'NUMPOINTS',29,'NumPoints(ls)\n\nST_NumPoints() and NumPoints() are synonyms. For more information, see\nthe description of ST_NumPoints().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(350,'POINTN',29,'PointN(ls, N)\n\nST_PointN() and PointN() are synonyms. For more information, see the\ndescription of ST_PointN().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(351,'ST_ENDPOINT',29,'ST_EndPoint(ls)\n\nReturns the Point that is the endpoint of the LineString value ls. If\nthe argument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_EndPoint(ST_GeomFromText(@ls)));\n+----------------------------------------------+\n| ST_AsText(ST_EndPoint(ST_GeomFromText(@ls))) |\n+----------------------------------------------+\n| POINT(3 3) |\n+----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(352,'ST_ISCLOSED',29,'ST_IsClosed(ls)\n\nFor a LineString value ls, ST_IsClosed() returns 1 if ls is closed\n(that is, its ST_StartPoint() and ST_EndPoint() values are the same).\nIf the argument is NULL or an empty geometry, the return value is NULL.\n\nFor a MultiLineString value ls, ST_IsClosed() returns 1 if ls is closed\n(that is, the ST_StartPoint() and ST_EndPoint() values are the same for\neach LineString in ls).\n\nST_IsClosed() returns 0 if ls is not closed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls1 = \'LineString(1 1,2 2,3 3,2 2)\';\nmysql> SET @ls2 = \'LineString(1 1,2 2,3 3,1 1)\';\n\nmysql> SELECT ST_IsClosed(ST_GeomFromText(@ls1));\n+------------------------------------+\n| ST_IsClosed(ST_GeomFromText(@ls1)) |\n+------------------------------------+\n| 0 |\n+------------------------------------+\n\nmysql> SELECT ST_IsClosed(ST_GeomFromText(@ls2));\n+------------------------------------+\n| ST_IsClosed(ST_GeomFromText(@ls2)) |\n+------------------------------------+\n| 1 |\n+------------------------------------+\n\nmysql> SET @ls3 = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\n\nmysql> SELECT ST_IsClosed(ST_GeomFromText(@ls3));\n+------------------------------------+\n| ST_IsClosed(ST_GeomFromText(@ls3)) |\n+------------------------------------+\n| 0 |\n+------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(353,'ST_LENGTH',29,'ST_Length(ls)\n\nReturns a double-precision number indicating the length of the\nLineString or MultiLineString value ls in its associated spatial\nreference system. The length of a MultiLineString value is equal to the\nsum of the lengths of its elements. If the argument is NULL or an empty\ngeometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_Length(ST_GeomFromText(@ls));\n+---------------------------------+\n| ST_Length(ST_GeomFromText(@ls)) |\n+---------------------------------+\n| 2.8284271247461903 |\n+---------------------------------+\n\nmysql> SET @mls = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\nmysql> SELECT ST_Length(ST_GeomFromText(@mls));\n+----------------------------------+\n| ST_Length(ST_GeomFromText(@mls)) |\n+----------------------------------+\n| 4.242640687119286 |\n+----------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(354,'ST_NUMPOINTS',29,'ST_NumPoints(ls)\n\nReturns the number of Point objects in the LineString value ls. If the\nargument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_NumPoints(ST_GeomFromText(@ls));\n+------------------------------------+\n| ST_NumPoints(ST_GeomFromText(@ls)) |\n+------------------------------------+\n| 3 |\n+------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(355,'ST_POINTN',29,'ST_PointN(ls, N)\n\nReturns the N-th Point in the Linestring value ls. Points are numbered\nbeginning with 1. If any argument is NULL or the geometry argument is\nan empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_PointN(ST_GeomFromText(@ls),2));\n+----------------------------------------------+\n| ST_AsText(ST_PointN(ST_GeomFromText(@ls),2)) |\n+----------------------------------------------+\n| POINT(2 2) |\n+----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(356,'ST_STARTPOINT',29,'ST_StartPoint(ls)\n\nReturns the Point that is the start point of the LineString value ls.\nIf the argument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_StartPoint(ST_GeomFromText(@ls)));\n+------------------------------------------------+\n| ST_AsText(ST_StartPoint(ST_GeomFromText(@ls))) |\n+------------------------------------------------+\n| POINT(1 1) |\n+------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(357,'STARTPOINT',29,'StartPoint(ls)\n\nST_StartPoint() and StartPoint() are synonyms. For more information,\nsee the description of ST_StartPoint().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(358,'AREA',30,'Area({poly|mpoly})\n\nST_Area() and Area() are synonyms. For more information, see the\ndescription of ST_Area().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(359,'CENTROID',30,'Centroid({poly|mpoly})\n\nST_Centroid() and Centroid() are synonyms. For more information, see\nthe description of ST_Centroid().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(360,'EXTERIORRING',30,'ExteriorRing(poly)\n\nST_ExteriorRing() and ExteriorRing() are synonyms. For more\ninformation, see the description of ST_ExteriorRing().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(361,'INTERIORRINGN',30,'InteriorRingN(poly, N)\n\nST_InteriorRingN() and InteriorRingN() are synonyms. For more\ninformation, see the description of ST_InteriorRingN().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(362,'NUMINTERIORRINGS',30,'NumInteriorRings(poly)\n\nST_NumInteriorRings() and NumInteriorRings() are synonyms. For more\ninformation, see the description of ST_NumInteriorRings().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(363,'ST_AREA',30,'ST_Area({poly|mpoly})\n\nReturns a double-precision number indicating the area of the Polygon or\nMultiPolygon argument, as measured in its spatial reference system. For\narguments of dimension 0 or 1, the result is 0. If the argument is an\nempty geometry the return value is 0. If the argument is NULL the\nreturn value is NULL.\n\nThe result is the sum of the area values of all components for a\ngeometry collection. If a geometry collection is empty, its area is\nreturned as 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n \'Polygon((0 0,0 3,3 0,0 0),(1 1,1 2,2 1,1 1))\';\nmysql> SELECT ST_Area(ST_GeomFromText(@poly));\n+---------------------------------+\n| ST_Area(ST_GeomFromText(@poly)) |\n+---------------------------------+\n| 4 |\n+---------------------------------+\n\nmysql> SET @mpoly =\n \'MultiPolygon(((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1)))\';\nmysql> SELECT ST_Area(ST_GeomFromText(@mpoly));\n+----------------------------------+\n| ST_Area(ST_GeomFromText(@mpoly)) |\n+----------------------------------+\n| 8 |\n+----------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(364,'ST_CENTROID',30,'ST_Centroid({poly|mpoly})\n\nReturns the mathematical centroid for the Polygon or MultiPolygon\nargument as a Point. The result is not guaranteed to be on the\nMultiPolygon. If the argument is NULL or an empty geometry, the return\nvalue is NULL.\n\nThis function processes geometry collections by computing the centroid\npoint for components of highest dimension in the collection. Such\ncomponents are extracted and made into a single MultiPolygon,\nMultiLineString, or MultiPoint for centroid computation. If the\nargument is an empty geometry collection, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n ST_GeomFromText(\'POLYGON((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5))\');\nmysql> SELECT ST_GeometryType(@poly),ST_AsText(ST_Centroid(@poly));\n+------------------------+--------------------------------------------+\n| ST_GeometryType(@poly) | ST_AsText(ST_Centroid(@poly)) |\n+------------------------+--------------------------------------------+\n| POLYGON | POINT(4.958333333333333 4.958333333333333) |\n+------------------------+--------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(365,'ST_EXTERIORRING',30,'ST_ExteriorRing(poly)\n\nReturns the exterior ring of the Polygon value poly as a LineString. If\nthe argument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT ST_AsText(ST_ExteriorRing(ST_GeomFromText(@poly)));\n+----------------------------------------------------+\n| ST_AsText(ST_ExteriorRing(ST_GeomFromText(@poly))) |\n+----------------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(366,'ST_INTERIORRINGN',30,'ST_InteriorRingN(poly, N)\n\nReturns the N-th interior ring for the Polygon value poly as a\nLineString. Rings are numbered beginning with 1. If the argument is\nNULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT ST_AsText(ST_InteriorRingN(ST_GeomFromText(@poly),1));\n+-------------------------------------------------------+\n| ST_AsText(ST_InteriorRingN(ST_GeomFromText(@poly),1)) |\n+-------------------------------------------------------+\n| LINESTRING(1 1,1 2,2 2,2 1,1 1) |\n+-------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(367,'ST_NUMINTERIORRINGS',30,'ST_NumInteriorRing(poly), ST_NumInteriorRings(poly)\n\nReturns the number of interior rings in the Polygon value poly. If the\nargument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT ST_NumInteriorRings(ST_GeomFromText(@poly));\n+---------------------------------------------+\n| ST_NumInteriorRings(ST_GeomFromText(@poly)) |\n+---------------------------------------------+\n| 1 |\n+---------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(368,'GEOMETRYN',31,'GeometryN(gc, N)\n\nST_GeometryN() and GeometryN() are synonyms. For more information, see\nthe description of ST_GeometryN().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html'),(369,'NUMGEOMETRIES',31,'NumGeometries(gc)\n\nST_NumGeometries() and NumGeometries() are synonyms. For more\ninformation, see the description of ST_NumGeometries().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html'),(370,'ST_GEOMETRYN',31,'ST_GeometryN(gc, N)\n\nReturns the N-th geometry in the GeometryCollection value gc.\nGeometries are numbered beginning with 1. If any argument is NULL or\nthe geometry argument is an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT ST_AsText(ST_GeometryN(ST_GeomFromText(@gc),1));\n+-------------------------------------------------+\n| ST_AsText(ST_GeometryN(ST_GeomFromText(@gc),1)) |\n+-------------------------------------------------+\n| POINT(1 1) |\n+-------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html'),(371,'ST_NUMGEOMETRIES',31,'ST_NumGeometries(gc)\n\nReturns the number of geometries in the GeometryCollection value gc. If\nthe argument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT ST_NumGeometries(ST_GeomFromText(@gc));\n+----------------------------------------+\n| ST_NumGeometries(ST_GeomFromText(@gc)) |\n+----------------------------------------+\n| 2 |\n+----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html'),(372,'BUFFER',31,'Buffer(g, d [, strategy1 [, strategy2 [, strategy3]]])\n\nST_Buffer() and Buffer() are synonyms. For more information, see the\ndescription of ST_Buffer().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(373,'CONVEXHULL',31,'ConvexHull(g)\n\nST_ConvexHull() and ConvexHull() are synonyms. For more information,\nsee the description of ST_ConvexHull().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(374,'ST_BUFFER',31,'ST_Buffer(g, d [, strategy1 [, strategy2 [, strategy3]]])\n\nReturns a geometry that represents all points whose distance from the\ngeometry value g is less than or equal to a distance of d, or NULL if\nany argument is NULL. The SRID of the geometry argument must be 0\nbecause ST_Buffer() supports only the Cartesian coordinate system. If\nany geometry argument is not a syntactically well-formed geometry, an\nER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_gis_invalid_data) error occurs.\n\nIf the geometry argument is empty, ST_Buffer() returns an empty\ngeometry.\n\nIf the distance is 0, ST_Buffer() returns the geometry argument\nunchanged:\n\nmysql> SET @pt = ST_GeomFromText(\'POINT(0 0)\');\nmysql> SELECT ST_AsText(ST_Buffer(@pt, 0));\n+------------------------------+\n| ST_AsText(ST_Buffer(@pt, 0)) |\n+------------------------------+\n| POINT(0 0) |\n+------------------------------+\n\nST_Buffer() supports negative distances for Polygon and MultiPolygon\nvalues, and for geometry collections containing Polygon or MultiPolygon\nvalues. The result may be an empty geometry. An ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_wrong_arguments) error occurs for ST_Buffer() with a\nnegative distance for Point, MultiPoint, LineString, and\nMultiLineString values, and for geometry collections not containing any\nPolygon or MultiPolygon values.\n\nST_Buffer() permits up to three optional strategy arguments following\nthe distance argument. Strategies influence buffer computation. These\narguments are byte string values produced by the ST_Buffer_Strategy()\nfunction, to be used for point, join, and end strategies:\n\no Point strategies apply to Point and MultiPoint geometries. If no\n point strategy is specified, the default is\n ST_Buffer_Strategy(\'point_circle\', 32).\n\no Join strategies apply to LineString, MultiLineString, Polygon, and\n MultiPolygon geometries. If no join strategy is specified, the\n default is ST_Buffer_Strategy(\'join_round\', 32).\n\no End strategies apply to LineString and MultiLineString geometries. If\n no end strategy is specified, the default is\n ST_Buffer_Strategy(\'end_round\', 32).\n\nUp to one strategy of each type may be specified, and they may be given\nin any order. If multiple strategies of a given type are specified, an\nER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_wrong_arguments) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','mysql> SET @pt = ST_GeomFromText(\'POINT(0 0)\');\nmysql> SET @pt_strategy = ST_Buffer_Strategy(\'point_square\');\nmysql> SELECT ST_AsText(ST_Buffer(@pt, 2, @pt_strategy));\n+--------------------------------------------+\n| ST_AsText(ST_Buffer(@pt, 2, @pt_strategy)) |\n+--------------------------------------------+\n| POLYGON((-2 -2,2 -2,2 2,-2 2,-2 -2)) |\n+--------------------------------------------+\n\nmysql> SET @ls = ST_GeomFromText(\'LINESTRING(0 0,0 5,5 5)\');\nmysql> SET @end_strategy = ST_Buffer_Strategy(\'end_flat\');\nmysql> SET @join_strategy = ST_Buffer_Strategy(\'join_round\', 10);\nmysql> SELECT ST_AsText(ST_Buffer(@ls, 5, @end_strategy, @join_strategy))\n+---------------------------------------------------------------+\n| ST_AsText(ST_Buffer(@ls, 5, @end_strategy, @join_strategy)) |\n+---------------------------------------------------------------+\n| POLYGON((5 5,5 10,0 10,-3.5355339059327373 8.535533905932738, |\n| -5 5,-5 0,0 0,5 0,5 5)) |\n+---------------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(375,'ST_BUFFER_STRATEGY',31,'ST_Buffer_Strategy(strategy [, points_per_circle])\n\nThis function returns a strategy byte string for use with ST_Buffer()\nto influence buffer computation. If any argument is NULL, the return\nvalue is NULL. If any argument is invalid, an ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_wrong_arguments) error occurs.\n\nInformation about strategies is available at Boost.org\n(http://www.boost.org).\n\nThe first argument must be a string indicating a strategy option:\n\no For point strategies, permitted values are \'point_circle\' and\n \'point_square\'.\n\no For join strategies, permitted values are \'join_round\' and\n \'join_miter\'.\n\no For end strategies, permitted values are \'end_round\' and \'end_flat\'.\n\nIf the first argument is \'point_circle\', \'join_round\', \'join_miter\', or\n\'end_round\', the points_per_circle argument must be given as a positive\nnumeric value. The maximum points_per_circle value is the value of the\nmax_points_in_geometry system variable. If the first argument is\n\'point_square\' or \'end_flat\', the points_per_circle argument must not\nbe given or an ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_wrong_arguments) error occurs.\n\nFor examples, see the description of ST_Buffer().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(376,'ST_CONVEXHULL',31,'ST_ConvexHull(g)\n\nReturns a geometry that represents the convex hull of the geometry\nvalue g. If the argument is NULL, the return value is NULL.\n\nThis function computes a geometry\'s convex hull by first checking\nwhether its vertex points are colinear. The function returns a linear\nhull if so, a polygon hull otherwise. This function processes geometry\ncollections by extracting all vertex points of all components of the\ncollection, creating a MultiPoint value from them, and computing its\nconvex hull. If the argument is an empty geometry collection, the\nreturn value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','mysql> SET @g = \'MULTIPOINT(5 0,25 0,15 10,15 25)\';\nmysql> SELECT ST_AsText(ST_ConvexHull(ST_GeomFromText(@g)));\n+-----------------------------------------------+\n| ST_AsText(ST_ConvexHull(ST_GeomFromText(@g))) |\n+-----------------------------------------------+\n| POLYGON((5 0,25 0,15 25,5 0)) |\n+-----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(377,'ST_DIFFERENCE',31,'ST_Difference(g1, g2)\n\nReturns a geometry that represents the point set difference of the\ngeometry values g1 and g2. If any argument is NULL, the return value is\nNULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = Point(1,1), @g2 = Point(2,2);\nmysql> SELECT ST_AsText(ST_Difference(@g1, @g2));\n+------------------------------------+\n| ST_AsText(ST_Difference(@g1, @g2)) |\n+------------------------------------+\n| POINT(1 1) |\n+------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(378,'ST_INTERSECTION',31,'ST_Intersection(g1, g2)\n\nReturns a geometry that represents the point set intersection of the\ngeometry values g1 and g2. If any argument is NULL, the return value is\nNULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'LineString(1 1, 3 3)\');\nmysql> SET @g2 = ST_GeomFromText(\'LineString(1 3, 3 1)\');\nmysql> SELECT ST_AsText(ST_Intersection(@g1, @g2));\n+--------------------------------------+\n| ST_AsText(ST_Intersection(@g1, @g2)) |\n+--------------------------------------+\n| POINT(2 2) |\n+--------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(379,'ST_SYMDIFFERENCE',31,'ST_SymDifference(g1, g2)\n\nReturns a geometry that represents the point set symmetric difference\nof the geometry values g1 and g2, which is defined as:\n\ng1 symdifference g2 := (g1 union g2) difference (g1 intersection g2)\n\nOr, in function call notation:\n\nST_SymDifference(g1, g2) = ST_Difference(ST_Union(g1, g2), ST_Intersection(g1, g2))\n\nIf any argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'MULTIPOINT(5 0,15 10,15 25)\');\nmysql> SET @g2 = ST_GeomFromText(\'MULTIPOINT(1 1,15 10,15 25)\');\nmysql> SELECT ST_AsText(ST_SymDifference(@g1, @g2));\n+---------------------------------------+\n| ST_AsText(ST_SymDifference(@g1, @g2)) |\n+---------------------------------------+\n| MULTIPOINT((1 1),(5 0)) |\n+---------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(380,'ST_UNION',31,'ST_Union(g1, g2)\n\nReturns a geometry that represents the point set union of the geometry\nvalues g1 and g2. If any argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'LineString(1 1, 3 3)\');\nmysql> SET @g2 = ST_GeomFromText(\'LineString(1 3, 3 1)\');\nmysql> SELECT ST_AsText(ST_Union(@g1, @g2));\n+--------------------------------------+\n| ST_AsText(ST_Union(@g1, @g2)) |\n+--------------------------------------+\n| MULTILINESTRING((1 1,3 3),(1 3,3 1)) |\n+--------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(381,'CROSSES',32,'Crosses(g1, g2)\n\nST_Crosses() and Crosses() are synonyms. For more information, see the\ndescription of ST_Crosses().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(382,'DISTANCE',32,'Distance(g1, g2)\n\nST_Distance() and Distance() are synonyms. For more information, see\nthe description of ST_Distance().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(383,'ST_CONTAINS',32,'ST_Contains(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 completely contains g2. This\ntests the opposite relationship as ST_Within().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(384,'ST_CROSSES',32,'ST_Crosses(g1, g2)\n\nThe term spatially crosses denotes a spatial relation between two given\ngeometries that has the following properties:\n\no The two geometries intersect.\n\no Their intersection results in a geometry that has a dimension that is\n one less than the maximum dimension of the two given geometries.\n\no Their intersection is not equal to either of the two given\n geometries.\n\nThis function returns 1 or 0 to indicate whether g1 spatially crosses\ng2. If g1 is a Polygon or a MultiPolygon, or if g2 is a Point or a\nMultiPoint, the return value is NULL.\n\nThis function returns 0 if called with an inapplicable geometry\nargument type combination. For example, it returns 0 if the first\nargument is a Polygon or MultiPolygon and/or the second argument is a\nPoint or MultiPoint.\n\nReturns 1 if g1 spatially crosses g2. Returns NULL if g1 is a Polygon\nor a MultiPolygon, or if g2 is a Point or a MultiPoint. Otherwise,\nreturns 0.\n\nThis function returns 0 if called with an inapplicable geometry\nargument type combination. For example, it returns 0 if the first\nargument is a Polygon or MultiPolygon and/or the second argument is a\nPoint or MultiPoint.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(385,'ST_DISJOINT',32,'ST_Disjoint(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially disjoint from (does\nnot intersect) g2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(386,'ST_DISTANCE',32,'ST_Distance(g1, g2)\n\nReturns the distance between g1 and g2. If either argument is NULL or\nan empty geometry, the return value is NULL.\n\nThis function processes geometry collections by returning the shortest\ndistance among all combinations of the components of the two geometry\narguments.\n\nIf an intermediate or final result produces NaN or a negative number,\nan ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','mysql> SET @g1 = Point(1,1);\nmysql> SET @g2 = Point(2,2);\nmysql> SELECT ST_Distance(@g1, @g2);\n+-----------------------+\n| ST_Distance(@g1, @g2) |\n+-----------------------+\n| 1.4142135623730951 |\n+-----------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(387,'ST_EQUALS',32,'ST_Equals(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially equal to g2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','mysql> SET @g1 = Point(1,1), @g2 = Point(2,2);\nmysql> SELECT ST_Equals(@g1, @g1), ST_Equals(@g1, @g2);\n+---------------------+---------------------+\n| ST_Equals(@g1, @g1) | ST_Equals(@g1, @g2) |\n+---------------------+---------------------+\n| 1 | 0 |\n+---------------------+---------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(388,'ST_INTERSECTS',32,'ST_Intersects(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 spatially intersects g2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(389,'ST_OVERLAPS',32,'ST_Overlaps(g1, g2)\n\nTwo geometries spatially overlap if they intersect and their\nintersection results in a geometry of the same dimension but not equal\nto either of the given geometries.\n\nThis function returns 1 or 0 to indicate whether g1 spatially overlaps\ng2.\n\nThis function returns 0 if called with an inapplicable geometry\nargument type combination. For example, it returns 0 if called with\ngeometries of different dimensions or any argument is a Point.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(390,'ST_TOUCHES',32,'ST_Touches(g1, g2)\n\nTwo geometries spatially touch if their interiors do not intersect, but\nthe boundary of one of the geometries intersects either the boundary or\nthe interior of the other.\n\nThis function returns 1 or 0 to indicate whether g1 spatially touches\ng2.\n\nThis function returns 0 if called with an inapplicable geometry\nargument type combination. For example, it returns 0 if either of the\narguments is a Point or MultiPoint.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(391,'ST_WITHIN',32,'ST_Within(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially within g2. This\ntests the opposite relationship as ST_Contains().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(392,'TOUCHES',32,'Touches(g1, g2)\n\nST_Touches() and Touches() are synonyms. For more information, see the\ndescription of ST_Touches().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(393,'MBRCONTAINS',33,'MBRContains(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\ncontains the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRWithin().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = ST_GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRWithin(@g2,@g1);\n+----------------------+--------------------+\n| MBRContains(@g1,@g2) | MBRWithin(@g2,@g1) |\n+----------------------+--------------------+\n| 1 | 1 |\n+----------------------+--------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(394,'MBRCOVEREDBY',33,'MBRCoveredBy(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\nis covered by the minimum bounding rectangle of g2. This tests the\nopposite relationship as MBRCovers().\n\nMBRCoveredBy() handles its arguments as follows:\n\no If either argument is NULL or an empty geometry, the return value is\n NULL.\n\no If either argument is not a syntactically well-formed geometry byte\n string, an ER_GIS_INVALID_DATA\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html#error_er_gis_invalid_data) error occurs.\n\no Otherwise, the return value is non-NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = ST_GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRCovers(@g1,@g2), MBRCoveredby(@g1,@g2);\n+--------------------+-----------------------+\n| MBRCovers(@g1,@g2) | MBRCoveredby(@g1,@g2) |\n+--------------------+-----------------------+\n| 1 | 0 |\n+--------------------+-----------------------+\nmysql> SELECT MBRCovers(@g2,@g1), MBRCoveredby(@g2,@g1);\n+--------------------+-----------------------+\n| MBRCovers(@g2,@g1) | MBRCoveredby(@g2,@g1) |\n+--------------------+-----------------------+\n| 0 | 1 |\n+--------------------+-----------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(395,'MBRCOVERS',33,'MBRCovers(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\ncovers the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRCoveredBy(). See the description of MBRCoveredBy()\nfor examples.\n\nMBRCovers() handles its arguments as follows:\n\no If either argument is NULL or an empty geometry, the return value is\n NULL.\n\no If either argument is not a syntactically well-formed geometry byte\n string, an ER_GIS_INVALID_DATA\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html#error_er_gis_invalid_data) error occurs.\n\no Otherwise, the return value is non-NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(396,'MBRDISJOINT',33,'MBRDisjoint(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(397,'MBREQUAL',33,'MBREqual(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are the same.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(398,'MBREQUALS',33,'MBREquals(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are the same.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(399,'MBRINTERSECTS',33,'MBRIntersects(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 intersect.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(400,'MBROVERLAPS',33,'MBROverlaps(g1, g2)\n\nTwo geometries spatially overlap if they intersect and their\nintersection results in a geometry of the same dimension but not equal\nto either of the given geometries.\n\nThis function returns 1 or 0 to indicate whether the minimum bounding\nrectangles of the two geometries g1 and g2 overlap.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(401,'MBRTOUCHES',33,'MBRTouches(g1, g2)\n\nTwo geometries spatially touch if their interiors do not intersect, but\nthe boundary of one of the geometries intersects either the boundary or\nthe interior of the other.\n\nThis function returns 1 or 0 to indicate whether the minimum bounding\nrectangles of the two geometries g1 and g2 touch.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(402,'MBRWITHIN',33,'MBRWithin(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\nis within the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRContains().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = ST_GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(403,'CONTAINS',33,'Contains(g1, g2)\n\nMBRContains() and Contains() are synonyms. For more information, see\nthe description of MBRContains().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(404,'DISJOINT',33,'Disjoint(g1, g2)\n\nMBRDisjoint() and Disjoint() are synonyms. For more information, see\nthe description of MBRDisjoint().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(405,'EQUALS',33,'Equals(g1, g2)\n\nMBREquals() and Equals() are synonyms. For more information, see the\ndescription of MBREquals().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(406,'INTERSECTS',33,'Intersects(g1, g2)\n\nMBRIntersects() and Intersects() are synonyms. For more information,\nsee the description of MBRIntersects().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(407,'OVERLAPS',33,'Overlaps(g1, g2)\n\nMBROverlaps() and Overlaps() are synonyms. For more information, see\nthe description of MBROverlaps().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(408,'WITHIN',33,'Within(g1, g2)\n\nMBRWithin() and Within() are synonyms. For more information, see the\ndescription of MBRWithin().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(409,'ST_GEOHASH',33,'ST_GeoHash(longitude, latitude, max_length), ST_GeoHash(point,\nmax_length)\n\nReturns a geohash string in the connection character set and collation.\n\nIf any argument is NULL, the return value is NULL. If any argument is\ninvalid, an error occurs.\n\nFor the first syntax, the longitude must be a number in the range\n[−180, 180], and the latitude must be a number in the range [−90,\n90]. For the second syntax, a POINT value is required, where the X and\nY coordinates are in the valid ranges for longitude and latitude,\nrespectively.\n\nThe resulting string is no longer than max_length characters, which has\nan upper limit of 100. The string might be shorter than max_length\ncharacters because the algorithm that creates the geohash value\ncontinues until it has created a string that is either an exact\nrepresentation of the location or max_length characters, whichever\ncomes first.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SELECT ST_GeoHash(180,0,10), ST_GeoHash(-180,-90,15);\n+----------------------+-------------------------+\n| ST_GeoHash(180,0,10) | ST_GeoHash(-180,-90,15) |\n+----------------------+-------------------------+\n| xbpbpbpbpb | 000000000000000 |\n+----------------------+-------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'),(410,'ST_LATFROMGEOHASH',33,'ST_LatFromGeoHash(geohash_str)\n\nReturns the latitude from a geohash string value, as a DOUBLE value in\nthe range [−90, 90].\n\nIf the argument is NULL, the return value is NULL. If the argument is\ninvalid, an error occurs.\n\nThe ST_LatFromGeoHash() decoding function reads no more than 433\ncharacters from the geohash_str argument. That represents the upper\nlimit on information in the internal representation of coordinate\nvalues. Characters past the 433rd are ignored, even if they are\notherwise illegal and produce an error.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SELECT ST_LatFromGeoHash(ST_GeoHash(45,-20,10));\n+------------------------------------------+\n| ST_LatFromGeoHash(ST_GeoHash(45,-20,10)) |\n+------------------------------------------+\n| -20 |\n+------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'),(411,'ST_LONGFROMGEOHASH',33,'ST_LongFromGeoHash(geohash_str)\n\nReturns the longitude from a geohash string value, as a DOUBLE value in\nthe range [−180, 180].\n\nIf the argument is NULL, the return value is NULL. If the argument is\ninvalid, an error occurs.\n\nThe remarks in the description of ST_LatFromGeoHash() regarding the\nmaximum number of characters processed from the geohash_str argument\nalso apply to ST_LongFromGeoHash().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SELECT ST_LongFromGeoHash(ST_GeoHash(45,-20,10));\n+-------------------------------------------+\n| ST_LongFromGeoHash(ST_GeoHash(45,-20,10)) |\n+-------------------------------------------+\n| 45 |\n+-------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'),(412,'ST_POINTFROMGEOHASH',33,'ST_PointFromGeoHash(geohash_str, srid)\n\nReturns a POINT value containing the decoded geohash value, given a\ngeohash string value.\n\nThe X and Y coordinates of the point are the longitude in the range\n[−180, 180] and the latitude in the range [−90, 90], respectively.\n\nIf any argument is NULL, the return value is NULL. If any argument is\ninvalid, an error occurs.\n\nThe srid argument is an unsigned 32-bit integer.\n\nThe remarks in the description of ST_LatFromGeoHash() regarding the\nmaximum number of characters processed from the geohash_str argument\nalso apply to ST_PointFromGeoHash().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SET @gh = ST_GeoHash(45,-20,10);\nmysql> SELECT ST_AsText(ST_PointFromGeoHash(@gh,0));\n+---------------------------------------+\n| ST_AsText(ST_PointFromGeoHash(@gh,0)) |\n+---------------------------------------+\n| POINT(45 -20) |\n+---------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'),(413,'ST_ASGEOJSON',33,'ST_AsGeoJSON(g [, max_dec_digits [, options]])\n\nGenerates a GeoJSON object from the geometry g. The object string has\nthe connection character set and collation.\n\nIf any argument is NULL, the return value is NULL. If any non-NULL\nargument is invalid, an error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geojson-functions.html\n\n','mysql> SELECT ST_AsGeoJSON(ST_GeomFromText(\'POINT(11.11111 12.22222)\'),2);\n+-------------------------------------------------------------+\n| ST_AsGeoJSON(ST_GeomFromText(\'POINT(11.11111 12.22222)\'),2) |\n+-------------------------------------------------------------+\n| {\"type\": \"Point\", \"coordinates\": [11.11, 12.22]} |\n+-------------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geojson-functions.html'),(414,'ST_GEOMFROMGEOJSON',33,'ST_GeomFromGeoJSON(str [, options [, srid]])\n\nParses a string str representing a GeoJSON object and returns a\ngeometry.\n\nIf any argument is NULL, the return value is NULL. If any non-NULL\nargument is invalid, an error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geojson-functions.html\n\n','mysql> SET @json = \'{ \"type\": \"Point\", \"coordinates\": [102.0, 0.0]}\';\nmysql> SELECT ST_AsText(ST_GeomFromGeoJSON(@json));\n+--------------------------------------+\n| ST_AsText(ST_GeomFromGeoJSON(@json)) |\n+--------------------------------------+\n| POINT(102 0) |\n+--------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geojson-functions.html'),(415,'ST_DISTANCE_SPHERE',33,'ST_Distance_Sphere(g1, g2 [, radius])\n\nReturns the mimimum spherical distance between two points and/or\nmultipoints on a sphere, in meters, or NULL if any geometry argument is\nNULL or empty.\n\nCalculations use a spherical earth and a configurable radius. The\noptional radius argument should be given in meters. If omitted, the\ndefault radius is 6,370,986 meters. An ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_wrong_arguments) error occurs if the radius argument is\npresent but not positive.\n\nThe geometry arguments should consist of points that specify\n(longitude, latitude) coordinate values:\n\no Longitude and latitude are the first and second coordinates of the\n point, respectively.\n\no Both coordinates are in degrees.\n\no Longitude values must be in the range (-180, 180]. Positive values\n are east of the prime meridian.\n\no Latitude values must be in the range [-90, 90]. Positive values are\n north of the equator.\n\nSupported argument combinations are (Point, Point), (Point,\nMultiPoint), and (MultiPoint, Point). An ER_GIS_UNSUPPORTED_ARGUMENT\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_gis_unsupported_argument) error occurs for other\ncombinations.\n\nIf any geometry argument is not a syntactically well-formed geometry\nbyte string, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @pt1 = ST_GeomFromText(\'POINT(0 0)\');\nmysql> SET @pt2 = ST_GeomFromText(\'POINT(180 0)\');\nmysql> SELECT ST_Distance_Sphere(@pt1, @pt2);\n+--------------------------------+\n| ST_Distance_Sphere(@pt1, @pt2) |\n+--------------------------------+\n| 20015042.813723423 |\n+--------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(416,'ST_ISVALID',33,'ST_IsValid(g)\n\nReturns 1 if the argument is syntactically well-formed and is\ngeometrically valid, 0 if the argument is not syntactically well-formed\nor is not geometrically valid. If the argument is NULL, the return\nvalue is NULL. Geometry validity is defined by the OGC specification.\n\nThe only valid empty geometry is represented in the form of an empty\ngeometry collection value. ST_IsValid() returns 1 in this case.\n\nST_IsValid() works only for the Cartesian coordinate system and\nrequires a geometry argument with an SRID of 0. An ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_wrong_arguments) error occurs otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @ls1 = ST_GeomFromText(\'LINESTRING(0 0,-0.00 0,0.0 0)\');\nmysql> SET @ls2 = ST_GeomFromText(\'LINESTRING(0 0, 1 1)\');\nmysql> SELECT ST_IsValid(@ls1);\n+------------------+\n| ST_IsValid(@ls1) |\n+------------------+\n| 0 |\n+------------------+\nmysql> SELECT ST_IsValid(@ls2);\n+------------------+\n| ST_IsValid(@ls2) |\n+------------------+\n| 1 |\n+------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(417,'ST_MAKEENVELOPE',33,'ST_MakeEnvelope(pt1, pt2)\n\nReturns the rectangle that forms the envelope around two points, as a\nPoint, LineString, or Polygon. If any argument is NULL, the return\nvalue is NULL.\n\nCalculations are done using the Cartesian coordinate system rather than\non a sphere, spheroid, or on earth.\n\nGiven two points pt1 and pt2, ST_MakeEnvelope() creates the result\ngeometry on an abstract plane like this:\n\no If pt1 and pt2 are equal, the result is the point pt1.\n\no Otherwise, if (pt1, pt2) is a vertical or horizontal line segment,\n the result is the line segment (pt1, pt2).\n\no Otherwise, the result is a polygon using pt1 and pt2 as diagonal\n points.\n\nThe result geometry has an SRID of 0.\n\nST_MakeEnvelope() requires Point geometry arguments with an SRID of 0.\nAn ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_wrong_arguments) error occurs otherwise.\n\nIf any argument is not a syntactically well-formed geometry byte\nstring, or if any coordinate value of the two points is infinite or\nNaN, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @pt1 = ST_GeomFromText(\'POINT(0 0)\');\nmysql> SET @pt2 = ST_GeomFromText(\'POINT(1 1)\');\nmysql> SELECT ST_AsText(ST_MakeEnvelope(@pt1, @pt2));\n+----------------------------------------+\n| ST_AsText(ST_MakeEnvelope(@pt1, @pt2)) |\n+----------------------------------------+\n| POLYGON((0 0,1 0,1 1,0 1,0 0)) |\n+----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(418,'ST_SIMPLIFY',33,'ST_Simplify(g, max_distance)\n\nSimplifies a geometry using the Douglas-Peucker algorithm and returns a\nsimplified value of the same type. If any argument is NULL, the return\nvalue is NULL.\n\nThe geometry may be any geometry type, although the Douglas-Peucker\nalgorithm may not actually process every type. A geometry collection is\nprocessed by giving its components one by one to the simplification\nalgorithm, and the returned geometries are put into a geometry\ncollection as result.\n\nThe max_distance argument is the distance (in units of the input\ncoordinates) of a vertex to other segments to be removed. Vertices\nwithin this distance of the simplified linestring are removed. If the\nmax_distance argument is not positive, or is NaN, an ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_wrong_arguments) error occurs.\n\nAccording to Boost.Geometry, geometries might become invalid as a\nresult of the simplification process, and the process might create\nself-intersections. To check the validity of the result, pass it to\nST_IsValid().\n\nIf the geometry argument is not a syntactically well-formed geometry\nbyte string, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @g = ST_GeomFromText(\'LINESTRING(0 0,0 1,1 1,1 2,2 2,2 3,3 3)\');\nmysql> SELECT ST_AsText(ST_Simplify(@g, 0.5));\n+---------------------------------+\n| ST_AsText(ST_Simplify(@g, 0.5)) |\n+---------------------------------+\n| LINESTRING(0 0,0 1,1 1,2 3,3 3) |\n+---------------------------------+\nmysql> SELECT ST_AsText(ST_Simplify(@g, 1.0));\n+---------------------------------+\n| ST_AsText(ST_Simplify(@g, 1.0)) |\n+---------------------------------+\n| LINESTRING(0 0,3 3) |\n+---------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(419,'ST_VALIDATE',33,'ST_Validate(g)\n\nValidates a geometry according to the OGC specification. A geometry can\nbe syntactically well-formed (WKB value plus SRID) but geometrically\ninvalid. For example, this polygon is geometrically invalid: POLYGON((0\n0, 0 0, 0 0, 0 0, 0 0))\n\nST_Validate() returns the geometry if it is syntactically well-formed\nand is geometrically valid, NULL if the argument is not syntactically\nwell-formed or is not geometrically valid or is NULL.\n\nST_Validate() can be used to filter out invalid geometry data, although\nat a cost. For applications that require more precise results not\ntainted by invalid data, this penalty may be worthwhile.\n\nIf the geometry argument is valid, it is returned as is, except that if\nan input Polygon or MultiPolygon has clockwise rings, those rings are\nreversed before checking for validity. If the geometry is valid, the\nvalue with the reversed rings is returned.\n\nThe only valid empty geometry is represented in the form of an empty\ngeometry collection value. ST_Validate() returns it directly without\nfurther checks in this case.\n\nST_Validate() works only for the Cartesian coordinate system and\nrequires a geometry argument with an SRID of 0. An ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_wrong_arguments) error occurs otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @ls1 = ST_GeomFromText(\'LINESTRING(0 0)\');\nmysql> SET @ls2 = ST_GeomFromText(\'LINESTRING(0 0, 1 1)\');\nmysql> SELECT ST_AsText(ST_Validate(@ls1));\n+------------------------------+\n| ST_AsText(ST_Validate(@ls1)) |\n+------------------------------+\n| NULL |\n+------------------------------+\nmysql> SELECT ST_AsText(ST_Validate(@ls2));\n+------------------------------+\n| ST_AsText(ST_Validate(@ls2)) |\n+------------------------------+\n| LINESTRING(0 0,1 1) |\n+------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(420,'JSON_ARRAY',33,'Syntax:\nJSON_ARRAY([val[, val] ...])\n\nEvaluates a (possibly empty) list of values and returns a JSON array\ncontaining those values.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html\n\n','mysql> SELECT JSON_ARRAY(1, \"abc\", NULL, TRUE, CURTIME());\n+---------------------------------------------+\n| JSON_ARRAY(1, \"abc\", NULL, TRUE, CURTIME()) |\n+---------------------------------------------+\n| [1, \"abc\", null, true, \"11:30:24.000000\"] |\n+---------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html'),(421,'JSON_OBJECT',33,'Syntax:\nJSON_OBJECT([key, val[, key, val] ...])\n\nEvaluates a (possibly empty) list of key-value pairs and returns a JSON\nobject containing those pairs. An error occurs if any key name is NULL\nor the number of arguments is odd.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html\n\n','mysql> SELECT JSON_OBJECT(\'id\', 87, \'name\', \'carrot\');\n+-----------------------------------------+\n| JSON_OBJECT(\'id\', 87, \'name\', \'carrot\') |\n+-----------------------------------------+\n| {\"id\": 87, \"name\": \"carrot\"} |\n+-----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html'),(422,'JSON_QUOTE',33,'Syntax:\nJSON_QUOTE(string)\n\nQuotes a string as a JSON value by wrapping it with double quote\ncharacters and escaping interior quote and other characters, then\nreturning the result as a utf8mb4 string. Returns NULL if the argument\nis NULL.\n\nThis function is typically used to produce a valid JSON string literal\nfor inclusion within a JSON document.\n\nCertain special characters are escaped with backslashes per the escape\nsequences shown in\nhttps://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n#json-unquote-character-escape-sequences.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html\n\n','mysql> SELECT JSON_QUOTE(\'null\'), JSON_QUOTE(\'\"null\"\');\n+--------------------+----------------------+\n| JSON_QUOTE(\'null\') | JSON_QUOTE(\'\"null\"\') |\n+--------------------+----------------------+\n| \"null\" | \"\\\"null\\\"\" |\n+--------------------+----------------------+\nmysql> SELECT JSON_QUOTE(\'[1, 2, 3]\');\n+-------------------------+\n| JSON_QUOTE(\'[1, 2, 3]\') |\n+-------------------------+\n| \"[1, 2, 3]\" |\n+-------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html'),(423,'JSON_CONTAINS',33,'Syntax:\nJSON_CONTAINS(target, candidate[, path])\n\nIndicates by returning 1 or 0 whether a given candidate JSON document\nis contained within a target JSON document, or---if a path argument was\nsupplied---whether the candidate is found at a specific path within the\ntarget. Returns NULL if any argument is NULL, or if the path argument\ndoes not identify a section of the target document. An error occurs if\ntarget or candidate is not a valid JSON document, or if the path\nargument is not a valid path expression or contains a * or ** wildcard.\n\nTo check only whether any data exists at the path, use\nJSON_CONTAINS_PATH() instead.\n\nThe following rules define containment:\n\no A candidate scalar is contained in a target scalar if and only if\n they are comparable and are equal. Two scalar values are comparable\n if they have the same JSON_TYPE() types, with the exception that\n values of types INTEGER and DECIMAL are also comparable to each\n other.\n\no A candidate array is contained in a target array if and only if every\n element in the candidate is contained in some element of the target.\n\no A candidate nonarray is contained in a target array if and only if\n the candidate is contained in some element of the target.\n\no A candidate object is contained in a target object if and only if for\n each key in the candidate there is a key with the same name in the\n target and the value associated with the candidate key is contained\n in the value associated with the target key.\n\nOtherwise, the candidate value is not contained in the target document.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SET @j = \'{\"a\": 1, \"b\": 2, \"c\": {\"d\": 4}}\';\nmysql> SET @j2 = \'1\';\nmysql> SELECT JSON_CONTAINS(@j, @j2, \'$.a\');\n+-------------------------------+\n| JSON_CONTAINS(@j, @j2, \'$.a\') |\n+-------------------------------+\n| 1 |\n+-------------------------------+\nmysql> SELECT JSON_CONTAINS(@j, @j2, \'$.b\');\n+-------------------------------+\n| JSON_CONTAINS(@j, @j2, \'$.b\') |\n+-------------------------------+\n| 0 |\n+-------------------------------+\n\nmysql> SET @j2 = \'{\"d\": 4}\';\nmysql> SELECT JSON_CONTAINS(@j, @j2, \'$.a\');\n+-------------------------------+\n| JSON_CONTAINS(@j, @j2, \'$.a\') |\n+-------------------------------+\n| 0 |\n+-------------------------------+\nmysql> SELECT JSON_CONTAINS(@j, @j2, \'$.c\');\n+-------------------------------+\n| JSON_CONTAINS(@j, @j2, \'$.c\') |\n+-------------------------------+\n| 1 |\n+-------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(424,'JSON_CONTAINS_PATH',33,'Syntax:\nJSON_CONTAINS_PATH(json_doc, one_or_all, path[, path] ...)\n\nReturns 0 or 1 to indicate whether a JSON document contains data at a\ngiven path or paths. Returns NULL if any argument is NULL. An error\noccurs if the json_doc argument is not a valid JSON document, any path\nargument is not a valid path expression, or one_or_all is not \'one\' or\n\'all\'.\n\nTo check for a specific value at a path, use JSON_CONTAINS() instead.\n\nThe return value is 0 if no specified path exists within the document.\nOtherwise, the return value depends on the one_or_all argument:\n\no \'one\': 1 if at least one path exists within the document, 0\n otherwise.\n\no \'all\': 1 if all paths exist within the document, 0 otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SET @j = \'{\"a\": 1, \"b\": 2, \"c\": {\"d\": 4}}\';\nmysql> SELECT JSON_CONTAINS_PATH(@j, \'one\', \'$.a\', \'$.e\');\n+---------------------------------------------+\n| JSON_CONTAINS_PATH(@j, \'one\', \'$.a\', \'$.e\') |\n+---------------------------------------------+\n| 1 |\n+---------------------------------------------+\nmysql> SELECT JSON_CONTAINS_PATH(@j, \'all\', \'$.a\', \'$.e\');\n+---------------------------------------------+\n| JSON_CONTAINS_PATH(@j, \'all\', \'$.a\', \'$.e\') |\n+---------------------------------------------+\n| 0 |\n+---------------------------------------------+\nmysql> SELECT JSON_CONTAINS_PATH(@j, \'one\', \'$.c.d\');\n+----------------------------------------+\n| JSON_CONTAINS_PATH(@j, \'one\', \'$.c.d\') |\n+----------------------------------------+\n| 1 |\n+----------------------------------------+\nmysql> SELECT JSON_CONTAINS_PATH(@j, \'one\', \'$.a.d\');\n+----------------------------------------+\n| JSON_CONTAINS_PATH(@j, \'one\', \'$.a.d\') |\n+----------------------------------------+\n| 0 |\n+----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(425,'JSON_EXTRACT',33,'Syntax:\nJSON_EXTRACT(json_doc, path[, path] ...)\n\nReturns data from a JSON document, selected from the parts of the\ndocument matched by the path arguments. Returns NULL if any argument is\nNULL or no paths locate a value in the document. An error occurs if the\njson_doc argument is not a valid JSON document or any path argument is\nnot a valid path expression.\n\nThe return value consists of all values matched by the path arguments.\nIf it is possible that those arguments could return multiple values,\nthe matched values are autowrapped as an array, in the order\ncorresponding to the paths that produced them. Otherwise, the return\nvalue is the single matched value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SELECT JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[1]\');\n+--------------------------------------------+\n| JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[1]\') |\n+--------------------------------------------+\n| 20 |\n+--------------------------------------------+\nmysql> SELECT JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[1]\', \'$[0]\');\n+----------------------------------------------------+\n| JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[1]\', \'$[0]\') |\n+----------------------------------------------------+\n| [20, 10] |\n+----------------------------------------------------+\nmysql> SELECT JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[2][*]\');\n+-----------------------------------------------+\n| JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[2][*]\') |\n+-----------------------------------------------+\n| [30, 40] |\n+-----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(426,'->',33,'Syntax:\ncolumn->path\n\nIn MySQL 5.7.9 and later, the -> operator serves as an alias for the\nJSON_EXTRACT() function when used with two arguments, a column\nidentifier on the left and a JSON path (a string literal) on the right\nthat is evaluated against the JSON document (the column value). You can\nuse such expressions in place of column references wherever they occur\nin SQL statements.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SELECT c, JSON_EXTRACT(c, \"$.id\"), g\n > FROM jemp\n > WHERE JSON_EXTRACT(c, \"$.id\") > 1\n > ORDER BY JSON_EXTRACT(c, \"$.name\");\n+-------------------------------+-----------+------+\n| c | c->\"$.id\" | g |\n+-------------------------------+-----------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | \"3\" | 3 |\n| {\"id\": \"4\", \"name\": \"Betty\"} | \"4\" | 4 |\n| {\"id\": \"2\", \"name\": \"Wilma\"} | \"2\" | 2 |\n+-------------------------------+-----------+------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT c, c->\"$.id\", g\n > FROM jemp\n > WHERE c->\"$.id\" > 1\n > ORDER BY c->\"$.name\";\n+-------------------------------+-----------+------+\n| c | c->\"$.id\" | g |\n+-------------------------------+-----------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | \"3\" | 3 |\n| {\"id\": \"4\", \"name\": \"Betty\"} | \"4\" | 4 |\n| {\"id\": \"2\", \"name\": \"Wilma\"} | \"2\" | 2 |\n+-------------------------------+-----------+------+\n3 rows in set (0.00 sec)\n\nmysql> ALTER TABLE jemp ADD COLUMN n INT;\nQuery OK, 0 rows affected (0.68 sec)\nRecords: 0 Duplicates: 0 Warnings: 0\n\nmysql> UPDATE jemp SET n=1 WHERE c->\"$.id\" = \"4\";\nQuery OK, 1 row affected (0.04 sec)\nRows matched: 1 Changed: 1 Warnings: 0\n\nmysql> SELECT c, c->\"$.id\", g, n\n > FROM jemp\n > WHERE JSON_EXTRACT(c, \"$.id\") > 1\n > ORDER BY c->\"$.name\";\n+-------------------------------+-----------+------+------+\n| c | c->\"$.id\" | g | n |\n+-------------------------------+-----------+------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | \"3\" | 3 | NULL |\n| {\"id\": \"4\", \"name\": \"Betty\"} | \"4\" | 4 | 1 |\n| {\"id\": \"2\", \"name\": \"Wilma\"} | \"2\" | 2 | NULL |\n+-------------------------------+-----------+------+------+\n3 rows in set (0.00 sec)\n\nmysql> DELETE FROM jemp WHERE c->\"$.id\" = \"4\";\nQuery OK, 1 row affected (0.04 sec)\n\nmysql> SELECT c, c->\"$.id\", g, n\n > FROM jemp\n > WHERE JSON_EXTRACT(c, \"$.id\") > 1\n > ORDER BY c->\"$.name\";\n+-------------------------------+-----------+------+------+\n| c | c->\"$.id\" | g | n |\n+-------------------------------+-----------+------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | \"3\" | 3 | NULL |\n| {\"id\": \"2\", \"name\": \"Wilma\"} | \"2\" | 2 | NULL |\n+-------------------------------+-----------+------+------+\n2 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(427,'->>',33,'Syntax:\ncolumn->>path\n\nThis is an improved, unquoting extraction operator available in MySQL\n5.7.13 and later. Whereas the -> operator simply extracts a value, the\n->> operator in addition unquotes the extracted result. In other words,\ngiven a JSON column value column and a path expression path (a string\nliteral), the following three expressions return the same value:\n\no JSON_UNQUOTE( JSON_EXTRACT(column, path) )\n\no JSON_UNQUOTE(column -> path)\n\no column->>path\n\nThe ->> operator can be used wherever JSON_UNQUOTE(JSON_EXTRACT())\nwould be allowed. This includes (but is not limited to) SELECT lists,\nWHERE and HAVING clauses, and ORDER BY and GROUP BY clauses.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SELECT * FROM jemp WHERE g > 2;\n+-------------------------------+------+\n| c | g |\n+-------------------------------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | 3 |\n| {\"id\": \"4\", \"name\": \"Betty\"} | 4 |\n+-------------------------------+------+\n2 rows in set (0.01 sec)\n\nmysql> SELECT c->\'$.name\' AS name\n -> FROM jemp WHERE g > 2;\n+----------+\n| name |\n+----------+\n| \"Barney\" |\n| \"Betty\" |\n+----------+\n2 rows in set (0.00 sec)\n\nmysql> SELECT JSON_UNQUOTE(c->\'$.name\') AS name\n -> FROM jemp WHERE g > 2;\n+--------+\n| name |\n+--------+\n| Barney |\n| Betty |\n+--------+\n2 rows in set (0.00 sec)\n\nmysql> SELECT c->>\'$.name\' AS name\n -> FROM jemp WHERE g > 2;\n+--------+\n| name |\n+--------+\n| Barney |\n| Betty |\n+--------+\n2 rows in set (0.00 sec)\n\nmysql> CREATE TABLE tj10 (a JSON, b INT);\nQuery OK, 0 rows affected (0.26 sec)\n\nmysql> INSERT INTO tj10 VALUES\n -> (\'[3,10,5,\"x\",44]\', 33),\n -> (\'[3,10,5,17,[22,\"y\",66]]\', 0);\nQuery OK, 2 rows affected (0.04 sec)\nRecords: 2 Duplicates: 0 Warnings: 0\n\nmysql> SELECT a->\"$[3]\", a->\"$[4][1]\" FROM tj10;\n+-----------+--------------+\n| a->\"$[3]\" | a->\"$[4][1]\" |\n+-----------+--------------+\n| \"x\" | NULL |\n| 17 | \"y\" |\n+-----------+--------------+\n2 rows in set (0.00 sec)\n\nmysql> SELECT a->>\"$[3]\", a->>\"$[4][1]\" FROM tj10;\n+------------+---------------+\n| a->>\"$[3]\" | a->>\"$[4][1]\" |\n+------------+---------------+\n| x | NULL |\n| 17 | y |\n+------------+---------------+\n2 rows in set (0.00 sec)\n\nmysql> EXPLAIN SELECT c->>\'$.name\' AS name\n -> FROM jemp WHERE g > 2\\G\n*************************** 1. row ***************************\n id: 1\n select_type: SIMPLE\n table: jemp\n partitions: NULL\n type: range\npossible_keys: i\n key: i\n key_len: 5\n ref: NULL\n rows: 2\n filtered: 100.00\n Extra: Using where\n1 row in set, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS\\G\n*************************** 1. row ***************************\n Level: Note\n Code: 1003\nMessage: /* select#1 */ select\njson_unquote(json_extract(`jtest`.`jemp`.`c`,\'$.name\')) AS `name` from\n`jtest`.`jemp` where (`jtest`.`jemp`.`g` > 2)\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(428,'JSON_KEYS',33,'Syntax:\nJSON_KEYS(json_doc[, path])\n\nReturns the keys from the top-level value of a JSON object as a JSON\narray, or, if a path argument is given, the top-level keys from the\nselected path. Returns NULL if any argument is NULL, the json_doc\nargument is not an object, or path, if given, does not locate an\nobject. An error occurs if the json_doc argument is not a valid JSON\ndocument or the path argument is not a valid path expression or\ncontains a * or ** wildcard.\n\nThe result array is empty if the selected object is empty. If the\ntop-level value has nested subobjects, the return value does not\ninclude keys from those subobjects.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SELECT JSON_KEYS(\'{\"a\": 1, \"b\": {\"c\": 30}}\');\n+---------------------------------------+\n| JSON_KEYS(\'{\"a\": 1, \"b\": {\"c\": 30}}\') |\n+---------------------------------------+\n| [\"a\", \"b\"] |\n+---------------------------------------+\nmysql> SELECT JSON_KEYS(\'{\"a\": 1, \"b\": {\"c\": 30}}\', \'$.b\');\n+----------------------------------------------+\n| JSON_KEYS(\'{\"a\": 1, \"b\": {\"c\": 30}}\', \'$.b\') |\n+----------------------------------------------+\n| [\"c\"] |\n+----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(429,'JSON_SEARCH',33,'Syntax:\nJSON_SEARCH(json_doc, one_or_all, search_str[, escape_char[, path]\n...])\n\nReturns the path to the given string within a JSON document. Returns\nNULL if any of the json_doc, search_str, or path arguments are NULL; no\npath exists within the document; or search_str is not found. An error\noccurs if the json_doc argument is not a valid JSON document, any path\nargument is not a valid path expression, one_or_all is not \'one\' or\n\'all\', or escape_char is not a constant expression.\n\nThe one_or_all argument affects the search as follows:\n\no \'one\': The search terminates after the first match and returns one\n path string. It is undefined which match is considered first.\n\no \'all\': The search returns all matching path strings such that no\n duplicate paths are included. If there are multiple strings, they are\n autowrapped as an array. The order of the array elements is\n undefined.\n\nWithin the search_str search string argument, the % and _ characters\nwork as for the LIKE operator: % matches any number of characters\n(including zero characters), and _ matches exactly one character.\n\nTo specify a literal % or _ character in the search string, precede it\nby the escape character. The default is \\ if the escape_char argument\nis missing or NULL. Otherwise, escape_char must be a constant that is\nempty or one character.\n\nFor more information about matching and escape character behavior, see\nthe description of LIKE in\nhttps://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html\n. For escape character handling, a difference from the LIKE behavior\nis that the escape character for JSON_SEARCH() must evaluate to a\nconstant at compile time, not just at execution time. For example, if\nJSON_SEARCH() is used in a prepared statement and the escape_char\nargument is supplied using a ? parameter, the parameter value might be\nconstant at execution time, but is not at compile time.\n\nsearch_str and path are always interpeted as utf8mb4 strings,\nregardless of their actual encoding. This is a known issue which is\nfixed in MySQL 8.0 ( Bug #32449181).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SET @j = \'[\"abc\", [{\"k\": \"10\"}, \"def\"], {\"x\":\"abc\"}, {\"y\":\"bcd\"}]\';\n\nmysql> SELECT JSON_SEARCH(@j, \'one\', \'abc\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'one\', \'abc\') |\n+-------------------------------+\n| \"$[0]\" |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'abc\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'all\', \'abc\') |\n+-------------------------------+\n| [\"$[0]\", \"$[2].x\"] |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'ghi\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'all\', \'ghi\') |\n+-------------------------------+\n| NULL |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\');\n+------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\') |\n+------------------------------+\n| \"$[1][0].k\" |\n+------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$\');\n+-----------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$\') |\n+-----------------------------------------+\n| \"$[1][0].k\" |\n+-----------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[*]\');\n+--------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[*]\') |\n+--------------------------------------------+\n| \"$[1][0].k\" |\n+--------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$**.k\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$**.k\') |\n+---------------------------------------------+\n| \"$[1][0].k\" |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[*][0].k\');\n+-------------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[*][0].k\') |\n+-------------------------------------------------+\n| \"$[1][0].k\" |\n+-------------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[1]\');\n+--------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[1]\') |\n+--------------------------------------------+\n| \"$[1][0].k\" |\n+--------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[1][0]\');\n+-----------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[1][0]\') |\n+-----------------------------------------------+\n| \"$[1][0].k\" |\n+-----------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'abc\', NULL, \'$[2]\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'abc\', NULL, \'$[2]\') |\n+---------------------------------------------+\n| \"$[2].x\" |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%a%\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%a%\') |\n+-------------------------------+\n| [\"$[0]\", \"$[2].x\"] |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\') |\n+-------------------------------+\n| [\"$[0]\", \"$[2].x\", \"$[3].y\"] |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[0]\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[0]\') |\n+---------------------------------------------+\n| \"$[0]\" |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[2]\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[2]\') |\n+---------------------------------------------+\n| \"$[2].x\" |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[1]\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[1]\') |\n+---------------------------------------------+\n| NULL |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', \'\', \'$[1]\');\n+-------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', \'\', \'$[1]\') |\n+-------------------------------------------+\n| NULL |\n+-------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', \'\', \'$[3]\');\n+-------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', \'\', \'$[3]\') |\n+-------------------------------------------+\n| \"$[3].y\" |\n+-------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(430,'JSON_APPEND',33,'Syntax:\nJSON_APPEND(json_doc, path, val[, path, val] ...)\n\nAppends values to the end of the indicated arrays within a JSON\ndocument and returns the result. This function was renamed to\nJSON_ARRAY_APPEND() in MySQL 5.7.9; the alias JSON_APPEND() is now\ndeprecated in MySQL 5.7, and is removed in MySQL 8.0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(431,'JSON_ARRAY_APPEND',33,'Syntax:\nJSON_ARRAY_APPEND(json_doc, path, val[, path, val] ...)\n\nAppends values to the end of the indicated arrays within a JSON\ndocument and returns the result. Returns NULL if any argument is NULL.\nAn error occurs if the json_doc argument is not a valid JSON document\nor any path argument is not a valid path expression or contains a * or\n** wildcard.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nIf a path selects a scalar or object value, that value is autowrapped\nwithin an array and the new value is added to that array. Pairs for\nwhich the path does not identify any value in the JSON document are\nignored.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'[\"a\", [\"b\", \"c\"], \"d\"]\';\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$[1]\', 1);\n+----------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$[1]\', 1) |\n+----------------------------------+\n| [\"a\", [\"b\", \"c\", 1], \"d\"] |\n+----------------------------------+\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$[0]\', 2);\n+----------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$[0]\', 2) |\n+----------------------------------+\n| [[\"a\", 2], [\"b\", \"c\"], \"d\"] |\n+----------------------------------+\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$[1][0]\', 3);\n+-------------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$[1][0]\', 3) |\n+-------------------------------------+\n| [\"a\", [[\"b\", 3], \"c\"], \"d\"] |\n+-------------------------------------+\n\nmysql> SET @j = \'{\"a\": 1, \"b\": [2, 3], \"c\": 4}\';\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$.b\', \'x\');\n+------------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$.b\', \'x\') |\n+------------------------------------+\n| {\"a\": 1, \"b\": [2, 3, \"x\"], \"c\": 4} |\n+------------------------------------+\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$.c\', \'y\');\n+--------------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$.c\', \'y\') |\n+--------------------------------------+\n| {\"a\": 1, \"b\": [2, 3], \"c\": [4, \"y\"]} |\n+--------------------------------------+\n\nmysql> SET @j = \'{\"a\": 1}\';\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$\', \'z\');\n+---------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$\', \'z\') |\n+---------------------------------+\n| [{\"a\": 1}, \"z\"] |\n+---------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(432,'JSON_ARRAY_INSERT',33,'Syntax:\nJSON_ARRAY_INSERT(json_doc, path, val[, path, val] ...)\n\nUpdates a JSON document, inserting into an array within the document\nand returning the modified document. Returns NULL if any argument is\nNULL. An error occurs if the json_doc argument is not a valid JSON\ndocument or any path argument is not a valid path expression or\ncontains a * or ** wildcard or does not end with an array element\nidentifier.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nPairs for which the path does not identify any array in the JSON\ndocument are ignored. If a path identifies an array element, the\ncorresponding value is inserted at that element position, shifting any\nfollowing values to the right. If a path identifies an array position\npast the end of an array, the value is inserted at the end of the\narray.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'[\"a\", {\"b\": [1, 2]}, [3, 4]]\';\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[1]\', \'x\');\n+------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[1]\', \'x\') |\n+------------------------------------+\n| [\"a\", \"x\", {\"b\": [1, 2]}, [3, 4]] |\n+------------------------------------+\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[100]\', \'x\');\n+--------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[100]\', \'x\') |\n+--------------------------------------+\n| [\"a\", {\"b\": [1, 2]}, [3, 4], \"x\"] |\n+--------------------------------------+\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[1].b[0]\', \'x\');\n+-----------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[1].b[0]\', \'x\') |\n+-----------------------------------------+\n| [\"a\", {\"b\": [\"x\", 1, 2]}, [3, 4]] |\n+-----------------------------------------+\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[2][1]\', \'y\');\n+---------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[2][1]\', \'y\') |\n+---------------------------------------+\n| [\"a\", {\"b\": [1, 2]}, [3, \"y\", 4]] |\n+---------------------------------------+\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[0]\', \'x\', \'$[2][1]\', \'y\');\n+----------------------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[0]\', \'x\', \'$[2][1]\', \'y\') |\n+----------------------------------------------------+\n| [\"x\", \"a\", {\"b\": [1, 2]}, [3, 4]] |\n+----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(433,'JSON_INSERT',33,'Syntax:\nJSON_INSERT(json_doc, path, val[, path, val] ...)\n\nInserts data into a JSON document and returns the result. Returns NULL\nif any argument is NULL. An error occurs if the json_doc argument is\nnot a valid JSON document or any path argument is not a valid path\nexpression or contains a * or ** wildcard.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nA path-value pair for an existing path in the document is ignored and\ndoes not overwrite the existing document value. A path-value pair for a\nnonexisting path in the document adds the value to the document if the\npath identifies one of these types of values:\n\no A member not present in an existing object. The member is added to\n the object and associated with the new value.\n\no A position past the end of an existing array. The array is extended\n with the new value. If the existing value is not an array, it is\n autowrapped as an array, then extended with the new value.\n\nOtherwise, a path-value pair for a nonexisting path in the document is\nignored and has no effect.\n\nFor a comparison of JSON_INSERT(), JSON_REPLACE(), and JSON_SET(), see\nthe discussion of JSON_SET().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'{ \"a\": 1, \"b\": [2, 3]}\';\nmysql> SELECT JSON_INSERT(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+----------------------------------------------------+\n| JSON_INSERT(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+----------------------------------------------------+\n| {\"a\": 1, \"b\": [2, 3], \"c\": \"[true, false]\"} |\n+----------------------------------------------------+\n\nmysql> SELECT JSON_INSERT(@j, \'$.a\', 10, \'$.c\', CAST(\'[true, false]\' AS JSON));\n+------------------------------------------------------------------+\n| JSON_INSERT(@j, \'$.a\', 10, \'$.c\', CAST(\'[true, false]\' AS JSON)) |\n+------------------------------------------------------------------+\n| {\"a\": 1, \"b\": [2, 3], \"c\": [true, false]} |\n+------------------------------------------------------------------+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(434,'JSON_MERGE',33,'Syntax:\nJSON_MERGE(json_doc, json_doc[, json_doc] ...)\n\nMerges two or more JSON documents. Synonym for JSON_MERGE_PRESERVE();\ndeprecated in MySQL 5.7.22 and subject to removal in a future release.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SELECT JSON_MERGE(\'[1, 2]\', \'[true, false]\');\n+---------------------------------------+\n| JSON_MERGE(\'[1, 2]\', \'[true, false]\') |\n+---------------------------------------+\n| [1, 2, true, false] |\n+---------------------------------------+\n1 row in set, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS\\G\n*************************** 1. row ***************************\n Level: Warning\n Code: 1287\nMessage: \'JSON_MERGE\' is deprecated and will be removed in a future release. \\\n Please use JSON_MERGE_PRESERVE/JSON_MERGE_PATCH instead\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(435,'JSON_MERGE_PATCH()',33,'Syntax:\nJSON_MERGE_PATCH(json_doc, json_doc[, json_doc] ...)\n\nPerforms an RFC 7396 (https://tools.ietf.org/html/rfc7396) compliant\nmerge of two or more JSON documents and returns the merged result,\nwithout preserving members having duplicate keys. Raises an error if at\nleast one of the documents passed as arguments to this function is not\nvalid.\n\n*Note*:\n\nFor an explanation and example of the differences between this function\nand JSON_MERGE_PRESERVE(), see\nhttps://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n#json-merge-patch-json-merge-preserve-compared.\n\nJSON_MERGE_PATCH() performs a merge as follows:\n\n1. If the first argument is not an object, the result of the merge is\n the same as if an empty object had been merged with the second\n argument.\n\n2. If the second argument is not an object, the result of the merge is\n the second argument.\n\n3. If both arguments are objects, the result of the merge is an object\n with the following members:\n\n o All members of the first object which do not have a corresponding\n member with the same key in the second object.\n\n o All members of the second object which do not have a corresponding\n key in the first object, and whose value is not the JSON null\n literal.\n\n o All members with a key that exists in both the first and the second\n object, and whose value in the second object is not the JSON null\n literal. The values of these members are the results of recursively\n merging the value in the first object with the value in the second\n object.\n\nFor additional information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/json.html#json-normalization.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SELECT JSON_MERGE_PATCH(\'[1, 2]\', \'[true, false]\');\n+---------------------------------------------+\n| JSON_MERGE_PATCH(\'[1, 2]\', \'[true, false]\') |\n+---------------------------------------------+\n| [true, false] |\n+---------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{\"name\": \"x\"}\', \'{\"id\": 47}\');\n+-------------------------------------------------+\n| JSON_MERGE_PATCH(\'{\"name\": \"x\"}\', \'{\"id\": 47}\') |\n+-------------------------------------------------+\n| {\"id\": 47, \"name\": \"x\"} |\n+-------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'1\', \'true\');\n+-------------------------------+\n| JSON_MERGE_PATCH(\'1\', \'true\') |\n+-------------------------------+\n| true |\n+-------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'[1, 2]\', \'{\"id\": 47}\');\n+------------------------------------------+\n| JSON_MERGE_PATCH(\'[1, 2]\', \'{\"id\": 47}\') |\n+------------------------------------------+\n| {\"id\": 47} |\n+------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{ \"a\": 1, \"b\":2 }\',\n > \'{ \"a\": 3, \"c\":4 }\');\n+-----------------------------------------------------------+\n| JSON_MERGE_PATCH(\'{ \"a\": 1, \"b\":2 }\',\'{ \"a\": 3, \"c\":4 }\') |\n+-----------------------------------------------------------+\n| {\"a\": 3, \"b\": 2, \"c\": 4} |\n+-----------------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{ \"a\": 1, \"b\":2 }\',\'{ \"a\": 3, \"c\":4 }\',\n > \'{ \"a\": 5, \"d\":6 }\');\n+-------------------------------------------------------------------------------+\n| JSON_MERGE_PATCH(\'{ \"a\": 1, \"b\":2 }\',\'{ \"a\": 3, \"c\":4 }\',\'{ \"a\": 5, \"d\":6 }\') |\n+-------------------------------------------------------------------------------+\n| {\"a\": 5, \"b\": 2, \"c\": 4, \"d\": 6} |\n+-------------------------------------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{\"a\":1, \"b\":2}\', \'{\"b\":null}\');\n+--------------------------------------------------+\n| JSON_MERGE_PATCH(\'{\"a\":1, \"b\":2}\', \'{\"b\":null}\') |\n+--------------------------------------------------+\n| {\"a\": 1} |\n+--------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{\"a\":{\"x\":1}}\', \'{\"a\":{\"y\":2}}\');\n+----------------------------------------------------+\n| JSON_MERGE_PATCH(\'{\"a\":{\"x\":1}}\', \'{\"a\":{\"y\":2}}\') |\n+----------------------------------------------------+\n| {\"a\": {\"x\": 1, \"y\": 2}} |\n+----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(436,'JSON_MERGE_PRESERVE()',33,'Syntax:\nJSON_MERGE_PRESERVE(json_doc, json_doc[, json_doc] ...)\n\nMerges two or more JSON documents and returns the merged result.\nReturns NULL if any argument is NULL. An error occurs if any argument\nis not a valid JSON document.\n\nMerging takes place according to the following rules. For additional\ninformation, see\nhttps://dev.mysql.com/doc/refman/5.7/en/json.html#json-normalization.\n\no Adjacent arrays are merged to a single array.\n\no Adjacent objects are merged to a single object.\n\no A scalar value is autowrapped as an array and merged as an array.\n\no An adjacent array and object are merged by autowrapping the object as\n an array and merging the two arrays.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SELECT JSON_MERGE_PRESERVE(\'[1, 2]\', \'[true, false]\');\n+------------------------------------------------+\n| JSON_MERGE_PRESERVE(\'[1, 2]\', \'[true, false]\') |\n+------------------------------------------------+\n| [1, 2, true, false] |\n+------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'{\"name\": \"x\"}\', \'{\"id\": 47}\');\n+----------------------------------------------------+\n| JSON_MERGE_PRESERVE(\'{\"name\": \"x\"}\', \'{\"id\": 47}\') |\n+----------------------------------------------------+\n| {\"id\": 47, \"name\": \"x\"} |\n+----------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'1\', \'true\');\n+----------------------------------+\n| JSON_MERGE_PRESERVE(\'1\', \'true\') |\n+----------------------------------+\n| [1, true] |\n+----------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'[1, 2]\', \'{\"id\": 47}\');\n+---------------------------------------------+\n| JSON_MERGE_PRESERVE(\'[1, 2]\', \'{\"id\": 47}\') |\n+---------------------------------------------+\n| [1, 2, {\"id\": 47}] |\n+---------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'{ \"a\": 1, \"b\": 2 }\',\n > \'{ \"a\": 3, \"c\": 4 }\');\n+--------------------------------------------------------------+\n| JSON_MERGE_PRESERVE(\'{ \"a\": 1, \"b\": 2 }\',\'{ \"a\": 3, \"c\":4 }\') |\n+--------------------------------------------------------------+\n| {\"a\": [1, 3], \"b\": 2, \"c\": 4} |\n+--------------------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'{ \"a\": 1, \"b\": 2 }\',\'{ \"a\": 3, \"c\": 4 }\',\n > \'{ \"a\": 5, \"d\": 6 }\');\n+----------------------------------------------------------------------------------+\n| JSON_MERGE_PRESERVE(\'{ \"a\": 1, \"b\": 2 }\',\'{ \"a\": 3, \"c\": 4 }\',\'{ \"a\": 5, \"d\": 6 }\') |\n+----------------------------------------------------------------------------------+\n| {\"a\": [1, 3, 5], \"b\": 2, \"c\": 4, \"d\": 6} |\n+----------------------------------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(437,'JSON_REMOVE',33,'Syntax:\nJSON_REMOVE(json_doc, path[, path] ...)\n\nRemoves data from a JSON document and returns the result. Returns NULL\nif any argument is NULL. An error occurs if the json_doc argument is\nnot a valid JSON document or any path argument is not a valid path\nexpression or is $ or contains a * or ** wildcard.\n\nThe path arguments are evaluated left to right. The document produced\nby evaluating one path becomes the new value against which the next\npath is evaluated.\n\nIt is not an error if the element to be removed does not exist in the\ndocument; in that case, the path does not affect the document.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'[\"a\", [\"b\", \"c\"], \"d\"]\';\nmysql> SELECT JSON_REMOVE(@j, \'$[1]\');\n+-------------------------+\n| JSON_REMOVE(@j, \'$[1]\') |\n+-------------------------+\n| [\"a\", \"d\"] |\n+-------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(438,'JSON_REPLACE',33,'Syntax:\nJSON_REPLACE(json_doc, path, val[, path, val] ...)\n\nReplaces existing values in a JSON document and returns the result.\nReturns NULL if any argument is NULL. An error occurs if the json_doc\nargument is not a valid JSON document or any path argument is not a\nvalid path expression or contains a * or ** wildcard.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nA path-value pair for an existing path in the document overwrites the\nexisting document value with the new value. A path-value pair for a\nnonexisting path in the document is ignored and has no effect.\n\nFor a comparison of JSON_INSERT(), JSON_REPLACE(), and JSON_SET(), see\nthe discussion of JSON_SET().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'{ \"a\": 1, \"b\": [2, 3]}\';\nmysql> SELECT JSON_REPLACE(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+-----------------------------------------------------+\n| JSON_REPLACE(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+-----------------------------------------------------+\n| {\"a\": 10, \"b\": [2, 3]} |\n+-----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(439,'JSON_SET',33,'Syntax:\nJSON_SET(json_doc, path, val[, path, val] ...)\n\nInserts or updates data in a JSON document and returns the result.\nReturns NULL if any argument is NULL or path, if given, does not locate\nan object. An error occurs if the json_doc argument is not a valid JSON\ndocument or any path argument is not a valid path expression or\ncontains a * or ** wildcard.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nA path-value pair for an existing path in the document overwrites the\nexisting document value with the new value. A path-value pair for a\nnonexisting path in the document adds the value to the document if the\npath identifies one of these types of values:\n\no A member not present in an existing object. The member is added to\n the object and associated with the new value.\n\no A position past the end of an existing array. The array is extended\n with the new value. If the existing value is not an array, it is\n autowrapped as an array, then extended with the new value.\n\nOtherwise, a path-value pair for a nonexisting path in the document is\nignored and has no effect.\n\nThe JSON_SET(), JSON_INSERT(), and JSON_REPLACE() functions are\nrelated:\n\no JSON_SET() replaces existing values and adds nonexisting values.\n\no JSON_INSERT() inserts values without replacing existing values.\n\no JSON_REPLACE() replaces only existing values.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'{ \"a\": 1, \"b\": [2, 3]}\';\nmysql> SELECT JSON_SET(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+-------------------------------------------------+\n| JSON_SET(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+-------------------------------------------------+\n| {\"a\": 10, \"b\": [2, 3], \"c\": \"[true, false]\"} |\n+-------------------------------------------------+\nmysql> SELECT JSON_INSERT(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+----------------------------------------------------+\n| JSON_INSERT(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+----------------------------------------------------+\n| {\"a\": 1, \"b\": [2, 3], \"c\": \"[true, false]\"} |\n+----------------------------------------------------+\nmysql> SELECT JSON_REPLACE(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+-----------------------------------------------------+\n| JSON_REPLACE(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+-----------------------------------------------------+\n| {\"a\": 10, \"b\": [2, 3]} |\n+-----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(440,'JSON_UNQUOTE',33,'Syntax:\nJSON_UNQUOTE(json_val)\n\nUnquotes JSON value and returns the result as a utf8mb4 string. Returns\nNULL if the argument is NULL. An error occurs if the value starts and\nends with double quotes but is not a valid JSON string literal.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'\"abc\"\';\nmysql> SELECT @j, JSON_UNQUOTE(@j);\n+-------+------------------+\n| @j | JSON_UNQUOTE(@j) |\n+-------+------------------+\n| \"abc\" | abc |\n+-------+------------------+\nmysql> SET @j = \'[1, 2, 3]\';\nmysql> SELECT @j, JSON_UNQUOTE(@j);\n+-----------+------------------+\n| @j | JSON_UNQUOTE(@j) |\n+-----------+------------------+\n| [1, 2, 3] | [1, 2, 3] |\n+-----------+------------------+\n\nmysql> SELECT @@sql_mode;\n+------------+\n| @@sql_mode |\n+------------+\n| |\n+------------+\n\nmysql> SELECT JSON_UNQUOTE(\'\"\\\\t\\\\u0032\"\');\n+------------------------------+\n| JSON_UNQUOTE(\'\"\\\\t\\\\u0032\"\') |\n+------------------------------+\n| 2 |\n+------------------------------+\n\nmysql> SET @@sql_mode = \'NO_BACKSLASH_ESCAPES\';\nmysql> SELECT JSON_UNQUOTE(\'\"\\\\t\\\\u0032\"\');\n+------------------------------+\n| JSON_UNQUOTE(\'\"\\\\t\\\\u0032\"\') |\n+------------------------------+\n| \\t\\u0032 |\n+------------------------------+\n\nmysql> SELECT JSON_UNQUOTE(\'\"\\t\\u0032\"\');\n+----------------------------+\n| JSON_UNQUOTE(\'\"\\t\\u0032\"\') |\n+----------------------------+\n| 2 |\n+----------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(441,'JSON_DEPTH',33,'Syntax:\nJSON_DEPTH(json_doc)\n\nReturns the maximum depth of a JSON document. Returns NULL if the\nargument is NULL. An error occurs if the argument is not a valid JSON\ndocument.\n\nAn empty array, empty object, or scalar value has depth 1. A nonempty\narray containing only elements of depth 1 or nonempty object containing\nonly member values of depth 1 has depth 2. Otherwise, a JSON document\nhas depth greater than 2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','mysql> SELECT JSON_DEPTH(\'{}\'), JSON_DEPTH(\'[]\'), JSON_DEPTH(\'true\');\n+------------------+------------------+--------------------+\n| JSON_DEPTH(\'{}\') | JSON_DEPTH(\'[]\') | JSON_DEPTH(\'true\') |\n+------------------+------------------+--------------------+\n| 1 | 1 | 1 |\n+------------------+------------------+--------------------+\nmysql> SELECT JSON_DEPTH(\'[10, 20]\'), JSON_DEPTH(\'[[], {}]\');\n+------------------------+------------------------+\n| JSON_DEPTH(\'[10, 20]\') | JSON_DEPTH(\'[[], {}]\') |\n+------------------------+------------------------+\n| 2 | 2 |\n+------------------------+------------------------+\nmysql> SELECT JSON_DEPTH(\'[10, {\"a\": 20}]\');\n+-------------------------------+\n| JSON_DEPTH(\'[10, {\"a\": 20}]\') |\n+-------------------------------+\n| 3 |\n+-------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'),(442,'JSON_LENGTH',33,'Syntax:\nJSON_LENGTH(json_doc[, path])\n\nReturns the length of a JSON document, or, if a path argument is given,\nthe length of the value within the document identified by the path.\nReturns NULL if any argument is NULL or the path argument does not\nidentify a value in the document. An error occurs if the json_doc\nargument is not a valid JSON document or the path argument is not a\nvalid path expression or contains a * or ** wildcard.\n\nThe length of a document is determined as follows:\n\no The length of a scalar is 1.\n\no The length of an array is the number of array elements.\n\no The length of an object is the number of object members.\n\no The length does not count the length of nested arrays or objects.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','mysql> SELECT JSON_LENGTH(\'[1, 2, {\"a\": 3}]\');\n+---------------------------------+\n| JSON_LENGTH(\'[1, 2, {\"a\": 3}]\') |\n+---------------------------------+\n| 3 |\n+---------------------------------+\nmysql> SELECT JSON_LENGTH(\'{\"a\": 1, \"b\": {\"c\": 30}}\');\n+-----------------------------------------+\n| JSON_LENGTH(\'{\"a\": 1, \"b\": {\"c\": 30}}\') |\n+-----------------------------------------+\n| 2 |\n+-----------------------------------------+\nmysql> SELECT JSON_LENGTH(\'{\"a\": 1, \"b\": {\"c\": 30}}\', \'$.b\');\n+------------------------------------------------+\n| JSON_LENGTH(\'{\"a\": 1, \"b\": {\"c\": 30}}\', \'$.b\') |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'),(443,'JSON_TYPE',33,'Syntax:\nJSON_TYPE(json_val)\n\nReturns a utf8mb4 string indicating the type of a JSON value. This can\nbe an object, an array, or a scalar type, as shown here:\n\nmysql> SET @j = \'{\"a\": [10, true]}\';\nmysql> SELECT JSON_TYPE(@j);\n+---------------+\n| JSON_TYPE(@j) |\n+---------------+\n| OBJECT |\n+---------------+\nmysql> SELECT JSON_TYPE(JSON_EXTRACT(@j, \'$.a\'));\n+------------------------------------+\n| JSON_TYPE(JSON_EXTRACT(@j, \'$.a\')) |\n+------------------------------------+\n| ARRAY |\n+------------------------------------+\nmysql> SELECT JSON_TYPE(JSON_EXTRACT(@j, \'$.a[0]\'));\n+---------------------------------------+\n| JSON_TYPE(JSON_EXTRACT(@j, \'$.a[0]\')) |\n+---------------------------------------+\n| INTEGER |\n+---------------------------------------+\nmysql> SELECT JSON_TYPE(JSON_EXTRACT(@j, \'$.a[1]\'));\n+---------------------------------------+\n| JSON_TYPE(JSON_EXTRACT(@j, \'$.a[1]\')) |\n+---------------------------------------+\n| BOOLEAN |\n+---------------------------------------+\n\nJSON_TYPE() returns NULL if the argument is NULL:\n\nmysql> SELECT JSON_TYPE(NULL);\n+-----------------+\n| JSON_TYPE(NULL) |\n+-----------------+\n| NULL |\n+-----------------+\n\nAn error occurs if the argument is not a valid JSON value:\n\nmysql> SELECT JSON_TYPE(1);\nERROR 3146 (22032): Invalid data type for JSON data in argument 1\nto function json_type; a JSON string or JSON type is required.\n\nFor a non-NULL, non-error result, the following list describes the\npossible JSON_TYPE() return values:\n\no Purely JSON types:\n\n o OBJECT: JSON objects\n\n o ARRAY: JSON arrays\n\n o BOOLEAN: The JSON true and false literals\n\n o NULL: The JSON null literal\n\no Numeric types:\n\n o INTEGER: MySQL TINYINT, SMALLINT, MEDIUMINT and INT and BIGINT\n scalars\n\n o DOUBLE: MySQL DOUBLE FLOAT scalars\n\n o DECIMAL: MySQL DECIMAL and NUMERIC scalars\n\no Temporal types:\n\n o DATETIME: MySQL DATETIME and TIMESTAMP scalars\n\n o DATE: MySQL DATE scalars\n\n o TIME: MySQL TIME scalars\n\no String types:\n\n o STRING: MySQL utf8 character type scalars: CHAR, VARCHAR, TEXT,\n ENUM, and SET\n\no Binary types:\n\n o BLOB: MySQL binary type scalars: BINARY, VARBINARY, BLOB\n\n o BIT: MySQL BIT scalars\n\no All other types:\n\n o OPAQUE (raw bits)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'),(444,'JSON_VALID',33,'Syntax:\nJSON_VALID(val)\n\nReturns 0 or 1 to indicate whether a value is valid JSON. Returns NULL\nif the argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','mysql> SELECT JSON_VALID(\'{\"a\": 1}\');\n+------------------------+\n| JSON_VALID(\'{\"a\": 1}\') |\n+------------------------+\n| 1 |\n+------------------------+\nmysql> SELECT JSON_VALID(\'hello\'), JSON_VALID(\'\"hello\"\');\n+---------------------+-----------------------+\n| JSON_VALID(\'hello\') | JSON_VALID(\'\"hello\"\') |\n+---------------------+-----------------------+\n| 0 | 1 |\n+---------------------+-----------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'),(445,'JSON_PRETTY',33,'JSON_PRETTY(json_val)\n\nProvides pretty-printing of JSON values similar to that implemented in\nPHP and by other languages and database systems. The value supplied\nmust be a JSON value or a valid string representation of a JSON value.\nExtraneous whitespaces and newlines present in this value have no\neffect on the output. For a NULL value, the function returns NULL. If\nthe value is not a JSON document, or if it cannot be parsed as one, the\nfunction fails with an error.\n\nFormatting of the output from this function adheres to the following\nrules:\n\no Each array element or object member appears on a separate line,\n indented by one additional level as compared to its parent.\n\no Each level of indentation adds two leading spaces.\n\no A comma separating individual array elements or object members is\n printed before the newline that separates the two elements or\n members.\n\no The key and the value of an object member are separated by a colon\n followed by a space (\': \').\n\no An empty object or array is printed on a single line. No space is\n printed between the opening and closing brace.\n\no Special characters in string scalars and key names are escaped\n employing the same rules used by the JSON_QUOTE() function.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-utility-functions.html\n\n','mysql> SELECT JSON_PRETTY(\'123\'); # scalar\n+--------------------+\n| JSON_PRETTY(\'123\') |\n+--------------------+\n| 123 |\n+--------------------+\n\nmysql> SELECT JSON_PRETTY(\"[1,3,5]\"); # array\n+------------------------+\n| JSON_PRETTY(\"[1,3,5]\") |\n+------------------------+\n| [\n 1,\n 3,\n 5\n] |\n+------------------------+\n\nmysql> SELECT JSON_PRETTY(\'{\"a\":\"10\",\"b\":\"15\",\"x\":\"25\"}\'); # object\n+---------------------------------------------+\n| JSON_PRETTY(\'{\"a\":\"10\",\"b\":\"15\",\"x\":\"25\"}\') |\n+---------------------------------------------+\n| {\n \"a\": \"10\",\n \"b\": \"15\",\n \"x\": \"25\"\n} |\n+---------------------------------------------+\n\nmysql> SELECT JSON_PRETTY(\'[\"a\",1,{\"key1\":\n > \"value1\"},\"5\", \"77\" ,\n > {\"key2\":[\"value3\",\"valueX\",\n > \"valueY\"]},\"j\", \"2\" ]\')\\G # nested arrays and objects\n*************************** 1. row ***************************\nJSON_PRETTY(\'[\"a\",1,{\"key1\":\n \"value1\"},\"5\", \"77\" ,\n {\"key2\":[\"value3\",\"valuex\",\n \"valuey\"]},\"j\", \"2\" ]\'): [\n \"a\",\n 1,\n {\n \"key1\": \"value1\"\n },\n \"5\",\n \"77\",\n {\n \"key2\": [\n \"value3\",\n \"valuex\",\n \"valuey\"\n ]\n },\n \"j\",\n \"2\"\n]\n','https://dev.mysql.com/doc/refman/5.7/en/json-utility-functions.html'),(446,'JSON_STORAGE_SIZE',33,'JSON_STORAGE_SIZE(json_val)\n\nThis function returns the number of bytes used to store the binary\nrepresentation of a JSON document. When the argument is a JSON column,\nthis is the space used to store the JSON document. json_val must be a\nvalid JSON document or a string which can be parsed as one. In the case\nwhere it is string, the function returns the amount of storage space in\nthe JSON binary representation that is created by parsing the string as\nJSON and converting it to binary. It returns NULL if the argument is\nNULL.\n\nAn error results when json_val is not NULL, and is not---or cannot be\nsuccessfully parsed as---a JSON document.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-utility-functions.html\n\n','mysql> CREATE TABLE jtable (jcol JSON);\nQuery OK, 0 rows affected (0.42 sec)\n\nmysql> INSERT INTO jtable VALUES\n -> (\'{\"a\": 1000, \"b\": \"wxyz\", \"c\": \"[1, 3, 5, 7]\"}\');\nQuery OK, 1 row affected (0.04 sec)\n\nmysql> SELECT\n -> jcol,\n -> JSON_STORAGE_SIZE(jcol) AS Size\n -> FROM jtable;\n+-----------------------------------------------+------+\n| jcol | Size |\n+-----------------------------------------------+------+\n| {\"a\": 1000, \"b\": \"wxyz\", \"c\": \"[1, 3, 5, 7]\"} | 47 |\n+-----------------------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> UPDATE jtable\nmysql> SET jcol = \'{\"a\": 4.55, \"b\": \"wxyz\", \"c\": \"[true, false]\"}\';\nQuery OK, 1 row affected (0.04 sec)\nRows matched: 1 Changed: 1 Warnings: 0\n\nmysql> SELECT\n -> jcol,\n -> JSON_STORAGE_SIZE(jcol) AS Size\n -> FROM jtable;\n+------------------------------------------------+------+\n| jcol | Size |\n+------------------------------------------------+------+\n| {\"a\": 4.55, \"b\": \"wxyz\", \"c\": \"[true, false]\"} | 56 |\n+------------------------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> SET @j = \'[100, \"sakila\", [1, 3, 5], 425.05]\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @j, JSON_STORAGE_SIZE(@j) AS Size;\n+------------------------------------+------+\n| @j | Size |\n+------------------------------------+------+\n| [100, \"sakila\", [1, 3, 5], 425.05] | 45 |\n+------------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> SET @j = JSON_SET(@j, \'$[1]\', \"json\");\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @j, JSON_STORAGE_SIZE(@j) AS Size;\n+----------------------------------+------+\n| @j | Size |\n+----------------------------------+------+\n| [100, \"json\", [1, 3, 5], 425.05] | 43 |\n+----------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> SET @j = JSON_SET(@j, \'$[2][0]\', JSON_ARRAY(10, 20, 30));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @j, JSON_STORAGE_SIZE(@j) AS Size;\n+---------------------------------------------+------+\n| @j | Size |\n+---------------------------------------------+------+\n| [100, \"json\", [[10, 20, 30], 3, 5], 425.05] | 56 |\n+---------------------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> SELECT\n -> JSON_STORAGE_SIZE(\'[100, \"sakila\", [1, 3, 5], 425.05]\') AS A,\n -> JSON_STORAGE_SIZE(\'{\"a\": 1000, \"b\": \"a\", \"c\": \"[1, 3, 5, 7]\"}\') AS B,\n -> JSON_STORAGE_SIZE(\'{\"a\": 1000, \"b\": \"wxyz\", \"c\": \"[1, 3, 5, 7]\"}\') AS C,\n -> JSON_STORAGE_SIZE(\'[100, \"json\", [[10, 20, 30], 3, 5], 425.05]\') AS D;\n+----+----+----+----+\n| A | B | C | D |\n+----+----+----+----+\n| 45 | 44 | 47 | 56 |\n+----+----+----+----+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-utility-functions.html'),(447,'GTID_SUBSET',34,'Syntax:\nGTID_SUBSET(set1,set2)\n\nGiven two sets of global transaction identifiers set1 and set2, returns\ntrue if all GTIDs in set1 are also in set2. Returns false otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html\n\n','mysql> SELECT GTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\')\\G\n*************************** 1. row ***************************\nGTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\'): 1\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-25\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\')\\G\n*************************** 1. row ***************************\nGTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-25\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\'): 1\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\')\\G\n*************************** 1. row ***************************\nGTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\'): 0\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'),(448,'GTID_SUBTRACT',34,'Syntax:\nGTID_SUBTRACT(set1,set2)\n\nGiven two sets of global transaction identifiers set1 and set2, returns\nonly those GTIDs from set1 that are not in set2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html\n\n','mysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:22-57\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:26-57\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-24\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-24\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:21-22:25-57\n1 row in set (0.01 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'),(449,'WAIT_FOR_EXECUTED_GTID_SET',34,'Syntax:\nWAIT_FOR_EXECUTED_GTID_SET(gtid_set[, timeout])\n\nWait until the server has applied all of the transactions whose global\ntransaction identifiers are contained in gtid_set; that is, until the\ncondition GTID_SUBSET(gtid_subset, @@GLOBAL.gtid_executed) holds. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-concepts.html\nfor a definition of GTID sets.\n\nIf a timeout is specified, and timeout seconds elapse before all of the\ntransactions in the GTID set have been applied, the function stops\nwaiting. timeout is optional, and the default timeout is 0 seconds, in\nwhich case the function always waits until all of the transactions in\nthe GTID set have been applied.\n\nWAIT_FOR_EXECUTED_GTID_SET() monitors all the GTIDs that are applied on\nthe server, including transactions that arrive from all replication\nchannels and user clients. It does not take into account whether\nreplication channels have been started or stopped.\n\nFor more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html\n\n','mysql> SELECT WAIT_FOR_EXECUTED_GTID_SET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:1-5\');\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'),(450,'WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS',34,'Syntax:\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(gtid_set[, timeout][,channel])\n\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() is similar to\nWAIT_FOR_EXECUTED_GTID_SET() in that it waits until all of the\ntransactions whose global transaction identifiers are contained in\ngtid_set have been applied, or until timeout seconds have elapsed,\nwhichever occurs first. However, WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS()\napplies to a specific replication channel, and stops only after the\ntransactions have been applied on the specified channel, for which the\napplier must be running. In contrast, WAIT_FOR_EXECUTED_GTID_SET()\nstops after the transactions have been applied, regardless of where\nthey were applied (on any replication channel or any user client), and\nwhether or not any replication channels are running.\n\nThe channel option names which replication channel the function applies\nto. If no channel is named and no channels other than the default\nreplication channel exist, the function applies to the default\nreplication channel. If multiple replication channels exist, you must\nspecify a channel as otherwise it is not known which replication\nchannel the function applies to. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information on replication channels.\n\n*Note*:\n\nBecause WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() applies to a specific\nreplication channel, if an expected transaction arrives on a different\nreplication channel or from a user client, for example in a failover or\nmanual recovery situation, the function can hang indefinitely if no\ntimeout is set. Use WAIT_FOR_EXECUTED_GTID_SET() instead to ensure\ncorrect handling of transactions in these situations.\n\nGTID sets used with WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() are represented\nas strings and must be quoted in the same way as for\nWAIT_FOR_EXECUTED_GTID_SET(). For WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(),\nthe return value for the function is an arbitrary positive number. If\nGTID-based replication is not active (that is, if the value of the\ngtid_mode variable is OFF), then this value is undefined and\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() returns NULL. If the replica is not\nrunning then the function also returns NULL.\n\ngtid_mode cannot be changed to OFF while any client is using this\nfunction to wait for GTIDs to be applied.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'),(451,'AVG',35,'Syntax:\nAVG([DISTINCT] expr)\n\nReturns the average value of expr. The DISTINCT option can be used to\nreturn the average of the distinct values of expr.\n\nIf there are no matching rows, AVG() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT student_name, AVG(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(452,'BIT_AND',35,'Syntax:\nBIT_AND(expr)\n\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nIf there are no matching rows, BIT_AND() returns a neutral value (all\nbits set to 1).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(453,'BIT_OR',35,'Syntax:\nBIT_OR(expr)\n\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nIf there are no matching rows, BIT_OR() returns a neutral value (all\nbits set to 0).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(454,'BIT_XOR',35,'Syntax:\nBIT_XOR(expr)\n\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nIf there are no matching rows, BIT_XOR() returns a neutral value (all\nbits set to 0).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(455,'COUNT',35,'Syntax:\nCOUNT(expr)\n\nReturns a count of the number of non-NULL values of expr in the rows\nretrieved by a SELECT statement. The result is a BIGINT value.\n\nIf there are no matching rows, COUNT() returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT student.student_name,COUNT(*)\n FROM student,course\n WHERE student.student_id=course.student_id\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(456,'COUNT DISTINCT',35,'Syntax:\nCOUNT(DISTINCT expr,[expr...])\n\nReturns a count of the number of rows with different non-NULL expr\nvalues.\n\nIf there are no matching rows, COUNT(DISTINCT) returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT COUNT(DISTINCT results) FROM student;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(457,'GROUP_CONCAT',35,'Syntax:\nGROUP_CONCAT(expr)\n\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL values.\nThe full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT student_name,\n GROUP_CONCAT(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(458,'JSON_ARRAYAGG',35,'Syntax:\nJSON_ARRAYAGG(col_or_expr)\n\nAggregates a result set as a single JSON array whose elements consist\nof the rows. The order of elements in this array is undefined. The\nfunction acts on a column or an expression that evaluates to a single\nvalue. Returns NULL if the result contains no rows, or in the event of\nan error.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT o_id, attribute, value FROM t3;\n+------+-----------+-------+\n| o_id | attribute | value |\n+------+-----------+-------+\n| 2 | color | red |\n| 2 | fabric | silk |\n| 3 | color | green |\n| 3 | shape | square|\n+------+-----------+-------+\n4 rows in set (0.00 sec)\n\nmysql> SELECT o_id, JSON_ARRAYAGG(attribute) AS attributes\n -> FROM t3 GROUP BY o_id;\n+------+---------------------+\n| o_id | attributes |\n+------+---------------------+\n| 2 | [\"color\", \"fabric\"] |\n| 3 | [\"color\", \"shape\"] |\n+------+---------------------+\n2 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(459,'JSON_OBJECTAGG',35,'Syntax:\nJSON_OBJECTAGG(key, value)\n\nTakes two column names or expressions as arguments, the first of these\nbeing used as a key and the second as a value, and returns a JSON\nobject containing key-value pairs. Returns NULL if the result contains\nno rows, or in the event of an error. An error occurs if any key name\nis NULL or the number of arguments is not equal to 2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT o_id, attribute, value FROM t3;\n+------+-----------+-------+\n| o_id | attribute | value |\n+------+-----------+-------+\n| 2 | color | red |\n| 2 | fabric | silk |\n| 3 | color | green |\n| 3 | shape | square|\n+------+-----------+-------+\n4 rows in set (0.00 sec)\n\nmysql> SELECT o_id, JSON_OBJECTAGG(attribute, value)\n -> FROM t3 GROUP BY o_id;\n+------+---------------------------------------+\n| o_id | JSON_OBJECTAGG(attribute, value) |\n+------+---------------------------------------+\n| 2 | {\"color\": \"red\", \"fabric\": \"silk\"} |\n| 3 | {\"color\": \"green\", \"shape\": \"square\"} |\n+------+---------------------------------------+\n2 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(460,'MAX',35,'Syntax:\nMAX([DISTINCT] expr)\n\nReturns the maximum value of expr. MAX() may take a string argument; in\nsuch cases, it returns the maximum string value. See\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-indexes.html. The\nDISTINCT keyword can be used to find the maximum of the distinct values\nof expr, however, this produces the same result as omitting DISTINCT.\n\nIf there are no matching rows, MAX() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(461,'MIN',35,'Syntax:\nMIN([DISTINCT] expr)\n\nReturns the minimum value of expr. MIN() may take a string argument; in\nsuch cases, it returns the minimum string value. See\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-indexes.html. The\nDISTINCT keyword can be used to find the minimum of the distinct values\nof expr, however, this produces the same result as omitting DISTINCT.\n\nIf there are no matching rows, MIN() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(462,'STD',35,'Syntax:\nSTD(expr)\n\nReturns the population standard deviation of expr. STD() is a synonym\nfor the standard SQL function STDDEV_POP(), provided as a MySQL\nextension.\n\nIf there are no matching rows, STD() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(463,'STDDEV',35,'Syntax:\nSTDDEV(expr)\n\nReturns the population standard deviation of expr. STDDEV() is a\nsynonym for the standard SQL function STDDEV_POP(), provided for\ncompatibility with Oracle.\n\nIf there are no matching rows, STDDEV() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(464,'STDDEV_POP',35,'Syntax:\nSTDDEV_POP(expr)\n\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). You can also use STD() or STDDEV(), which are equivalent\nbut not standard SQL.\n\nIf there are no matching rows, STDDEV_POP() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(465,'STDDEV_SAMP',35,'Syntax:\nSTDDEV_SAMP(expr)\n\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP().\n\nIf there are no matching rows, STDDEV_SAMP() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(466,'SUM',35,'Syntax:\nSUM([DISTINCT] expr)\n\nReturns the sum of expr. If the return set has no rows, SUM() returns\nNULL. The DISTINCT keyword can be used to sum only the distinct values\nof expr.\n\nIf there are no matching rows, SUM() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(467,'VAR_POP',35,'Syntax:\nVAR_POP(expr)\n\nReturns the population standard variance of expr. It considers rows as\nthe whole population, not as a sample, so it has the number of rows as\nthe denominator. You can also use VARIANCE(), which is equivalent but\nis not standard SQL.\n\nIf there are no matching rows, VAR_POP() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(468,'VAR_SAMP',35,'Syntax:\nVAR_SAMP(expr)\n\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one.\n\nIf there are no matching rows, VAR_SAMP() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(469,'VARIANCE',35,'Syntax:\nVARIANCE(expr)\n\nReturns the population standard variance of expr. VARIANCE() is a\nsynonym for the standard SQL function VAR_POP(), provided as a MySQL\nextension.\n\nIf there are no matching rows, VARIANCE() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(470,'ANY_VALUE',37,'ANY_VALUE(arg)\n\nThis function is useful for GROUP BY queries when the\nONLY_FULL_GROUP_BY SQL mode is enabled, for cases when MySQL rejects a\nquery that you know is valid for reasons that MySQL cannot determine.\nThe function return value and type are the same as the return value and\ntype of its argument, but the function result is not checked for the\nONLY_FULL_GROUP_BY SQL mode.\n\nFor example, if name is a nonindexed column, the following query fails\nwith ONLY_FULL_GROUP_BY enabled:\n\nmysql> SELECT name, address, MAX(age) FROM t GROUP BY name;\nERROR 1055 (42000): Expression #2 of SELECT list is not in GROUP\nBY clause and contains nonaggregated column \'mydb.t.address\' which\nis not functionally dependent on columns in GROUP BY clause; this\nis incompatible with sql_mode=only_full_group_by\n\nThe failure occurs because address is a nonaggregated column that is\nneither named among GROUP BY columns nor functionally dependent on\nthem. As a result, the address value for rows within each name group is\nnondeterministic. There are multiple ways to cause MySQL to accept the\nquery:\n\no Alter the table to make name a primary key or a unique NOT NULL\n column. This enables MySQL to determine that address is functionally\n dependent on name; that is, address is uniquely determined by name.\n (This technique is inapplicable if NULL must be permitted as a valid\n name value.)\n\no Use ANY_VALUE() to refer to address:\n\nSELECT name, ANY_VALUE(address), MAX(age) FROM t GROUP BY name;\n\n In this case, MySQL ignores the nondeterminism of address values\n within each name group and accepts the query. This may be useful if\n you simply do not care which value of a nonaggregated column is\n chosen for each group. ANY_VALUE() is not an aggregate function,\n unlike functions such as SUM() or COUNT(). It simply acts to suppress\n the test for nondeterminism.\n\no Disable ONLY_FULL_GROUP_BY. This is equivalent to using ANY_VALUE()\n with ONLY_FULL_GROUP_BY enabled, as described in the previous item.\n\nANY_VALUE() is also useful if functional dependence exists between\ncolumns but MySQL cannot determine it. The following query is valid\nbecause age is functionally dependent on the grouping column age-1, but\nMySQL cannot tell that and rejects the query with ONLY_FULL_GROUP_BY\nenabled:\n\nSELECT age FROM t GROUP BY age-1;\n\nTo cause MySQL to accept the query, use ANY_VALUE():\n\nSELECT ANY_VALUE(age) FROM t GROUP BY age-1;\n\nANY_VALUE() can be used for queries that refer to aggregate functions\nin the absence of a GROUP BY clause:\n\nmysql> SELECT name, MAX(age) FROM t;\nERROR 1140 (42000): In aggregated query without GROUP BY, expression\n#1 of SELECT list contains nonaggregated column \'mydb.t.name\'; this\nis incompatible with sql_mode=only_full_group_by\n\nWithout GROUP BY, there is a single group and it is nondeterministic\nwhich name value to choose for the group. ANY_VALUE() tells MySQL to\naccept the query:\n\nSELECT ANY_VALUE(name), MAX(age) FROM t;\n\nIt may be that, due to some property of a given data set, you know that\na selected nonaggregated column is effectively functionally dependent\non a GROUP BY column. For example, an application may enforce\nuniqueness of one column with respect to another. In this case, using\nANY_VALUE() for the effectively functionally dependent column may make\nsense.\n\nFor additional discussion, see\nhttps://dev.mysql.com/doc/refman/5.7/en/group-by-handling.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(471,'DEFAULT',37,'Syntax:\nDEFAULT(col_name)\n\nReturns the default value for a table column. An error results if the\ncolumn has no default value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(472,'INET_ATON',37,'Syntax:\nINET_ATON(expr)\n\nGiven the dotted-quad representation of an IPv4 network address as a\nstring, returns an integer that represents the numeric value of the\naddress in network byte order (big endian). INET_ATON() returns NULL if\nit does not understand its argument.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_ATON(\'10.0.5.9\');\n -> 167773449\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(473,'INET_NTOA',37,'Syntax:\nINET_NTOA(expr)\n\nGiven a numeric IPv4 network address in network byte order, returns the\ndotted-quad string representation of the address as a string in the\nconnection character set. INET_NTOA() returns NULL if it does not\nunderstand its argument.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_NTOA(167773449);\n -> \'10.0.5.9\'\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(474,'INET6_ATON',37,'Syntax:\nINET6_ATON(expr)\n\nGiven an IPv6 or IPv4 network address as a string, returns a binary\nstring that represents the numeric value of the address in network byte\norder (big endian). Because numeric-format IPv6 addresses require more\nbytes than the largest integer type, the representation returned by\nthis function has the VARBINARY data type: VARBINARY(16) for IPv6\naddresses and VARBINARY(4) for IPv4 addresses. If the argument is not a\nvalid address, INET6_ATON() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT HEX(INET6_ATON(\'fdfe::5a55:caff:fefa:9089\'));\n -> \'FDFE0000000000005A55CAFFFEFA9089\'\nmysql> SELECT HEX(INET6_ATON(\'10.0.5.9\'));\n -> \'0A000509\'\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(475,'INET6_NTOA',37,'Syntax:\nINET6_NTOA(expr)\n\nGiven an IPv6 or IPv4 network address represented in numeric form as a\nbinary string, returns the string representation of the address as a\nstring in the connection character set. If the argument is not a valid\naddress, INET6_NTOA() returns NULL.\n\nINET6_NTOA() has these properties:\n\no It does not use operating system functions to perform conversions,\n thus the output string is platform independent.\n\no The return string has a maximum length of 39 (4 x 8 + 7). Given this\n statement:\n\nCREATE TABLE t AS SELECT INET6_NTOA(expr) AS c1;\n\n The resulting table would have this definition:\n\nCREATE TABLE t (c1 VARCHAR(39) CHARACTER SET utf8 DEFAULT NULL);\n\no The return string uses lowercase letters for IPv6 addresses.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT INET6_NTOA(INET6_ATON(\'fdfe::5a55:caff:fefa:9089\'));\n -> \'fdfe::5a55:caff:fefa:9089\'\nmysql> SELECT INET6_NTOA(INET6_ATON(\'10.0.5.9\'));\n -> \'10.0.5.9\'\n\nmysql> SELECT INET6_NTOA(UNHEX(\'FDFE0000000000005A55CAFFFEFA9089\'));\n -> \'fdfe::5a55:caff:fefa:9089\'\nmysql> SELECT INET6_NTOA(UNHEX(\'0A000509\'));\n -> \'10.0.5.9\'\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(476,'IS_IPV4',37,'Syntax:\nIS_IPV4(expr)\n\nReturns 1 if the argument is a valid IPv4 address specified as a\nstring, 0 otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4(\'10.0.5.9\'), IS_IPV4(\'10.0.5.256\');\n -> 1, 0\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(477,'IS_IPV4_COMPAT',37,'Syntax:\nIS_IPV4_COMPAT(expr)\n\nThis function takes an IPv6 address represented in numeric form as a\nbinary string, as returned by INET6_ATON(). It returns 1 if the\nargument is a valid IPv4-compatible IPv6 address, 0 otherwise.\nIPv4-compatible addresses have the form ::ipv4_address.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4_COMPAT(INET6_ATON(\'::10.0.5.9\'));\n -> 1\nmysql> SELECT IS_IPV4_COMPAT(INET6_ATON(\'::ffff:10.0.5.9\'));\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(478,'IS_IPV4_MAPPED',37,'Syntax:\nIS_IPV4_MAPPED(expr)\n\nThis function takes an IPv6 address represented in numeric form as a\nbinary string, as returned by INET6_ATON(). It returns 1 if the\nargument is a valid IPv4-mapped IPv6 address, 0 otherwise. IPv4-mapped\naddresses have the form ::ffff:ipv4_address.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4_MAPPED(INET6_ATON(\'::10.0.5.9\'));\n -> 0\nmysql> SELECT IS_IPV4_MAPPED(INET6_ATON(\'::ffff:10.0.5.9\'));\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(479,'IS_IPV6',37,'Syntax:\nIS_IPV6(expr)\n\nReturns 1 if the argument is a valid IPv6 address specified as a\nstring, 0 otherwise. This function does not consider IPv4 addresses to\nbe valid IPv6 addresses.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV6(\'10.0.5.9\'), IS_IPV6(\'::1\');\n -> 0, 1\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(480,'MASTER_POS_WAIT',37,'Syntax:\nMASTER_POS_WAIT(log_name,log_pos[,timeout][,channel])\n\nThis function is useful for control of source/replica synchronization.\nIt blocks until the replica has read and applied all updates up to the\nspecified position in the source log. The return value is the number of\nlog events the replica had to wait for to advance to the specified\nposition. The function returns NULL if the replica SQL thread is not\nstarted, the replica\'s source information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the replica SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL. If the replica\nis past the specified position, the function returns immediately.\n\nOn a multithreaded replica, the function waits until expiry of the\nlimit set by the slave_checkpoint_group or slave_checkpoint_period\nsystem variable, when the checkpoint operation is called to update the\nstatus of the replica. Depending on the setting for the system\nvariables, the function might therefore return some time after the\nspecified position was reached.\n\nIf a timeout value is specified, MASTER_POS_WAIT() stops waiting when\ntimeout seconds have elapsed. timeout must be greater than 0; a zero or\nnegative timeout means no timeout.\n\nThe optional channel value enables you to name which replication\nchannel the function applies to. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(481,'NAME_CONST',37,'Syntax:\nNAME_CONST(name,value)\n\nReturns the given value. When used to produce a result set column,\nNAME_CONST() causes the column to have the given name. The arguments\nshould be constants.\n\nmysql> SELECT NAME_CONST(\'myname\', 14);\n+--------+\n| myname |\n+--------+\n| 14 |\n+--------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(482,'SLEEP',37,'Syntax:\nSLEEP(duration)\n\nSleeps (pauses) for the number of seconds given by the duration\nargument, then returns 0. The duration may have a fractional part. If\nthe argument is NULL or negative, SLEEP() produces a warning, or an\nerror in strict SQL mode.\n\nWhen sleep returns normally (without interruption), it returns 0:\n\nmysql> SELECT SLEEP(1000);\n+-------------+\n| SLEEP(1000) |\n+-------------+\n| 0 |\n+-------------+\n\nWhen SLEEP() is the only thing invoked by a query that is interrupted,\nit returns 1 and the query itself returns no error. This is true\nwhether the query is killed or times out:\n\no This statement is interrupted using KILL QUERY from another session:\n\nmysql> SELECT SLEEP(1000);\n+-------------+\n| SLEEP(1000) |\n+-------------+\n| 1 |\n+-------------+\n\no This statement is interrupted by timing out:\n\nmysql> SELECT /*+ MAX_EXECUTION_TIME(1) */ SLEEP(1000);\n+-------------+\n| SLEEP(1000) |\n+-------------+\n| 1 |\n+-------------+\n\nWhen SLEEP() is only part of a query that is interrupted, the query\nreturns an error:\n\no This statement is interrupted using KILL QUERY from another session:\n\nmysql> SELECT 1 FROM t1 WHERE SLEEP(1000);\nERROR 1317 (70100): Query execution was interrupted\n\no This statement is interrupted by timing out:\n\nmysql> SELECT /*+ MAX_EXECUTION_TIME(1000) */ 1 FROM t1 WHERE SLEEP(1000);\nERROR 3024 (HY000): Query execution was interrupted, maximum statement\nexecution time exceeded\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(483,'UUID',37,'Syntax:\nUUID()\n\nReturns a Universal Unique Identifier (UUID) generated according to RFC\n4122, \"A Universally Unique IDentifier (UUID) URN Namespace\"\n(http://www.ietf.org/rfc/rfc4122.txt).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate devices not\nconnected to each other.\n\n*Warning*:\n\nAlthough UUID() values are intended to be unique, they are not\nnecessarily unguessable or unpredictable. If unpredictability is\nrequired, UUID values should be generated some other way.\n\nUUID() returns a value that conforms to UUID version 1 as described in\nRFC 4122. The value is a 128-bit number represented as a utf8 string of\nfive hexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee\nformat:\n\no The first three numbers are generated from the low, middle, and high\n parts of a timestamp. The high part also includes the UUID version\n number.\n\no The fourth number preserves temporal uniqueness in case the timestamp\n value loses monotonicity (for example, due to daylight saving time).\n\no The fifth number is an IEEE 802 node number that provides spatial\n uniqueness. A random number is substituted if the latter is not\n available (for example, because the host device has no Ethernet card,\n or it is unknown how to find the hardware address of an interface on\n the host operating system). In this case, spatial uniqueness cannot\n be guaranteed. Nevertheless, a collision should have very low\n probability.\n\n The MAC address of an interface is taken into account only on\n FreeBSD, Linux, and Windows. On other operating systems, MySQL uses a\n randomly generated 48-bit number.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-5b8c656024db\'\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(484,'UUID_SHORT',37,'Syntax:\nUUID_SHORT()\n\nReturns a \"short\" universal identifier as a 64-bit unsigned integer.\nValues returned by UUID_SHORT() differ from the string-format 128-bit\nidentifiers returned by the UUID() function and have different\nuniqueness properties. The value of UUID_SHORT() is guaranteed to be\nunique if the following conditions hold:\n\no The server_id value of the current server is between 0 and 255 and is\n unique among your set of source and replica servers\n\no You do not set back the system time for your server host between\n mysqld restarts\n\no You invoke UUID_SHORT() on average fewer than 16 million times per\n second between mysqld restarts\n\nThe UUID_SHORT() return value is constructed this way:\n\n (server_id & 255) << 56\n+ (server_startup_time_in_seconds << 24)\n+ incremented_variable++;\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID_SHORT();\n -> 92395783831158784\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(485,'VALUES',37,'Syntax:\nVALUES(col_name)\n\nIn an INSERT ... ON DUPLICATE KEY UPDATE statement, you can use the\nVALUES(col_name) function in the UPDATE clause to refer to column\nvalues from the INSERT portion of the statement. In other words,\nVALUES(col_name) in the UPDATE clause refers to the value of col_name\nthat would be inserted, had no duplicate-key conflict occurred. This\nfunction is especially useful in multiple-row inserts. The VALUES()\nfunction is meaningful only in the ON DUPLICATE KEY UPDATE clause of\nINSERT statements and returns NULL otherwise. See\nhttps://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> INSERT INTO table (a,b,c) VALUES (1,2,3),(4,5,6)\n -> ON DUPLICATE KEY UPDATE c=VALUES(a)+VALUES(b);\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(486,'ALTER DATABASE',38,'Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_option ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_option: {\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n}\n\nALTER DATABASE enables you to change the overall characteristics of a\ndatabase. These characteristics are stored in the db.opt file in the\ndatabase directory. This statement requires the ALTER privilege on the\ndatabase. ALTER SCHEMA is a synonym for ALTER DATABASE.\n\nThe database name can be omitted from the first syntax, in which case\nthe statement applies to the default database. An error occurs if there\nis no default database.\n\no https://dev.mysql.com/doc/refman/5.7/en/alter-database.html#alter-dat\n abase-charset\n\no https://dev.mysql.com/doc/refman/5.7/en/alter-database.html#alter-dat\n abase-upgrading\n\nCharacter Set and Collation Options\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation. For\ninformation about character set and collation names, see\nhttps://dev.mysql.com/doc/refman/5.7/en/charset.html.\n\nTo see the available character sets and collations, use the SHOW\nCHARACTER SET and SHOW COLLATION statements, respectively. See [HELP\nSHOW CHARACTER SET], and [HELP SHOW COLLATION].\n\nA stored routine that uses the database defaults when the routine is\ncreated includes those defaults as part of its definition. (In a stored\nroutine, variables with character data types use the database defaults\nif the character set or collation are not specified explicitly. See\n[HELP CREATE PROCEDURE].) If you change the default character set or\ncollation for a database, any stored routines that are to use the new\ndefaults must be dropped and recreated.\n\nUpgrading from Versions Older than MySQL 5.1\n\nThe syntax that includes the UPGRADE DATA DIRECTORY NAME clause updates\nthe name of the directory associated with the database to use the\nencoding implemented in MySQL 5.1 for mapping database names to\ndatabase directory names (see\nhttps://dev.mysql.com/doc/refman/5.7/en/identifier-mapping.html). This\nclause is for use under these conditions:\n\no It is intended when upgrading MySQL to 5.1 or later from older\n versions.\n\no It is intended to update a database directory name to the current\n encoding format if the name contains special characters that need\n encoding.\n\no The statement is used by mysqlcheck (as invoked by mysql_upgrade).\n\nFor example, if a database in MySQL 5.0 has the name a-b-c, the name\ncontains instances of the - (dash) character. In MySQL 5.0, the\ndatabase directory is also named a-b-c, which is not necessarily safe\nfor all file systems. In MySQL 5.1 and later, the same database name is\nencoded as a@002db@002dc to produce a file system-neutral directory\nname.\n\nWhen a MySQL installation is upgraded to MySQL 5.1 or later from an\nolder version,the server displays a name such as a-b-c (which is in the\nold format) as #mysql50#a-b-c, and you must refer to the name using the\n#mysql50# prefix. Use UPGRADE DATA DIRECTORY NAME in this case to\nexplicitly tell the server to re-encode the database directory name to\nthe current encoding format:\n\nALTER DATABASE `#mysql50#a-b-c` UPGRADE DATA DIRECTORY NAME;\n\nAfter executing this statement, you can refer to the database as a-b-c\nwithout the special #mysql50# prefix.\n\n*Note*:\n\nThe UPGRADE DATA DIRECTORY NAME clause is deprecated in MySQL 5.7 and\nremoved in MySQL 8.0. If it is necessary to convert MySQL 5.0 database\nor table names, a workaround is to upgrade a MySQL 5.0 installation to\nMySQL 5.1 before upgrading to MySQL 8.0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-database.html'),(487,'ALTER SCHEMA',38,'Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_option ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_option: {\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n}\n\nALTER DATABASE enables you to change the overall characteristics of a\ndatabase. These characteristics are stored in the db.opt file in the\ndatabase directory. This statement requires the ALTER privilege on the\ndatabase. ALTER SCHEMA is a synonym for ALTER DATABASE.\n\nThe database name can be omitted from the first syntax, in which case\nthe statement applies to the default database. An error occurs if there\nis no default database.\n\no https://dev.mysql.com/doc/refman/5.7/en/alter-database.html#alter-dat\n abase-charset\n\no https://dev.mysql.com/doc/refman/5.7/en/alter-database.html#alter-dat\n abase-upgrading\n\nCharacter Set and Collation Options\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation. For\ninformation about character set and collation names, see\nhttps://dev.mysql.com/doc/refman/5.7/en/charset.html.\n\nTo see the available character sets and collations, use the SHOW\nCHARACTER SET and SHOW COLLATION statements, respectively. See [HELP\nSHOW CHARACTER SET], and [HELP SHOW COLLATION].\n\nA stored routine that uses the database defaults when the routine is\ncreated includes those defaults as part of its definition. (In a stored\nroutine, variables with character data types use the database defaults\nif the character set or collation are not specified explicitly. See\n[HELP CREATE PROCEDURE].) If you change the default character set or\ncollation for a database, any stored routines that are to use the new\ndefaults must be dropped and recreated.\n\nUpgrading from Versions Older than MySQL 5.1\n\nThe syntax that includes the UPGRADE DATA DIRECTORY NAME clause updates\nthe name of the directory associated with the database to use the\nencoding implemented in MySQL 5.1 for mapping database names to\ndatabase directory names (see\nhttps://dev.mysql.com/doc/refman/5.7/en/identifier-mapping.html). This\nclause is for use under these conditions:\n\no It is intended when upgrading MySQL to 5.1 or later from older\n versions.\n\no It is intended to update a database directory name to the current\n encoding format if the name contains special characters that need\n encoding.\n\no The statement is used by mysqlcheck (as invoked by mysql_upgrade).\n\nFor example, if a database in MySQL 5.0 has the name a-b-c, the name\ncontains instances of the - (dash) character. In MySQL 5.0, the\ndatabase directory is also named a-b-c, which is not necessarily safe\nfor all file systems. In MySQL 5.1 and later, the same database name is\nencoded as a@002db@002dc to produce a file system-neutral directory\nname.\n\nWhen a MySQL installation is upgraded to MySQL 5.1 or later from an\nolder version,the server displays a name such as a-b-c (which is in the\nold format) as #mysql50#a-b-c, and you must refer to the name using the\n#mysql50# prefix. Use UPGRADE DATA DIRECTORY NAME in this case to\nexplicitly tell the server to re-encode the database directory name to\nthe current encoding format:\n\nALTER DATABASE `#mysql50#a-b-c` UPGRADE DATA DIRECTORY NAME;\n\nAfter executing this statement, you can refer to the database as a-b-c\nwithout the special #mysql50# prefix.\n\n*Note*:\n\nThe UPGRADE DATA DIRECTORY NAME clause is deprecated in MySQL 5.7 and\nremoved in MySQL 8.0. If it is necessary to convert MySQL 5.0 database\nor table names, a workaround is to upgrade a MySQL 5.0 installation to\nMySQL 5.1 before upgrading to MySQL 8.0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-database.html'),(488,'ALTER EVENT',38,'Syntax:\nALTER\n [DEFINER = user]\n EVENT event_name\n [ON SCHEDULE schedule]\n [ON COMPLETION [NOT] PRESERVE]\n [RENAME TO new_event_name]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n [DO event_body]\n\nThe ALTER EVENT statement changes one or more of the characteristics of\nan existing event without the need to drop and recreate it. The syntax\nfor each of the DEFINER, ON SCHEDULE, ON COMPLETION, COMMENT, ENABLE /\nDISABLE, and DO clauses is exactly the same as when used with CREATE\nEVENT. (See [HELP CREATE EVENT].)\n\nAny user can alter an event defined on a database for which that user\nhas the EVENT privilege. When a user executes a successful ALTER EVENT\nstatement, that user becomes the definer for the affected event.\n\nALTER EVENT works only with an existing event:\n\nmysql> ALTER EVENT no_such_event \n > ON SCHEDULE \n > EVERY \'2:3\' DAY_HOUR;\nERROR 1517 (HY000): Unknown event \'no_such_event\'\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-event.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-event.html'),(489,'ALTER FUNCTION',38,'Syntax:\nALTER FUNCTION func_name [characteristic ...]\n\ncharacteristic: {\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n}\n\nThis statement can be used to change the characteristics of a stored\nfunction. More than one change may be specified in an ALTER FUNCTION\nstatement. However, you cannot change the parameters or body of a\nstored function using this statement; to make such changes, you must\ndrop and re-create the function using DROP FUNCTION and CREATE\nFUNCTION.\n\nYou must have the ALTER ROUTINE privilege for the function. (That\nprivilege is granted automatically to the function creator.) If binary\nlogging is enabled, the ALTER FUNCTION statement might also require the\nSUPER privilege, as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-function.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-function.html'),(490,'ALTER INSTANCE',38,'Syntax:\nALTER INSTANCE ROTATE INNODB MASTER KEY\n\nALTER INSTANCE, introduced in MySQL 5.7.11, defines actions applicable\nto a MySQL server instance. The statement supports these actions:\n\no ALTER INSTANCE ROTATE INNODB MASTER KEY\n\n This action rotates the master encryption key used for InnoDB\n tablespace encryption. Key rotation requires the SUPER privilege. To\n perform this action, a keyring plugin must be installed and\n configured. For instructions, see\n https://dev.mysql.com/doc/refman/5.7/en/keyring.html.\n\n ALTER INSTANCE ROTATE INNODB MASTER KEY supports concurrent DML.\n However, it cannot be run concurrently with CREATE TABLE ...\n ENCRYPTION or ALTER TABLE ... ENCRYPTION operations, and locks are\n taken to prevent conflicts that could arise from concurrent execution\n of these statements. If one of the conflicting statements is running,\n it must complete before another can proceed.\n\n ALTER INSTANCE actions are written to the binary log so that they can\n be executed on replicated servers.\n\n For additional ALTER INSTANCE ROTATE INNODB MASTER KEY usage\n information, see\n https://dev.mysql.com/doc/refman/5.7/en/innodb-data-encryption.html.\n For information about keyring plugins, see\n https://dev.mysql.com/doc/refman/5.7/en/keyring.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-instance.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-instance.html'),(491,'ALTER LOGFILE GROUP',38,'Syntax:\nALTER LOGFILE GROUP logfile_group\n ADD UNDOFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement adds an UNDO file named \'file_name\' to an existing log\nfile group logfile_group. An ALTER LOGFILE GROUP statement has one and\nonly one ADD UNDOFILE clause. No DROP UNDOFILE clause is currently\nsupported.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and an undo log file with the same name, or an undo log file\nand a data file with the same name.\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size\nin bytes; if not specified, the initial size defaults to 134217728 (128\nMB). You may optionally follow size with a one-letter abbreviation for\nan order of magnitude, similar to those used in my.cnf. Generally, this\nis one of the letters M (megabytes) or G (gigabytes). (Bug #13116514,\nBug #16104705, Bug #62858)\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB). (Bug\n#29574)\n\n*Note*:\n\nWAIT is parsed but otherwise ignored. This keyword currently has no\neffect, and is intended for future expansion.\n\nThe ENGINE parameter (required) determines the storage engine which is\nused by this log file group, with engine_name being the name of the\nstorage engine. Currently, the only accepted values for engine_name are\n\"NDBCLUSTER\" and \"NDB\". The two values are equivalent.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-logfile-group.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-logfile-group.html'),(492,'ALTER PROCEDURE',38,'Syntax:\nALTER PROCEDURE proc_name [characteristic ...]\n\ncharacteristic: {\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n}\n\nThis statement can be used to change the characteristics of a stored\nprocedure. More than one change may be specified in an ALTER PROCEDURE\nstatement. However, you cannot change the parameters or body of a\nstored procedure using this statement; to make such changes, you must\ndrop and re-create the procedure using DROP PROCEDURE and CREATE\nPROCEDURE.\n\nYou must have the ALTER ROUTINE privilege for the procedure. By\ndefault, that privilege is granted automatically to the procedure\ncreator. This behavior can be changed by disabling the\nautomatic_sp_privileges system variable. See\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html\n.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-procedure.html'),(493,'ALTER SERVER',38,'Syntax:\nALTER SERVER server_name\n OPTIONS (option [, option] ...)\n\nAlters the server information for server_name, adjusting any of the\noptions permitted in the CREATE SERVER statement. The corresponding\nfields in the mysql.servers table are updated accordingly. This\nstatement requires the SUPER privilege.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-server.html\n\n','ALTER SERVER s OPTIONS (USER \'sally\');\n','https://dev.mysql.com/doc/refman/5.7/en/alter-server.html'),(494,'ALTER TABLE',38,'Syntax:\nALTER TABLE tbl_name\n [alter_option [, alter_option] ...]\n [partition_options]\n\nalter_option: {\n table_options\n | ADD [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ADD [COLUMN] (col_name column_definition,...)\n | ADD {INDEX | KEY} [index_name]\n [index_type] (key_part,...) [index_option] ...\n | ADD {FULLTEXT | SPATIAL} [INDEX | KEY] [index_name]\n (key_part,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (key_part,...)\n [index_option] ...\n | ADD [CONSTRAINT [symbol]] UNIQUE [INDEX | KEY]\n [index_name] [index_type] (key_part,...)\n [index_option] ...\n | ADD [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name,...)\n reference_definition\n | ADD CHECK (expr)\n | ALGORITHM [=] {DEFAULT | INPLACE | COPY}\n | ALTER [COLUMN] col_name {\n SET DEFAULT {literal | (expr)}\n | DROP DEFAULT\n }\n | CHANGE [COLUMN] old_col_name new_col_name column_definition\n [FIRST | AFTER col_name]\n | [DEFAULT] CHARACTER SET [=] charset_name [COLLATE [=] collation_name]\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | {DISABLE | ENABLE} KEYS\n | {DISCARD | IMPORT} TABLESPACE\n | DROP [COLUMN] col_name\n | DROP {INDEX | KEY} index_name\n | DROP PRIMARY KEY\n | DROP FOREIGN KEY fk_symbol\n | FORCE\n | LOCK [=] {DEFAULT | NONE | SHARED | EXCLUSIVE}\n | MODIFY [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ORDER BY col_name [, col_name] ...\n | RENAME {INDEX | KEY} old_index_name TO new_index_name\n | RENAME [TO | AS] new_tbl_name\n | {WITHOUT | WITH} VALIDATION\n}\n\npartition_options:\n partition_option [partition_option] ...\n\npartition_option: {\n ADD PARTITION (partition_definition)\n | DROP PARTITION partition_names\n | DISCARD PARTITION {partition_names | ALL} TABLESPACE\n | IMPORT PARTITION {partition_names | ALL} TABLESPACE\n | TRUNCATE PARTITION {partition_names | ALL}\n | COALESCE PARTITION number\n | REORGANIZE PARTITION partition_names INTO (partition_definitions)\n | EXCHANGE PARTITION partition_name WITH TABLE tbl_name [{WITH | WITHOUT} VALIDATION]\n | ANALYZE PARTITION {partition_names | ALL}\n | CHECK PARTITION {partition_names | ALL}\n | OPTIMIZE PARTITION {partition_names | ALL}\n | REBUILD PARTITION {partition_names | ALL}\n | REPAIR PARTITION {partition_names | ALL}\n | REMOVE PARTITIONING\n | UPGRADE PARTITIONING\n}\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option: {\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n}\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option: {\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | COMPRESSION [=] {\'ZLIB\' | \'LZ4\' | \'NONE\'}\n | CONNECTION [=] \'connect_string\'\n | {DATA | INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENCRYPTION [=] {\'Y\' | \'N\'}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT | DYNAMIC | FIXED | COMPRESSED | REDUNDANT | COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT | 0 | 1}\n | STATS_PERSISTENT [=] {DEFAULT | 0 | 1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK | MEMORY}]\n | UNION [=] (tbl_name[,tbl_name]...)\n}\n\npartition_options:\n (see CREATE TABLE options)\n\nALTER TABLE changes the structure of a table. For example, you can add\nor delete columns, create or destroy indexes, change the type of\nexisting columns, or rename columns or the table itself. You can also\nchange characteristics such as the storage engine used for the table or\nthe table comment.\n\no To use ALTER TABLE, you need ALTER, CREATE, and INSERT privileges for\n the table. Renaming a table requires ALTER and DROP on the old table,\n ALTER, CREATE, and INSERT on the new table.\n\no Following the table name, specify the alterations to be made. If none\n are given, ALTER TABLE does nothing.\n\no The syntax for many of the permissible alterations is similar to\n clauses of the CREATE TABLE statement. column_definition clauses use\n the same syntax for ADD and CHANGE as for CREATE TABLE. For more\n information, see [HELP CREATE TABLE].\n\no The word COLUMN is optional and can be omitted.\n\no Multiple ADD, ALTER, DROP, and CHANGE clauses are permitted in a\n single ALTER TABLE statement, separated by commas. This is a MySQL\n extension to standard SQL, which permits only one of each clause per\n ALTER TABLE statement. For example, to drop multiple columns in a\n single statement, do this:\n\nALTER TABLE t2 DROP COLUMN c, DROP COLUMN d;\n\no If a storage engine does not support an attempted ALTER TABLE\n operation, a warning may result. Such warnings can be displayed with\n SHOW WARNINGS. See [HELP SHOW WARNINGS]. For information on\n troubleshooting ALTER TABLE, see\n https://dev.mysql.com/doc/refman/5.7/en/alter-table-problems.html.\n\no For information about generated columns, see\n https://dev.mysql.com/doc/refman/5.7/en/alter-table-generated-columns\n .html.\n\no For usage examples, see\n https://dev.mysql.com/doc/refman/5.7/en/alter-table-examples.html.\n\no With the mysql_info()\n (https://dev.mysql.com/doc/c-api/5.7/en/mysql-info.html) C API\n function, you can find out how many rows were copied by ALTER TABLE.\n See mysql_info()\n (https://dev.mysql.com/doc/c-api/5.7/en/mysql-info.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-table.html'),(495,'ALTER TABLESPACE',38,'Syntax:\nALTER TABLESPACE tablespace_name\n {ADD | DROP} DATAFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement is used either to add a new data file, or to drop a data\nfile from a tablespace.\n\nThe ADD DATAFILE variant enables you to specify an initial size using\nan INITIAL_SIZE clause, where size is measured in bytes; the default\nvalue is 134217728 (128 MB). You may optionally follow size with a\none-letter abbreviation for an order of magnitude, similar to those\nused in my.cnf. Generally, this is one of the letters M (megabytes) or\nG (gigabytes).\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a data file with the same name, or an undo log file and\na tablespace with the same name.\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nINITIAL_SIZE is rounded, explicitly, as for CREATE TABLESPACE.\n\nOnce a data file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using additional ALTER\nTABLESPACE ... ADD DATAFILE statements.\n\nUsing DROP DATAFILE with ALTER TABLESPACE drops the data file\n\'file_name\' from the tablespace. You cannot drop a data file from a\ntablespace which is in use by any table; in other words, the data file\nmust be empty (no extents used). See\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objects\n.html. In addition, any data file to be dropped must previously have\nbeen added to the tablespace with CREATE TABLESPACE or ALTER\nTABLESPACE.\n\nBoth ALTER TABLESPACE ... ADD DATAFILE and ALTER TABLESPACE ... DROP\nDATAFILE require an ENGINE clause which specifies the storage engine\nused by the tablespace. Currently, the only accepted values for\nengine_name are NDB and NDBCLUSTER.\n\nWAIT is parsed but otherwise ignored, and so has no effect in MySQL\n5.7. It is intended for future expansion.\n\nWhen ALTER TABLESPACE ... ADD DATAFILE is used with ENGINE = NDB, a\ndata file is created on each Cluster data node. You can verify that the\ndata files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example, the following query\nshows all data files belonging to the tablespace named newts:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+--------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+--------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=4 |\n+--------------------+--------------+----------------+\n2 rows in set (0.03 sec)\n\nSee\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-files-table.\nhtml.\n\nALTER TABLESPACE is useful only with Disk Data storage for NDB Cluster.\nSee\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-tablespace.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-tablespace.html'),(496,'ALTER VIEW',38,'Syntax:\nALTER\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = user]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThis statement changes the definition of a view, which must exist. The\nsyntax is similar to that for CREATE VIEW see [HELP CREATE VIEW]). This\nstatement requires the CREATE VIEW and DROP privileges for the view,\nand some privilege for each column referred to in the SELECT statement.\nALTER VIEW is permitted only to the definer or users with the SUPER\nprivilege.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-view.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-view.html'),(497,'CREATE DATABASE',38,'Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_option] ...\n\ncreate_option: [DEFAULT] {\n CHARACTER SET [=] charset_name\n | COLLATE [=] collation_name\n}\n\nCREATE DATABASE creates a database with the given name. To use this\nstatement, you need the CREATE privilege for the database. CREATE\nSCHEMA is a synonym for CREATE DATABASE.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-database.html'),(498,'CREATE SCHEMA',38,'Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_option] ...\n\ncreate_option: [DEFAULT] {\n CHARACTER SET [=] charset_name\n | COLLATE [=] collation_name\n}\n\nCREATE DATABASE creates a database with the given name. To use this\nstatement, you need the CREATE privilege for the database. CREATE\nSCHEMA is a synonym for CREATE DATABASE.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-database.html'),(499,'CREATE EVENT',38,'Syntax:\nCREATE\n [DEFINER = user]\n EVENT\n [IF NOT EXISTS]\n event_name\n ON SCHEDULE schedule\n [ON COMPLETION [NOT] PRESERVE]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n DO event_body;\n\nschedule: {\n AT timestamp [+ INTERVAL interval] ...\n | EVERY interval\n [STARTS timestamp [+ INTERVAL interval] ...]\n [ENDS timestamp [+ INTERVAL interval] ...]\n}\n\ninterval:\n quantity {YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE |\n WEEK | SECOND | YEAR_MONTH | DAY_HOUR | DAY_MINUTE |\n DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND}\n\nThis statement creates and schedules a new event. The event does not\nrun unless the Event Scheduler is enabled. For information about\nchecking Event Scheduler status and enabling it if necessary, see\nhttps://dev.mysql.com/doc/refman/5.7/en/events-configuration.html.\n\nCREATE EVENT requires the EVENT privilege for the schema in which the\nevent is to be created. If the DEFINER clause is present, the\nprivileges required depend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\n\nThe minimum requirements for a valid CREATE EVENT statement are as\nfollows:\n\no The keywords CREATE EVENT plus an event name, which uniquely\n identifies the event in a database schema.\n\no An ON SCHEDULE clause, which determines when and how often the event\n executes.\n\no A DO clause, which contains the SQL statement to be executed by an\n event.\n\nThis is an example of a minimal CREATE EVENT statement:\n\nCREATE EVENT myevent\n ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR\n DO\n UPDATE myschema.mytable SET mycol = mycol + 1;\n\nThe previous statement creates an event named myevent. This event\nexecutes once---one hour following its creation---by running an SQL\nstatement that increments the value of the myschema.mytable table\'s\nmycol column by 1.\n\nThe event_name must be a valid MySQL identifier with a maximum length\nof 64 characters. Event names are not case-sensitive, so you cannot\nhave two events named myevent and MyEvent in the same schema. In\ngeneral, the rules governing event names are the same as those for\nnames of stored routines. See\nhttps://dev.mysql.com/doc/refman/5.7/en/identifiers.html.\n\nAn event is associated with a schema. If no schema is indicated as part\nof event_name, the default (current) schema is assumed. To create an\nevent in a specific schema, qualify the event name with a schema using\nschema_name.event_name syntax.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-event.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-event.html'),(500,'CREATE INDEX',38,'Syntax:\nCREATE [UNIQUE | FULLTEXT | SPATIAL] INDEX index_name\n [index_type]\n ON tbl_name (key_part,...)\n [index_option]\n [algorithm_option | lock_option] ...\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_option: {\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n}\n\nindex_type:\n USING {BTREE | HASH}\n\nalgorithm_option:\n ALGORITHM [=] {DEFAULT | INPLACE | COPY}\n\nlock_option:\n LOCK [=] {DEFAULT | NONE | SHARED | EXCLUSIVE}\n\nNormally, you create all indexes on a table at the time the table\nitself is created with CREATE TABLE. See [HELP CREATE TABLE]. This\nguideline is especially important for InnoDB tables, where the primary\nkey determines the physical layout of rows in the data file. CREATE\nINDEX enables you to add indexes to existing tables.\n\nCREATE INDEX is mapped to an ALTER TABLE statement to create indexes.\nSee [HELP ALTER TABLE]. CREATE INDEX cannot be used to create a PRIMARY\nKEY; use ALTER TABLE instead. For more information about indexes, see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-indexes.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-index.html'),(501,'CREATE LOGFILE GROUP',38,'Syntax:\nCREATE LOGFILE GROUP logfile_group\n ADD UNDOFILE \'undo_file\'\n [INITIAL_SIZE [=] initial_size]\n [UNDO_BUFFER_SIZE [=] undo_buffer_size]\n [REDO_BUFFER_SIZE [=] redo_buffer_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] \'string\']\n ENGINE [=] engine_name\n\nThis statement creates a new log file group named logfile_group having\na single UNDO file named \'undo_file\'. A CREATE LOGFILE GROUP statement\nhas one and only one ADD UNDOFILE clause. For rules covering the naming\nof log file groups, see\nhttps://dev.mysql.com/doc/refman/5.7/en/identifiers.html.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a log file group with the same name, or a tablespace and\na data file with the same name.\n\nThere can be only one log file group per NDB Cluster instance at any\ngiven time.\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size;\nif not specified, it defaults to 128M (128 megabytes). The optional\nUNDO_BUFFER_SIZE parameter sets the size used by the UNDO buffer for\nthe log file group; The default value for UNDO_BUFFER_SIZE is 8M (eight\nmegabytes); this value cannot exceed the amount of system memory\navailable. Both of these parameters are specified in bytes. You may\noptionally follow either or both of these with a one-letter\nabbreviation for an order of magnitude, similar to those used in\nmy.cnf. Generally, this is one of the letters M (for megabytes) or G\n(for gigabytes).\n\nMemory used for UNDO_BUFFER_SIZE comes from the global pool whose size\nis determined by the value of the SharedGlobalMemory data node\nconfiguration parameter. This includes any default value implied for\nthis option by the setting of the InitialLogFileGroup data node\nconfiguration parameter.\n\nThe maximum permitted for UNDO_BUFFER_SIZE is 629145600 (600 MB).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB).\n\nThe ENGINE option determines the storage engine to be used by this log\nfile group, with engine_name being the name of the storage engine. In\nMySQL 5.7, this must be NDB (or NDBCLUSTER). If ENGINE is not set,\nMySQL tries to use the engine specified by the default_storage_engine\nserver system variable (formerly storage_engine\n(https://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html#s\nysvar_storage_engine)). In any case, if the engine is not specified as\nNDB or NDBCLUSTER, the CREATE LOGFILE GROUP statement appears to\nsucceed but actually fails to create the log file group, as shown here:\n\nmysql> CREATE LOGFILE GROUP lg1\n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+-------+------+------------------------------------------------------------------------------------------------+\n| Level | Code | Message |\n+-------+------+------------------------------------------------------------------------------------------------+\n| Error | 1478 | Table storage engine \'InnoDB\' does not support the create option \'TABLESPACE or LOGFILE GROUP\' |\n+-------+------+------------------------------------------------------------------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> DROP LOGFILE GROUP lg1 ENGINE = NDB;\nERROR 1529 (HY000): Failed to drop LOGFILE GROUP\n\nmysql> CREATE LOGFILE GROUP lg1\n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M\n -> ENGINE = NDB;\nQuery OK, 0 rows affected (2.97 sec)\n\nThe fact that the CREATE LOGFILE GROUP statement does not actually\nreturn an error when a non-NDB storage engine is named, but rather\nappears to succeed, is a known issue which we hope to address in a\nfuture release of NDB Cluster.\n\nREDO_BUFFER_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but ignored,\nand so have no effect in MySQL 5.7. These options are intended for\nfuture expansion.\n\nWhen used with ENGINE [=] NDB, a log file group and associated UNDO log\nfile are created on each Cluster data node. You can verify that the\nUNDO files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, LOGFILE_GROUP_NUMBER, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE FILE_NAME = \'undo_10.dat\';\n+--------------------+----------------------+----------------+\n| LOGFILE_GROUP_NAME | LOGFILE_GROUP_NUMBER | EXTRA |\n+--------------------+----------------------+----------------+\n| lg_3 | 11 | CLUSTER_NODE=3 |\n| lg_3 | 11 | CLUSTER_NODE=4 |\n+--------------------+----------------------+----------------+\n2 rows in set (0.06 sec)\n\nCREATE LOGFILE GROUP is useful only with Disk Data storage for NDB\nCluster. See\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-logfile-group.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-logfile-group.html'),(502,'CREATE PROCEDURE',38,'Syntax:\nCREATE\n [DEFINER = user]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = user]\n FUNCTION sp_name ([func_parameter[,...]])\n RETURNS type\n [characteristic ...] routine_body\n\nproc_parameter:\n [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n param_name type\n\ntype:\n Any valid MySQL data type\n\ncharacteristic: {\n COMMENT \'string\'\n | LANGUAGE SQL\n | [NOT] DETERMINISTIC\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n}\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements are used to create a stored routine (a stored\nprocedure or function). That is, the specified routine becomes known to\nthe server. By default, a stored routine is associated with the default\ndatabase. To associate the routine explicitly with a given database,\nspecify the name as db_name.sp_name when you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support loadable\nfunctions. See [HELP CREATE FUNCTION loadable function]. A loadable\nfunction can be regarded as an external stored function. Stored\nfunctions share their namespace with loadable functions. See\nhttps://dev.mysql.com/doc/refman/5.7/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. If the DEFINER clause is present, the privileges required\ndepend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\nIf binary logging is enabled, CREATE FUNCTION might require the SUPER\nprivilege, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html\n.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always permissible to have spaces after a stored\nroutine name, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case-sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*:\n\nSpecifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an OUT or INOUT\nparameter. If you are calling the procedure from within a trigger, you\ncan also pass NEW.col_name as an OUT or INOUT parameter.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttps://dev.mysql.com/doc/refman/5.7/en/conditions-and-parameters.html.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nThe following example shows a simple stored procedure that, given a\ncountry code, counts the number of cities for that country that appear\nin the city table of the world database. The country code is passed\nusing an IN parameter, and the city count is returned using an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE citycount (IN country CHAR(3), OUT cities INT)\n BEGIN\n SELECT COUNT(*) INTO cities FROM world.city\n WHERE CountryCode = country;\n END//\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> delimiter ;\n\nmysql> CALL citycount(\'JPN\', @cities); -- cities in Japan\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 248 |\n+---------+\n1 row in set (0.00 sec)\n\nmysql> CALL citycount(\'FRA\', @cities); -- cities in France\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 40 |\n+---------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis enables the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world! |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type. The COLLATE attribute can be used if preceded by a\nCHARACTER SET specification.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttps://dev.mysql.com/doc/refman/5.7/en/sql-compound-statements.html.\nIn practice, stored functions tend to use compound statements, unless\nthe body consists of a single RETURN statement.\n\nMySQL permits routines to contain DDL statements, such as CREATE and\nDROP. MySQL also permits stored procedures (but not stored functions)\nto contain SQL transaction statements such as COMMIT. Stored functions\nmay not contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\npermit them.\n\nStatements that return a result set can be used within a stored\nprocedure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_sp_no_retset)). For statements that can be determined only\nat runtime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_sp_badselect)).\n\nUSE statements within stored routines are not permitted. When a routine\nis invoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). The causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not permitted in\nstored routines, see\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting in effect when a\nroutine is created or altered, and always executes the routine with\nthis setting in force, regardless of the current server SQL mode when\nthe routine begins executing.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html'),(503,'CREATE FUNCTION',38,'Syntax:\nCREATE\n [DEFINER = user]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = user]\n FUNCTION sp_name ([func_parameter[,...]])\n RETURNS type\n [characteristic ...] routine_body\n\nproc_parameter:\n [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n param_name type\n\ntype:\n Any valid MySQL data type\n\ncharacteristic: {\n COMMENT \'string\'\n | LANGUAGE SQL\n | [NOT] DETERMINISTIC\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n}\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements are used to create a stored routine (a stored\nprocedure or function). That is, the specified routine becomes known to\nthe server. By default, a stored routine is associated with the default\ndatabase. To associate the routine explicitly with a given database,\nspecify the name as db_name.sp_name when you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support loadable\nfunctions. See [HELP CREATE FUNCTION loadable function]. A loadable\nfunction can be regarded as an external stored function. Stored\nfunctions share their namespace with loadable functions. See\nhttps://dev.mysql.com/doc/refman/5.7/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. If the DEFINER clause is present, the privileges required\ndepend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\nIf binary logging is enabled, CREATE FUNCTION might require the SUPER\nprivilege, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html\n.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always permissible to have spaces after a stored\nroutine name, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case-sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*:\n\nSpecifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an OUT or INOUT\nparameter. If you are calling the procedure from within a trigger, you\ncan also pass NEW.col_name as an OUT or INOUT parameter.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttps://dev.mysql.com/doc/refman/5.7/en/conditions-and-parameters.html.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nThe following example shows a simple stored procedure that, given a\ncountry code, counts the number of cities for that country that appear\nin the city table of the world database. The country code is passed\nusing an IN parameter, and the city count is returned using an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE citycount (IN country CHAR(3), OUT cities INT)\n BEGIN\n SELECT COUNT(*) INTO cities FROM world.city\n WHERE CountryCode = country;\n END//\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> delimiter ;\n\nmysql> CALL citycount(\'JPN\', @cities); -- cities in Japan\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 248 |\n+---------+\n1 row in set (0.00 sec)\n\nmysql> CALL citycount(\'FRA\', @cities); -- cities in France\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 40 |\n+---------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis enables the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world! |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type. The COLLATE attribute can be used if preceded by a\nCHARACTER SET specification.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttps://dev.mysql.com/doc/refman/5.7/en/sql-compound-statements.html.\nIn practice, stored functions tend to use compound statements, unless\nthe body consists of a single RETURN statement.\n\nMySQL permits routines to contain DDL statements, such as CREATE and\nDROP. MySQL also permits stored procedures (but not stored functions)\nto contain SQL transaction statements such as COMMIT. Stored functions\nmay not contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\npermit them.\n\nStatements that return a result set can be used within a stored\nprocedure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_sp_no_retset)). For statements that can be determined only\nat runtime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_sp_badselect)).\n\nUSE statements within stored routines are not permitted. When a routine\nis invoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). The causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not permitted in\nstored routines, see\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting in effect when a\nroutine is created or altered, and always executes the routine with\nthis setting in force, regardless of the current server SQL mode when\nthe routine begins executing.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html'),(504,'CREATE SERVER',38,'Syntax:\nCREATE SERVER server_name\n FOREIGN DATA WRAPPER wrapper_name\n OPTIONS (option [, option] ...)\n\noption: {\n HOST character-literal\n | DATABASE character-literal\n | USER character-literal\n | PASSWORD character-literal\n | SOCKET character-literal\n | OWNER character-literal\n | PORT numeric-literal\n}\n\nThis statement creates the definition of a server for use with the\nFEDERATED storage engine. The CREATE SERVER statement creates a new row\nin the servers table in the mysql database. This statement requires the\nSUPER privilege.\n\nThe server_name should be a unique reference to the server. Server\ndefinitions are global within the scope of the server, it is not\npossible to qualify the server definition to a specific database.\nserver_name has a maximum length of 64 characters (names longer than 64\ncharacters are silently truncated), and is case-insensitive. You may\nspecify the name as a quoted string.\n\nThe wrapper_name is an identifier and may be quoted with single\nquotation marks.\n\nFor each option you must specify either a character literal or numeric\nliteral. Character literals are UTF-8, support a maximum length of 64\ncharacters and default to a blank (empty) string. String literals are\nsilently truncated to 64 characters. Numeric literals must be a number\nbetween 0 and 9999, default value is 0.\n\n*Note*:\n\nThe OWNER option is currently not applied, and has no effect on the\nownership or operation of the server connection that is created.\n\nThe CREATE SERVER statement creates an entry in the mysql.servers table\nthat can later be used with the CREATE TABLE statement when creating a\nFEDERATED table. The options that you specify are used to populate the\ncolumns in the mysql.servers table. The table columns are Server_name,\nHost, Db, Username, Password, Port and Socket.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-server.html\n\n','CREATE SERVER s\nFOREIGN DATA WRAPPER mysql\nOPTIONS (USER \'Remote\', HOST \'198.51.100.106\', DATABASE \'test\');\n','https://dev.mysql.com/doc/refman/5.7/en/create-server.html'),(505,'CREATE TABLE',38,'Syntax:\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n (create_definition,...)\n [table_options]\n [partition_options]\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options]\n [partition_options]\n [IGNORE | REPLACE]\n [AS] query_expression\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n { LIKE old_tbl_name | (LIKE old_tbl_name) }\n\ncreate_definition: {\n col_name column_definition\n | {INDEX | KEY} [index_name] [index_type] (key_part,...)\n [index_option] ...\n | {FULLTEXT | SPATIAL} [INDEX | KEY] [index_name] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] UNIQUE [INDEX | KEY]\n [index_name] [index_type] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name,...)\n reference_definition\n | CHECK (expr)\n}\n\ncolumn_definition: {\n data_type [NOT NULL | NULL] [DEFAULT default_value]\n [AUTO_INCREMENT] [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n [COLLATE collation_name]\n [COLUMN_FORMAT {FIXED | DYNAMIC | DEFAULT}]\n [STORAGE {DISK | MEMORY}]\n [reference_definition]\n | data_type\n [COLLATE collation_name]\n [GENERATED ALWAYS] AS (expr)\n [VIRTUAL | STORED] [NOT NULL | NULL]\n [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n [reference_definition]\n}\n\ndata_type:\n (see https://dev.mysql.com/doc/refman/5.7/en/data-types.html)\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option: {\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n}\n\nreference_definition:\n REFERENCES tbl_name (key_part,...)\n [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option: {\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | COMPRESSION [=] {\'ZLIB\' | \'LZ4\' | \'NONE\'}\n | CONNECTION [=] \'connect_string\'\n | {DATA | INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENCRYPTION [=] {\'Y\' | \'N\'}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT | DYNAMIC | FIXED | COMPRESSED | REDUNDANT | COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT | 0 | 1}\n | STATS_PERSISTENT [=] {DEFAULT | 0 | 1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK | MEMORY}]\n | UNION [=] (tbl_name[,tbl_name]...)\n}\n\npartition_options:\n PARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1 | 2}] (column_list)\n | RANGE{(expr) | COLUMNS(column_list)}\n | LIST{(expr) | COLUMNS(column_list)} }\n [PARTITIONS num]\n [SUBPARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1 | 2}] (column_list) }\n [SUBPARTITIONS num]\n ]\n [(partition_definition [, partition_definition] ...)]\n\npartition_definition:\n PARTITION partition_name\n [VALUES\n {LESS THAN {(expr | value_list) | MAXVALUE}\n |\n IN (value_list)}]\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [(subpartition_definition [, subpartition_definition] ...)]\n\nsubpartition_definition:\n SUBPARTITION logical_name\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n\nquery_expression:\n SELECT ... (Some valid select or union statement)\n\nCREATE TABLE creates a table with the given name. You must have the\nCREATE privilege for the table.\n\nBy default, tables are created in the default database, using the\nInnoDB storage engine. An error occurs if the table exists, if there is\nno default database, or if the database does not exist.\n\nMySQL has no limit on the number of tables. The underlying file system\nmay have a limit on the number of files that represent tables.\nIndividual storage engines may impose engine-specific constraints.\nInnoDB permits up to 4 billion tables.\n\nFor information about the physical representation of a table, see\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-files.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-table.html'),(506,'FOREIGN KEY',38,'MySQL supports foreign keys, which permit cross-referencing related\ndata across tables, and foreign key constraints, which help keep the\nrelated data consistent.\n\nA foreign key relationship involves a parent table that holds the\ninitial column values, and a child table with column values that\nreference the parent column values. A foreign key constraint is defined\non the child table.\n\nThe essential syntax for a defining a foreign key constraint in a\nCREATE TABLE or ALTER TABLE statement includes the following:\n\n[CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name, ...)\n REFERENCES tbl_name (col_name,...)\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-table-foreign-keys.html\n\n','CREATE TABLE product (\n category INT NOT NULL, id INT NOT NULL,\n price DECIMAL,\n PRIMARY KEY(category, id)\n) ENGINE=INNODB;\n\nCREATE TABLE customer (\n id INT NOT NULL,\n PRIMARY KEY (id)\n) ENGINE=INNODB;\n\nCREATE TABLE product_order (\n no INT NOT NULL AUTO_INCREMENT,\n product_category INT NOT NULL,\n product_id INT NOT NULL,\n customer_id INT NOT NULL,\n\n PRIMARY KEY(no),\n INDEX (product_category, product_id),\n INDEX (customer_id),\n\n FOREIGN KEY (product_category, product_id)\n REFERENCES product(category, id)\n ON UPDATE CASCADE ON DELETE RESTRICT,\n\n FOREIGN KEY (customer_id)\n REFERENCES customer(id)\n) ENGINE=INNODB;\n','https://dev.mysql.com/doc/refman/5.7/en/create-table-foreign-keys.html'),(507,'CREATE TABLESPACE',38,'Syntax:\nCREATE TABLESPACE tablespace_name\n\n InnoDB and NDB:\n ADD DATAFILE \'file_name\'\n\n InnoDB only:\n [FILE_BLOCK_SIZE = value]\n\n NDB only:\n USE LOGFILE GROUP logfile_group\n [EXTENT_SIZE [=] extent_size]\n [INITIAL_SIZE [=] initial_size]\n [AUTOEXTEND_SIZE [=] autoextend_size]\n [MAX_SIZE [=] max_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] \'string\']\n\n InnoDB and NDB:\n [ENGINE [=] engine_name]\n\nThis statement is used to create a tablespace. The precise syntax and\nsemantics depend on the storage engine used. In standard MySQL 5.7\nreleases, this is always an InnoDB tablespace. MySQL NDB Cluster 7.5\nalso supports tablespaces using the NDB storage engine in addition to\nthose using InnoDB.\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-innodb\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-ndb\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-options\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-notes\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-innodb-examples\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-ndb-examples\n\nConsiderations for InnoDB\n\nCREATE TABLESPACE syntax is used to create general tablespaces. A\ngeneral tablespace is a shared tablespace. It can hold multiple tables,\nand supports all table row formats. General tablespaces can be created\nin a location relative to or independent of the data directory.\n\nAfter creating an InnoDB general tablespace, you can use CREATE TABLE\ntbl_name ... TABLESPACE [=] tablespace_name or ALTER TABLE tbl_name\nTABLESPACE [=] tablespace_name to add tables to the tablespace. For\nmore information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/general-tablespaces.html.\n\nConsiderations for NDB Cluster\n\nThis statement is used to create a tablespace, which can contain one or\nmore data files, providing storage space for NDB Cluster Disk Data\ntables (see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html).\nOne data file is created and added to the tablespace using this\nstatement. Additional data files may be added to the tablespace by\nusing the ALTER TABLESPACE statement (see [HELP ALTER TABLESPACE]).\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a log file group with the same name, or a tablespace and\na data file with the same name.\n\nA log file group of one or more UNDO log files must be assigned to the\ntablespace to be created with the USE LOGFILE GROUP clause.\nlogfile_group must be an existing log file group created with CREATE\nLOGFILE GROUP (see [HELP CREATE LOGFILE GROUP]). Multiple tablespaces\nmay use the same log file group for UNDO logging.\n\nWhen setting EXTENT_SIZE or INITIAL_SIZE, you may optionally follow the\nnumber with a one-letter abbreviation for an order of magnitude,\nsimilar to those used in my.cnf. Generally, this is one of the letters\nM (for megabytes) or G (for gigabytes).\n\nINITIAL_SIZE and EXTENT_SIZE are subject to rounding as follows:\n\no EXTENT_SIZE is rounded up to the nearest whole multiple of 32K.\n\no INITIAL_SIZE is rounded down to the nearest whole multiple of 32K;\n this result is rounded up to the nearest whole multiple of\n EXTENT_SIZE (after any rounding).\n\n*Note*:\n\nNDB reserves 4% of a tablespace for data node restart operations. This\nreserved space cannot be used for data storage. This restriction\napplies beginning with NDB 7.6.\n\nThe rounding just described is done explicitly, and a warning is issued\nby the MySQL Server when any such rounding is performed. The rounded\nvalues are also used by the NDB kernel for calculating\nINFORMATION_SCHEMA.FILES column values and other purposes. However, to\navoid an unexpected result, we suggest that you always use whole\nmultiples of 32K in specifying these options.\n\nWhen CREATE TABLESPACE is used with ENGINE [=] NDB, a tablespace and\nassociated data file are created on each Cluster data node. You can\nverify that the data files were created and obtain information about\nthem by querying the INFORMATION_SCHEMA.FILES table. (See the example\nlater in this section.)\n\n(See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-files-table.\nhtml.)\n\nOptions\n\no ADD DATAFILE: Defines the name of a tablespace data file; this option\n is always required. The file_name, including any specified path, must\n be quoted with single or double quotation marks. File names (not\n counting the file extension) and directory names must be at least one\n byte in length. Zero length file names and directory names are not\n supported.\n\n Because there are considerable differences in how InnoDB and NDB\n treat data files, the two storage engines are covered separately in\n the discussion that follows.\n\n InnoDB data files An InnoDB tablespace supports only a single data\n file, whose name must include a .ibd extension.\n\n For an InnoDB tablespace, the data file is created by default in the\n MySQL data directory (datadir). To place the data file in a location\n other than the default, include an absolute directory path or a path\n relative to the default location.\n\n When an InnoDB tablespace is created outside of the data directory,\n an isl file is created in the data directory. To avoid conflicts with\n implicitly created file-per-table tablespaces, creating an InnoDB\n general tablespace in a subdirectory under the data directory is not\n supported. When creating an InnoDB general tablespace outside of the\n data directory, the directory must exist prior to creating the\n tablespace.\n\n *Note*:\n\n In MySQL 5.7, ALTER TABLESPACE is not supported by InnoDB.\n\n NDB data files An NDB tablespace supports multiple data files which\n can have any legal file names; more data files can be added to an NDB\n Cluster tablespace following its creation by using an ALTER\n TABLESPACE statement.\n\n An NDB tablespace data file is created by default in the data node\n file system directory---that is, the directory named ndb_nodeid_fs/TS\n under the data node\'s data directory (DataDir), where nodeid is the\n data node\'s NodeId. To place the data file in a location other than\n the default, include an absolute directory path or a path relative to\n the default location. If the directory specified does not exist, NDB\n attempts to create it; the system user account under which the data\n node process is running must have the appropriate permissions to do\n so.\n\n *Note*:\n\n When determining the path used for a data file, NDB does not expand\n the ~ (tilde) character.\n\n When multiple data nodes are run on the same physical host, the\n following considerations apply:\n\n o You cannot specify an absolute path when creating a data file.\n\n o It is not possible to create tablespace data files outside the data\n node file system directory, unless each data node has a separate\n data directory.\n\n o If each data node has its own data directory, data files can be\n created anywhere within this directory.\n\n o If each data node has its own data directory, it may also be\n possible to create a data file outside the node\'s data directory\n using a relative path, as long as this path resolves to a unique\n location on the host file system for each data node running on that\n host.\n\no FILE_BLOCK_SIZE: This option---which is specific to InnoDB, and is\n ignored by NDB---defines the block size for the tablespace data file.\n Values can be specified in bytes or kilobytes. For example, an 8\n kilobyte file block size can be specified as 8192 or 8K. If you do\n not specify this option, FILE_BLOCK_SIZE defaults to the\n innodb_page_size value. FILE_BLOCK_SIZE is required when you intend\n to use the tablespace for storing compressed InnoDB tables\n (ROW_FORMAT=COMPRESSED). In this case, you must define the tablespace\n FILE_BLOCK_SIZE when creating the tablespace.\n\n If FILE_BLOCK_SIZE is equal the innodb_page_size value, the\n tablespace can contain only tables having an uncompressed row format\n (COMPACT, REDUNDANT, and DYNAMIC). Tables with a COMPRESSED row\n format have a different physical page size than uncompressed tables.\n Therefore, compressed tables cannot coexist in the same tablespace as\n uncompressed tables.\n\n For a general tablespace to contain compressed tables,\n FILE_BLOCK_SIZE must be specified, and the FILE_BLOCK_SIZE value must\n be a valid compressed page size in relation to the innodb_page_size\n value. Also, the physical page size of the compressed table\n (KEY_BLOCK_SIZE) must be equal to FILE_BLOCK_SIZE/1024. For example,\n if innodb_page_size=16K, and FILE_BLOCK_SIZE=8K, the KEY_BLOCK_SIZE\n of the table must be 8. For more information, see\n https://dev.mysql.com/doc/refman/5.7/en/general-tablespaces.html.\n\no USE LOGFILE GROUP: Required for NDB, this is the name of a log file\n group previously created using CREATE LOGFILE GROUP. Not supported\n for InnoDB, where it fails with an error.\n\no EXTENT_SIZE: This option is specific to NDB, and is not supported by\n InnoDB, where it fails with an error. EXTENT_SIZE sets the size, in\n bytes, of the extents used by any files belonging to the tablespace.\n The default value is 1M. The minimum size is 32K, and theoretical\n maximum is 2G, although the practical maximum size depends on a\n number of factors. In most cases, changing the extent size does not\n have any measurable effect on performance, and the default value is\n recommended for all but the most unusual situations.\n\n An extent is a unit of disk space allocation. One extent is filled\n with as much data as that extent can contain before another extent is\n used. In theory, up to 65,535 (64K) extents may used per data file;\n however, the recommended maximum is 32,768 (32K). The recommended\n maximum size for a single data file is 32G---that is, 32K extents x 1\n MB per extent. In addition, once an extent is allocated to a given\n partition, it cannot be used to store data from a different\n partition; an extent cannot store data from more than one partition.\n This means, for example that a tablespace having a single datafile\n whose INITIAL_SIZE (described in the following item) is 256 MB and\n whose EXTENT_SIZE is 128M has just two extents, and so can be used to\n store data from at most two different disk data table partitions.\n\n You can see how many extents remain free in a given data file by\n querying the INFORMATION_SCHEMA.FILES table, and so derive an\n estimate for how much space remains free in the file. For further\n discussion and examples, see\n https://dev.mysql.com/doc/refman/5.7/en/information-schema-files-tabl\n e.html.\n\no INITIAL_SIZE: This option is specific to NDB, and is not supported by\n InnoDB, where it fails with an error.\n\n The INITIAL_SIZE parameter sets the total size in bytes of the data\n file that was specific using ADD DATATFILE. Once this file has been\n created, its size cannot be changed; however, you can add more data\n files to the tablespace using ALTER TABLESPACE ... ADD DATAFILE.\n\n INITIAL_SIZE is optional; its default value is 134217728 (128 MB).\n\n On 32-bit systems, the maximum supported value for INITIAL_SIZE is\n 4294967296 (4 GB).\n\no AUTOEXTEND_SIZE: Currently ignored by MySQL; reserved for possible\n future use. Has no effect in any release of MySQL 5.7 or MySQL NDB\n Cluster 7.5, regardless of the storage engine used.\n\no MAX_SIZE: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no NODEGROUP: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no WAIT: Currently ignored by MySQL; reserved for possible future use.\n Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster 7.5,\n regardless of the storage engine used.\n\no COMMENT: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no ENGINE: Defines the storage engine which uses the tablespace, where\n engine_name is the name of the storage engine. Currently, only the\n InnoDB storage engine is supported by standard MySQL 5.7 releases.\n MySQL NDB Cluster 7.5 supports both NDB and InnoDB tablespaces. The\n value of the default_storage_engine system variable is used for\n ENGINE if the option is not specified.\n\nNotes\n\no For the rules covering the naming of MySQL tablespaces, see\n https://dev.mysql.com/doc/refman/5.7/en/identifiers.html. In addition\n to these rules, the slash character (\"/\") is not permitted, nor can\n you use names beginning with innodb_, as this prefix is reserved for\n system use.\n\no Tablespaces do not support temporary tables.\n\no innodb_file_per_table, innodb_file_format, and innodb_file_format_max\n settings have no influence on CREATE TABLESPACE operations.\n innodb_file_per_table does not need to be enabled. General\n tablespaces support all table row formats regardless of file format\n settings. Likewise, general tablespaces support the addition of\n tables of any row format using CREATE TABLE ... TABLESPACE,\n regardless of file format settings.\n\no innodb_strict_mode is not applicable to general tablespaces.\n Tablespace management rules are strictly enforced independently of\n innodb_strict_mode. If CREATE TABLESPACE parameters are incorrect or\n incompatible, the operation fails regardless of the\n innodb_strict_mode setting. When a table is added to a general\n tablespace using CREATE TABLE ... TABLESPACE or ALTER TABLE ...\n TABLESPACE, innodb_strict_mode is ignored but the statement is\n evaluated as if innodb_strict_mode is enabled.\n\no Use DROP TABLESPACE to remove a tablespace. All tables must be\n dropped from a tablespace using DROP TABLE prior to dropping the\n tablespace. Before dropping an NDB Cluster tablespace you must also\n remove all its data files using one or more ALTER TABLESPACE ... DROP\n DATATFILE statements. See\n https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objec\n ts.html.\n\no All parts of an InnoDB table added to an InnoDB general tablespace\n reside in the general tablespace, including indexes and BLOB pages.\n\n For an NDB table assigned to a tablespace, only those columns which\n are not indexed are stored on disk, and actually use the tablespace\n data files. Indexes and indexed columns for all NDB tables are always\n kept in memory.\n\no Similar to the system tablespace, truncating or dropping tables\n stored in a general tablespace creates free space internally in the\n general tablespace .ibd data file which can only be used for new\n InnoDB data. Space is not released back to the operating system as it\n is for file-per-table tablespaces.\n\no A general tablespace is not associated with any database or schema.\n\no ALTER TABLE ... DISCARD TABLESPACE and ALTER TABLE ...IMPORT\n TABLESPACE are not supported for tables that belong to a general\n tablespace.\n\no The server uses tablespace-level metadata locking for DDL that\n references general tablespaces. By comparison, the server uses\n table-level metadata locking for DDL that references file-per-table\n tablespaces.\n\no A generated or existing tablespace cannot be changed to a general\n tablespace.\n\no Tables stored in a general tablespace can only be opened in MySQL\n 5.7.6 or later due to the addition of new table flags.\n\no There is no conflict between general tablespace names and\n file-per-table tablespace names. The \"/\" character, which is present\n in file-per-table tablespace names, is not permitted in general\n tablespace names.\n\no mysqldump and mysqlpump do not dump InnoDB CREATE TABLESPACE\n statements.\n\nInnoDB Examples\n\nThis example demonstrates creating a general tablespace and adding\nthree uncompressed tables of different row formats.\n\nmysql> CREATE TABLESPACE `ts1` ADD DATAFILE \'ts1.ibd\' ENGINE=INNODB;\n\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=REDUNDANT;\n\nmysql> CREATE TABLE t2 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=COMPACT;\n\nmysql> CREATE TABLE t3 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=DYNAMIC;\n\nThis example demonstrates creating a general tablespace and adding a\ncompressed table. The example assumes a default innodb_page_size value\nof 16K. The FILE_BLOCK_SIZE of 8192 requires that the compressed table\nhave a KEY_BLOCK_SIZE of 8.\n\nmysql> CREATE TABLESPACE `ts2` ADD DATAFILE \'ts2.ibd\' FILE_BLOCK_SIZE = 8192 Engine=InnoDB;\n\nmysql> CREATE TABLE t4 (c1 INT PRIMARY KEY) TABLESPACE ts2 ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=8;\n\nNDB Example\n\nSuppose that you wish to create an NDB Cluster Disk Data tablespace\nnamed myts using a datafile named mydata-1.dat. An NDB tablespace\nalways requires the use of a log file group consisting of one or more\nundo log files. For this example, we first create a log file group\nnamed mylg that contains one undo long file named myundo-1.dat, using\nthe CREATE LOGFILE GROUP statement shown here:\n\nmysql> CREATE LOGFILE GROUP myg1\n -> ADD UNDOFILE \'myundo-1.dat\'\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (3.29 sec)\n\nNow you can create the tablespace previously described using the\nfollowing statement:\n\nmysql> CREATE TABLESPACE myts\n -> ADD DATAFILE \'mydata-1.dat\'\n -> USE LOGFILE GROUP mylg\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (2.98 sec)\n\nYou can now create a Disk Data table using a CREATE TABLE statement\nwith the TABLESPACE and STORAGE DISK options, similar to what is shown\nhere:\n\nmysql> CREATE TABLE mytable (\n -> id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> lname VARCHAR(50) NOT NULL,\n -> fname VARCHAR(50) NOT NULL,\n -> dob DATE NOT NULL,\n -> joined DATE NOT NULL,\n -> INDEX(last_name, first_name)\n -> )\n -> TABLESPACE myts STORAGE DISK\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (1.41 sec)\n\nIt is important to note that only the dob and joined columns from\nmytable are actually stored on disk, due to the fact that the id,\nlname, and fname columns are all indexed.\n\nAs mentioned previously, when CREATE TABLESPACE is used with ENGINE [=]\nNDB, a tablespace and associated data file are created on each NDB\nCluster data node. You can verify that the data files were created and\nobtain information about them by querying the INFORMATION_SCHEMA.FILES\ntable, as shown here:\n\nmysql> SELECT FILE_NAME, FILE_TYPE, LOGFILE_GROUP_NAME, STATUS, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'myts\';\n\n+--------------+------------+--------------------+--------+----------------+\n| file_name | file_type | logfile_group_name | status | extra |\n+--------------+------------+--------------------+--------+----------------+\n| mydata-1.dat | DATAFILE | mylg | NORMAL | CLUSTER_NODE=5 |\n| mydata-1.dat | DATAFILE | mylg | NORMAL | CLUSTER_NODE=6 |\n| NULL | TABLESPACE | mylg | NORMAL | NULL |\n+--------------+------------+--------------------+--------+----------------+\n3 rows in set (0.01 sec)\n\nFor additional information and examples, see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objects\n.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html'),(508,'CREATE TRIGGER',38,'Syntax:\nCREATE\n [DEFINER = user]\n TRIGGER trigger_name\n trigger_time trigger_event\n ON tbl_name FOR EACH ROW\n [trigger_order]\n trigger_body\n\ntrigger_time: { BEFORE | AFTER }\n\ntrigger_event: { INSERT | UPDATE | DELETE }\n\ntrigger_order: { FOLLOWS | PRECEDES } other_trigger_name\n\nThis statement creates a new trigger. A trigger is a named database\nobject that is associated with a table, and that activates when a\nparticular event occurs for the table. The trigger becomes associated\nwith the table named tbl_name, which must refer to a permanent table.\nYou cannot associate a trigger with a TEMPORARY table or a view.\n\nTrigger names exist in the schema namespace, meaning that all triggers\nmust have unique names within a schema. Triggers in different schemas\ncan have the same name.\n\nThis section describes CREATE TRIGGER syntax. For additional\ndiscussion, see\nhttps://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html.\n\nCREATE TRIGGER requires the TRIGGER privilege for the table associated\nwith the trigger. If the DEFINER clause is present, the privileges\nrequired depend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\nIf binary logging is enabled, CREATE TRIGGER might require the SUPER\nprivilege, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nThe DEFINER clause determines the security context to be used when\nchecking access privileges at trigger activation time, as described\nlater in this section.\n\ntrigger_time is the trigger action time. It can be BEFORE or AFTER to\nindicate that the trigger activates before or after each row to be\nmodified.\n\nBasic column value checks occur prior to trigger activation, so you\ncannot use BEFORE triggers to convert values inappropriate for the\ncolumn type to valid values.\n\ntrigger_event indicates the kind of operation that activates the\ntrigger. These trigger_event values are permitted:\n\no INSERT: The trigger activates whenever a new row is inserted into the\n table (for example, through INSERT, LOAD DATA, and REPLACE\n statements).\n\no UPDATE: The trigger activates whenever a row is modified (for\n example, through UPDATE statements).\n\no DELETE: The trigger activates whenever a row is deleted from the\n table (for example, through DELETE and REPLACE statements). DROP\n TABLE and TRUNCATE TABLE statements on the table do not activate this\n trigger, because they do not use DELETE. Dropping a partition does\n not activate DELETE triggers, either.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-trigger.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-trigger.html'),(509,'CREATE VIEW',38,'Syntax:\nCREATE\n [OR REPLACE]\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = user]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThe CREATE VIEW statement creates a new view, or replaces an existing\nview if the OR REPLACE clause is given. If the view does not exist,\nCREATE OR REPLACE VIEW is the same as CREATE VIEW. If the view does\nexist, CREATE OR REPLACE VIEW replaces it.\n\nFor information about restrictions on view use, see\nhttps://dev.mysql.com/doc/refman/5.7/en/view-restrictions.html.\n\nThe select_statement is a SELECT statement that provides the definition\nof the view. (Selecting from the view selects, in effect, using the\nSELECT statement.) The select_statement can select from base tables or\nother views.\n\nThe view definition is \"frozen\" at creation time and is not affected by\nsubsequent changes to the definitions of the underlying tables. For\nexample, if a view is defined as SELECT * on a table, new columns added\nto the table later do not become part of the view, and columns dropped\nfrom the table result in an error when selecting from the view.\n\nThe ALGORITHM clause affects how MySQL processes the view. The DEFINER\nand SQL SECURITY clauses specify the security context to be used when\nchecking access privileges at view invocation time. The WITH CHECK\nOPTION clause can be given to constrain inserts or updates to rows in\ntables referenced by the view. These clauses are described later in\nthis section.\n\nThe CREATE VIEW statement requires the CREATE VIEW privilege for the\nview, and some privilege for each column selected by the SELECT\nstatement. For columns used elsewhere in the SELECT statement, you must\nhave the SELECT privilege. If the OR REPLACE clause is present, you\nmust also have the DROP privilege for the view. If the DEFINER clause\nis present, the privileges required depend on the user value, as\ndiscussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\n\nWhen a view is referenced, privilege checking occurs as described later\nin this section.\n\nA view belongs to a database. By default, a new view is created in the\ndefault database. To create the view explicitly in a given database,\nuse db_name.view_name syntax to qualify the view name with the database\nname:\n\nCREATE VIEW test.v AS SELECT * FROM t;\n\nUnqualified table or view names in the SELECT statement are also\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifying the table or view name\nwith the appropriate database name.\n\nWithin a database, base tables and views share the same namespace, so a\nbase table and a view cannot have the same name.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns, or expressions that use functions, constant values,\noperators, and so forth.\n\nA view must have unique column names with no duplicates, just like a\nbase table. By default, the names of the columns retrieved by the\nSELECT statement are used for the view column names. To define explicit\nnames for the view columns, specify the optional column_list clause as\na list of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables:\n\nCREATE VIEW v_today (today) AS SELECT CURRENT_DATE;\n\nThe following example defines a view that selects two columns from\nanother table as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\no The SELECT statement cannot refer to system variables or user-defined\n variables.\n\no Within a stored program, the SELECT statement cannot refer to program\n parameters or local variables.\n\no The SELECT statement cannot refer to prepared statement parameters.\n\no Any table or view referred to in the definition must exist. If, after\n the view has been created, a table or view that the definition refers\n to is dropped, use of the view results in an error. To check a view\n definition for problems of this kind, use the CHECK TABLE statement.\n\no The definition cannot refer to a TEMPORARY table, and you cannot\n create a TEMPORARY view.\n\no You cannot associate a trigger with a view.\n\no Aliases for column names in the SELECT statement are checked against\n the maximum column length of 64 characters (not the maximum alias\n length of 256 characters).\n\nORDER BY is permitted in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the\neffect is undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same principle\napplies to options such as ALL, DISTINCT, or SQL_SMALL_RESULT that\nfollow the SELECT keyword, and to clauses such as INTO, FOR UPDATE,\nLOCK IN SHARE MODE, and PROCEDURE.\n\nThe results obtained from a view may be affected if you change the\nquery processing environment by changing system variables:\n\nmysql> CREATE VIEW v (mycol) AS SELECT \'abc\';\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SET sql_mode = \'\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| mycol |\n+-------+\n1 row in set (0.01 sec)\n\nmysql> SET sql_mode = \'ANSI_QUOTES\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| abc |\n+-------+\n1 row in set (0.00 sec)\n\nThe DEFINER and SQL SECURITY clauses determine which MySQL account to\nuse when checking access privileges for the view when a statement is\nexecuted that references the view. The valid SQL SECURITY\ncharacteristic values are DEFINER (the default) and INVOKER. These\nindicate that the required privileges must be held by the user who\ndefined or invoked the view, respectively.\n\nIf the DEFINER clause is present, the user value should be a MySQL\naccount specified as \'user_name\'@\'host_name\', CURRENT_USER, or\nCURRENT_USER(). The permitted user values depend on the privileges you\nhold, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\nAlso see that section for additional information about view security.\n\nIf the DEFINER clause is omitted, the default definer is the user who\nexecutes the CREATE VIEW statement. This is the same as specifying\nDEFINER = CURRENT_USER explicitly.\n\nWithin a view definition, the CURRENT_USER function returns the view\'s\nDEFINER value by default. For views defined with the SQL SECURITY\nINVOKER characteristic, CURRENT_USER returns the account for the view\'s\ninvoker. For information about user auditing within views, see\nhttps://dev.mysql.com/doc/refman/5.7/en/account-activity-auditing.html.\n\nWithin a stored routine that is defined with the SQL SECURITY DEFINER\ncharacteristic, CURRENT_USER returns the routine\'s DEFINER value. This\nalso affects a view defined within such a routine, if the view\ndefinition contains a DEFINER value of CURRENT_USER.\n\nMySQL checks view privileges like this:\n\no At view definition time, the view creator must have the privileges\n needed to use the top-level objects accessed by the view. For\n example, if the view definition refers to table columns, the creator\n must have some privilege for each column in the select list of the\n definition, and the SELECT privilege for each column used elsewhere\n in the definition. If the definition refers to a stored function,\n only the privileges needed to invoke the function can be checked. The\n privileges required at function invocation time can be checked only\n as it executes: For different invocations, different execution paths\n within the function might be taken.\n\no The user who references a view must have appropriate privileges to\n access it (SELECT to select from it, INSERT to insert into it, and so\n forth.)\n\no When a view has been referenced, privileges for objects accessed by\n the view are checked against the privileges held by the view DEFINER\n account or invoker, depending on whether the SQL SECURITY\n characteristic is DEFINER or INVOKER, respectively.\n\no If reference to a view causes execution of a stored function,\n privilege checking for statements executed within the function depend\n on whether the function SQL SECURITY characteristic is DEFINER or\n INVOKER. If the security characteristic is DEFINER, the function runs\n with the privileges of the DEFINER account. If the characteristic is\n INVOKER, the function runs with the privileges determined by the\n view\'s SQL SECURITY characteristic.\n\nExample: A view might depend on a stored function, and that function\nmight invoke other stored routines. For example, the following view\ninvokes a stored function f():\n\nCREATE VIEW v AS SELECT * FROM t WHERE t.id = f(t.name);\n\nSuppose that f() contains a statement such as this:\n\nIF name IS NULL then\n CALL p1();\nELSE\n CALL p2();\nEND IF;\n\nThe privileges required for executing statements within f() need to be\nchecked when f() executes. This might mean that privileges are needed\nfor p1() or p2(), depending on the execution path within f(). Those\nprivileges must be checked at runtime, and the user who must possess\nthe privileges is determined by the SQL SECURITY values of the view v\nand the function f().\n\nThe DEFINER and SQL SECURITY clauses for views are extensions to\nstandard SQL. In standard SQL, views are handled using the rules for\nSQL SECURITY DEFINER. The standard says that the definer of the view,\nwhich is the same as the owner of the view\'s schema, gets applicable\nprivileges on the view (for example, SELECT) and may grant them. MySQL\nhas no concept of a schema \"owner\", so MySQL adds a clause to identify\nthe definer. The DEFINER clause is an extension where the intent is to\nhave what the standard has; that is, a permanent record of who defined\nthe view. This is why the default DEFINER value is the account of the\nview creator.\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL. It\naffects how MySQL processes the view. ALGORITHM takes three values:\nMERGE, TEMPTABLE, or UNDEFINED. For more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/view-algorithms.html, as well\nas\nhttps://dev.mysql.com/doc/refman/5.7/en/derived-table-optimization.html\n.\n\nSome views are updatable. That is, you can use them in statements such\nas UPDATE, DELETE, or INSERT to update the contents of the underlying\ntable. For a view to be updatable, there must be a one-to-one\nrelationship between the rows in the view and the rows in the\nunderlying table. There are also certain other constructs that make a\nview nonupdatable.\n\nA generated column in a view is considered updatable because it is\npossible to assign to it. However, if such a column is updated\nexplicitly, the only permitted value is DEFAULT. For information about\ngenerated columns, see\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-generated-columns.\nhtml.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n\nIn a WITH CHECK OPTION clause for an updatable view, the LOCAL and\nCASCADED keywords determine the scope of check testing when the view is\ndefined in terms of another view. The LOCAL keyword restricts the CHECK\nOPTION only to the view being defined. CASCADED causes the checks for\nunderlying views to be evaluated as well. When neither keyword is\ngiven, the default is CASCADED.\n\nFor more information about updatable views and the WITH CHECK OPTION\nclause, see\nhttps://dev.mysql.com/doc/refman/5.7/en/view-updatability.html, and\nhttps://dev.mysql.com/doc/refman/5.7/en/view-check-option.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-view.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-view.html'),(510,'DROP DATABASE',38,'Syntax:\nDROP {DATABASE | SCHEMA} [IF EXISTS] db_name\n\nDROP DATABASE drops all tables in the database and deletes the\ndatabase. Be very careful with this statement! To use DROP DATABASE,\nyou need the DROP privilege on the database. DROP SCHEMA is a synonym\nfor DROP DATABASE.\n\n*Important*:\n\nWhen a database is dropped, privileges granted specifically for the\ndatabase are not automatically dropped. They must be dropped manually.\nSee [HELP GRANT].\n\nIF EXISTS is used to prevent an error from occurring if the database\ndoes not exist.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-database.html'),(511,'DROP SCHEMA',38,'Syntax:\nDROP {DATABASE | SCHEMA} [IF EXISTS] db_name\n\nDROP DATABASE drops all tables in the database and deletes the\ndatabase. Be very careful with this statement! To use DROP DATABASE,\nyou need the DROP privilege on the database. DROP SCHEMA is a synonym\nfor DROP DATABASE.\n\n*Important*:\n\nWhen a database is dropped, privileges granted specifically for the\ndatabase are not automatically dropped. They must be dropped manually.\nSee [HELP GRANT].\n\nIF EXISTS is used to prevent an error from occurring if the database\ndoes not exist.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-database.html'),(512,'DROP EVENT',38,'Syntax:\nDROP EVENT [IF EXISTS] event_name\n\nThis statement drops the event named event_name. The event immediately\nceases being active, and is deleted completely from the server.\n\nIf the event does not exist, the error ERROR 1517 (HY000): Unknown\nevent \'event_name\' results. You can override this and cause the\nstatement to generate a warning for nonexistent events instead using IF\nEXISTS.\n\nThis statement requires the EVENT privilege for the schema to which the\nevent to be dropped belongs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-event.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-event.html'),(513,'DROP INDEX',38,'Syntax:\nDROP INDEX index_name ON tbl_name\n [algorithm_option | lock_option] ...\n\nalgorithm_option:\n ALGORITHM [=] {DEFAULT | INPLACE | COPY}\n\nlock_option:\n LOCK [=] {DEFAULT | NONE | SHARED | EXCLUSIVE}\n\nDROP INDEX drops the index named index_name from the table tbl_name.\nThis statement is mapped to an ALTER TABLE statement to drop the index.\nSee [HELP ALTER TABLE].\n\nTo drop a primary key, the index name is always PRIMARY, which must be\nspecified as a quoted identifier because PRIMARY is a reserved word:\n\nDROP INDEX `PRIMARY` ON t;\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-index.html'),(514,'DROP PROCEDURE',38,'Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThese statements are used to drop a stored routine (a stored procedure\nor function). That is, the specified routine is removed from the\nserver. (DROP FUNCTION is also used to drop loadable functions; see\n[HELP DROP FUNCTION loadable function].)\n\nTo drop a stored routine, you must have the ALTER ROUTINE privilege for\nit. (If the automatic_sp_privileges system variable is enabled, that\nprivilege and EXECUTE are granted automatically to the routine creator\nwhen the routine is created and dropped from the creator when the\nroutine is dropped. See\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html\n.)\n\nThe IF EXISTS clause is a MySQL extension. It prevents an error from\noccurring if the procedure or function does not exist. A warning is\nproduced that can be viewed with SHOW WARNINGS.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html'),(515,'DROP FUNCTION',38,'Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThese statements are used to drop a stored routine (a stored procedure\nor function). That is, the specified routine is removed from the\nserver. (DROP FUNCTION is also used to drop loadable functions; see\n[HELP DROP FUNCTION loadable function].)\n\nTo drop a stored routine, you must have the ALTER ROUTINE privilege for\nit. (If the automatic_sp_privileges system variable is enabled, that\nprivilege and EXECUTE are granted automatically to the routine creator\nwhen the routine is created and dropped from the creator when the\nroutine is dropped. See\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html\n.)\n\nThe IF EXISTS clause is a MySQL extension. It prevents an error from\noccurring if the procedure or function does not exist. A warning is\nproduced that can be viewed with SHOW WARNINGS.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html'),(516,'DROP SERVER',38,'Syntax:\nDROP SERVER [ IF EXISTS ] server_name\n\nDrops the server definition for the server named server_name. The\ncorresponding row in the mysql.servers table is deleted. This statement\nrequires the SUPER privilege.\n\nDropping a server for a table does not affect any FEDERATED tables that\nused this connection information when they were created. See [HELP\nCREATE SERVER].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-server.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-server.html'),(517,'DROP TABLE',38,'Syntax:\nDROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]\n\nDROP TABLE removes one or more tables. You must have the DROP privilege\nfor each table.\n\nBe careful with this statement! For each table, it removes the table\ndefinition and all table data. If the table is partitioned, the\nstatement removes the table definition, all its partitions, all data\nstored in those partitions, and all partition definitions associated\nwith the dropped table.\n\nDropping a table also drops any triggers for the table.\n\nDROP TABLE causes an implicit commit, except when used with the\nTEMPORARY keyword. See\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\n*Important*:\n\nWhen a table is dropped, privileges granted specifically for the table\nare not automatically dropped. They must be dropped manually. See [HELP\nGRANT].\n\nIf any tables named in the argument list do not exist, DROP TABLE\nbehavior depends on whether the IF EXISTS clause is given:\n\no Without IF EXISTS, the statement drops all named tables that do\n exist, and returns an error indicating which nonexisting tables it\n was unable to drop.\n\no With IF EXISTS, no error occurs for nonexisting tables. The statement\n drops all named tables that do exist, and generates a NOTE diagnostic\n for each nonexistent table. These notes can be displayed with SHOW\n WARNINGS. See [HELP SHOW WARNINGS].\n\nIF EXISTS can also be useful for dropping tables in unusual\ncircumstances under which there is an .frm file but no table managed by\nthe storage engine. (For example, if an abnormal server exit occurs\nafter removal of the table from the storage engine but before .frm file\nremoval.)\n\nThe TEMPORARY keyword has the following effects:\n\no The statement drops only TEMPORARY tables.\n\no The statement does not cause an implicit commit.\n\no No access rights are checked. A TEMPORARY table is visible only with\n the session that created it, so no check is necessary.\n\nIncluding the TEMPORARY keyword is a good way to prevent accidentally\ndropping non-TEMPORARY tables.\n\nThe RESTRICT and CASCADE keywords do nothing. They are permitted to\nmake porting easier from other database systems.\n\nDROP TABLE is not supported with all innodb_force_recovery settings.\nSee\nhttps://dev.mysql.com/doc/refman/5.7/en/forcing-innodb-recovery.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-table.html'),(518,'DROP TABLESPACE',38,'Syntax:\nDROP TABLESPACE tablespace_name\n [ENGINE [=] engine_name]\n\nThis statement drops a tablespace that was previously created using\nCREATE TABLESPACE. It is supported with all MySQL NDB Cluster 7.5\nreleases, and with InnoDB in the standard MySQL Server as well.\n\nENGINE sets the storage engine that uses the tablespace, where\nengine_name is the name of the storage engine. Currently, the values\nInnoDB and NDB are supported. If not set, the value of\ndefault_storage_engine is used. If it is not the same as the storage\nengine used to create the tablespace, the DROP TABLESPACE statement\nfails.\n\nFor an InnoDB tablespace, all tables must be dropped from the\ntablespace prior to a DROP TABLESPACE operation. If the tablespace is\nnot empty, DROP TABLESPACE returns an error.\n\nAs with the InnoDB system tablespace, truncating or dropping InnoDB\ntables stored in a general tablespace creates free space in the\ntablespace .ibd data file, which can only be used for new InnoDB data.\nSpace is not released back to the operating system by such operations\nas it is for file-per-table tablespaces.\n\nAn NDB tablespace to be dropped must not contain any data files; in\nother words, before you can drop an NDB tablespace, you must first drop\neach of its data files using ALTER TABLESPACE ... DROP DATAFILE.\n\nNotes\n\no Tablespaces are not deleted automatically. A tablespace must be\n dropped explicitly using DROP TABLESPACE. DROP DATABASE has no effect\n in this regard, even if the operation drops all tables belonging to\n the tablespace.\n\no A DROP DATABASE operation can drop tables that belong to a general\n tablespace but it cannot drop the tablespace, even if the operation\n drops all tables that belong to the tablespace. The tablespace must\n be dropped explicitly using DROP TABLESPACE tablespace_name.\n\no Similar to the system tablespace, truncating or dropping tables\n stored in a general tablespace creates free space internally in the\n general tablespace .ibd data file which can only be used for new\n InnoDB data. Space is not released back to the operating system as it\n is for file-per-table tablespaces.\n\nInnoDB Example\n\nThis example demonstrates how to drop an InnoDB general tablespace. The\ngeneral tablespace ts1 is created with a single table. Before dropping\nthe tablespace, the table must be dropped.\n\nmysql> CREATE TABLESPACE `ts1` ADD DATAFILE \'ts1.ibd\' Engine=InnoDB;\n\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE ts1 Engine=InnoDB;\n\nmysql> DROP TABLE t1;\n\nmysql> DROP TABLESPACE ts1;\n\nNDB Example\n\nThis example shows how to drop an NDB tablespace myts having a data\nfile named mydata-1.dat after first creating the tablespace, and\nassumes the existence of a log file group named mylg (see [HELP CREATE\nLOGFILE GROUP]).\n\nmysql> CREATE TABLESPACE myts\n -> ADD DATAFILE \'mydata-1.dat\'\n -> USE LOGFILE GROUP mylg\n -> ENGINE=NDB;\n\nYou must remove all data files from the tablespace using ALTER\nTABLESPACE, as shown here, before it can be dropped:\n\nmysql> ALTER TABLESPACE myts\n -> DROP DATAFILE \'mydata-1.dat\'\n -> ENGINE=NDB;\n\nmysql> DROP TABLESPACE myts;\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-tablespace.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-tablespace.html'),(519,'DROP TRIGGER',38,'Syntax:\nDROP TRIGGER [IF EXISTS] [schema_name.]trigger_name\n\nThis statement drops a trigger. The schema (database) name is optional.\nIf the schema is omitted, the trigger is dropped from the default\nschema. DROP TRIGGER requires the TRIGGER privilege for the table\nassociated with the trigger.\n\nUse IF EXISTS to prevent an error from occurring for a trigger that\ndoes not exist. A NOTE is generated for a nonexistent trigger when\nusing IF EXISTS. See [HELP SHOW WARNINGS].\n\nTriggers for a table are also dropped if you drop the table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-trigger.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-trigger.html'),(520,'DROP VIEW',38,'Syntax:\nDROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]\n\nDROP VIEW removes one or more views. You must have the DROP privilege\nfor each view.\n\nIf any views named in the argument list do not exist, the statement\nreturns an error indicating by name which nonexisting views it was\nunable to drop, but also drops all views in the list that do exist.\n\n*Note*:\n\nIn MySQL 8.0, DROP VIEW fails if any views named in the argument list\ndo not exist. Due to the change in behavior, a partially completed DROP\nVIEW operation on a MySQL 5.7 source fails when replicated to a MySQL\n8.0 replica. To avoid this failure scenario, use IF EXISTS syntax in\nDROP VIEW statements to prevent an error from occurring for views that\ndo not exist. For more information, see Atomic Data Definition\nStatement Support\n(https://dev.mysql.com/doc/refman/8.0/en/atomic-ddl.html).\n\nThe IF EXISTS clause prevents an error from occurring for views that\ndon\'t exist. When this clause is given, a NOTE is generated for each\nnonexistent view. See [HELP SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-view.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-view.html'),(521,'RENAME TABLE',38,'Syntax:\nRENAME TABLE\n tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nRENAME TABLE renames one or more tables. You must have ALTER and DROP\nprivileges for the original table, and CREATE and INSERT privileges for\nthe new table.\n\nFor example, to rename a table named old_table to new_table, use this\nstatement:\n\nRENAME TABLE old_table TO new_table;\n\nThat statement is equivalent to the following ALTER TABLE statement:\n\nALTER TABLE old_table RENAME new_table;\n\nRENAME TABLE, unlike ALTER TABLE, can rename multiple tables within a\nsingle statement:\n\nRENAME TABLE old_table1 TO new_table1,\n old_table2 TO new_table2,\n old_table3 TO new_table3;\n\nRenaming operations are performed left to right. Thus, to swap two\ntable names, do this (assuming that a table with the intermediary name\ntmp_table does not already exist):\n\nRENAME TABLE old_table TO tmp_table,\n new_table TO old_table,\n tmp_table TO new_table;\n\nMetadata locks on tables are acquired in name order, which in some\ncases can make a difference in operation outcome when multiple\ntransactions execute concurrently. See\nhttps://dev.mysql.com/doc/refman/5.7/en/metadata-locking.html.\n\nTo execute RENAME TABLE, there must be no active transactions or tables\nlocked with LOCK TABLES. With the transaction table locking conditions\nsatisfied, the rename operation is done atomically; no other session\ncan access any of the tables while the rename is in progress.\n\nIf any errors occur during a RENAME TABLE, the statement fails and no\nchanges are made.\n\nYou can use RENAME TABLE to move a table from one database to another:\n\nRENAME TABLE current_db.tbl_name TO other_db.tbl_name;\n\nUsing this method to move all tables from one database to a different\none in effect renames the database (an operation for which MySQL has no\nsingle statement), except that the original database continues to\nexist, albeit with no tables.\n\nLike RENAME TABLE, ALTER TABLE ... RENAME can also be used to move a\ntable to a different database. Regardless of the statement used, if the\nrename operation would move the table to a database located on a\ndifferent file system, the success of the outcome is platform specific\nand depends on the underlying operating system calls used to move table\nfiles.\n\nIf a table has triggers, attempts to rename the table into a different\ndatabase fail with a Trigger in wrong schema (ER_TRG_IN_WRONG_SCHEMA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_trg_in_wrong_schema)) error.\n\nTo rename TEMPORARY tables, RENAME TABLE does not work. Use ALTER TABLE\ninstead.\n\nRENAME TABLE works for views, except that views cannot be renamed into\na different database.\n\nAny privileges granted specifically for a renamed table or view are not\nmigrated to the new name. They must be changed manually.\n\nRENAME TABLE tbl_name TO new_tbl_name changes internally generated\nforeign key constraint names and user-defined foreign key constraint\nnames that begin with the string \"tbl_name_ibfk_\" to reflect the new\ntable name. InnoDB interprets foreign key constraint names that begin\nwith the string \"tbl_name_ibfk_\" as internally generated names.\n\nForeign key constraint names that point to the renamed table are\nautomatically updated unless there is a conflict, in which case the\nstatement fails with an error. A conflict occurs if the renamed\nconstraint name already exists. In such cases, you must drop and\nre-create the foreign keys for them to function properly.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/rename-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/rename-table.html'),(522,'TRUNCATE TABLE',38,'Syntax:\nTRUNCATE [TABLE] tbl_name\n\nTRUNCATE TABLE empties a table completely. It requires the DROP\nprivilege.\n\nLogically, TRUNCATE TABLE is similar to a DELETE statement that deletes\nall rows, or a sequence of DROP TABLE and CREATE TABLE statements. To\nachieve high performance, it bypasses the DML method of deleting data.\nThus, it cannot be rolled back, it does not cause ON DELETE triggers to\nfire, and it cannot be performed for InnoDB tables with parent-child\nforeign key relationships.\n\nAlthough TRUNCATE TABLE is similar to DELETE, it is classified as a DDL\nstatement rather than a DML statement. It differs from DELETE in the\nfollowing ways:\n\no Truncate operations drop and re-create the table, which is much\n faster than deleting rows one by one, particularly for large tables.\n\no Truncate operations cause an implicit commit, and so cannot be rolled\n back. See\n https://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\no Truncation operations cannot be performed if the session holds an\n active table lock.\n\no TRUNCATE TABLE fails for an InnoDB table or NDB table if there are\n any FOREIGN KEY constraints from other tables that reference the\n table. Foreign key constraints between columns of the same table are\n permitted.\n\no Truncation operations do not return a meaningful value for the number\n of deleted rows. The usual result is \"0 rows affected,\" which should\n be interpreted as \"no information.\"\n\no As long as the table format file tbl_name.frm is valid, the table can\n be re-created as an empty table with TRUNCATE TABLE, even if the data\n or index files have become corrupted.\n\no Any AUTO_INCREMENT value is reset to its start value. This is true\n even for MyISAM and InnoDB, which normally do not reuse sequence\n values.\n\no When used with partitioned tables, TRUNCATE TABLE preserves the\n partitioning; that is, the data and index files are dropped and\n re-created, while the partition definitions (.par) file is\n unaffected.\n\no The TRUNCATE TABLE statement does not invoke ON DELETE triggers.\n\nTRUNCATE TABLE is treated for purposes of binary logging and\nreplication as DDL rather than DML, and is always logged as a\nstatement.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/truncate-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/truncate-table.html'),(523,'CALL',39,'Syntax:\nCALL sp_name([parameter[,...]])\nCALL sp_name[()]\n\nThe CALL statement invokes a stored procedure that was defined\npreviously with CREATE PROCEDURE.\n\nStored procedures that take no arguments can be invoked without\nparentheses. That is, CALL p() and CALL p are equivalent.\n\nCALL can pass back values to its caller using parameters that are\ndeclared as OUT or INOUT parameters. When the procedure returns, a\nclient program can also obtain the number of rows affected for the\nfinal statement executed within the routine: At the SQL level, call the\nROW_COUNT() function; from the C API, call the mysql_affected_rows()\n(https://dev.mysql.com/doc/c-api/5.7/en/mysql-affected-rows.html)\nfunction.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttps://dev.mysql.com/doc/refman/5.7/en/conditions-and-parameters.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/call.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/call.html'),(524,'DELETE',39,'Syntax:\nDELETE is a DML statement that removes rows from a table.\n\nSingle-Table Syntax\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nThe DELETE statement deletes rows from tbl_name and returns the number\nof deleted rows. To check the number of deleted rows, call the\nROW_COUNT() function described in\nhttps://dev.mysql.com/doc/refman/5.7/en/information-functions.html.\n\nMain Clauses\n\nThe conditions in the optional WHERE clause identify which rows to\ndelete. With no WHERE clause, all rows are deleted.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe deleted. It is specified as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/select.html.\n\nIf the ORDER BY clause is specified, the rows are deleted in the order\nthat is specified. The LIMIT clause places a limit on the number of\nrows that can be deleted. These clauses apply to single-table deletes,\nbut not multi-table deletes.\n\nMultiple-Table Syntax\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n tbl_name[.*] [, tbl_name[.*]] ...\n FROM table_references\n [WHERE where_condition]\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n FROM tbl_name[.*] [, tbl_name[.*]] ...\n USING table_references\n [WHERE where_condition]\n\nPrivileges\n\nYou need the DELETE privilege on a table to delete rows from it. You\nneed only the SELECT privilege for any columns that are only read, such\nas those named in the WHERE clause.\n\nPerformance\n\nWhen you do not need to know the number of deleted rows, the TRUNCATE\nTABLE statement is a faster way to empty a table than a DELETE\nstatement with no WHERE clause. Unlike DELETE, TRUNCATE TABLE cannot be\nused within a transaction or if you have a lock on the table. See [HELP\nTRUNCATE TABLE] and [HELP LOCK TABLES].\n\nThe speed of delete operations may also be affected by factors\ndiscussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/delete-optimization.html.\n\nTo ensure that a given DELETE statement does not take too much time,\nthe MySQL-specific LIMIT row_count clause for DELETE specifies the\nmaximum number of rows to be deleted. If the number of rows to delete\nis larger than the limit, repeat the DELETE statement until the number\nof affected rows is less than the LIMIT value.\n\nSubqueries\n\nYou cannot delete from a table and select from the same table in a\nsubquery.\n\nPartitioned Table Support\n\nDELETE supports explicit partition selection using the PARTITION\nclause, which takes a list of the comma-separated names of one or more\npartitions or subpartitions (or both) from which to select rows to be\ndropped. Partitions not included in the list are ignored. Given a\npartitioned table t with a partition named p0, executing the statement\nDELETE FROM t PARTITION (p0) has the same effect on the table as\nexecuting ALTER TABLE t TRUNCATE PARTITION (p0); in both cases, all\nrows in partition p0 are dropped.\n\nPARTITION can be used along with a WHERE condition, in which case the\ncondition is tested only on rows in the listed partitions. For example,\nDELETE FROM t PARTITION (p0) WHERE c < 5 deletes rows only from\npartition p0 for which the condition c < 5 is true; rows in any other\npartitions are not checked and thus not affected by the DELETE.\n\nThe PARTITION clause can also be used in multiple-table DELETE\nstatements. You can use up to one such option per table named in the\nFROM option.\n\nFor more information and examples, see\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/delete.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/delete.html'),(525,'DO',39,'Syntax:\nDO expr [, expr] ...\n\nDO executes the expressions but does not return any results. In most\nrespects, DO is shorthand for SELECT expr, ..., but has the advantage\nthat it is slightly faster when you do not care about the result.\n\nDO is useful primarily with functions that have side effects, such as\nRELEASE_LOCK().\n\nExample: This SELECT statement pauses, but also produces a result set:\n\nmysql> SELECT SLEEP(5);\n+----------+\n| SLEEP(5) |\n+----------+\n| 0 |\n+----------+\n1 row in set (5.02 sec)\n\nDO, on the other hand, pauses without producing a result set.:\n\nmysql> DO SLEEP(5);\nQuery OK, 0 rows affected (4.99 sec)\n\nThis could be useful, for example in a stored function or trigger,\nwhich prohibit statements that produce result sets.\n\nDO only executes expressions. It cannot be used in all cases where\nSELECT can be used. For example, DO id FROM t1 is invalid because it\nreferences a table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/do.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/do.html'),(526,'HANDLER',39,'Syntax:\nHANDLER tbl_name OPEN [ [AS] alias]\n\nHANDLER tbl_name READ index_name { = | <= | >= | < | > } (value1,value2,...)\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST }\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ { FIRST | NEXT }\n [ WHERE where_condition ] [LIMIT ... ]\n\nHANDLER tbl_name CLOSE\n\nThe HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for InnoDB and MyISAM tables.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/handler.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/handler.html'),(527,'INSERT',39,'Syntax:\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n {VALUES | VALUE} (value_list) [, (value_list)] ...\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n SET assignment_list\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n SELECT ...\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nvalue:\n {expr | DEFAULT}\n\nvalue_list:\n value [, value] ...\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nINSERT inserts new rows into an existing table. The INSERT ... VALUES\nand INSERT ... SET forms of the statement insert rows based on\nexplicitly specified values. The INSERT ... SELECT form inserts rows\nselected from another table or tables. INSERT with an ON DUPLICATE KEY\nUPDATE clause enables existing rows to be updated if a row to be\ninserted would cause a duplicate value in a UNIQUE index or PRIMARY\nKEY.\n\nFor additional information about INSERT ... SELECT and INSERT ... ON\nDUPLICATE KEY UPDATE, see [HELP INSERT SELECT], and\nhttps://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html.\n\nIn MySQL 5.7, the DELAYED keyword is accepted but ignored by the\nserver. For the reasons for this, see [HELP INSERT DELAYED],\n\nInserting into a table requires the INSERT privilege for the table. If\nthe ON DUPLICATE KEY UPDATE clause is used and a duplicate key causes\nan UPDATE to be performed instead, the statement requires the UPDATE\nprivilege for the columns to be updated. For columns that are read but\nnot modified you need only the SELECT privilege (such as for a column\nreferenced only on the right hand side of an col_name=expr assignment\nin an ON DUPLICATE KEY UPDATE clause).\n\nWhen inserting into a partitioned table, you can control which\npartitions and subpartitions accept new rows. The PARTITION clause\ntakes a list of the comma-separated names of one or more partitions or\nsubpartitions (or both) of the table. If any of the rows to be inserted\nby a given INSERT statement do not match one of the partitions listed,\nthe INSERT statement fails with the error Found a row not matching the\ngiven partition set. For more information and examples, see\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/insert.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/insert.html'),(528,'INSERT SELECT',39,'Syntax:\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n SELECT ...\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nvalue:\n {expr | DEFAULT}\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nWith INSERT ... SELECT, you can quickly insert many rows into a table\nfrom the result of a SELECT statement, which can select from one or\nmany tables. For example:\n\nINSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/insert-select.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/insert-select.html'),(529,'INSERT DELAYED',39,'Syntax:\nINSERT DELAYED ...\n\nThe DELAYED option for the INSERT statement is a MySQL extension to\nstandard SQL. In previous versions of MySQL, it can be used for certain\nkinds of tables (such as MyISAM), such that when a client uses INSERT\nDELAYED, it gets an okay from the server at once, and the row is queued\nto be inserted when the table is not in use by any other thread.\n\nDELAYED inserts and replaces were deprecated in MySQL 5.6. In MySQL\n5.7, DELAYED is not supported. The server recognizes but ignores the\nDELAYED keyword, handles the insert as a nondelayed insert, and\ngenerates an ER_WARN_LEGACY_SYNTAX_CONVERTED warning: INSERT DELAYED is\nno longer supported. The statement was converted to INSERT. The DELAYED\nkeyword is scheduled for removal in a future release.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/insert-delayed.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/insert-delayed.html'),(530,'LOAD DATA',39,'Syntax:\nLOAD DATA\n [LOW_PRIORITY | CONCURRENT] [LOCAL]\n INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [CHARACTER SET charset_name]\n [{FIELDS | COLUMNS}\n [TERMINATED BY \'string\']\n [[OPTIONALLY] ENCLOSED BY \'char\']\n [ESCAPED BY \'char\']\n ]\n [LINES\n [STARTING BY \'string\']\n [TERMINATED BY \'string\']\n ]\n [IGNORE number {LINES | ROWS}]\n [(col_name_or_user_var\n [, col_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT}\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD DATA statement reads rows from a text file into a table at a\nvery high speed. The file can be read from the server host or the\nclient host, depending on whether the LOCAL modifier is given. LOCAL\nalso affects data interpretation and error handling.\n\nLOAD DATA is the complement of SELECT ... INTO OUTFILE. (See\nhttps://dev.mysql.com/doc/refman/5.7/en/select-into.html.) To write\ndata from a table to a file, use SELECT ... INTO OUTFILE. To read the\nfile back into a table, use LOAD DATA. The syntax of the FIELDS and\nLINES clauses is the same for both statements.\n\nThe mysqlimport utility provides another way to load data files; it\noperates by sending a LOAD DATA statement to the server. See\nhttps://dev.mysql.com/doc/refman/5.7/en/mysqlimport.html.\n\nFor information about the efficiency of INSERT versus LOAD DATA and\nspeeding up LOAD DATA, see\nhttps://dev.mysql.com/doc/refman/5.7/en/insert-optimization.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/load-data.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/load-data.html'),(531,'LOAD XML',39,'Syntax:\nLOAD XML\n [LOW_PRIORITY | CONCURRENT] [LOCAL]\n INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE [db_name.]tbl_name\n [CHARACTER SET charset_name]\n [ROWS IDENTIFIED BY \'<tagname>\']\n [IGNORE number {LINES | ROWS}]\n [(field_name_or_user_var\n [, field_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT}\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD XML statement reads data from an XML file into a table. The\nfile_name must be given as a literal string. The tagname in the\noptional ROWS IDENTIFIED BY clause must also be given as a literal\nstring, and must be surrounded by angle brackets (< and >).\n\nLOAD XML acts as the complement of running the mysql client in XML\noutput mode (that is, starting the client with the --xml option). To\nwrite data from a table to an XML file, you can invoke the mysql client\nwith the --xml and -e options from the system shell, as shown here:\n\n$> mysql --xml -e \'SELECT * FROM mydb.mytable\' > file.xml\n\nTo read the file back into a table, use LOAD XML. By default, the <row>\nelement is considered to be the equivalent of a database table row;\nthis can be changed using the ROWS IDENTIFIED BY clause.\n\nThis statement supports three different XML formats:\n\no Column names as attributes and column values as attribute values:\n\n<row column1=\"value1\" column2=\"value2\" .../>\n\no Column names as tags and column values as the content of these tags:\n\n<row>\n <column1>value1</column1>\n <column2>value2</column2>\n</row>\n\no Column names are the name attributes of <field> tags, and values are\n the contents of these tags:\n\n<row>\n <field name=\'column1\'>value1</field>\n <field name=\'column2\'>value2</field>\n</row>\n\n This is the format used by other MySQL tools, such as mysqldump.\n\nAll three formats can be used in the same XML file; the import routine\nautomatically detects the format for each row and interprets it\ncorrectly. Tags are matched based on the tag or attribute name and the\ncolumn name.\n\nIn MySQL 5.7, LOAD XML does not support CDATA sections in the source\nXML. This limitation is removed in MySQL 8.0. (Bug #30753708, Bug\n#98199)\n\nThe following clauses work essentially the same way for LOAD XML as\nthey do for LOAD DATA:\n\no LOW_PRIORITY or CONCURRENT\n\no LOCAL\n\no REPLACE or IGNORE\n\no CHARACTER SET\n\no SET\n\nSee [HELP LOAD DATA], for more information about these clauses.\n\n(field_name_or_user_var, ...) is a list of one or more comma-separated\nXML fields or user variables. The name of a user variable used for this\npurpose must match the name of a field from the XML file, prefixed with\n@. You can use field names to select only desired fields. User\nvariables can be employed to store the corresponding field values for\nsubsequent re-use.\n\nThe IGNORE number LINES or IGNORE number ROWS clause causes the first\nnumber rows in the XML file to be skipped. It is analogous to the LOAD\nDATA statement\'s IGNORE ... LINES clause.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/load-xml.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/load-xml.html'),(532,'REPLACE',39,'Syntax:\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n {VALUES | VALUE} (value_list) [, (value_list)] ...\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n SET assignment_list\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n SELECT ...\n\nvalue:\n {expr | DEFAULT}\n\nvalue_list:\n value [, value] ...\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nREPLACE works exactly like INSERT, except that if an old row in the\ntable has the same value as a new row for a PRIMARY KEY or a UNIQUE\nindex, the old row is deleted before the new row is inserted. See [HELP\nINSERT].\n\nREPLACE is a MySQL extension to the SQL standard. It either inserts, or\ndeletes and inserts. For another MySQL extension to standard SQL---that\neither inserts or updates---see\nhttps://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html.\n\nDELAYED inserts and replaces were deprecated in MySQL 5.6. In MySQL\n5.7, DELAYED is not supported. The server recognizes but ignores the\nDELAYED keyword, handles the replace as a nondelayed replace, and\ngenerates an ER_WARN_LEGACY_SYNTAX_CONVERTED warning: REPLACE DELAYED\nis no longer supported. The statement was converted to REPLACE. The\nDELAYED keyword is scheduled for removal in a future release. release.\n\n*Note*:\n\nREPLACE makes sense only if a table has a PRIMARY KEY or UNIQUE index.\nOtherwise, it becomes equivalent to INSERT, because there is no index\nto be used to determine whether a new row duplicates another.\n\nValues for all columns are taken from the values specified in the\nREPLACE statement. Any missing columns are set to their default values,\njust as happens for INSERT. You cannot refer to values from the current\nrow and use them in the new row. If you use an assignment such as SET\ncol_name = col_name + 1, the reference to the column name on the right\nhand side is treated as DEFAULT(col_name), so the assignment is\nequivalent to SET col_name = DEFAULT(col_name) + 1.\n\nTo use REPLACE, you must have both the INSERT and DELETE privileges for\nthe table.\n\nIf a generated column is replaced explicitly, the only permitted value\nis DEFAULT. For information about generated columns, see\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-generated-columns.\nhtml.\n\nREPLACE supports explicit partition selection using the PARTITION\nclause with a list of comma-separated names of partitions,\nsubpartitions, or both. As with INSERT, if it is not possible to insert\nthe new row into any of these partitions or subpartitions, the REPLACE\nstatement fails with the error Found a row not matching the given\npartition set. For more information and examples, see\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/replace.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/replace.html'),(533,'SELECT',39,'Syntax:\nSELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr [, select_expr] ...\n [into_option]\n [FROM table_references\n [PARTITION partition_list]]\n [WHERE where_condition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_condition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC], ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [into_option]\n [FOR UPDATE | LOCK IN SHARE MODE]\n\ninto_option: {\n INTO OUTFILE \'file_name\'\n [CHARACTER SET charset_name]\n export_options\n | INTO DUMPFILE \'file_name\'\n | INTO var_name [, var_name] ...\n}\n\nSELECT is used to retrieve rows selected from one or more tables, and\ncan include UNION statements and subqueries. See [HELP UNION], and\nhttps://dev.mysql.com/doc/refman/5.7/en/subqueries.html.\n\nThe most commonly used clauses of SELECT statements are these:\n\no Each select_expr indicates a column that you want to retrieve. There\n must be at least one select_expr.\n\no table_references indicates the table or tables from which to retrieve\n rows. Its syntax is described in [HELP JOIN].\n\no SELECT supports explicit partition selection using the PARTITION\n clause with a list of partitions or subpartitions (or both) following\n the name of the table in a table_reference (see [HELP JOIN]). In this\n case, rows are selected only from the partitions listed, and any\n other partitions of the table are ignored. For more information and\n examples, see\n https://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\n SELECT ... PARTITION from tables using storage engines such as MyISAM\n that perform table-level locks (and thus partition locks) lock only\n the partitions or subpartitions named by the PARTITION option.\n\n For more information, see\n https://dev.mysql.com/doc/refman/5.7/en/partitioning-limitations-lock\n ing.html.\n\no The WHERE clause, if given, indicates the condition or conditions\n that rows must satisfy to be selected. where_condition is an\n expression that evaluates to true for each row to be selected. The\n statement selects all rows if there is no WHERE clause.\n\n In the WHERE expression, you can use any of the functions and\n operators that MySQL supports, except for aggregate (group)\n functions. See\n https://dev.mysql.com/doc/refman/5.7/en/expressions.html, and\n https://dev.mysql.com/doc/refman/5.7/en/functions.html.\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/select.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/select.html'),(534,'DUAL',39,'You are permitted to specify DUAL as a dummy table name in situations\nwhere no tables are referenced:\n\nmysql> SELECT 1 + 1 FROM DUAL;\n -> 2\n\nDUAL is purely for the convenience of people who require that all\nSELECT statements should have FROM and possibly other clauses. MySQL\nmay ignore the clauses. MySQL does not require FROM DUAL if no tables\nare referenced.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/select.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/select.html'),(535,'JOIN',39,'MySQL supports the following JOIN syntax for the table_references part\nof SELECT statements and multiple-table DELETE and UPDATE statements:\n\ntable_references:\n escaped_table_reference [, escaped_table_reference] ...\n\nescaped_table_reference: {\n table_reference\n | { OJ table_reference }\n}\n\ntable_reference: {\n table_factor\n | joined_table\n}\n\ntable_factor: {\n tbl_name [PARTITION (partition_names)]\n [[AS] alias] [index_hint_list]\n | table_subquery [AS] alias\n | ( table_references )\n}\n\njoined_table: {\n table_reference [INNER | CROSS] JOIN table_factor [join_specification]\n | table_reference STRAIGHT_JOIN table_factor\n | table_reference STRAIGHT_JOIN table_factor ON search_condition\n | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_specification\n | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor\n}\n\njoin_specification: {\n ON search_condition\n | USING (join_column_list)\n}\n\njoin_column_list:\n column_name [, column_name] ...\n\nindex_hint_list:\n index_hint [, index_hint] ...\n\nindex_hint: {\n USE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])\n | {IGNORE|FORCE} {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n}\n\nindex_list:\n index_name [, index_name] ...\n\nA table reference is also known as a join expression.\n\nA table reference (when it refers to a partitioned table) may contain a\nPARTITION clause, including a list of comma-separated partitions,\nsubpartitions, or both. This option follows the name of the table and\nprecedes any alias declaration. The effect of this option is that rows\nare selected only from the listed partitions or subpartitions. Any\npartitions or subpartitions not named in the list are ignored. For more\ninformation and examples, see\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nThe syntax of table_factor is extended in MySQL in comparison with\nstandard SQL. The standard accepts only table_reference, not a list of\nthem inside a pair of parentheses.\n\nThis is a conservative extension if each comma in a list of\ntable_reference items is considered as equivalent to an inner join. For\nexample:\n\nSELECT * FROM t1 LEFT JOIN (t2, t3, t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nis equivalent to:\n\nSELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nIn MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents\n(they can replace each other). In standard SQL, they are not\nequivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used\notherwise.\n\nIn general, parentheses can be ignored in join expressions containing\nonly inner join operations. MySQL also supports nested joins. See\nhttps://dev.mysql.com/doc/refman/5.7/en/nested-join-optimization.html.\n\nIndex hints can be specified to affect how the MySQL optimizer makes\nuse of indexes. For more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/index-hints.html. Optimizer\nhints and the optimizer_switch system variable are other ways to\ninfluence optimizer use of indexes. See\nhttps://dev.mysql.com/doc/refman/5.7/en/optimizer-hints.html, and\nhttps://dev.mysql.com/doc/refman/5.7/en/switchable-optimizations.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/join.html\n\n','SELECT left_tbl.*\n FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id\n WHERE right_tbl.id IS NULL;\n','https://dev.mysql.com/doc/refman/5.7/en/join.html'),(536,'UNION',39,'Syntax:\nSELECT ...\nUNION [ALL | DISTINCT] SELECT ...\n[UNION [ALL | DISTINCT] SELECT ...]\n\nUNION combines the result from multiple SELECT statements into a single\nresult set. Example:\n\nmysql> SELECT 1, 2;\n+---+---+\n| 1 | 2 |\n+---+---+\n| 1 | 2 |\n+---+---+\nmysql> SELECT \'a\', \'b\';\n+---+---+\n| a | b |\n+---+---+\n| a | b |\n+---+---+\nmysql> SELECT 1, 2 UNION SELECT \'a\', \'b\';\n+---+---+\n| 1 | 2 |\n+---+---+\n| 1 | 2 |\n| a | b |\n+---+---+\n\no https://dev.mysql.com/doc/refman/5.7/en/union.html#union-result-set\n\no https://dev.mysql.com/doc/refman/5.7/en/union.html#union-distinct-all\n\no https://dev.mysql.com/doc/refman/5.7/en/union.html#union-order-by-lim\n it\n\no https://dev.mysql.com/doc/refman/5.7/en/union.html#union-restrictions\n\nResult Set Column Names and Data Types\n\nThe column names for a UNION result set are taken from the column names\nof the first SELECT statement.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same data type. For example, the first column\nselected by the first statement should have the same type as the first\ncolumn selected by the other statements. If the data types of\ncorresponding SELECT columns do not match, the types and lengths of the\ncolumns in the UNION result take into account the values retrieved by\nall the SELECT statements. For example, consider the following, where\nthe column length is not constrained to the length of the value from\nthe first SELECT:\n\nmysql> SELECT REPEAT(\'a\',1) UNION SELECT REPEAT(\'b\',20);\n+----------------------+\n| REPEAT(\'a\',1) |\n+----------------------+\n| a |\n| bbbbbbbbbbbbbbbbbbbb |\n+----------------------+\n\nUNION DISTINCT and UNION ALL\n\nBy default, duplicate rows are removed from UNION results. The optional\nDISTINCT keyword has the same effect but makes it explicit. With the\noptional ALL keyword, duplicate-row removal does not occur and the\nresult includes all matching rows from all the SELECT statements.\n\nYou can mix UNION ALL and UNION DISTINCT in the same query. Mixed UNION\ntypes are treated such that a DISTINCT union overrides any ALL union to\nits left. A DISTINCT union can be produced explicitly by using UNION\nDISTINCT or implicitly by using UNION with no following DISTINCT or ALL\nkeyword.\n\nORDER BY and LIMIT in Unions\n\nTo apply an ORDER BY or LIMIT clause to an individual SELECT,\nparenthesize the SELECT and place the clause inside the parentheses:\n\n(SELECT a FROM t1 WHERE a=10 AND B=1 ORDER BY a LIMIT 10)\nUNION\n(SELECT a FROM t2 WHERE a=11 AND B=2 ORDER BY a LIMIT 10);\n\n*Note*:\n\nPrevious versions of MySQL may permit such statements without\nparentheses. In MySQL 5.7, the requirement for parentheses is enforced.\n\nUse of ORDER BY for individual SELECT statements implies nothing about\nthe order in which the rows appear in the final result because UNION by\ndefault produces an unordered set of rows. Therefore, ORDER BY in this\ncontext typically is used in conjunction with LIMIT, to determine the\nsubset of the selected rows to retrieve for the SELECT, even though it\ndoes not necessarily affect the order of those rows in the final UNION\nresult. If ORDER BY appears without LIMIT in a SELECT, it is optimized\naway because it has no effect.\n\nTo use an ORDER BY or LIMIT clause to sort or limit the entire UNION\nresult, parenthesize the individual SELECT statements and place the\nORDER BY or LIMIT after the last one:\n\n(SELECT a FROM t1 WHERE a=10 AND B=1)\nUNION\n(SELECT a FROM t2 WHERE a=11 AND B=2)\nORDER BY a LIMIT 10;\n\nA statement without parentheses is equivalent to one parenthesized as\njust shown.\n\nThis kind of ORDER BY cannot use column references that include a table\nname (that is, names in tbl_name.col_name format). Instead, provide a\ncolumn alias in the first SELECT statement and refer to the alias in\nthe ORDER BY. (Alternatively, refer to the column in the ORDER BY using\nits column position. However, use of column positions is deprecated.)\n\nAlso, if a column to be sorted is aliased, the ORDER BY clause must\nrefer to the alias, not the column name. The first of the following\nstatements is permitted, but the second fails with an Unknown column\n\'a\' in \'order clause\' error:\n\n(SELECT a AS b FROM t) UNION (SELECT ...) ORDER BY b;\n(SELECT a AS b FROM t) UNION (SELECT ...) ORDER BY a;\n\nTo cause rows in a UNION result to consist of the sets of rows\nretrieved by each SELECT one after the other, select an additional\ncolumn in each SELECT to use as a sort column and add an ORDER BY that\nsorts on that column following the last SELECT:\n\n(SELECT 1 AS sort_col, col1a, col1b, ... FROM t1)\nUNION\n(SELECT 2, col2a, col2b, ... FROM t2) ORDER BY sort_col;\n\nTo additionally maintain sort order within individual SELECT results,\nadd a secondary column to the ORDER BY clause:\n\n(SELECT 1 AS sort_col, col1a, col1b, ... FROM t1)\nUNION\n(SELECT 2, col2a, col2b, ... FROM t2) ORDER BY sort_col, col1a;\n\nUse of an additional column also enables you to determine which SELECT\neach row comes from. Extra columns can provide other identifying\ninformation as well, such as a string that indicates a table name.\n\nUNION queries with an aggregate function in an ORDER BY clause are\nrejected with an ER_AGGREGATE_ORDER_FOR_UNION\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_aggregate_order_for_union) error. Example:\n\nSELECT 1 AS foo UNION SELECT 2 ORDER BY MAX(1);\n\nUNION Restrictions\n\nIn a UNION, the SELECT statements are normal select statements, but\nwith the following restrictions:\n\no HIGH_PRIORITY in the first SELECT has no effect. HIGH_PRIORITY in any\n subsequent SELECT produces a syntax error.\n\no Only the last SELECT statement can use an INTO clause. However, the\n entire UNION result is written to the INTO output destination.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/union.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/union.html'),(537,'UPDATE',39,'Syntax:\nUPDATE is a DML statement that modifies rows in a table.\n\nSingle-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_reference\n SET assignment_list\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nvalue:\n {expr | DEFAULT}\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nMultiple-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_references\n SET assignment_list\n [WHERE where_condition]\n\nFor the single-table syntax, the UPDATE statement updates columns of\nexisting rows in the named table with new values. The SET clause\nindicates which columns to modify and the values they should be given.\nEach value can be given as an expression, or the keyword DEFAULT to set\na column explicitly to its default value. The WHERE clause, if given,\nspecifies the conditions that identify which rows to update. With no\nWHERE clause, all rows are updated. If the ORDER BY clause is\nspecified, the rows are updated in the order that is specified. The\nLIMIT clause places a limit on the number of rows that can be updated.\n\nFor the multiple-table syntax, UPDATE updates rows in each table named\nin table_references that satisfy the conditions. Each matching row is\nupdated once, even if it matches the conditions multiple times. For\nmultiple-table syntax, ORDER BY and LIMIT cannot be used.\n\nFor partitioned tables, both the single-single and multiple-table forms\nof this statement support the use of a PARTITION clause as part of a\ntable reference. This option takes a list of one or more partitions or\nsubpartitions (or both). Only the partitions (or subpartitions) listed\nare checked for matches, and a row that is not in any of these\npartitions or subpartitions is not updated, whether it satisfies the\nwhere_condition or not.\n\n*Note*:\n\nUnlike the case when using PARTITION with an INSERT or REPLACE\nstatement, an otherwise valid UPDATE ... PARTITION statement is\nconsidered successful even if no rows in the listed partitions (or\nsubpartitions) match the where_condition.\n\nFor more information and examples, see\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe updated. For expression syntax, see\nhttps://dev.mysql.com/doc/refman/5.7/en/expressions.html.\n\ntable_references and where_condition are specified as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/select.html.\n\nYou need the UPDATE privilege only for columns referenced in an UPDATE\nthat are actually updated. You need only the SELECT privilege for any\ncolumns that are read but not modified.\n\nThe UPDATE statement supports the following modifiers:\n\no With the LOW_PRIORITY modifier, execution of the UPDATE is delayed\n until no other clients are reading from the table. This affects only\n storage engines that use only table-level locking (such as MyISAM,\n MEMORY, and MERGE).\n\no With the IGNORE modifier, the update statement does not abort even if\n errors occur during the update. Rows for which duplicate-key\n conflicts occur on a unique key value are not updated. Rows updated\n to values that would cause data conversion errors are updated to the\n closest valid values instead. For more information, see\n https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#ignore-effect-o\n n-execution.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/update.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/update.html'),(538,'START TRANSACTION',40,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\n\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nSTART TRANSACTION permits several modifiers that control transaction\ncharacteristics. To specify multiple modifiers, separate them by\ncommas.\n\no The WITH CONSISTENT SNAPSHOT modifier starts a consistent read for\n storage engines that are capable of it. This applies only to InnoDB.\n The effect is the same as issuing a START TRANSACTION followed by a\n SELECT from any InnoDB table. See\n https://dev.mysql.com/doc/refman/5.7/en/innodb-consistent-read.html.\n The WITH CONSISTENT SNAPSHOT modifier does not change the current\n transaction isolation level, so it provides a consistent snapshot\n only if the current isolation level is one that permits a consistent\n read. The only isolation level that permits a consistent read is\n REPEATABLE READ. For all other isolation levels, the WITH CONSISTENT\n SNAPSHOT clause is ignored. As of MySQL 5.7.2, a warning is generated\n when the WITH CONSISTENT SNAPSHOT clause is ignored.\n\no The READ WRITE and READ ONLY modifiers set the transaction access\n mode. They permit or prohibit changes to tables used in the\n transaction. The READ ONLY restriction prevents the transaction from\n modifying or locking both transactional and nontransactional tables\n that are visible to other transactions; the transaction can still\n modify or lock temporary tables.\n\n MySQL enables extra optimizations for queries on InnoDB tables when\n the transaction is known to be read-only. Specifying READ ONLY\n ensures these optimizations are applied in cases where the read-only\n status cannot be determined automatically. See\n https://dev.mysql.com/doc/refman/5.7/en/innodb-performance-ro-txn.htm\n l for more information.\n\n If no access mode is specified, the default mode applies. Unless the\n default has been changed, it is read/write. It is not permitted to\n specify both READ WRITE and READ ONLY in the same statement.\n\n In read-only mode, it remains possible to change tables created with\n the TEMPORARY keyword using DML statements. Changes made with DDL\n statements are not permitted, just as with permanent tables.\n\n For additional information about transaction access mode, including\n ways to change the default mode, see [HELP SET TRANSACTION].\n\n If the read_only system variable is enabled, explicitly starting a\n transaction with START TRANSACTION READ WRITE requires the SUPER\n privilege.\n\n*Important*:\n\nMany APIs used for writing MySQL client applications (such as JDBC)\nprovide their own methods for starting transactions that can (and\nsometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttps://dev.mysql.com/doc/refman/5.7/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDB) are not made permanent immediately. You must use COMMIT to store\nyour changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax, is\nthe recommended way to start an ad-hoc transaction, and permits\nmodifiers that BEGIN does not.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*:\n\nWithin all stored programs (stored procedures and functions, triggers,\nand events), the parser treats BEGIN [WORK] as the beginning of a BEGIN\n... END block. Begin a transaction in this context with START\nTRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The new transaction also uses the\nsame access mode (READ WRITE or READ ONLY) as the just-terminated\ntransaction. The RELEASE clause causes the server to disconnect the\ncurrent client session after terminating the current transaction.\nIncluding the NO keyword suppresses CHAIN or RELEASE completion, which\ncan be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/commit.html'),(539,'BEGIN',40,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\n\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nSTART TRANSACTION permits several modifiers that control transaction\ncharacteristics. To specify multiple modifiers, separate them by\ncommas.\n\no The WITH CONSISTENT SNAPSHOT modifier starts a consistent read for\n storage engines that are capable of it. This applies only to InnoDB.\n The effect is the same as issuing a START TRANSACTION followed by a\n SELECT from any InnoDB table. See\n https://dev.mysql.com/doc/refman/5.7/en/innodb-consistent-read.html.\n The WITH CONSISTENT SNAPSHOT modifier does not change the current\n transaction isolation level, so it provides a consistent snapshot\n only if the current isolation level is one that permits a consistent\n read. The only isolation level that permits a consistent read is\n REPEATABLE READ. For all other isolation levels, the WITH CONSISTENT\n SNAPSHOT clause is ignored. As of MySQL 5.7.2, a warning is generated\n when the WITH CONSISTENT SNAPSHOT clause is ignored.\n\no The READ WRITE and READ ONLY modifiers set the transaction access\n mode. They permit or prohibit changes to tables used in the\n transaction. The READ ONLY restriction prevents the transaction from\n modifying or locking both transactional and nontransactional tables\n that are visible to other transactions; the transaction can still\n modify or lock temporary tables.\n\n MySQL enables extra optimizations for queries on InnoDB tables when\n the transaction is known to be read-only. Specifying READ ONLY\n ensures these optimizations are applied in cases where the read-only\n status cannot be determined automatically. See\n https://dev.mysql.com/doc/refman/5.7/en/innodb-performance-ro-txn.htm\n l for more information.\n\n If no access mode is specified, the default mode applies. Unless the\n default has been changed, it is read/write. It is not permitted to\n specify both READ WRITE and READ ONLY in the same statement.\n\n In read-only mode, it remains possible to change tables created with\n the TEMPORARY keyword using DML statements. Changes made with DDL\n statements are not permitted, just as with permanent tables.\n\n For additional information about transaction access mode, including\n ways to change the default mode, see [HELP SET TRANSACTION].\n\n If the read_only system variable is enabled, explicitly starting a\n transaction with START TRANSACTION READ WRITE requires the SUPER\n privilege.\n\n*Important*:\n\nMany APIs used for writing MySQL client applications (such as JDBC)\nprovide their own methods for starting transactions that can (and\nsometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttps://dev.mysql.com/doc/refman/5.7/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDB) are not made permanent immediately. You must use COMMIT to store\nyour changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax, is\nthe recommended way to start an ad-hoc transaction, and permits\nmodifiers that BEGIN does not.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*:\n\nWithin all stored programs (stored procedures and functions, triggers,\nand events), the parser treats BEGIN [WORK] as the beginning of a BEGIN\n... END block. Begin a transaction in this context with START\nTRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The new transaction also uses the\nsame access mode (READ WRITE or READ ONLY) as the just-terminated\ntransaction. The RELEASE clause causes the server to disconnect the\ncurrent client session after terminating the current transaction.\nIncluding the NO keyword suppresses CHAIN or RELEASE completion, which\ncan be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/commit.html'),(540,'COMMIT',40,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\n\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nSTART TRANSACTION permits several modifiers that control transaction\ncharacteristics. To specify multiple modifiers, separate them by\ncommas.\n\no The WITH CONSISTENT SNAPSHOT modifier starts a consistent read for\n storage engines that are capable of it. This applies only to InnoDB.\n The effect is the same as issuing a START TRANSACTION followed by a\n SELECT from any InnoDB table. See\n https://dev.mysql.com/doc/refman/5.7/en/innodb-consistent-read.html.\n The WITH CONSISTENT SNAPSHOT modifier does not change the current\n transaction isolation level, so it provides a consistent snapshot\n only if the current isolation level is one that permits a consistent\n read. The only isolation level that permits a consistent read is\n REPEATABLE READ. For all other isolation levels, the WITH CONSISTENT\n SNAPSHOT clause is ignored. As of MySQL 5.7.2, a warning is generated\n when the WITH CONSISTENT SNAPSHOT clause is ignored.\n\no The READ WRITE and READ ONLY modifiers set the transaction access\n mode. They permit or prohibit changes to tables used in the\n transaction. The READ ONLY restriction prevents the transaction from\n modifying or locking both transactional and nontransactional tables\n that are visible to other transactions; the transaction can still\n modify or lock temporary tables.\n\n MySQL enables extra optimizations for queries on InnoDB tables when\n the transaction is known to be read-only. Specifying READ ONLY\n ensures these optimizations are applied in cases where the read-only\n status cannot be determined automatically. See\n https://dev.mysql.com/doc/refman/5.7/en/innodb-performance-ro-txn.htm\n l for more information.\n\n If no access mode is specified, the default mode applies. Unless the\n default has been changed, it is read/write. It is not permitted to\n specify both READ WRITE and READ ONLY in the same statement.\n\n In read-only mode, it remains possible to change tables created with\n the TEMPORARY keyword using DML statements. Changes made with DDL\n statements are not permitted, just as with permanent tables.\n\n For additional information about transaction access mode, including\n ways to change the default mode, see [HELP SET TRANSACTION].\n\n If the read_only system variable is enabled, explicitly starting a\n transaction with START TRANSACTION READ WRITE requires the SUPER\n privilege.\n\n*Important*:\n\nMany APIs used for writing MySQL client applications (such as JDBC)\nprovide their own methods for starting transactions that can (and\nsometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttps://dev.mysql.com/doc/refman/5.7/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDB) are not made permanent immediately. You must use COMMIT to store\nyour changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax, is\nthe recommended way to start an ad-hoc transaction, and permits\nmodifiers that BEGIN does not.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*:\n\nWithin all stored programs (stored procedures and functions, triggers,\nand events), the parser treats BEGIN [WORK] as the beginning of a BEGIN\n... END block. Begin a transaction in this context with START\nTRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The new transaction also uses the\nsame access mode (READ WRITE or READ ONLY) as the just-terminated\ntransaction. The RELEASE clause causes the server to disconnect the\ncurrent client session after terminating the current transaction.\nIncluding the NO keyword suppresses CHAIN or RELEASE completion, which\ncan be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/commit.html'),(541,'ROLLBACK',40,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\n\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nSTART TRANSACTION permits several modifiers that control transaction\ncharacteristics. To specify multiple modifiers, separate them by\ncommas.\n\no The WITH CONSISTENT SNAPSHOT modifier starts a consistent read for\n storage engines that are capable of it. This applies only to InnoDB.\n The effect is the same as issuing a START TRANSACTION followed by a\n SELECT from any InnoDB table. See\n https://dev.mysql.com/doc/refman/5.7/en/innodb-consistent-read.html.\n The WITH CONSISTENT SNAPSHOT modifier does not change the current\n transaction isolation level, so it provides a consistent snapshot\n only if the current isolation level is one that permits a consistent\n read. The only isolation level that permits a consistent read is\n REPEATABLE READ. For all other isolation levels, the WITH CONSISTENT\n SNAPSHOT clause is ignored. As of MySQL 5.7.2, a warning is generated\n when the WITH CONSISTENT SNAPSHOT clause is ignored.\n\no The READ WRITE and READ ONLY modifiers set the transaction access\n mode. They permit or prohibit changes to tables used in the\n transaction. The READ ONLY restriction prevents the transaction from\n modifying or locking both transactional and nontransactional tables\n that are visible to other transactions; the transaction can still\n modify or lock temporary tables.\n\n MySQL enables extra optimizations for queries on InnoDB tables when\n the transaction is known to be read-only. Specifying READ ONLY\n ensures these optimizations are applied in cases where the read-only\n status cannot be determined automatically. See\n https://dev.mysql.com/doc/refman/5.7/en/innodb-performance-ro-txn.htm\n l for more information.\n\n If no access mode is specified, the default mode applies. Unless the\n default has been changed, it is read/write. It is not permitted to\n specify both READ WRITE and READ ONLY in the same statement.\n\n In read-only mode, it remains possible to change tables created with\n the TEMPORARY keyword using DML statements. Changes made with DDL\n statements are not permitted, just as with permanent tables.\n\n For additional information about transaction access mode, including\n ways to change the default mode, see [HELP SET TRANSACTION].\n\n If the read_only system variable is enabled, explicitly starting a\n transaction with START TRANSACTION READ WRITE requires the SUPER\n privilege.\n\n*Important*:\n\nMany APIs used for writing MySQL client applications (such as JDBC)\nprovide their own methods for starting transactions that can (and\nsometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttps://dev.mysql.com/doc/refman/5.7/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDB) are not made permanent immediately. You must use COMMIT to store\nyour changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax, is\nthe recommended way to start an ad-hoc transaction, and permits\nmodifiers that BEGIN does not.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*:\n\nWithin all stored programs (stored procedures and functions, triggers,\nand events), the parser treats BEGIN [WORK] as the beginning of a BEGIN\n... END block. Begin a transaction in this context with START\nTRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The new transaction also uses the\nsame access mode (READ WRITE or READ ONLY) as the just-terminated\ntransaction. The RELEASE clause causes the server to disconnect the\ncurrent client session after terminating the current transaction.\nIncluding the NO keyword suppresses CHAIN or RELEASE completion, which\ncan be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/commit.html'),(542,'SAVEPOINT',40,'Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/savepoint.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/savepoint.html'),(543,'ROLLBACK TO SAVEPOINT',40,'Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/savepoint.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/savepoint.html'),(544,'RELEASE SAVEPOINT',40,'Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/savepoint.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/savepoint.html'),(545,'LOCK TABLES',40,'Syntax:\nLOCK TABLES\n tbl_name [[AS] alias] lock_type\n [, tbl_name [[AS] alias] lock_type] ...\n\nlock_type: {\n READ [LOCAL]\n | [LOW_PRIORITY] WRITE\n}\n\nUNLOCK TABLES\n\nMySQL enables client sessions to acquire table locks explicitly for the\npurpose of cooperating with other sessions for access to tables, or to\nprevent other sessions from modifying tables during periods when a\nsession requires exclusive access to them. A session can acquire or\nrelease locks only for itself. One session cannot acquire locks for\nanother session or release locks held by another session.\n\nLocks may be used to emulate transactions or to get more speed when\nupdating tables. This is explained in more detail in\nhttps://dev.mysql.com/doc/refman/5.7/en/lock-tables.html#lock-tables-re\nstrictions.\n\nLOCK TABLES explicitly acquires table locks for the current client\nsession. Table locks can be acquired for base tables or views. You must\nhave the LOCK TABLES privilege, and the SELECT privilege for each\nobject to be locked.\n\nFor view locking, LOCK TABLES adds all base tables used in the view to\nthe set of tables to be locked and locks them automatically. As of\nMySQL 5.7.32, LOCK TABLES checks that the view definer has the proper\nprivileges on the tables underlying the view.\n\nIf you lock a table explicitly with LOCK TABLES, any tables used in\ntriggers are also locked implicitly, as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/lock-tables.html#lock-tables-an\nd-triggers.\n\nUNLOCK TABLES explicitly releases any table locks held by the current\nsession. LOCK TABLES implicitly releases any table locks held by the\ncurrent session before acquiring new locks.\n\nAnother use for UNLOCK TABLES is to release the global read lock\nacquired with the FLUSH TABLES WITH READ LOCK statement, which enables\nyou to lock all tables in all databases. See [HELP FLUSH]. (This is a\nvery convenient way to get backups if you have a file system such as\nVeritas that can take snapshots in time.)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/lock-tables.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/lock-tables.html'),(546,'SET TRANSACTION',40,'Syntax:\nSET [GLOBAL | SESSION] TRANSACTION\n transaction_characteristic [, transaction_characteristic] ...\n\ntransaction_characteristic: {\n ISOLATION LEVEL level\n | access_mode\n}\n\nlevel: {\n REPEATABLE READ\n | READ COMMITTED\n | READ UNCOMMITTED\n | SERIALIZABLE\n}\n\naccess_mode: {\n READ WRITE\n | READ ONLY\n}\n\nThis statement specifies transaction characteristics. It takes a list\nof one or more characteristic values separated by commas. Each\ncharacteristic value sets the transaction isolation level or access\nmode. The isolation level is used for operations on InnoDB tables. The\naccess mode specifies whether transactions operate in read/write or\nread-only mode.\n\nIn addition, SET TRANSACTION can include an optional GLOBAL or SESSION\nkeyword to indicate the scope of the statement.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-transaction.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-transaction.html'),(547,'XA',40,'Syntax:\nXA {START|BEGIN} xid [JOIN|RESUME]\n\nXA END xid [SUSPEND [FOR MIGRATE]]\n\nXA PREPARE xid\n\nXA COMMIT xid [ONE PHASE]\n\nXA ROLLBACK xid\n\nXA RECOVER [CONVERT XID]\n\nFor XA START, the JOIN and RESUME clauses are recognized but have no\neffect.\n\nFor XA END the SUSPEND [FOR MIGRATE] clause is recognized but has no\neffect.\n\nEach XA statement begins with the XA keyword, and most of them require\nan xid value. An xid is an XA transaction identifier. It indicates\nwhich transaction the statement applies to. xid values are supplied by\nthe client, or generated by the MySQL server. An xid value has from one\nto three parts:\n\nxid: gtrid [, bqual [, formatID ]]\n\ngtrid is a global transaction identifier, bqual is a branch qualifier,\nand formatID is a number that identifies the format used by the gtrid\nand bqual values. As indicated by the syntax, bqual and formatID are\noptional. The default bqual value is \'\' if not given. The default\nformatID value is 1 if not given.\n\ngtrid and bqual must be string literals, each up to 64 bytes (not\ncharacters) long. gtrid and bqual can be specified in several ways. You\ncan use a quoted string (\'ab\'), hex string (X\'6162\', 0x6162), or bit\nvalue (b\'nnnn\').\n\nformatID is an unsigned integer.\n\nThe gtrid and bqual values are interpreted in bytes by the MySQL\nserver\'s underlying XA support routines. However, while an SQL\nstatement containing an XA statement is being parsed, the server works\nwith some specific character set. To be safe, write gtrid and bqual as\nhex strings.\n\nxid values typically are generated by the Transaction Manager. Values\ngenerated by one TM must be different from values generated by other\nTMs. A given TM must be able to recognize its own xid values in a list\nof values returned by the XA RECOVER statement.\n\nXA START xid starts an XA transaction with the given xid value. Each XA\ntransaction must have a unique xid value, so the value must not\ncurrently be used by another XA transaction. Uniqueness is assessed\nusing the gtrid and bqual values. All following XA statements for the\nXA transaction must be specified using the same xid value as that given\nin the XA START statement. If you use any of those statements but\nspecify an xid value that does not correspond to some existing XA\ntransaction, an error occurs.\n\nOne or more XA transactions can be part of the same global transaction.\nAll XA transactions within a given global transaction must use the same\ngtrid value in the xid value. For this reason, gtrid values must be\nglobally unique so that there is no ambiguity about which global\ntransaction a given XA transaction is part of. The bqual part of the\nxid value must be different for each XA transaction within a global\ntransaction. (The requirement that bqual values be different is a\nlimitation of the current MySQL XA implementation. It is not part of\nthe XA specification.)\n\nThe XA RECOVER statement returns information for those XA transactions\non the MySQL server that are in the PREPARED state. (See\nhttps://dev.mysql.com/doc/refman/5.7/en/xa-states.html.) The output\nincludes a row for each such XA transaction on the server, regardless\nof which client started it.\n\nXA RECOVER output rows look like this (for an example xid value\nconsisting of the parts \'abc\', \'def\', and 7):\n\nmysql> XA RECOVER;\n+----------+--------------+--------------+--------+\n| formatID | gtrid_length | bqual_length | data |\n+----------+--------------+--------------+--------+\n| 7 | 3 | 3 | abcdef |\n+----------+--------------+--------------+--------+\n\nThe output columns have the following meanings:\n\no formatID is the formatID part of the transaction xid\n\no gtrid_length is the length in bytes of the gtrid part of the xid\n\no bqual_length is the length in bytes of the bqual part of the xid\n\no data is the concatenation of the gtrid and bqual parts of the xid\n\nXID values may contain nonprintable characters. As of MySQL 5.7.5, XA\nRECOVER permits an optional CONVERT XID clause so that clients can\nrequest XID values in hexadecimal.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/xa-statements.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/xa-statements.html'),(548,'PURGE BINARY LOGS',41,'Syntax:\nPURGE { BINARY | MASTER } LOGS {\n TO \'log_name\'\n | BEFORE datetime_expr\n}\n\nThe binary log is a set of files that contain information about data\nmodifications made by the MySQL server. The log consists of a set of\nbinary log files, plus an index file (see\nhttps://dev.mysql.com/doc/refman/5.7/en/binary-log.html).\n\nThe PURGE BINARY LOGS statement deletes all the binary log files listed\nin the log index file prior to the specified log file name or date.\nBINARY and MASTER are synonyms. Deleted log files also are removed from\nthe list recorded in the index file, so that the given log file becomes\nthe first in the list.\n\nPURGE BINARY LOGS requires the BINLOG_ADMIN\n(https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_\nbinlog-admin) privilege. This statement has no effect if the server was\nnot started with the --log-bin option to enable binary logging.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html\n\n','PURGE BINARY LOGS TO \'mysql-bin.010\';\nPURGE BINARY LOGS BEFORE \'2019-04-02 22:46:26\';\n','https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html'),(549,'PURGE MASTER LOGS',41,'Syntax:\nPURGE { BINARY | MASTER } LOGS {\n TO \'log_name\'\n | BEFORE datetime_expr\n}\n\nThe binary log is a set of files that contain information about data\nmodifications made by the MySQL server. The log consists of a set of\nbinary log files, plus an index file (see\nhttps://dev.mysql.com/doc/refman/5.7/en/binary-log.html).\n\nThe PURGE BINARY LOGS statement deletes all the binary log files listed\nin the log index file prior to the specified log file name or date.\nBINARY and MASTER are synonyms. Deleted log files also are removed from\nthe list recorded in the index file, so that the given log file becomes\nthe first in the list.\n\nPURGE BINARY LOGS requires the BINLOG_ADMIN\n(https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_\nbinlog-admin) privilege. This statement has no effect if the server was\nnot started with the --log-bin option to enable binary logging.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html\n\n','PURGE BINARY LOGS TO \'mysql-bin.010\';\nPURGE BINARY LOGS BEFORE \'2019-04-02 22:46:26\';\n','https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html'),(550,'RESET MASTER',41,'Syntax:\nRESET MASTER\n\n*Warning*:\n\nUse this statement with caution to ensure you do not lose any wanted\nbinary log file data and GTID execution history.\n\nRESET MASTER requires the RELOAD privilege.\n\nFor a server where binary logging is enabled (log_bin is ON), RESET\nMASTER deletes all existing binary log files and resets the binary log\nindex file, resetting the server to its state before binary logging was\nstarted. A new empty binary log file is created so that binary logging\ncan be restarted.\n\nFor a server where GTIDs are in use (gtid_mode is ON), issuing RESET\nMASTER resets the GTID execution history. The value of the gtid_purged\nsystem variable is set to an empty string (\'\'), the global value (but\nnot the session value) of the gtid_executed system variable is set to\nan empty string, and the mysql.gtid_executed table is cleared (see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-concepts.html\n#replication-gtids-gtid-executed-table). If the GTID-enabled server has\nbinary logging enabled, RESET MASTER also resets the binary log as\ndescribed above. Note that RESET MASTER is the method to reset the GTID\nexecution history even if the GTID-enabled server is a replica where\nbinary logging is disabled; RESET SLAVE has no effect on the GTID\nexecution history. For more information on resetting the GTID execution\nhistory, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-lifecycle.html\n#replication-gtids-execution-history.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/reset-master.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/reset-master.html'),(551,'SET SQL_LOG_BIN',41,'Syntax:\nSET sql_log_bin = {OFF|ON}\n\nThe sql_log_bin variable controls whether logging to the binary log is\nenabled for the current session (assuming that the binary log itself is\nenabled). The default value is ON. To disable or enable binary logging\nfor the current session, set the session sql_log_bin variable to OFF or\nON.\n\nSet this variable to OFF for a session to temporarily disable binary\nlogging while making changes to the source you do not want replicated\nto the replica.\n\nSetting the session value of this system variable is a restricted\noperation. The session user must have privileges sufficient to set\nrestricted session variables. See\nhttps://dev.mysql.com/doc/refman/5.7/en/system-variable-privileges.html\n.\n\nIt is not possible to set the session value of sql_log_bin within a\ntransaction or subquery.\n\nSetting this variable to OFF prevents GTIDs from being assigned to\ntransactions in the binary log. If you are using GTIDs for replication,\nthis means that even when binary logging is later enabled again, the\nGTIDs written into the log from this point do not account for any\ntransactions that occurred in the meantime, so in effect those\ntransactions are lost.\n\nThe global sql_log_bin variable is read only and cannot be modified.\nThe global scope is deprecated; expect it to be removed in a future\nMySQL release.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-sql-log-bin.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-sql-log-bin.html'),(552,'CHANGE MASTER TO',41,'Syntax:\nCHANGE MASTER TO option [, option] ... [ channel_option ]\n\noption: {\n MASTER_BIND = \'interface_name\'\n | MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = interval\n | MASTER_RETRY_COUNT = count\n | MASTER_DELAY = interval\n | MASTER_HEARTBEAT_PERIOD = interval\n | MASTER_LOG_FILE = \'source_log_name\'\n | MASTER_LOG_POS = source_log_pos\n | MASTER_AUTO_POSITION = {0|1}\n | RELAY_LOG_FILE = \'relay_log_name\'\n | RELAY_LOG_POS = relay_log_pos\n | MASTER_SSL = {0|1}\n | MASTER_SSL_CA = \'ca_file_name\'\n | MASTER_SSL_CAPATH = \'ca_directory_name\'\n | MASTER_SSL_CERT = \'cert_file_name\'\n | MASTER_SSL_CRL = \'crl_file_name\'\n | MASTER_SSL_CRLPATH = \'crl_directory_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n | MASTER_SSL_VERIFY_SERVER_CERT = {0|1}\n | MASTER_TLS_VERSION = \'protocol_list\'\n | IGNORE_SERVER_IDS = (server_id_list)\n}\n\nchannel_option:\n FOR CHANNEL channel\n\nserver_id_list:\n [server_id [, server_id] ... ]\n\nCHANGE MASTER TO changes the parameters that the replica uses for\nconnecting to the replication source server, for reading the source\'s\nbinary log, and reading the replica\'s relay log. It also updates the\ncontents of the replication metadata repositories (see\nhttps://dev.mysql.com/doc/refman/5.7/en/replica-logs.html). CHANGE\nMASTER TO requires the SUPER privilege.\n\nPrior to MySQL 5.7.4, the replication threads must be stopped, using\nSTOP SLAVE if necessary, before issuing this statement. In MySQL 5.7.4\nand later, you can issue CHANGE MASTER TO statements on a running\nreplica without doing this, depending on the states of the replication\nSQL thread and replication I/O thread. The rules governing such use are\nprovided later in this section.\n\nWhen using a multithreaded replica (in other words\nslave_parallel_workers is greater than 0), stopping the replica can\ncause \"gaps\" in the sequence of transactions that have been executed\nfrom the relay log, regardless of whether the replica was stopped\nintentionally or otherwise. When such gaps exist, issuing CHANGE MASTER\nTO fails. The solution in this situation is to issue START SLAVE UNTIL\nSQL_AFTER_MTS_GAPS which ensures that the gaps are closed.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the CHANGE MASTER TO statement to a specific\nreplication channel, and is used to add a new channel or modify an\nexisting channel. For example, to add a new channel called channel2:\n\nCHANGE MASTER TO MASTER_HOST=host1, MASTER_PORT=3002 FOR CHANNEL \'channel2\'\n\nIf no clause is named and no extra channels exist, the statement\napplies to the default channel.\n\nWhen using multiple replication channels, if a CHANGE MASTER TO\nstatement does not name a channel using a FOR CHANNEL channel clause,\nan error occurs. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nOptions not specified retain their value, except as indicated in the\nfollowing discussion. Thus, in most cases, there is no need to specify\noptions that do not change. For example, if the password to connect to\nyour replication source server has changed, issue this statement to\ntell the replica about the new password:\n\nCHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\n\nMASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide\ninformation to the replica about how to connect to its replication\nsource server:\n\no MASTER_HOST and MASTER_PORT are the host name (or IP address) of the\n master host and its TCP/IP port.\n\n *Note*:\n\n Replication cannot use Unix socket files. You must be able to connect\n to the replication source server using TCP/IP.\n\n If you specify the MASTER_HOST or MASTER_PORT option, the replica\n assumes that the source is different from before (even if the option\n value is the same as its current value.) In this case, the old values\n for the source\'s binary log file name and position are considered no\n longer applicable, so if you do not specify MASTER_LOG_FILE and\n MASTER_LOG_POS in the statement, MASTER_LOG_FILE=\'\' and\n MASTER_LOG_POS=4 are silently appended to it.\n\n Setting MASTER_HOST=\'\' (that is, setting its value explicitly to an\n empty string) is not the same as not setting MASTER_HOST at all.\n Beginning with MySQL 5.5, trying to set MASTER_HOST to an empty\n string fails with an error. Previously, setting MASTER_HOST to an\n empty string caused START SLAVE subsequently to fail. (Bug #28796)\n\n Values used for MASTER_HOST and other CHANGE MASTER TO options are\n checked for linefeed (\\n or 0x0A) characters; the presence of such\n characters in these values causes the statement to fail with\n ER_MASTER_INFO\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html#error_er_master_info). (Bug #11758581, Bug #50801)\n\no MASTER_USER and MASTER_PASSWORD are the user name and password of the\n account to use for connecting to the source. If you specify\n MASTER_PASSWORD, MASTER_USER is also required. The password used for\n a replication user account in a CHANGE MASTER TO statement is limited\n to 32 characters in length; prior to MySQL 5.7.5, if the password was\n longer, the statement succeeded, but any excess characters were\n silently truncated. In MySQL 5.7.5 and later, trying to use a\n password of more than 32 characters causes CHANGE MASTER TO to fail.\n (Bug #11752299, Bug #43439)\n\n It is possible to set an empty user name by specifying\n MASTER_USER=\'\', but the replication channel cannot be started with an\n empty user name. Only set an empty MASTER_USER user name if you need\n to clear previously used credentials from the replica\'s repositories\n for security purposes, and do not attempt to use the channel\n afterwards.\n\n The text of a running CHANGE MASTER TO statement, including values\n for MASTER_USER and MASTER_PASSWORD, can be seen in the output of a\n concurrent SHOW PROCESSLIST statement. (The complete text of a START\n SLAVE statement is also visible to SHOW PROCESSLIST.)\n\nSetting MASTER_SSL=1 for a replication connection and then setting no\nfurther MASTER_SSL_xxx options corresponds to setting\n--ssl-mode=REQUIRED for the client, as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/connection-options.html#encrypt\ned-connection-options. With MASTER_SSL=1, the connection attempt only\nsucceeds if an encrypted connection can be established. A replication\nconnection does not fall back to an unencrypted connection, so there is\nno setting corresponding to the --ssl-mode=PREFERRED setting for\nreplication. If MASTER_SSL=0 is set, this corresponds to\n--ssl-mode=DISABLED.\n\n*Important*:\n\nTo help prevent sophisticated man-in-the-middle attacks, it is\nimportant for the replica to verify the server\'s identity. You can\nspecify additional MASTER_SSL_xxx options to correspond to the settings\n--ssl-mode=VERIFY_CA and --ssl-mode=VERIFY_IDENTITY, which are a better\nchoice than the default setting to help prevent this type of attack.\nWith these settings, the replica checks that the server\'s certificate\nis valid, and checks that the host name the replica is using matches\nthe identity in the server\'s certificate. To implement one of these\nlevels of verification, you must first ensure that the CA certificate\nfor the server is reliably available to the replica, otherwise\navailability issues will result. For this reason, they are not the\ndefault setting.\n\nThe MASTER_SSL_xxx options and the MASTER_TLS_VERSION option specify\nhow the replica uses encryption and ciphers to secure the replication\nconnection. These options can be changed even on replicas that are\ncompiled without SSL support. They are saved to the source metadata\nrepository, but are ignored if the replica does not have SSL support\nenabled. The MASTER_SSL_xxx and MASTER_TLS_VERSION options perform the\nsame functions as the --ssl-xxx and --tls-version client options\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.7/en/connection-options.html#encrypt\ned-connection-options. The correspondence between the two sets of\noptions, and the use of the MASTER_SSL_xxx and MASTER_TLS_VERSION\noptions to set up a secure connection, is explained in\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-solutions-encrypted\n-connections.html.\n\nThe MASTER_HEARTBEAT_PERIOD, MASTER_CONNECT_RETRY, and\nMASTER_RETRY_COUNT options control how the replica recognizes that the\nconnection to the source has been lost and makes attempts to reconnect.\n\no The slave_net_timeout system variable specifies the number of seconds\n that the replica waits for either more data or a heartbeat signal\n from the source, before the replica considers the connection broken,\n aborts the read, and tries to reconnect. The default value is 60\n seconds (one minute). Prior to MySQL 5.7.7, the default was 3600\n seconds (one hour).\n\no The heartbeat interval, which stops the connection timeout occurring\n in the absence of data if the connection is still good, is controlled\n by the MASTER_HEARTBEAT_PERIOD option. A heartbeat signal is sent to\n the replica after that number of seconds, and the waiting period is\n reset whenever the source\'s binary log is updated with an event.\n Heartbeats are therefore sent by the source only if there are no\n unsent events in the binary log file for a period longer than this.\n The heartbeat interval interval is a decimal value having the range 0\n to 4294967 seconds and a resolution in milliseconds; the smallest\n nonzero value is 0.001. Setting interval to 0 disables heartbeats\n altogether. The heartbeat interval defaults to half the value of the\n slave_net_timeout system variable. It is recorded in the source\n metadata repository and shown in the\n replication_connection_configuration Performance Schema table.\n Issuing RESET SLAVE resets the heartbeat interval to the default\n value.\n\no Prior to MySQL 5.7.4, not including MASTER_HEARTBEAT_PERIOD caused\n CHANGE MASTER TO to reset the heartbeat interval to the default (half\n the value of the slave_net_timeout system variable), and\n Slave_received_heartbeats to 0. The heartbeat interval is now not\n reset except by RESET SLAVE. (Bug #18185490)\n\no Note that a change to the value or default setting of\n slave_net_timeout does not automatically change the heartbeat\n interval, whether that has been set explicitly or is using a\n previously calculated default. A warning is issued if you set\n @@GLOBAL.slave_net_timeout to a value less than that of the current\n heartbeat interval. If slave_net_timeout is changed, you must also\n issue CHANGE MASTER TO to adjust the heartbeat interval to an\n appropriate value so that the heartbeat signal occurs before the\n connection timeout. If you do not do this, the heartbeat signal has\n no effect, and if no data is received from the source, the replica\n can make repeated reconnection attempts, creating zombie dump\n threads.\n\no If the replica does need to reconnect, the first retry occurs\n immediately after the timeout. MASTER_CONNECT_RETRY specifies the\n interval between reconnection attempts, and MASTER_RETRY_COUNT limits\n the number of reconnection attempts. If both the default settings are\n used, the replica waits 60 seconds between reconnection attempts\n (MASTER_CONNECT_RETRY=60), and keeps attempting to reconnect at this\n rate for 60 days (MASTER_RETRY_COUNT=86400). A setting of 0 for\n MASTER_RETRY_COUNT means that there is no limit on the number of\n reconnection attempts, so the replica keeps trying to reconnect\n indefinitely. These values are recorded in the source metadata\n repository and shown in the replication_connection_configuration\n Performance Schema table. MASTER_RETRY_COUNT supersedes the\n --master-retry-count server startup option.\n\nMASTER_DELAY specifies how many seconds behind the source the replica\nmust lag. An event received from the source is not executed until at\nleast interval seconds later than its execution on the source. The\ndefault is 0. An error occurs if interval is not a nonnegative integer\nin the range from 0 to 231−1. For more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-delayed.html.\n\nFrom MySQL 5.7, a CHANGE MASTER TO statement employing the MASTER_DELAY\noption can be executed on a running replica when the replication SQL\nthread is stopped.\n\nMASTER_BIND is for use on replicas having multiple network interfaces,\nand determines which of the replica\'s network interfaces is chosen for\nconnecting to the source.\n\nThe address configured with this option, if any, can be seen in the\nMaster_Bind column of the output from SHOW SLAVE STATUS. If you are\nusing a table for the source metadata repository (server started with\nmaster_info_repository=TABLE), the value can also be seen as the\nMaster_bind column of the mysql.slave_master_info table.\n\nThe ability to bind a replica to a specific network interface is also\nsupported by NDB Cluster.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the\nreplication I/O thread should begin reading from the source the next\ntime the thread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the\ncoordinates at which the replication SQL thread should begin reading\nfrom the relay log the next time the thread starts. If you specify any\nof these options, you cannot specify MASTER_AUTO_POSITION = 1\n(described later in this section). If neither of MASTER_LOG_FILE or\nMASTER_LOG_POS is specified, the replica uses the last coordinates of\nthe replication SQL thread before CHANGE MASTER TO was issued. This\nensures that there is no discontinuity in replication, even if the\nreplication SQL thread was late compared to the replication I/O thread,\nwhen you merely want to change, say, the password to use.\n\nFrom MySQL 5.7, a CHANGE MASTER TO statement employing RELAY_LOG_FILE,\nRELAY_LOG_POS, or both options can be executed on a running replica\nwhen the replication SQL thread is stopped. Prior to MySQL 5.7.4,\nCHANGE MASTER TO deletes all relay log files and starts a new one,\nunless you specify RELAY_LOG_FILE or RELAY_LOG_POS. In that case, relay\nlog files are kept; the relay_log_purge global variable is set silently\nto 0. In MySQL 5.7.4 and later, relay logs are preserved if at least\none of the replication SQL thread and the replication I/O thread is\nrunning. If both threads are stopped, all relay log files are deleted\nunless at least one of RELAY_LOG_FILE or RELAY_LOG_POS is specified.\nFor the Group Replication applier channel (group_replication_applier),\nwhich only has an SQL thread and no I/O thread, this is the case if the\nSQL thread is stopped, but with that channel you cannot use the\nRELAY_LOG_FILE and RELAY_LOG_POS options.\n\nRELAY_LOG_FILE can use either an absolute or relative path, and uses\nthe same base name as MASTER_LOG_FILE. (Bug #12190)\n\nWhen MASTER_AUTO_POSITION = 1 is used with CHANGE MASTER TO, the\nreplica attempts to connect to the source using the auto-positioning\nfeature of GTID-based replication, rather than a binary log file based\nposition. From MySQL 5.7, this option can be employed by CHANGE MASTER\nTO only if both the replication SQL thread and the replication I/O\nthread are stopped. Both the replica and the source must have GTIDs\nenabled (GTID_MODE=ON, ON_PERMISSIVE, or OFF_PERMISSIVE on the replica,\nand GTID_MODE=ON on the source). MASTER_LOG_FILE, MASTER_LOG_POS,\nRELAY_LOG_FILE, and RELAY_LOG_POS cannot be specified together with\nMASTER_AUTO_POSITION = 1. If multi-source replication is enabled on the\nreplica, you need to set the MASTER_AUTO_POSITION = 1 option for each\napplicable replication channel.\n\nWith MASTER_AUTO_POSITION = 1 set, in the initial connection handshake,\nthe replica sends a GTID set containing the transactions that it has\nalready received, committed, or both. The source responds by sending\nall transactions recorded in its binary log whose GTID is not included\nin the GTID set sent by the replica. This exchange ensures that the\nsource only sends the transactions with a GTID that the replica has not\nalready recorded or committed. If the replica receives transactions\nfrom more than one source, as in the case of a diamond topology, the\nauto-skip function ensures that the transactions are not applied twice.\nFor details of how the GTID set sent by the replica is computed, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-auto-position\ning.html.\n\nIf any of the transactions that should be sent by the source have been\npurged from the source\'s binary log, or added to the set of GTIDs in\nthe gtid_purged system variable by another method, the source sends the\nerror ER_MASTER_HAS_PURGED_REQUIRED_GTIDS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_master_has_purged_required_gtids) to the replica, and\nreplication does not start. Also, if during the exchange of\ntransactions it is found that the replica has recorded or committed\ntransactions with the source\'s UUID in the GTID, but the source itself\nhas not committed them, the source sends the error\nER_SLAVE_HAS_MORE_GTIDS_THAN_MASTER\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_slave_has_more_gtids_than_master) to the replica and\nreplication does not start. For information on how to handle these\nsituations, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-auto-position\ning.html.\n\nIGNORE_SERVER_IDS takes a comma-separated list of 0 or more server IDs.\nEvents originating from the corresponding servers are ignored, with the\nexception of log rotation and deletion events, which are still recorded\nin the relay log.\n\nIn circular replication, the originating server normally acts as the\nterminator of its own events, so that they are not applied more than\nonce. Thus, this option is useful in circular replication when one of\nthe servers in the circle is removed. Suppose that you have a circular\nreplication setup with 4 servers, having server IDs 1, 2, 3, and 4, and\nserver 3 fails. When bridging the gap by starting replication from\nserver 2 to server 4, you can include IGNORE_SERVER_IDS = (3) in the\nCHANGE MASTER TO statement that you issue on server 4 to tell it to use\nserver 2 as its source instead of server 3. Doing so causes it to\nignore and not to propagate any statements that originated with the\nserver that is no longer in use.\n\nIf a CHANGE MASTER TO statement is issued without any IGNORE_SERVER_IDS\noption, any existing list is preserved. To clear the list of ignored\nservers, it is necessary to use the option with an empty list:\n\nCHANGE MASTER TO IGNORE_SERVER_IDS = ();\n\nPrior to MySQL 5.7.5, RESET SLAVE ALL has no effect on the server ID\nlist. In MySQL 5.7.5 and later, RESET SLAVE ALL clears\nIGNORE_SERVER_IDS. (Bug #18816897)\n\nIf IGNORE_SERVER_IDS contains the server\'s own ID and the server was\nstarted with the --replicate-same-server-id option enabled, an error\nresults.\n\nThe source metadata repository and the output of SHOW SLAVE STATUS\nprovide the list of servers that are currently ignored. For more\ninformation, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replica-logs-status.html, and\n[HELP SHOW SLAVE STATUS].\n\nInvoking CHANGE MASTER TO causes the previous values for MASTER_HOST,\nMASTER_PORT, MASTER_LOG_FILE, and MASTER_LOG_POS to be written to the\nerror log, along with other information about the replica\'s state prior\nto execution.\n\nCHANGE MASTER TO causes an implicit commit of an ongoing transaction.\nSee https://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nIn MySQL 5.7.4 and later, the strict requirement to execute STOP SLAVE\nprior to issuing any CHANGE MASTER TO statement (and START SLAVE\nafterward) is removed. Instead of depending on whether the replica is\nstopped, the behavior of CHANGE MASTER TO depends (in MySQL 5.7.4 and\nlater) on the states of the replication SQL thread and the replication\nI/O thread; which of these threads is stopped or running now determines\nthe options that can or cannot be used with a CHANGE MASTER TO\nstatement at a given point in time. The rules for making this\ndetermination are listed here:\n\no If the SQL thread is stopped, you can execute CHANGE MASTER TO using\n any combination that is otherwise allowed of RELAY_LOG_FILE,\n RELAY_LOG_POS, and MASTER_DELAY options, even if the replication I/O\n thread is running. No other options may be used with this statement\n when the I/O thread is running.\n\no If the I/O thread is stopped, you can execute CHANGE MASTER TO using\n any of the options for this statement (in any allowed combination)\n except RELAY_LOG_FILE, RELAY_LOG_POS, MASTER_DELAY, or\n MASTER_AUTO_POSITION = 1 even when the SQL thread is running.\n\no Both the SQL thread and the I/O thread must be stopped before issuing\n a CHANGE MASTER TO statement that employs MASTER_AUTO_POSITION = 1.\n\nYou can check the current state of the replication SQL thread and the\nreplication I/O thread using SHOW SLAVE STATUS. Note that the Group\nReplication applier channel (group_replication_applier) has no I/O\nthread, only an SQL thread.\n\nFor more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-solutions-switch.html\n.\n\nIf you are using statement-based replication and temporary tables, it\nis possible for a CHANGE MASTER TO statement following a STOP SLAVE\nstatement to leave behind temporary tables on the replica. From MySQL\n5.7, a warning (ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_warn_open_temp_tables_must_be_zero)) is issued whenever\nthis occurs. You can avoid this in such cases by making sure that the\nvalue of the Slave_open_temp_tables system status variable is equal to\n0 prior to executing such a CHANGE MASTER TO statement.\n\nCHANGE MASTER TO is useful for setting up a replica when you have the\nsnapshot of the replication source server and have recorded the\nsource\'s binary log coordinates corresponding to the time of the\nsnapshot. After loading the snapshot into the replica to synchronize it\nwith the source, you can run CHANGE MASTER TO\nMASTER_LOG_FILE=\'log_name\', MASTER_LOG_POS=log_pos on the replica to\nspecify the coordinates at which the replica should begin reading the\nsource\'s binary log.\n\nThe following example changes the replication source server the replica\nuses and establishes the source\'s binary log coordinates from which the\nreplica begins reading. This is used when you want to set up the\nreplica to replicate the source:\n\nCHANGE MASTER TO\n MASTER_HOST=\'source2.example.com\',\n MASTER_USER=\'replication\',\n MASTER_PASSWORD=\'password\',\n MASTER_PORT=3306,\n MASTER_LOG_FILE=\'source2-bin.001\',\n MASTER_LOG_POS=4,\n MASTER_CONNECT_RETRY=10;\n\nThe next example shows an operation that is less frequently employed.\nIt is used when the replica has relay log files that you want it to\nexecute again for some reason. To do this, the source need not be\nreachable. You need only use CHANGE MASTER TO and start the SQL thread\n(START SLAVE SQL_THREAD):\n\nCHANGE MASTER TO\n RELAY_LOG_FILE=\'replica-relay-bin.006\',\n RELAY_LOG_POS=4025;\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/change-master-to.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/change-master-to.html'),(553,'CHANGE REPLICATION FILTER',41,'Syntax:\nCHANGE REPLICATION FILTER filter[, filter][, ...]\n\nfilter: {\n REPLICATE_DO_DB = (db_list)\n | REPLICATE_IGNORE_DB = (db_list)\n | REPLICATE_DO_TABLE = (tbl_list)\n | REPLICATE_IGNORE_TABLE = (tbl_list)\n | REPLICATE_WILD_DO_TABLE = (wild_tbl_list)\n | REPLICATE_WILD_IGNORE_TABLE = (wild_tbl_list)\n | REPLICATE_REWRITE_DB = (db_pair_list)\n}\n\ndb_list:\n db_name[, db_name][, ...]\n\ntbl_list:\n db_name.table_name[, db_table_name][, ...]\nwild_tbl_list:\n \'db_pattern.table_pattern\'[, \'db_pattern.table_pattern\'][, ...]\n\ndb_pair_list:\n (db_pair)[, (db_pair)][, ...]\n\ndb_pair:\n from_db, to_db\n\nCHANGE REPLICATION FILTER sets one or more replication filtering rules\non the replica in the same way as starting the replica mysqld with\nreplication filtering options such as --replicate-do-db or\n--replicate-wild-ignore-table. Filters set using this statement differ\nfrom those set using the server options in two key respects:\n\n1. The statement does not require restarting the server to take effect,\n only that the replication SQL thread be stopped using STOP SLAVE\n SQL_THREAD first (and restarted with START SLAVE SQL_THREAD\n afterwards).\n\n2. The effects of the statement are not persistent; any filters set\n using CHANGE REPLICATION FILTER are lost following a restart of the\n replica mysqld.\n\nCHANGE REPLICATION FILTER requires the SUPER privilege.\n\nReplication filters cannot be set on a MySQL server instance that is\nconfigured for Group Replication, because filtering transactions on\nsome servers would make the group unable to reach agreement on a\nconsistent state.\n\nThe following list shows the CHANGE REPLICATION FILTER options and how\nthey relate to --replicate-* server options:\n\no REPLICATE_DO_DB: Include updates based on database name. Equivalent\n to --replicate-do-db.\n\no REPLICATE_IGNORE_DB: Exclude updates based on database name.\n Equivalent to --replicate-ignore-db.\n\no REPLICATE_DO_TABLE: Include updates based on table name. Equivalent\n to --replicate-do-table.\n\no REPLICATE_IGNORE_TABLE: Exclude updates based on table name.\n Equivalent to --replicate-ignore-table.\n\no REPLICATE_WILD_DO_TABLE: Include updates based on wildcard pattern\n matching table name. Equivalent to --replicate-wild-do-table.\n\no REPLICATE_WILD_IGNORE_TABLE: Exclude updates based on wildcard\n pattern matching table name. Equivalent to\n --replicate-wild-ignore-table.\n\no REPLICATE_REWRITE_DB: Perform updates on replica after substituting\n new name on replica for specified database on source. Equivalent to\n --replicate-rewrite-db.\n\nThe precise effects of REPLICATE_DO_DB and REPLICATE_IGNORE_DB filters\nare dependent on whether statement-based or row-based replication is in\neffect. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-rules.html, for\nmore information.\n\nMultiple replication filtering rules can be created in a single CHANGE\nREPLICATION FILTER statement by separating the rules with commas, as\nshown here:\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (d1), REPLICATE_IGNORE_DB = (d2);\n\nIssuing the statement just shown is equivalent to starting the replica\nmysqld with the options --replicate-do-db=d1 --replicate-ignore-db=d2.\n\nIf the same filtering rule is specified multiple times, only the last\nsuch rule is actually used. For example, the two statements shown here\nhave exactly the same effect, because the first REPLICATE_DO_DB rule in\nthe first statement is ignored:\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (db1, db2), REPLICATE_DO_DB = (db3, db4);\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (db3,db4);\n\n*Caution*:\n\nThis behavior differs from that of the --replicate-* filter options\nwhere specifying the same option multiple times causes the creation of\nmultiple filter rules.\n\nNames of tables and database not containing any special characters need\nnot be quoted. Values used with REPLICATION_WILD_TABLE and\nREPLICATION_WILD_IGNORE_TABLE are string expressions, possibly\ncontaining (special) wildcard characters, and so must be quoted. This\nis shown in the following example statements:\n\nCHANGE REPLICATION FILTER\n REPLICATE_WILD_DO_TABLE = (\'db1.old%\');\n\nCHANGE REPLICATION FILTER\n REPLICATE_WILD_IGNORE_TABLE = (\'db1.new%\', \'db2.new%\');\n\nValues used with REPLICATE_REWRITE_DB represent pairs of database\nnames; each such value must be enclosed in parentheses. The following\nstatement rewrites statements occurring on database db1 on the source\nto database db2 on the replica:\n\nCHANGE REPLICATION FILTER REPLICATE_REWRITE_DB = ((db1, db2));\n\nThe statement just shown contains two sets of parentheses, one\nenclosing the pair of database names, and the other enclosing the\nentire list. This is perhaps more easily seen in the following example,\nwhich creates two rewrite-db rules, one rewriting database dbA to dbB,\nand one rewriting database dbC to dbD:\n\nCHANGE REPLICATION FILTER\n REPLICATE_REWRITE_DB = ((dbA, dbB), (dbC, dbD));\n\nThis statement leaves any existing replication filtering rules\nunchanged; to unset all filters of a given type, set the filter\'s value\nto an explicitly empty list, as shown in this example, which removes\nall existing REPLICATE_DO_DB and REPLICATE_IGNORE_DB rules:\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (), REPLICATE_IGNORE_DB = ();\n\nSetting a filter to empty in this way removes all existing rules, does\nnot create any new ones, and does not restore any rules set at mysqld\nstartup using --replicate-* options on the command line or in the\nconfiguration file.\n\nValues employed with REPLICATE_WILD_DO_TABLE and\nREPLICATE_WILD_IGNORE_TABLE must be in the format db_name.tbl_name.\nPrior to MySQL 5.7.5, this was not strictly enforced, although using\nnonconforming values with these options could lead to erroneous results\n(Bug #18095449).\n\nFor more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-rules.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/change-replication-filter.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/change-replication-filter.html'),(554,'RESET SLAVE',41,'Syntax:\nRESET SLAVE [ALL] [channel_option]\n\nchannel_option:\n FOR CHANNEL channel\n\nRESET SLAVE makes the replica forget its replication position in the\nsource\'s binary log. This statement is meant to be used for a clean\nstart: It clears the replication metadata repositories, deletes all the\nrelay log files, and starts a new relay log file. It also resets to 0\nthe replication delay specified with the MASTER_DELAY option to CHANGE\nMASTER TO.\n\n*Note*:\n\nAll relay log files are deleted, even if they have not been completely\nexecuted by the replication SQL thread. (This is a condition likely to\nexist on a replica if you have issued a STOP SLAVE statement or if the\nreplica is highly loaded.)\n\nFor a server where GTIDs are in use (gtid_mode is ON), issuing RESET\nSLAVE has no effect on the GTID execution history. The statement does\nnot change the values of gtid_executed or gtid_purged, or the\nmysql.gtid_executed table. If you need to reset the GTID execution\nhistory, use RESET MASTER, even if the GTID-enabled server is a replica\nwhere binary logging is disabled.\n\nRESET SLAVE requires the RELOAD privilege.\n\nTo use RESET SLAVE, the replication threads must be stopped, so on a\nrunning replica use STOP SLAVE before issuing RESET SLAVE. To use RESET\nSLAVE on a Group Replication group member, the member status must be\nOFFLINE, meaning that the plugin is loaded but the member does not\ncurrently belong to any group. A group member can be taken offline by\nusing a STOP GROUP REPLICATION statement.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the RESET SLAVE statement to a specific\nreplication channel. Combining a FOR CHANNEL channel clause with the\nALL option deletes the specified channel. If no channel is named and no\nextra channels exist, the statement applies to the default channel.\nIssuing a RESET SLAVE ALL statement without a FOR CHANNEL channel\nclause when multiple replication channels exist deletes all replication\nchannels and recreates only the default channel. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nRESET SLAVE does not change any replication connection parameters such\nas the source\'s host name and port, or the replication user account\nname and its password.\n\no From MySQL 5.7.24, when master_info_repository=TABLE is set on the\n server, replication connection parameters are preserved in the\n crash-safe InnoDB table mysql.slave_master_info as part of the RESET\n SLAVE operation. They are also retained in memory. In the event of an\n unexpected server exit or deliberate restart after issuing RESET\n SLAVE but before issuing START SLAVE, the replication connection\n parameters are retrieved from the table and reused for the new\n connection.\n\no When master_info_repository=FILE is set on the server (which is the\n default in MySQL 5.7), replication connection parameters are only\n retained in memory. If the replica mysqld is restarted immediately\n after issuing RESET SLAVE due to an unexpected server exit or\n deliberate restart, the connection parameters are lost. In that case,\n you must issue a CHANGE MASTER TO statement after the server start to\n respecify the connection parameters before issuing START SLAVE.\n\nIf you want to reset the connection parameters intentionally, you need\nto use RESET SLAVE ALL, which clears the connection parameters. In that\ncase, you must issue a CHANGE MASTER TO statement after the server\nstart to specify the new connection parameters.\n\nRESET SLAVE causes an implicit commit of an ongoing transaction. See\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nIf the replication SQL thread was in the middle of replicating\ntemporary tables when it was stopped, and RESET SLAVE is issued, these\nreplicated temporary tables are deleted on the replica.\n\nPrior to MySQL 5.7.5, RESET SLAVE also had the effect of resetting both\nthe heartbeat period (Slave_heartbeat_period) and\nSSL_VERIFY_SERVER_CERT. This issue is fixed in MySQL 5.7.5 and later.\n(Bug #18777899, Bug #18778485)\n\nPrior to MySQL 5.7.5, RESET SLAVE ALL did not clear the\nIGNORE_SERVER_IDS list set by CHANGE MASTER TO. In MySQL 5.7.5 and\nlater, the statement clears the list. (Bug #18816897)\n\n*Note*:\n\nWhen used on an NDB Cluster replica SQL node, RESET SLAVE clears the\nmysql.ndb_apply_status table. You should keep in mind when using this\nstatement that ndb_apply_status uses the NDB storage engine and so is\nshared by all SQL nodes attached to the replica cluster.\n\nYou can override this behavior by issuing SET GLOBAL\n@@ndb_clear_apply_status=OFF prior to executing RESET SLAVE, which\nkeeps the replica from purging the ndb_apply_status table in such\ncases.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/reset-slave.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/reset-slave.html'),(555,'START SLAVE',41,'Syntax:\nSTART SLAVE [thread_types] [until_option] [connection_options] [channel_option]\n\nthread_types:\n [thread_type [, thread_type] ... ]\n\nthread_type:\n IO_THREAD | SQL_THREAD\n\nuntil_option:\n UNTIL { {SQL_BEFORE_GTIDS | SQL_AFTER_GTIDS} = gtid_set\n | MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\n | RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n | SQL_AFTER_MTS_GAPS }\n\nconnection_options:\n [USER=\'user_name\'] [PASSWORD=\'user_pass\'] [DEFAULT_AUTH=\'plugin_name\'] [PLUGIN_DIR=\'plugin_dir\']\n\n\nchannel_option:\n FOR CHANNEL channel\n\ngtid_set:\n uuid_set [, uuid_set] ...\n | \'\'\n\nuuid_set:\n uuid:interval[:interval]...\n\nuuid:\n hhhhhhhh-hhhh-hhhh-hhhh-hhhhhhhhhhhh\n\nh:\n [0-9,A-F]\n\ninterval:\n n[-n]\n\n (n >= 1)\n\nSTART SLAVE starts the replication threads, either together or\nseparately. The statement requires the SUPER privilege. START SLAVE\ncauses an implicit commit of an ongoing transaction (see\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html).\n\nFor the thread type options, you can specify IO_THREAD, SQL_THREAD,\nboth of these, or neither of them. Only the threads that are started\nare affected by the statement.\n\no START SLAVE with no thread type options starts all of the replication\n threads, and so does START SLAVE with both of the thread type\n options.\n\no IO_THREAD starts the replication receiver thread, which reads events\n from the source server and stores them in the relay log.\n\no SQL_THREAD starts the replication applier thread, which reads events\n from the relay log and executes them. A multithreaded replica (with\n slave_parallel_workers > 0) applies transactions using a coordinator\n thread and multiple applier threads, and SQL_THREAD starts all of\n these.\n\n*Important*:\n\nSTART SLAVE sends an acknowledgment to the user after all the\nreplication threads have started. However, the replication receiver\nthread might not yet have connected to the source successfully, or an\napplier thread might stop when applying an event right after starting.\nSTART SLAVE does not continue to monitor the threads after they are\nstarted, so it does not warn you if they subsequently stop or cannot\nconnect. You must check the replica\'s error log for error messages\ngenerated by the replication threads, or check that they are running\nsatisfactorily with SHOW SLAVE STATUS. A successful START SLAVE\nstatement causes SHOW SLAVE STATUS to show Slave_SQL_Running=Yes, but\nit might or might not show Slave_IO_Running=Yes, because\nSlave_IO_Running=Yes is only shown if the receiver thread is both\nrunning and connected. For more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-administration-stat\nus.html.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the START SLAVE statement to a specific\nreplication channel. If no clause is named and no extra channels exist,\nthe statement applies to the default channel. If a START SLAVE\nstatement does not have a channel defined when using multiple channels,\nthis statement starts the specified threads for all channels. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nThe replication channels for Group Replication\n(group_replication_applier and group_replication_recovery) are managed\nautomatically by the server instance. The only Group Replication\nchannel that you can interact with is the group_replication_applier\nchannel. This channel only has an applier thread and has no receiver\nthread, so it can be started by using the SQL_THREAD option without the\nIO_THREAD option. START SLAVE cannot be used at all with the\ngroup_replication_recovery channel.\n\nSTART SLAVE supports pluggable user-password authentication (see\nhttps://dev.mysql.com/doc/refman/5.7/en/pluggable-authentication.html)\nwith the USER, PASSWORD, DEFAULT_AUTH and PLUGIN_DIR options, as\ndescribed in the following list. When you use these options, you must\nstart the receiver thread (IO_THREAD option) or all the replication\nthreads - you cannot start the replication applier thread (SQL_THREAD\noption) alone.\n\no USER\n\n The user name for the account. You must set this if PASSWORD is used.\n The option cannot be set to an empty or null string.\n\no PASSWORD\n\n The password for the named user account.\n\no DEFAULT_AUTH\n\n The name of the authentication plugin. The default is MySQL native\n authentication.\n\no PLUGIN_DIR\n\n The location of the authentication plugin.\n\n*Important*:\n\nThe password that you set using START SLAVE is masked when it is\nwritten to MySQL Server\'s logs, Performance Schema tables, and SHOW\nPROCESSLIST statements. However, it is sent in plain text over the\nconnection to the replica server instance. To protect the password in\ntransit, use SSL/TLS encryption, an SSH tunnel, or another method of\nprotecting the connection from unauthorized viewing, for the connection\nbetween the replica server instance and the client that you use to\nissue START SLAVE.\n\nThe UNTIL clause makes the replica start replication, then process\ntransactions up to the point that you specify in the UNTIL clause, then\nstop again. The UNTIL clause can be used to make a replica proceed\nuntil just before the point where you want to skip a transaction that\nis unwanted, and then skip the transaction as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-administration-skip\n.html. To identify a transaction, you can use mysqlbinlog with the\nsource\'s binary log or the replica\'s relay log, or use a SHOW BINLOG\nEVENTS statement.\n\nYou can also use the UNTIL clause for debugging replication by\nprocessing transactions one at a time or in sections. If you are using\nthe UNTIL clause to do this, start the replica with the\n--skip-slave-start option to prevent the SQL thread from running when\nthe replica server starts. Remove the option after the procedure is\ncomplete, so that it is not forgotten in the event of an unexpected\nserver restart.\n\nThe SHOW SLAVE STATUS statement includes output fields that display the\ncurrent values of the UNTIL condition. The UNTIL condition lasts for as\nlong as the affected threads are still running, and is removed when\nthey stop.\n\nThe UNTIL clause operates on the replication applier thread (SQL_THREAD\noption). You can use the SQL_THREAD option or let the replica default\nto starting both threads. If you use the IO_THREAD option alone, the\nUNTIL clause is ignored because the applier thread is not started.\n\nThe point that you specify in the UNTIL clause can be any one (and only\none) of the following options:\n\no SOURCE_LOG_FILE and SOURCE_LOG_POS\n\n These options make the replication applier process transactions up to\n a position in its relay log, identified by the file name and file\n position of the corresponding point in the binary log on the source\n server. The applier thread finds the nearest transaction boundary at\n or after the specified position, finishes applying the transaction,\n and stops there.\n\no RELAY_LOG_FILE and RELAY_LOG_POS\n\n These options make the replication applier process transactions up to\n a position in the replica\'s relay log, identified by the relay log\n file name and a position in that file. The applier thread finds the\n nearest transaction boundary at or after the specified position,\n finishes applying the transaction, and stops there.\n\no SQL_BEFORE_GTIDS\n\n This option makes the replication applier start processing\n transactions and stop when it encounters any transaction that is in\n the specified GTID set. The encountered transaction from the GTID set\n is not applied, and nor are any of the other transactions in the GTID\n set. The option takes a GTID set containing one or more global\n transaction identifiers as an argument (see\n https://dev.mysql.com/doc/refman/5.7/en/replication-gtids-concepts.ht\n ml#replication-gtids-concepts-gtid-sets). Transactions in a GTID set\n do not necessarily appear in the replication stream in the order of\n their GTIDs, so the transaction before which the applier stops is not\n necessarily the earliest.\n\no SQL_AFTER_GTIDS\n\n This option makes the replication applier start processing\n transactions and stop when it has processed all of the transactions\n in a specified GTID set. The option takes a GTID set containing one\n or more global transaction identifiers as an argument (see\n https://dev.mysql.com/doc/refman/5.7/en/replication-gtids-concepts.ht\n ml#replication-gtids-concepts-gtid-sets).\n\n With SQL_AFTER_GTIDS, the replication threads stop when they have\n processed the transactions in the GTID set and encounter the first\n transaction whose GTID is not part of the GTID set. For example,\n executing START REPLICA UNTIL SQL_AFTER_GTIDS =\n 3E11FA47-71CA-11E1-9E33-C80AA9429562:11-56 causes the replica to\n obtain all transactions just mentioned from the source, including all\n of the transactions having the sequence numbers 11 through 56, and\n then to stop without processing any additional transactions.\n\no SQL_AFTER_MTS_GAPS\n\n For a multithreaded replica only (with slave_parallel_workers > 0),\n this option makes the replica process transactions up to the point\n where there are no more gaps in the sequence of transactions executed\n from the relay log. When using a multithreaded replica, there is a\n chance of gaps occurring in the following situations:\n\n o The coordinator thread is stopped.\n\n o An error occurs in the applier threads.\n\n o mysqld shuts down unexpectedly.\n\n When a replication channel has gaps, the replica\'s database is in a\n state that might never have existed on the source. The replica tracks\n the gaps internally and disallows CHANGE MASTER TO statements that\n would remove the gap information if they executed.\n\n Issuing START SLAVE on a multithreaded replica with gaps in the\n sequence of transactions executed from the relay log generates a\n warning. To correct this situation, the solution is to use START\n SLAVE UNTIL SQL_AFTER_MTS_GAPS. See\n https://dev.mysql.com/doc/refman/5.7/en/replication-features-transact\n ion-inconsistencies.html for more information.\n\n If you need to change a failed multithreaded replica to\n single-threaded mode, you can issue the following series of\n statements, in the order shown:\n\nSTART SLAVE UNTIL SQL_AFTER_MTS_GAPS;\nSET @@GLOBAL.slave_parallel_workers = 0;\nSTART SLAVE SQL_THREAD;\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/start-slave.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/start-slave.html'),(556,'STOP SLAVE',41,'Syntax:\nSTOP SLAVE [thread_types] [channel_option]\n\nthread_types:\n [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nchannel_option:\n FOR CHANNEL channel\n\nStops the replication threads. STOP SLAVE requires the\nREPLICATION_SLAVE_ADMIN\n(https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_\nreplication-slave-admin) or SUPER privilege. Recommended best practice\nis to execute STOP SLAVE on the replica before stopping the replica\nserver (see\nhttps://dev.mysql.com/doc/refman/5.7/en/server-shutdown.html, for more\ninformation).\n\nWhen using the row-based logging format: You should execute STOP SLAVE\nor STOP SLAVE SQL_THREAD on the replica prior to shutting down the\nreplica server if you are replicating any tables that use a\nnontransactional storage engine (see the Note later in this section).\n\nLike START SLAVE, this statement may be used with the IO_THREAD and\nSQL_THREAD options to name the thread or threads to be stopped. Note\nthat the Group Replication applier channel (group_replication_applier)\nhas no replication I/O thread, only a replication SQL thread. Using the\nSQL_THREAD option therefore stops this channel completely.\n\nSTOP SLAVE causes an implicit commit of an ongoing transaction. See\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\ngtid_next must be set to AUTOMATIC before issuing this statement.\n\nYou can control how long STOP SLAVE waits before timing out by setting\nthe rpl_stop_slave_timeout system variable. This can be used to avoid\ndeadlocks between STOP SLAVE and other SQL statements using different\nclient connections to the replica. When the timeout value is reached,\nthe issuing client returns an error message and stops waiting, but the\nSTOP SLAVE instruction remains in effect. Once the replication threads\nare no longer busy, the STOP SLAVE statement is executed and the\nreplica stops.\n\nSome CHANGE MASTER TO statements are allowed while the replica is\nrunning, depending on the states of the replication SQL thread and the\nreplication I/O thread. However, using STOP SLAVE prior to executing\nCHANGE MASTER TO in such cases is still supported. See [HELP CHANGE\nMASTER TO], and\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-solutions-switch.html\n, for more information.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the STOP SLAVE statement to a specific\nreplication channel. If no channel is named and no extra channels\nexist, the statement applies to the default channel. If a STOP SLAVE\nstatement does not name a channel when using multiple channels, this\nstatement stops the specified threads for all channels. This statement\ncannot be used with the group_replication_recovery channel. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nWhen using statement-based replication: changing the source while it\nhas open temporary tables is potentially unsafe. This is one of the\nreasons why statement-based replication of temporary tables is not\nrecommended. You can find out whether there are any temporary tables on\nthe replica by checking the value of Slave_open_temp_tables; when using\nstatement-based replication, this value should be 0 before executing\nCHANGE MASTER TO. If there are any temporary tables open on the\nreplica, issuing a CHANGE MASTER TO statement after issuing a STOP\nSLAVE causes an ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html\n#error_er_warn_open_temp_tables_must_be_zero) warning.\n\nWhen using a multithreaded replica (slave_parallel_workers is a nonzero\nvalue), any gaps in the sequence of transactions executed from the\nrelay log are closed as part of stopping the worker threads. If the\nreplica is stopped unexpectedly (for example due to an error in a\nworker thread, or another thread issuing KILL) while a STOP SLAVE\nstatement is executing, the sequence of executed transactions from the\nrelay log may become inconsistent. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-features-transactio\nn-inconsistencies.html, for more information.\n\nIf the current replication event group has modified one or more\nnontransactional tables, STOP SLAVE waits for up to 60 seconds for the\nevent group to complete, unless you issue a KILL QUERY or KILL\nCONNECTION statement for the replication SQL thread. If the event group\nremains incomplete after the timeout, an error message is logged.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/stop-slave.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/stop-slave.html'),(557,'PREPARE',42,'Syntax:\nPREPARE stmt_name FROM preparable_stmt\n\nThe PREPARE statement prepares a SQL statement and assigns it a name,\nstmt_name, by which to refer to the statement later. The prepared\nstatement is executed with EXECUTE and released with DEALLOCATE\nPREPARE. For examples, see\nhttps://dev.mysql.com/doc/refman/5.7/en/sql-prepared-statements.html.\n\nStatement names are not case-sensitive. preparable_stmt is either a\nstring literal or a user variable that contains the text of the SQL\nstatement. The text must represent a single statement, not multiple\nstatements. Within the statement, ? characters can be used as parameter\nmarkers to indicate where data values are to be bound to the query\nlater when you execute it. The ? characters should not be enclosed\nwithin quotation marks, even if you intend to bind them to string\nvalues. Parameter markers can be used only where data values should\nappear, not for SQL keywords, identifiers, and so forth.\n\nIf a prepared statement with the given name already exists, it is\ndeallocated implicitly before the new statement is prepared. This means\nthat if the new statement contains an error and cannot be prepared, an\nerror is returned and no statement with the given name exists.\n\nThe scope of a prepared statement is the session within which it is\ncreated, which as several implications:\n\no A prepared statement created in one session is not available to other\n sessions.\n\no When a session ends, whether normally or abnormally, its prepared\n statements no longer exist. If auto-reconnect is enabled, the client\n is not notified that the connection was lost. For this reason,\n clients may wish to disable auto-reconnect. See Automatic\n Reconnection Control\n (https://dev.mysql.com/doc/c-api/5.7/en/c-api-auto-reconnect.html).\n\no A prepared statement created within a stored program continues to\n exist after the program finishes executing and can be executed\n outside the program later.\n\no A statement prepared in stored program context cannot refer to stored\n procedure or function parameters or local variables because they go\n out of scope when the program ends and would be unavailable were the\n statement to be executed later outside the program. As a workaround,\n refer instead to user-defined variables, which also have session\n scope; see\n https://dev.mysql.com/doc/refman/5.7/en/user-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/prepare.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/prepare.html'),(558,'EXECUTE STATEMENT',42,'Syntax:\nEXECUTE stmt_name\n [USING @var_name [, @var_name] ...]\n\nAfter preparing a statement with PREPARE, you execute it with an\nEXECUTE statement that refers to the prepared statement name. If the\nprepared statement contains any parameter markers, you must supply a\nUSING clause that lists user variables containing the values to be\nbound to the parameters. Parameter values can be supplied only by user\nvariables, and the USING clause must name exactly as many variables as\nthe number of parameter markers in the statement.\n\nYou can execute a given prepared statement multiple times, passing\ndifferent variables to it or setting the variables to different values\nbefore each execution.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/execute.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/execute.html'),(559,'DEALLOCATE PREPARE',42,'Syntax:\n{DEALLOCATE | DROP} PREPARE stmt_name\n\nTo deallocate a prepared statement produced with PREPARE, use a\nDEALLOCATE PREPARE statement that refers to the prepared statement\nname. Attempting to execute a prepared statement after deallocating it\nresults in an error. If too many prepared statements are created and\nnot deallocated by either the DEALLOCATE PREPARE statement or the end\nof the session, you might encounter the upper limit enforced by the\nmax_prepared_stmt_count system variable.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/deallocate-prepare.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/deallocate-prepare.html'),(560,'DROP PREPARE',42,'Syntax:\n{DEALLOCATE | DROP} PREPARE stmt_name\n\nTo deallocate a prepared statement produced with PREPARE, use a\nDEALLOCATE PREPARE statement that refers to the prepared statement\nname. Attempting to execute a prepared statement after deallocating it\nresults in an error. If too many prepared statements are created and\nnot deallocated by either the DEALLOCATE PREPARE statement or the end\nof the session, you might encounter the upper limit enforced by the\nmax_prepared_stmt_count system variable.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/deallocate-prepare.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/deallocate-prepare.html'),(561,'BEGIN END',43,'Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\nBEGIN ... END syntax is used for writing compound statements, which can\nappear within stored programs (stored procedures and functions,\ntriggers, and events). A compound statement can contain multiple\nstatements, enclosed by the BEGIN and END keywords. statement_list\nrepresents a list of one or more statements, each terminated by a\nsemicolon (;) statement delimiter. The statement_list itself is\noptional, so the empty compound statement (BEGIN END) is legal.\n\nBEGIN ... END blocks can be nested.\n\nUse of multiple statements requires that a client is able to send\nstatement strings containing the ; statement delimiter. In the mysql\ncommand-line client, this is handled with the delimiter command.\nChanging the ; end-of-statement delimiter (for example, to //) permit ;\nto be used in a program body. For an example, see\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-programs-defining.html.\n\nA BEGIN ... END block can be labeled. See [HELP labels].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/begin-end.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/begin-end.html'),(562,'LABELS',43,'Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nLabels are permitted for BEGIN ... END blocks and for the LOOP, REPEAT,\nand WHILE statements. Label use for those statements follows these\nrules:\n\no begin_label must be followed by a colon.\n\no begin_label can be given without end_label. If end_label is present,\n it must be the same as begin_label.\n\no end_label cannot be given without begin_label.\n\no Labels at the same nesting level must be distinct.\n\no Labels can be up to 16 characters long.\n\nTo refer to a label within the labeled construct, use an ITERATE or\nLEAVE statement. The following example uses those statements to\ncontinue iterating or terminate the loop:\n\nCREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN ITERATE label1; END IF;\n LEAVE label1;\n END LOOP label1;\nEND;\n\nThe scope of a block label does not include the code for handlers\ndeclared within the block. For details, see [HELP DECLARE HANDLER].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/statement-labels.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/statement-labels.html'),(563,'DECLARE VARIABLE',43,'Syntax:\nDECLARE var_name [, var_name] ... type [DEFAULT value]\n\nThis statement declares local variables within stored programs. To\nprovide a default value for a variable, include a DEFAULT clause. The\nvalue can be specified as an expression; it need not be a constant. If\nthe DEFAULT clause is missing, the initial value is NULL.\n\nLocal variables are treated like stored routine parameters with respect\nto data type and overflow checking. See [HELP CREATE PROCEDURE].\n\nVariable declarations must appear before cursor or handler\ndeclarations.\n\nLocal variable names are not case-sensitive. Permissible characters and\nquoting rules are the same as for other identifiers, as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/identifiers.html.\n\nThe scope of a local variable is the BEGIN ... END block within which\nit is declared. The variable can be referred to in blocks nested within\nthe declaring block, except those blocks that declare a variable with\nthe same name.\n\nFor examples of variable declarations, see\nhttps://dev.mysql.com/doc/refman/5.7/en/local-variable-scope.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/declare-local-variable.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/declare-local-variable.html'),(564,'CASE STATEMENT',43,'Syntax:\nCASE case_value\n WHEN when_value THEN statement_list\n [WHEN when_value THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nOr:\n\nCASE\n WHEN search_condition THEN statement_list\n [WHEN search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nThe CASE statement for stored programs implements a complex conditional\nconstruct.\n\n*Note*:\n\nThere is also a CASE operator, which differs from the CASE statement\ndescribed here. See\nhttps://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html.\nThe CASE statement cannot have an ELSE NULL clause, and it is\nterminated with END CASE instead of END.\n\nFor the first syntax, case_value is an expression. This value is\ncompared to the when_value expression in each WHEN clause until one of\nthem is equal. When an equal when_value is found, the corresponding\nTHEN clause statement_list executes. If no when_value is equal, the\nELSE clause statement_list executes, if there is one.\n\nThis syntax cannot be used to test for equality with NULL because NULL\n= NULL is false. See\nhttps://dev.mysql.com/doc/refman/5.7/en/working-with-null.html.\n\nFor the second syntax, each WHEN clause search_condition expression is\nevaluated until one is true, at which point its corresponding THEN\nclause statement_list executes. If no search_condition is equal, the\nELSE clause statement_list executes, if there is one.\n\nIf no when_value or search_condition matches the value tested and the\nCASE statement contains no ELSE clause, a Case not found for CASE\nstatement error results.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nTo handle situations where no value is matched by any WHEN clause, use\nan ELSE containing an empty BEGIN ... END block, as shown in this\nexample. (The indentation used here in the ELSE clause is for purposes\nof clarity only, and is not otherwise significant.)\n\nDELIMITER |\n\nCREATE PROCEDURE p()\n BEGIN\n DECLARE v INT DEFAULT 1;\n\n CASE v\n WHEN 2 THEN SELECT v;\n WHEN 3 THEN SELECT 0;\n ELSE\n BEGIN\n END;\n END CASE;\n END;\n |\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/case.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/case.html'),(565,'IF STATEMENT',43,'Syntax:\nIF search_condition THEN statement_list\n [ELSEIF search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND IF\n\nThe IF statement for stored programs implements a basic conditional\nconstruct.\n\n*Note*:\n\nThere is also an IF() function, which differs from the IF statement\ndescribed here. See\nhttps://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html.\nThe IF statement can have THEN, ELSE, and ELSEIF clauses, and it is\nterminated with END IF.\n\nIf a given search_condition evaluates to true, the corresponding THEN\nor ELSEIF clause statement_list executes. If no search_condition\nmatches, the ELSE clause statement_list executes.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/if.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/if.html'),(566,'ITERATE',43,'Syntax:\nITERATE label\n\nITERATE can appear only within LOOP, REPEAT, and WHILE statements.\nITERATE means \"start the loop again.\"\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/iterate.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/iterate.html'),(567,'LEAVE',43,'Syntax:\nLEAVE label\n\nThis statement is used to exit the flow control construct that has the\ngiven label. If the label is for the outermost stored program block,\nLEAVE exits the program.\n\nLEAVE can be used within BEGIN ... END or loop constructs (LOOP,\nREPEAT, WHILE).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/leave.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/leave.html'),(568,'LOOP',43,'Syntax:\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\nLOOP implements a simple loop construct, enabling repeated execution of\nthe statement list, which consists of one or more statements, each\nterminated by a semicolon (;) statement delimiter. The statements\nwithin the loop are repeated until the loop is terminated. Usually,\nthis is accomplished with a LEAVE statement. Within a stored function,\nRETURN can also be used, which exits the function entirely.\n\nNeglecting to include a loop-termination statement results in an\ninfinite loop.\n\nA LOOP statement can be labeled. For the rules regarding label use, see\n[HELP labels].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/loop.html\n\n','CREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN\n ITERATE label1;\n END IF;\n LEAVE label1;\n END LOOP label1;\n SET @x = p1;\nEND;\n','https://dev.mysql.com/doc/refman/5.7/en/loop.html'),(569,'REPEAT LOOP',43,'Syntax:\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\nThe statement list within a REPEAT statement is repeated until the\nsearch_condition expression is true. Thus, a REPEAT always enters the\nloop at least once. statement_list consists of one or more statements,\neach terminated by a semicolon (;) statement delimiter.\n\nA REPEAT statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/repeat.html\n\n','mysql> delimiter //\n\nmysql> CREATE PROCEDURE dorepeat(p1 INT)\n BEGIN\n SET @x = 0;\n REPEAT\n SET @x = @x + 1;\n UNTIL @x > p1 END REPEAT;\n END\n //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL dorepeat(1000)//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n+------+\n| @x |\n+------+\n| 1001 |\n+------+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/repeat.html'),(570,'RETURN',43,'Syntax:\nRETURN expr\n\nThe RETURN statement terminates execution of a stored function and\nreturns the value expr to the function caller. There must be at least\none RETURN statement in a stored function. There may be more than one\nif the function has multiple exit points.\n\nThis statement is not used in stored procedures, triggers, or events.\nThe LEAVE statement can be used to exit a stored program of those\ntypes.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/return.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/return.html'),(571,'WHILE',43,'Syntax:\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nThe statement list within a WHILE statement is repeated as long as the\nsearch_condition expression is true. statement_list consists of one or\nmore SQL statements, each terminated by a semicolon (;) statement\ndelimiter.\n\nA WHILE statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/while.html\n\n','CREATE PROCEDURE dowhile()\nBEGIN\n DECLARE v1 INT DEFAULT 5;\n\n WHILE v1 > 0 DO\n ...\n SET v1 = v1 - 1;\n END WHILE;\nEND;\n','https://dev.mysql.com/doc/refman/5.7/en/while.html'),(572,'CLOSE',43,'Syntax:\nCLOSE cursor_name\n\nThis statement closes a previously opened cursor. For an example, see\nhttps://dev.mysql.com/doc/refman/5.7/en/cursors.html.\n\nAn error occurs if the cursor is not open.\n\nIf not closed explicitly, a cursor is closed at the end of the BEGIN\n... END block in which it was declared.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/close.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/close.html'),(573,'DECLARE CURSOR',43,'Syntax:\nDECLARE cursor_name CURSOR FOR select_statement\n\nThis statement declares a cursor and associates it with a SELECT\nstatement that retrieves the rows to be traversed by the cursor. To\nfetch the rows later, use a FETCH statement. The number of columns\nretrieved by the SELECT statement must match the number of output\nvariables specified in the FETCH statement.\n\nThe SELECT statement cannot have an INTO clause.\n\nCursor declarations must appear before handler declarations and after\nvariable and condition declarations.\n\nA stored program may contain multiple cursor declarations, but each\ncursor declared in a given block must have a unique name. For an\nexample, see https://dev.mysql.com/doc/refman/5.7/en/cursors.html.\n\nFor information available through SHOW statements, it is possible in\nmany cases to obtain equivalent information by using a cursor with an\nINFORMATION_SCHEMA table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/declare-cursor.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/declare-cursor.html'),(574,'FETCH',43,'Syntax:\nFETCH [[NEXT] FROM] cursor_name INTO var_name [, var_name] ...\n\nThis statement fetches the next row for the SELECT statement associated\nwith the specified cursor (which must be open), and advances the cursor\npointer. If a row exists, the fetched columns are stored in the named\nvariables. The number of columns retrieved by the SELECT statement must\nmatch the number of output variables specified in the FETCH statement.\n\nIf no more rows are available, a No Data condition occurs with SQLSTATE\nvalue \'02000\'. To detect this condition, you can set up a handler for\nit (or for a NOT FOUND condition). For an example, see\nhttps://dev.mysql.com/doc/refman/5.7/en/cursors.html.\n\nBe aware that another operation, such as a SELECT or another FETCH, may\nalso cause the handler to execute by raising the same condition. If it\nis necessary to distinguish which operation raised the condition, place\nthe operation within its own BEGIN ... END block so that it can be\nassociated with its own handler.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/fetch.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/fetch.html'),(575,'OPEN',43,'Syntax:\nOPEN cursor_name\n\nThis statement opens a previously declared cursor. For an example, see\nhttps://dev.mysql.com/doc/refman/5.7/en/cursors.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/open.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/open.html'),(576,'DECLARE CONDITION',43,'Syntax:\nDECLARE condition_name CONDITION FOR condition_value\n\ncondition_value: {\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n}\n\nThe DECLARE ... CONDITION statement declares a named error condition,\nassociating a name with a condition that needs specific handling. The\nname can be referred to in a subsequent DECLARE ... HANDLER statement\n(see [HELP DECLARE HANDLER]).\n\nCondition declarations must appear before cursor or handler\ndeclarations.\n\nThe condition_value for DECLARE ... CONDITION indicates the specific\ncondition or class of conditions to associate with the condition name.\nIt can take the following forms:\n\no mysql_error_code: An integer literal indicating a MySQL error code.\n\n Do not use MySQL error code 0 because that indicates success rather\n than an error condition. For a list of MySQL error codes, see Server\n Error Message Reference\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html).\n\no SQLSTATE [VALUE] sqlstate_value: A 5-character string literal\n indicating an SQLSTATE value.\n\n Do not use SQLSTATE values that begin with \'00\' because those\n indicate success rather than an error condition. For a list of\n SQLSTATE values, see Server Error Message Reference\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html).\n\nCondition names referred to in SIGNAL or use RESIGNAL statements must\nbe associated with SQLSTATE values, not MySQL error codes.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/declare-condition.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/declare-condition.html'),(577,'DECLARE HANDLER',43,'Syntax:\nDECLARE handler_action HANDLER\n FOR condition_value [, condition_value] ...\n statement\n\nhandler_action: {\n CONTINUE\n | EXIT\n | UNDO\n}\n\ncondition_value: {\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n | condition_name\n | SQLWARNING\n | NOT FOUND\n | SQLEXCEPTION\n}\n\nThe DECLARE ... HANDLER statement specifies a handler that deals with\none or more conditions. If one of these conditions occurs, the\nspecified statement executes. statement can be a simple statement such\nas SET var_name = value, or a compound statement written using BEGIN\nand END (see [HELP BEGIN END]).\n\nHandler declarations must appear after variable or condition\ndeclarations.\n\nThe handler_action value indicates what action the handler takes after\nexecution of the handler statement:\n\no CONTINUE: Execution of the current program continues.\n\no EXIT: Execution terminates for the BEGIN ... END compound statement\n in which the handler is declared. This is true even if the condition\n occurs in an inner block.\n\no UNDO: Not supported.\n\nThe condition_value for DECLARE ... HANDLER indicates the specific\ncondition or class of conditions that activates the handler. It can\ntake the following forms:\n\no mysql_error_code: An integer literal indicating a MySQL error code,\n such as 1051 to specify \"unknown table\":\n\nDECLARE CONTINUE HANDLER FOR 1051\n BEGIN\n -- body of handler\n END;\n\n Do not use MySQL error code 0 because that indicates success rather\n than an error condition. For a list of MySQL error codes, see Server\n Error Message Reference\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html).\n\no SQLSTATE [VALUE] sqlstate_value: A 5-character string literal\n indicating an SQLSTATE value, such as \'42S01\' to specify \"unknown\n table\":\n\nDECLARE CONTINUE HANDLER FOR SQLSTATE \'42S02\'\n BEGIN\n -- body of handler\n END;\n\n Do not use SQLSTATE values that begin with \'00\' because those\n indicate success rather than an error condition. For a list of\n SQLSTATE values, see Server Error Message Reference\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html).\n\no condition_name: A condition name previously specified with DECLARE\n ... CONDITION. A condition name can be associated with a MySQL error\n code or SQLSTATE value. See [HELP DECLARE CONDITION].\n\no SQLWARNING: Shorthand for the class of SQLSTATE values that begin\n with \'01\'.\n\nDECLARE CONTINUE HANDLER FOR SQLWARNING\n BEGIN\n -- body of handler\n END;\n\no NOT FOUND: Shorthand for the class of SQLSTATE values that begin with\n \'02\'. This is relevant within the context of cursors and is used to\n control what happens when a cursor reaches the end of a data set. If\n no more rows are available, a No Data condition occurs with SQLSTATE\n value \'02000\'. To detect this condition, you can set up a handler for\n it or for a NOT FOUND condition.\n\nDECLARE CONTINUE HANDLER FOR NOT FOUND\n BEGIN\n -- body of handler\n END;\n\n For another example, see\n https://dev.mysql.com/doc/refman/5.7/en/cursors.html. The NOT FOUND\n condition also occurs for SELECT ... INTO var_list statements that\n retrieve no rows.\n\no SQLEXCEPTION: Shorthand for the class of SQLSTATE values that do not\n begin with \'00\', \'01\', or \'02\'.\n\nDECLARE CONTINUE HANDLER FOR SQLEXCEPTION\n BEGIN\n -- body of handler\n END;\n\nFor information about how the server chooses handlers when a condition\noccurs, see https://dev.mysql.com/doc/refman/5.7/en/handler-scope.html.\n\nIf a condition occurs for which no handler has been declared, the\naction taken depends on the condition class:\n\no For SQLEXCEPTION conditions, the stored program terminates at the\n statement that raised the condition, as if there were an EXIT\n handler. If the program was called by another stored program, the\n calling program handles the condition using the handler selection\n rules applied to its own handlers.\n\no For SQLWARNING conditions, the program continues executing, as if\n there were a CONTINUE handler.\n\no For NOT FOUND conditions, if the condition was raised normally, the\n action is CONTINUE. If it was raised by SIGNAL or RESIGNAL, the\n action is EXIT.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/declare-handler.html\n\n','mysql> CREATE TABLE test.t (s1 INT, PRIMARY KEY (s1));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE handlerdemo ()\n BEGIN\n DECLARE CONTINUE HANDLER FOR SQLSTATE \'23000\' SET @x2 = 1;\n SET @x = 1;\n INSERT INTO test.t VALUES (1);\n SET @x = 2;\n INSERT INTO test.t VALUES (1);\n SET @x = 3;\n END;\n //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL handlerdemo()//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n +------+\n | @x |\n +------+\n | 3 |\n +------+\n 1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/declare-handler.html'),(578,'GET DIAGNOSTICS',43,'Syntax:\nGET [CURRENT | STACKED] DIAGNOSTICS {\n statement_information_item\n [, statement_information_item] ...\n | CONDITION condition_number\n condition_information_item\n [, condition_information_item] ...\n}\n\nstatement_information_item:\n target = statement_information_item_name\n\ncondition_information_item:\n target = condition_information_item_name\n\nstatement_information_item_name: {\n NUMBER\n | ROW_COUNT\n}\n\ncondition_information_item_name: {\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | RETURNED_SQLSTATE\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n}\n\ncondition_number, target:\n (see following discussion)\n\nSQL statements produce diagnostic information that populates the\ndiagnostics area. The GET DIAGNOSTICS statement enables applications to\ninspect this information. (You can also use SHOW WARNINGS or SHOW\nERRORS to see conditions or errors.)\n\nNo special privileges are required to execute GET DIAGNOSTICS.\n\nThe keyword CURRENT means to retrieve information from the current\ndiagnostics area. The keyword STACKED means to retrieve information\nfrom the second diagnostics area, which is available only if the\ncurrent context is a condition handler. If neither keyword is given,\nthe default is to use the current diagnostics area.\n\nThe GET DIAGNOSTICS statement is typically used in a handler within a\nstored program. It is a MySQL extension that GET [CURRENT] DIAGNOSTICS\nis permitted outside handler context to check the execution of any SQL\nstatement. For example, if you invoke the mysql client program, you can\nenter these statements at the prompt:\n\nmysql> DROP TABLE test.no_such_table;\nERROR 1051 (42S02): Unknown table \'test.no_such_table\'\nmysql> GET DIAGNOSTICS CONDITION 1\n @p1 = RETURNED_SQLSTATE, @p2 = MESSAGE_TEXT;\nmysql> SELECT @p1, @p2;\n+-------+------------------------------------+\n| @p1 | @p2 |\n+-------+------------------------------------+\n| 42S02 | Unknown table \'test.no_such_table\' |\n+-------+------------------------------------+\n\nThis extension applies only to the current diagnostics area. It does\nnot apply to the second diagnostics area because GET STACKED\nDIAGNOSTICS is permitted only if the current context is a condition\nhandler. If that is not the case, a GET STACKED DIAGNOSTICS when\nhandler not active error occurs.\n\nFor a description of the diagnostics area, see\nhttps://dev.mysql.com/doc/refman/5.7/en/diagnostics-area.html. Briefly,\nit contains two kinds of information:\n\no Statement information, such as the number of conditions that occurred\n or the affected-rows count.\n\no Condition information, such as the error code and message. If a\n statement raises multiple conditions, this part of the diagnostics\n area has a condition area for each one. If a statement raises no\n conditions, this part of the diagnostics area is empty.\n\nFor a statement that produces three conditions, the diagnostics area\ncontains statement and condition information like this:\n\nStatement information:\n row count\n ... other statement information items ...\nCondition area list:\n Condition area 1:\n error code for condition 1\n error message for condition 1\n ... other condition information items ...\n Condition area 2:\n error code for condition 2:\n error message for condition 2\n ... other condition information items ...\n Condition area 3:\n error code for condition 3\n error message for condition 3\n ... other condition information items ...\n\nGET DIAGNOSTICS can obtain either statement or condition information,\nbut not both in the same statement:\n\no To obtain statement information, retrieve the desired statement items\n into target variables. This instance of GET DIAGNOSTICS assigns the\n number of available conditions and the rows-affected count to the\n user variables @p1 and @p2:\n\nGET DIAGNOSTICS @p1 = NUMBER, @p2 = ROW_COUNT;\n\no To obtain condition information, specify the condition number and\n retrieve the desired condition items into target variables. This\n instance of GET DIAGNOSTICS assigns the SQLSTATE value and error\n message to the user variables @p3 and @p4:\n\nGET DIAGNOSTICS CONDITION 1\n @p3 = RETURNED_SQLSTATE, @p4 = MESSAGE_TEXT;\n\nThe retrieval list specifies one or more target = item_name\nassignments, separated by commas. Each assignment names a target\nvariable and either a statement_information_item_name or\ncondition_information_item_name designator, depending on whether the\nstatement retrieves statement or condition information.\n\nValid target designators for storing item information can be stored\nprocedure or function parameters, stored program local variables\ndeclared with DECLARE, or user-defined variables.\n\nValid condition_number designators can be stored procedure or function\nparameters, stored program local variables declared with DECLARE,\nuser-defined variables, system variables, or literals. A character\nliteral may include a _charset introducer. A warning occurs if the\ncondition number is not in the range from 1 to the number of condition\nareas that have information. In this case, the warning is added to the\ndiagnostics area without clearing it.\n\nWhen a condition occurs, MySQL does not populate all condition items\nrecognized by GET DIAGNOSTICS. For example:\n\nmysql> GET DIAGNOSTICS CONDITION 1\n @p5 = SCHEMA_NAME, @p6 = TABLE_NAME;\nmysql> SELECT @p5, @p6;\n+------+------+\n| @p5 | @p6 |\n+------+------+\n| | |\n+------+------+\n\nIn standard SQL, if there are multiple conditions, the first condition\nrelates to the SQLSTATE value returned for the previous SQL statement.\nIn MySQL, this is not guaranteed. To get the main error, you cannot do\nthis:\n\nGET DIAGNOSTICS CONDITION 1 @errno = MYSQL_ERRNO;\n\nInstead, retrieve the condition count first, then use it to specify\nwhich condition number to inspect:\n\nGET DIAGNOSTICS @cno = NUMBER;\nGET DIAGNOSTICS CONDITION @cno @errno = MYSQL_ERRNO;\n\nFor information about permissible statement and condition information\nitems, and which ones are populated when a condition occurs, see\nhttps://dev.mysql.com/doc/refman/5.7/en/diagnostics-area.html#diagnosti\ncs-area-information-items.\n\nHere is an example that uses GET DIAGNOSTICS and an exception handler\nin stored procedure context to assess the outcome of an insert\noperation. If the insert was successful, the procedure uses GET\nDIAGNOSTICS to get the rows-affected count. This shows that you can use\nGET DIAGNOSTICS multiple times to retrieve information about a\nstatement as long as the current diagnostics area has not been cleared.\n\nCREATE PROCEDURE do_insert(value INT)\nBEGIN\n -- Declare variables to hold diagnostics area information\n DECLARE code CHAR(5) DEFAULT \'00000\';\n DECLARE msg TEXT;\n DECLARE nrows INT;\n DECLARE result TEXT;\n -- Declare exception handler for failed insert\n DECLARE CONTINUE HANDLER FOR SQLEXCEPTION\n BEGIN\n GET DIAGNOSTICS CONDITION 1\n code = RETURNED_SQLSTATE, msg = MESSAGE_TEXT;\n END;\n\n -- Perform the insert\n INSERT INTO t1 (int_col) VALUES(value);\n -- Check whether the insert was successful\n IF code = \'00000\' THEN\n GET DIAGNOSTICS nrows = ROW_COUNT;\n SET result = CONCAT(\'insert succeeded, row count = \',nrows);\n ELSE\n SET result = CONCAT(\'insert failed, error = \',code,\', message = \',msg);\n END IF;\n -- Say what happened\n SELECT result;\nEND;\n\nSuppose that t1.int_col is an integer column that is declared as NOT\nNULL. The procedure produces these results when invoked to insert\nnon-NULL and NULL values, respectively:\n\nmysql> CALL do_insert(1);\n+---------------------------------+\n| result |\n+---------------------------------+\n| insert succeeded, row count = 1 |\n+---------------------------------+\n\nmysql> CALL do_insert(NULL);\n+-------------------------------------------------------------------------+\n| result |\n+-------------------------------------------------------------------------+\n| insert failed, error = 23000, message = Column \'int_col\' cannot be null |\n+-------------------------------------------------------------------------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/get-diagnostics.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/get-diagnostics.html'),(579,'RESIGNAL',43,'Syntax:\nRESIGNAL [condition_value]\n [SET signal_information_item\n [, signal_information_item] ...]\n\ncondition_value: {\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n}\n\nsignal_information_item:\n condition_information_item_name = simple_value_specification\n\ncondition_information_item_name: {\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n}\n\ncondition_name, simple_value_specification:\n (see following discussion)\n\nRESIGNAL passes on the error condition information that is available\nduring execution of a condition handler within a compound statement\ninside a stored procedure or function, trigger, or event. RESIGNAL may\nchange some or all information before passing it on. RESIGNAL is\nrelated to SIGNAL, but instead of originating a condition as SIGNAL\ndoes, RESIGNAL relays existing condition information, possibly after\nmodifying it.\n\nRESIGNAL makes it possible to both handle an error and return the error\ninformation. Otherwise, by executing an SQL statement within the\nhandler, information that caused the handler\'s activation is destroyed.\nRESIGNAL also can make some procedures shorter if a given handler can\nhandle part of a situation, then pass the condition \"up the line\" to\nanother handler.\n\nNo privileges are required to execute the RESIGNAL statement.\n\nAll forms of RESIGNAL require that the current context be a condition\nhandler. Otherwise, RESIGNAL is illegal and a RESIGNAL when handler not\nactive error occurs.\n\nTo retrieve information from the diagnostics area, use the GET\nDIAGNOSTICS statement (see [HELP GET DIAGNOSTICS]). For information\nabout the diagnostics area, see\nhttps://dev.mysql.com/doc/refman/5.7/en/diagnostics-area.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/resignal.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/resignal.html'),(580,'SIGNAL',43,'Syntax:\nSIGNAL condition_value\n [SET signal_information_item\n [, signal_information_item] ...]\n\ncondition_value: {\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n}\n\nsignal_information_item:\n condition_information_item_name = simple_value_specification\n\ncondition_information_item_name: {\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n}\n\ncondition_name, simple_value_specification:\n (see following discussion)\n\nSIGNAL is the way to \"return\" an error. SIGNAL provides error\ninformation to a handler, to an outer portion of the application, or to\nthe client. Also, it provides control over the error\'s characteristics\n(error number, SQLSTATE value, message). Without SIGNAL, it is\nnecessary to resort to workarounds such as deliberately referring to a\nnonexistent table to cause a routine to return an error.\n\nNo privileges are required to execute the SIGNAL statement.\n\nTo retrieve information from the diagnostics area, use the GET\nDIAGNOSTICS statement (see [HELP GET DIAGNOSTICS]). For information\nabout the diagnostics area, see\nhttps://dev.mysql.com/doc/refman/5.7/en/diagnostics-area.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/signal.html\n\n','CREATE PROCEDURE p (pval INT)\nBEGIN\n DECLARE specialty CONDITION FOR SQLSTATE \'45000\';\n IF pval = 0 THEN\n SIGNAL SQLSTATE \'01000\';\n ELSEIF pval = 1 THEN\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSEIF pval = 2 THEN\n SIGNAL specialty\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSE\n SIGNAL SQLSTATE \'01000\'\n SET MESSAGE_TEXT = \'A warning occurred\', MYSQL_ERRNO = 1000;\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\', MYSQL_ERRNO = 1001;\n END IF;\nEND;\n','https://dev.mysql.com/doc/refman/5.7/en/signal.html'),(581,'ALTER USER',44,'Syntax:\nALTER USER [IF EXISTS]\n user [auth_option] [, user [auth_option]] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH resource_option [resource_option] ...]\n [password_option | lock_option] ...\n\nALTER USER [IF EXISTS]\n USER() IDENTIFIED BY \'auth_string\'\n\nuser:\n (see )\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin AS \'auth_string\'\n}\n\ntls_option: {\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n}\n\nresource_option: {\n MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n}\n\npassword_option: {\n PASSWORD EXPIRE\n | PASSWORD EXPIRE DEFAULT\n | PASSWORD EXPIRE NEVER\n | PASSWORD EXPIRE INTERVAL N DAY\n}\n\nlock_option: {\n ACCOUNT LOCK\n | ACCOUNT UNLOCK\n}\n\nThe ALTER USER statement modifies MySQL accounts. It enables\nauthentication, SSL/TLS, resource-limit, and password-management\nproperties to be modified for existing accounts. It can also be used to\nlock and unlock accounts.\n\nTo use ALTER USER, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql system database. When the read_only\nsystem variable is enabled, ALTER USER additionally requires the SUPER\nprivilege.\n\nBy default, an error occurs if you try to modify a user that does not\nexist. If the IF EXISTS clause is given, the statement produces a\nwarning for each named user that does not exist, rather than an error.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-user.html'),(582,'CREATE USER',44,'Syntax:\nCREATE USER [IF NOT EXISTS]\n user [auth_option] [, user [auth_option]] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH resource_option [resource_option] ...]\n [password_option | lock_option] ...\n\nuser:\n (see )\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin AS \'auth_string\'\n | IDENTIFIED BY PASSWORD \'auth_string\'\n}\n\ntls_option: {\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n}\n\nresource_option: {\n MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n}\n\npassword_option: {\n PASSWORD EXPIRE\n | PASSWORD EXPIRE DEFAULT\n | PASSWORD EXPIRE NEVER\n | PASSWORD EXPIRE INTERVAL N DAY\n}\n\nlock_option: {\n ACCOUNT LOCK\n | ACCOUNT UNLOCK\n}\n\nThe CREATE USER statement creates new MySQL accounts. It enables\nauthentication, SSL/TLS, resource-limit, and password-management\nproperties to be established for new accounts, and controls whether\naccounts are initially locked or unlocked.\n\nTo use CREATE USER, you must have the global CREATE USER privilege, or\nthe INSERT privilege for the mysql system database. When the read_only\nsystem variable is enabled, CREATE USER additionally requires the SUPER\nprivilege.\n\nAn error occurs if you try to create an account that already exists. If\nthe IF NOT EXISTS clause is given, the statement produces a warning for\neach named account that already exists, rather than an error.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-user.html'),(583,'DROP USER',44,'Syntax:\nDROP USER [IF EXISTS] user [, user] ...\n\nThe DROP USER statement removes one or more MySQL accounts and their\nprivileges. It removes privilege rows for the account from all grant\ntables.\n\nTo use DROP USER, you must have the global CREATE USER privilege, or\nthe DELETE privilege for the mysql system database. When the read_only\nsystem variable is enabled, DROP USER additionally requires the SUPER\nprivilege.\n\nAn error occurs if you try to drop an account that does not exist. If\nthe IF EXISTS clause is given, the statement produces a warning for\neach named user that does not exist, rather than an error.\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\n\nDROP USER \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-user.html'),(584,'GRANT',44,'Syntax:\nGRANT\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n TO user [auth_option] [, user [auth_option]] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH {GRANT OPTION | resource_option} ...]\n\nGRANT PROXY ON user\n TO user [, user] ...\n [WITH GRANT OPTION]\n\nobject_type: {\n TABLE\n | FUNCTION\n | PROCEDURE\n}\n\npriv_level: {\n *\n | *.*\n | db_name.*\n | db_name.tbl_name\n | tbl_name\n | db_name.routine_name\n}\n\nuser:\n (see https://dev.mysql.com/doc/refman/5.7/en/account-names.html)\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin AS \'auth_string\'\n | IDENTIFIED BY PASSWORD \'auth_string\'\n}\n\ntls_option: {\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n}\n\nresource_option: {\n | MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n}\n\nThe GRANT statement grants privileges to MySQL user accounts.\n\nTo grant a privilege with GRANT, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are granting.\n(Alternatively, if you have the UPDATE privilege for the grant tables\nin the mysql system database, you can grant any account any privilege.)\nWhen the read_only system variable is enabled, GRANT additionally\nrequires the SUPER privilege.\n\nThe REVOKE statement is related to GRANT and enables administrators to\nremove account privileges. See [HELP REVOKE].\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\n\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\n\nThe host name part of the account, if omitted, defaults to \'%\'.\n\nNormally, a database administrator first uses CREATE USER to create an\naccount and define its nonprivilege characteristics such as its\npassword, whether it uses secure connections, and limits on access to\nserver resources, then uses GRANT to define its privileges. ALTER USER\nmay be used to change the nonprivilege characteristics of existing\naccounts. For example:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'password\';\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\nGRANT SELECT ON db2.invoice TO \'jeffrey\'@\'localhost\';\nALTER USER \'jeffrey\'@\'localhost\' WITH MAX_QUERIES_PER_HOUR 90;\n\n*Note*:\n\nExamples shown here include no IDENTIFIED clause. It is assumed that\nyou establish passwords with CREATE USER at account-creation time to\navoid creating insecure accounts.\n\n*Note*:\n\nIf an account named in a GRANT statement does not already exist, GRANT\nmay create it under the conditions described later in the discussion of\nthe NO_AUTO_CREATE_USER SQL mode. It is also possible to use GRANT to\nspecify nonprivilege account characteristics such as whether it uses\nsecure connections and limits on access to server resources.\n\nHowever, use of GRANT to create accounts or define nonprivilege\ncharacteristics is deprecated in MySQL 5.7. Instead, perform these\ntasks using CREATE USER or ALTER USER.\n\nFrom the mysql program, GRANT responds with Query OK, 0 rows affected\nwhen executed successfully. To determine what privileges result from\nthe operation, use SHOW GRANTS. See [HELP SHOW GRANTS].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/grant.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/grant.html'),(585,'RENAME USER',44,'Syntax:\nRENAME USER old_user TO new_user\n [, old_user TO new_user] ...\n\nThe RENAME USER statement renames existing MySQL accounts. An error\noccurs for old accounts that do not exist or new accounts that already\nexist.\n\nTo use RENAME USER, you must have the global CREATE USER privilege, or\nthe UPDATE privilege for the mysql system database. When the read_only\nsystem variable is enabled, RENAME USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\n\nRENAME USER \'jeffrey\'@\'localhost\' TO \'jeff\'@\'127.0.0.1\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nRENAME USER causes the privileges held by the old user to be those held\nby the new user. However, RENAME USER does not automatically drop or\ninvalidate databases or objects within them that the old user created.\nThis includes stored programs or views for which the DEFINER attribute\nnames the old user. Attempts to access such objects may produce an\nerror if they execute in definer security context. (For information\nabout security context, see\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.)\n\nThe privilege changes take effect as indicated in\nhttps://dev.mysql.com/doc/refman/5.7/en/privilege-changes.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/rename-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/rename-user.html'),(586,'REVOKE',44,'Syntax:\nREVOKE\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n FROM user [, user] ...\n\nREVOKE ALL [PRIVILEGES], GRANT OPTION\n FROM user [, user] ...\n\nREVOKE PROXY ON user\n FROM user [, user] ...\n\nThe REVOKE statement enables system administrators to revoke privileges\nfrom MySQL accounts.\n\nFor details on the levels at which privileges exist, the permissible\npriv_type, priv_level, and object_type values, and the syntax for\nspecifying users and passwords, see [HELP GRANT].\n\nWhen the read_only system variable is enabled, REVOKE requires the\nSUPER privilege in addition to any other required privileges described\nin the following discussion.\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\n\nREVOKE INSERT ON *.* FROM \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nTo use the first REVOKE syntax, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are revoking.\n\nTo revoke all privileges, use the second syntax, which drops all\nglobal, database, table, column, and routine privileges for the named\nuser or users:\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\nTo use this REVOKE syntax, you must have the global CREATE USER\nprivilege, or the UPDATE privilege for the mysql system database.\n\nUser accounts from which privileges are to be revoked must exist, but\nthe privileges to be revoked need not be currently granted to them.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/revoke.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/revoke.html'),(587,'SET PASSWORD',44,'Syntax:\nSET PASSWORD [FOR user] = password_option\n\npassword_option: {\n \'auth_string\'\n | PASSWORD(\'auth_string\')\n}\n\nThe SET PASSWORD statement assigns a password to a MySQL user account.\n\'auth_string\' represents a cleartext (unencrypted) password.\n\n*Note*:\n\no SET PASSWORD ... = PASSWORD(\'auth_string\') syntax is deprecated in\n MySQL 5.7 and is removed in MySQL 8.0.\n\no SET PASSWORD ... = \'auth_string\' syntax is not deprecated, but ALTER\n USER is the preferred statement for account alterations, including\n assigning passwords. For example:\n\nALTER USER user IDENTIFIED BY \'auth_string\';\n\n*Important*:\n\nUnder some circumstances, SET PASSWORD may be recorded in server logs\nor on the client side in a history file such as ~/.mysql_history, which\nmeans that cleartext passwords may be read by anyone having read access\nto that information. For information about the conditions under which\nthis occurs for the server logs and how to control it, see\nhttps://dev.mysql.com/doc/refman/5.7/en/password-logging.html. For\nsimilar information about client-side logging, see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-logging.html.\n\nSET PASSWORD can be used with or without a FOR clause that explicitly\nnames a user account:\n\no With a FOR user clause, the statement sets the password for the named\n account, which must exist:\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = \'auth_string\';\n\no With no FOR user clause, the statement sets the password for the\n current user:\n\nSET PASSWORD = \'auth_string\';\n\n Any client who connects to the server using a nonanonymous account\n can change the password for that account. (In particular, you can\n change your own password.) To see which account the server\n authenticated you as, invoke the CURRENT_USER() function:\n\nSELECT CURRENT_USER();\n\nIf a FOR user clause is given, the account name uses the format\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\n\nSET PASSWORD FOR \'bob\'@\'%.example.org\' = \'auth_string\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nSetting the password for a named account (with a FOR clause) requires\nthe UPDATE privilege for the mysql system database. Setting the\npassword for yourself (for a nonanonymous account with no FOR clause)\nrequires no special privileges. When the read_only system variable is\nenabled, SET PASSWORD requires the SUPER privilege in addition to any\nother required privileges.\n\nThe password can be specified in these ways:\n\no Use a string without PASSWORD()\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = \'password\';\n\n SET PASSWORD interprets the string as a cleartext string, passes it\n to the authentication plugin associated with the account, and stores\n the result returned by the plugin in the account row in the\n mysql.user system table. (The plugin is given the opportunity to hash\n the value into the encryption format it expects. The plugin may use\n the value as specified, in which case no hashing occurs.)\n\no Use the PASSWORD() function (deprecated in MySQL 5.7)\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'password\');\n\n The PASSWORD() argument is the cleartext (unencrypted) password.\n PASSWORD() hashes the password and returns the encrypted password\n string for storage in the account row in the mysql.user system table.\n\n The PASSWORD() function hashes the password using the hashing method\n determined by the value of the old_passwords system variable value.\n Be sure that old_passwords has the value corresponding to the hashing\n method expected by the authentication plugin associated with the\n account. For example, if the account uses the mysql_native_password\n plugin, the old_passwords value must be 0:\n\nSET old_passwords = 0;\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'password\');\n\n If the old_passwords value differs from that required by the\n authentication plugin, the hashed password value returned by\n PASSWORD() cannot be used by the plugin and correct authentication of\n client connections cannot occur.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-password.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-password.html'),(588,'ANALYZE TABLE',45,'Syntax:\nANALYZE [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n\nANALYZE TABLE performs a key distribution analysis and stores the\ndistribution for the named table or tables. For MyISAM tables, this\nstatement is equivalent to using myisamchk --analyze.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nANALYZE TABLE works with InnoDB, NDB, and MyISAM tables. It does not\nwork with views.\n\nANALYZE TABLE is supported for partitioned tables, and you can use\nALTER TABLE ... ANALYZE PARTITION to analyze one or more partitions;\nfor more information, see [HELP ALTER TABLE], and\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-maintenance.html.\n\nDuring the analysis, the table is locked with a read lock for InnoDB\nand MyISAM.\n\nANALYZE TABLE removes the table from the table definition cache, which\nrequires a flush lock. If there are long running statements or\ntransactions still using the table, subsequent statements and\ntransactions must wait for those operations to finish before the flush\nlock is released. Because ANALYZE TABLE itself typically finishes\nquickly, it may not be apparent that delayed transactions or statements\ninvolving the same table are due to the remaining flush lock.\n\nBy default, the server writes ANALYZE TABLE statements to the binary\nlog so that they replicate to replicas. To suppress logging, specify\nthe optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/analyze-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/analyze-table.html'),(589,'CHECK TABLE',45,'Syntax:\nCHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption: {\n FOR UPGRADE\n | QUICK\n | FAST\n | MEDIUM\n | EXTENDED\n | CHANGED\n}\n\nCHECK TABLE checks a table or tables for errors. For MyISAM tables, the\nkey statistics are updated as well. CHECK TABLE can also check views\nfor problems, such as tables that are referenced in the view definition\nthat no longer exist.\n\nTo check a table, you must have some privilege for it.\n\nCHECK TABLE works for InnoDB, MyISAM, ARCHIVE, and CSV tables.\n\nBefore running CHECK TABLE on InnoDB tables, see\nhttps://dev.mysql.com/doc/refman/5.7/en/check-table.html#check-table-in\nnodb.\n\nCHECK TABLE is supported for partitioned tables, and you can use ALTER\nTABLE ... CHECK PARTITION to check one or more partitions; for more\ninformation, see [HELP ALTER TABLE], and\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-maintenance.html.\n\nCHECK TABLE ignores virtual generated columns that are not indexed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/check-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/check-table.html'),(590,'CHECKSUM TABLE',45,'Syntax:\nCHECKSUM TABLE tbl_name [, tbl_name] ... [QUICK | EXTENDED]\n\nCHECKSUM TABLE reports a checksum for the contents of a table. You can\nuse this statement to verify that the contents are the same before and\nafter a backup, rollback, or other operation that is intended to put\nthe data back to a known state.\n\nThis statement requires the SELECT privilege for the table.\n\nThis statement is not supported for views. If you run CHECKSUM TABLE\nagainst a view, the Checksum value is always NULL, and a warning is\nreturned.\n\nFor a nonexistent table, CHECKSUM TABLE returns NULL and generates a\nwarning.\n\nDuring the checksum operation, the table is locked with a read lock for\nInnoDB and MyISAM.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/checksum-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/checksum-table.html'),(591,'OPTIMIZE TABLE',45,'Syntax:\nOPTIMIZE [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n\nOPTIMIZE TABLE reorganizes the physical storage of table data and\nassociated index data, to reduce storage space and improve I/O\nefficiency when accessing the table. The exact changes made to each\ntable depend on the storage engine used by that table.\n\nUse OPTIMIZE TABLE in these cases, depending on the type of table:\n\no After doing substantial insert, update, or delete operations on an\n InnoDB table that has its own .ibd file because it was created with\n the innodb_file_per_table option enabled. The table and indexes are\n reorganized, and disk space can be reclaimed for use by the operating\n system.\n\no After doing substantial insert, update, or delete operations on\n columns that are part of a FULLTEXT index in an InnoDB table. Set the\n configuration option innodb_optimize_fulltext_only=1 first. To keep\n the index maintenance period to a reasonable time, set the\n innodb_ft_num_word_optimize option to specify how many words to\n update in the search index, and run a sequence of OPTIMIZE TABLE\n statements until the search index is fully updated.\n\no After deleting a large part of a MyISAM or ARCHIVE table, or making\n many changes to a MyISAM or ARCHIVE table with variable-length rows\n (tables that have VARCHAR, VARBINARY, BLOB, or TEXT columns). Deleted\n rows are maintained in a linked list and subsequent INSERT operations\n reuse old row positions. You can use OPTIMIZE TABLE to reclaim the\n unused space and to defragment the data file. After extensive changes\n to a table, this statement may also improve performance of statements\n that use the table, sometimes significantly.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nOPTIMIZE TABLE works for InnoDB, MyISAM, and ARCHIVE tables. OPTIMIZE\nTABLE is also supported for dynamic columns of in-memory NDB tables. It\ndoes not work for fixed-width columns of in-memory tables, nor does it\nwork for Disk Data tables. The performance of OPTIMIZE on NDB Cluster\ntables can be tuned using --ndb-optimization-delay, which controls the\nlength of time to wait between processing batches of rows by OPTIMIZE\nTABLE. For more information, see Previous NDB Cluster Issues Resolved\nin NDB Cluster 8.0\n(https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-limitations-reso\nlved.html).\n\nFor NDB Cluster tables, OPTIMIZE TABLE can be interrupted by (for\nexample) killing the SQL thread performing the OPTIMIZE operation.\n\nBy default, OPTIMIZE TABLE does not work for tables created using any\nother storage engine and returns a result indicating this lack of\nsupport. You can make OPTIMIZE TABLE work for other storage engines by\nstarting mysqld with the --skip-new option. In this case, OPTIMIZE\nTABLE is just mapped to ALTER TABLE.\n\nThis statement does not work with views.\n\nOPTIMIZE TABLE is supported for partitioned tables. For information\nabout using this statement with partitioned tables and table\npartitions, see\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-maintenance.html.\n\nBy default, the server writes OPTIMIZE TABLE statements to the binary\nlog so that they replicate to replicas. To suppress logging, specify\nthe optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/optimize-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/optimize-table.html'),(592,'REPAIR TABLE',45,'Syntax:\nREPAIR [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n [QUICK] [EXTENDED] [USE_FRM]\n\nREPAIR TABLE repairs a possibly corrupted table, for certain storage\nengines only.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nAlthough normally you should never have to run REPAIR TABLE, if\ndisaster strikes, this statement is very likely to get back all your\ndata from a MyISAM table. If your tables become corrupted often, try to\nfind the reason for it, to eliminate the need to use REPAIR TABLE. See\nhttps://dev.mysql.com/doc/refman/5.7/en/crashing.html, and\nhttps://dev.mysql.com/doc/refman/5.7/en/myisam-table-problems.html.\n\nREPAIR TABLE checks the table to see whether an upgrade is required. If\nso, it performs the upgrade, following the same rules as CHECK TABLE\n... FOR UPGRADE. See [HELP CHECK TABLE], for more information.\n\n*Important*:\n\no Make a backup of a table before performing a table repair operation;\n under some circumstances the operation might cause data loss.\n Possible causes include but are not limited to file system errors.\n See https://dev.mysql.com/doc/refman/5.7/en/backup-and-recovery.html.\n\no If the server exits during a REPAIR TABLE operation, it is essential\n after restarting it that you immediately execute another REPAIR TABLE\n statement for the table before performing any other operations on it.\n In the worst case, you might have a new clean index file without\n information about the data file, and then the next operation you\n perform could overwrite the data file. This is an unlikely but\n possible scenario that underscores the value of making a backup\n first.\n\no In the event that a table on the source becomes corrupted and you run\n REPAIR TABLE on it, any resulting changes to the original table are\n not propagated to replicas.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/repair-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/repair-table.html'),(593,'CREATE FUNCTION LOADABLE FUNCTION',46,'Syntax:\nCREATE [AGGREGATE] FUNCTION function_name\n RETURNS {STRING|INTEGER|REAL|DECIMAL}\n SONAME shared_library_name\n\nThis statement loads the loadable function named function_name. (CREATE\nFUNCTION is also used to created stored functions; see [HELP CREATE\nPROCEDURE].)\n\nA loadable function is a way to extend MySQL with a new function that\nworks like a native (built-in) MySQL function such as ABS() or\nCONCAT(). See Adding a Loadable Function\n(https://dev.mysql.com/doc/extending-mysql/5.7/en/adding-loadable-funct\nion.html).\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. DECIMAL is a legal value after RETURNS, but\ncurrently DECIMAL functions return string values and should be written\nlike STRING functions.\n\nThe AGGREGATE keyword, if given, signifies that the function is an\naggregate (group) function. An aggregate function works exactly like a\nnative MySQL aggregate function such as SUM() or COUNT().\n\nshared_library_name is the base name of the shared library file\ncontaining the code that implements the function. The file must be\nlocated in the plugin directory. This directory is given by the value\nof the plugin_dir system variable. For more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/function-loading.html.\n\nCREATE FUNCTION requires the INSERT privilege for the mysql system\ndatabase because it adds a row to the mysql.func system table to\nregister the function.\n\nDuring the normal startup sequence, the server loads functions\nregistered in the mysql.func table. If the server is started with the\n--skip-grant-tables option, functions registered in the table are not\nloaded and are unavailable.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-function-loadable.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-function-loadable.html'),(594,'DROP FUNCTION LOADABLE FUNCTION',46,'Syntax:\nDROP FUNCTION [IF EXISTS] function_name\n\nThis statement drops the loadable function named function_name. (DROP\nFUNCTION is also used to drop stored functions; see [HELP DROP\nPROCEDURE].)\n\nDROP FUNCTION is the complement of CREATE FUNCTION. It requires the\nDELETE privilege for the mysql system database because it removes the\nrow from the mysql.func system table that registers the function.\n\nDuring the normal startup sequence, the server loads functions\nregistered in the mysql.func table. Because DROP FUNCTION removes the\nmysql.func row for the dropped function, the server does not load the\nfunction during subsequent restarts.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-function-loadable.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-function-loadable.html'),(595,'INSTALL PLUGIN',47,'Syntax:\nINSTALL PLUGIN plugin_name SONAME \'shared_library_name\'\n\nThis statement installs a server plugin. It requires the INSERT\nprivilege for the mysql.plugin system table because it adds a row to\nthat table to register the plugin.\n\nplugin_name is the name of the plugin as defined in the plugin\ndescriptor structure contained in the library file (see Plugin Data\nStructures\n(https://dev.mysql.com/doc/extending-mysql/5.7/en/plugin-data-structure\ns.html)). Plugin names are not case-sensitive. For maximal\ncompatibility, plugin names should be limited to ASCII letters, digits,\nand underscore because they are used in C source files, shell command\nlines, M4 and Bourne shell scripts, and SQL environments.\n\nshared_library_name is the name of the shared library that contains the\nplugin code. The name includes the file name extension (for example,\nlibmyplugin.so, libmyplugin.dll, or libmyplugin.dylib).\n\nThe shared library must be located in the plugin directory (the\ndirectory named by the plugin_dir system variable). The library must be\nin the plugin directory itself, not in a subdirectory. By default,\nplugin_dir is the plugin directory under the directory named by the\npkglibdir configuration variable, but it can be changed by setting the\nvalue of plugin_dir at server startup. For example, set its value in a\nmy.cnf file:\n\n[mysqld]\nplugin_dir=/path/to/plugin/directory\n\nIf the value of plugin_dir is a relative path name, it is taken to be\nrelative to the MySQL base directory (the value of the basedir system\nvariable).\n\nINSTALL PLUGIN loads and initializes the plugin code to make the plugin\navailable for use. A plugin is initialized by executing its\ninitialization function, which handles any setup that the plugin must\nperform before it can be used. When the server shuts down, it executes\nthe deinitialization function for each plugin that is loaded so that\nthe plugin has a chance to perform any final cleanup.\n\nINSTALL PLUGIN also registers the plugin by adding a line that\nindicates the plugin name and library file name to the mysql.plugin\nsystem table. During the normal startup sequence, the server loads and\ninitializes plugins registered in mysql.plugin. This means that a\nplugin is installed with INSTALL PLUGIN only once, not every time the\nserver starts. If the server is started with the --skip-grant-tables\noption, plugins registered in the mysql.plugin table are not loaded and\nare unavailable.\n\nA plugin library can contain multiple plugins. For each of them to be\ninstalled, use a separate INSTALL PLUGIN statement. Each statement\nnames a different plugin, but all of them specify the same library\nname.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/install-plugin.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/install-plugin.html'),(596,'UNINSTALL PLUGIN',47,'Syntax:\nUNINSTALL PLUGIN plugin_name\n\nThis statement removes an installed server plugin. UNINSTALL PLUGIN is\nthe complement of INSTALL PLUGIN. It requires the DELETE privilege for\nthe mysql.plugin system table because it removes the row from that\ntable that registers the plugin.\n\nplugin_name must be the name of some plugin that is listed in the\nmysql.plugin table. The server executes the plugin\'s deinitialization\nfunction and removes the row for the plugin from the mysql.plugin\nsystem table, so that subsequent server restarts do not load and\ninitialize the plugin. UNINSTALL PLUGIN does not remove the plugin\'s\nshared library file.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/uninstall-plugin.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/uninstall-plugin.html'),(597,'SET',3,'Syntax:\nSET variable = expr [, variable = expr] ...\n\nvariable: {\n user_var_name\n | param_name\n | local_var_name\n | {GLOBAL | @@GLOBAL.} system_var_name\n | [SESSION | @@SESSION. | @@] system_var_name\n}\n\nSET syntax for variable assignment enables you to assign values to\ndifferent types of variables that affect the operation of the server or\nclients:\n\no User-defined variables. See\n https://dev.mysql.com/doc/refman/5.7/en/user-variables.html.\n\no Stored procedure and function parameters, and stored program local\n variables. See\n https://dev.mysql.com/doc/refman/5.7/en/stored-program-variables.html\n .\n\no System variables. See\n https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n System variables also can be set at server startup, as described in\n https://dev.mysql.com/doc/refman/5.7/en/using-system-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-variable.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-variable.html'),(598,'SET CHARACTER SET',3,'Syntax:\nSET {CHARACTER SET | CHARSET}\n {\'charset_name\' | DEFAULT}\n\nThis statement maps all strings sent between the server and the current\nclient with the given mapping. SET CHARACTER SET sets three session\nsystem variables: character_set_client and character_set_results are\nset to the given character set, and character_set_connection to the\nvalue of character_set_database. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-connection.html.\n\ncharset_name may be quoted or unquoted.\n\nThe default character set mapping can be restored by using the value\nDEFAULT. The default depends on the server configuration.\n\nSome character sets cannot be used as the client character set.\nAttempting to use them with SET CHARACTER SET produces an error. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-connection.html#charset\n-connection-impermissible-client-charset.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-character-set.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-character-set.html'),(599,'SET CHARSET',3,'Syntax:\nSET {CHARACTER SET | CHARSET}\n {\'charset_name\' | DEFAULT}\n\nThis statement maps all strings sent between the server and the current\nclient with the given mapping. SET CHARACTER SET sets three session\nsystem variables: character_set_client and character_set_results are\nset to the given character set, and character_set_connection to the\nvalue of character_set_database. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-connection.html.\n\ncharset_name may be quoted or unquoted.\n\nThe default character set mapping can be restored by using the value\nDEFAULT. The default depends on the server configuration.\n\nSome character sets cannot be used as the client character set.\nAttempting to use them with SET CHARACTER SET produces an error. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-connection.html#charset\n-connection-impermissible-client-charset.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-character-set.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-character-set.html'),(600,'SET NAMES',3,'Syntax:\nSET NAMES {\'charset_name\'\n [COLLATE \'collation_name\'] | DEFAULT}\n\nThis statement sets the three session system variables\ncharacter_set_client, character_set_connection, and\ncharacter_set_results to the given character set. Setting\ncharacter_set_connection to charset_name also sets collation_connection\nto the default collation for charset_name. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-connection.html.\n\nThe optional COLLATE clause may be used to specify a collation\nexplicitly. If given, the collation must one of the permitted\ncollations for charset_name.\n\ncharset_name and collation_name may be quoted or unquoted.\n\nThe default mapping can be restored by using a value of DEFAULT. The\ndefault depends on the server configuration.\n\nSome character sets cannot be used as the client character set.\nAttempting to use them with SET NAMES produces an error. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-connection.html#charset\n-connection-impermissible-client-charset.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-names.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-names.html'),(601,'SHOW',3,'SHOW has many forms that provide information about databases, tables,\ncolumns, or status information about the server. This section describes\nthose following:\n\nSHOW {BINARY | MASTER} LOGS\nSHOW BINLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW {CHARACTER SET | CHARSET} [like_or_where]\nSHOW COLLATION [like_or_where]\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]\nSHOW CREATE DATABASE db_name\nSHOW CREATE EVENT event_name\nSHOW CREATE FUNCTION func_name\nSHOW CREATE PROCEDURE proc_name\nSHOW CREATE TABLE tbl_name\nSHOW CREATE TRIGGER trigger_name\nSHOW CREATE VIEW view_name\nSHOW DATABASES [like_or_where]\nSHOW ENGINE engine_name {STATUS | MUTEX}\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW EVENTS\nSHOW FUNCTION CODE func_name\nSHOW FUNCTION STATUS [like_or_where]\nSHOW GRANTS FOR user\nSHOW INDEX FROM tbl_name [FROM db_name]\nSHOW MASTER STATUS\nSHOW OPEN TABLES [FROM db_name] [like_or_where]\nSHOW PLUGINS\nSHOW PROCEDURE CODE proc_name\nSHOW PROCEDURE STATUS [like_or_where]\nSHOW PRIVILEGES\nSHOW [FULL] PROCESSLIST\nSHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n]\nSHOW PROFILES\nSHOW RELAYLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW SLAVE HOSTS\nSHOW SLAVE STATUS [FOR CHANNEL channel]\nSHOW [GLOBAL | SESSION] STATUS [like_or_where]\nSHOW TABLE STATUS [FROM db_name] [like_or_where]\nSHOW [FULL] TABLES [FROM db_name] [like_or_where]\nSHOW TRIGGERS [FROM db_name] [like_or_where]\nSHOW [GLOBAL | SESSION] VARIABLES [like_or_where]\nSHOW WARNINGS [LIMIT [offset,] row_count]\n\nlike_or_where: {\n LIKE \'pattern\'\n | WHERE expr\n}\n\nIf the syntax for a given SHOW statement includes a LIKE \'pattern\'\npart, \'pattern\' is a string that can contain the SQL % and _ wildcard\ncharacters. The pattern is useful for restricting statement output to\nmatching values.\n\nSeveral SHOW statements also accept a WHERE clause that provides more\nflexibility in specifying which rows to display. See\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show.html'),(602,'SHOW BINARY LOGS',3,'Syntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [HELP PURGE BINARY LOGS], that shows\nhow to determine which logs can be purged. A user with the SUPER or\nREPLICATION CLIENT privilege may execute this statement.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-binary-logs.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-binary-logs.html'),(603,'SHOW MASTER LOGS',3,'Syntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [HELP PURGE BINARY LOGS], that shows\nhow to determine which logs can be purged. A user with the SUPER or\nREPLICATION CLIENT privilege may execute this statement.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-binary-logs.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-binary-logs.html'),(604,'SHOW BINLOG EVENTS',3,'Syntax:\nSHOW BINLOG EVENTS\n [IN \'log_name\']\n [FROM pos]\n [LIMIT [offset,] row_count]\n\nShows the events in the binary log. If you do not specify \'log_name\',\nthe first binary log is displayed. SHOW BINLOG EVENTS requires the\nREPLICATION SLAVE privilege.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-binlog-events.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-binlog-events.html'),(605,'SHOW CHARACTER SET',3,'Syntax:\nSHOW {CHARACTER SET | CHARSET}\n [LIKE \'pattern\' | WHERE expr]\n\nThe SHOW CHARACTER SET statement shows all available character sets.\nThe LIKE clause, if present, indicates which character set names to\nmatch. The WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html. For\nexample:\n\nmysql> SHOW CHARACTER SET LIKE \'latin%\';\n+---------+-----------------------------+-------------------+--------+\n| Charset | Description | Default collation | Maxlen |\n+---------+-----------------------------+-------------------+--------+\n| latin1 | cp1252 West European | latin1_swedish_ci | 1 |\n| latin2 | ISO 8859-2 Central European | latin2_general_ci | 1 |\n| latin5 | ISO 8859-9 Turkish | latin5_turkish_ci | 1 |\n| latin7 | ISO 8859-13 Baltic | latin7_general_ci | 1 |\n+---------+-----------------------------+-------------------+--------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-character-set.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-character-set.html'),(606,'SHOW COLLATION',3,'Syntax:\nSHOW COLLATION\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement lists collations supported by the server. By default,\nthe output from SHOW COLLATION includes all available collations. The\nLIKE clause, if present, indicates which collation names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html. For\nexample:\n\nmysql> SHOW COLLATION WHERE Charset = \'latin1\';\n+-------------------+---------+----+---------+----------+---------+\n| Collation | Charset | Id | Default | Compiled | Sortlen |\n+-------------------+---------+----+---------+----------+---------+\n| latin1_german1_ci | latin1 | 5 | | Yes | 1 |\n| latin1_swedish_ci | latin1 | 8 | Yes | Yes | 1 |\n| latin1_danish_ci | latin1 | 15 | | Yes | 1 |\n| latin1_german2_ci | latin1 | 31 | | Yes | 2 |\n| latin1_bin | latin1 | 47 | | Yes | 1 |\n| latin1_general_ci | latin1 | 48 | | Yes | 1 |\n| latin1_general_cs | latin1 | 49 | | Yes | 1 |\n| latin1_spanish_ci | latin1 | 94 | | Yes | 1 |\n+-------------------+---------+----+---------+----------+---------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-collation.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-collation.html'),(607,'SHOW COLUMNS',3,'Syntax:\nSHOW [FULL] {COLUMNS | FIELDS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW COLUMNS displays information about the columns in a given table.\nIt also works for views. SHOW COLUMNS displays information only for\nthose columns for which you have some privilege.\n\nmysql> SHOW COLUMNS FROM City;\n+-------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+-------------+----------+------+-----+---------+----------------+\n| ID | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | NO | | | |\n| CountryCode | char(3) | NO | MUL | | |\n| District | char(20) | NO | | | |\n| Population | int(11) | NO | | 0 | |\n+-------------+----------+------+-----+---------+----------------+\n\nAn alternative to tbl_name FROM db_name syntax is db_name.tbl_name.\nThese two statements are equivalent:\n\nSHOW COLUMNS FROM mytable FROM mydb;\nSHOW COLUMNS FROM mydb.mytable;\n\nThe optional FULL keyword causes the output to include the column\ncollation and comments, as well as the privileges you have for each\ncolumn.\n\nThe LIKE clause, if present, indicates which column names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nThe data types may differ from what you expect them to be based on a\nCREATE TABLE statement because MySQL sometimes changes data types when\nyou create or alter a table. The conditions under which this occurs are\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.7/en/silent-column-changes.html.\n\nSHOW COLUMNS displays the following values for each table column:\n\no Field\n\n The column name.\n\no Type\n\n The column data type.\n\no Collation\n\n The collation for nonbinary string columns, or NULL for other\n columns. This value is displayed only if you use the FULL keyword.\n\no Null\n\n The column nullability. The value is YES if NULL values can be stored\n in the column, NO if not.\n\no Key\n\n Whether the column is indexed:\n\n o If Key is empty, the column either is not indexed or is indexed\n only as a secondary column in a multiple-column, nonunique index.\n\n o If Key is PRI, the column is a PRIMARY KEY or is one of the columns\n in a multiple-column PRIMARY KEY.\n\n o If Key is UNI, the column is the first column of a UNIQUE index. (A\n UNIQUE index permits multiple NULL values, but you can tell whether\n the column permits NULL by checking the Null field.)\n\n o If Key is MUL, the column is the first column of a nonunique index\n in which multiple occurrences of a given value are permitted within\n the column.\n\n If more than one of the Key values applies to a given column of a\n table, Key displays the one with the highest priority, in the order\n PRI, UNI, MUL.\n\n A UNIQUE index may be displayed as PRI if it cannot contain NULL\n values and there is no PRIMARY KEY in the table. A UNIQUE index may\n display as MUL if several columns form a composite UNIQUE index;\n although the combination of the columns is unique, each column can\n still hold multiple occurrences of a given value.\n\no Default\n\n The default value for the column. This is NULL if the column has an\n explicit default of NULL, or if the column definition includes no\n DEFAULT clause.\n\no Extra\n\n Any additional information that is available about a given column.\n The value is nonempty in these cases:\n\n o auto_increment for columns that have the AUTO_INCREMENT attribute.\n\n o on update CURRENT_TIMESTAMP for TIMESTAMP or DATETIME columns that\n have the ON UPDATE CURRENT_TIMESTAMP attribute.\n\n o VIRTUAL GENERATED or STORED GENERATED for generated columns.\n\no Privileges\n\n The privileges you have for the column. This value is displayed only\n if you use the FULL keyword.\n\no Comment\n\n Any comment included in the column definition. This value is\n displayed only if you use the FULL keyword.\n\nTable column information is also available from the INFORMATION_SCHEMA\nCOLUMNS table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-columns-tabl\ne.html.\n\nYou can list a table\'s columns with the mysqlshow db_name tbl_name\ncommand.\n\nThe DESCRIBE statement provides information similar to SHOW COLUMNS.\nSee https://dev.mysql.com/doc/refman/5.7/en/describe.html.\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-columns.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-columns.html'),(608,'SHOW FIELDS',3,'Syntax:\nSHOW [FULL] {COLUMNS | FIELDS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW COLUMNS displays information about the columns in a given table.\nIt also works for views. SHOW COLUMNS displays information only for\nthose columns for which you have some privilege.\n\nmysql> SHOW COLUMNS FROM City;\n+-------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+-------------+----------+------+-----+---------+----------------+\n| ID | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | NO | | | |\n| CountryCode | char(3) | NO | MUL | | |\n| District | char(20) | NO | | | |\n| Population | int(11) | NO | | 0 | |\n+-------------+----------+------+-----+---------+----------------+\n\nAn alternative to tbl_name FROM db_name syntax is db_name.tbl_name.\nThese two statements are equivalent:\n\nSHOW COLUMNS FROM mytable FROM mydb;\nSHOW COLUMNS FROM mydb.mytable;\n\nThe optional FULL keyword causes the output to include the column\ncollation and comments, as well as the privileges you have for each\ncolumn.\n\nThe LIKE clause, if present, indicates which column names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nThe data types may differ from what you expect them to be based on a\nCREATE TABLE statement because MySQL sometimes changes data types when\nyou create or alter a table. The conditions under which this occurs are\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.7/en/silent-column-changes.html.\n\nSHOW COLUMNS displays the following values for each table column:\n\no Field\n\n The column name.\n\no Type\n\n The column data type.\n\no Collation\n\n The collation for nonbinary string columns, or NULL for other\n columns. This value is displayed only if you use the FULL keyword.\n\no Null\n\n The column nullability. The value is YES if NULL values can be stored\n in the column, NO if not.\n\no Key\n\n Whether the column is indexed:\n\n o If Key is empty, the column either is not indexed or is indexed\n only as a secondary column in a multiple-column, nonunique index.\n\n o If Key is PRI, the column is a PRIMARY KEY or is one of the columns\n in a multiple-column PRIMARY KEY.\n\n o If Key is UNI, the column is the first column of a UNIQUE index. (A\n UNIQUE index permits multiple NULL values, but you can tell whether\n the column permits NULL by checking the Null field.)\n\n o If Key is MUL, the column is the first column of a nonunique index\n in which multiple occurrences of a given value are permitted within\n the column.\n\n If more than one of the Key values applies to a given column of a\n table, Key displays the one with the highest priority, in the order\n PRI, UNI, MUL.\n\n A UNIQUE index may be displayed as PRI if it cannot contain NULL\n values and there is no PRIMARY KEY in the table. A UNIQUE index may\n display as MUL if several columns form a composite UNIQUE index;\n although the combination of the columns is unique, each column can\n still hold multiple occurrences of a given value.\n\no Default\n\n The default value for the column. This is NULL if the column has an\n explicit default of NULL, or if the column definition includes no\n DEFAULT clause.\n\no Extra\n\n Any additional information that is available about a given column.\n The value is nonempty in these cases:\n\n o auto_increment for columns that have the AUTO_INCREMENT attribute.\n\n o on update CURRENT_TIMESTAMP for TIMESTAMP or DATETIME columns that\n have the ON UPDATE CURRENT_TIMESTAMP attribute.\n\n o VIRTUAL GENERATED or STORED GENERATED for generated columns.\n\no Privileges\n\n The privileges you have for the column. This value is displayed only\n if you use the FULL keyword.\n\no Comment\n\n Any comment included in the column definition. This value is\n displayed only if you use the FULL keyword.\n\nTable column information is also available from the INFORMATION_SCHEMA\nCOLUMNS table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-columns-tabl\ne.html.\n\nYou can list a table\'s columns with the mysqlshow db_name tbl_name\ncommand.\n\nThe DESCRIBE statement provides information similar to SHOW COLUMNS.\nSee https://dev.mysql.com/doc/refman/5.7/en/describe.html.\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-columns.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-columns.html'),(609,'SHOW CREATE DATABASE',3,'Syntax:\nSHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n\nShows the CREATE DATABASE statement that creates the named database. If\nthe SHOW statement includes an IF NOT EXISTS clause, the output too\nincludes such a clause. SHOW CREATE SCHEMA is a synonym for SHOW CREATE\nDATABASE.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-database.html\n\n','mysql> SHOW CREATE DATABASE test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n\nmysql> SHOW CREATE SCHEMA test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n','https://dev.mysql.com/doc/refman/5.7/en/show-create-database.html'),(610,'SHOW CREATE SCHEMA',3,'Syntax:\nSHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n\nShows the CREATE DATABASE statement that creates the named database. If\nthe SHOW statement includes an IF NOT EXISTS clause, the output too\nincludes such a clause. SHOW CREATE SCHEMA is a synonym for SHOW CREATE\nDATABASE.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-database.html\n\n','mysql> SHOW CREATE DATABASE test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n\nmysql> SHOW CREATE SCHEMA test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n','https://dev.mysql.com/doc/refman/5.7/en/show-create-database.html'),(611,'SHOW CREATE EVENT',3,'Syntax:\nSHOW CREATE EVENT event_name\n\nThis statement displays the CREATE EVENT statement needed to re-create\na given event. It requires the EVENT privilege for the database from\nwhich the event is to be shown. For example (using the same event\ne_daily defined and then altered in [HELP SHOW EVENTS]):\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-event.html\n\n','mysql> SHOW CREATE EVENT myschema.e_daily\\G\n*************************** 1. row ***************************\n Event: e_daily\n sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,\n NO_ZERO_IN_DATE,NO_ZERO_DATE,\n ERROR_FOR_DIVISION_BY_ZERO,\n NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\n time_zone: SYSTEM\n Create Event: CREATE DEFINER=`jon`@`ghidora` EVENT `e_daily`\n ON SCHEDULE EVERY 1 DAY\n STARTS CURRENT_TIMESTAMP + INTERVAL 6 HOUR\n ON COMPLETION NOT PRESERVE\n ENABLE\n COMMENT \'Saves total number of sessions then\n clears the table each day\'\n DO BEGIN\n INSERT INTO site_activity.totals (time, total)\n SELECT CURRENT_TIMESTAMP, COUNT(*)\n FROM site_activity.sessions;\n DELETE FROM site_activity.sessions;\n END\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n','https://dev.mysql.com/doc/refman/5.7/en/show-create-event.html'),(612,'SHOW CREATE FUNCTION',3,'Syntax:\nSHOW CREATE FUNCTION func_name\n\nThis statement is similar to SHOW CREATE PROCEDURE but for stored\nfunctions. See [HELP SHOW CREATE PROCEDURE].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-function.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-create-function.html'),(613,'SHOW CREATE PROCEDURE',3,'Syntax:\nSHOW CREATE PROCEDURE proc_name\n\nThis statement is a MySQL extension. It returns the exact string that\ncan be used to re-create the named stored procedure. A similar\nstatement, SHOW CREATE FUNCTION, displays information about stored\nfunctions (see [HELP SHOW CREATE FUNCTION]).\n\nTo use either statement, you must be the user named in the routine\nDEFINER clause or have SELECT access to the mysql.proc table. If you do\nnot have privileges for the routine itself, the value displayed for the\nCreate Procedure or Create Function column is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-procedure.html\n\n','mysql> SHOW CREATE PROCEDURE test.citycount\\G\n*************************** 1. row ***************************\n Procedure: citycount\n sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,\n NO_ZERO_IN_DATE,NO_ZERO_DATE,\n ERROR_FOR_DIVISION_BY_ZERO,\n NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\n Create Procedure: CREATE DEFINER=`me`@`localhost`\n PROCEDURE `citycount`(IN country CHAR(3), OUT cities INT)\n BEGIN\n SELECT COUNT(*) INTO cities FROM world.city\n WHERE CountryCode = country;\n END\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nmysql> SHOW CREATE FUNCTION test.hello\\G\n*************************** 1. row ***************************\n Function: hello\n sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,\n NO_ZERO_IN_DATE,NO_ZERO_DATE,\n ERROR_FOR_DIVISION_BY_ZERO,\n NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\n Create Function: CREATE DEFINER=`me`@`localhost`\n FUNCTION `hello`(s CHAR(20))\n RETURNS char(50) CHARSET latin1\n DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\')\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n','https://dev.mysql.com/doc/refman/5.7/en/show-create-procedure.html'),(614,'SHOW CREATE TABLE',3,'Syntax:\nSHOW CREATE TABLE tbl_name\n\nShows the CREATE TABLE statement that creates the named table. To use\nthis statement, you must have some privilege for the table. This\nstatement also works with views.\n\nSHOW CREATE TABLE quotes table and column names according to the value\nof the sql_quote_show_create option. See\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nWhen altering the storage engine of a table, table options that are not\napplicable to the new storage engine are retained in the table\ndefinition to enable reverting the table with its previously defined\noptions to the original storage engine, if necessary. For example, when\nchanging the storage engine from InnoDB to MyISAM, InnoDB-specific\noptions such as ROW_FORMAT=COMPACT are retained.\n\nWhen creating a table with strict mode disabled, the storage engine\'s\ndefault row format is used if the specified row format is not\nsupported. The actual row format of the table is reported in the\nRow_format column in response to SHOW TABLE STATUS. SHOW CREATE TABLE\nshows the row format that was specified in the CREATE TABLE statement.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-table.html\n\n','mysql> SHOW CREATE TABLE t\\G\n*************************** 1. row ***************************\n Table: t\nCreate Table: CREATE TABLE `t` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `s` char(60) DEFAULT NULL,\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=latin1\n\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) ROW_FORMAT=COMPACT ENGINE=InnoDB;\nmysql> ALTER TABLE t1 ENGINE=MyISAM;\nmysql> SHOW CREATE TABLE t1\\G\n*************************** 1. row ***************************\n Table: t1\nCreate Table: CREATE TABLE `t1` (\n `c1` int(11) NOT NULL,\n PRIMARY KEY (`c1`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT\n','https://dev.mysql.com/doc/refman/5.7/en/show-create-table.html'),(615,'SHOW CREATE TRIGGER',3,'Syntax:\nSHOW CREATE TRIGGER trigger_name\n\nThis statement shows the CREATE TRIGGER statement that creates the\nnamed trigger. This statement requires the TRIGGER privilege for the\ntable associated with the trigger.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-trigger.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-create-trigger.html'),(616,'SHOW CREATE USER',3,'Syntax:\nSHOW CREATE USER user\n\nThis statement shows the CREATE USER statement that creates the named\nuser. An error occurs if the user does not exist. The statement\nrequires the SELECT privilege for the mysql system database, except to\ndisplay information for the current user.\n\nTo name the account, use the format described in\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. The host\nname part of the account name, if omitted, defaults to \'%\'. It is also\npossible to specify CURRENT_USER or CURRENT_USER() to refer to the\naccount associated with the current session.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-create-user.html'),(617,'SHOW CREATE VIEW',3,'Syntax:\nSHOW CREATE VIEW view_name\n\nThis statement shows the CREATE VIEW statement that creates the named\nview.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-view.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-create-view.html'),(618,'SHOW DATABASES',3,'Syntax:\nSHOW {DATABASES | SCHEMAS}\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nMySQL implements databases as directories in the data directory, so\nthis statement simply lists directories in that location. However, the\noutput may include names of directories that do not correspond to\nactual databases.\n\nDatabase information is also available from the INFORMATION_SCHEMA\nSCHEMATA table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-schemata-tab\nle.html.\n\n*Caution*:\n\nBecause a global privilege is considered a privilege for all databases,\nany global privilege enables a user to see all database names with SHOW\nDATABASES or by examining the INFORMATION_SCHEMA SCHEMATA table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-databases.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-databases.html'),(619,'SHOW SCHEMAS',3,'Syntax:\nSHOW {DATABASES | SCHEMAS}\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nMySQL implements databases as directories in the data directory, so\nthis statement simply lists directories in that location. However, the\noutput may include names of directories that do not correspond to\nactual databases.\n\nDatabase information is also available from the INFORMATION_SCHEMA\nSCHEMATA table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-schemata-tab\nle.html.\n\n*Caution*:\n\nBecause a global privilege is considered a privilege for all databases,\nany global privilege enables a user to see all database names with SHOW\nDATABASES or by examining the INFORMATION_SCHEMA SCHEMATA table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-databases.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-databases.html'),(620,'SHOW ENGINE',3,'Syntax:\nSHOW ENGINE engine_name {STATUS | MUTEX}\n\nSHOW ENGINE displays operational information about a storage engine. It\nrequires the PROCESS privilege. The statement has these variants:\n\nSHOW ENGINE INNODB STATUS\nSHOW ENGINE INNODB MUTEX\nSHOW ENGINE PERFORMANCE_SCHEMA STATUS\n\nSHOW ENGINE INNODB STATUS displays extensive information from the\nstandard InnoDB Monitor about the state of the InnoDB storage engine.\nFor information about the standard monitor and other InnoDB Monitors\nthat provide information about InnoDB processing, see\nhttps://dev.mysql.com/doc/refman/5.7/en/innodb-monitors.html.\n\nSHOW ENGINE INNODB MUTEX displays InnoDB mutex and rw-lock statistics.\n\n*Note*:\n\nInnoDB mutexes and rwlocks can also be monitored using Performance\nSchema tables. See\nhttps://dev.mysql.com/doc/refman/5.7/en/monitor-innodb-mutex-waits-perf\normance-schema.html.\n\nSHOW ENGINE INNODB MUTEX output was removed in MySQL 5.7.2. It was\nrevised and reintroduced in MySQL 5.7.8.\n\nIn MySQL 5.7.8, mutex statistics collection is configured dynamically\nusing the following options:\n\no To enable the collection of mutex statistics, run:\n\nSET GLOBAL innodb_monitor_enable=\'latch\';\n\no To reset mutex statistics, run:\n\nSET GLOBAL innodb_monitor_reset=\'latch\';\n\no To disable the collection of mutex statistics, run:\n\nSET GLOBAL innodb_monitor_disable=\'latch\';\n\nCollection of mutex statistics for SHOW ENGINE INNODB MUTEX can also be\nenabled by setting innodb_monitor_enable=\'all\', or disabled by setting\ninnodb_monitor_disable=\'all\'.\n\nSHOW ENGINE INNODB MUTEX output has these columns:\n\no Type\n\n Always InnoDB.\n\no Name\n\n Prior to MySQL 5.7.8, the Name field reports the source file where\n the mutex is implemented, and the line number in the file where the\n mutex is created. The line number is specific to your version of\n MySQL. As of MySQL 5.7.8, only the mutex name is reported. File name\n and line number are still reported for rwlocks.\n\no Status\n\n The mutex status.\n\n Prior to MySQL 5.7.8, the Status field displays several values if\n WITH_DEBUG was defined at MySQL compilation time. If WITH_DEBUG was\n not defined, the statement displays only the os_waits value. In the\n latter case (without WITH_DEBUG), the information on which the output\n is based is insufficient to distinguish regular mutexes and mutexes\n that protect rwlocks (which permit multiple readers or a single\n writer). Consequently, the output may appear to contain multiple rows\n for the same mutex. Pre-MySQL 5.7.8 Status field values include:\n\n o count indicates how many times the mutex was requested.\n\n o spin_waits indicates how many times the spinlock had to run.\n\n o spin_rounds indicates the number of spinlock rounds. (spin_rounds\n divided by spin_waits provides the average round count.)\n\n o os_waits indicates the number of operating system waits. This\n occurs when the spinlock did not work (the mutex was not locked\n during the spinlock and it was necessary to yield to the operating\n system and wait).\n\n o os_yields indicates the number of times a thread trying to lock a\n mutex gave up its timeslice and yielded to the operating system (on\n the presumption that permitting other threads to run frees the\n mutex so that it can be locked).\n\n o os_wait_times indicates the amount of time (in ms) spent in\n operating system waits. In MySQL 5.7 timing is disabled and this\n value is always 0.\n\n As of MySQL 5.7.8, the Status field reports the number of spins,\n waits, and calls. Statistics for low-level operating system mutexes,\n which are implemented outside of InnoDB, are not reported.\n\n o spins indicates the number of spins.\n\n o waits indicates the number of mutex waits.\n\n o calls indicates how many times the mutex was requested.\n\nSHOW ENGINE INNODB MUTEX does not list mutexes and rw-locks for each\nbuffer pool block, as the amount of output would be overwhelming on\nsystems with a large buffer pool. SHOW ENGINE INNODB MUTEX does,\nhowever, print aggregate BUF_BLOCK_MUTEX spin, wait, and call values\nfor buffer pool block mutexes and rw-locks. SHOW ENGINE INNODB MUTEX\nalso does not list any mutexes or rw-locks that have never been waited\non (os_waits=0). Thus, SHOW ENGINE INNODB MUTEX only displays\ninformation about mutexes and rw-locks outside of the buffer pool that\nhave caused at least one OS-level wait.\n\nUse SHOW ENGINE PERFORMANCE_SCHEMA STATUS to inspect the internal\noperation of the Performance Schema code:\n\nmysql> SHOW ENGINE PERFORMANCE_SCHEMA STATUS\\G\n...\n*************************** 3. row ***************************\n Type: performance_schema\n Name: events_waits_history.size\nStatus: 76\n*************************** 4. row ***************************\n Type: performance_schema\n Name: events_waits_history.count\nStatus: 10000\n*************************** 5. row ***************************\n Type: performance_schema\n Name: events_waits_history.memory\nStatus: 760000\n...\n*************************** 57. row ***************************\n Type: performance_schema\n Name: performance_schema.memory\nStatus: 26459600\n...\n\nThis statement is intended to help the DBA understand the effects that\ndifferent Performance Schema options have on memory requirements.\n\nName values consist of two parts, which name an internal buffer and a\nbuffer attribute, respectively. Interpret buffer names as follows:\n\no An internal buffer that is not exposed as a table is named within\n parentheses. Examples: (pfs_cond_class).size,\n (pfs_mutex_class).memory.\n\no An internal buffer that is exposed as a table in the\n performance_schema database is named after the table, without\n parentheses. Examples: events_waits_history.size,\n mutex_instances.count.\n\no A value that applies to the Performance Schema as a whole begins with\n performance_schema. Example: performance_schema.memory.\n\nBuffer attributes have these meanings:\n\no size is the size of the internal record used by the implementation,\n such as the size of a row in a table. size values cannot be changed.\n\no count is the number of internal records, such as the number of rows\n in a table. count values can be changed using Performance Schema\n configuration options.\n\no For a table, tbl_name.memory is the product of size and count. For\n the Performance Schema as a whole, performance_schema.memory is the\n sum of all the memory used (the sum of all other memory values).\n\nIn some cases, there is a direct relationship between a Performance\nSchema configuration parameter and a SHOW ENGINE value. For example,\nevents_waits_history_long.count corresponds to\nperformance_schema_events_waits_history_long_size. In other cases, the\nrelationship is more complex. For example, events_waits_history.count\ncorresponds to performance_schema_events_waits_history_size (the number\nof rows per thread) multiplied by\nperformance_schema_max_thread_instances ( the number of threads).\n\nSHOW ENGINE NDB STATUS If the server has the NDB storage engine\nenabled, SHOW ENGINE NDB STATUS displays cluster status information\nsuch as the number of connected data nodes, the cluster connectstring,\nand cluster binary log epochs, as well as counts of various Cluster API\nobjects created by the MySQL Server when connected to the cluster.\nSample output from this statement is shown here:\n\nmysql> SHOW ENGINE NDB STATUS;\n+------------+-----------------------+--------------------------------------------------+\n| Type | Name | Status |\n+------------+-----------------------+--------------------------------------------------+\n| ndbcluster | connection | cluster_node_id=7,\n connected_host=198.51.100.103, connected_port=1186, number_of_data_nodes=4,\n number_of_ready_data_nodes=3, connect_count=0 |\n| ndbcluster | NdbTransaction | created=6, free=0, sizeof=212 |\n| ndbcluster | NdbOperation | created=8, free=8, sizeof=660 |\n| ndbcluster | NdbIndexScanOperation | created=1, free=1, sizeof=744 |\n| ndbcluster | NdbIndexOperation | created=0, free=0, sizeof=664 |\n| ndbcluster | NdbRecAttr | created=1285, free=1285, sizeof=60 |\n| ndbcluster | NdbApiSignal | created=16, free=16, sizeof=136 |\n| ndbcluster | NdbLabel | created=0, free=0, sizeof=196 |\n| ndbcluster | NdbBranch | created=0, free=0, sizeof=24 |\n| ndbcluster | NdbSubroutine | created=0, free=0, sizeof=68 |\n| ndbcluster | NdbCall | created=0, free=0, sizeof=16 |\n| ndbcluster | NdbBlob | created=1, free=1, sizeof=264 |\n| ndbcluster | NdbReceiver | created=4, free=0, sizeof=68 |\n| ndbcluster | binlog | latest_epoch=155467, latest_trans_epoch=148126,\n latest_received_binlog_epoch=0, latest_handled_binlog_epoch=0,\n latest_applied_binlog_epoch=0 |\n+------------+-----------------------+--------------------------------------------------+\n\nThe Status column in each of these rows provides information about the\nMySQL server\'s connection to the cluster and about the cluster binary\nlog\'s status, respectively. The Status information is in the form of\ncomma-delimited set of name/value pairs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-engine.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-engine.html'),(621,'SHOW ENGINES',3,'Syntax:\nSHOW [STORAGE] ENGINES\n\nSHOW ENGINES displays status information about the server\'s storage\nengines. This is particularly useful for checking whether a storage\nengine is supported, or to see what the default engine is.\n\nFor information about MySQL storage engines, see\nhttps://dev.mysql.com/doc/refman/5.7/en/innodb-storage-engine.html, and\nhttps://dev.mysql.com/doc/refman/5.7/en/storage-engines.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-engines.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-engines.html'),(622,'SHOW ERRORS',3,'Syntax:\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW COUNT(*) ERRORS\n\nSHOW ERRORS is a diagnostic statement that is similar to SHOW WARNINGS,\nexcept that it displays information only for errors, rather than for\nerrors, warnings, and notes.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttps://dev.mysql.com/doc/refman/5.7/en/select.html.\n\nThe SHOW COUNT(*) ERRORS statement displays the number of errors. You\ncan also retrieve this number from the error_count variable:\n\nSHOW COUNT(*) ERRORS;\nSELECT @@error_count;\n\nSHOW ERRORS and error_count apply only to errors, not warnings or\nnotes. In other respects, they are similar to SHOW WARNINGS and\nwarning_count. In particular, SHOW ERRORS cannot display information\nfor more than max_error_count messages, and error_count can exceed the\nvalue of max_error_count if the number of errors exceeds\nmax_error_count.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-errors.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-errors.html'),(623,'SHOW EVENTS',3,'Syntax:\nSHOW EVENTS\n [{FROM | IN} schema_name]\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement displays information about Event Manager events, which\nare discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/event-scheduler.html. It\nrequires the EVENT privilege for the database from which the events are\nto be shown.\n\nIn its simplest form, SHOW EVENTS lists all of the events in the\ncurrent schema:\n\nmysql> SELECT CURRENT_USER(), SCHEMA();\n+----------------+----------+\n| CURRENT_USER() | SCHEMA() |\n+----------------+----------+\n| jon@ghidora | myschema |\n+----------------+----------+\n1 row in set (0.00 sec)\n\nmysql> SHOW EVENTS\\G\n*************************** 1. row ***************************\n Db: myschema\n Name: e_daily\n Definer: jon@ghidora\n Time zone: SYSTEM\n Type: RECURRING\n Execute at: NULL\n Interval value: 1\n Interval field: DAY\n Starts: 2018-08-08 11:06:34\n Ends: NULL\n Status: ENABLED\n Originator: 1\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nTo see events for a specific schema, use the FROM clause. For example,\nto see events for the test schema, use the following statement:\n\nSHOW EVENTS FROM test;\n\nThe LIKE clause, if present, indicates which event names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-events.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-events.html'),(624,'SHOW FUNCTION CODE',3,'Syntax:\nSHOW FUNCTION CODE func_name\n\nThis statement is similar to SHOW PROCEDURE CODE but for stored\nfunctions. See [HELP SHOW PROCEDURE CODE].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-function-code.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-function-code.html'),(625,'SHOW FUNCTION STATUS',3,'Syntax:\nSHOW FUNCTION STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is similar to SHOW PROCEDURE STATUS but for stored\nfunctions. See [HELP SHOW PROCEDURE STATUS].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-function-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-function-status.html'),(626,'SHOW GRANTS',3,'Syntax:\nSHOW GRANTS [FOR user]\n\nThis statement displays the privileges that are assigned to a MySQL\nuser account, in the form of GRANT statements that must be executed to\nduplicate the privilege assignments.\n\n*Note*:\n\nTo display nonprivilege information for MySQL accounts, use the SHOW\nCREATE USER statement. See [HELP SHOW CREATE USER].\n\nSHOW GRANTS requires the SELECT privilege for the mysql system\ndatabase, except to display privileges for the current user.\n\nTo name the account for SHOW GRANTS, use the same format as for the\nGRANT statement (for example, \'jeffrey\'@\'localhost\'):\n\nmysql> SHOW GRANTS FOR \'jeffrey\'@\'localhost\';\n+------------------------------------------------------------------+\n| Grants for jeffrey@localhost |\n+------------------------------------------------------------------+\n| GRANT USAGE ON *.* TO `jeffrey`@`localhost` |\n| GRANT SELECT, INSERT, UPDATE ON `db1`.* TO `jeffrey`@`localhost` |\n+------------------------------------------------------------------+\n\nThe host part, if omitted, defaults to \'%\'. For additional information\nabout specifying account names, see\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html.\n\nTo display the privileges granted to the current user (the account you\nare using to connect to the server), you can use any of the following\nstatements:\n\nSHOW GRANTS;\nSHOW GRANTS FOR CURRENT_USER;\nSHOW GRANTS FOR CURRENT_USER();\n\nIf SHOW GRANTS FOR CURRENT_USER (or any equivalent syntax) is used in\ndefiner context, such as within a stored procedure that executes with\ndefiner rather than invoker privileges, the grants displayed are those\nof the definer and not the invoker.\n\nSHOW GRANTS does not display privileges that are available to the named\naccount but are granted to a different account. For example, if an\nanonymous account exists, the named account might be able to use its\nprivileges, but SHOW GRANTS does not display them.\n\nSHOW GRANTS output does not include IDENTIFIED BY PASSWORD clauses. Use\nthe SHOW CREATE USER statement instead. See [HELP SHOW CREATE USER].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-grants.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-grants.html'),(627,'SHOW INDEX',3,'Syntax:\nSHOW {INDEX | INDEXES | KEYS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n [WHERE expr]\n\nSHOW INDEX returns table index information. The format resembles that\nof the SQLStatistics call in ODBC. This statement requires some\nprivilege for any column in the table.\n\nmysql> SHOW INDEX FROM City\\G\n*************************** 1. row ***************************\n Table: city\n Non_unique: 0\n Key_name: PRIMARY\n Seq_in_index: 1\n Column_name: ID\n Collation: A\n Cardinality: 4188\n Sub_part: NULL\n Packed: NULL\n Null:\n Index_type: BTREE\n Comment:\nIndex_comment:\n*************************** 2. row ***************************\n Table: city\n Non_unique: 1\n Key_name: CountryCode\n Seq_in_index: 1\n Column_name: CountryCode\n Collation: A\n Cardinality: 232\n Sub_part: NULL\n Packed: NULL\n Null:\n Index_type: BTREE\n Comment:\nIndex_comment:\n\nAn alternative to tbl_name FROM db_name syntax is db_name.tbl_name.\nThese two statements are equivalent:\n\nSHOW INDEX FROM mytable FROM mydb;\nSHOW INDEX FROM mydb.mytable;\n\nThe WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nSHOW INDEX returns the following fields:\n\no Table\n\n The name of the table.\n\no Non_unique\n\n 0 if the index cannot contain duplicates, 1 if it can.\n\no Key_name\n\n The name of the index. If the index is the primary key, the name is\n always PRIMARY.\n\no Seq_in_index\n\n The column sequence number in the index, starting with 1.\n\no Column_name\n\n The name of the column.\n\no Collation\n\n How the column is sorted in the index. This can have values A\n (ascending) or NULL (not sorted).\n\no Cardinality\n\n An estimate of the number of unique values in the index. To update\n this number, run ANALYZE TABLE or (for MyISAM tables) myisamchk -a.\n\n Cardinality is counted based on statistics stored as integers, so the\n value is not necessarily exact even for small tables. The higher the\n cardinality, the greater the chance that MySQL uses the index when\n doing joins.\n\no Sub_part\n\n The index prefix. That is, the number of indexed characters if the\n column is only partly indexed, NULL if the entire column is indexed.\n\n *Note*:\n\n Prefix limits are measured in bytes. However, prefix lengths for\n index specifications in CREATE TABLE, ALTER TABLE, and CREATE INDEX\n statements are interpreted as number of characters for nonbinary\n string types (CHAR, VARCHAR, TEXT) and number of bytes for binary\n string types (BINARY, VARBINARY, BLOB). Take this into account when\n specifying a prefix length for a nonbinary string column that uses a\n multibyte character set.\n\n For additional information about index prefixes, see\n https://dev.mysql.com/doc/refman/5.7/en/column-indexes.html, and\n [HELP CREATE INDEX].\n\no Packed\n\n Indicates how the key is packed. NULL if it is not.\n\no Null\n\n Contains YES if the column may contain NULL values and \'\' if not.\n\no Index_type\n\n The index method used (BTREE, FULLTEXT, HASH, RTREE).\n\no Comment\n\n Information about the index not described in its own column, such as\n disabled if the index is disabled.\n\no Index_comment\n\n Any comment provided for the index with a COMMENT attribute when the\n index was created.\n\nInformation about table indexes is also available from the\nINFORMATION_SCHEMA STATISTICS table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-statistics-t\nable.html.\n\nYou can list a table\'s indexes with the mysqlshow -k db_name tbl_name\ncommand.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-index.html'),(628,'SHOW MASTER STATUS',3,'Syntax:\nSHOW MASTER STATUS\n\nThis statement provides status information about the binary log files\nof the source. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nExample:\n\nmysql> SHOW MASTER STATUS\\G\n*************************** 1. row ***************************\n File: source-bin.000002\n Position: 1307\n Binlog_Do_DB: test\n Binlog_Ignore_DB: manual, mysql\nExecuted_Gtid_Set: 3E11FA47-71CA-11E1-9E33-C80AA9429562:1-5\n1 row in set (0.00 sec)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-master-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-master-status.html'),(629,'SHOW OPEN TABLES',3,'Syntax:\nSHOW OPEN TABLES\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW OPEN TABLES lists the non-TEMPORARY tables that are currently open\nin the table cache. See\nhttps://dev.mysql.com/doc/refman/5.7/en/table-cache.html. The FROM\nclause, if present, restricts the tables shown to those present in the\ndb_name database. The LIKE clause, if present, indicates which table\nnames to match. The WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-open-tables.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-open-tables.html'),(630,'SHOW PLUGINS',3,'Syntax:\nSHOW PLUGINS\n\nSHOW PLUGINS displays information about server plugins.\n\nExample of SHOW PLUGINS output:\n\nmysql> SHOW PLUGINS\\G\n*************************** 1. row ***************************\n Name: binlog\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 2. row ***************************\n Name: CSV\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 3. row ***************************\n Name: MEMORY\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 4. row ***************************\n Name: MyISAM\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n...\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-plugins.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-plugins.html'),(631,'SHOW PRIVILEGES',3,'Syntax:\nSHOW PRIVILEGES\n\nSHOW PRIVILEGES shows the list of system privileges that the MySQL\nserver supports. The exact list of privileges depends on the version of\nyour server.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-privileges.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-privileges.html'),(632,'SHOW PROCEDURE CODE',3,'Syntax:\nSHOW PROCEDURE CODE proc_name\n\nThis statement is a MySQL extension that is available only for servers\nthat have been built with debugging support. It displays a\nrepresentation of the internal implementation of the named stored\nprocedure. A similar statement, SHOW FUNCTION CODE, displays\ninformation about stored functions (see [HELP SHOW FUNCTION CODE]).\n\nTo use either statement, you must be the owner of the routine or have\nSELECT access to the mysql.proc table.\n\nIf the named routine is available, each statement produces a result\nset. Each row in the result set corresponds to one \"instruction\" in the\nroutine. The first column is Pos, which is an ordinal number beginning\nwith 0. The second column is Instruction, which contains an SQL\nstatement (usually changed from the original source), or a directive\nwhich has meaning only to the stored-routine handler.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-procedure-code.html\n\n','mysql> DELIMITER //\nmysql> CREATE PROCEDURE p1 ()\n BEGIN\n DECLARE fanta INT DEFAULT 55;\n DROP TABLE t2;\n LOOP\n INSERT INTO t3 VALUES (fanta);\n END LOOP;\n END//\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SHOW PROCEDURE CODE p1//\n+-----+----------------------------------------+\n| Pos | Instruction |\n+-----+----------------------------------------+\n| 0 | set fanta@0 55 |\n| 1 | stmt 9 \"DROP TABLE t2\" |\n| 2 | stmt 5 \"INSERT INTO t3 VALUES (fanta)\" |\n| 3 | jump 2 |\n+-----+----------------------------------------+\n4 rows in set (0.00 sec)\n\nmysql> CREATE FUNCTION test.hello (s CHAR(20))\n RETURNS CHAR(50) DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SHOW FUNCTION CODE test.hello;\n+-----+---------------------------------------+\n| Pos | Instruction |\n+-----+---------------------------------------+\n| 0 | freturn 254 concat(\'Hello, \',s@0,\'!\') |\n+-----+---------------------------------------+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/show-procedure-code.html'),(633,'SHOW PROCEDURE STATUS',3,'Syntax:\nSHOW PROCEDURE STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is a MySQL extension. It returns characteristics of a\nstored procedure, such as the database, name, type, creator, creation\nand modification dates, and character set information. A similar\nstatement, SHOW FUNCTION STATUS, displays information about stored\nfunctions (see [HELP SHOW FUNCTION STATUS]).\n\nTo use either statement, you must be the owner of the routine or have\nSELECT access to the mysql.proc table.\n\nThe LIKE clause, if present, indicates which procedure or function\nnames to match. The WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-procedure-status.html\n\n','mysql> SHOW PROCEDURE STATUS LIKE \'sp1\'\\G\n*************************** 1. row ***************************\n Db: test\n Name: sp1\n Type: PROCEDURE\n Definer: testuser@localhost\n Modified: 2018-08-08 13:54:11\n Created: 2018-08-08 13:54:11\n Security_type: DEFINER\n Comment:\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nmysql> SHOW FUNCTION STATUS LIKE \'hello\'\\G\n*************************** 1. row ***************************\n Db: test\n Name: hello\n Type: FUNCTION\n Definer: testuser@localhost\n Modified: 2020-03-10 11:09:33\n Created: 2020-03-10 11:09:33\n Security_type: DEFINER\n Comment:\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n','https://dev.mysql.com/doc/refman/5.7/en/show-procedure-status.html'),(634,'SHOW PROCESSLIST',3,'Syntax:\nSHOW [FULL] PROCESSLIST\n\nThe MySQL process list indicates the operations currently being\nperformed by the set of threads executing within the server. The SHOW\nPROCESSLIST statement is one source of process information. For a\ncomparison of this statement with other sources, see\nhttps://dev.mysql.com/doc/refman/5.7/en/processlist-access.html#process\nlist-sources.\n\nIf you have the PROCESS privilege, you can see all threads, even those\nbelonging to other users. Otherwise (without the PROCESS privilege),\nnonanonymous users have access to information about their own threads\nbut not threads for other users, and anonymous users have no access to\nthread information.\n\nWithout the FULL keyword, SHOW PROCESSLIST displays only the first 100\ncharacters of each statement in the Info field.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-processlist.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-processlist.html'),(635,'SHOW PROFILE',3,'Syntax:\nSHOW PROFILE [type [, type] ... ]\n [FOR QUERY n]\n [LIMIT row_count [OFFSET offset]]\n\ntype: {\n ALL\n | BLOCK IO\n | CONTEXT SWITCHES\n | CPU\n | IPC\n | MEMORY\n | PAGE FAULTS\n | SOURCE\n | SWAPS\n}\n\nThe SHOW PROFILE and SHOW PROFILES statements display profiling\ninformation that indicates resource usage for statements executed\nduring the course of the current session.\n\n*Note*:\n\nThe SHOW PROFILE and SHOW PROFILES statements are deprecated; expect\nthem to be removed in a future MySQL release. Use the Performance\nSchema instead; see\nhttps://dev.mysql.com/doc/refman/5.7/en/performance-schema-query-profil\ning.html.\n\nTo control profiling, use the profiling session variable, which has a\ndefault value of 0 (OFF). Enable profiling by setting profiling to 1 or\nON:\n\nmysql> SET profiling = 1;\n\nSHOW PROFILES displays a list of the most recent statements sent to the\nserver. The size of the list is controlled by the\nprofiling_history_size session variable, which has a default value of\n15. The maximum value is 100. Setting the value to 0 has the practical\neffect of disabling profiling.\n\nAll statements are profiled except SHOW PROFILE and SHOW PROFILES, so\nneither of those statements appears in the profile list. Malformed\nstatements are profiled. For example, SHOW PROFILING is an illegal\nstatement, and a syntax error occurs if you try to execute it, but it\nshows up in the profiling list.\n\nSHOW PROFILE displays detailed information about a single statement.\nWithout the FOR QUERY n clause, the output pertains to the most\nrecently executed statement. If FOR QUERY n is included, SHOW PROFILE\ndisplays information for statement n. The values of n correspond to the\nQuery_ID values displayed by SHOW PROFILES.\n\nThe LIMIT row_count clause may be given to limit the output to\nrow_count rows. If LIMIT is given, OFFSET offset may be added to begin\nthe output offset rows into the full set of rows.\n\nBy default, SHOW PROFILE displays Status and Duration columns. The\nStatus values are like the State values displayed by SHOW PROCESSLIST,\nalthough there might be some minor differences in interpretion for the\ntwo statements for some status values (see\nhttps://dev.mysql.com/doc/refman/5.7/en/thread-information.html).\n\nOptional type values may be specified to display specific additional\ntypes of information:\n\no ALL displays all information\n\no BLOCK IO displays counts for block input and output operations\n\no CONTEXT SWITCHES displays counts for voluntary and involuntary\n context switches\n\no CPU displays user and system CPU usage times\n\no IPC displays counts for messages sent and received\n\no MEMORY is not currently implemented\n\no PAGE FAULTS displays counts for major and minor page faults\n\no SOURCE displays the names of functions from the source code, together\n with the name and line number of the file in which the function\n occurs\n\no SWAPS displays swap counts\n\nProfiling is enabled per session. When a session ends, its profiling\ninformation is lost.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-profile.html\n\n','mysql> SELECT @@profiling;\n+-------------+\n| @@profiling |\n+-------------+\n| 0 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> SET profiling = 1;\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> DROP TABLE IF EXISTS t1;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> CREATE TABLE T1 (id INT);\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SHOW PROFILES;\n+----------+----------+--------------------------+\n| Query_ID | Duration | Query |\n+----------+----------+--------------------------+\n| 0 | 0.000088 | SET PROFILING = 1 |\n| 1 | 0.000136 | DROP TABLE IF EXISTS t1 |\n| 2 | 0.011947 | CREATE TABLE t1 (id INT) |\n+----------+----------+--------------------------+\n3 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE;\n+----------------------+----------+\n| Status | Duration |\n+----------------------+----------+\n| checking permissions | 0.000040 |\n| creating table | 0.000056 |\n| After create | 0.011363 |\n| query end | 0.000375 |\n| freeing items | 0.000089 |\n| logging slow query | 0.000019 |\n| cleaning up | 0.000005 |\n+----------------------+----------+\n7 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE FOR QUERY 1;\n+--------------------+----------+\n| Status | Duration |\n+--------------------+----------+\n| query end | 0.000107 |\n| freeing items | 0.000008 |\n| logging slow query | 0.000015 |\n| cleaning up | 0.000006 |\n+--------------------+----------+\n4 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE CPU FOR QUERY 2;\n+----------------------+----------+----------+------------+\n| Status | Duration | CPU_user | CPU_system |\n+----------------------+----------+----------+------------+\n| checking permissions | 0.000040 | 0.000038 | 0.000002 |\n| creating table | 0.000056 | 0.000028 | 0.000028 |\n| After create | 0.011363 | 0.000217 | 0.001571 |\n| query end | 0.000375 | 0.000013 | 0.000028 |\n| freeing items | 0.000089 | 0.000010 | 0.000014 |\n| logging slow query | 0.000019 | 0.000009 | 0.000010 |\n| cleaning up | 0.000005 | 0.000003 | 0.000002 |\n+----------------------+----------+----------+------------+\n7 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/show-profile.html'),(636,'SHOW PROFILES',3,'Syntax:\nSHOW PROFILES\n\nThe SHOW PROFILES statement, together with SHOW PROFILE, displays\nprofiling information that indicates resource usage for statements\nexecuted during the course of the current session. For more\ninformation, see [HELP SHOW PROFILE].\n\n*Note*:\n\nThe SHOW PROFILE and SHOW PROFILES statements are deprecated; expect\nthem to be removed in a future MySQL release. Use the Performance\nSchema instead; see\nhttps://dev.mysql.com/doc/refman/5.7/en/performance-schema-query-profil\ning.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-profiles.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-profiles.html'),(637,'SHOW RELAYLOG EVENTS',3,'Syntax:\nSHOW RELAYLOG EVENTS\n [IN \'log_name\']\n [FROM pos]\n [LIMIT [offset,] row_count]\n [channel_option]\n\nchannel_option:\n FOR CHANNEL channel\n\nShows the events in the relay log of a replica. If you do not specify\n\'log_name\', the first relay log is displayed. This statement has no\neffect on the source. SHOW RELAYLOG EVENTS requires the REPLICATION\nSLAVE privilege.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-relaylog-events.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-relaylog-events.html'),(638,'SHOW SLAVE HOSTS',3,'Syntax:\nSHOW SLAVE HOSTS\n\nDisplays a list of replicas currently registered with the source.\n\nSHOW SLAVE HOSTS should be executed on a server that acts as a\nreplication source. SHOW SLAVE HOSTS requires the REPLICATION SLAVE\nprivilege. The statement displays information about servers that are or\nhave been connected as replicas, with each row of the result\ncorresponding to one replica server, as shown here:\n\nmysql> SHOW SLAVE HOSTS;\n+------------+-----------+------+-----------+--------------------------------------+\n| Server_id | Host | Port | Master_id | Slave_UUID |\n+------------+-----------+------+-----------+--------------------------------------+\n| 192168010 | iconnect2 | 3306 | 192168011 | 14cb6624-7f93-11e0-b2c0-c80aa9429562 |\n| 1921680101 | athena | 3306 | 192168011 | 07af4990-f41f-11df-a566-7ac56fdaf645 |\n+------------+-----------+------+-----------+--------------------------------------+\n\no Server_id: The unique server ID of the replica server, as configured\n in the replica server\'s option file, or on the command line with\n --server-id=value.\n\no Host: The host name of the replica server as specified on the replica\n with the --report-host option. This can differ from the machine name\n as configured in the operating system.\n\no User: The replica server user name as, specified on the replica with\n the --report-user option. Statement output includes this column only\n if the source server is started with the --show-slave-auth-info\n option.\n\no Password: The replica server password as, specified on the replica\n with the --report-password option. Statement output includes this\n column only if the source server is started with the\n --show-slave-auth-info option.\n\no Port: The port on the source to which the replica server is\n listening, as specified on the replica with the --report-port option.\n\n A zero in this column means that the replica port (--report-port) was\n not set.\n\no Master_id: The unique server ID of the source server that the replica\n server is replicating from. This is the server ID of the server on\n which SHOW SLAVE HOSTS is executed, so this same value is listed for\n each row in the result.\n\no Slave_UUID: The globally unique ID of this replica, as generated on\n the replica and found in the replica\'s auto.cnf file.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-slave-hosts.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-slave-hosts.html'),(639,'SHOW SLAVE STATUS',3,'Syntax:\nSHOW SLAVE STATUS [FOR CHANNEL channel]\n\nThis statement provides status information on essential parameters of\nthe replica threads. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nIf you issue this statement using the mysql client, you can use a \\G\nstatement terminator rather than a semicolon to obtain a more readable\nvertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: repl\n Master_Port: 13000\n Connect_Retry: 60\n Master_Log_File: source-bin.000002\n Read_Master_Log_Pos: 1307\n Relay_Log_File: replica-relay-bin.000003\n Relay_Log_Pos: 1508\n Relay_Master_Log_File: source-bin.000002\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Replicate_Do_Table:\n Replicate_Ignore_Table:\n Replicate_Wild_Do_Table:\n Replicate_Wild_Ignore_Table:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 1307\n Relay_Log_Space: 1858\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\n Seconds_Behind_Master: 0\nMaster_SSL_Verify_Server_Cert: No\n Last_IO_Errno: 0\n Last_IO_Error:\n Last_SQL_Errno: 0\n Last_SQL_Error:\n Replicate_Ignore_Server_Ids:\n Master_Server_Id: 1\n Master_UUID: 3e11fa47-71ca-11e1-9e33-c80aa9429562\n Master_Info_File: /var/mysqld.2/data/master.info\n SQL_Delay: 0\n SQL_Remaining_Delay: NULL\n Slave_SQL_Running_State: Reading event from the relay log\n Master_Retry_Count: 10\n Master_Bind:\n Last_IO_Error_Timestamp:\n Last_SQL_Error_Timestamp:\n Master_SSL_Crl:\n Master_SSL_Crlpath:\n Retrieved_Gtid_Set: 3e11fa47-71ca-11e1-9e33-c80aa9429562:1-5\n Executed_Gtid_Set: 3e11fa47-71ca-11e1-9e33-c80aa9429562:1-5\n Auto_Position: 1\n Replicate_Rewrite_DB:\n Channel_name:\n Master_TLS_Version: TLSv1.2\n\nThe Performance Schema provides tables that expose replication\ninformation. This is similar to the information available from the SHOW\nSLAVE STATUS statement, but represented in table form. For details, see\nhttps://dev.mysql.com/doc/refman/5.7/en/performance-schema-replication-\ntables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-slave-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-slave-status.html'),(640,'SHOW STATUS',3,'Syntax:\nSHOW [GLOBAL | SESSION] STATUS\n [LIKE \'pattern\' | WHERE expr]\n\n*Note*:\n\nThe value of the show_compatibility_56 system variable affects the\ninformation available from and privileges required for the statement\ndescribed here. For details, see the description of that variable in\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nSHOW STATUS provides server status information (see\nhttps://dev.mysql.com/doc/refman/5.7/en/server-status-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nStatus variable information is also available from these sources:\n\no Performance Schema tables. See\n https://dev.mysql.com/doc/refman/5.7/en/performance-schema-status-var\n iable-tables.html.\n\no The GLOBAL_STATUS and SESSION_STATUS tables. See\n https://dev.mysql.com/doc/refman/5.7/en/information-schema-status-tab\n le.html.\n\no The mysqladmin extended-status command. See\n https://dev.mysql.com/doc/refman/5.7/en/mysqladmin.html.\n\nFor SHOW STATUS, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nSHOW STATUS accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays the global status\n values. A global status variable may represent status for some aspect\n of the server itself (for example, Aborted_connects), or the\n aggregated status over all connections to MySQL (for example,\n Bytes_received and Bytes_sent). If a variable has no global value,\n the session value is displayed.\n\no With a SESSION modifier, the statement displays the status variable\n values for the current connection. If a variable has no session\n value, the global value is displayed. LOCAL is a synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each status variable is listed at\nhttps://dev.mysql.com/doc/refman/5.7/en/server-status-variables.html.\n\nEach invocation of the SHOW STATUS statement uses an internal temporary\ntable and increments the global Created_tmp_tables value.\n\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern:\n\nmysql> SHOW STATUS LIKE \'Key%\';\n+--------------------+----------+\n| Variable_name | Value |\n+--------------------+----------+\n| Key_blocks_used | 14955 |\n| Key_read_requests | 96854827 |\n| Key_reads | 162040 |\n| Key_write_requests | 7589728 |\n| Key_writes | 3813196 |\n+--------------------+----------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-status.html'),(641,'SHOW TABLE STATUS',3,'Syntax:\nSHOW TABLE STATUS\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLE STATUS works likes SHOW TABLES, but provides a lot of\ninformation about each non-TEMPORARY table. You can also get this list\nusing the mysqlshow --status db_name command. The LIKE clause, if\npresent, indicates which table names to match. The WHERE clause can be\ngiven to select rows using more general conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-table-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-table-status.html'),(642,'SHOW TABLES',3,'Syntax:\nSHOW [FULL] TABLES\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLES lists the non-TEMPORARY tables in a given database. You can\nalso get this list using the mysqlshow db_name command. The LIKE\nclause, if present, indicates which table names to match. The WHERE\nclause can be given to select rows using more general conditions, as\ndiscussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nMatching performed by the LIKE clause is dependent on the setting of\nthe lower_case_table_names system variable.\n\nThis statement also lists any views in the database. The optional FULL\nmodifier causes SHOW TABLES to display a second output column with\nvalues of BASE TABLE for a table, VIEW for a view, or SYSTEM VIEW for\nan INFORMATION_SCHEMA table.\n\nIf you have no privileges for a base table or view, it does not show up\nin the output from SHOW TABLES or mysqlshow db_name.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-tables.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-tables.html'),(643,'SHOW TRIGGERS',3,'Syntax:\nSHOW TRIGGERS\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TRIGGERS lists the triggers currently defined for tables in a\ndatabase (the default database unless a FROM clause is given). This\nstatement returns results only for databases and tables for which you\nhave the TRIGGER privilege. The LIKE clause, if present, indicates\nwhich table names (not trigger names) to match and causes the statement\nto display triggers for those tables. The WHERE clause can be given to\nselect rows using more general conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nFor the ins_sum trigger defined in\nhttps://dev.mysql.com/doc/refman/5.7/en/triggers.html, the output of\nSHOW TRIGGERS is as shown here:\n\nmysql> SHOW TRIGGERS LIKE \'acc%\'\\G\n*************************** 1. row ***************************\n Trigger: ins_sum\n Event: INSERT\n Table: account\n Statement: SET @sum = @sum + NEW.amount\n Timing: BEFORE\n Created: 2018-08-08 10:10:12.61\n sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,\n NO_ZERO_IN_DATE,NO_ZERO_DATE,\n ERROR_FOR_DIVISION_BY_ZERO,\n NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\n Definer: me@localhost\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-triggers.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-triggers.html'),(644,'SHOW VARIABLES',3,'Syntax:\nSHOW [GLOBAL | SESSION] VARIABLES\n [LIKE \'pattern\' | WHERE expr]\n\n*Note*:\n\nThe value of the show_compatibility_56 system variable affects the\ninformation available from and privileges required for the statement\ndescribed here. For details, see the description of that variable in\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nSHOW VARIABLES shows the values of MySQL system variables (see\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nSystem variable information is also available from these sources:\n\no Performance Schema tables. See\n https://dev.mysql.com/doc/refman/5.7/en/performance-schema-system-var\n iable-tables.html.\n\no The GLOBAL_VARIABLES and SESSION_VARIABLES tables. See\n https://dev.mysql.com/doc/refman/5.7/en/information-schema-variables-\n table.html.\n\no The mysqladmin variables command. See\n https://dev.mysql.com/doc/refman/5.7/en/mysqladmin.html.\n\nFor SHOW VARIABLES, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nSHOW VARIABLES accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays global system variable\n values. These are the values used to initialize the corresponding\n session variables for new connections to MySQL. If a variable has no\n global value, no value is displayed.\n\no With a SESSION modifier, the statement displays the system variable\n values that are in effect for the current connection. If a variable\n has no session value, the global value is displayed. LOCAL is a\n synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each system variable is listed at\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nSHOW VARIABLES is subject to a version-dependent display-width limit.\nFor variables with very long values that are not completely displayed,\nuse SELECT as a workaround. For example:\n\nSELECT @@GLOBAL.innodb_data_file_path;\n\nMost system variables can be set at server startup (read-only variables\nsuch as version_comment are exceptions). Many can be changed at runtime\nwith the SET statement. See\nhttps://dev.mysql.com/doc/refman/5.7/en/using-system-variables.html,\nand [HELP SET].\n\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern. To obtain the row for a\nspecific variable, use a LIKE clause as shown:\n\nSHOW VARIABLES LIKE \'max_join_size\';\nSHOW SESSION VARIABLES LIKE \'max_join_size\';\n\nTo get a list of variables whose name match a pattern, use the %\nwildcard character in a LIKE clause:\n\nSHOW VARIABLES LIKE \'%size%\';\nSHOW GLOBAL VARIABLES LIKE \'%size%\';\n\nWildcard characters can be used in any position within the pattern to\nbe matched. Strictly speaking, because _ is a wildcard that matches any\nsingle character, you should escape it as \\_ to match it literally. In\npractice, this is rarely necessary.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-variables.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-variables.html'),(645,'SHOW WARNINGS',3,'Syntax:\nSHOW WARNINGS [LIMIT [offset,] row_count]\nSHOW COUNT(*) WARNINGS\n\nSHOW WARNINGS is a diagnostic statement that displays information about\nthe conditions (errors, warnings, and notes) resulting from executing a\nstatement in the current session. Warnings are generated for DML\nstatements such as INSERT, UPDATE, and LOAD DATA as well as DDL\nstatements such as CREATE TABLE and ALTER TABLE.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttps://dev.mysql.com/doc/refman/5.7/en/select.html.\n\nSHOW WARNINGS is also used following EXPLAIN, to display the extended\ninformation generated by EXPLAIN. See\nhttps://dev.mysql.com/doc/refman/5.7/en/explain-extended.html.\n\nSHOW WARNINGS displays information about the conditions resulting from\nexecution of the most recent nondiagnostic statement in the current\nsession. If the most recent statement resulted in an error during\nparsing, SHOW WARNINGS shows the resulting conditions, regardless of\nstatement type (diagnostic or nondiagnostic).\n\nThe SHOW COUNT(*) WARNINGS diagnostic statement displays the total\nnumber of errors, warnings, and notes. You can also retrieve this\nnumber from the warning_count system variable:\n\nSHOW COUNT(*) WARNINGS;\nSELECT @@warning_count;\n\nA difference in these statements is that the first is a diagnostic\nstatement that does not clear the message list. The second, because it\nis a SELECT statement is considered nondiagnostic and does clear the\nmessage list.\n\nA related diagnostic statement, SHOW ERRORS, shows only error\nconditions (it excludes warnings and notes), and SHOW COUNT(*) ERRORS\nstatement displays the total number of errors. See [HELP SHOW ERRORS].\nGET DIAGNOSTICS can be used to examine information for individual\nconditions. See [HELP GET DIAGNOSTICS].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-warnings.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-warnings.html'),(646,'BINLOG',3,'Syntax:\nBINLOG \'str\'\n\nBINLOG is an internal-use statement. It is generated by the mysqlbinlog\nprogram as the printable representation of certain events in binary log\nfiles. (See https://dev.mysql.com/doc/refman/5.7/en/mysqlbinlog.html.)\nThe \'str\' value is a base 64-encoded string the that server decodes to\ndetermine the data change indicated by the corresponding event. This\nstatement requires the SUPER privilege.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/binlog.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/binlog.html'),(647,'CACHE INDEX',3,'Syntax:\nCACHE INDEX {\n tbl_index_list [, tbl_index_list] ...\n | tbl_name PARTITION (partition_list)\n }\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [{INDEX|KEY} (index_name[, index_name] ...)]\n\npartition_list: {\n partition_name[, partition_name] ...\n | ALL\n}\n\nThe CACHE INDEX statement assigns table indexes to a specific key\ncache. It applies only to MyISAM tables, including partitioned MyISAM\ntables. After the indexes have been assigned, they can be preloaded\ninto the cache if desired with LOAD INDEX INTO CACHE.\n\nThe following statement assigns indexes from the tables t1, t2, and t3\nto the key cache named hot_cache:\n\nmysql> CACHE INDEX t1, t2, t3 IN hot_cache;\n+---------+--------------------+----------+----------+\n| Table | Op | Msg_type | Msg_text |\n+---------+--------------------+----------+----------+\n| test.t1 | assign_to_keycache | status | OK |\n| test.t2 | assign_to_keycache | status | OK |\n| test.t3 | assign_to_keycache | status | OK |\n+---------+--------------------+----------+----------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/cache-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/cache-index.html'),(648,'FLUSH',3,'Syntax:\nFLUSH [NO_WRITE_TO_BINLOG | LOCAL] {\n flush_option [, flush_option] ...\n | tables_option\n}\n\nflush_option: {\n BINARY LOGS\n | DES_KEY_FILE\n | ENGINE LOGS\n | ERROR LOGS\n | GENERAL LOGS\n | HOSTS\n | LOGS\n | PRIVILEGES\n | OPTIMIZER_COSTS\n | QUERY CACHE\n | RELAY LOGS [FOR CHANNEL channel]\n | SLOW LOGS\n | STATUS\n | USER_RESOURCES\n}\n\ntables_option: {\n TABLES\n | TABLES tbl_name [, tbl_name] ...\n | TABLES WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... FOR EXPORT\n}\n\nThe FLUSH statement has several variant forms that clear or reload\nvarious internal caches, flush tables, or acquire locks. To execute\nFLUSH, you must have the RELOAD privilege. Specific flush options might\nrequire additional privileges, as indicated in the option descriptions.\n\n*Note*:\n\nIt is not possible to issue FLUSH statements within stored functions or\ntriggers. However, you may use FLUSH in stored procedures, so long as\nthese are not called from stored functions or triggers. See\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nBy default, the server writes FLUSH statements to the binary log so\nthat they replicate to replicas. To suppress logging, specify the\noptional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\n*Note*:\n\nFLUSH LOGS, FLUSH BINARY LOGS, FLUSH TABLES WITH READ LOCK (with or\nwithout a table list), and FLUSH TABLES tbl_name ... FOR EXPORT are not\nwritten to the binary log in any case because they would cause problems\nif replicated to a replica.\n\nThe FLUSH statement causes an implicit commit. See\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nThe mysqladmin utility provides a command-line interface to some flush\noperations, using commands such as flush-hosts, flush-logs,\nflush-privileges, flush-status, and flush-tables. See\nhttps://dev.mysql.com/doc/refman/5.7/en/mysqladmin.html.\n\nSending a SIGHUP signal to the server causes several flush operations\nto occur that are similar to various forms of the FLUSH statement.\nSignals can be sent by the root system account or the system account\nthat owns the server process. This enables the flush operations to be\nperformed without having to connect to the server, which requires a\nMySQL account that has privileges sufficient for those operations. See\nhttps://dev.mysql.com/doc/refman/5.7/en/unix-signal-response.html.\n\nThe RESET statement is similar to FLUSH. See [HELP RESET], for\ninformation about using RESET with replication.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/flush.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/flush.html'),(649,'KILL',3,'Syntax:\nKILL [CONNECTION | QUERY] processlist_id\n\nEach connection to mysqld runs in a separate thread. You can kill a\nthread with the KILL processlist_id statement.\n\nThread processlist identifiers can be determined from the ID column of\nthe INFORMATION_SCHEMA PROCESSLIST table, the Id column of SHOW\nPROCESSLIST output, and the PROCESSLIST_ID column of the Performance\nSchema threads table. The value for the current thread is returned by\nthe CONNECTION_ID() function.\n\nKILL permits an optional CONNECTION or QUERY modifier:\n\no KILL CONNECTION is the same as KILL with no modifier: It terminates\n the connection associated with the given processlist_id, after\n terminating any statement the connection is executing.\n\no KILL QUERY terminates the statement the connection is currently\n executing, but leaves the connection itself intact.\n\nThe ability to see which threads are available to be killed depends on\nthe PROCESS privilege:\n\no Without PROCESS, you can see only your own threads.\n\no With PROCESS, you can see all threads.\n\nThe ability to kill threads and statements depends on the SUPER\nprivilege:\n\no Without SUPER, you can kill only your own threads and statements.\n\no With SUPER, you can kill all threads and statements.\n\nYou can also use the mysqladmin processlist and mysqladmin kill\ncommands to examine and kill threads.\n\n*Note*:\n\nYou cannot use KILL with the Embedded MySQL Server library because the\nembedded server merely runs inside the threads of the host application.\nIt does not create any connection threads of its own.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/kill.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/kill.html'),(650,'LOAD INDEX',3,'Syntax:\nLOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [PARTITION (partition_list)]\n [{INDEX|KEY} (index_name[, index_name] ...)]\n [IGNORE LEAVES]\n\npartition_list: {\n partition_name[, partition_name] ...\n | ALL\n}\n\nThe LOAD INDEX INTO CACHE statement preloads a table index into the key\ncache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise.\n\nLOAD INDEX INTO CACHE applies only to MyISAM tables, including\npartitioned MyISAM tables. In addition, indexes on partitioned tables\ncan be preloaded for one, several, or all partitions.\n\nThe IGNORE LEAVES modifier causes only blocks for the nonleaf nodes of\nthe index to be preloaded.\n\nIGNORE LEAVES is also supported for partitioned MyISAM tables.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/load-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/load-index.html'),(651,'RESET',3,'Syntax:\nRESET reset_option [, reset_option] ...\n\nreset_option: {\n MASTER\n | QUERY CACHE\n | SLAVE\n}\n\nThe RESET statement is used to clear the state of various server\noperations. You must have the RELOAD privilege to execute RESET.\n\nRESET acts as a stronger version of the FLUSH statement. See [HELP\nFLUSH].\n\nThe RESET statement causes an implicit commit. See\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nThe following list describes the permitted RESET statement reset_option\nvalues:\n\no RESET MASTER\n\n Deletes all binary logs listed in the index file, resets the binary\n log index file to be empty, and creates a new binary log file.\n\no RESET QUERY CACHE\n\n Removes all query results from the query cache.\n\n *Note*:\n\n The query cache is deprecated as of MySQL 5.7.20, and is removed in\n MySQL 8.0. Deprecation includes RESET QUERY CACHE.\n\no RESET SLAVE\n\n Makes the replica forget its replication position in the source\n binary logs. Also resets the relay log by deleting any existing relay\n log files and beginning a new one.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/reset.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/reset.html'),(652,'SHUTDOWN',3,'Syntax:\nSHUTDOWN\n\nThis statement stops the MySQL server. It requires the SHUTDOWN\nprivilege.\n\nSHUTDOWN provides an SQL-level interface to the same functionality\navailable using the mysqladmin shutdown command or the mysql_shutdown()\n(https://dev.mysql.com/doc/c-api/5.7/en/mysql-shutdown.html) C API\nfunction. A successful SHUTDOWN sequence consists of checking the\nprivileges, validating the arguments, and sending an OK packet to the\nclient. Then the server is shut down.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/shutdown.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/shutdown.html'),(653,'EXPLAIN',48,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n {explainable_stmt | FOR CONNECTION connection_id}\n\nexplain_type: {\n EXTENDED\n | PARTITIONS\n | FORMAT = format_name\n}\n\nformat_name: {\n TRADITIONAL\n | JSON\n}\n\nexplainable_stmt: {\n SELECT statement\n | DELETE statement\n | INSERT statement\n | REPLACE statement\n | UPDATE statement\n}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/explain.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/explain.html'),(654,'DESCRIBE',48,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n {explainable_stmt | FOR CONNECTION connection_id}\n\nexplain_type: {\n EXTENDED\n | PARTITIONS\n | FORMAT = format_name\n}\n\nformat_name: {\n TRADITIONAL\n | JSON\n}\n\nexplainable_stmt: {\n SELECT statement\n | DELETE statement\n | INSERT statement\n | REPLACE statement\n | UPDATE statement\n}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/explain.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/explain.html'),(655,'DESC',48,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n {explainable_stmt | FOR CONNECTION connection_id}\n\nexplain_type: {\n EXTENDED\n | PARTITIONS\n | FORMAT = format_name\n}\n\nformat_name: {\n TRADITIONAL\n | JSON\n}\n\nexplainable_stmt: {\n SELECT statement\n | DELETE statement\n | INSERT statement\n | REPLACE statement\n | UPDATE statement\n}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/explain.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/explain.html'),(656,'HELP STATEMENT',48,'Syntax:\nHELP \'search_string\'\n\nThe HELP statement returns online information from the MySQL Reference\nManual. Its proper operation requires that the help tables in the mysql\ndatabase be initialized with help topic information (see\nhttps://dev.mysql.com/doc/refman/5.7/en/server-side-help-support.html).\n\nThe HELP statement searches the help tables for the given search string\nand displays the result of the search. The search string is not\ncase-sensitive.\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP \'rep%\' returns a list of topics\nthat begin with rep.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/help.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/help.html'),(657,'USE',48,'Syntax:\nUSE db_name\n\nThe USE statement tells MySQL to use the named database as the default\n(current) database for subsequent statements. This statement requires\nsome privilege for the database or some object within it.\n\nThe named database remains the default until the end of the session or\nanother USE statement is issued:\n\nUSE db1;\nSELECT COUNT(*) FROM mytable; # selects from db1.mytable\nUSE db2;\nSELECT COUNT(*) FROM mytable; # selects from db2.mytable\n\nThe database name must be specified on a single line. Newlines in\ndatabase names are not supported.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/use.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/use.html'),(658,'MERGE',49,'The MERGE storage engine, also known as the MRG_MyISAM engine, is a\ncollection of identical MyISAM tables that can be used as one.\n\"Identical\" means that all tables have identical column data types and\nindex information. You cannot merge MyISAM tables in which the columns\nare listed in a different order, do not have exactly the same data\ntypes in corresponding columns, or have the indexes in different order.\nHowever, any or all of the MyISAM tables can be compressed with\nmyisampack. See\nhttps://dev.mysql.com/doc/refman/5.7/en/myisampack.html. Differences\nbetween tables such as these do not matter:\n\no Names of corresponding columns and indexes can differ.\n\no Comments for tables, columns, and indexes can differ.\n\no Table options such as AVG_ROW_LENGTH, MAX_ROWS, or PACK_KEYS can\n differ.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/merge-storage-engine.html\n\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> INSERT INTO t1 (message) VALUES (\'Testing\'),(\'table\'),(\'t1\');\nmysql> INSERT INTO t2 (message) VALUES (\'Testing\'),(\'table\'),(\'t2\');\nmysql> CREATE TABLE total (\n -> a INT NOT NULL AUTO_INCREMENT,\n -> message CHAR(20), INDEX(a))\n -> ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;\n','https://dev.mysql.com/doc/refman/5.7/en/merge-storage-engine.html');
/*!40000 ALTER TABLE `help_topic` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `innodb_index_stats`
--
DROP TABLE IF EXISTS `innodb_index_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `innodb_index_stats` (
`database_name` varchar(64) COLLATE utf8_bin NOT NULL,
`table_name` varchar(199) COLLATE utf8_bin NOT NULL,
`index_name` varchar(64) COLLATE utf8_bin NOT NULL,
`last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`stat_name` varchar(64) COLLATE utf8_bin NOT NULL,
`stat_value` bigint(20) unsigned NOT NULL,
`sample_size` bigint(20) unsigned DEFAULT NULL,
`stat_description` varchar(1024) COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`database_name`,`table_name`,`index_name`,`stat_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `innodb_index_stats`
--
LOCK TABLES `innodb_index_stats` WRITE;
/*!40000 ALTER TABLE `innodb_index_stats` DISABLE KEYS */;
INSERT INTO `innodb_index_stats` VALUES ('bitnami_redmine','ar_internal_metadata','PRIMARY','2023-02-19 17:06:51','n_diff_pfx01',0,1,'key'),('bitnami_redmine','ar_internal_metadata','PRIMARY','2023-02-19 17:06:51','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','ar_internal_metadata','PRIMARY','2023-02-19 17:06:51','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','attachments','PRIMARY','2023-02-19 17:07:03','n_diff_pfx01',2913,20,'id'),('bitnami_redmine','attachments','PRIMARY','2023-02-19 17:07:03','n_leaf_pages',43,NULL,'Number of leaf pages in the index'),('bitnami_redmine','attachments','PRIMARY','2023-02-19 17:07:03','size',97,NULL,'Number of pages in the index'),('bitnami_redmine','attachments','index_attachments_on_author_id','2023-02-19 17:07:03','n_diff_pfx01',100,4,'author_id'),('bitnami_redmine','attachments','index_attachments_on_author_id','2023-02-19 17:07:03','n_diff_pfx02',2959,4,'author_id,id'),('bitnami_redmine','attachments','index_attachments_on_author_id','2023-02-19 17:07:03','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('bitnami_redmine','attachments','index_attachments_on_author_id','2023-02-19 17:07:03','size',5,NULL,'Number of pages in the index'),('bitnami_redmine','attachments','index_attachments_on_container_id_and_container_type','2023-02-19 17:07:03','n_diff_pfx01',624,7,'container_id'),('bitnami_redmine','attachments','index_attachments_on_container_id_and_container_type','2023-02-19 17:07:03','n_diff_pfx02',763,7,'container_id,container_type'),('bitnami_redmine','attachments','index_attachments_on_container_id_and_container_type','2023-02-19 17:07:03','n_diff_pfx03',2959,7,'container_id,container_type,id'),('bitnami_redmine','attachments','index_attachments_on_container_id_and_container_type','2023-02-19 17:07:03','n_leaf_pages',7,NULL,'Number of leaf pages in the index'),('bitnami_redmine','attachments','index_attachments_on_container_id_and_container_type','2023-02-19 17:07:03','size',8,NULL,'Number of pages in the index'),('bitnami_redmine','attachments','index_attachments_on_created_on','2023-02-19 17:07:03','n_diff_pfx01',2843,4,'created_on'),('bitnami_redmine','attachments','index_attachments_on_created_on','2023-02-19 17:07:03','n_diff_pfx02',2959,4,'created_on,id'),('bitnami_redmine','attachments','index_attachments_on_created_on','2023-02-19 17:07:03','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('bitnami_redmine','attachments','index_attachments_on_created_on','2023-02-19 17:07:03','size',5,NULL,'Number of pages in the index'),('bitnami_redmine','attachments','index_attachments_on_disk_filename','2023-02-19 17:07:03','n_diff_pfx01',2779,16,'disk_filename'),('bitnami_redmine','attachments','index_attachments_on_disk_filename','2023-02-19 17:07:03','n_diff_pfx02',2959,16,'disk_filename,id'),('bitnami_redmine','attachments','index_attachments_on_disk_filename','2023-02-19 17:07:03','n_leaf_pages',16,NULL,'Number of leaf pages in the index'),('bitnami_redmine','attachments','index_attachments_on_disk_filename','2023-02-19 17:07:03','size',17,NULL,'Number of pages in the index'),('bitnami_redmine','auth_sources','PRIMARY','2023-02-19 17:06:52','n_diff_pfx01',0,1,'id'),('bitnami_redmine','auth_sources','PRIMARY','2023-02-19 17:06:52','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','auth_sources','PRIMARY','2023-02-19 17:06:52','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','auth_sources','index_auth_sources_on_id_and_type','2023-02-19 17:06:52','n_diff_pfx01',0,1,'id'),('bitnami_redmine','auth_sources','index_auth_sources_on_id_and_type','2023-02-19 17:06:52','n_diff_pfx02',0,1,'id,type'),('bitnami_redmine','auth_sources','index_auth_sources_on_id_and_type','2023-02-19 17:06:52','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','auth_sources','index_auth_sources_on_id_and_type','2023-02-19 17:06:52','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','boards','PRIMARY','2023-02-19 17:06:53','n_diff_pfx01',6,1,'id'),('bitnami_redmine','boards','PRIMARY','2023-02-19 17:06:53','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','boards','PRIMARY','2023-02-19 17:06:53','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','boards','boards_project_id','2023-02-19 17:06:53','n_diff_pfx01',4,1,'project_id'),('bitnami_redmine','boards','boards_project_id','2023-02-19 17:06:53','n_diff_pfx02',6,1,'project_id,id'),('bitnami_redmine','boards','boards_project_id','2023-02-19 17:06:53','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','boards','boards_project_id','2023-02-19 17:06:53','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','boards','index_boards_on_last_message_id','2023-02-19 17:06:53','n_diff_pfx01',4,1,'last_message_id'),('bitnami_redmine','boards','index_boards_on_last_message_id','2023-02-19 17:06:53','n_diff_pfx02',6,1,'last_message_id,id'),('bitnami_redmine','boards','index_boards_on_last_message_id','2023-02-19 17:06:53','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','boards','index_boards_on_last_message_id','2023-02-19 17:06:53','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','changes','PRIMARY','2023-02-19 17:06:54','n_diff_pfx01',22123,20,'id'),('bitnami_redmine','changes','PRIMARY','2023-02-19 17:06:54','n_leaf_pages',105,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changes','PRIMARY','2023-02-19 17:06:54','size',161,NULL,'Number of pages in the index'),('bitnami_redmine','changes','changesets_changeset_id','2023-02-19 17:06:54','n_diff_pfx01',2607,19,'changeset_id'),('bitnami_redmine','changes','changesets_changeset_id','2023-02-19 17:06:54','n_diff_pfx02',21392,19,'changeset_id,id'),('bitnami_redmine','changes','changesets_changeset_id','2023-02-19 17:06:54','n_leaf_pages',19,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changes','changesets_changeset_id','2023-02-19 17:06:54','size',20,NULL,'Number of pages in the index'),('bitnami_redmine','changeset_parents','GEN_CLUST_INDEX','2023-02-19 17:06:53','n_diff_pfx01',0,1,'DB_ROW_ID'),('bitnami_redmine','changeset_parents','GEN_CLUST_INDEX','2023-02-19 17:06:53','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changeset_parents','GEN_CLUST_INDEX','2023-02-19 17:06:53','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','changeset_parents','changeset_parents_changeset_ids','2023-02-19 17:06:53','n_diff_pfx01',0,1,'changeset_id'),('bitnami_redmine','changeset_parents','changeset_parents_changeset_ids','2023-02-19 17:06:53','n_diff_pfx02',0,1,'changeset_id,DB_ROW_ID'),('bitnami_redmine','changeset_parents','changeset_parents_changeset_ids','2023-02-19 17:06:53','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changeset_parents','changeset_parents_changeset_ids','2023-02-19 17:06:53','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','changeset_parents','changeset_parents_parent_ids','2023-02-19 17:06:53','n_diff_pfx01',0,1,'parent_id'),('bitnami_redmine','changeset_parents','changeset_parents_parent_ids','2023-02-19 17:06:53','n_diff_pfx02',0,1,'parent_id,DB_ROW_ID'),('bitnami_redmine','changeset_parents','changeset_parents_parent_ids','2023-02-19 17:06:53','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changeset_parents','changeset_parents_parent_ids','2023-02-19 17:06:53','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','changesets','PRIMARY','2023-02-19 17:06:55','n_diff_pfx01',2607,10,'id'),('bitnami_redmine','changesets','PRIMARY','2023-02-19 17:06:55','n_leaf_pages',10,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changesets','PRIMARY','2023-02-19 17:06:55','size',11,NULL,'Number of pages in the index'),('bitnami_redmine','changesets','changesets_repos_rev','2023-02-19 17:06:55','n_diff_pfx01',31,4,'repository_id'),('bitnami_redmine','changesets','changesets_repos_rev','2023-02-19 17:06:55','n_diff_pfx02',2607,4,'repository_id,revision'),('bitnami_redmine','changesets','changesets_repos_rev','2023-02-19 17:06:55','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changesets','changesets_repos_rev','2023-02-19 17:06:55','size',5,NULL,'Number of pages in the index'),('bitnami_redmine','changesets','changesets_repos_scmid','2023-02-19 17:06:55','n_diff_pfx01',31,3,'repository_id'),('bitnami_redmine','changesets','changesets_repos_scmid','2023-02-19 17:06:55','n_diff_pfx02',31,3,'repository_id,scmid'),('bitnami_redmine','changesets','changesets_repos_scmid','2023-02-19 17:06:55','n_diff_pfx03',2607,3,'repository_id,scmid,id'),('bitnami_redmine','changesets','changesets_repos_scmid','2023-02-19 17:06:55','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changesets','changesets_repos_scmid','2023-02-19 17:06:55','size',4,NULL,'Number of pages in the index'),('bitnami_redmine','changesets','index_changesets_on_committed_on','2023-02-19 17:06:55','n_diff_pfx01',2549,5,'committed_on'),('bitnami_redmine','changesets','index_changesets_on_committed_on','2023-02-19 17:06:55','n_diff_pfx02',2607,5,'committed_on,id'),('bitnami_redmine','changesets','index_changesets_on_committed_on','2023-02-19 17:06:55','n_leaf_pages',5,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changesets','index_changesets_on_committed_on','2023-02-19 17:06:55','size',6,NULL,'Number of pages in the index'),('bitnami_redmine','changesets','index_changesets_on_repository_id','2023-02-19 17:06:55','n_diff_pfx01',31,4,'repository_id'),('bitnami_redmine','changesets','index_changesets_on_repository_id','2023-02-19 17:06:55','n_diff_pfx02',2607,4,'repository_id,id'),('bitnami_redmine','changesets','index_changesets_on_repository_id','2023-02-19 17:06:55','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changesets','index_changesets_on_repository_id','2023-02-19 17:06:55','size',5,NULL,'Number of pages in the index'),('bitnami_redmine','changesets','index_changesets_on_user_id','2023-02-19 17:06:55','n_diff_pfx01',2,3,'user_id'),('bitnami_redmine','changesets','index_changesets_on_user_id','2023-02-19 17:06:55','n_diff_pfx02',2607,3,'user_id,id'),('bitnami_redmine','changesets','index_changesets_on_user_id','2023-02-19 17:06:55','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changesets','index_changesets_on_user_id','2023-02-19 17:06:55','size',4,NULL,'Number of pages in the index'),('bitnami_redmine','changesets_issues','changesets_issues_ids','2023-02-19 17:06:54','n_diff_pfx01',0,1,'changeset_id'),('bitnami_redmine','changesets_issues','changesets_issues_ids','2023-02-19 17:06:54','n_diff_pfx02',0,1,'changeset_id,issue_id'),('bitnami_redmine','changesets_issues','changesets_issues_ids','2023-02-19 17:06:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changesets_issues','changesets_issues_ids','2023-02-19 17:06:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','changesets_issues','index_changesets_issues_on_issue_id','2023-02-19 17:06:54','n_diff_pfx01',0,1,'issue_id'),('bitnami_redmine','changesets_issues','index_changesets_issues_on_issue_id','2023-02-19 17:06:54','n_diff_pfx02',0,1,'issue_id,changeset_id'),('bitnami_redmine','changesets_issues','index_changesets_issues_on_issue_id','2023-02-19 17:06:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','changesets_issues','index_changesets_issues_on_issue_id','2023-02-19 17:06:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','comments','PRIMARY','2023-02-19 17:06:56','n_diff_pfx01',91,3,'id'),('bitnami_redmine','comments','PRIMARY','2023-02-19 17:06:56','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('bitnami_redmine','comments','PRIMARY','2023-02-19 17:06:56','size',4,NULL,'Number of pages in the index'),('bitnami_redmine','comments','index_comments_on_author_id','2023-02-19 17:06:56','n_diff_pfx01',10,1,'author_id'),('bitnami_redmine','comments','index_comments_on_author_id','2023-02-19 17:06:56','n_diff_pfx02',91,1,'author_id,id'),('bitnami_redmine','comments','index_comments_on_author_id','2023-02-19 17:06:56','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','comments','index_comments_on_author_id','2023-02-19 17:06:56','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','comments','index_comments_on_commented_id_and_commented_type','2023-02-19 17:06:56','n_diff_pfx01',34,1,'commented_id'),('bitnami_redmine','comments','index_comments_on_commented_id_and_commented_type','2023-02-19 17:06:56','n_diff_pfx02',34,1,'commented_id,commented_type'),('bitnami_redmine','comments','index_comments_on_commented_id_and_commented_type','2023-02-19 17:06:56','n_diff_pfx03',91,1,'commented_id,commented_type,id'),('bitnami_redmine','comments','index_comments_on_commented_id_and_commented_type','2023-02-19 17:06:56','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','comments','index_comments_on_commented_id_and_commented_type','2023-02-19 17:06:56','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','custom_field_enumerations','PRIMARY','2023-02-19 17:06:54','n_diff_pfx01',0,1,'id'),('bitnami_redmine','custom_field_enumerations','PRIMARY','2023-02-19 17:06:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','custom_field_enumerations','PRIMARY','2023-02-19 17:06:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','custom_fields','PRIMARY','2023-02-19 17:06:54','n_diff_pfx01',0,1,'id'),('bitnami_redmine','custom_fields','PRIMARY','2023-02-19 17:06:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','custom_fields','PRIMARY','2023-02-19 17:06:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','custom_fields','index_custom_fields_on_id_and_type','2023-02-19 17:06:54','n_diff_pfx01',0,1,'id'),('bitnami_redmine','custom_fields','index_custom_fields_on_id_and_type','2023-02-19 17:06:54','n_diff_pfx02',0,1,'id,type'),('bitnami_redmine','custom_fields','index_custom_fields_on_id_and_type','2023-02-19 17:06:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','custom_fields','index_custom_fields_on_id_and_type','2023-02-19 17:06:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','custom_fields_projects','index_custom_fields_projects_on_custom_field_id_and_project_id','2023-02-19 17:06:54','n_diff_pfx01',0,1,'custom_field_id'),('bitnami_redmine','custom_fields_projects','index_custom_fields_projects_on_custom_field_id_and_project_id','2023-02-19 17:06:54','n_diff_pfx02',0,1,'custom_field_id,project_id'),('bitnami_redmine','custom_fields_projects','index_custom_fields_projects_on_custom_field_id_and_project_id','2023-02-19 17:06:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','custom_fields_projects','index_custom_fields_projects_on_custom_field_id_and_project_id','2023-02-19 17:06:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','custom_fields_roles','custom_fields_roles_ids','2023-02-19 17:06:55','n_diff_pfx01',0,1,'custom_field_id'),('bitnami_redmine','custom_fields_roles','custom_fields_roles_ids','2023-02-19 17:06:55','n_diff_pfx02',0,1,'custom_field_id,role_id'),('bitnami_redmine','custom_fields_roles','custom_fields_roles_ids','2023-02-19 17:06:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','custom_fields_roles','custom_fields_roles_ids','2023-02-19 17:06:55','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','custom_fields_trackers','index_custom_fields_trackers_on_custom_field_id_and_tracker_id','2023-02-19 17:06:55','n_diff_pfx01',0,1,'custom_field_id'),('bitnami_redmine','custom_fields_trackers','index_custom_fields_trackers_on_custom_field_id_and_tracker_id','2023-02-19 17:06:55','n_diff_pfx02',0,1,'custom_field_id,tracker_id'),('bitnami_redmine','custom_fields_trackers','index_custom_fields_trackers_on_custom_field_id_and_tracker_id','2023-02-19 17:06:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','custom_fields_trackers','index_custom_fields_trackers_on_custom_field_id_and_tracker_id','2023-02-19 17:06:55','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','custom_values','PRIMARY','2023-02-19 17:06:55','n_diff_pfx01',0,1,'id'),('bitnami_redmine','custom_values','PRIMARY','2023-02-19 17:06:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','custom_values','PRIMARY','2023-02-19 17:06:55','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','custom_values','custom_values_customized','2023-02-19 17:06:55','n_diff_pfx01',0,1,'customized_type'),('bitnami_redmine','custom_values','custom_values_customized','2023-02-19 17:06:55','n_diff_pfx02',0,1,'customized_type,customized_id'),('bitnami_redmine','custom_values','custom_values_customized','2023-02-19 17:06:55','n_diff_pfx03',0,1,'customized_type,customized_id,id'),('bitnami_redmine','custom_values','custom_values_customized','2023-02-19 17:06:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','custom_values','custom_values_customized','2023-02-19 17:06:55','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','custom_values','index_custom_values_on_custom_field_id','2023-02-19 17:06:55','n_diff_pfx01',0,1,'custom_field_id'),('bitnami_redmine','custom_values','index_custom_values_on_custom_field_id','2023-02-19 17:06:55','n_diff_pfx02',0,1,'custom_field_id,id'),('bitnami_redmine','custom_values','index_custom_values_on_custom_field_id','2023-02-19 17:06:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','custom_values','index_custom_values_on_custom_field_id','2023-02-19 17:06:55','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','documents','PRIMARY','2023-02-19 17:06:55','n_diff_pfx01',0,1,'id'),('bitnami_redmine','documents','PRIMARY','2023-02-19 17:06:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','documents','PRIMARY','2023-02-19 17:06:55','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','documents','documents_project_id','2023-02-19 17:06:55','n_diff_pfx01',0,1,'project_id'),('bitnami_redmine','documents','documents_project_id','2023-02-19 17:06:55','n_diff_pfx02',0,1,'project_id,id'),('bitnami_redmine','documents','documents_project_id','2023-02-19 17:06:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','documents','documents_project_id','2023-02-19 17:06:55','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','documents','index_documents_on_category_id','2023-02-19 17:06:55','n_diff_pfx01',0,1,'category_id'),('bitnami_redmine','documents','index_documents_on_category_id','2023-02-19 17:06:55','n_diff_pfx02',0,1,'category_id,id'),('bitnami_redmine','documents','index_documents_on_category_id','2023-02-19 17:06:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','documents','index_documents_on_category_id','2023-02-19 17:06:55','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','documents','index_documents_on_created_on','2023-02-19 17:06:55','n_diff_pfx01',0,1,'created_on'),('bitnami_redmine','documents','index_documents_on_created_on','2023-02-19 17:06:55','n_diff_pfx02',0,1,'created_on,id'),('bitnami_redmine','documents','index_documents_on_created_on','2023-02-19 17:06:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','documents','index_documents_on_created_on','2023-02-19 17:06:55','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','email_addresses','PRIMARY','2023-02-19 17:06:56','n_diff_pfx01',488,3,'id'),('bitnami_redmine','email_addresses','PRIMARY','2023-02-19 17:06:56','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('bitnami_redmine','email_addresses','PRIMARY','2023-02-19 17:06:56','size',4,NULL,'Number of pages in the index'),('bitnami_redmine','email_addresses','index_email_addresses_on_user_id','2023-02-19 17:06:56','n_diff_pfx01',488,1,'user_id'),('bitnami_redmine','email_addresses','index_email_addresses_on_user_id','2023-02-19 17:06:56','n_diff_pfx02',488,1,'user_id,id'),('bitnami_redmine','email_addresses','index_email_addresses_on_user_id','2023-02-19 17:06:56','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','email_addresses','index_email_addresses_on_user_id','2023-02-19 17:06:56','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','enabled_modules','PRIMARY','2023-02-19 17:06:57','n_diff_pfx01',744,3,'id'),('bitnami_redmine','enabled_modules','PRIMARY','2023-02-19 17:06:57','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('bitnami_redmine','enabled_modules','PRIMARY','2023-02-19 17:06:57','size',4,NULL,'Number of pages in the index'),('bitnami_redmine','enabled_modules','enabled_modules_project_id','2023-02-19 17:06:57','n_diff_pfx01',101,1,'project_id'),('bitnami_redmine','enabled_modules','enabled_modules_project_id','2023-02-19 17:06:57','n_diff_pfx02',744,1,'project_id,id'),('bitnami_redmine','enabled_modules','enabled_modules_project_id','2023-02-19 17:06:57','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','enabled_modules','enabled_modules_project_id','2023-02-19 17:06:57','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','enumerations','PRIMARY','2023-02-19 17:06:58','n_diff_pfx01',10,1,'id'),('bitnami_redmine','enumerations','PRIMARY','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','enumerations','PRIMARY','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','enumerations','index_enumerations_on_id_and_type','2023-02-19 17:06:58','n_diff_pfx01',10,1,'id'),('bitnami_redmine','enumerations','index_enumerations_on_id_and_type','2023-02-19 17:06:58','n_diff_pfx02',10,1,'id,type'),('bitnami_redmine','enumerations','index_enumerations_on_id_and_type','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','enumerations','index_enumerations_on_id_and_type','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','enumerations','index_enumerations_on_project_id','2023-02-19 17:06:58','n_diff_pfx01',1,1,'project_id'),('bitnami_redmine','enumerations','index_enumerations_on_project_id','2023-02-19 17:06:58','n_diff_pfx02',10,1,'project_id,id'),('bitnami_redmine','enumerations','index_enumerations_on_project_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','enumerations','index_enumerations_on_project_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','groups_users','groups_users_ids','2023-02-19 17:06:56','n_diff_pfx01',0,1,'group_id'),('bitnami_redmine','groups_users','groups_users_ids','2023-02-19 17:06:56','n_diff_pfx02',0,1,'group_id,user_id'),('bitnami_redmine','groups_users','groups_users_ids','2023-02-19 17:06:56','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','groups_users','groups_users_ids','2023-02-19 17:06:56','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','import_items','PRIMARY','2023-02-19 17:06:56','n_diff_pfx01',0,1,'id'),('bitnami_redmine','import_items','PRIMARY','2023-02-19 17:06:56','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','import_items','PRIMARY','2023-02-19 17:06:56','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','import_items','index_import_items_on_import_id_and_unique_id','2023-02-19 17:06:56','n_diff_pfx01',0,1,'import_id'),('bitnami_redmine','import_items','index_import_items_on_import_id_and_unique_id','2023-02-19 17:06:56','n_diff_pfx02',0,1,'import_id,unique_id'),('bitnami_redmine','import_items','index_import_items_on_import_id_and_unique_id','2023-02-19 17:06:56','n_diff_pfx03',0,1,'import_id,unique_id,id'),('bitnami_redmine','import_items','index_import_items_on_import_id_and_unique_id','2023-02-19 17:06:56','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','import_items','index_import_items_on_import_id_and_unique_id','2023-02-19 17:06:56','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','imports','PRIMARY','2023-02-19 17:06:56','n_diff_pfx01',0,1,'id'),('bitnami_redmine','imports','PRIMARY','2023-02-19 17:06:56','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','imports','PRIMARY','2023-02-19 17:06:56','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_categories','PRIMARY','2023-02-19 17:06:58','n_diff_pfx01',2,1,'id'),('bitnami_redmine','issue_categories','PRIMARY','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_categories','PRIMARY','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_categories','index_issue_categories_on_assigned_to_id','2023-02-19 17:06:58','n_diff_pfx01',1,1,'assigned_to_id'),('bitnami_redmine','issue_categories','index_issue_categories_on_assigned_to_id','2023-02-19 17:06:58','n_diff_pfx02',2,1,'assigned_to_id,id'),('bitnami_redmine','issue_categories','index_issue_categories_on_assigned_to_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_categories','index_issue_categories_on_assigned_to_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_categories','issue_categories_project_id','2023-02-19 17:06:58','n_diff_pfx01',1,1,'project_id'),('bitnami_redmine','issue_categories','issue_categories_project_id','2023-02-19 17:06:58','n_diff_pfx02',2,1,'project_id,id'),('bitnami_redmine','issue_categories','issue_categories_project_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_categories','issue_categories_project_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_relations','PRIMARY','2023-02-19 17:06:57','n_diff_pfx01',0,1,'id'),('bitnami_redmine','issue_relations','PRIMARY','2023-02-19 17:06:57','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_relations','PRIMARY','2023-02-19 17:06:57','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_from_id','2023-02-19 17:06:57','n_diff_pfx01',0,1,'issue_from_id'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_from_id','2023-02-19 17:06:57','n_diff_pfx02',0,1,'issue_from_id,id'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_from_id','2023-02-19 17:06:57','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_from_id','2023-02-19 17:06:57','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_from_id_and_issue_to_id','2023-02-19 17:06:57','n_diff_pfx01',0,1,'issue_from_id'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_from_id_and_issue_to_id','2023-02-19 17:06:57','n_diff_pfx02',0,1,'issue_from_id,issue_to_id'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_from_id_and_issue_to_id','2023-02-19 17:06:57','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_from_id_and_issue_to_id','2023-02-19 17:06:57','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_to_id','2023-02-19 17:06:57','n_diff_pfx01',0,1,'issue_to_id'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_to_id','2023-02-19 17:06:57','n_diff_pfx02',0,1,'issue_to_id,id'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_to_id','2023-02-19 17:06:57','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_relations','index_issue_relations_on_issue_to_id','2023-02-19 17:06:57','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_statuses','PRIMARY','2023-02-19 17:06:58','n_diff_pfx01',6,1,'id'),('bitnami_redmine','issue_statuses','PRIMARY','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_statuses','PRIMARY','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_statuses','index_issue_statuses_on_is_closed','2023-02-19 17:06:58','n_diff_pfx01',2,1,'is_closed'),('bitnami_redmine','issue_statuses','index_issue_statuses_on_is_closed','2023-02-19 17:06:58','n_diff_pfx02',6,1,'is_closed,id'),('bitnami_redmine','issue_statuses','index_issue_statuses_on_is_closed','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_statuses','index_issue_statuses_on_is_closed','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issue_statuses','index_issue_statuses_on_position','2023-02-19 17:06:58','n_diff_pfx01',6,1,'position'),('bitnami_redmine','issue_statuses','index_issue_statuses_on_position','2023-02-19 17:06:58','n_diff_pfx02',6,1,'position,id'),('bitnami_redmine','issue_statuses','index_issue_statuses_on_position','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issue_statuses','index_issue_statuses_on_position','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','PRIMARY','2023-02-19 17:06:58','n_diff_pfx01',911,20,'id'),('bitnami_redmine','issues','PRIMARY','2023-02-19 17:06:58','n_leaf_pages',45,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','PRIMARY','2023-02-19 17:06:58','size',97,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_assigned_to_id','2023-02-19 17:06:58','n_diff_pfx01',50,1,'assigned_to_id'),('bitnami_redmine','issues','index_issues_on_assigned_to_id','2023-02-19 17:06:58','n_diff_pfx02',989,1,'assigned_to_id,id'),('bitnami_redmine','issues','index_issues_on_assigned_to_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_assigned_to_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_author_id','2023-02-19 17:06:58','n_diff_pfx01',96,1,'author_id'),('bitnami_redmine','issues','index_issues_on_author_id','2023-02-19 17:06:58','n_diff_pfx02',989,1,'author_id,id'),('bitnami_redmine','issues','index_issues_on_author_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_author_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_category_id','2023-02-19 17:06:58','n_diff_pfx01',1,1,'category_id'),('bitnami_redmine','issues','index_issues_on_category_id','2023-02-19 17:06:58','n_diff_pfx02',989,1,'category_id,id'),('bitnami_redmine','issues','index_issues_on_category_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_category_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_created_on','2023-02-19 17:06:58','n_diff_pfx01',988,1,'created_on'),('bitnami_redmine','issues','index_issues_on_created_on','2023-02-19 17:06:58','n_diff_pfx02',989,1,'created_on,id'),('bitnami_redmine','issues','index_issues_on_created_on','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_created_on','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_fixed_version_id','2023-02-19 17:06:58','n_diff_pfx01',27,1,'fixed_version_id'),('bitnami_redmine','issues','index_issues_on_fixed_version_id','2023-02-19 17:06:58','n_diff_pfx02',989,1,'fixed_version_id,id'),('bitnami_redmine','issues','index_issues_on_fixed_version_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_fixed_version_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_parent_id','2023-02-19 17:06:58','n_diff_pfx01',2,1,'parent_id'),('bitnami_redmine','issues','index_issues_on_parent_id','2023-02-19 17:06:58','n_diff_pfx02',989,1,'parent_id,id'),('bitnami_redmine','issues','index_issues_on_parent_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_parent_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_priority_id','2023-02-19 17:06:58','n_diff_pfx01',5,1,'priority_id'),('bitnami_redmine','issues','index_issues_on_priority_id','2023-02-19 17:06:58','n_diff_pfx02',989,1,'priority_id,id'),('bitnami_redmine','issues','index_issues_on_priority_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_priority_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_root_id_and_lft_and_rgt','2023-02-19 17:06:58','n_diff_pfx01',988,2,'root_id'),('bitnami_redmine','issues','index_issues_on_root_id_and_lft_and_rgt','2023-02-19 17:06:58','n_diff_pfx02',989,2,'root_id,lft'),('bitnami_redmine','issues','index_issues_on_root_id_and_lft_and_rgt','2023-02-19 17:06:58','n_diff_pfx03',989,2,'root_id,lft,rgt'),('bitnami_redmine','issues','index_issues_on_root_id_and_lft_and_rgt','2023-02-19 17:06:58','n_diff_pfx04',989,2,'root_id,lft,rgt,id'),('bitnami_redmine','issues','index_issues_on_root_id_and_lft_and_rgt','2023-02-19 17:06:58','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_root_id_and_lft_and_rgt','2023-02-19 17:06:58','size',3,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_status_id','2023-02-19 17:06:58','n_diff_pfx01',6,1,'status_id'),('bitnami_redmine','issues','index_issues_on_status_id','2023-02-19 17:06:58','n_diff_pfx02',989,1,'status_id,id'),('bitnami_redmine','issues','index_issues_on_status_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_status_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','index_issues_on_tracker_id','2023-02-19 17:06:58','n_diff_pfx01',4,1,'tracker_id'),('bitnami_redmine','issues','index_issues_on_tracker_id','2023-02-19 17:06:58','n_diff_pfx02',989,1,'tracker_id,id'),('bitnami_redmine','issues','index_issues_on_tracker_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','index_issues_on_tracker_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','issues','issues_project_id','2023-02-19 17:06:58','n_diff_pfx01',51,1,'project_id'),('bitnami_redmine','issues','issues_project_id','2023-02-19 17:06:58','n_diff_pfx02',989,1,'project_id,id'),('bitnami_redmine','issues','issues_project_id','2023-02-19 17:06:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','issues','issues_project_id','2023-02-19 17:06:58','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','journal_details','PRIMARY','2023-02-19 17:06:59','n_diff_pfx01',2680,11,'id'),('bitnami_redmine','journal_details','PRIMARY','2023-02-19 17:06:59','n_leaf_pages',11,NULL,'Number of leaf pages in the index'),('bitnami_redmine','journal_details','PRIMARY','2023-02-19 17:06:59','size',12,NULL,'Number of pages in the index'),('bitnami_redmine','journal_details','journal_details_journal_id','2023-02-19 17:06:59','n_diff_pfx01',1615,3,'journal_id'),('bitnami_redmine','journal_details','journal_details_journal_id','2023-02-19 17:06:59','n_diff_pfx02',2680,3,'journal_id,id'),('bitnami_redmine','journal_details','journal_details_journal_id','2023-02-19 17:06:59','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('bitnami_redmine','journal_details','journal_details_journal_id','2023-02-19 17:06:59','size',4,NULL,'Number of pages in the index'),('bitnami_redmine','journals','PRIMARY','2023-02-19 17:07:00','n_diff_pfx01',2504,20,'id'),('bitnami_redmine','journals','PRIMARY','2023-02-19 17:07:00','n_leaf_pages',74,NULL,'Number of leaf pages in the index'),('bitnami_redmine','journals','PRIMARY','2023-02-19 17:07:00','size',97,NULL,'Number of pages in the index'),('bitnami_redmine','journals','index_journals_on_created_on','2023-02-19 17:07:00','n_diff_pfx01',2859,4,'created_on'),('bitnami_redmine','journals','index_journals_on_created_on','2023-02-19 17:07:00','n_diff_pfx02',2859,4,'created_on,id'),('bitnami_redmine','journals','index_journals_on_created_on','2023-02-19 17:07:00','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('bitnami_redmine','journals','index_journals_on_created_on','2023-02-19 17:07:00','size',5,NULL,'Number of pages in the index'),('bitnami_redmine','journals','index_journals_on_journalized_id','2023-02-19 17:07:00','n_diff_pfx01',847,4,'journalized_id'),('bitnami_redmine','journals','index_journals_on_journalized_id','2023-02-19 17:07:00','n_diff_pfx02',2859,4,'journalized_id,id'),('bitnami_redmine','journals','index_journals_on_journalized_id','2023-02-19 17:07:00','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('bitnami_redmine','journals','index_journals_on_journalized_id','2023-02-19 17:07:00','size',5,NULL,'Number of pages in the index'),('bitnami_redmine','journals','index_journals_on_user_id','2023-02-19 17:07:00','n_diff_pfx01',73,4,'user_id'),('bitnami_redmine','journals','index_journals_on_user_id','2023-02-19 17:07:00','n_diff_pfx02',2859,4,'user_id,id'),('bitnami_redmine','journals','index_journals_on_user_id','2023-02-19 17:07:00','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('bitnami_redmine','journals','index_journals_on_user_id','2023-02-19 17:07:00','size',5,NULL,'Number of pages in the index'),('bitnami_redmine','journals','journals_journalized_id','2023-02-19 17:07:00','n_diff_pfx01',847,7,'journalized_id'),('bitnami_redmine','journals','journals_journalized_id','2023-02-19 17:07:00','n_diff_pfx02',847,7,'journalized_id,journalized_type'),('bitnami_redmine','journals','journals_journalized_id','2023-02-19 17:07:00','n_diff_pfx03',2859,7,'journalized_id,journalized_type,id'),('bitnami_redmine','journals','journals_journalized_id','2023-02-19 17:07:00','n_leaf_pages',7,NULL,'Number of leaf pages in the index'),('bitnami_redmine','journals','journals_journalized_id','2023-02-19 17:07:00','size',8,NULL,'Number of pages in the index'),('bitnami_redmine','member_roles','PRIMARY','2023-02-19 17:07:00','n_diff_pfx01',1112,3,'id'),('bitnami_redmine','member_roles','PRIMARY','2023-02-19 17:07:00','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('bitnami_redmine','member_roles','PRIMARY','2023-02-19 17:07:00','size',4,NULL,'Number of pages in the index'),('bitnami_redmine','member_roles','index_member_roles_on_inherited_from','2023-02-19 17:07:00','n_diff_pfx01',44,1,'inherited_from'),('bitnami_redmine','member_roles','index_member_roles_on_inherited_from','2023-02-19 17:07:00','n_diff_pfx02',1112,1,'inherited_from,id'),('bitnami_redmine','member_roles','index_member_roles_on_inherited_from','2023-02-19 17:07:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','member_roles','index_member_roles_on_inherited_from','2023-02-19 17:07:00','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','member_roles','index_member_roles_on_member_id','2023-02-19 17:07:00','n_diff_pfx01',527,1,'member_id'),('bitnami_redmine','member_roles','index_member_roles_on_member_id','2023-02-19 17:07:00','n_diff_pfx02',1112,1,'member_id,id'),('bitnami_redmine','member_roles','index_member_roles_on_member_id','2023-02-19 17:07:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','member_roles','index_member_roles_on_member_id','2023-02-19 17:07:00','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','member_roles','index_member_roles_on_role_id','2023-02-19 17:07:00','n_diff_pfx01',6,1,'role_id'),('bitnami_redmine','member_roles','index_member_roles_on_role_id','2023-02-19 17:07:00','n_diff_pfx02',1112,1,'role_id,id'),('bitnami_redmine','member_roles','index_member_roles_on_role_id','2023-02-19 17:07:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','member_roles','index_member_roles_on_role_id','2023-02-19 17:07:00','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','members','PRIMARY','2023-02-19 17:07:01','n_diff_pfx01',527,2,'id'),('bitnami_redmine','members','PRIMARY','2023-02-19 17:07:01','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('bitnami_redmine','members','PRIMARY','2023-02-19 17:07:01','size',3,NULL,'Number of pages in the index'),('bitnami_redmine','members','index_members_on_project_id','2023-02-19 17:07:01','n_diff_pfx01',100,1,'project_id'),('bitnami_redmine','members','index_members_on_project_id','2023-02-19 17:07:01','n_diff_pfx02',527,1,'project_id,id'),('bitnami_redmine','members','index_members_on_project_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','members','index_members_on_project_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','members','index_members_on_user_id','2023-02-19 17:07:01','n_diff_pfx01',296,1,'user_id'),('bitnami_redmine','members','index_members_on_user_id','2023-02-19 17:07:01','n_diff_pfx02',527,1,'user_id,id'),('bitnami_redmine','members','index_members_on_user_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','members','index_members_on_user_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','members','index_members_on_user_id_and_project_id','2023-02-19 17:07:01','n_diff_pfx01',296,1,'user_id'),('bitnami_redmine','members','index_members_on_user_id_and_project_id','2023-02-19 17:07:01','n_diff_pfx02',527,1,'user_id,project_id'),('bitnami_redmine','members','index_members_on_user_id_and_project_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','members','index_members_on_user_id_and_project_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','messages','PRIMARY','2023-02-19 17:07:01','n_diff_pfx01',10,1,'id'),('bitnami_redmine','messages','PRIMARY','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','messages','PRIMARY','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','messages','index_messages_on_author_id','2023-02-19 17:07:01','n_diff_pfx01',6,1,'author_id'),('bitnami_redmine','messages','index_messages_on_author_id','2023-02-19 17:07:01','n_diff_pfx02',10,1,'author_id,id'),('bitnami_redmine','messages','index_messages_on_author_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','messages','index_messages_on_author_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','messages','index_messages_on_created_on','2023-02-19 17:07:01','n_diff_pfx01',10,1,'created_on'),('bitnami_redmine','messages','index_messages_on_created_on','2023-02-19 17:07:01','n_diff_pfx02',10,1,'created_on,id'),('bitnami_redmine','messages','index_messages_on_created_on','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','messages','index_messages_on_created_on','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','messages','index_messages_on_last_reply_id','2023-02-19 17:07:01','n_diff_pfx01',3,1,'last_reply_id'),('bitnami_redmine','messages','index_messages_on_last_reply_id','2023-02-19 17:07:01','n_diff_pfx02',10,1,'last_reply_id,id'),('bitnami_redmine','messages','index_messages_on_last_reply_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','messages','index_messages_on_last_reply_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','messages','messages_board_id','2023-02-19 17:07:01','n_diff_pfx01',3,1,'board_id'),('bitnami_redmine','messages','messages_board_id','2023-02-19 17:07:01','n_diff_pfx02',10,1,'board_id,id'),('bitnami_redmine','messages','messages_board_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','messages','messages_board_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','messages','messages_parent_id','2023-02-19 17:07:01','n_diff_pfx01',3,1,'parent_id'),('bitnami_redmine','messages','messages_parent_id','2023-02-19 17:07:01','n_diff_pfx02',10,1,'parent_id,id'),('bitnami_redmine','messages','messages_parent_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','messages','messages_parent_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','news','PRIMARY','2023-02-19 17:07:01','n_diff_pfx01',291,11,'id'),('bitnami_redmine','news','PRIMARY','2023-02-19 17:07:01','n_leaf_pages',11,NULL,'Number of leaf pages in the index'),('bitnami_redmine','news','PRIMARY','2023-02-19 17:07:01','size',12,NULL,'Number of pages in the index'),('bitnami_redmine','news','index_news_on_author_id','2023-02-19 17:07:01','n_diff_pfx01',1,1,'author_id'),('bitnami_redmine','news','index_news_on_author_id','2023-02-19 17:07:01','n_diff_pfx02',291,1,'author_id,id'),('bitnami_redmine','news','index_news_on_author_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','news','index_news_on_author_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','news','index_news_on_created_on','2023-02-19 17:07:01','n_diff_pfx01',291,1,'created_on'),('bitnami_redmine','news','index_news_on_created_on','2023-02-19 17:07:01','n_diff_pfx02',291,1,'created_on,id'),('bitnami_redmine','news','index_news_on_created_on','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','news','index_news_on_created_on','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','news','news_project_id','2023-02-19 17:07:01','n_diff_pfx01',49,1,'project_id'),('bitnami_redmine','news','news_project_id','2023-02-19 17:07:01','n_diff_pfx02',291,1,'project_id,id'),('bitnami_redmine','news','news_project_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','news','news_project_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','open_id_authentication_associations','PRIMARY','2023-02-19 17:07:00','n_diff_pfx01',0,1,'id'),('bitnami_redmine','open_id_authentication_associations','PRIMARY','2023-02-19 17:07:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','open_id_authentication_associations','PRIMARY','2023-02-19 17:07:00','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','open_id_authentication_nonces','PRIMARY','2023-02-19 17:07:00','n_diff_pfx01',0,1,'id'),('bitnami_redmine','open_id_authentication_nonces','PRIMARY','2023-02-19 17:07:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','open_id_authentication_nonces','PRIMARY','2023-02-19 17:07:00','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','projects','PRIMARY','2023-02-19 17:07:02','n_diff_pfx01',101,2,'id'),('bitnami_redmine','projects','PRIMARY','2023-02-19 17:07:02','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('bitnami_redmine','projects','PRIMARY','2023-02-19 17:07:02','size',3,NULL,'Number of pages in the index'),('bitnami_redmine','projects','index_projects_on_lft','2023-02-19 17:07:02','n_diff_pfx01',101,1,'lft'),('bitnami_redmine','projects','index_projects_on_lft','2023-02-19 17:07:02','n_diff_pfx02',101,1,'lft,id'),('bitnami_redmine','projects','index_projects_on_lft','2023-02-19 17:07:02','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','projects','index_projects_on_lft','2023-02-19 17:07:02','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','projects','index_projects_on_rgt','2023-02-19 17:07:02','n_diff_pfx01',101,1,'rgt'),('bitnami_redmine','projects','index_projects_on_rgt','2023-02-19 17:07:02','n_diff_pfx02',101,1,'rgt,id'),('bitnami_redmine','projects','index_projects_on_rgt','2023-02-19 17:07:02','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','projects','index_projects_on_rgt','2023-02-19 17:07:02','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','projects_trackers','projects_trackers_project_id','2023-02-19 17:07:02','n_diff_pfx01',101,1,'project_id'),('bitnami_redmine','projects_trackers','projects_trackers_project_id','2023-02-19 17:07:02','n_diff_pfx02',333,1,'project_id,tracker_id'),('bitnami_redmine','projects_trackers','projects_trackers_project_id','2023-02-19 17:07:02','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','projects_trackers','projects_trackers_project_id','2023-02-19 17:07:02','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','projects_trackers','projects_trackers_unique','2023-02-19 17:07:02','n_diff_pfx01',101,1,'project_id'),('bitnami_redmine','projects_trackers','projects_trackers_unique','2023-02-19 17:07:02','n_diff_pfx02',333,1,'project_id,tracker_id'),('bitnami_redmine','projects_trackers','projects_trackers_unique','2023-02-19 17:07:02','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','projects_trackers','projects_trackers_unique','2023-02-19 17:07:02','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','queries','PRIMARY','2023-02-19 17:07:00','n_diff_pfx01',0,1,'id'),('bitnami_redmine','queries','PRIMARY','2023-02-19 17:07:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','queries','PRIMARY','2023-02-19 17:07:00','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','queries','index_queries_on_project_id','2023-02-19 17:07:00','n_diff_pfx01',0,1,'project_id'),('bitnami_redmine','queries','index_queries_on_project_id','2023-02-19 17:07:00','n_diff_pfx02',0,1,'project_id,id'),('bitnami_redmine','queries','index_queries_on_project_id','2023-02-19 17:07:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','queries','index_queries_on_project_id','2023-02-19 17:07:00','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','queries','index_queries_on_user_id','2023-02-19 17:07:00','n_diff_pfx01',0,1,'user_id'),('bitnami_redmine','queries','index_queries_on_user_id','2023-02-19 17:07:00','n_diff_pfx02',0,1,'user_id,id'),('bitnami_redmine','queries','index_queries_on_user_id','2023-02-19 17:07:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','queries','index_queries_on_user_id','2023-02-19 17:07:00','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','queries_roles','queries_roles_ids','2023-02-19 17:07:01','n_diff_pfx01',0,1,'query_id'),('bitnami_redmine','queries_roles','queries_roles_ids','2023-02-19 17:07:01','n_diff_pfx02',0,1,'query_id,role_id'),('bitnami_redmine','queries_roles','queries_roles_ids','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','queries_roles','queries_roles_ids','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','repositories','PRIMARY','2023-02-19 17:07:02','n_diff_pfx01',37,1,'id'),('bitnami_redmine','repositories','PRIMARY','2023-02-19 17:07:02','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','repositories','PRIMARY','2023-02-19 17:07:02','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','repositories','index_repositories_on_project_id','2023-02-19 17:07:02','n_diff_pfx01',36,1,'project_id'),('bitnami_redmine','repositories','index_repositories_on_project_id','2023-02-19 17:07:02','n_diff_pfx02',37,1,'project_id,id'),('bitnami_redmine','repositories','index_repositories_on_project_id','2023-02-19 17:07:02','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','repositories','index_repositories_on_project_id','2023-02-19 17:07:02','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','roles','PRIMARY','2023-02-19 17:07:02','n_diff_pfx01',8,1,'id'),('bitnami_redmine','roles','PRIMARY','2023-02-19 17:07:02','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','roles','PRIMARY','2023-02-19 17:07:02','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','roles_managed_roles','index_roles_managed_roles_on_role_id_and_managed_role_id','2023-02-19 17:07:01','n_diff_pfx01',0,1,'role_id'),('bitnami_redmine','roles_managed_roles','index_roles_managed_roles_on_role_id_and_managed_role_id','2023-02-19 17:07:01','n_diff_pfx02',0,1,'role_id,managed_role_id'),('bitnami_redmine','roles_managed_roles','index_roles_managed_roles_on_role_id_and_managed_role_id','2023-02-19 17:07:01','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','roles_managed_roles','index_roles_managed_roles_on_role_id_and_managed_role_id','2023-02-19 17:07:01','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','schema_migrations','unique_schema_migrations','2023-02-19 17:07:03','n_diff_pfx01',290,1,'version'),('bitnami_redmine','schema_migrations','unique_schema_migrations','2023-02-19 17:07:03','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','schema_migrations','unique_schema_migrations','2023-02-19 17:07:03','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','settings','PRIMARY','2023-02-19 17:07:03','n_diff_pfx01',74,1,'id'),('bitnami_redmine','settings','PRIMARY','2023-02-19 17:07:03','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','settings','PRIMARY','2023-02-19 17:07:03','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','settings','index_settings_on_name','2023-02-19 17:07:03','n_diff_pfx01',74,1,'name'),('bitnami_redmine','settings','index_settings_on_name','2023-02-19 17:07:03','n_diff_pfx02',74,1,'name,id'),('bitnami_redmine','settings','index_settings_on_name','2023-02-19 17:07:03','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','settings','index_settings_on_name','2023-02-19 17:07:03','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','time_entries','PRIMARY','2023-02-19 17:07:03','n_diff_pfx01',5,1,'id'),('bitnami_redmine','time_entries','PRIMARY','2023-02-19 17:07:03','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','time_entries','PRIMARY','2023-02-19 17:07:03','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','time_entries','index_time_entries_on_activity_id','2023-02-19 17:07:03','n_diff_pfx01',1,1,'activity_id'),('bitnami_redmine','time_entries','index_time_entries_on_activity_id','2023-02-19 17:07:03','n_diff_pfx02',5,1,'activity_id,id'),('bitnami_redmine','time_entries','index_time_entries_on_activity_id','2023-02-19 17:07:03','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','time_entries','index_time_entries_on_activity_id','2023-02-19 17:07:03','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','time_entries','index_time_entries_on_created_on','2023-02-19 17:07:03','n_diff_pfx01',5,1,'created_on'),('bitnami_redmine','time_entries','index_time_entries_on_created_on','2023-02-19 17:07:03','n_diff_pfx02',5,1,'created_on,id'),('bitnami_redmine','time_entries','index_time_entries_on_created_on','2023-02-19 17:07:03','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','time_entries','index_time_entries_on_created_on','2023-02-19 17:07:03','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','time_entries','index_time_entries_on_user_id','2023-02-19 17:07:03','n_diff_pfx01',2,1,'user_id'),('bitnami_redmine','time_entries','index_time_entries_on_user_id','2023-02-19 17:07:03','n_diff_pfx02',5,1,'user_id,id'),('bitnami_redmine','time_entries','index_time_entries_on_user_id','2023-02-19 17:07:03','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','time_entries','index_time_entries_on_user_id','2023-02-19 17:07:03','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','time_entries','time_entries_issue_id','2023-02-19 17:07:03','n_diff_pfx01',4,1,'issue_id'),('bitnami_redmine','time_entries','time_entries_issue_id','2023-02-19 17:07:03','n_diff_pfx02',5,1,'issue_id,id'),('bitnami_redmine','time_entries','time_entries_issue_id','2023-02-19 17:07:03','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','time_entries','time_entries_issue_id','2023-02-19 17:07:03','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','time_entries','time_entries_project_id','2023-02-19 17:07:03','n_diff_pfx01',3,1,'project_id'),('bitnami_redmine','time_entries','time_entries_project_id','2023-02-19 17:07:03','n_diff_pfx02',5,1,'project_id,id'),('bitnami_redmine','time_entries','time_entries_project_id','2023-02-19 17:07:03','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','time_entries','time_entries_project_id','2023-02-19 17:07:03','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','tokens','PRIMARY','2023-02-19 17:07:03','n_diff_pfx01',1641,10,'id'),('bitnami_redmine','tokens','PRIMARY','2023-02-19 17:07:03','n_leaf_pages',10,NULL,'Number of leaf pages in the index'),('bitnami_redmine','tokens','PRIMARY','2023-02-19 17:07:03','size',11,NULL,'Number of pages in the index'),('bitnami_redmine','tokens','index_tokens_on_user_id','2023-02-19 17:07:03','n_diff_pfx01',485,2,'user_id'),('bitnami_redmine','tokens','index_tokens_on_user_id','2023-02-19 17:07:03','n_diff_pfx02',1641,2,'user_id,id'),('bitnami_redmine','tokens','index_tokens_on_user_id','2023-02-19 17:07:03','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('bitnami_redmine','tokens','index_tokens_on_user_id','2023-02-19 17:07:03','size',3,NULL,'Number of pages in the index'),('bitnami_redmine','tokens','tokens_value','2023-02-19 17:07:03','n_diff_pfx01',1641,8,'value'),('bitnami_redmine','tokens','tokens_value','2023-02-19 17:07:03','n_leaf_pages',8,NULL,'Number of leaf pages in the index'),('bitnami_redmine','tokens','tokens_value','2023-02-19 17:07:03','size',9,NULL,'Number of pages in the index'),('bitnami_redmine','trackers','PRIMARY','2023-02-19 17:07:04','n_diff_pfx01',5,1,'id'),('bitnami_redmine','trackers','PRIMARY','2023-02-19 17:07:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','trackers','PRIMARY','2023-02-19 17:07:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','user_preferences','PRIMARY','2023-02-19 17:07:04','n_diff_pfx01',485,4,'id'),('bitnami_redmine','user_preferences','PRIMARY','2023-02-19 17:07:04','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('bitnami_redmine','user_preferences','PRIMARY','2023-02-19 17:07:04','size',5,NULL,'Number of pages in the index'),('bitnami_redmine','user_preferences','index_user_preferences_on_user_id','2023-02-19 17:07:04','n_diff_pfx01',485,1,'user_id'),('bitnami_redmine','user_preferences','index_user_preferences_on_user_id','2023-02-19 17:07:04','n_diff_pfx02',485,1,'user_id,id'),('bitnami_redmine','user_preferences','index_user_preferences_on_user_id','2023-02-19 17:07:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','user_preferences','index_user_preferences_on_user_id','2023-02-19 17:07:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','users','PRIMARY','2023-02-19 17:07:04','n_diff_pfx01',491,6,'id'),('bitnami_redmine','users','PRIMARY','2023-02-19 17:07:04','n_leaf_pages',6,NULL,'Number of leaf pages in the index'),('bitnami_redmine','users','PRIMARY','2023-02-19 17:07:04','size',7,NULL,'Number of pages in the index'),('bitnami_redmine','users','index_users_on_auth_source_id','2023-02-19 17:07:04','n_diff_pfx01',1,1,'auth_source_id'),('bitnami_redmine','users','index_users_on_auth_source_id','2023-02-19 17:07:04','n_diff_pfx02',491,1,'auth_source_id,id'),('bitnami_redmine','users','index_users_on_auth_source_id','2023-02-19 17:07:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','users','index_users_on_auth_source_id','2023-02-19 17:07:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','users','index_users_on_id_and_type','2023-02-19 17:07:04','n_diff_pfx01',491,1,'id'),('bitnami_redmine','users','index_users_on_id_and_type','2023-02-19 17:07:04','n_diff_pfx02',491,1,'id,type'),('bitnami_redmine','users','index_users_on_id_and_type','2023-02-19 17:07:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','users','index_users_on_id_and_type','2023-02-19 17:07:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','users','index_users_on_type','2023-02-19 17:07:04','n_diff_pfx01',4,1,'type'),('bitnami_redmine','users','index_users_on_type','2023-02-19 17:07:04','n_diff_pfx02',491,1,'type,id'),('bitnami_redmine','users','index_users_on_type','2023-02-19 17:07:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','users','index_users_on_type','2023-02-19 17:07:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','versions','PRIMARY','2023-02-19 17:07:14','n_diff_pfx01',315,2,'id'),('bitnami_redmine','versions','PRIMARY','2023-02-19 17:07:14','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('bitnami_redmine','versions','PRIMARY','2023-02-19 17:07:14','size',3,NULL,'Number of pages in the index'),('bitnami_redmine','versions','index_versions_on_sharing','2023-02-19 17:07:14','n_diff_pfx01',2,1,'sharing'),('bitnami_redmine','versions','index_versions_on_sharing','2023-02-19 17:07:14','n_diff_pfx02',315,1,'sharing,id'),('bitnami_redmine','versions','index_versions_on_sharing','2023-02-19 17:07:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','versions','index_versions_on_sharing','2023-02-19 17:07:14','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','versions','versions_project_id','2023-02-19 17:07:14','n_diff_pfx01',57,1,'project_id'),('bitnami_redmine','versions','versions_project_id','2023-02-19 17:07:14','n_diff_pfx02',315,1,'project_id,id'),('bitnami_redmine','versions','versions_project_id','2023-02-19 17:07:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','versions','versions_project_id','2023-02-19 17:07:14','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','watchers','PRIMARY','2023-02-19 17:07:24','n_diff_pfx01',322,1,'id'),('bitnami_redmine','watchers','PRIMARY','2023-02-19 17:07:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','watchers','PRIMARY','2023-02-19 17:07:24','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','watchers','index_watchers_on_user_id','2023-02-19 17:07:24','n_diff_pfx01',19,1,'user_id'),('bitnami_redmine','watchers','index_watchers_on_user_id','2023-02-19 17:07:24','n_diff_pfx02',322,1,'user_id,id'),('bitnami_redmine','watchers','index_watchers_on_user_id','2023-02-19 17:07:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','watchers','index_watchers_on_user_id','2023-02-19 17:07:24','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','watchers','index_watchers_on_watchable_id_and_watchable_type','2023-02-19 17:07:24','n_diff_pfx01',298,1,'watchable_id'),('bitnami_redmine','watchers','index_watchers_on_watchable_id_and_watchable_type','2023-02-19 17:07:24','n_diff_pfx02',318,1,'watchable_id,watchable_type'),('bitnami_redmine','watchers','index_watchers_on_watchable_id_and_watchable_type','2023-02-19 17:07:24','n_diff_pfx03',322,1,'watchable_id,watchable_type,id'),('bitnami_redmine','watchers','index_watchers_on_watchable_id_and_watchable_type','2023-02-19 17:07:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','watchers','index_watchers_on_watchable_id_and_watchable_type','2023-02-19 17:07:24','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','watchers','watchers_user_id_type','2023-02-19 17:07:24','n_diff_pfx01',19,1,'user_id'),('bitnami_redmine','watchers','watchers_user_id_type','2023-02-19 17:07:24','n_diff_pfx02',23,1,'user_id,watchable_type'),('bitnami_redmine','watchers','watchers_user_id_type','2023-02-19 17:07:24','n_diff_pfx03',322,1,'user_id,watchable_type,id'),('bitnami_redmine','watchers','watchers_user_id_type','2023-02-19 17:07:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','watchers','watchers_user_id_type','2023-02-19 17:07:24','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_content_versions','PRIMARY','2023-02-19 17:07:34','n_diff_pfx01',24,3,'id'),('bitnami_redmine','wiki_content_versions','PRIMARY','2023-02-19 17:07:34','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_content_versions','PRIMARY','2023-02-19 17:07:34','size',4,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_content_versions','index_wiki_content_versions_on_updated_on','2023-02-19 17:07:34','n_diff_pfx01',24,1,'updated_on'),('bitnami_redmine','wiki_content_versions','index_wiki_content_versions_on_updated_on','2023-02-19 17:07:34','n_diff_pfx02',24,1,'updated_on,id'),('bitnami_redmine','wiki_content_versions','index_wiki_content_versions_on_updated_on','2023-02-19 17:07:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_content_versions','index_wiki_content_versions_on_updated_on','2023-02-19 17:07:34','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_content_versions','wiki_content_versions_wcid','2023-02-19 17:07:34','n_diff_pfx01',10,1,'wiki_content_id'),('bitnami_redmine','wiki_content_versions','wiki_content_versions_wcid','2023-02-19 17:07:34','n_diff_pfx02',24,1,'wiki_content_id,id'),('bitnami_redmine','wiki_content_versions','wiki_content_versions_wcid','2023-02-19 17:07:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_content_versions','wiki_content_versions_wcid','2023-02-19 17:07:34','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_contents','PRIMARY','2023-02-19 17:07:44','n_diff_pfx01',10,1,'id'),('bitnami_redmine','wiki_contents','PRIMARY','2023-02-19 17:07:44','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_contents','PRIMARY','2023-02-19 17:07:44','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_contents','index_wiki_contents_on_author_id','2023-02-19 17:07:44','n_diff_pfx01',1,1,'author_id'),('bitnami_redmine','wiki_contents','index_wiki_contents_on_author_id','2023-02-19 17:07:44','n_diff_pfx02',10,1,'author_id,id'),('bitnami_redmine','wiki_contents','index_wiki_contents_on_author_id','2023-02-19 17:07:44','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_contents','index_wiki_contents_on_author_id','2023-02-19 17:07:44','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_contents','wiki_contents_page_id','2023-02-19 17:07:44','n_diff_pfx01',10,1,'page_id'),('bitnami_redmine','wiki_contents','wiki_contents_page_id','2023-02-19 17:07:44','n_diff_pfx02',10,1,'page_id,id'),('bitnami_redmine','wiki_contents','wiki_contents_page_id','2023-02-19 17:07:44','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_contents','wiki_contents_page_id','2023-02-19 17:07:44','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_pages','PRIMARY','2023-02-19 17:07:54','n_diff_pfx01',10,1,'id'),('bitnami_redmine','wiki_pages','PRIMARY','2023-02-19 17:07:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_pages','PRIMARY','2023-02-19 17:07:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_pages','index_wiki_pages_on_parent_id','2023-02-19 17:07:54','n_diff_pfx01',1,1,'parent_id'),('bitnami_redmine','wiki_pages','index_wiki_pages_on_parent_id','2023-02-19 17:07:54','n_diff_pfx02',10,1,'parent_id,id'),('bitnami_redmine','wiki_pages','index_wiki_pages_on_parent_id','2023-02-19 17:07:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_pages','index_wiki_pages_on_parent_id','2023-02-19 17:07:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_pages','index_wiki_pages_on_wiki_id','2023-02-19 17:07:54','n_diff_pfx01',10,1,'wiki_id'),('bitnami_redmine','wiki_pages','index_wiki_pages_on_wiki_id','2023-02-19 17:07:54','n_diff_pfx02',10,1,'wiki_id,id'),('bitnami_redmine','wiki_pages','index_wiki_pages_on_wiki_id','2023-02-19 17:07:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_pages','index_wiki_pages_on_wiki_id','2023-02-19 17:07:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_pages','wiki_pages_wiki_id_title','2023-02-19 17:07:54','n_diff_pfx01',10,1,'wiki_id'),('bitnami_redmine','wiki_pages','wiki_pages_wiki_id_title','2023-02-19 17:07:54','n_diff_pfx02',10,1,'wiki_id,title'),('bitnami_redmine','wiki_pages','wiki_pages_wiki_id_title','2023-02-19 17:07:54','n_diff_pfx03',10,1,'wiki_id,title,id'),('bitnami_redmine','wiki_pages','wiki_pages_wiki_id_title','2023-02-19 17:07:54','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_pages','wiki_pages_wiki_id_title','2023-02-19 17:07:54','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_redirects','PRIMARY','2023-02-19 17:07:04','n_diff_pfx01',0,1,'id'),('bitnami_redmine','wiki_redirects','PRIMARY','2023-02-19 17:07:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_redirects','PRIMARY','2023-02-19 17:07:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_redirects','index_wiki_redirects_on_wiki_id','2023-02-19 17:07:04','n_diff_pfx01',0,1,'wiki_id'),('bitnami_redmine','wiki_redirects','index_wiki_redirects_on_wiki_id','2023-02-19 17:07:04','n_diff_pfx02',0,1,'wiki_id,id'),('bitnami_redmine','wiki_redirects','index_wiki_redirects_on_wiki_id','2023-02-19 17:07:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_redirects','index_wiki_redirects_on_wiki_id','2023-02-19 17:07:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wiki_redirects','wiki_redirects_wiki_id_title','2023-02-19 17:07:04','n_diff_pfx01',0,1,'wiki_id'),('bitnami_redmine','wiki_redirects','wiki_redirects_wiki_id_title','2023-02-19 17:07:04','n_diff_pfx02',0,1,'wiki_id,title'),('bitnami_redmine','wiki_redirects','wiki_redirects_wiki_id_title','2023-02-19 17:07:04','n_diff_pfx03',0,1,'wiki_id,title,id'),('bitnami_redmine','wiki_redirects','wiki_redirects_wiki_id_title','2023-02-19 17:07:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wiki_redirects','wiki_redirects_wiki_id_title','2023-02-19 17:07:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wikis','PRIMARY','2023-02-19 17:08:04','n_diff_pfx01',85,1,'id'),('bitnami_redmine','wikis','PRIMARY','2023-02-19 17:08:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wikis','PRIMARY','2023-02-19 17:08:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','wikis','wikis_project_id','2023-02-19 17:08:04','n_diff_pfx01',85,1,'project_id'),('bitnami_redmine','wikis','wikis_project_id','2023-02-19 17:08:04','n_diff_pfx02',85,1,'project_id,id'),('bitnami_redmine','wikis','wikis_project_id','2023-02-19 17:08:04','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','wikis','wikis_project_id','2023-02-19 17:08:04','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','workflows','PRIMARY','2023-02-19 17:08:14','n_diff_pfx01',358,2,'id'),('bitnami_redmine','workflows','PRIMARY','2023-02-19 17:08:14','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('bitnami_redmine','workflows','PRIMARY','2023-02-19 17:08:14','size',3,NULL,'Number of pages in the index'),('bitnami_redmine','workflows','index_workflows_on_new_status_id','2023-02-19 17:08:14','n_diff_pfx01',7,1,'new_status_id'),('bitnami_redmine','workflows','index_workflows_on_new_status_id','2023-02-19 17:08:14','n_diff_pfx02',358,1,'new_status_id,id'),('bitnami_redmine','workflows','index_workflows_on_new_status_id','2023-02-19 17:08:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','workflows','index_workflows_on_new_status_id','2023-02-19 17:08:14','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','workflows','index_workflows_on_old_status_id','2023-02-19 17:08:14','n_diff_pfx01',7,1,'old_status_id'),('bitnami_redmine','workflows','index_workflows_on_old_status_id','2023-02-19 17:08:14','n_diff_pfx02',358,1,'old_status_id,id'),('bitnami_redmine','workflows','index_workflows_on_old_status_id','2023-02-19 17:08:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','workflows','index_workflows_on_old_status_id','2023-02-19 17:08:14','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','workflows','index_workflows_on_role_id','2023-02-19 17:08:14','n_diff_pfx01',8,1,'role_id'),('bitnami_redmine','workflows','index_workflows_on_role_id','2023-02-19 17:08:14','n_diff_pfx02',358,1,'role_id,id'),('bitnami_redmine','workflows','index_workflows_on_role_id','2023-02-19 17:08:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','workflows','index_workflows_on_role_id','2023-02-19 17:08:14','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','workflows','index_workflows_on_tracker_id','2023-02-19 17:08:14','n_diff_pfx01',5,1,'tracker_id'),('bitnami_redmine','workflows','index_workflows_on_tracker_id','2023-02-19 17:08:14','n_diff_pfx02',358,1,'tracker_id,id'),('bitnami_redmine','workflows','index_workflows_on_tracker_id','2023-02-19 17:08:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','workflows','index_workflows_on_tracker_id','2023-02-19 17:08:14','size',1,NULL,'Number of pages in the index'),('bitnami_redmine','workflows','wkfs_role_tracker_old_status','2023-02-19 17:08:14','n_diff_pfx01',8,1,'role_id'),('bitnami_redmine','workflows','wkfs_role_tracker_old_status','2023-02-19 17:08:14','n_diff_pfx02',38,1,'role_id,tracker_id'),('bitnami_redmine','workflows','wkfs_role_tracker_old_status','2023-02-19 17:08:14','n_diff_pfx03',118,1,'role_id,tracker_id,old_status_id'),('bitnami_redmine','workflows','wkfs_role_tracker_old_status','2023-02-19 17:08:14','n_diff_pfx04',358,1,'role_id,tracker_id,old_status_id,id'),('bitnami_redmine','workflows','wkfs_role_tracker_old_status','2023-02-19 17:08:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('bitnami_redmine','workflows','wkfs_role_tracker_old_status','2023-02-19 17:08:14','size',1,NULL,'Number of pages in the index'),('mysql','gtid_executed','PRIMARY','2023-02-19 16:45:26','n_diff_pfx01',0,1,'source_uuid'),('mysql','gtid_executed','PRIMARY','2023-02-19 16:45:26','n_diff_pfx02',0,1,'source_uuid,interval_start'),('mysql','gtid_executed','PRIMARY','2023-02-19 16:45:26','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('mysql','gtid_executed','PRIMARY','2023-02-19 16:45:26','size',1,NULL,'Number of pages in the index'),('sys','sys_config','PRIMARY','2023-02-19 16:45:28','n_diff_pfx01',6,1,'variable'),('sys','sys_config','PRIMARY','2023-02-19 16:45:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sys','sys_config','PRIMARY','2023-02-19 16:45:28','size',1,NULL,'Number of pages in the index');
/*!40000 ALTER TABLE `innodb_index_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `innodb_table_stats`
--
DROP TABLE IF EXISTS `innodb_table_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `innodb_table_stats` (
`database_name` varchar(64) COLLATE utf8_bin NOT NULL,
`table_name` varchar(199) COLLATE utf8_bin NOT NULL,
`last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`n_rows` bigint(20) unsigned NOT NULL,
`clustered_index_size` bigint(20) unsigned NOT NULL,
`sum_of_other_index_sizes` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`database_name`,`table_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `innodb_table_stats`
--
LOCK TABLES `innodb_table_stats` WRITE;
/*!40000 ALTER TABLE `innodb_table_stats` DISABLE KEYS */;
INSERT INTO `innodb_table_stats` VALUES ('bitnami_redmine','ar_internal_metadata','2023-02-19 17:06:51',0,1,0),('bitnami_redmine','attachments','2023-02-19 17:07:03',2913,97,35),('bitnami_redmine','auth_sources','2023-02-19 17:06:52',0,1,1),('bitnami_redmine','boards','2023-02-19 17:06:53',6,1,2),('bitnami_redmine','changes','2023-02-19 17:06:54',22123,161,20),('bitnami_redmine','changeset_parents','2023-02-19 17:06:53',0,1,2),('bitnami_redmine','changesets','2023-02-19 17:06:55',2607,11,24),('bitnami_redmine','changesets_issues','2023-02-19 17:06:54',0,1,1),('bitnami_redmine','comments','2023-02-19 17:06:56',91,4,2),('bitnami_redmine','custom_field_enumerations','2023-02-19 17:06:54',0,1,0),('bitnami_redmine','custom_fields','2023-02-19 17:06:54',0,1,1),('bitnami_redmine','custom_fields_projects','2023-02-19 17:06:54',0,1,0),('bitnami_redmine','custom_fields_roles','2023-02-19 17:06:55',0,1,0),('bitnami_redmine','custom_fields_trackers','2023-02-19 17:06:55',0,1,0),('bitnami_redmine','custom_values','2023-02-19 17:06:55',0,1,2),('bitnami_redmine','documents','2023-02-19 17:06:55',0,1,3),('bitnami_redmine','email_addresses','2023-02-19 17:06:56',488,4,1),('bitnami_redmine','enabled_modules','2023-02-19 17:06:57',744,4,1),('bitnami_redmine','enumerations','2023-02-19 17:06:58',10,1,2),('bitnami_redmine','groups_users','2023-02-19 17:06:56',0,1,0),('bitnami_redmine','import_items','2023-02-19 17:06:56',0,1,1),('bitnami_redmine','imports','2023-02-19 17:06:56',0,1,0),('bitnami_redmine','issue_categories','2023-02-19 17:06:58',2,1,2),('bitnami_redmine','issue_relations','2023-02-19 17:06:57',0,1,3),('bitnami_redmine','issue_statuses','2023-02-19 17:06:58',6,1,2),('bitnami_redmine','issues','2023-02-19 17:06:58',911,97,13),('bitnami_redmine','journal_details','2023-02-19 17:06:59',2680,12,4),('bitnami_redmine','journals','2023-02-19 17:07:00',2504,97,23),('bitnami_redmine','member_roles','2023-02-19 17:07:00',1112,4,3),('bitnami_redmine','members','2023-02-19 17:07:01',527,3,3),('bitnami_redmine','messages','2023-02-19 17:07:01',10,1,5),('bitnami_redmine','news','2023-02-19 17:07:01',291,12,3),('bitnami_redmine','open_id_authentication_associations','2023-02-19 17:07:00',0,1,0),('bitnami_redmine','open_id_authentication_nonces','2023-02-19 17:07:00',0,1,0),('bitnami_redmine','projects','2023-02-19 17:07:02',101,3,2),('bitnami_redmine','projects_trackers','2023-02-19 17:07:02',333,1,1),('bitnami_redmine','queries','2023-02-19 17:07:00',0,1,2),('bitnami_redmine','queries_roles','2023-02-19 17:07:01',0,1,0),('bitnami_redmine','repositories','2023-02-19 17:07:02',37,1,1),('bitnami_redmine','roles','2023-02-19 17:07:02',8,1,0),('bitnami_redmine','roles_managed_roles','2023-02-19 17:07:01',0,1,0),('bitnami_redmine','schema_migrations','2023-02-19 17:07:03',290,1,0),('bitnami_redmine','settings','2023-02-19 17:07:03',74,1,1),('bitnami_redmine','time_entries','2023-02-19 17:07:03',5,1,5),('bitnami_redmine','tokens','2023-02-19 17:07:03',1641,11,12),('bitnami_redmine','trackers','2023-02-19 17:07:04',5,1,0),('bitnami_redmine','user_preferences','2023-02-19 17:07:04',485,5,1),('bitnami_redmine','users','2023-02-19 17:07:04',491,7,3),('bitnami_redmine','versions','2023-02-19 17:07:14',315,3,2),('bitnami_redmine','watchers','2023-02-19 17:07:24',322,1,3),('bitnami_redmine','wiki_content_versions','2023-02-19 17:07:34',24,4,2),('bitnami_redmine','wiki_contents','2023-02-19 17:07:44',10,1,2),('bitnami_redmine','wiki_pages','2023-02-19 17:07:54',10,1,3),('bitnami_redmine','wiki_redirects','2023-02-19 17:07:04',0,1,2),('bitnami_redmine','wikis','2023-02-19 17:08:04',85,1,1),('bitnami_redmine','workflows','2023-02-19 17:08:14',358,3,5),('mysql','gtid_executed','2023-02-19 16:45:26',0,1,0),('sys','sys_config','2023-02-19 16:45:28',6,1,0);
/*!40000 ALTER TABLE `innodb_table_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ndb_binlog_index`
--
DROP TABLE IF EXISTS `ndb_binlog_index`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ndb_binlog_index` (
`Position` bigint(20) unsigned NOT NULL,
`File` varchar(255) NOT NULL,
`epoch` bigint(20) unsigned NOT NULL,
`inserts` int(10) unsigned NOT NULL,
`updates` int(10) unsigned NOT NULL,
`deletes` int(10) unsigned NOT NULL,
`schemaops` int(10) unsigned NOT NULL,
`orig_server_id` int(10) unsigned NOT NULL,
`orig_epoch` bigint(20) unsigned NOT NULL,
`gci` int(10) unsigned NOT NULL,
`next_position` bigint(20) unsigned NOT NULL,
`next_file` varchar(255) NOT NULL,
PRIMARY KEY (`epoch`,`orig_server_id`,`orig_epoch`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ndb_binlog_index`
--
LOCK TABLES `ndb_binlog_index` WRITE;
/*!40000 ALTER TABLE `ndb_binlog_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `ndb_binlog_index` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `plugin`
--
DROP TABLE IF EXISTS `plugin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plugin` (
`name` varchar(64) NOT NULL DEFAULT '',
`dl` varchar(128) NOT NULL DEFAULT '',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='MySQL plugins';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `plugin`
--
LOCK TABLES `plugin` WRITE;
/*!40000 ALTER TABLE `plugin` DISABLE KEYS */;
/*!40000 ALTER TABLE `plugin` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `proc`
--
DROP TABLE IF EXISTS `proc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proc` (
`db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`name` char(64) NOT NULL DEFAULT '',
`type` enum('FUNCTION','PROCEDURE') NOT NULL,
`specific_name` char(64) NOT NULL DEFAULT '',
`language` enum('SQL') NOT NULL DEFAULT 'SQL',
`sql_data_access` enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') NOT NULL DEFAULT 'CONTAINS_SQL',
`is_deterministic` enum('YES','NO') NOT NULL DEFAULT 'NO',
`security_type` enum('INVOKER','DEFINER') NOT NULL DEFAULT 'DEFINER',
`param_list` blob NOT NULL,
`returns` longblob NOT NULL,
`body` longblob NOT NULL,
`definer` char(93) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '',
`comment` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`body_utf8` longblob,
PRIMARY KEY (`db`,`name`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stored Procedures';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `proc`
--
LOCK TABLES `proc` WRITE;
/*!40000 ALTER TABLE `proc` DISABLE KEYS */;
/*!40000 ALTER TABLE `proc` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `procs_priv`
--
DROP TABLE IF EXISTS `procs_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `procs_priv` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '',
`Routine_name` char(64) CHARACTER SET utf8 NOT NULL DEFAULT '',
`Routine_type` enum('FUNCTION','PROCEDURE') COLLATE utf8_bin NOT NULL,
`Grantor` char(93) COLLATE utf8_bin NOT NULL DEFAULT '',
`Proc_priv` set('Execute','Alter Routine','Grant') CHARACTER SET utf8 NOT NULL DEFAULT '',
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`Host`,`Db`,`User`,`Routine_name`,`Routine_type`),
KEY `Grantor` (`Grantor`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `procs_priv`
--
LOCK TABLES `procs_priv` WRITE;
/*!40000 ALTER TABLE `procs_priv` DISABLE KEYS */;
/*!40000 ALTER TABLE `procs_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `proxies_priv`
--
DROP TABLE IF EXISTS `proxies_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proxies_priv` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '',
`Proxied_host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Proxied_user` char(32) COLLATE utf8_bin NOT NULL DEFAULT '',
`With_grant` tinyint(1) NOT NULL DEFAULT '0',
`Grantor` char(93) COLLATE utf8_bin NOT NULL DEFAULT '',
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`Host`,`User`,`Proxied_host`,`Proxied_user`),
KEY `Grantor` (`Grantor`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User proxy privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `proxies_priv`
--
LOCK TABLES `proxies_priv` WRITE;
/*!40000 ALTER TABLE `proxies_priv` DISABLE KEYS */;
INSERT INTO `proxies_priv` VALUES ('localhost','root','','',1,'boot@connecting host','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `proxies_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `server_cost`
--
DROP TABLE IF EXISTS `server_cost`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_cost` (
`cost_name` varchar(64) NOT NULL,
`cost_value` float DEFAULT NULL,
`last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`comment` varchar(1024) DEFAULT NULL,
PRIMARY KEY (`cost_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_cost`
--
LOCK TABLES `server_cost` WRITE;
/*!40000 ALTER TABLE `server_cost` DISABLE KEYS */;
INSERT INTO `server_cost` VALUES ('disk_temptable_create_cost',NULL,'2023-02-19 16:45:26',NULL),('disk_temptable_row_cost',NULL,'2023-02-19 16:45:26',NULL),('key_compare_cost',NULL,'2023-02-19 16:45:26',NULL),('memory_temptable_create_cost',NULL,'2023-02-19 16:45:26',NULL),('memory_temptable_row_cost',NULL,'2023-02-19 16:45:26',NULL),('row_evaluate_cost',NULL,'2023-02-19 16:45:26',NULL);
/*!40000 ALTER TABLE `server_cost` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `servers`
--
DROP TABLE IF EXISTS `servers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `servers` (
`Server_name` char(64) NOT NULL DEFAULT '',
`Host` char(64) NOT NULL DEFAULT '',
`Db` char(64) NOT NULL DEFAULT '',
`Username` char(64) NOT NULL DEFAULT '',
`Password` char(64) NOT NULL DEFAULT '',
`Port` int(4) NOT NULL DEFAULT '0',
`Socket` char(64) NOT NULL DEFAULT '',
`Wrapper` char(64) NOT NULL DEFAULT '',
`Owner` char(64) NOT NULL DEFAULT '',
PRIMARY KEY (`Server_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='MySQL Foreign Servers table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `servers`
--
LOCK TABLES `servers` WRITE;
/*!40000 ALTER TABLE `servers` DISABLE KEYS */;
/*!40000 ALTER TABLE `servers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `slave_master_info`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE IF NOT EXISTS `slave_master_info` (
`Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file.',
`Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log currently being read from the master.',
`Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last read event.',
`Host` char(64) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL COMMENT 'The host name of the master.',
`User_name` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The user name used to connect to the master.',
`User_password` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The password used to connect to the master.',
`Port` int(10) unsigned NOT NULL COMMENT 'The network port used to connect to the master.',
`Connect_retry` int(10) unsigned NOT NULL COMMENT 'The period (in seconds) that the slave will wait before trying to reconnect to the master.',
`Enabled_ssl` tinyint(1) NOT NULL COMMENT 'Indicates whether the server supports SSL connections.',
`Ssl_ca` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Authority (CA) certificate.',
`Ssl_capath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path to the Certificate Authority (CA) certificates.',
`Ssl_cert` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL certificate file.',
`Ssl_cipher` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the cipher in use for the SSL connection.',
`Ssl_key` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL key file.',
`Ssl_verify_server_cert` tinyint(1) NOT NULL COMMENT 'Whether to verify the server certificate.',
`Heartbeat` float NOT NULL,
`Bind` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'Displays which interface is employed when connecting to the MySQL server',
`Ignored_server_ids` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The number of server IDs to be ignored, followed by the actual server IDs',
`Uuid` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The master server uuid.',
`Retry_count` bigint(20) unsigned NOT NULL COMMENT 'Number of reconnect attempts, to the master, before giving up.',
`Ssl_crl` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Revocation List (CRL)',
`Ssl_crlpath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path used for Certificate Revocation List (CRL) files',
`Enabled_auto_position` tinyint(1) NOT NULL COMMENT 'Indicates whether GTIDs will be used to retrieve events from the master.',
`Channel_name` char(64) NOT NULL COMMENT 'The channel on which the slave is connected to a source. Used in Multisource Replication',
`Tls_version` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'Tls version',
PRIMARY KEY (`Channel_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Master Information';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `slave_relay_log_info`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE IF NOT EXISTS `slave_relay_log_info` (
`Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file or rows in the table. Used to version table definitions.',
`Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the current relay log file.',
`Relay_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The relay log position of the last executed event.',
`Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log file from which the events in the relay log file were read.',
`Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last executed event.',
`Sql_delay` int(11) NOT NULL COMMENT 'The number of seconds that the slave must lag behind the master.',
`Number_of_workers` int(10) unsigned NOT NULL,
`Id` int(10) unsigned NOT NULL COMMENT 'Internal Id that uniquely identifies this record.',
`Channel_name` char(64) NOT NULL COMMENT 'The channel on which the slave is connected to a source. Used in Multisource Replication',
PRIMARY KEY (`Channel_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Relay Log Information';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `slave_worker_info`
--
DROP TABLE IF EXISTS `slave_worker_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `slave_worker_info` (
`Id` int(10) unsigned NOT NULL,
`Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Relay_log_pos` bigint(20) unsigned NOT NULL,
`Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Master_log_pos` bigint(20) unsigned NOT NULL,
`Checkpoint_relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Checkpoint_relay_log_pos` bigint(20) unsigned NOT NULL,
`Checkpoint_master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Checkpoint_master_log_pos` bigint(20) unsigned NOT NULL,
`Checkpoint_seqno` int(10) unsigned NOT NULL,
`Checkpoint_group_size` int(10) unsigned NOT NULL,
`Checkpoint_group_bitmap` blob NOT NULL,
`Channel_name` char(64) NOT NULL COMMENT 'The channel on which the slave is connected to a source. Used in Multisource Replication',
PRIMARY KEY (`Channel_name`,`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Worker Information';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `slave_worker_info`
--
LOCK TABLES `slave_worker_info` WRITE;
/*!40000 ALTER TABLE `slave_worker_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `slave_worker_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tables_priv`
--
DROP TABLE IF EXISTS `tables_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tables_priv` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '',
`Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`Grantor` char(93) COLLATE utf8_bin NOT NULL DEFAULT '',
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') CHARACTER SET utf8 NOT NULL DEFAULT '',
`Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '',
PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`),
KEY `Grantor` (`Grantor`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tables_priv`
--
LOCK TABLES `tables_priv` WRITE;
/*!40000 ALTER TABLE `tables_priv` DISABLE KEYS */;
INSERT INTO `tables_priv` VALUES ('localhost','mysql','mysql.session','user','boot@connecting host','0000-00-00 00:00:00','Select',''),('localhost','sys','mysql.sys','sys_config','root@localhost','2023-02-19 16:45:28','Select','');
/*!40000 ALTER TABLE `tables_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone`
--
DROP TABLE IF EXISTS `time_zone`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone` (
`Time_zone_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Use_leap_seconds` enum('Y','N') NOT NULL DEFAULT 'N',
PRIMARY KEY (`Time_zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Time zones';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone`
--
LOCK TABLES `time_zone` WRITE;
/*!40000 ALTER TABLE `time_zone` DISABLE KEYS */;
/*!40000 ALTER TABLE `time_zone` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone_leap_second`
--
DROP TABLE IF EXISTS `time_zone_leap_second`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone_leap_second` (
`Transition_time` bigint(20) NOT NULL,
`Correction` int(11) NOT NULL,
PRIMARY KEY (`Transition_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Leap seconds information for time zones';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone_leap_second`
--
LOCK TABLES `time_zone_leap_second` WRITE;
/*!40000 ALTER TABLE `time_zone_leap_second` DISABLE KEYS */;
/*!40000 ALTER TABLE `time_zone_leap_second` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone_name`
--
DROP TABLE IF EXISTS `time_zone_name`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone_name` (
`Name` char(64) NOT NULL,
`Time_zone_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`Name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Time zone names';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone_name`
--
LOCK TABLES `time_zone_name` WRITE;
/*!40000 ALTER TABLE `time_zone_name` DISABLE KEYS */;
/*!40000 ALTER TABLE `time_zone_name` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone_transition`
--
DROP TABLE IF EXISTS `time_zone_transition`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone_transition` (
`Time_zone_id` int(10) unsigned NOT NULL,
`Transition_time` bigint(20) NOT NULL,
`Transition_type_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`Time_zone_id`,`Transition_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Time zone transitions';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone_transition`
--
LOCK TABLES `time_zone_transition` WRITE;
/*!40000 ALTER TABLE `time_zone_transition` DISABLE KEYS */;
/*!40000 ALTER TABLE `time_zone_transition` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone_transition_type`
--
DROP TABLE IF EXISTS `time_zone_transition_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone_transition_type` (
`Time_zone_id` int(10) unsigned NOT NULL,
`Transition_type_id` int(10) unsigned NOT NULL,
`Offset` int(11) NOT NULL DEFAULT '0',
`Is_DST` tinyint(3) unsigned NOT NULL DEFAULT '0',
`Abbreviation` char(8) NOT NULL DEFAULT '',
PRIMARY KEY (`Time_zone_id`,`Transition_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Time zone transition types';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone_transition_type`
--
LOCK TABLES `time_zone_transition_type` WRITE;
/*!40000 ALTER TABLE `time_zone_transition_type` DISABLE KEYS */;
/*!40000 ALTER TABLE `time_zone_transition_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '',
`Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Reload_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Shutdown_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Process_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`File_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Show_db_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Super_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Repl_slave_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Repl_client_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_user_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_tablespace_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`ssl_type` enum('','ANY','X509','SPECIFIED') CHARACTER SET utf8 NOT NULL DEFAULT '',
`ssl_cipher` blob NOT NULL,
`x509_issuer` blob NOT NULL,
`x509_subject` blob NOT NULL,
`max_questions` int(11) unsigned NOT NULL DEFAULT '0',
`max_updates` int(11) unsigned NOT NULL DEFAULT '0',
`max_connections` int(11) unsigned NOT NULL DEFAULT '0',
`max_user_connections` int(11) unsigned NOT NULL DEFAULT '0',
`plugin` char(64) COLLATE utf8_bin NOT NULL DEFAULT 'mysql_native_password',
`authentication_string` text COLLATE utf8_bin,
`password_expired` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`password_last_changed` timestamp NULL DEFAULT NULL,
`password_lifetime` smallint(5) unsigned DEFAULT NULL,
`account_locked` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
PRIMARY KEY (`Host`,`User`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user`
--
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES ('localhost','root','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'mysql_native_password','*9DECBEFC1398DBA0D484DDF916B7EA0E397B2C44','N','2023-02-19 16:45:34',NULL,'N'),('localhost','mysql.session','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','*THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE','N','2023-02-19 16:45:28',NULL,'Y'),('localhost','mysql.sys','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','*THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE','N','2023-02-19 16:45:28',NULL,'Y');
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping events for database 'mysql'
--
--
-- Dumping routines for database 'mysql'
--
--
-- Table structure for table `general_log`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE IF NOT EXISTS `general_log` (
`event_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6),
`user_host` mediumtext NOT NULL,
`thread_id` bigint(21) unsigned NOT NULL,
`server_id` int(10) unsigned NOT NULL,
`command_type` varchar(64) NOT NULL,
`argument` mediumblob NOT NULL
) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='General log';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `slow_log`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE IF NOT EXISTS `slow_log` (
`start_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6),
`user_host` mediumtext NOT NULL,
`query_time` time(6) NOT NULL,
`lock_time` time(6) NOT NULL,
`rows_sent` int(11) NOT NULL,
`rows_examined` int(11) NOT NULL,
`db` varchar(512) NOT NULL,
`last_insert_id` int(11) NOT NULL,
`insert_id` int(11) NOT NULL,
`server_id` int(10) unsigned NOT NULL,
`sql_text` mediumblob NOT NULL,
`thread_id` bigint(21) unsigned NOT NULL
) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='Slow log';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Current Database: `bitnami_redmine`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `bitnami_redmine` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `bitnami_redmine`;
--
-- Table structure for table `ar_internal_metadata`
--
DROP TABLE IF EXISTS `ar_internal_metadata`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ar_internal_metadata` (
`key` varchar(255) NOT NULL,
`value` varchar(255) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ar_internal_metadata`
--
LOCK TABLES `ar_internal_metadata` WRITE;
/*!40000 ALTER TABLE `ar_internal_metadata` DISABLE KEYS */;
INSERT INTO `ar_internal_metadata` VALUES ('environment','production','2020-11-25 21:01:56','2020-11-25 21:01:56');
/*!40000 ALTER TABLE `ar_internal_metadata` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `attachments`
--
DROP TABLE IF EXISTS `attachments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `attachments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`container_id` int(11) DEFAULT NULL,
`container_type` varchar(30) DEFAULT NULL,
`filename` varchar(255) NOT NULL DEFAULT '',
`disk_filename` varchar(255) NOT NULL DEFAULT '',
`filesize` bigint(20) NOT NULL DEFAULT '0',
`content_type` varchar(255) DEFAULT '',
`digest` varchar(64) NOT NULL DEFAULT '',
`downloads` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`created_on` datetime DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`disk_directory` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_attachments_on_author_id` (`author_id`),
KEY `index_attachments_on_created_on` (`created_on`),
KEY `index_attachments_on_container_id_and_container_type` (`container_id`,`container_type`),
KEY `index_attachments_on_disk_filename` (`disk_filename`)
) ENGINE=InnoDB AUTO_INCREMENT=3827 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `attachments`
--
LOCK TABLES `attachments` WRITE;
/*!40000 ALTER TABLE `attachments` DISABLE KEYS */;
INSERT INTO `attachments` VALUES (1,6,'Project','MAPE_TYPE.xml','120112134640_MAPE_TYPE.xml',27604,'text/xml','3d3a31e6117c2d3f878377d777ad1c5b',3,1,'2012-01-12 13:46:40','Description de type MAPE',NULL),(3,6,'Project','RTE_Type.xml','120112134805_RTE_Type.xml',15086,'text/xml','2bbce3cbd7325a1f019e8b203821b162',1,1,'2012-01-12 13:48:05','Types RTE',NULL),(4,6,'Project','Opc.Ua.NodeSet2.xml','120112135636_Opc.Ua.NodeSet2.xml',1369127,'text/xml','648336557352952953ca99ce0896b538',4,1,'2012-01-12 13:56:36','Type parties 5, 8, 9, 10, 11',NULL),(6,6,'Project','analogInput.vsd','120112164653_analogInput.vsd',143360,'application/vnd.visio','6ff5e3a764401cb374d3253c787e0902',1,4,'2012-01-12 16:46:53','AnalogInput Visio',NULL),(9,2,'Issue','OPC UA - Problème d_accès au dépôt SVN.png','120118190337_f2490b79feca9d62c5c9e9ff21dc0bd0.png',151062,'image/png','7464a8c86db918bf7817c0427de04bbe',0,2,'2012-01-18 19:03:37','Screenshot de la page d\'erreur associé',NULL),(10,1,'Project','Licence-CeCill-C.txt','120201193901_Licence-CeCill-C.txt',1830,'text/plain','62f9317ff5ff9ea38c39b4a156e46ead',137,1,'2012-02-01 19:39:01','CeCill-C header',NULL),(12,6,'Project','BACnetOPCUA.pdf','120306150245_BACnetOPCUA.pdf',1229049,'application/pdf','4a839db6a819c6813771809267d28c3a',4,4,'2012-03-06 15:02:45','Rapport Projet Camille',NULL),(13,6,'Project','PowerPointBACNetOPCUA.pdf.pdf','120306150350_PowerPointBACNetOPCUA.pdf.pdf',737091,'application/pdf','c5ae8fcb0e1f8057bc01ecc743d8b098',5,4,'2012-03-06 15:03:50','Powerpoint presentation projet',NULL),(15,3,'Project','UAStackV1.zip','120619143316_UAStackV1.zip',5242452,'application/x-zip-compressed','0170f5b8a07a59855eb59eaad27ffd60',1,1,'2012-06-19 14:33:17','Projet Stack V1 complet',NULL),(16,25,'Project','UAClientLibTester.tif','120705020337_UAClientLibTester.tif',1080228,'image/tiff','5318f605933712eee912c81230881c29',1,1,'2012-07-05 02:03:37','Un aperçu de l\'UAClientLibTester',NULL),(17,20,'Project','Sample Client .Net.zip','120823010847_db1dea92bc2a076c40b08bada45721cf.zip',2027831,'application/x-zip-compressed','676b4952e2393a5a226dda9bdd7495e0',32,1,'2012-08-23 01:08:48','Binaire - Sample Client UA .Net',NULL),(18,6,'Project','bacnet.xml','121011190511_bacnet.xml',30040,'text/xml','507a9ad8b2fdd6b0f6f500ee94fb97fa',6,4,'2012-10-11 19:05:11','Description des objets BACnet selon le meta modèle OPC UA',NULL),(19,12,'Issue','register-unregisterNodes.png','121115183711_register-unregisterNodes.png',114780,'image/x-png','91f57b528168c8d5070b4e1b3759f9da',0,1,'2012-11-15 18:37:11','CTT Result',NULL),(33,13,'Project','OpenOpcUaCoreServer.zip','130109183846_OpenOpcUaCoreServer.zip',1116573,'application/x-zip-compressed','f0325f9dd3ede0bdb4686bd8b59c1a23',0,1,'2013-01-09 18:38:46','Binaire de démo',NULL),(34,13,'Project','OpenOpcUaCoreServer-1.0.7.zip','130112014215_OpenOpcUaCoreServer-1.0.7.zip',1116076,'application/x-zip-compressed','297d81438d83fff3fc676bdad745633f',2,1,'2013-01-12 01:42:15','OpenOpcUaCoreServer 1.0.7',NULL),(37,13,'Project','OpenOpcUa_V1_26-03-2013.zip','130326081622_OpenOpcUa_V1_26-03-2013.zip',3785925,'application/x-zip-compressed','8132eadd8df1d453df4e68003258724f',10,1,'2013-03-26 08:16:22','Unified OpenOpcUa Codebase UAWindows and Linux 2.6',NULL),(39,13,'Project','OPC UA Sample Client 331.zip','130327092449_294d8332ad95ad0b594018da3291bcfb.zip',2214482,'application/x-zip-compressed','fb0257e16ac82ae8dd05900b81227037',4,1,'2013-03-27 09:24:50','Sample Client 331 from OPC Foundation',NULL),(40,1,'Project','OPC UA Sample Client 331.zip','130423123123_294d8332ad95ad0b594018da3291bcfb.zip',2214482,'application/x-zip-compressed','fb0257e16ac82ae8dd05900b81227037',159,1,'2013-04-23 12:31:23','Sample Client 331 from OPC Foundation',NULL),(41,3,'Project','ssl Fonctions Utilisées dans OpenOpcUa.xlsx','130619181906_e8b09cd1cf676b4485b6f62eacb6295b.xlsx',13441,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','fbeee919971e27a48ab2efea3cc607fd',0,1,'2013-06-19 18:19:07','Fonctions OpenSSL utilisées dans OpenOpcUa',NULL),(42,18,'Issue','debuglogs.zip','140222000739_debuglogs.zip',1341110,'application/zip','2a96b207dd4ca2422c05e09c4b19119f',0,164,'2014-02-22 00:07:39','debuglogs from OpenOpcUa and Ignition',NULL),(43,18,'Issue','wiresharkLog.pcapng','140313010743_wiresharkLog.pcapng',10920,'application/octet-stream','588944050abc41dc83007fec8591f3b4',0,164,'2014-03-13 01:07:43','',NULL),(44,22,'Issue','ConfigNamespace.zip','140401150454_ConfigNamespace.zip',135485,'application/x-zip-compressed','710632c9dad4f8557aa4ee63e431afef',0,174,'2014-04-01 15:04:54','',NULL),(45,1,'Document','How to use OpenOpcUaQuickClient.pdf','150204101852_2d0a6adea73490f35debd0e509e37957.pdf',890736,'application/pdf','155315dee5b26422f340643b2872245e',0,1,'2015-02-04 10:18:52','',NULL),(46,29,'Issue','0004-On-Linux-OpcUa_CharW-is-4-bytes-wide.patch','150220110529_0004-On-Linux-OpcUa_CharW-is-4-bytes-wide.patch',1300,'text/x-patch','9658428773d095f37c9f1ae04da6f4f9',0,219,'2015-02-20 11:05:29','Patch',NULL),(47,30,'Issue','0005-Remove-an-erroneous-but-unused-Unicode-conversion.patch','150220111002_0005-Remove-an-erroneous-but-unused-Unicode-conversion.patch',1361,'text/x-patch','99c2bd8a3eaba8f8ed0751d03168df03',0,219,'2015-02-20 11:10:03','Patch',NULL),(48,31,'Issue','0006-Do-not-duplicate-forward-slashes-in-paths.patch','150220111523_0006-Do-not-duplicate-forward-slashes-in-paths.patch',1490,'text/x-patch','7a4b04d2d6a648f192e272a7ff1d74bb',0,219,'2015-02-20 11:15:24','Patch',NULL),(49,32,'Issue','0007-CQueuedPublishMessage-FillXXX-Extend-allocation-for-.patch','150220112514_0007-CQueuedPublishMessage-FillXXX-Extend-allocation-for-.patch',4638,'text/x-patch','7752943edfb772d82091a05e705412fc',0,219,'2015-02-20 11:25:14','Patch',NULL),(50,33,'Issue','0008-SetEventFilter-Don-t-write-beyond-end-of-buffer.patch','150220113146_0008-SetEventFilter-Don-t-write-beyond-end-of-buffer.patch',1367,'text/x-patch','395e826197935dace5c3bc70e64ffc82',0,219,'2015-02-20 11:31:46','Patch',NULL),(51,34,'Issue','0009-Fix-undefined-behaviour-due-to-uninitialised-variabl.patch','150220114006_0009-Fix-undefined-behaviour-due-to-uninitialised-variabl.patch',8550,'text/x-patch','bbfe122feb693b6f75a6b3c495a7068e',0,219,'2015-02-20 11:40:06','Patch initialisations',NULL),(52,34,'Issue','0010-OpcUa_Alloc-Prevent-information-leaks.patch','150220114006_0010-OpcUa_Alloc-Prevent-information-leaks.patch',1360,'text/x-patch','179234305fd2c1ba8335096797f37b20',0,219,'2015-02-20 11:40:06','Patch calloc()',NULL),(53,35,'Issue','0001-Fix-signed-unsigned-comparisons.patch','150220163204_0001-Fix-signed-unsigned-comparisons.patch',3903,'text/x-patch','b8f037a3b1d07408e0da2be3c7144026',0,219,'2015-02-20 16:32:04','Patch',NULL),(54,36,'Issue','0001-VpiNull-Avoid-taking-address-of-temporary-object.patch','150220163710_0001-VpiNull-Avoid-taking-address-of-temporary-object.patch',930,'text/x-patch','87f7eddaff1261d05e001b6d95dfb102',0,219,'2015-02-20 16:37:10','Patch',NULL),(55,37,'Issue','0001-Prevent-memory-leak-in-CDefinition-DuplicateString.patch','150223172835_0001-Prevent-memory-leak-in-CDefinition-DuplicateString.patch',1238,'text/x-patch','11df5bf2e474105bf1c62a9d9fd42b4d',0,219,'2015-02-23 17:28:35','Patch',NULL),(56,37,'Issue','0001-Prevent-memory-leaks-in-OpenOpcUaCoreServer.patch','150224103636_0001-Prevent-memory-leaks-in-OpenOpcUaCoreServer.patch',5198,'text/x-patch','2dc56c0d8147fa26419edf3cfa309a9f',0,219,'2015-02-24 10:36:36','Patch #2',NULL),(57,38,'Issue','0001-Prevent-memory-leaks-in-CDefinition-DuplicateXXX.patch','150225160504_0001-Prevent-memory-leaks-in-CDefinition-DuplicateXXX.patch',1537,'text/x-patch','9c92148f1335b186887c5d953ba39177',0,219,'2015-02-25 16:05:04','Patch',NULL),(58,39,'Issue','changeset_r322_r321.diff','150226141408_changeset_r322_r321.diff',3795,'application/octet-stream','f7421296e0cba5614489a8e5f6353ca4',0,1,'2015-02-26 14:14:08','',NULL),(62,2,'Version','OpenOpcUa_1_0_2_6_CoreServer_No_Vpi.zip','150403171533_OpenOpcUa_1_0_2_6_CoreServer_No_Vpi.zip',11342923,'application/x-zip-compressed','321c1877a9ca55fbac4220270d34f24d',26,1,'2015-04-03 17:15:33','',NULL),(63,5,'Version','OpenOpcUa_1_0_2_8_CoreServer_No_Vpi.zip','150603151225_OpenOpcUa_1_0_2_8_CoreServer_No_Vpi.zip',5475052,'application/x-zip-compressed','59f238721d92857321400de8787c4232',28,1,'2015-06-03 15:12:26','OpenOpcUaCoreServer 1.0.2.8',NULL),(64,5,'Version','OpenSSL_CRT2013.zip','150610141825_OpenSSL_CRT2013.zip',688350,'application/x-zip-compressed','1f4dae9bfd50d825ae488461dabf1b8c',17,1,'2015-06-10 14:18:25','OpenSSL DLL for Windows CRT 2013',NULL),(65,5,'Version','OpenOpcUa_1_0_2_8_CoreServer_With_Vpi_Vfi.zip','150615122724_OpenOpcUa_1_0_2_8_CoreServer_With_Vpi_Vfi.zip',5736843,'application/x-zip-compressed','5a1ae929511715102066d0112aad3a6a',29,1,'2015-06-15 12:27:25','Codebase for CoreServer with Vpi, VpiLibrary and Vfi',NULL),(66,5,'Version','OpenOpcUa_1_0_2_8_ClientSdkWithSource.zip','150729182930_OpenOpcUa_1_0_2_8_ClientSdkWithSource.zip',5627627,'application/x-zip-compressed','9b74bea478c9b689ab93d4dd231eb15e',25,1,'2015-07-29 18:29:30','',NULL),(67,29,'Issue','0005-On-Linux-OpcUa_CharW-is-4-bytes-wide.patch','150805171723_0005-On-Linux-OpcUa_CharW-is-4-bytes-wide.patch',1917,'text/x-patch','54735c9dfafbd3bf48420d4d123bf51d',0,219,'2015-08-05 17:17:23','Updated patch against \"1.0.2.8 With Vpi Vfi\"',NULL),(68,32,'Issue','0008-CQueuedPublishMessage-FillXXX-Extend-allocation-for-.patch','150805174909_0008-CQueuedPublishMessage-FillXXX-Extend-allocation-for-.patch',4547,'text/x-patch','a434cb658e3964139c5476713de999f0',0,219,'2015-08-05 17:49:09','Updated patch against \"1.0.2.8 With Vpi Vfi\"',NULL),(69,34,'Issue','0009-Fix-undefined-behaviour-due-to-uninitialised-variabl.patch','150805175511_0009-Fix-undefined-behaviour-due-to-uninitialised-variabl.patch',3398,'text/x-patch','038497112bc2b61241d7f77082638479',0,219,'2015-08-05 17:55:11','Updated patch against \"1.0.2.8 With Vpi Vfi\"',NULL),(70,38,'Issue','0013-Prevent-memory-leaks-in-CDefinition-DuplicateXXX.patch','150807120842_0013-Prevent-memory-leaks-in-CDefinition-DuplicateXXX.patch',965,'text/x-patch','2302a8eea71698da76b6d9ca391962f5',0,219,'2015-08-07 12:08:42','Updated patch against \"1.0.2.8 With Vpi Vfi\" (3.3 kB)',NULL),(71,37,'Issue','0012-Prevent-memory-leaks-in-OpenOpcUaCoreServer.patch','150807121433_0012-Prevent-memory-leaks-in-OpenOpcUaCoreServer.patch',5106,'text/x-patch','9d71c372da8c8407b3f8ade115650b22',0,219,'2015-08-07 12:14:34','Updated patch against \"1.0.2.8 With Vpi Vfi\" (3.3 kB)',NULL),(72,47,'Issue','0014-Export-OpcUa_Vpi_Variant_.-methods-as-extern-C.patch','150807131738_0014-Export-OpcUa_Vpi_Variant_.-methods-as-extern-C.patch',1590,'text/x-patch','8e5d573d7317bff996115ed35707c6b5',0,219,'2015-08-07 13:17:38','',NULL),(73,48,'Issue','0015-UAInformationModel-Don-t-clear-uninitialised-OpcUa_N.patch','150807132812_0015-UAInformationModel-Don-t-clear-uninitialised-OpcUa_N.patch',1058,'text/x-patch','c6515875f129a78e99597af3712d958e',0,219,'2015-08-07 13:28:12','Patch',NULL),(74,49,'Issue','0016-Simplify-OpcUa_String_AtoW-and-.WtoA.patch','150807133611_0016-Simplify-OpcUa_String_AtoW-and-.WtoA.patch',3046,'text/x-patch','1f579ea76499f86c42d416966a0d4cb3',0,219,'2015-08-07 13:36:11','Patch',NULL),(79,9,'Version','OpenOpcUa_1_0_2_9_ClientSdkWithSource_Beta1.zip','150903103212_OpenOpcUa_1_0_2_9_ClientSdkWithSource_Beta1.zip',5668225,'application/x-zip-compressed','71a22b4e1821a0b034d3cd7a3f0c2a47',13,1,'2015-09-03 10:32:12','OpenOpcUa_1_0_2_9_ClientSdk Beta1',NULL),(80,9,'Version','OpenOpcUa_1_0_2_9_ClientSdkWithSource_Beta2.zip','150903161956_OpenOpcUa_1_0_2_9_ClientSdkWithSource_Beta2.zip',5668238,'application/x-zip-compressed','0c5c3ab3bd18cb17be84954b523d9659',21,1,'2015-09-03 16:19:57','OpenOpcUa_1_0_2_9_ClientSdk Beta2',NULL),(81,10,'Version','Delivrable Beta 4.0.zip','150914111945_99feb7a39c450dd83e537007f4ab8abc.zip',8250579,'application/x-zip-compressed','18fd9cc768df1fdb31104c381bdf8037',42,1,'2015-09-14 11:19:46','OpenOpcUa Config Manager Beta 4.0',NULL),(82,11,'Version','Webinar 1h - OpenOpcUa.pdf','151103132434_4c0792af93b59fbc068078f010805832.pdf',2108756,'application/pdf','9b47226b9f3acfc0c84300c6cbc8373d',47,1,'2015-11-03 13:24:34','One hour webinar',NULL),(87,12,'Version','OpenOpcUa_1_0_3_2_ClientSdk.zip','151111172426_OpenOpcUa_1_0_3_2_ClientSdk.zip',4984760,'application/x-zip-compressed','bf9d4b437b978cb31a2cd9bde3f65170',11,1,'2015-11-11 17:24:26','OpenOpcUaClientSdk_binary_and_samples',NULL),(88,12,'Version','OpenOpcUa_1_0_3_2_ClientSdkWithSource.zip','151111172544_OpenOpcUa_1_0_3_2_ClientSdkWithSource.zip',5544762,'application/x-zip-compressed','dc1af3dc9b47d0fb1d6ad0e96689e274',14,1,'2015-11-11 17:25:44','OpenOpcUaClientSdk with source',NULL),(89,12,'Version','OpenOpcUa_1_0_3_2_CoreServer_No_AddIn.zip','151111172652_OpenOpcUa_1_0_3_2_CoreServer_No_AddIn.zip',5490697,'application/x-zip-compressed','2764d20c6ed1c853cc616fa3dfce1fb2',14,1,'2015-11-11 17:26:52','OpenOpcUaCoreServer without AddIn',NULL),(90,12,'Version','OpenOpcUa_1_0_3_2_CoreServer_With_AddIn.zip','151114135416_OpenOpcUa_1_0_3_2_CoreServer_With_AddIn.zip',5756451,'application/x-zip-compressed','3c794e1ddb2ec989128fe8a1b183613c',18,1,'2015-11-14 13:54:18','OpenOpcUaCoreServer with AddIns',NULL),(91,63,'Issue','prob.PNG','151118135654_prob.PNG',13460,'image/png','98d385f82eb63be82d95152e04dd5efc',0,246,'2015-11-18 13:56:54','',NULL),(92,66,'Issue','VPINodeset.xml','151118152447_VPINodeset.xml',3189732,'text/xml','26bfa0c0d7c776d311ec3fb4888c5312',0,246,'2015-11-18 15:24:47','',NULL),(93,66,'Issue','ConfigOpenOpcUa.xml','151118152448_ConfigOpenOpcUa.xml',739,'text/xml','74b05cd65db26dff223cf2f94b686164',0,246,'2015-11-18 15:24:49','',NULL),(94,66,'Issue','SubSystem.xml','151118152449_SubSystem.xml',718971,'text/xml','5edb16ec5b58d19d594b8d2ec7bd11ff',0,246,'2015-11-18 15:24:49','',NULL),(95,67,'Issue','Softing Client.png','151201135646_e38528936e3f9df605815f521188a2ea.png',262879,'image/png','7cd67a1d5f7cb7185d2b591951e6ac60',0,243,'2015-12-01 13:56:46','Connected through Softing Client',NULL),(96,67,'Issue','OpenOPCUA.png','151201135646_OpenOPCUA.png',193230,'image/png','326340c4965ef83e43392d8412b6eda6',0,243,'2015-12-01 13:56:46','Connected through OpenOpcUaQuickClient',NULL),(97,67,'Issue','OPCUADebugger30-11-2015 13-21-46.txt','151201135646_2977c2cbed4066d4fcb8c908b1eb2078.txt',4161,'text/plain','62c8eaab648fd7901b39c70017b42676',0,243,'2015-12-01 13:56:46','Logs generated from OpenOPCUA client',NULL),(98,67,'Issue','OPCUADebugger30-11-2015 13-22-22.txt','151201135646_33ef367939d2e09087af5fb2368f6fcd.txt',1632,'text/plain','86d7d4f98bcc9b10528fe3b58f27bcd4',0,243,'2015-12-01 13:56:46','Logs generated from OpenOPCUA client',NULL),(104,68,'Issue','Aqua_3_AvecNouvelleBETA.pcapng','151217201323_Aqua_3_AvecNouvelleBETA.pcapng',1619728,'application/octet-stream','d6a316220bf08561b55015c895785626',0,246,'2015-12-17 20:13:23','',NULL),(105,72,'Issue','RadOpc.log','160105103524_RadOpc.log',3869518,'application/octet-stream','7e7d35eed9989102917b1c725d4bddc9',0,231,'2016-01-05 10:35:24','',NULL),(109,76,'Issue','Graph.PNG','160125160945_Graph.PNG',39220,'image/png','bd4b8b7f89969a3352b02af486d51259',0,246,'2016-01-25 16:09:45','Memory evolution',NULL),(110,77,'Issue','Graph.PNG','160127093620_Graph.PNG',39220,'image/png','bd4b8b7f89969a3352b02af486d51259',0,246,'2016-01-27 09:36:20','Without MAP',NULL),(111,77,'Issue','Capture_MAP.PNG','160127093620_Capture_MAP.PNG',41478,'image/png','d5c67ba9095580f2413a44a61b4f509b',0,246,'2016-01-27 09:36:20','With MAP',NULL),(112,77,'Issue','patch_std_map.patch','160127093620_patch_std_map.patch',23002,'application/octet-stream','4f03c6387d935429cf23fc5646c5b0c8',0,246,'2016-01-27 09:36:20','Patch to apply',NULL),(113,79,'Issue','VPIScheduler.h.patch','160203114913_VPIScheduler.h.patch',422,'application/octet-stream','838860bde9e15529577aaaadfa73a72e',0,250,'2016-02-03 11:49:13','',NULL),(114,79,'Issue','VPIScheduler.cpp.patch','160203114914_VPIScheduler.cpp.patch',1934,'application/octet-stream','55a476c48b1fba9265f94eaf3c38914a',0,250,'2016-02-03 11:49:14','',NULL),(115,79,'Issue','vpi-config.zip','160204100057_vpi-config.zip',10106,'application/x-zip-compressed','a87cd8a0b3306854f10721268e4b4f3c',0,250,'2016-02-04 10:00:57','',NULL),(125,13,'Version','OpenOpcUa_1_0_4_0_RC15.zip','160412215325_OpenOpcUa_1_0_4_0_RC15.zip',9090024,'application/x-zip-compressed','e70661766570e5e4a12778b31e2469af',7,1,'2016-04-12 21:53:25','Full OpenOpcUa codebase 1.0.4.0 Release Candidate 15',NULL),(126,13,'Version','changelogRC15.txt','160412215438_changelogRC15.txt',451,'text/plain','057bf84c2bef4ba8b57b2045e68f68eb',11,1,'2016-04-12 21:54:38','1.0.4.0 Change log',NULL),(127,1,'Project','DemoOpenOpcUa-April-2016.zip','160414225259_DemoOpenOpcUa-April-2016.zip',1478958,'application/x-zip-compressed','504603313499eddd54db544484f5fcf5',77,1,'2016-04-14 22:52:59','DemoOpenOpcUa-April-2016',NULL),(129,13,'Version','OpenOpcUa_1_0_4_0_RC16.zip','160517022008_OpenOpcUa_1_0_4_0_RC16.zip',9093228,'application/x-zip-compressed','cf18074a66ea4ab95c183217e925e549',12,1,'2016-05-17 02:20:08','Full OpenOpcUa codebase 1.0.4.0 Release Candidate 16',NULL),(130,13,'Version','changelogRC16.txt','160517022033_changelogRC16.txt',1407,'text/plain','40c718b50386d3e737d9d513de57e42b',12,1,'2016-05-17 02:20:33','Change log RC16',NULL),(132,84,'Issue','RC16-Client-Disconnect-crash.txt','160523143736_RC16-Client-Disconnect-crash.txt',7080,'text/plain','bf879c4216cc3191df0ae0a28b417a47',0,250,'2016-05-23 14:37:37','',NULL),(133,84,'Issue','RC16-Close-while-Client-connected-crash.txt','160523143737_RC16-Close-while-Client-connected-crash.txt',7802,'text/plain','81257f69b96f8ebf0d2b5c01b9c41499',0,250,'2016-05-23 14:37:37','',NULL),(134,84,'Issue','backtrace.txt','160601162713_backtrace.txt',4428,'text/plain','85363d75373e42f2d3a66add73ed4227',0,246,'2016-06-01 16:27:13','INEO Backtrace',NULL),(135,86,'Issue','VPINodeset.xml','160601163222_VPINodeset.xml',8327,'text/xml','52b457a7ec9aa29c6aafce25f25445a5',0,246,'2016-06-01 16:32:22','Nodeset file',NULL),(136,87,'Issue','Tr _ RE_ SouceName in Event _ Alarms OPC UA.pdf','160603163300_2b1c8b75cac1493b7ebe25fe2f2de810.pdf',172244,'application/pdf','e3b259aff82e16dbea2e1c4b22abebbb',0,229,'2016-06-03 16:33:00','Echange mail on the subject',NULL),(137,88,'Issue','FR36415.zip','160603164309_FR36415.zip',1575442,'application/octet-stream','e60fa0a0c243f09d8209e9d66950b2bb',0,229,'2016-06-03 16:43:10','',NULL),(138,15,'Version','OpenOpcUa_1_0_4_1.zip','160621195823_OpenOpcUa_1_0_4_1.zip',9097304,'application/x-zip-compressed','163d9f6beb0e7859c6916c8c994f6538',11,1,'2016-06-21 19:58:23','OpenOpcUa 1.0.4.1',NULL),(139,88,'Issue','Opc.Ua.NodeSet.GTW.xml','160628162004_Opc.Ua.NodeSet.GTW.xml',1556693,'text/xml','c517771e01f1e592a17d5d6b40a13d03',0,229,'2016-06-28 16:20:04','',NULL),(140,43,'Project','VpiRestClient.zip','160701112812_VpiRestClient.zip',31961023,'application/x-zip-compressed','ed508a31a9b1dd339540eeb3e6d487fd',1,1,'2016-07-01 11:28:13','VpiRestClient',NULL),(141,43,'Project','CooperlBox.zip','160701113645_CooperlBox.zip',1865983,'application/x-zip-compressed','365b5138618f1a2ebf78c3038923aae2',1,1,'2016-07-01 11:36:45','CooperBox Config',NULL),(142,43,'Project','Ville-Poissin.zip','160701114114_Ville-Poissin.zip',3268961,'application/x-zip-compressed','126bdd487b3194fdd1b1773b1fcaf89b',0,1,'2016-07-01 11:41:14','Config Test Vill Poissin',NULL),(143,43,'Project','VpiCooperl.zip','160701114417_VpiCooperl.zip',32325,'application/x-zip-compressed','be3532367227169b104ae36e548fcb76',1,1,'2016-07-01 11:44:17','VpiCooperl Source 1-7-2016',NULL),(144,48,'Project','VpiCooperl.zip','160701115238_VpiCooperl.zip',32325,'application/x-zip-compressed','be3532367227169b104ae36e548fcb76',8,1,'2016-07-01 11:52:38','CooperlBox VPI',NULL),(145,48,'Project','VpiRestClient.zip','160701115437_VpiRestClient.zip',31961023,'application/x-zip-compressed','ed508a31a9b1dd339540eeb3e6d487fd',3,1,'2016-07-01 11:54:38','VpiRestClient',NULL),(146,48,'Project','Ville-Poissin.zip','160701115541_Ville-Poissin.zip',3268961,'application/x-zip-compressed','126bdd487b3194fdd1b1773b1fcaf89b',4,1,'2016-07-01 11:55:41','Config Test Vill Poissin',NULL),(148,48,'Project','uaexpert-bin-linux32-x86-gcc4.5.1-v1.3.0-201.tar.gz','160701115742_uaexpert-bin-linux32-x86-gcc4.5.1-v1.3.0-201.tar.gz',9964163,'application/x-gzip','86d2d04f7da7b5e9f46bfb2b940f4b49',2,1,'2016-07-01 11:57:43','UA Expert Linux',NULL),(149,48,'Project','uaexpert-bin-win32-x86-vs2008sp1-v1.3.0-201.zip','160701120046_uaexpert-bin-win32-x86-vs2008sp1-v1.3.0-201.zip',10994996,'application/x-zip-compressed','7c49b134842818b1e1a8372feac0c4bd',6,1,'2016-07-01 12:00:46','UA Expert Windows',NULL),(151,16,'Version','OpenOpcUa_1_0_4_2.zip','160711105015_OpenOpcUa_1_0_4_2.zip',9108230,'application/x-zip-compressed','6583ec7f37985a327e280626ad8973e6',9,1,'2016-07-11 10:50:16','OpenOpcUa codebase 1.0.4.2',NULL),(152,16,'Version','changelog1.0.4.2.txt','160711105059_changelog1.0.4.2.txt',842,'text/plain','e527bc2350200686021a04c50375f459',18,1,'2016-07-11 10:50:59','Changelog 1.0.4.2',NULL),(153,16,'Version','Manuel de l_utilisateur-v0.8.pdf','160711105140_05474c790463251826610e6d4fa1c59c.pdf',1320074,'application/pdf','df67c66e09c14325088eac974dd1275f',12,1,'2016-07-11 10:51:40','Manuel Utilisateur FR - V0.8 for 1.0.4.2',NULL),(154,8,'Message','Capture.PNG','160803124732_Capture.PNG',17189,'image/png','736124d15c5be7aa7950b6f8a43a15c1',0,277,'2016-08-03 12:47:32','Capture d\'ecran de l\'erreur',NULL),(155,18,'Version','VpiModbusStringTest.zip','160804200359_VpiModbusStringTest.zip',2595581,'application/x-zip-compressed','0ec02c6dffd5442cae49f648aa46b9c5',4,1,'2016-08-04 20:03:59','Demo String support Release and Debug 4 Windows 7 >',NULL),(156,84,'Issue','valgrind_3.log','160805111931_valgrind_3.log',3049,'text/plain','cdf51254e34520e7421824dce6068574',0,250,'2016-08-05 11:19:31','valgrind memcheck output',NULL),(157,91,'Issue','Labo-Modbus.NodeSet.xml','160825173014_Labo-Modbus.NodeSet.xml',4278,'text/xml','ef34c408e410da2e146539d54b980837',0,254,'2016-08-25 17:30:14','',NULL),(158,91,'Issue','PlcModbus001.Subsystem.release.xml','160825173014_PlcModbus001.Subsystem.release.xml',752,'text/xml','18d6dd1b9d56a94cd4b78052029b4cd7',0,254,'2016-08-25 17:30:14','',NULL),(159,91,'Issue','VPIMdbMaster00200.log','160825173014_VPIMdbMaster00200.log',713,'application/octet-stream','0781914c731ff55c119188b1c650b1cc',0,254,'2016-08-25 17:30:14','',NULL),(160,91,'Issue','OpenOpcUaCoreServer.log','160825173014_OpenOpcUaCoreServer.log',5083,'application/octet-stream','760757b38510c4a81ac11947ec6896c7',0,254,'2016-08-25 17:30:15','',NULL),(161,91,'Issue','VPI Modbus String.pcapng','160825173015_afd440ee8959d7be5c94b06a024fba71.pcapng',8564,'application/octet-stream','a6ce5a1767636d9cd8aad20e6a2cd562',0,254,'2016-08-25 17:30:15','',NULL),(166,48,'Project','OpenOpcUa_J2.pdf','160906151713_OpenOpcUa_J2.pdf',3740040,'application/pdf','44c5ceb71bf246447ff774d2f855713a',9,1,'2016-09-06 15:17:14','OpenOpcUa Workshop J2',NULL),(167,48,'Project','Minutes OpenOpcUa - Cooperl 6-9-2016.docx','160906161925_14aac9a81fb9a2b3696c410a03add570.docx',15292,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','3db11cc126f2f0ec2e9baee7725170d3',9,1,'2016-09-06 16:19:25','Minutes 6-9-2016',NULL),(175,20,'Version','OpenOpcUa_1_0_4_3.zip','160922081600_OpenOpcUa_1_0_4_3.zip',9120185,'application/x-zip-compressed','32f5aab582fbc38f5d40c7e8dc1bd057',6,1,'2016-09-22 08:16:02','1.0.4.3',NULL),(176,20,'Version','changelog1.0.4.3.txt','160922081926_changelog1.0.4.3.txt',1028,'text/plain','1f935bb4ccb6291d3cfec0cf68785091',7,1,'2016-09-22 08:19:26','1.0.4.3 Change log',NULL),(177,21,'Version','VPIS7_Release_Debug.zip','160922172619_VPIS7_Release_Debug.zip',52113,'application/x-zip-compressed','98853309165f64c7f2e7b8a1f73559ac',5,1,'2016-09-22 17:26:19','VpiS7 for OpenOpcUaVpiLibrary with new signature',NULL),(179,97,'Issue','Wireshark (Ecriture multi nodeid - Node1 OK - Node2 NON).pcapng','161011115040_669de7df159c62a22d8808bc0cb65f37.pcapng',384,'application/octet-stream','db2e9bcd54e9aac207e9004d360ddd61',0,269,'2016-10-11 11:50:41','',NULL),(180,97,'Issue','Wireshark (Ecriture simple nodeid - OK).pcapng','161011115041_055a9650916ed98a63b46b169fa223c4.pcapng',368,'application/octet-stream','5e5d125f99087334548728fc7faad839',0,269,'2016-10-11 11:50:41','',NULL),(181,97,'Issue','Wireshark (Lecture multi nodeid - Node1 OK - Node2 NON).pcapng','161011115041_3a13700a2db41d81f83b1dc1fe9d36c1.pcapng',464,'application/octet-stream','097a1383f38d4aaf43090ed40282ac09',0,269,'2016-10-11 11:50:41','',NULL),(183,22,'Version','ChangeLog_1_0_0_3.txt','161012120424_ChangeLog_1_0_0_3.txt',342,'text/plain','0cb31dc8838e69e9f63a6df00cd7c9b5',3,1,'2016-10-12 12:04:24','Change Log',NULL),(184,24,'Version','OpenOpcUa_1_0_4_4.zip','161012133327_OpenOpcUa_1_0_4_4.zip',9129014,'application/x-zip-compressed','d263d77420d145636fcab68a59112885',15,1,'2016-10-12 13:33:27','Full OpenOpcUa codebase 1.0.4.4',NULL),(185,24,'Version','changelog1.0.4.4.txt','161012133403_changelog1.0.4.4.txt',832,'text/plain','4d6f08dcd6837382f2e6b31a97072042',15,1,'2016-10-12 13:34:03','1.0.4.4 Change log',NULL),(186,25,'Version','Projet 2016-V1.1 MC.docx','161012144014_bba42e72e7d893540c8fbb48e598ab26.docx',127777,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','e68dc6d193904ceda8b6a1974f846a30',8,1,'2016-10-12 14:40:14','',NULL),(187,19,'Version','VpiUaClntDemo.zip','161017162851_VpiUaClntDemo.zip',2727191,'application/x-zip-compressed','52d445a0141a14f6cdb95b6e6189a04b',3,1,'2016-10-17 16:28:51','The demo',NULL),(188,19,'Version','HowToUseTheDemo.txt','161017162903_HowToUseTheDemo.txt',640,'text/plain','00e9bac050a56ecbfad7e4b31ee7f797',4,1,'2016-10-17 16:29:03','',NULL),(189,26,'Version','VpiUaClntDemo.zip','161017163032_VpiUaClntDemo.zip',2727191,'application/x-zip-compressed','52d445a0141a14f6cdb95b6e6189a04b',5,1,'2016-10-17 16:30:32','',NULL),(190,26,'Version','HowToUseTheDemo.txt','161017163044_HowToUseTheDemo.txt',640,'text/plain','00e9bac050a56ecbfad7e4b31ee7f797',9,1,'2016-10-17 16:30:44','',NULL),(191,19,'Version','UAFlexClient_Beta1.zip','161024113503_UAFlexClient_Beta1.zip',9008636,'application/x-zip-compressed','1f2b3fd221a76c2fdeb26b7c300f29ea',2,1,'2016-10-24 11:35:04','Client OPC UA',NULL),(194,21,'Version','snap7.dll','161027145330_snap7.dll',222208,'application/octet-stream','a39ebdfb6b4fe26e3b66cfad33ba7680',2,1,'2016-10-27 14:53:30','',NULL),(196,22,'Version','CooperlBox_S7_Beta04_Readme.txt','161028092840_CooperlBox_S7_Beta04_Readme.txt',724,'text/plain','317ca57985ac068c8cbd9271361dbd56',5,1,'2016-10-28 09:28:40','Beta404 demo - Readme',NULL),(198,11,'Version','OpenOpcUaClientConfig.xsd','161103141842_OpenOpcUaClientConfig.xsd',2361,'application/xml','c5e18a4aaeb230fac3219f16ac0a611d',21,1,'2016-11-03 14:18:42','Xml schema for OpenOpcUaClientLibrary',NULL),(199,23,'Version','wireshark_capture.pcapng','161104095617_wireshark_capture.pcapng',26584,'application/x-pcapng','57ee01fb8d2fdde89855a59f13717b81',1,268,'2016-11-04 09:56:17','Capture Wireshark des appels REST (GET et POST)',NULL),(201,23,'Version','VillePoissin.png','161104102342_VillePoissin.png',63134,'image/png','279c2ec523b116c4a31792b257fddf37',2,268,'2016-11-04 10:23:42','Schéma architecture REST actuelle avec librairie Java Mocka7',NULL),(202,50,'Project','1756-pm020_-en-p.pdf','161104152701_1756-pm020_-en-p.pdf',1523526,'application/pdf','10fae8de034788a70232bbd4d84349f8',1,1,'2016-11-04 15:27:01','Logix5000 Data Access',NULL),(203,50,'Project','CIP Vol1_3.3.pdf','161104152739_9c35ac3b5c6ae88d8490ce57853312c0.pdf',6132245,'application/pdf','720c447449314637a8904e28d7b74023',1,1,'2016-11-04 15:27:40','THE CIP NETWORKS LIBRARY - CIP Vol1',NULL),(204,50,'Project','CIP Vol2_1.4.pdf','161104152759_9edcf661e1e9046a844a9a9b70854e99.pdf',1372739,'application/pdf','01b91bce5fe659a561582c8ba156d984',1,1,'2016-11-04 15:27:59','THE CIP NETWORKS LIBRARY - CIP Vol2',NULL),(205,27,'Version','DemoEtherNet-Ip_Beta01.zip','161107031117_DemoEtherNet-Ip_Beta01.zip',2688537,'application/x-zip-compressed','7fdb22fca65b1f284997a2c804f6ec04',1,1,'2016-11-07 03:11:17','Demo Ethernet/Ip first beta',NULL),(206,27,'Version','DemoEtherNet-Ip_Beta02.zip','161107155030_DemoEtherNet-Ip_Beta02.zip',2695306,'application/x-zip-compressed','c442a5a6ba7f53ba0dc907d1ab9b4781',1,1,'2016-11-07 15:50:30','Demo VpiEthernet/Ip Beta02',NULL),(207,27,'Version','DemoEthIp-L32E_Release.xml','161107160602_DemoEthIp-L32E_Release.xml',851,'text/xml','950db425f56b2ea06fef1fb98f9f50c3',1,1,'2016-11-07 16:06:02','Host independent file',NULL),(208,28,'Version','Manuel de l_utilisateur-v0.8.pdf','161107160647_05474c790463251826610e6d4fa1c59c.pdf',1320074,'application/pdf','df67c66e09c14325088eac974dd1275f',1,1,'2016-11-07 16:06:47','',NULL),(209,28,'Version','ChangeLog 1.0.0.1.txt','161107161317_fddc628fa22acde8407b3cb649d06cda.txt',283,'text/plain','3411bee3c1934c1a724eaf49b12d4c4a',1,1,'2016-11-07 16:13:17','',NULL),(210,30,'Version','Projet TIAMA OPC-233-0107-16-V1-5.docx','161116152626_88af67f9e65dfb2dfb5e40a2b837b17b.docx',661502,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','a09e4de6f18bc601250d15660f3454a8',3,1,'2016-11-16 15:26:26','',NULL),(214,17,'Version','OpenOpcUa64bitBinaries-Beta2.zip','161117134825_OpenOpcUa64bitBinaries-Beta2.zip',2735707,'application/x-zip-compressed','340c1aded38494ebcab64530bcfab3dd',4,1,'2016-11-17 13:48:26','Demo 64bits Release and debug',NULL),(215,31,'Version','uaexpert-bin-win32-x86-vs2008sp1-v1.3.0-201.zip','161117171337_uaexpert-bin-win32-x86-vs2008sp1-v1.3.0-201.zip',10994996,'application/x-zip-compressed','7c49b134842818b1e1a8372feac0c4bd',1,1,'2016-11-17 17:13:38','UA Expert Windows',NULL),(216,102,'Issue','Test_unitaires_variables.xlsx','161123144350_Test_unitaires_variables.xlsx',19779,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','d436830ea71a28b6f412fd876857ac2a',0,287,'2016-11-23 14:43:50','Test unitaires variables OPC',NULL),(217,103,'Issue','FromUAFlex.png','161123152041_FromUAFlex.png',67236,'image/png','5cfb265c8c33b9abc35f74b8a485502f',0,1,'2016-11-23 15:20:41','UAFlex',NULL),(218,103,'Issue','FromUAExpert.png','161123152041_FromUAExpert.png',41472,'image/png','f700df3242e1109513acb7e5fbf06d8f',0,1,'2016-11-23 15:20:41','UAExpert',NULL),(219,104,'Issue','OpenOpcUa64Bits.png','161125112947_OpenOpcUa64Bits.png',113675,'image/png','3fcbc377c5618039cab7337e16fb2b20',0,254,'2016-11-25 11:29:47','',NULL),(221,91,'Issue','OpenOpcUaCoreServer.log','161128102429_OpenOpcUaCoreServer.log',4512,'application/octet-stream','a486a85b5985631d3adf1f356d02a46d',0,254,'2016-11-28 10:24:29','',NULL),(222,91,'Issue','VPIMdbMaster00200.log','161128102429_VPIMdbMaster00200.log',750,'application/octet-stream','16d0915df7a373b0940bea1e213842e4',0,254,'2016-11-28 10:24:30','',NULL),(225,91,'Issue','VPIMdbString0.png','161128175035_VPIMdbString0.png',39975,'image/png','c26284b5448251f7fb1940469da99f90',0,254,'2016-11-28 17:50:35','',NULL),(226,91,'Issue','VPIMdbString1.png','161128175035_VPIMdbString1.png',87764,'image/png','ef9c9e73592b2442d7bf92164b7dbb79',0,254,'2016-11-28 17:50:35','',NULL),(228,25,'Version','CooperlBox - S7 -30-11-2016.zip','161130151059_32a8fd4456ab9c78ac115702454a4e34.zip',2785225,'application/x-zip-compressed','6f549d25207ea552e2184fe0ddccced5',1,1,'2016-11-30 15:11:00','',NULL),(229,11,'Version','Manuel de l_utilisateur-v0.9.pdf','161130174211_87d0f8b4b7aa006037e324f9f05149c7.pdf',1600686,'application/pdf','66e3b480a634cdcea637adef2dba8930',28,1,'2016-11-30 17:42:12','',NULL),(230,27,'Version','DemoEthernetIp-RC01.zip','161202163124_DemoEthernetIp-RC01.zip',2715112,'application/x-zip-compressed','c07264f7197858909b736a1eeb073593',1,1,'2016-12-02 16:31:24','VpiEthernet/Ip Release Candidate 1',NULL),(231,106,'Issue','Ecriture String(Filtre).pcapng','161207115426_d36cb1b5934af1410e64bdb4c31408e3.pcapng',596,'application/octet-stream','7c2905829ff45e776ce067c2c5dc2f7e',0,269,'2016-12-07 11:54:26','',NULL),(232,107,'Issue','09-03-01-NTE001-A-Test_OpcUaServer_VpiEth15000.docx','161208161614_09-03-01-NTE001-A-Test_OpcUaServer_VpiEth15000.docx',77114,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','b807d8748fcf9c53f8affe23c8f909a0',0,287,'2016-12-08 16:16:14','',NULL),(234,27,'Version','DemoEthernetIp-RC02.zip','161214181550_DemoEthernetIp-RC02.zip',2720588,'application/x-zip-compressed','d2cd834ebac2d5adb3f1596ee3399e01',2,1,'2016-12-14 18:15:50','',NULL),(236,28,'Version','Manuel de l_utilisateur - VpiEthIp.pdf','161214195521_a669fbc37b0fb703bd4eaa3945d52465.pdf',1432694,'application/pdf','90a9d63ccf7a3bbafdd8571ed959ba69',1,1,'2016-12-14 19:55:21','',NULL),(237,32,'Version','OpenOpcUa_1_0_4_6.zip','161219104117_OpenOpcUa_1_0_4_6.zip',13924105,'application/x-zip-compressed','505f82db5d62046dff53a788d594ceb5',49,1,'2016-12-19 10:41:18','Full OpenOpcUa codebase 1.0.4.6',NULL),(238,32,'Version','changelog1.0.4.6.txt','161219104739_changelog1.0.4.6.txt',1763,'text/plain','dd64da51411862e072db1dc49b44c26f',18,1,'2016-12-19 10:47:39','',NULL),(239,33,'Version','Opc.Ua.Types.xsd','161219175646_Opc.Ua.Types.xsd',205731,'application/xml','6921c698bd57c6cad68b60a0b48a20f3',20,1,'2016-12-19 17:56:46','',NULL),(240,33,'Version','ServerConfig.xsd','161219180338_ServerConfig.xsd',6110,'application/xml','6a72c3d2097bfe9d505cbc11d7f7023e',21,1,'2016-12-19 18:03:38','',NULL),(241,33,'Version','SubSystem.xsd','161219180357_SubSystem.xsd',3944,'application/xml','380b38da03b71475347259b7c60142a2',16,1,'2016-12-19 18:03:57','',NULL),(242,33,'Version','UANodeSet.xsd','161219180412_UANodeSet.xsd',17812,'application/xml','4bc2c070a744116fc1f180f89a968bb4',18,1,'2016-12-19 18:04:12','',NULL),(243,33,'Version','UASimulation.xsd','161219180426_UASimulation.xsd',1804,'application/xml','21e476d2481fa3343ae4d5b4685ca62c',22,1,'2016-12-19 18:04:26','',NULL),(244,32,'Version','OpenOpcUa_1_0_4_6_NOBIN.zip','161220091850_OpenOpcUa_1_0_4_6_NOBIN.zip',6058464,'application/x-zip-compressed','22fb184494dcbef94c69ca84c7937b26',163,1,'2016-12-20 09:18:50','1.0.4.6 no binaries',NULL),(245,34,'Version','OpcUa_1.02_Net_Sdk.zip','161220102013_OpcUa_1.02_Net_Sdk.zip',11554150,'application/x-zip-compressed','a33f1e6f2656f4f194476c022fc54a69',1,1,'2016-12-20 10:20:13','',NULL),(246,112,'Issue','v1.0.4.6.zip','161221180957_v1.0.4.6.zip',2275,'application/x-zip-compressed','a3a6255929e6c08e4ab456f854dca6a3',0,283,'2016-12-21 18:09:57','',NULL),(247,27,'Version','EthIp-Binairies.zip','170116083039_EthIp-Binairies.zip',167298,'application/x-zip-compressed','74b32eb1068692705e32c7e900a4d045',1,1,'2017-01-16 08:30:39','',NULL),(248,27,'Version','VpiEthIp_1.0.0.4.zip','170116163036_VpiEthIp_1.0.0.4.zip',120620,'application/x-zip-compressed','c8b23a3bfd9e6df9b71e8d3eb5d7997d',1,1,'2017-01-16 16:30:36','',NULL),(249,27,'Version','VpiEthIp_1.0.0.5.zip','170117104639_VpiEthIp_1.0.0.5.zip',120705,'application/x-zip-compressed','6f35b1bae3e9eebb98436648f2377d28',1,1,'2017-01-17 10:46:39','',NULL),(250,27,'Version','VpiEthIp_1.0.0.6.zip','170117122215_VpiEthIp_1.0.0.6.zip',120992,'application/x-zip-compressed','b587aa36e5e2e88bdccb13b42ea016f0',1,1,'2017-01-17 12:22:15','',NULL),(251,25,'Version','Demo.tar.gz','170131144248_Demo.tar.gz',5278893,'application/x-gzip','83bae110fff6e4d92bd6a3b1d5e578f6',1,1,'2017-01-31 14:42:48','Demo Moxa',NULL),(252,115,'Issue','CompleteNodeIdToString.zip','170202210821_CompleteNodeIdToString.zip',1696,'application/x-zip-compressed','f4f842f26c5b11fa8f293c420834390f',0,283,'2017-02-02 21:08:21','',NULL),(253,115,'Issue','OpenOpcUaClientLib.cpp','170203134548_OpenOpcUaClientLib.cpp',104256,'text/plain','66c278c85cdf13cd3aa9783754107ebe',0,283,'2017-02-03 13:45:48','',NULL),(255,22,'Version','PacketSenderPortable_2016-07-23.zip','170216223550_PacketSenderPortable_2016-07-23.zip',19408902,'application/x-zip-compressed','c01f33fe84a79e4613e7f29fc131909b',1,1,'2017-02-16 22:35:51','',NULL),(256,22,'Version','Test VpiCooperl 1.0.0.5.xlsx','170216224213_73ce2b57781a3d3d0fbb9f8bb80790f4.xlsx',9410,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','77a75060007c0d19837589c973af876a',1,1,'2017-02-16 22:42:13','',NULL),(258,22,'Version','VpiCooperl_SimpleType_export.ini','170216225722_VpiCooperl_SimpleType_export.ini',7730,'application/octet-stream','5b38fbd867a61531ebddc8a448eea8d7',2,1,'2017-02-16 22:57:22','',NULL),(259,22,'Version','CooperlBox_1_0_0_5.zip','170217002501_CooperlBox_1_0_0_5.zip',1983305,'application/x-zip-compressed','43d2a042ba60a06338c85fd8f611b5d9',2,1,'2017-02-17 00:25:01','',NULL),(260,22,'Version','ChangeLog_1_0_0_5.txt','170217002527_ChangeLog_1_0_0_5.txt',1956,'text/plain','18c1e5aab7de110419e9917537ed9815',4,1,'2017-02-17 00:25:27','',NULL),(261,27,'Version','DemoEthIp-L36ERM.zip','170217112943_DemoEthIp-L36ERM.zip',2664500,'application/x-zip-compressed','b05a13467a44137446d64bde93bac051',1,1,'2017-02-17 11:29:43','',NULL),(262,18,'Version','TestModbus_1_0_1_0-27-02-2017.zip','170227132612_TestModbus_1_0_1_0-27-02-2017.zip',2628191,'application/x-zip-compressed','aa3b8972c32e5ef5224edcab13cc7539',2,1,'2017-02-27 13:26:13','',NULL),(263,27,'Version','DemoEthIp-L36ERM-20-03-2017.zip','170320181255_DemoEthIp-L36ERM-20-03-2017.zip',3895362,'application/x-zip-compressed','1d0380ae5048d97d6164912fac42f0b9',1,1,'2017-03-20 18:12:55','',NULL),(264,28,'Version','Manuel de l_utilisateur - VpiEthIp.pdf','170320200920_a669fbc37b0fb703bd4eaa3945d52465.pdf',1433253,'application/pdf','d15b07760bca70ab2283d802f701658c',1,1,'2017-03-20 20:09:20','1.0.1',NULL),(267,36,'Version','Demo27-03-2017.zip','170327184145_Demo27-03-2017.zip',171968,'application/x-zip-compressed','4f2a671a3199db73a40f435343c48998',3,1,'2017-03-27 18:41:45','',NULL),(268,37,'Version','OpenOpcUa_1_0_4_7.zip','170403181451_OpenOpcUa_1_0_4_7.zip',14823966,'application/x-zip-compressed','9f5a1e86f97cfea1372b6494cb4c15fb',17,1,'2017-04-03 18:14:52','',NULL),(269,37,'Version','changelog1.0.4.7.txt','170403181647_changelog1.0.4.7.txt',2400,'text/plain','3b80ed4359799f09a31348f504f82e92',13,1,'2017-04-03 18:16:47','',NULL),(270,38,'Version','Manuel de l_utilisateur-v0.9.pdf','170405135521_87d0f8b4b7aa006037e324f9f05149c7.pdf',1600686,'application/pdf','66e3b480a634cdcea637adef2dba8930',5,1,'2017-04-05 13:55:21','',NULL),(271,38,'Version','opc.ua.cnc.nodeset.xml','170405135618_opc.ua.cnc.nodeset.xml',761945,'text/xml','107527f1a0fa9f9fc9945564dc128287',4,1,'2017-04-05 13:56:18','',NULL),(272,41,'Version','UANodeManager.zip','170405142107_UANodeManager.zip',402476,'application/x-zip-compressed','9356259d7f59b9e4bf4699f7f487d3cb',2,1,'2017-04-05 14:21:07','',NULL),(274,25,'Version','Projet 2016-V1.3 MC.docx','170414094814_634282c525989a5ee752bcfe5f127bb7.docx',255979,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','a00373821352703df3e6d93c8d333d07',3,1,'2017-04-14 09:48:14','',NULL),(275,22,'Version','CooperlBox_1_0_0_6.zip','170414095230_CooperlBox_1_0_0_6.zip',1530083,'application/x-zip-compressed','84b3c33b36fb5dfe09145c5a37ab53a8',3,1,'2017-04-14 09:52:30','',NULL),(276,22,'Version','ChangeLog_1_0_0_6.txt','170414095647_ChangeLog_1_0_0_6.txt',511,'text/plain','a46c01866f1ca8f4ba8da7913a2c53d9',2,1,'2017-04-14 09:56:47','',NULL),(278,40,'Version','Reflexion 18-04-2017.pptx','170418094608_b79e2c2a09bf531b801e73c57a804f7e.pptx',42883,'application/vnd.openxmlformats-officedocument.presentationml.presentation','757ec6a6854608dcd51d9419560c0ed3',2,1,'2017-04-18 09:46:08','',NULL),(280,40,'Version','2017-05-03 10.02 Prosyst_OpenOpcUa.mp4','170503103156_1da5dbbf8b2b8c5fe0dc233ff2aa94de.mp4',28231925,'video/mp4','05084758922ba2795cb765c1bd8a731e',1,1,'2017-05-03 10:31:57','',NULL),(281,42,'Version','2017-05-03 11.00 Tiama_OpenOpcUa.7z.001','170503152412_0be1e43ac52cf9eefdbdac161949ec95.001',75000000,'application/octet-stream','6d2dac3ba6fb32c662d243bd6099d07e',3,1,'2017-05-03 15:24:14','',NULL),(282,42,'Version','2017-05-03 11.00 Tiama_OpenOpcUa.7z.002','170503153216_24ae72305287bd0d8d80d11c2782bbcf.002',41221949,'application/octet-stream','0d1726c81f3e6ea6943269e7e954f5a7',1,1,'2017-05-03 15:32:21','',NULL),(283,41,'Version','OpcUa_1.02_Net_Sdk.zip','170504174450_OpcUa_1.02_Net_Sdk.zip',11554150,'application/x-zip-compressed','a33f1e6f2656f4f194476c022fc54a69',5,1,'2017-05-04 17:44:50','',NULL),(285,42,'Version','2017-05-17 11.07 Tiama_OpenOpcUa.7z.001','170517130623_b40c49bc5a59575ae89ee2936d41e283.001',78643200,'application/octet-stream','66864ab4e456c4fb3d003782265c8e01',1,1,'2017-05-17 13:06:28','',NULL),(286,42,'Version','2017-05-17 11.07 Tiama_OpenOpcUa.7z.002','170517130803_0e4e0ee1a94ff2101d08d0c6204c25ca.002',5841216,'application/octet-stream','59f65904dc6dea09c884474e79ee8f81',1,1,'2017-05-17 13:08:03','',NULL),(287,39,'Version','OPCUA-NET_1.02.zip','170518151400_OPCUA-NET_1.02.zip',1425147,'application/x-zip-compressed','f9fd18f4e842ac7bf88cde031b17e606',3,1,'2017-05-18 15:14:00','',NULL),(289,43,'Version','2017-05-18 14.42 Prosyst_OpenOpcUa.7z.001','170518171819_a834c00ab087210ab811617c0aba5f69.001',89128960,'application/octet-stream','a6f476e23496edf4e0c2907f2cc4860d',0,1,'2017-05-18 17:18:21','',NULL),(290,43,'Version','2017-05-18 14.42 Prosyst_OpenOpcUa.7z.002','170518172137_ce30d6b9274f5a2fcc95f5fc4c1c745e.002',54070919,'application/octet-stream','ac12f07dfcece079988aa408ef0c08ff',1,1,'2017-05-18 17:21:38','',NULL),(294,11,'Version','EmptyImportNode_V0.1.xlsx','170530103624_EmptyImportNode_V0.1.xlsx',8898,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','0b72994d9ff0505d224c2d3431d591d1',13,1,'2017-05-30 10:36:24','',NULL),(295,39,'Version','OpenSSL_Debug_1.0.2d.zip','170530150132_OpenSSL_Debug_1.0.2d.zip',2544067,'application/x-zip-compressed','4e8f8728172e2db18f1e4736a6084710',0,1,'2017-05-30 15:01:33','',NULL),(297,43,'Version','2017-05-31 14.01 Prosyst_OpenOpcUa.7z','170531170947_5a2ae4b6623b696ee15d2ba8b235fddf.7z',49070234,'application/octet-stream','b00a4ab252a6592188dc1b16ac30f418',0,1,'2017-05-31 17:09:49','',NULL),(302,22,'Version','VpiCooperl.dll','170608143652_VpiCooperl.dll',38400,'application/octet-stream','24994bedb5bd7a4e3a8f1742f511f985',2,1,'2017-06-08 14:36:52','',NULL),(303,21,'Version','VPIS7.dll','170608143847_VPIS7.dll',26112,'application/octet-stream','e8edff9cf3c0cadef711efb82f8a8ebc',1,1,'2017-06-08 14:38:47','',NULL),(305,91,'Issue','OpenOPCUA.zip','170612111604_OpenOPCUA.zip',1579003,'application/x-zip-compressed','b8688b7ffc56fecf5d0cb6729594a588',0,254,'2017-06-12 11:16:04','',NULL),(307,22,'Version','Test VpiCooperl 1.0.0.7(cooperl).xlsx','170612145432_2283b1623ea8ad3da8adde34d3e40b53.xlsx',6661,'application/octet-stream','72754e1c1dfd1c5f3a8eab1f0d0da059',0,269,'2017-06-12 14:54:32','',NULL),(308,44,'Version','SSI-12-06-2017.zip','170612151130_SSI-12-06-2017.zip',2949516,'application/x-zip-compressed','45d8a4909800ece56596f9da050ef6b6',3,1,'2017-06-12 15:11:30','',NULL),(309,45,'Version','AddressSpace.pptx','170612151306_AddressSpace.pptx',49130,'application/vnd.openxmlformats-officedocument.presentationml.presentation','23d73f89e33416d41864736729dddee9',3,1,'2017-06-12 15:13:06','',NULL),(310,44,'Version','SSI-Full-V1.0-12-06-2017.zip','170612200940_SSI-Full-V1.0-12-06-2017.zip',2630005,'application/x-zip-compressed','ecd92f81dfe494bf2a7f23f71e085598',4,1,'2017-06-12 20:09:40','',NULL),(313,47,'Version','CooperlBoxMoxa.zip','170614015414_CooperlBoxMoxa.zip',5629651,'application/x-zip-compressed','17ad23f1a982afcb9fa0e9b12e1f2bfa',1,1,'2017-06-14 01:54:14','',NULL),(314,47,'Version','CooperlBoxMoxa - ReadMe.txt','170614015427_ddcfd5217ee3c1475473e3dce4a52402.txt',625,'text/plain','b1fbe80debbb2427ed589b289a17e5e8',1,1,'2017-06-14 01:54:27','',NULL),(315,27,'Version','BinaireVpiEthIp.zip','170614095945_BinaireVpiEthIp.zip',1419226,'application/x-zip-compressed','f495715e9e5380d52c5c549495081025',1,1,'2017-06-14 09:59:45','',NULL),(319,48,'Version','Manuel de l_utilisateur-v0.95.pdf','170620092503_a7e92ae6fd399e5b61f651f865db667a.pdf',1600793,'application/pdf','1b0cbba785c3177f0a2a218f44b978a5',3,1,'2017-06-20 09:25:03','',NULL),(320,48,'Version','OPC UA Part 3 - Address Space Model 1.03 Specification.pdf','170620103850_2ffc44420c4e5ab52fdbaad07652b707.pdf',2107930,'application/pdf','ecf1be1f86fddeb11450f6c6dff59f2b',1,1,'2017-06-20 10:38:50','',NULL),(321,48,'Version','OPC UA Part 4 - Services 1.03 Specification.pdf','170620103910_0840cbd21ed0e60549ed9f3a6c7247c9.pdf',3880874,'application/pdf','3bcc82e5383c3c239d838a14ce3bf6ca',0,1,'2017-06-20 10:39:10','',NULL),(322,48,'Version','OPC UA Part 5 - Information Model 1.03 Specification.pdf','170620103928_6fe1613d9b255343335d12afde87663f.pdf',2826783,'application/pdf','a1af66c07889d5693a55f5a603d6d6fd',0,1,'2017-06-20 10:39:28','',NULL),(323,48,'Version','OPC UA Part 6 - Mappings 1.03 Specification.pdf','170620104000_c4f0bd775632348b47fa905148257b35.pdf',1772838,'application/pdf','7fe35d015c91cc8b94146058cbbe7533',0,1,'2017-06-20 10:40:00','',NULL),(324,48,'Version','OPC UA Part 9 - Alarms and Conditions 1.03 Specification.pdf','170620104021_1fc357862b1cb6c3227553341e6bf819.pdf',1882017,'application/pdf','f30b0182ac5456caff95a58822e03d1b',0,1,'2017-06-20 10:40:21','',NULL),(325,48,'Version','OPC UA Part 11 - Historical Access 1.03 Specification.pdf','170620104038_8f1e686c1159725b0a50df520c6d7f1e.pdf',1242060,'application/pdf','7917a40ee9fa2d004edacbb0b89c7d0c',1,1,'2017-06-20 10:40:39','',NULL),(326,50,'Version','Opc.Ua.NodeSet2.Part3.xml','170620104142_Opc.Ua.NodeSet2.Part3.xml',75112,'text/xml','909d4920cbd5631adf5b058ebbd3094d',3,1,'2017-06-20 10:41:42','',NULL),(327,50,'Version','Opc.Ua.NodeSet2.Part4.xml','170620104155_Opc.Ua.NodeSet2.Part4.xml',112859,'text/xml','86b1c7dab7a60f0056ce8adb055f938f',4,1,'2017-06-20 10:41:55','',NULL),(328,50,'Version','Opc.Ua.NodeSet2.Part5.xml','170620104219_Opc.Ua.NodeSet2.Part5.xml',1084467,'text/xml','3d968d726fa0864930b6218cec1d79e9',3,1,'2017-06-20 10:42:19','',NULL),(329,50,'Version','Opc.Ua.NodeSet2.Part8.xml','170620104232_Opc.Ua.NodeSet2.Part8.xml',25381,'text/xml','06c2adb69b27ae971f7b7eebb569e396',5,1,'2017-06-20 10:42:32','',NULL),(330,50,'Version','Opc.Ua.NodeSet2.Part11.xml','170620104246_Opc.Ua.NodeSet2.Part11.xml',40354,'text/xml','6064d15a5301adef7f6708f63d6606c6',3,1,'2017-06-20 10:42:46','',NULL),(331,50,'Version','Opc.Ua.NodeSet2.Part13.xml','170620104258_Opc.Ua.NodeSet2.Part13.xml',18216,'text/xml','7e7617b864f65abe99384093bb0c6121',6,1,'2017-06-20 10:42:58','',NULL),(332,50,'Version','UANodeSet.xsd','170620104315_UANodeSet.xsd',17812,'application/xml','4bc2c070a744116fc1f180f89a968bb4',1,1,'2017-06-20 10:43:15','',NULL),(333,50,'Version','Opc.Ua.NodeSet2.Part9.xml','170620104335_Opc.Ua.NodeSet2.Part9.xml',113722,'text/xml','f0ce8679399f15f4bf56e3f4ec00c370',3,1,'2017-06-20 10:43:35','',NULL),(335,45,'Version','CONC SSI V2 Annexe 1_F_MC-21-6-2017.docx','170621192343_55848cea5a86f00732f5327e551b1437.docx',540282,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','fe9779644867b88ebb42aef363ef30c3',2,1,'2017-06-21 19:23:43','',NULL),(336,51,'Version','OpcUa_1.02_Net_Sdk.zip','170622110709_OpcUa_1.02_Net_Sdk.zip',11554150,'application/x-zip-compressed','a33f1e6f2656f4f194476c022fc54a69',5,1,'2017-06-22 11:07:10','',NULL),(338,48,'Version','DLLComFanuc_eng.pdf','170623140851_DLLComFanuc_eng.pdf',213583,'application/pdf','73703c0ae521ee57016e7e9eaeaa28eb',2,318,'2017-06-23 14:08:51','DLL de com Robot Fanuc',NULL),(339,45,'Version','CONC SSI V2 Annexe 1_F_MC-25-6-2017.docx','170626002822_6add66aefb1ebf88a2449faa58fd80e4.docx',541467,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','c1ef19faa6692aa3a336bad90adfe4b1',9,1,'2017-06-26 00:28:22','',NULL),(340,44,'Version','SSI-Full-V1.1 26-06-2017.zip','170626100025_cc5f4ff92dcb4ec18dae9658ed6f3a11.zip',2828759,'application/x-zip-compressed','506d1bed701e7390b27214adc71ac68f',5,1,'2017-06-26 10:00:25','',NULL),(341,45,'Version','Types SSI - Annexe F.zip','170626123430_def494a37b87e335941537bbd5701205.zip',12570,'application/x-zip-compressed','861106e1d60906bf5ed44d842a16373e',8,1,'2017-06-26 12:34:30','',NULL),(342,44,'Version','Simulation P2.zip','170626123504_f0c5e4febdbe8a4d0c6a81e2f0be21d5.zip',1639662,'application/x-zip-compressed','d8fc2ab888e8fb08559b24c2e63d20f7',1,1,'2017-06-26 12:35:05','',NULL),(343,48,'Version','ArchitectureStandardAutomatisme.pptx','170626135622_ArchitectureStandardAutomatisme.pptx',663220,'application/vnd.openxmlformats-officedocument.presentationml.presentation','f286886a6a542e24f8664a60d75aebbd',4,318,'2017-06-26 13:56:22','Architecture standard d\'une installation d\'automatisme Usine de Carrosserie Montage',NULL),(344,48,'Version','Manuel de l_utilisateur - VpiMdbMaster.pdf','170627213321_63a45e95ce95c2eca90b4132e9b90777.pdf',1366407,'application/pdf','097fab151d94ccbb257299e965616760',2,1,'2017-06-27 21:33:21','',NULL),(345,48,'Version','OPCUA-BSI Analysis.pdf','170627221954_60662c2e4a0345c445c2f1005f21bada.pdf',1785646,'application/pdf','9e001ee8b1f2e169b82833f344c165ec',1,1,'2017-06-27 22:19:54','',NULL),(349,49,'Version','OpenOpcUa_Release-Win7.zip','170629172437_OpenOpcUa_Release-Win7.zip',1412408,'application/x-zip-compressed','5129376fd43898a83b43f347b6e47cea',2,1,'2017-06-29 17:24:37','',NULL),(353,48,'Version','UA-CCOM 3.vsdx','170703150059_7c2af20f8d80be130d20a507d91b35a2.vsdx',76612,'application/x-zip-compressed','a52fc3c753c6618b0d0856542d3321ef',6,1,'2017-07-03 15:00:59','',NULL),(354,49,'Version','OpenOpcUaCoreServerBinaries_1.0.5.0.zip','170705001031_OpenOpcUaCoreServerBinaries_1.0.5.0.zip',1371589,'application/x-zip-compressed','b5faca6b7db16223b4113bec0ef7aae5',2,1,'2017-07-05 00:10:31','',NULL),(356,128,'Issue','Test_Modbus.rar','170705091949_Test_Modbus.rar',2481,'application/octet-stream','b32169fa4372d8819e5eee26278c99b2',0,317,'2017-07-05 09:19:49','',NULL),(357,127,'Issue','Test_Modbus.rar','170705091949_Test_Modbus.rar',2481,'application/octet-stream','b32169fa4372d8819e5eee26278c99b2',0,317,'2017-07-05 09:19:49','',NULL),(358,125,'Issue','TestModbus_JFD.zip','170705115818_TestModbus_JFD.zip',2641514,'application/x-zip-compressed','0ede28383a49cf72baa204d51c95a6b4',0,1,'2017-07-05 11:58:18','',NULL),(359,48,'Version','Presentation des Nodes disponibles.pptx','170711092618_ca7412a2ab6885d699d3ab013eac409a.pptx',370579,'application/vnd.openxmlformats-officedocument.presentationml.presentation','d35b122c79b727ccbdc8deb6dcb96e65',8,1,'2017-07-11 09:26:19','',NULL),(360,48,'Version','6369-sysml-un-langage-pour-la-modelisation-des-systemes-ens.docx','170711092707_6369-sysml-un-langage-pour-la-modelisation-des-systemes-ens.docx',519437,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','898ed07c7d4ca96d57588044043463cc',6,1,'2017-07-11 09:27:08','',NULL),(361,54,'Version','OpenOpcUa_1_0_5_0_Moxa.zip','170711142355_OpenOpcUa_1_0_5_0_Moxa.zip',26531099,'application/x-zip-compressed','e411014207b488808da8bce17c4ac6aa',4,1,'2017-07-11 14:23:56','',NULL),(362,14,'Version','UAFlexClient_Release_1.0.0.2.zip','170719003834_UAFlexClient_Release_1.0.0.2.zip',9459387,'application/x-zip-compressed','ef7de26bb4d2a66930ccf1e813afe108',8,1,'2017-07-19 00:38:34','Please provide feedback',NULL),(363,135,'Issue','AidiagNodeSet.rar','170719174857_AidiagNodeSet.rar',33481,'application/octet-stream','f413a4fdc61048d36d65f15fda4723e3',0,303,'2017-07-19 17:48:57','',NULL),(364,52,'Version','Demo_VpiUaClnt_19-7-2017.zip','170719180117_Demo_VpiUaClnt_19-7-2017.zip',2761756,'application/x-zip-compressed','b3e6c8934bd4a38978f7312c4db9ff67',1,1,'2017-07-19 18:01:17','',NULL),(365,135,'Issue','AidiagSubSystem001.rar','170720174828_AidiagSubSystem001.rar',27711,'application/octet-stream','59cdfdbd0e53b5420c96ef4890591a9c',0,303,'2017-07-20 17:48:28','',NULL),(366,136,'Issue','OPC_UA AGREGAT_V3.zip','170721144350_024c55edc2416bd5bd52df2108ead3dd.zip',8356354,'application/x-zip-compressed','b03d034377a58301f111f37d8b9cd5b2',0,319,'2017-07-21 14:43:50','',NULL),(367,45,'Version','AddressSpace-26-06-2017.pptx','170726101942_AddressSpace-26-06-2017.pptx',50041,'application/vnd.openxmlformats-officedocument.presentationml.presentation','8399f0f3e8169b512f829967cf26abe2',5,1,'2017-07-26 10:19:42','',NULL),(368,55,'Version','LuaDemo.zip','170727152758_LuaDemo.zip',2741160,'application/x-zip-compressed','0b07b5b42e675bbbea59f59e62e7d8d0',3,1,'2017-07-27 15:27:58','',NULL),(369,55,'Version','SSI-Full-V1.1 28-07-2017.zip','170728104050_4ad93f53c57303e51e3798a93f3a54ec.zip',2712781,'application/x-zip-compressed','d3d35ee00a22f1ec84e6dbf9a47005af',2,1,'2017-07-28 10:40:50','',NULL),(371,38,'Version','little-big-endian.pdf','170802174743_little-big-endian.pdf',61855,'application/pdf','f2456fa99eebe564d0310e8e95a52141',1,1,'2017-08-02 17:47:43','',NULL),(372,56,'Version','DemoModbus_Release_02-08-2017.zip','170802180135_DemoModbus_Release_02-08-2017.zip',1706671,'application/x-zip-compressed','c1bea89f15e066f9908205e50cbb8ed3',2,1,'2017-08-02 18:01:35','',NULL),(379,48,'Version','Presentation des Nodes disponibles V01.pptx','170808150305_22f552355a4902c7da2764b8e96410b2.pptx',2272807,'application/vnd.openxmlformats-officedocument.presentationml.presentation','ab2daa520141c7c196fe2bfc7c6cee65',11,1,'2017-08-08 15:03:06','',NULL),(382,140,'Issue','PAC SDK 930429.rar','170817192617_dc990cc07d2a862448ff24b4f659e5d4.rar',66803599,'application/octet-stream','65ebaa1a8f9c1622c9ef634dd8255208',0,325,'2017-08-17 19:26:19','',NULL),(383,52,'Version','OPC_UA IHMP.zip','170818211157_aaea930c0bc7a50ef824079bbbf9991a.zip',2966980,'application/x-zip-compressed','691e022a49432c0cdc7494ecacb7ea14',2,319,'2017-08-18 21:11:57','Essai avec image',NULL),(384,140,'Issue','BuildLog.htm','170819143610_BuildLog.htm',15948,'text/html','f1d56374d4d698c7d2e404ebe984a33f',0,325,'2017-08-19 14:36:10','',NULL),(385,52,'Version','ResultInUAExpert.png','170820220426_ResultInUAExpert.png',102094,'image/png','a59acbe46d41f2ce00974d868a33b8f3',8,1,'2017-08-20 22:04:26','',NULL),(386,49,'Version','OpenOpcUaCoreServer_1.0.5.1.zip','170821141057_OpenOpcUaCoreServer_1.0.5.1.zip',1374269,'application/x-zip-compressed','14b22c37ba145490d0519e60a182c777',4,1,'2017-08-21 14:10:57','',NULL),(387,142,'Issue','OPC UA Secure connecting (1).png','170829144423_83ca4b24a787631d8b1d43863812fa11.png',180380,'image/png','2a2459cedb6dbd4136a347b6d3198e56',0,325,'2017-08-29 14:44:23','',NULL),(388,142,'Issue','OPC UA Secure connecting (2).png','170829144423_6d7f6ad0697c2a8fa1507dd97eaf693a.png',130845,'image/png','ccad0efaad14d5875ca6cc0b1f2e9198',0,325,'2017-08-29 14:44:23','',NULL),(389,142,'Issue','OPC UA Secure connecting (3).png','170829144423_5eb324a404cee79fdd84bcdd074de0f0.png',124279,'image/png','68eadc8901e0cc445206551fe85c2dcd',0,325,'2017-08-29 14:44:23','',NULL),(390,142,'Issue','OPC UA Secure connecting (4).png','170829144423_2665a80b1a183e2ce10ceb2424890f1e.png',83382,'image/png','ef73f2ccf8e669421a8685e5d647b2d5',0,325,'2017-08-29 14:44:23','data is transferred in none encrypted mode',NULL),(391,59,'Version','ResolutionSpectra 01-09-2017.zip','170901105641_52a14fe2675470261302effa5d24f4f5.zip',2931308,'application/x-zip-compressed','dedc55359afb0dbea4d74902d92458e6',2,1,'2017-09-01 10:56:41','',NULL),(394,59,'Version','ResolutionSpectra 6-9-2017.zip','170906085450_a742d40f8244b929a6a6aa4b9bfe37b0.zip',3397263,'application/x-zip-compressed','7bf5bf4626540871e7c4c1ee304c9f83',2,1,'2017-09-06 08:54:51','',NULL),(409,143,'Issue','OPC_UA_test.zip','170912100908_OPC_UA_test.zip',1651622,'application/x-zip-compressed','c5a5a8d5c576e0d86d7586aab321b7bf',0,304,'2017-09-12 10:09:08','',NULL),(413,61,'Version','OpenOpcUa_DirectAccess.zip','170913094642_OpenOpcUa_DirectAccess.zip',141048,'application/x-zip-compressed','0f3599dd0a30854eaff8d11d964b6829',3,1,'2017-09-13 09:46:42','',NULL),(414,143,'Issue','s.png','170915103248_s.png',142715,'image/png','2b84abc0b8146be9a0926fbdfe2a8b17',0,304,'2017-09-15 10:32:50','copie d\'écran',NULL),(415,143,'Issue','test1.rar','170915103251_test1.rar',18753748,'application/octet-stream','0cb6c9d8d5777301adc9893311765b72',0,304,'2017-09-15 10:32:52','TestEmpty et TestDouble',NULL),(418,64,'Version','2017-09-20 09.51 RS_OpenOpcUa.7z.001','170920124159_35b476a29c5e745faaa9369853586163.001',85000000,'application/octet-stream','058c3e8c4c2fa9a4eaa469ddf7611be2',6,1,'2017-09-20 12:42:02','',NULL),(419,64,'Version','2017-09-20 09.51 RS_OpenOpcUa.7z.002','170920124244_0970d7f434553823557abb4f6434fa77.002',62920932,'application/octet-stream','09933cb5067ab653bea7fe4e371ab816',2,1,'2017-09-20 12:42:48','',NULL),(420,38,'Version','Analyse UAClientLib.docx','170920151855_6dbb5d32614ea5279697492b700afbd0.docx',171039,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','b575e8b5fb9bf630e5a5a7ec5094e903',0,1,'2017-09-20 15:18:55','',NULL),(422,48,'Version','Point Hebdo 4CE.xlsx','170922134815_903630821f1151395c018b6f0872ce16.xlsx',20871,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','0df59336dd0fe16de03127c118cd58cb',2,317,'2017-09-22 13:48:15','',NULL),(428,48,'Version','Point Hebdo 4CE.xlsx','170925155207_903630821f1151395c018b6f0872ce16.xlsx',21671,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','248a6f02875c51255962c3bb497bcae4',1,317,'2017-09-25 15:52:07','',NULL),(429,11,'Version','UNECE_to_OPCUA.xlsx','170927114419_UNECE_to_OPCUA.xlsx',64508,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','b7e3e6f1921430b6cce52b344bd4e6f4',12,1,'2017-09-27 11:44:19','',NULL),(431,48,'Version','UNECE_to_OPCUA.xlsx','170927115125_UNECE_to_OPCUA.xlsx',64508,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','b7e3e6f1921430b6cce52b344bd4e6f4',4,1,'2017-09-27 11:51:25','',NULL),(432,41,'Version','OpenOpcUa_1_0_5_1_Beta2.zip','170927145529_OpenOpcUa_1_0_5_1_Beta2.zip',14879317,'application/x-zip-compressed','4b5519c592f2e732b63c7527de8e79e4',2,1,'2017-09-27 14:55:29','',NULL),(434,41,'Version','PieceOfCode-27-09.cpp','170927151459_PieceOfCode-27-09.cpp',4271,'text/plain','015eb3124c053334b57419197827066f',1,1,'2017-09-27 15:14:59','',NULL),(436,147,'Issue','ce.png','170927175151_ce.png',96035,'image/png','7c0a7ff3011b3a0404244c876db22ec2',0,304,'2017-09-27 17:51:51','',NULL),(437,147,'Issue','Opc.Ua.NodeSet2.AnalogItem.xml','170927175152_Opc.Ua.NodeSet2.AnalogItem.xml',5225,'text/xml','321b69957c1f3d8fa43b723686c76a2c',0,304,'2017-09-27 17:51:52','',NULL),(438,42,'Version','BrainStorming 28-9.pptx','170928172513_a5cf296077afbe903b2c5fabc835198c.pptx',40422,'application/vnd.openxmlformats-officedocument.presentationml.presentation','21e73f4f34cbd91d07e9b44aa32edda4',2,1,'2017-09-28 17:25:13','',NULL),(439,66,'Version','MXSPEAK FORMAT ADRESSE POINT REV1.xlsx','171002154226_60a4ee1152638207efa84d8be6c53916.xlsx',10456,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','fae8acb0f9b77b78b4d4df7890eb73f0',1,1,'2017-10-02 15:42:26','',NULL),(440,66,'Version','Analyse VpiTyco.docx','171002154247_1d3bb5d9c4c3373ec9ebf6d2250b7cd8.docx',254670,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','5bb67b3454e1d1986e05c5d41b4c0856',1,1,'2017-10-02 15:42:47','',NULL),(441,68,'Version','2017-10-02 14.39 TYCO_OpenOpcUa.7z.001','171002165933_05b2af388b6bcc9f0ad98df4ad3f2ff6.001',85000000,'application/octet-stream','2ac02632103e6bdede9862b93f87548b',2,1,'2017-10-02 16:59:36','',NULL),(442,68,'Version','2017-10-02 14.39 TYCO_OpenOpcUa.7z.002','171003093514_fae34b1d593bd44753ae69c0a23714f7.002',4637316,'application/octet-stream','883ceb002f8ea763c835cc3f43ee742b',1,1,'2017-10-03 09:35:14','',NULL),(443,38,'Version','StatusCode-1.03.csv','171004150340_StatusCode-1.03.csv',21792,'application/vnd.ms-excel','a93266eb52b28c7a2da59ccc74492687',3,1,'2017-10-04 15:03:40','OPC UA StatusCode 1.03',NULL),(444,43,'Version','2017-10-04 13.59 Prosyst_OpenOpcUa.mp4','171004151655_6e037656d971d066701cb0022184a0e7.mp4',34857704,'video/mp4','393f046a996def10e21fea05e3e53459',2,1,'2017-10-04 15:16:56','',NULL),(445,55,'Version','P2-Release.zip','171005090436_P2-Release.zip',1655234,'application/x-zip-compressed','e79ae7e2d7ed8c1011b8f8d2457c8a03',2,1,'2017-10-05 09:04:36','Maquette 5-10-2017',NULL),(446,55,'Version','Orly_Harmonisateur_Release.zip','171005090510_Orly_Harmonisateur_Release.zip',1620936,'application/x-zip-compressed','6202ecbee7d52a7775203855db4805ee',0,1,'2017-10-05 09:05:10','',NULL),(447,155,'Issue','PROG_DE_BASE_NF_Site_wide_data_Group_Descriptions_Report.csv','171005142445_PROG_DE_BASE_NF_Site_wide_data_Group_Descriptions_Report.csv',25069,'application/vnd.ms-excel','64acbfad11dc06d59bfc464a534d19e4',0,328,'2017-10-05 14:24:45','',NULL),(448,156,'Issue','32A5FBFD.PNG','171006143935_32A5FBFD.PNG',8482,'image/png','180c6ab44f7132d3c66312e941e9b553',0,304,'2017-10-06 14:39:35','',NULL),(449,39,'Version','OpenOpcUaCoreServer_1.0.5.1-VpiUaClient.zip','171006145755_OpenOpcUaCoreServer_1.0.5.1-VpiUaClient.zip',1264865,'application/x-zip-compressed','7d1f8e788a54a54e0294fe7a55607859',1,1,'2017-10-06 14:57:55','DEBUG',NULL),(450,157,'Issue','Nouveau dossier.zip','171006171537_53a46339e40401355c1f3d57754ee737.zip',20577069,'application/x-zip-compressed','0aa38725ad98cd845e4ceaccc26b4aa1',0,304,'2017-10-06 17:15:37','',NULL),(451,157,'Issue','Demo-Test avec AUTO_POPULATE FALSE.zip','171009103742_adaaae18b4f38243b506e28776917515.zip',3971113,'application/x-zip-compressed','4a44a95afae34a465026bf9cdadf5c3e',0,304,'2017-10-09 10:37:42','',NULL),(452,56,'Version','Demo_VpiUaClnt-1.0.0.1.zip','171011152438_Demo_VpiUaClnt-1.0.0.1.zip',3132458,'application/x-zip-compressed','8dd0de1b0138d193c43c0e164f8b6861',3,1,'2017-10-11 15:24:38','',NULL),(453,48,'Version','Concept OPC UA demonstrator v1.02.pdf','171012162911_4ee8fa1194e4cf96d1bbd52aad8467c1.pdf',529024,'application/pdf','f57e88a112dfc36ac5d7f0ae37127574',3,1,'2017-10-12 16:29:11','',NULL),(455,52,'Version','TestXmiToNodeSet.zip','171013111716_TestXmiToNodeSet.zip',5352870,'application/x-zip-compressed','4f62fb20730dcccc40de77447b34d1e9',1,1,'2017-10-13 11:17:17','',NULL),(456,67,'Version','DemoTyco-13-10-2017.zip','171013133631_DemoTyco-13-10-2017.zip',2117245,'application/x-zip-compressed','9691d8148fc8423aecf08ba62e3115ac',1,1,'2017-10-13 13:36:31','',NULL),(457,67,'Version','UaExpert.zip','171018174520_UaExpert.zip',17274478,'application/x-zip-compressed','a22127f2da9c1b669a214dd63b60520c',1,1,'2017-10-18 17:45:21','',NULL),(458,69,'Version','Demo_VpiUaClient.zip','171019100039_Demo_VpiUaClient.zip',1585125,'application/x-zip-compressed','f06c29a7175d269cdf375fc927f582ac',1,1,'2017-10-19 10:00:39','',NULL),(459,160,'Issue','doublons.jpg','171019161745_doublons.jpg',23993,'image/jpeg','dd74abb68c96ec9de50606b2754eb87a',0,314,'2017-10-19 16:17:45','',NULL),(460,161,'Issue','pbTypage.jpg','171019161938_pbTypage.jpg',66043,'image/jpeg','b22a29b2e32d15be5059816fef1a7c5e',0,314,'2017-10-19 16:19:38','',NULL),(461,48,'Version','Robotics-VDMA-Spec.pdf','171019164335_Robotics-VDMA-Spec.pdf',625348,'application/pdf','d71560c4112d826eb05afad355ab7f10',1,1,'2017-10-19 16:43:36','',NULL),(462,50,'Version','AnalogItem.xml','171024091101_AnalogItem.xml',3763,'text/xml','6c2e2823d9ffcc11d1ddce734ec3ba21',3,1,'2017-10-24 09:11:01','',NULL),(463,50,'Version','RenaultSAS_MD_2410-17-XMI2.5-v4.mdxml','171024110407_RenaultSAS_MD_2410-17-XMI2.5-v4.mdxml',220221,'text/xml','9edddcacb320c466344285aabbac96e5',0,1,'2017-10-24 11:04:07','',NULL),(464,26,'Version','OpenOpcUa_Cooperl-1.0.5.1.zip','171024143902_OpenOpcUa_Cooperl-1.0.5.1.zip',760989,'application/x-zip-compressed','87449673af8d3fa240b0e2914e975d9b',1,1,'2017-10-24 14:39:02','',NULL),(465,26,'Version','Demo_VpiUaClient_24-10-2017.zip','171024150311_Demo_VpiUaClient_24-10-2017.zip',1732219,'application/x-zip-compressed','4d7ccf013c1507c72918d67734a0bf65',9,1,'2017-10-24 15:03:11','',NULL),(466,66,'Version','Analyse VpiTyco-OPC123-2509-17.docx','171025165034_a5209f7a698734b1b8c07557687bc326.docx',304910,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','919bce39a7af33ee4d9c65599c5208ad',1,1,'2017-10-25 16:50:34','',NULL),(468,26,'Version','Demo_VpiUaClient_Release_26-10-2017.zip','171026131137_Demo_VpiUaClient_Release_26-10-2017.zip',1732646,'application/x-zip-compressed','8c0ec3278b0363dc3668a407894e803f',3,1,'2017-10-26 13:11:37','',NULL),(469,26,'Version','Demo_VpiUaClient_Release-26-10-2017-v2.zip','171026144531_Demo_VpiUaClient_Release-26-10-2017-v2.zip',1732656,'application/x-zip-compressed','3f66dfcc4ab7cfd77a95a5f077ffeadf',2,1,'2017-10-26 14:45:31','',NULL),(470,66,'Version','Analyse VpiTyco-OPC123-0711-17.docx','171107152904_3d7bf41200e4431104e61f0934d595ea.docx',308466,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','de1aab70cc7af130c4cc0e3509a7fe64',3,1,'2017-11-07 15:29:04','',NULL),(471,66,'Version','Test_MultiNode.pptx','171107170716_Test_MultiNode.pptx',38237,'application/vnd.openxmlformats-officedocument.presentationml.presentation','464928de0335a7a9a7077df161f71ce4',2,1,'2017-11-07 17:07:16','',NULL),(472,72,'Version','OpenOpcUa_Livraison-Nov2017.zip','171114105038_OpenOpcUa_Livraison-Nov2017.zip',772065,'application/x-zip-compressed','36a8d7fd00639bbede4fe63177559afe',3,1,'2017-11-14 10:50:38','',NULL),(473,66,'Version','PROG_DE_BASE_NF- CORRESPONDANCE EVENT CODE ET GROUPE ASSOCIES REV2.xlsx','171114105226_d4293f40539b4f004f939e302de29b04.xlsx',24884,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','46935877d56d47fe5634725c98ab83b9',1,1,'2017-11-14 10:52:26','',NULL),(477,11,'Version','Manuel de l_utilisateur-v0.96.pdf','171116225912_c08119d46fd11594ee36eb028042c242.pdf',2043831,'application/pdf','0dd27c8976876fdcc4ae401d53a27e9f',28,1,'2017-11-16 22:59:12','',NULL),(478,172,'Issue','OpenOpcUa_1_0_4_7.rar','171117182518_OpenOpcUa_1_0_4_7.rar',247627,'application/octet-stream','ab44a068c49fdbb592f864314694e1f4',0,303,'2017-11-17 18:25:18','',NULL),(479,52,'Version','XmiToUANodeSetLibrary_RC01.zip','171119192035_XmiToUANodeSetLibrary_RC01.zip',38408,'application/x-zip-compressed','2163b4884c3b8969764807350469ffed',0,1,'2017-11-19 19:20:35','',NULL),(480,175,'Issue','OpcDirectAccessTest.zip','171122115606_OpcDirectAccessTest.zip',332161,'application/x-zip-compressed','d6d81deadbc713e152cc638644c94302',0,2,'2017-11-22 11:56:07','test source files',NULL),(481,175,'Issue','OpcDirectAccessTestDebugBin.zip.zip','171122115607_OpcDirectAccessTestDebugBin.zip.zip',6065016,'application/x-zip-compressed','a099fa29f801d0ab7658baf8fa933442',0,2,'2017-11-22 11:56:07','Debug binaries with conf and server',NULL),(482,67,'Version','DemoTyco-23-11-2017.zip','171123134002_DemoTyco-23-11-2017.zip',2150703,'application/x-zip-compressed','a90cca4022fcec0803391ef45a64edf7',1,1,'2017-11-23 13:40:02','',NULL),(483,72,'Version','OpenOpcUa_Livraison_23-11-2017.zip','171123153305_OpenOpcUa_Livraison_23-11-2017.zip',1497806,'application/x-zip-compressed','2b6fca5ef72e2bef1cd1cbdfa9ec0477',2,1,'2017-11-23 15:33:05','',NULL),(484,66,'Version','ConfigrationMaquetteTyco.xlsx','171124101601_ConfigrationMaquetteTyco.xlsx',15245,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','d7dc99b5a5266595d32df48823ce2e5f',1,1,'2017-11-24 10:16:01','',NULL),(486,67,'Version','Opc.Ua.SubSystemRelease.Tyco.xml','171124102611_Opc.Ua.SubSystemRelease.Tyco.xml',2451,'text/xml','219d5c4fb01da50063c64830767c1e08',1,1,'2017-11-24 10:26:11','',NULL),(489,58,'Version','UNECE_to_OPCUA.xlsx','171127102954_UNECE_to_OPCUA.xlsx',64540,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','4067927ef7b3194dce920588ceb44b71',8,1,'2017-11-27 10:29:54','',NULL),(490,58,'Version','OPC UA Part 8 - DataAccess 1.03 Specification.pdf','171127103529_005ebe80b1b2bd637a89e243683d9abc.pdf',1647188,'application/pdf','4f0591dd2c098ec6b941f0e05b23a6dd',7,1,'2017-11-27 10:35:29','',NULL),(491,58,'Version','opc-unified-architecture-for-analyzer-devices-adi.pdf','171127104611_opc-unified-architecture-for-analyzer-devices-adi.pdf',2909199,'application/pdf','591ba7f1c1372aa970efdea123c56c18',9,1,'2017-11-27 10:46:11','',NULL),(492,178,'Issue','opc_procellics.xmi','171127113206_opc_procellics.xmi',21465,'application/octet-stream','58de28d86429622471e72997f46a2225',0,331,'2017-11-27 11:32:06','xmi file',NULL),(493,64,'Version','2017-11-27 10.00 RS_OpenOpcUa.mp4','171127114048_d67bab5654199af541bfc312f860c604.mp4',88872266,'video/mp4','7c59643851d8c3c920fc0bd0102844c1',0,1,'2017-11-27 11:40:50','',NULL),(494,179,'Issue','OpenOpcUaCoreServer.log','171127142413_OpenOpcUaCoreServer.log',5084,'application/octet-stream','4212410153884535206faf8daa0dc858',0,269,'2017-11-27 14:24:13','',NULL),(495,179,'Issue','UaClntd-001-00200.log','171127142413_UaClntd-001-00200.log',253,'application/octet-stream','8fe19ff6fc25755065ee9105500d695b',0,269,'2017-11-27 14:24:13','',NULL),(496,179,'Issue','VpiCooperl15000.log','171127142413_VpiCooperl15000.log',261,'application/octet-stream','31da12f8c46122a0be171394975bcba4',0,269,'2017-11-27 14:24:14','',NULL),(497,179,'Issue','UaClntd-001.log','171127142414_UaClntd-001.log',125,'application/octet-stream','35cd4412b57f1214cc7c1acf5c7f3ba6',0,269,'2017-11-27 14:24:14','',NULL),(498,59,'Version','Demo-Release_1.0.5.2.zip','171127171159_Demo-Release_1.0.5.2.zip',2094805,'application/x-zip-compressed','360055d24d5d076de2e5bea0717af75c',5,1,'2017-11-27 17:11:59','',NULL),(499,175,'Issue','OpenOpcUaCoreServer.log','171128090556_OpenOpcUaCoreServer.log',6400,'application/octet-stream','d5216c359891f7605f41c0a032198baf',0,2,'2017-11-28 09:05:57','',NULL),(500,175,'Issue','20171128_crash.png','171128090557_20171128_crash.png',81714,'image/png','9425d6e37ebd63d479ddac4ed59bc26a',0,2,'2017-11-28 09:05:57','',NULL),(501,175,'Issue','crash-information.zip','171128090557_crash-information.zip',127357,'application/x-zip-compressed','b63a09c564390150a16ddb3a5bca2098',0,2,'2017-11-28 09:05:57','',NULL),(502,59,'Version','Demo-Debug_1.0.5.2.zip','171128091926_Demo-Debug_1.0.5.2.zip',2110147,'application/x-zip-compressed','35c76592403fb6039f0240074046f35b',4,1,'2017-11-28 09:19:26','',NULL),(503,175,'Issue','0001-fixing-bug-on-Binding-node-attribute-order-in-xml-pr.patch','171128095113_0001-fixing-bug-on-Binding-node-attribute-order-in-xml-pr.patch',2534,'application/octet-stream','6eb9419cc9d83c6124b266fa141cb288',0,2,'2017-11-28 09:51:13','patch correctif',NULL),(505,67,'Version','DemoTyco-29-11-2017_v0.71.zip','171129145331_DemoTyco-29-11-2017_v0.71.zip',2192419,'application/x-zip-compressed','0c475a0b614a245518652cd4245f7c45',1,1,'2017-11-29 14:53:31','',NULL),(506,180,'Issue','Connexion de clients au serveur OpenOpcUaCoreServer.pdf','171129161719_cd11a0b106779855bc35b1270f7eea37.pdf',244718,'application/pdf','3bba626f4155abd77ecf02ff100b3c50',0,304,'2017-11-29 16:17:19','',NULL),(512,36,'Version','Demo_VpiUaClient.zip','171201103249_Demo_VpiUaClient.zip',1621399,'application/x-zip-compressed','a337d09b4d955b1e05ab9f36d23c5d8b',1,1,'2017-12-01 10:32:49','',NULL),(514,183,'Issue','OpenOpcUaCoreServer DisplayName et BrowseName.pdf','171201104343_c971184f65b8c81280c23178c248fb39.pdf',267946,'application/pdf','95a98bcdab9eccbb5c5e08f10bb985f7',0,304,'2017-12-01 10:43:43','',NULL),(517,185,'Issue','Serveur 1.0.5.2.png','171201131632_69a570cac96fe22fdf792a5aca6d78ba.png',29353,'image/png','076e9dff462ee5a6be1bb735a12612fa',0,317,'2017-12-01 13:16:32','',NULL),(527,73,'Version','Opc.Ua.NodeSet2.Part3.xml','171201174512_Opc.Ua.NodeSet2.Part3.xml',80883,'text/xml','bbed7bf20f3a4d706d2ab202d6a92f42',1,1,'2017-12-01 17:45:12','',NULL),(528,73,'Version','Opc.Ua.NodeSet2.Part4.xml','171201174527_Opc.Ua.NodeSet2.Part4.xml',120042,'text/xml','a4e07419dfccb43ce8b8426fac8c9d09',1,1,'2017-12-01 17:45:27','',NULL),(529,73,'Version','Opc.Ua.NodeSet2.Part5.xml','171201174550_Opc.Ua.NodeSet2.Part5.xml',1279414,'text/xml','3ff306795243098a6ebc2c32abbd41d6',1,1,'2017-12-01 17:45:50','',NULL),(530,42,'Version','4 - OPC UA First Look.pdf','171201174714_a523dd205376aab35bac7a19a5e4372b.pdf',3207125,'application/pdf','72a0e0e78f22516dc2736c7972ce9dda',3,1,'2017-12-01 17:47:14','',NULL),(531,42,'Version','5 - OPC UA new features.pdf','171201174740_16dcc01bab44b9d4af1b04b2a236560e.pdf',1634019,'application/pdf','fc3ed68828b2daf0ba4598a7e9bf280e',2,1,'2017-12-01 17:47:40','',NULL),(532,42,'Version','Presentation de la technologie OPC.pdf','171201174846_9d25bae79c78cfd55abb7ba3eed8a1f0.pdf',5477954,'application/pdf','883324524996e610651da670faae7f8a',5,1,'2017-12-01 17:48:46','',NULL),(536,74,'Version','UaExpert.zip','171205123849_UaExpert.zip',17274478,'application/x-zip-compressed','03ff65283938c9b4ae164709d57437f0',4,1,'2017-12-05 12:38:49','',NULL),(538,77,'Version','2017-12-05 09.35 SDPlex_OpenOpcUa.7z.001','171205130926_5becccf1f8c919d7de048b560a72b13f.001',95000000,'application/octet-stream','5924c42e4804c51ba77ebae9855d27e1',3,1,'2017-12-05 13:09:29','',NULL),(539,66,'Version','Manuel de l_utilisateur-v0.96.pdf','171207122744_c08119d46fd11594ee36eb028042c242.pdf',2044502,'application/pdf','b6ad84f902f44dea5e19cda6de25d853',1,1,'2017-12-07 12:27:44','',NULL),(541,67,'Version','DemoTyco-07-12-2017-.zip','171207124222_DemoTyco-07-12-2017-.zip',2929661,'application/x-zip-compressed','ff87f224e2ef366aad00ee88d0814898',2,1,'2017-12-07 12:42:22','',NULL),(542,188,'Issue','Crash sur arret service.bmp','171207165520_5ba81b19d867d35227373303e731c5ec.bmp',3932214,'image/bmp','ab15ee96d72d857279b42fd4217c2395',0,254,'2017-12-07 16:55:20','',NULL),(543,188,'Issue','WER6500.dir00.zip','171207165521_WER6500.dir00.zip',468034,'application/zip','70aed2681d4ef2aab72cdac93382d1b3',0,254,'2017-12-07 16:55:21','',NULL),(544,189,'Issue','DeviceState.png','171207165804_DeviceState.png',110895,'image/png','8ca53280d9c09a3cd1f9c015a1d4cbd9',0,254,'2017-12-07 16:58:04','',NULL),(545,190,'Issue','VpiUaClient.png','171207170102_VpiUaClient.png',7024,'image/png','a84ead7613343653a64cfd23ddbb4008',0,254,'2017-12-07 17:01:02','',NULL),(546,66,'Version','Analyse VpiTyco-OPC123-0712-17.docx','171207173101_dc94082fca40f3e8588e922367e88d0c.docx',316310,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','7f1ab9e8d1c14854e0a4f615084675b7',1,1,'2017-12-07 17:31:01','',NULL),(547,66,'Version','ConfigurationMaquetteTyco REV2.xlsx','171208185539_a292324ef864bf398a55ed2ff5b3e6a5.xlsx',15676,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','bb23f8db806739b1c536d2f000c38c62',1,1,'2017-12-08 18:55:39','',NULL),(548,45,'Version','Capture-10-12-2017-11UTC.zip','171210125158_Capture-10-12-2017-11UTC.zip',10177408,'application/x-zip-compressed','24b71a23a534d75831cdce094efbffeb',3,1,'2017-12-10 12:51:58','',NULL),(549,39,'Version','OpenOpcUa_Livraison-10Dec2017_Debug.zip','171210161338_OpenOpcUa_Livraison-10Dec2017_Debug.zip',1360433,'application/x-zip-compressed','009b3a72ec2cba4e9424f829c73b45e0',1,1,'2017-12-10 16:13:38','',NULL),(550,39,'Version','OpenOpcUa_Livraison-10Dec2017_IPV4-Release.zip','171210161404_OpenOpcUa_Livraison-10Dec2017_IPV4-Release.zip',799187,'application/x-zip-compressed','3074d3884d802badd85864422f086d4f',1,1,'2017-12-10 16:14:04','',NULL),(551,39,'Version','OpenOpcUa_Livraison-10Dec2017_Release.zip','171210161436_OpenOpcUa_Livraison-10Dec2017_Release.zip',798879,'application/x-zip-compressed','02887bf2b6c4d2619bc8f0fac5fb45b7',1,1,'2017-12-10 16:14:36','',NULL),(553,77,'Version','2017-12-05 09.35 SDPlex_OpenOpcUa.7z.002','171211090610_33348ea805d9ce6c58b9e27522c40f27.002',95000000,'application/octet-stream','952bb18cc27fc589bdc5437cb213b1fd',2,1,'2017-12-11 09:06:13','',NULL),(554,77,'Version','2017-12-05 09.35 SDPlex_OpenOpcUa.7z.003','171211091115_8c51365d453f4b448199bb445a81de30.003',6810768,'application/octet-stream','a09152f2852ca35a4dff80a79c8885ef',2,1,'2017-12-11 09:11:15','',NULL),(555,76,'Version','Workshop Day 1-V0_1.pptx','171211092719_a1996420e21db783304113ab3d56ff9b.pptx',6637268,'application/vnd.openxmlformats-officedocument.presentationml.presentation','86951e9dfb1f8d5b3ddc09341f4707ac',4,1,'2017-12-11 09:27:20','',NULL),(556,178,'Issue','opc_procellics.xmi','171211101253_opc_procellics.xmi',21708,'application/octet-stream','4f9a655c1f037dd995c1b73bbff99b78',0,331,'2017-12-11 10:12:53','',NULL),(557,76,'Version','Workshop Day 3-V0.2.pptx','171211103440_fb5ac73f42f38a70487e82bf8293c67e.pptx',1341846,'application/vnd.openxmlformats-officedocument.presentationml.presentation','095bb3879dcd53371f19bcca18cda71e',4,1,'2017-12-11 10:34:40','',NULL),(559,59,'Version','Demo-ComDa - OneServer.zip','171211115752_8c56eac31ba229b5a105550a77afd223.zip',2727218,'application/x-zip-compressed','50684a5fac0610777049ddd6c8ca799f',4,1,'2017-12-11 11:57:52','',NULL),(560,178,'Issue','diagrammeDeClasse.PNG','171211120721_diagrammeDeClasse.PNG',164261,'image/png','ee95f11828556685609b23308d9f5b69',0,331,'2017-12-11 12:07:21','',NULL),(561,77,'Version','2017-12-11 09.00 SDPLEX_OpenOpcUa.7z.001','171211134217_150a09183b6b0ba5541685a8c4245013.001',90000000,'application/octet-stream','35061ceffd4cc5179d8a20c2a8b1c67b',2,1,'2017-12-11 13:42:19','',NULL),(562,77,'Version','2017-12-11 09.00 SDPLEX_OpenOpcUa.7z.002','171211140818_3aaef65153d94a9a07b254eeb20081b0.002',90000000,'application/octet-stream','32c88f653811261559452a51144f0d45',3,1,'2017-12-11 14:08:21','',NULL),(563,77,'Version','2017-12-11 09.00 SDPLEX_OpenOpcUa.7z.003','171211141540_5d4ae53dce99d01e9ff5a44f10c8c674.003',6737598,'application/octet-stream','120c101de94efed5babd0e2d95eded5f',2,1,'2017-12-11 14:15:40','',NULL),(566,66,'Version','Presentation de la technologie OPC.pdf','171214121319_9d25bae79c78cfd55abb7ba3eed8a1f0.pdf',5477954,'application/pdf','883324524996e610651da670faae7f8a',1,1,'2017-12-14 12:13:19','',NULL),(569,72,'Version','OpenOpcUa-Livraison_15-12-2017.zip','171215100541_OpenOpcUa-Livraison_15-12-2017.zip',1500633,'application/x-zip-compressed','29cc82312853246169466f2e672a7a2d',1,1,'2017-12-15 10:05:41','',NULL),(570,35,'Version','Demo_VpiUaClnt.zip','171215110013_Demo_VpiUaClnt.zip',2888976,'application/x-zip-compressed','a8b611f2890d435714d81a6f7d4faf28',1,1,'2017-12-15 11:00:14','',NULL),(571,35,'Version','Test_VpiUaClient.zip','171215110204_Test_VpiUaClient.zip',1601766,'application/x-zip-compressed','de496493fd3da822f6a9bc6e0935a0cf',2,1,'2017-12-15 11:02:04','',NULL),(572,45,'Version','Capture-16-12-2017-13UTC.zip','171216142214_Capture-16-12-2017-13UTC.zip',4590676,'application/x-zip-compressed','f594d0457278138b530b3dbade8d43d2',0,1,'2017-12-16 14:22:14','',NULL),(574,78,'Version','20 - OPC Test Cooperl complet(2017-12-15).zip','171218094836_3acac24bf601265f89d5912667a96113.zip',1883142,'application/x-zip-compressed','2e996e515f10d409f50a247a0d7a0a3d',0,269,'2017-12-18 09:48:36','',NULL),(575,67,'Version','Orly-Ouest-19-12-2017.zip','171219010300_Orly-Ouest-19-12-2017.zip',2823455,'application/x-zip-compressed','e325154833023a40e4759cd48f88f7ad',1,1,'2017-12-19 01:03:00','',NULL),(576,197,'Issue','Capture-18-12-2017-13UTC.zip','171219013518_Capture-18-12-2017-13UTC.zip',1663551,'application/x-zip-compressed','7b2b781eb0a9daec8427a5e177fae6f7',0,1,'2017-12-19 01:35:18','',NULL),(578,198,'Issue','ComDa001-00200.log','171219100858_ComDa001-00200.log',1417,'application/octet-stream','2b7c96313b210859ca5bba1ea69bd981',0,331,'2017-12-19 10:08:58','',NULL),(579,198,'Issue','OpenOpcUaCoreServer.log','171219100858_OpenOpcUaCoreServer.log',5503,'application/octet-stream','dd2e9aad9e1cf993280ea51fa5a6735d',0,331,'2017-12-19 10:08:58','',NULL),(580,77,'Version','2017-12-19 09.02 SDPLEX_OpenOpcUa.7z.001','171219111405_84f4792fbb3cca05ef4efa0548b07566.001',80000000,'application/octet-stream','42335172fefdaad7405d28b330173781',1,1,'2017-12-19 11:14:07','',NULL),(581,77,'Version','2017-12-19 09.02 SDPLEX_OpenOpcUa.7z.002','171219113411_409bad86bf523887f7eb3ba7f8cd45d0.002',22592071,'application/octet-stream','fea2fd44a5e2257346f54970a6f8a30d',1,1,'2017-12-19 11:34:11','',NULL),(582,66,'Version','AdressageMXSpeak.xlsx','171219154637_AdressageMXSpeak.xlsx',45060,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','0489cceb9605dec6742384b77b2227a2',2,328,'2017-12-19 15:46:37','adressage mxSpeak 19-12-2017',NULL),(583,197,'Issue','Catégories_souscription.jpg','171221175745_d1de65c68e0d038b1a417c481a571e6a.jpg',140564,'image/jpeg','18a3ab361041f7983a59d8da5154e579',0,329,'2017-12-21 17:57:45','',NULL),(584,201,'Issue','ComDa001-00200.log','171222082820_ComDa001-00200.log',1417,'application/octet-stream','2b7c96313b210859ca5bba1ea69bd981',0,331,'2017-12-22 08:28:20','',NULL),(585,201,'Issue','OpenOpcUaCoreServer.log','171222082820_OpenOpcUaCoreServer.log',5503,'application/octet-stream','dd2e9aad9e1cf993280ea51fa5a6735d',0,331,'2017-12-22 08:28:20','',NULL),(586,201,'Issue','RapidService.zip','171222084103_RapidService.zip',19425882,'application/x-zip-compressed','d9f5d44e03472f945d92893d35338039',0,1,'2017-12-22 08:41:04','',NULL),(587,72,'Version','OpenOpcUa - Livraison 3-1-2018.zip','180103145041_94705fc581bf43813586fe6d7c5f9b91.zip',758019,'application/x-zip-compressed','5eedcada081d405c81af6f1b7ddb4004',1,1,'2018-01-03 14:50:41','',NULL),(588,84,'Version','uaexpert-bin-win32-x86-vs2008sp1-v1.3.0-201.zip','180104134956_uaexpert-bin-win32-x86-vs2008sp1-v1.3.0-201.zip',10994996,'application/x-zip-compressed','7c49b134842818b1e1a8372feac0c4bd',6,1,'2018-01-04 13:49:56','',NULL),(590,81,'Version','Simulation_2017.zip','180104152608_Simulation_2017.zip',2729975,'application/x-zip-compressed','c9bb3a193d20ab0349b312836cc9ee16',7,1,'2018-01-04 15:26:08','',NULL),(591,83,'Version','Manuel de l_utilisateur-v0.96.pdf','180104161307_c08119d46fd11594ee36eb028042c242.pdf',2044502,'application/pdf','b6ad84f902f44dea5e19cda6de25d853',8,1,'2018-01-04 16:13:07','',NULL),(593,83,'Version','OpenOpcUa_J3.pdf','180104193842_OpenOpcUa_J3.pdf',3770705,'application/pdf','47b074952e83a5de23a9736315c5b3e2',7,1,'2018-01-04 19:38:42','',NULL),(594,81,'Version','Demo_VpiOs.zip','180104215350_Demo_VpiOs.zip',2722421,'application/x-zip-compressed','134fc9e177050a7e589988516a3f8117',2,1,'2018-01-04 21:53:50','',NULL),(595,82,'Version','OpenOpcUa_1_0_5_2.zip','180104215518_OpenOpcUa_1_0_5_2.zip',11734442,'application/x-zip-compressed','287a69f3da21b4f3c27db93852976fcf',4,1,'2018-01-04 21:55:20','',NULL),(596,66,'Version','AdressageMXSpeak CONFIG MAQUETTE RESEAU LIGHT.xlsx','180105002035_0bf4377668d6c0b8a444435accf96a08.xlsx',23475,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','4a44339a9438e3c19507950b9de09c00',1,328,'2018-01-05 00:20:35','',NULL),(597,201,'Issue','ManagementDAClient.zip','180105150909_ManagementDAClient.zip',18171970,'application/x-zip-compressed','8a66b926b7797971d87980eb840f39c2',0,1,'2018-01-05 15:09:09','',NULL),(598,59,'Version','ASGenerator.zip','180105153145_ASGenerator.zip',9020929,'application/x-zip-compressed','b6e330746633df2a11637a6233ae708a',1,1,'2018-01-05 15:31:45','',NULL),(599,58,'Version','Photo pleine page.pdf','180105154337_faf45b665a3ed4bdf30a9daafd3c155d.pdf',215599,'application/pdf','b075cf4022d0dfcbd8a8646597411952',5,1,'2018-01-05 15:43:37','',NULL),(600,205,'Issue','Photo pleine page.pdf','180105154420_faf45b665a3ed4bdf30a9daafd3c155d.pdf',215599,'application/pdf','b075cf4022d0dfcbd8a8646597411952',0,1,'2018-01-05 15:44:20','',NULL),(602,203,'Issue','stdafxHeaderPic.png','180109054622_stdafxHeaderPic.png',22453,'image/png','f48ec61a2f6b621c50bf063dc175543d',0,333,'2018-01-09 05:46:22','stdafx.h file',NULL),(603,67,'Version','Orly-Ouest-09-01-2018.zip','180109092110_Orly-Ouest-09-01-2018.zip',2945100,'application/x-zip-compressed','da318c74793d1d98d1a0b09c022545a1',1,1,'2018-01-09 09:21:11','',NULL),(605,203,'Issue','opcua-compile-error.PNG','180110063246_opcua-compile-error.PNG',48979,'image/png','c247ab55aa91f8d42706dc6ada7f757e',0,333,'2018-01-10 06:32:46','Endian-related compile error screen',NULL),(607,81,'Version','OPC-ADP-NodeSetFile.zip','180110104027_OPC-ADP-NodeSetFile.zip',129734,'application/x-zip-compressed','1ff017f4bfd5a40e38b3f4a4a1f0ccc8',4,1,'2018-01-10 10:40:27','',NULL),(608,83,'Version','Opc.Ua.NodeSet2.OLW.xml','180110105452_Opc.Ua.NodeSet2.OLW.xml',7890,'text/xml','efc04eb55356102b6e70f44c4c402361',4,1,'2018-01-10 10:54:52','',NULL),(609,83,'Version','Cmsi.pdf','180110144259_Cmsi.pdf',373530,'application/pdf','8c4337e24367ae06a0a63346239c215b',6,1,'2018-01-10 14:42:59','',NULL),(610,82,'Version','VpiLON.zip','180110172707_VpiLON.zip',31097,'application/x-zip-compressed','1ceecf7cbb92c939743c38edb4d49f71',8,1,'2018-01-10 17:27:07','',NULL),(612,203,'Issue','clientError.jpg','180111073404_clientError.jpg',74249,'image/jpeg','d99c4ec1482c5acdbd50b6a4eae99d0b',0,333,'2018-01-11 07:34:04','QuickClient error',NULL),(613,79,'Version','OpenOpcUaQuickClient.zip','180111074716_OpenOpcUaQuickClient.zip',138936,'application/x-zip-compressed','24f2357d276540f02d080089d944395c',3,1,'2018-01-11 07:47:16','',NULL),(614,210,'Issue','clientLibHeaderIncludeError.png','180114112306_clientLibHeaderIncludeError.png',11862,'image/png','9efd56864067883ba0b22fb99c1de2b9',0,333,'2018-01-14 11:23:06','client sdk header error',NULL),(616,210,'Issue','test.tar.gz','180115135111_test.tar.gz',2241277,'application/x-gzip','120c42be56959b6eba5315db9a44f278',0,1,'2018-01-15 13:51:11','',NULL),(618,35,'Version','TIAMA-W10-15-01-2018.zip','180115150524_TIAMA-W10-15-01-2018.zip',1501131,'application/x-zip-compressed','73dd68070a867c0df8265ef89e224df7',1,1,'2018-01-15 15:05:24','',NULL),(619,59,'Version','opc_procellics.mdzip','180115170705_opc_procellics.mdzip',81619,'application/x-zip-compressed','6fd7217465accbc9f0d7b09c94d562fb',3,1,'2018-01-15 17:07:05','',NULL),(622,59,'Version','Demo-CSV-HA.zip','180116144110_Demo-CSV-HA.zip',3296753,'application/x-zip-compressed','ebfe4bf2093721702b975517f7678296',0,1,'2018-01-16 14:41:10','',NULL),(623,216,'Issue','diagnostic.zip','180116150110_diagnostic.zip',4861607,'application/zip','5a7060a758d7245e2f6ca56eea76b9f5',0,316,'2018-01-16 15:01:10','',NULL),(624,64,'Version','2018-01-16 13.59 OOUA_RS.mp4','180116153922_6c04d015de07c72cef7105dd03b15992.mp4',91493105,'video/mp4','3be427d121c92433442f525703f9a394',0,1,'2018-01-16 15:39:24','',NULL),(626,35,'Version','OpenOpcUaCore_Binaries_W10_1_0_5_2.zip','180117162638_OpenOpcUaCore_Binaries_W10_1_0_5_2.zip',665080,'application/x-zip-compressed','4762b8b7d71b0a3cce0548eb655e59bb',2,1,'2018-01-17 16:26:38','',NULL),(627,222,'Issue','OpenOpcUaTerminalClient_fixRequired.gz','180119103701_OpenOpcUaTerminalClient_fixRequired.gz',5106,'application/x-gzip','d1063079075701ebe7f56709dc49634b',0,333,'2018-01-19 10:37:01','CauingSegmentationErrors',NULL),(628,204,'Issue','openopc-cross-compiler.png','180122031535_openopc-cross-compiler.png',7576,'image/png','9a7109aae8e0bd0cbe1af997940ddb1c',0,333,'2018-01-22 03:15:35','cross compiler we use',NULL),(629,204,'Issue','opcua-compile-error.PNG','180122031535_opcua-compile-error.PNG',4265,'image/png','7646139716b2c095282c826570801e1b',0,333,'2018-01-22 03:15:35','cross compile error message',NULL),(630,204,'Issue','opcua-compile-byteOrder-code-1.png','180122031536_opcua-compile-byteOrder-code-1.png',45972,'image/png','d7e5f0fae8a0c2f1c8d2d47ff781adae',0,333,'2018-01-22 03:15:36','byte-ordering issue code -1',NULL),(631,204,'Issue','opcua-compile-byteOrder-code-2.png','180122031536_opcua-compile-byteOrder-code-2.png',7941,'image/png','5e529f0ca34d34040fcd3dec673343ab',0,333,'2018-01-22 03:15:36','byte-ordering issue code -2',NULL),(632,44,'Version','SSI_Simulator_GUID.txt','180122141223_SSI_Simulator_GUID.txt',172,'text/plain','bcf06d461e9dc56279f085ebb971f376',0,1,'2018-01-22 14:12:23','',NULL),(633,226,'Issue','Conf 2cores 1agregateur.zip','180122174855_ca85e4de3eb16b59feaace4ce4128de3.zip',334490,'application/x-zip-compressed','a7bc028030787726e3de16829e54d040',0,254,'2018-01-22 17:48:55','',NULL),(634,227,'Issue','OpenOpcUaTerminalClient.log','180123095705_OpenOpcUaTerminalClient.log',8529,'application/octet-stream','ec01d97eab0aee52a2a9449af451dbfa',0,336,'2018-01-23 09:57:05','',NULL),(635,228,'Issue','OpenOpcUaCoreServer.log','180123145200_OpenOpcUaCoreServer.log',149650,'application/octet-stream','b84520e87801a89462f597187e360d89',0,254,'2018-01-23 14:52:00','',NULL),(636,228,'Issue','VpiModbus00200.log','180123145200_VpiModbus00200.log',5269,'application/octet-stream','8d89b6cb33177552c92184f5464bde69',0,254,'2018-01-23 14:52:01','',NULL),(637,228,'Issue','VpiModbus Bool.pcapng','180123145202_903971ed5480a2f2cf4c2e36a1bb799f.pcapng',3246588,'application/octet-stream','c5c909e9e187a7517d7460ebf02d3969',0,254,'2018-01-23 14:52:02','',NULL),(638,230,'Issue','VpiModbus Bool.pcapng','180123163212_903971ed5480a2f2cf4c2e36a1bb799f.pcapng',3246588,'application/octet-stream','c5c909e9e187a7517d7460ebf02d3969',0,254,'2018-01-23 16:32:12','',NULL),(640,85,'Version','OpenOpcUa_1_0_5_2.zip','180124222218_OpenOpcUa_1_0_5_2.zip',10606405,'application/x-zip-compressed','a29c8651d8d4abd4444ad279bf5fca09',6,1,'2018-01-24 22:22:18','No binary here..; Yo have to rebuild all',NULL),(641,85,'Version','changelog1.0.5.2.txt','180124225057_changelog1.0.5.2.txt',2195,'text/plain','e8906cac629a084a3193820b642d5582',7,1,'2018-01-24 22:50:57','',NULL),(642,204,'Issue','PPCTest-26-01.pptx','180126101810_PPCTest-26-01.pptx',34670,'application/vnd.openxmlformats-officedocument.presentationml.presentation','f83e104ca776406f9f827aca0104094f',0,1,'2018-01-26 10:18:10','',NULL),(643,222,'Issue','OpenOpcUaTerminalClient_fixRequired.zip','180126110113_OpenOpcUaTerminalClient_fixRequired.zip',5715587,'application/x-zip-compressed','4b78538fc34d84ce941d610bbfd4d10c',0,1,'2018-01-26 11:01:13','',NULL),(644,77,'Version','2018-01-26 09.03 SDPLEX_OOUA.7z.001','180126110955_70a67a5f324e522a932e29319d114c91.001',80000000,'application/octet-stream','5dc723c312eaa96ca691f3b839ac2d10',0,1,'2018-01-26 11:09:57','',NULL),(645,77,'Version','2018-01-26 09.03 SDPLEX_OOUA.7z.002','180126111046_ef77a4552c772e270800405d30e6e8fc.002',49448862,'application/octet-stream','67bc731c1069c91b7bc4c9955cdbd0e8',0,1,'2018-01-26 11:10:48','',NULL),(646,233,'Issue','CORRESPONDANCE EVENT CODE ET GROUPE ASSOCIES ASS-FMSI-UGA.xlsx','180128165923_d27ef60938513988a52944f2f8f46fc1.xlsx',14039,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','90d52708bf80c35c6b68353be2b6f176',0,328,'2018-01-28 16:59:23','',NULL),(649,48,'Version','Motion-01.docx','180129111112_Motion-01.docx',30189,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','60104496746b46b328f88881d040c338',1,1,'2018-01-29 11:11:12','',NULL),(650,70,'Version','Livraison 29-1-2018.zip','180129151344_63196b9069068fcc122ecdc4f31c95a4.zip',710910,'application/x-zip-compressed','a2176f66250d918dde31e70c1c4d9149',1,1,'2018-01-29 15:13:44','',NULL),(652,59,'Version','opc_procellics-01-02-2018-V3.xml','180201145230_opc_procellics-01-02-2018-V3.xml',16782,'text/xml','0018cd2da95a50b8fc096d083ba017f3',1,1,'2018-02-01 14:52:30','',NULL),(653,59,'Version','Procellics.doc','180201145249_Procellics.doc',21854,'application/msword','191e419e891a73e315031590771545dd',2,1,'2018-02-01 14:52:49','',NULL),(654,59,'Version','opc_procellics-01-02-2018-V3.xmi','180201145314_opc_procellics-01-02-2018-V3.xmi',220403,'text/xml','f6744c76f1ad658aa58a64a14c0915b5',2,1,'2018-02-01 14:53:14','',NULL),(655,58,'Version','SC-UML.docx','180201145753_SC-UML.docx',228641,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','3a34efa2434dd9de11c18259f63a4251',0,1,'2018-02-01 14:57:53','',NULL),(656,76,'Version','OpenOpcUa_J4.pdf','180202092556_OpenOpcUa_J4.pdf',2228394,'application/pdf','69e37c3e3bd60be617a31b48c50dc841',1,1,'2018-02-02 09:25:56','',NULL),(658,87,'Version','Conf 2cores 1agregateur.zip','180207144533_ca85e4de3eb16b59feaace4ce4128de3.zip',334490,'application/x-zip-compressed','a7bc028030787726e3de16829e54d040',2,254,'2018-02-07 14:45:33','',NULL),(660,35,'Version','SSL_RELEASE.zip','180208160958_SSL_RELEASE.zip',724613,'application/x-zip-compressed','d284c0563e4eaee5bc1466fdfb08d159',1,1,'2018-02-08 16:09:58','OpenSSL Binaries 1.0.2d',NULL),(661,79,'Version','OpenOpcUa_1_0_5_3.zip','180208211546_OpenOpcUa_1_0_5_3.zip',15075242,'application/x-zip-compressed','47a53877e22dc04a2a3aa2c7f768ff00',3,1,'2018-02-08 21:15:47','Beta01 of the 1.0.5.3',NULL),(662,240,'Issue','OpenOpcUaCoreServer.log','180209091509_OpenOpcUaCoreServer.log',6908,'application/octet-stream','7b0cc74ac26e49fad98023500529bc9a',0,254,'2018-02-09 09:15:09','',NULL),(663,240,'Issue','VpiUAClient.log','180209091510_VpiUAClient.log',17821,'application/octet-stream','204ba66a6cc8d6d9a1c9e4080e93d14a',0,254,'2018-02-09 09:15:10','',NULL),(664,240,'Issue','VpiUAClient-00400.log','180209091510_VpiUAClient-00400.log',297,'application/octet-stream','f7b2f94ba1aed7891eec750814062f31',0,254,'2018-02-09 09:15:10','',NULL),(665,240,'Issue','Sans titre.png','180209091510_34839053e158a003d0af270cd9616212.png',10033,'image/png','cd4b53829308c2b9fd56b6cb1eb45f88',0,254,'2018-02-09 09:15:10','',NULL),(666,59,'Version','Procellics-9-02-2018.zip','180209162220_Procellics-9-02-2018.zip',797364,'application/x-zip-compressed','8c037cf733704c2c988d0bf3894353c5',3,1,'2018-02-09 16:22:20','',NULL),(667,61,'Version','opc_procellics-09-02-2018.xml','180209165005_opc_procellics-09-02-2018.xml',214471,'text/xml','0568f00fcdabd38d1443ebc0b14911ad',3,1,'2018-02-09 16:50:05','',NULL),(669,222,'Issue','client-exception.png','180212064948_client-exception.png',42218,'image/png','dd67edabbf092c9f008fdfe7827d6d86',0,336,'2018-02-12 06:49:48','',NULL),(670,222,'Issue','client-exception2.png','180212064948_client-exception2.png',49253,'image/png','6ddb6c12d29ac2239f86d34faf73a1e9',0,336,'2018-02-12 06:49:48','',NULL),(671,74,'Version','opc-ua-1.02-.net-sample-applications-setup-336.0-20150630.zip','180212113026_opc-ua-1.02-.net-sample-applications-setup-336.0-20150630.zip',16159826,'application/x-zip-compressed','60b068ea0d0e5e536a568dd311fe44f5',2,1,'2018-02-12 11:30:27','',NULL),(672,222,'Issue','client-crash.png','180212122025_client-crash.png',70748,'image/png','d137f2417e13173ecc549219865de30b',0,336,'2018-02-12 12:20:25','',NULL),(673,222,'Issue','dashboard.jpg','180212122025_dashboard.jpg',215811,'image/jpeg','7bf284795d5e33b3a48cf9270aedc48e',0,336,'2018-02-12 12:20:25','',NULL),(674,222,'Issue','quick_start_access_server.jpg','180212122025_quick_start_access_server.jpg',86405,'image/jpeg','2819dfdfb207b5aa981a8170057997b1',0,336,'2018-02-12 12:20:26','',NULL),(675,222,'Issue','no published.jpg','180212122026_19dc386b1bd393f6bb589885f94e3d07.jpg',208108,'image/jpeg','dfee2ab94bccc2e4d3bf9cb4add4064f',0,336,'2018-02-12 12:20:26','',NULL),(676,70,'Version','Livraison-12-02-2018.zip','180212135626_Livraison-12-02-2018.zip',1438138,'application/x-zip-compressed','04d07ef0428d2f0f20a4ba65b22b4548',2,1,'2018-02-12 13:56:26','',NULL),(677,241,'Issue','patch.diff','180213112732_patch.diff',9930,'application/octet-stream','3920852d52e89bf72602ec73fae8e586',0,333,'2018-02-13 11:27:32','code update - diff patch',NULL),(682,222,'Issue','debian.png','180214092232_debian.png',56484,'image/png','029cdcc5a14e52bbd1d59d66a62d6a8a',0,1,'2018-02-14 09:22:32','',NULL),(683,222,'Issue','OpenOpcUaTerminalClientDebian.log','180214092232_OpenOpcUaTerminalClientDebian.log',1284493,'application/octet-stream','25801b7a340d17fb49db4596ce6b3cc1',0,1,'2018-02-14 09:22:32','',NULL),(684,222,'Issue','Windows.png','180214092232_Windows.png',27936,'image/png','e4f2860cb624d0c9532fdf20e1c16f70',0,1,'2018-02-14 09:22:32','',NULL),(685,222,'Issue','OpenOpcUaTerminalClientWindows.log','180214092233_OpenOpcUaTerminalClientWindows.log',1202569,'application/octet-stream','248fd4465e527826d3be2741b0f27596',0,1,'2018-02-14 09:22:33','',NULL),(686,70,'Version','Livraison-14-02-2018.zip','180214145209_Livraison-14-02-2018.zip',1438265,'application/x-zip-compressed','8e3e5bd4e75b5c176ab2c26fbcccd555',2,1,'2018-02-14 14:52:09','',NULL),(687,243,'Issue','4CE_CSSI_QuestionReponse_01.xlsx','180216101515_4CE_CSSI_QuestionReponse_01.xlsx',111523,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','b39d8ff075743dc6357b8b37f4054786',0,348,'2018-02-16 10:15:15','',NULL),(688,247,'Issue','image001.jpg','180216105156_image001.jpg',14604,'image/jpeg','89f9ae3a7c0698da1359a6c65f23b908',0,1,'2018-02-16 10:51:56','',NULL),(696,44,'Version','NodeSet_Annexe_F02.zip','180304161954_NodeSet_Annexe_F02.zip',12925,'application/x-zip-compressed','1074449d88b0f54b7e366664c229a28b',1,1,'2018-03-04 16:19:54','',NULL),(697,253,'Issue','OpenOpcUa.20180305.diff','180305100936_OpenOpcUa.20180305.diff',37216,'application/octet-stream','cec805b450a401363782a1d421289234',0,336,'2018-03-05 10:09:36','',NULL),(698,254,'Issue','OpenOpcUa_ActivateSession.jpg','180305104445_OpenOpcUa_ActivateSession.jpg',104427,'image/jpeg','79c60fdac9b73500680d73bf0f9e5843',0,1,'2018-03-05 10:44:45','',NULL),(699,256,'Issue','OpenOpcUa_QuickClient.jpg','180305111532_OpenOpcUa_QuickClient.jpg',86328,'image/jpeg','55ae9005d755f4323923149f05f29ed8',0,1,'2018-03-05 11:15:32','',NULL),(700,257,'Issue','OpenOpcUaClientConfig.xsd','180305112000_OpenOpcUaClientConfig.xsd',2944,'application/xml','c5b19f869e732375abc24f587a80c37a',0,1,'2018-03-05 11:20:00','',NULL),(701,36,'Version','Livraison 5-3-2018 W7.zip','180305144110_4a8346fe8bec3762ae4fa0cd84985277.zip',760471,'application/x-zip-compressed','a2fee6602b5268cfa2e5ef079ee44ae3',1,1,'2018-03-05 14:41:10','',NULL),(702,253,'Issue','OpenOpcUaClientLib.cpp','180306055903_OpenOpcUaClientLib.cpp',189935,'text/plain','564694cb7553469807ee219dc0608d14',0,336,'2018-03-06 05:59:03','',NULL),(704,44,'Version','NodeSet_Annexe_F03.zip','180306205850_NodeSet_Annexe_F03.zip',13138,'application/x-zip-compressed','8a39921097bf523e32f0f33c9d1f8956',1,1,'2018-03-06 20:58:50','',NULL),(711,58,'Version','modele.docx','180307144853_modele.docx',240022,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','af992127ee53976412a83006a78618fc',3,1,'2018-03-07 14:48:53','',NULL),(712,35,'Version','Symbole-OOUA-8-3-2018.zip','180308175414_Symbole-OOUA-8-3-2018.zip',4519373,'application/x-zip-compressed','55c63bd219782a4aa98c5991a51c0e72',1,1,'2018-03-08 17:54:14','',NULL),(714,44,'Version','NodeSet_Annexe_F03_v02.zip','180309143645_NodeSet_Annexe_F03_v02.zip',13134,'application/x-zip-compressed','78ab5502065453f6fe7334ea2afca649',8,1,'2018-03-09 14:36:45','',NULL),(715,230,'Issue','VpiModbus00200.log','180309150704_VpiModbus00200.log',5269,'application/octet-stream','8d89b6cb33177552c92184f5464bde69',0,254,'2018-03-09 15:07:04','',NULL),(716,74,'Version','Simulation_2018.zip','180310004115_Simulation_2018.zip',2709497,'application/x-zip-compressed','d381312cb46ff882103c6ae40c8cd185',4,1,'2018-03-10 00:41:15','',NULL),(717,19,'Version','VpiUaClnt_Release_W7_1_0_1_0.zip','180312100305_VpiUaClnt_Release_W7_1_0_1_0.zip',34216,'application/x-zip-compressed','aaafe7ca9b6b50d8d6e5cb0a9b36fada',1,1,'2018-03-12 10:03:05','',NULL),(719,19,'Version','VpiUaClnt_Release_XP_1_0_1_0.zip','180312115627_VpiUaClnt_Release_XP_1_0_1_0.zip',94281,'application/x-zip-compressed','f30527327fac00ef0a35ed7b327c7526',1,1,'2018-03-12 11:56:27','',NULL),(721,263,'Issue','CreateSubscription.pdf','180313112425_CreateSubscription.pdf',393574,'application/pdf','6ebef477f779d8d17a301a3bdcfac927',0,1,'2018-03-13 11:24:25','',NULL),(722,90,'Version','Manuel de l_utilisateur-v0.97.pdf','180315164437_45870f3f737a873188002393d4359ab6.pdf',1717841,'application/pdf','35da08d9725302d73f21e77e3e0f3967',7,1,'2018-03-15 16:44:37','',NULL),(723,91,'Version','OpenOpcUaConfigManager Delivrable Beta 0.5.zip','180316142440_cfd478debe101108f0f6b479469f511b.zip',8817132,'application/x-zip-compressed','5a813bf622764082e2886c0049fffdee',0,1,'2018-03-16 14:24:41','',NULL),(724,275,'Issue','OpenOpcUa_Client_Query_20180319.pdf','180319074353_OpenOpcUa_Client_Query_20180319.pdf',50938,'application/pdf','f24bd179a9cf24558e9e444a8e08697e',0,333,'2018-03-19 07:43:53','Enum_QualifiedName Type Query',NULL),(725,274,'Issue','OpenOpcUa_Client_Query_20180319.pdf','180319074353_OpenOpcUa_Client_Query_20180319.pdf',50938,'application/pdf','f24bd179a9cf24558e9e444a8e08697e',0,333,'2018-03-19 07:43:53','Enum_QualifiedName Type Query',NULL),(726,276,'Issue','OPCUA-Configuration.zip','180319113053_OPCUA-Configuration.zip',117011,'application/x-zip-compressed','662512ce42549d67e5c6b42eed200b2c',0,353,'2018-03-19 11:30:53','',NULL),(727,276,'Issue','OPCUA-Configuration.zip','180319113257_OPCUA-Configuration.zip',116999,'application/x-zip-compressed','e5114b710a358b2e3b5a54ad83990dcb',0,353,'2018-03-19 11:32:57','',NULL),(732,278,'Issue','OPC3.PNG','180320100827_OPC3.PNG',77052,'image/png','ac0d071bb60897d5d8b564ae7944a6e6',0,331,'2018-03-20 10:08:27','mail1',NULL),(733,278,'Issue','opc4.PNG','180320100827_opc4.PNG',5347,'image/png','282d629e7182d57278017a908691b5d7',0,331,'2018-03-20 10:08:27','mail2',NULL),(734,278,'Issue','opc.png','180320100828_opc.png',245081,'image/png','c9503d3cd40d290fe1f3cd666b5958c4',0,331,'2018-03-20 10:08:28','screenUaExpert',NULL),(737,67,'Version','ELEMENT_DETECTION02.csv','180320120930_ELEMENT_DETECTION02.csv',579,'application/vnd.ms-excel','852ae610a1bcc195c3bdfe17ce8e6ae0',7,1,'2018-03-20 12:09:30','',NULL),(738,58,'Version','OPC UA Part 5 - Information Model 1.03 Specification.pdf','180320173459_6fe1613d9b255343335d12afde87663f.pdf',2826783,'application/pdf','a1af66c07889d5693a55f5a603d6d6fd',4,1,'2018-03-20 17:34:59','',NULL),(739,70,'Version','dossiers sur serveur le 02-03-2018 = recette usine.zip','180320195913_c842d194a1feb12c30f1016285968b87.zip',4826735,'application/x-zip-compressed','1dcfac39df2a76851a0197686dbd2449',3,328,'2018-03-20 19:59:13','',NULL),(740,53,'Version','XmiToUANodeSetLibrary_RC02.zip','180321095623_XmiToUANodeSetLibrary_RC02.zip',40987,'application/x-zip-compressed','cab8c60eb0fe1f2b6052d49b1750911d',2,1,'2018-03-21 09:56:23','',NULL),(741,48,'Version','HelpDraft.pptx','180321101550_HelpDraft.pptx',71322,'application/vnd.openxmlformats-officedocument.presentationml.presentation','38386079b727114bd37bafc7e60cbe81',1,1,'2018-03-21 10:15:50','',NULL),(742,67,'Version','Opc.Ua.NodeSet2.ECS13.xml','180321105142_Opc.Ua.NodeSet2.ECS13.xml',253041,'text/xml','17a610ea7e5e875258990b7dd95773fa',2,1,'2018-03-21 10:51:43','',NULL),(744,67,'Version','ASS_CMSI37_ZC1.csv','180321193941_ASS_CMSI37_ZC1.csv',8779,'application/vnd.ms-excel','e457cdd71b9fb5dba1528f66b04d1cf4',1,328,'2018-03-21 19:39:41','',NULL),(746,67,'Version','Opc.Ua.NodeSet2.CMSI37.xml','180322092759_Opc.Ua.NodeSet2.CMSI37.xml',152178,'text/xml','0fe2d98f04211b2f2314f37b4db13b84',1,1,'2018-03-22 09:27:59','',NULL),(749,70,'Version','Livraison 30-3-2018.zip','180330083711_583392f27ecff6c00604c77fbde0808a.zip',688641,'application/x-zip-compressed','db0971c055533b0015ee912ecead2940',1,1,'2018-03-30 08:37:11','',NULL),(750,282,'Issue','VpiUaClient.mp4','180330103442_VpiUaClient.mp4',1663649,'video/mp4','5d91c3393b847045eb2cc07a042ba4ba',0,254,'2018-03-30 10:34:42','',NULL),(751,70,'Version','Livraison 30-3-2018 V2.zip','180330135717_12ffbd56f12f2de17f4887a56c4819a6.zip',725170,'application/x-zip-compressed','d859636af3b3b2d4acf30807970edfb8',1,1,'2018-03-30 13:57:17','',NULL),(752,35,'Version','Livraison 3-4-2018.zip','180403142539_9a4ce6f5b549cf507f5ed7794277da30.zip',1618740,'application/x-zip-compressed','dabc17991ce599d47af1e0b961e054fb',3,1,'2018-04-03 14:25:39','',NULL),(753,283,'Issue','VpiModbus00200.log','180403155856_VpiModbus00200.log',7092,'application/octet-stream','8332d46e46f43ae3863629da972e56ee',0,254,'2018-04-03 15:58:56','',NULL),(754,283,'Issue','VPI Modbus.pcapng','180403155858_35d51d1895ba1d910ddef99a0eab545d.pcapng',7032624,'application/octet-stream','35e11523ba5c7ffca1a85a24ce5130d7',0,254,'2018-04-03 15:58:58','',NULL),(756,284,'Issue','OPCUA-CPF_L04-methodes.zip','180405093246_OPCUA-CPF_L04-methodes.zip',3355043,'application/x-zip-compressed','a69ecf59b18d5e65ecdbcd2765295dda',0,353,'2018-04-05 09:32:46','',NULL),(757,285,'Issue','OPCUA-CPF_L04.zip','180405093645_OPCUA-CPF_L04.zip',3349533,'application/x-zip-compressed','8fcca0f1b7f9cc37aa81eacf2ddc4046',0,353,'2018-04-05 09:36:45','',NULL),(758,70,'Version','FLASH TLI800EN V1.4.zip','180405141504_50c704d7fe2603fbe0f9fb57a5c678a0.zip',775031,'application/x-zip-compressed','b3e956f0b3e4561326fabc78ce5c8acb',1,328,'2018-04-05 14:15:04','FLASH FIRMWARE CARTE TLI800EN',NULL),(759,70,'Version','FlashMagicProdSys.exe','180405154028_FlashMagicProdSys.exe',16842800,'application/x-msdownload','43891eee834d15c937a051e3a7b01964',3,328,'2018-04-05 15:40:28','',NULL),(760,70,'Version','OrlyOuest 090418.zip','180409003708_ddb56ed873f7f4ad06918ababe8a3cb6.zip',2394929,'application/x-zip-compressed','15dc23acf5617739ddac39657a3fa31f',1,328,'2018-04-09 00:37:08','',NULL),(761,90,'Version','OpenOpcUa_J3.pdf','180409094731_OpenOpcUa_J3.pdf',3770705,'application/pdf','47b074952e83a5de23a9736315c5b3e2',2,1,'2018-04-09 09:47:31','',NULL),(762,90,'Version','5.3- L_OpenOpcUaVpiLibrary.pdf','180409094746_100a8bff701da05757b3cfedaf43fc11.pdf',960165,'application/pdf','bd8acc56d080602ff8c7f7fd2ef57b09',3,1,'2018-04-09 09:47:46','',NULL),(763,93,'Version','OrlyOuest 090418-MC.zip','180409100226_6b805df736466e2a71e011480552d3ee.zip',2490388,'application/x-zip-compressed','d0581602baa6cd12b3de1818412be845',1,1,'2018-04-09 10:02:26','',NULL),(764,93,'Version','OrlyOuest 090418 NF.zip','180409184408_66f851437cf14852f167d1631ebf2b78.zip',2369704,'application/x-zip-compressed','4d253ab55bf82f76081d4f9cccc5d40b',4,328,'2018-04-09 18:44:08','',NULL),(765,93,'Version','OrlyOuest 090418 NF-MC.zip','180409213627_19796272cb5c8d7a22a57090d2873534.zip',2484503,'application/x-zip-compressed','3f7e6ce5248f06be993641c6549d3193',1,1,'2018-04-09 21:36:27','',NULL),(766,287,'Issue','L_ECS.jpg','180410120156_L_ECS.jpg',16779,'image/jpeg','5fde6c5c25368c31371833c5a62a9f98',0,1,'2018-04-10 12:01:56','',NULL),(770,44,'Version','NodeSet_Annexe_F03_v04.zip','180411234502_NodeSet_Annexe_F03_v04.zip',12614,'application/x-zip-compressed','21f56923b39edfa356a8b34585c07776',0,1,'2018-04-11 23:45:02','',NULL),(771,291,'Issue','ModifModel.jpg','180412165817_ModifModel.jpg',192880,'image/jpeg','2c6e53d2586d91d90594d0c31c448391',0,1,'2018-04-12 16:58:17','',NULL),(772,59,'Version','Maquette 12-4-2018.zip','180412170652_3c2409fb7d6ad6c404e56168d3e09708.zip',1968043,'application/x-zip-compressed','4d1b1c481367d3d2f58bac7f91959f9a',2,1,'2018-04-12 17:06:52','',NULL),(774,93,'Version','Opc.Ua.SubSystem.Tyco.xml','180412174738_Opc.Ua.SubSystem.Tyco.xml',114934,'text/xml','341089545c849edcc796f9a40ab80eb0',1,1,'2018-04-12 17:47:38','',NULL),(775,93,'Version','OrlyOuest 130418 NF.zip','180413185805_d190a0fda1ba39253f5dfb4355010313.zip',3126467,'application/x-zip-compressed','ca8ee9c7a3a975f10b2608ddd9018b26',1,328,'2018-04-13 18:58:05','',NULL),(776,70,'Version','Livraison 15-4-2018.zip','180415174510_2369327959938fd26daa8368e0176adb.zip',1452368,'application/x-zip-compressed','2be98ffd095ffe89e0d4532156e19ee5',2,1,'2018-04-15 17:45:10','',NULL),(777,93,'Version','OrlyOuest 160418 MC.zip','180416143738_d6114b786c555c64cfd1b042ba19f444.zip',1767128,'application/x-zip-compressed','1fc6509c285f7ef78572185592e2eb50',1,1,'2018-04-16 14:37:38','',NULL),(778,70,'Version','Livraison 16-4-2018.zip','180416180357_099dadfe1b67214e0db9920a9cd0cd9a.zip',1452386,'application/x-zip-compressed','b24b759fadcd1b7ddcfa7a754fc7f4c6',2,1,'2018-04-16 18:03:57','',NULL),(779,50,'Version','PressModel.mdzip','180418124109_PressModel.mdzip',131076,'application/x-zip-compressed','90450c55b70cca400f7f82eed64ce8e1',3,318,'2018-04-18 12:41:09','',NULL),(780,50,'Version','BatteryCharger.mdzip','180418124138_BatteryCharger.mdzip',116611,'application/x-zip-compressed','dc0e9d3ac0bb4551f379208c792cbd97',2,318,'2018-04-18 12:41:38','',NULL),(781,50,'Version','MachineRemplissage.mdzip','180418124207_MachineRemplissage.mdzip',120202,'application/x-zip-compressed','038685e5aee2b5d54535f2d29d664049',2,318,'2018-04-18 12:42:07','',NULL),(782,50,'Version','TighteningModel.mdzip','180418124227_TighteningModel.mdzip',118717,'application/x-zip-compressed','0533dd69e03b67a8ade4992024a29d75',2,318,'2018-04-18 12:42:27','',NULL),(783,50,'Version','RobotOPCUAModel.mdzip','180418124315_RobotOPCUAModel.mdzip',257465,'application/x-zip-compressed','5e03f27346fd4398e1f387cbc7503a08',2,318,'2018-04-18 12:43:15','',NULL),(784,19,'Version','VpiUaClnt.dll','180418164544_VpiUaClnt.dll',72192,'application/octet-stream','fc7d423f2c552cae7c643d24ce36b0a8',1,1,'2018-04-18 16:45:44','',NULL),(785,296,'Issue','OpenOpcUaCoreServer.dat','180418170422_OpenOpcUaCoreServer.dat',101,'application/octet-stream','5f109af325a44a21dcd97fdb7780d2d9',0,331,'2018-04-18 17:04:22','',NULL),(786,296,'Issue','Opc.Ua.Subsystem.RS.xml','180418170422_Opc.Ua.Subsystem.RS.xml',1911,'text/xml','b4232788c7692fe5918d46830581d2ea',0,331,'2018-04-18 17:04:23','',NULL),(787,296,'Issue','procellics2.xml','180418170423_procellics2.xml',334,'text/xml','1ac01213773c86ef25d6b12ee0edaf8c',0,331,'2018-04-18 17:04:23','',NULL),(789,70,'Version','Livraison 22-4-2018 - 0.0.7.9.zip','180422205557_d4ca4b98463574645cdc8b9ab1e658c3.zip',2784839,'application/x-zip-compressed','1f3a198bb0e5824241edb9f2860e7bfd',1,1,'2018-04-22 20:55:58','',NULL),(790,66,'Version','Manuel de l_utilisateur - VpiTyco.pdf','180422205626_6af43dfa5238e993b768d4921608f2d7.pdf',585459,'application/pdf','42cc2b69656cdfdc5c528351829138cf',1,1,'2018-04-22 20:56:26','',NULL),(791,66,'Version','Manuel de l_utilisateur-v0.98.pdf','180422205711_67b7cc3c985cdc6ade043d53e34a934d.pdf',893892,'application/pdf','dfe55e11a334a2908236f00e6ec55603',1,1,'2018-04-22 20:57:12','',NULL),(799,70,'Version','Livraison 27-4-2018.zip','180427130741_82a4af110350366376aba2cfbc271f79.zip',733361,'application/x-zip-compressed','0c5565f06797dac422082fd5c08d4f47',1,1,'2018-04-27 13:07:41','',NULL),(800,298,'Issue','OpenOpcUaCoreServer_Release.dmp','180427161053_OpenOpcUaCoreServer_Release.dmp',28929907,'application/octet-stream','9c9761f33e080ebcc7a0c8563dc40b95',0,254,'2018-04-27 16:10:55','',NULL),(802,93,'Version','OrlyOuest 0.0.8.5.zip','180430162156_27649d9208301e7f42bd22a420090223.zip',5313679,'application/x-zip-compressed','12f4b13b46706eacd008a355c43db627',4,328,'2018-04-30 16:21:56','DOSSIER SUR SITE LE 300418',NULL),(803,58,'Version','Wrapper COMDA.pptx','180502145258_95939609ab3e5669cc1ecdceae325597.pptx',45406,'application/vnd.openxmlformats-officedocument.presentationml.presentation','b54d845c9d093f2d31d43e7b5e08fe06',0,1,'2018-05-02 14:52:58','',NULL),(804,266,'Issue','procellics-02-05-2018.xmi','180502152350_procellics-02-05-2018.xmi',29175,'application/octet-stream','685eab4e037ebe3d1902753ae5185ca6',0,331,'2018-05-02 15:23:50','',NULL),(806,35,'Version','Livraison 4-5-2018.zip','180504142119_acda75ac9dda54796cc53d00ae6e98db.zip',811899,'application/x-zip-compressed','c6899738d69102fb0dc3c08bc12e36ea',2,1,'2018-05-04 14:21:19','',NULL),(807,35,'Version','ProcDump.zip','180504142337_ProcDump.zip',293766,'application/x-zip-compressed','00127f7de5239a68e430ecbe0b3a700f',1,1,'2018-05-04 14:23:37','',NULL),(808,35,'Version','OpenOpcUaConfigManager - Delivrable Beta 0.5.zip','180504142803_34a1baefb81f000412ba37bbdedad572.zip',9447424,'application/x-zip-compressed','e046aea759b479ebe537476688a0414e',1,1,'2018-05-04 14:28:04','',NULL),(809,299,'Issue','OpenOpcUaCoreServer_Release.dmp','180504162656_OpenOpcUaCoreServer_Release.dmp',29381995,'application/octet-stream','b73e86de2b40a97fe315b43823f59f58',0,254,'2018-05-04 16:26:57','',NULL),(810,299,'Issue','OpenOpcUaCoreServer.log','180504162658_OpenOpcUaCoreServer.log',6636,'application/octet-stream','1b22b46541be5dbc0a43853ac505751c',0,254,'2018-05-04 16:26:59','',NULL),(811,299,'Issue','VpiUAClient-00400.log','180504162659_VpiUAClient-00400.log',1545,'application/octet-stream','c780dfb3fa0ec14ea21b97aa087bcf93',0,254,'2018-05-04 16:26:59','',NULL),(812,299,'Issue','VpiUAClient.log','180504162659_VpiUAClient.log',20445,'application/octet-stream','31f9eda55ed113faf7136eb667421f22',0,254,'2018-05-04 16:26:59','',NULL),(813,300,'Issue','image012.png','180507131732_image012.png',6859,'image/png','b03d1edc7f956ad7f9ef21de76b4d627',0,353,'2018-05-07 13:17:32','',NULL),(814,300,'Issue','CPF_L04.log','180507131814_CPF_L04.log',55927,'application/octet-stream','a1c3c533d116e62893d0a61b72be1f74',0,353,'2018-05-07 13:18:14','',NULL),(815,93,'Version','OrlyOuest 0.0.8.7 NF.zip','180507175454_b2eec252156de79e58fdbfcecf503c8b.zip',3956709,'application/x-zip-compressed','6d1627af2bacb4d7960362b68e38b631',2,328,'2018-05-07 17:54:54','',NULL),(818,70,'Version','Livraison 13-5-2018.zip','180513110658_c78bd730b61662428775aac82fea7076.zip',733441,'application/x-zip-compressed','701a2f9135dd6745a089325f7b454d02',2,1,'2018-05-13 11:06:58','',NULL),(821,98,'Version','OpenOpcUa_1_0_5_4.zip','180517085826_OpenOpcUa_1_0_5_4.zip',14197097,'application/x-zip-compressed','ee6a8b81e7b6cf93dafbbb58f7b6e704',1,1,'2018-05-17 08:58:26','',NULL),(823,96,'Version','Draft POC.pptx','180517114347_a8947f02689fc565faa0d3def99adcab.pptx',41899,'application/vnd.openxmlformats-officedocument.presentationml.presentation','10db58e1f65936b46eeecec458062966',2,1,'2018-05-17 11:43:47','',NULL),(824,96,'Version','Manuel de l_utilisateur-v0.98.pdf','180517114416_67b7cc3c985cdc6ade043d53e34a934d.pdf',893892,'application/pdf','dfe55e11a334a2908236f00e6ec55603',2,1,'2018-05-17 11:44:16','',NULL),(828,66,'Version','Analyse VpiTyco-OPC123-0305-18.docx','180518134142_1ee4b4985295a37bc3e99da69d9219c2.docx',1139206,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','ce96b9b5ef20056766952c30ea820ab9',1,1,'2018-05-18 13:41:42','',NULL),(829,94,'Version','OpenOpcUa_1_0_5_4.zip','180518152235_OpenOpcUa_1_0_5_4.zip',14316076,'application/x-zip-compressed','781569be8bf9976cf972ec680e675852',2,1,'2018-05-18 15:22:36','',NULL),(836,70,'Version','Livraison 18-5-2018.zip','180518201622_0052bebe43eb62f26fa03cf9479d3d3d.zip',733570,'application/x-zip-compressed','ccf0dbbeb2ce3d7b6302938c163485cd',1,1,'2018-05-18 20:16:22','',NULL),(838,81,'Version','CHUBB.zip','180521103116_CHUBB.zip',233298,'application/x-zip-compressed','e768e6ddbb90fca39b3cc01d7c9b7611',3,349,'2018-05-21 10:31:16','Configuration duOLW P0 de CHUBB',NULL),(839,58,'Version','opc_procellics_22-5-2018.doc','180522110148_opc_procellics_22-5-2018.doc',33832,'application/msword','18f6fe55f3596024340175d58fe9f1e6',2,1,'2018-05-22 11:01:48','',NULL),(840,58,'Version','opc_procellics.xml','180522110230_opc_procellics.xml',35038,'text/xml','a45a0545ba5d3181555ba21121f132c7',3,1,'2018-05-22 11:02:30','',NULL),(841,59,'Version','Demo_Opc_procellics.zip','180522110346_Demo_Opc_procellics.zip',194145,'application/x-zip-compressed','9d4fac0145ada02cc7007bb5ea469743',3,1,'2018-05-22 11:03:46','',NULL),(842,61,'Version','OpenOpcUa_1_0_5_4.zip','180522141537_OpenOpcUa_1_0_5_4.zip',14316076,'application/x-zip-compressed','781569be8bf9976cf972ec680e675852',3,1,'2018-05-22 14:15:37','',NULL),(849,52,'Version','MachineRemplissage.zip','180522150134_MachineRemplissage.zip',1395174,'application/x-zip-compressed','aacd1ab597d086e56c35374ce1e05afd',2,1,'2018-05-22 15:01:35','',NULL),(853,101,'Version','VpiUGCIS_30-5-2018.zip','180530135553_VpiUGCIS_30-5-2018.zip',453346,'application/x-zip-compressed','5430f469e9ff686f565993056097cc4a',2,1,'2018-05-30 13:55:53','',NULL),(854,100,'Version','BrainStorming.pptx','180530135658_BrainStorming.pptx',45482,'application/vnd.openxmlformats-officedocument.presentationml.presentation','92930b47b309c72585cd5586db66d566',1,1,'2018-05-30 13:56:58','',NULL),(855,100,'Version','Manuel de l_utilisateur-v0.98.pdf','180530135730_67b7cc3c985cdc6ade043d53e34a934d.pdf',893892,'application/pdf','dfe55e11a334a2908236f00e6ec55603',3,1,'2018-05-30 13:57:30','',NULL),(856,102,'Version','XmiToUANodeSetLibrary_RC05.zip','180530135819_XmiToUANodeSetLibrary_RC05.zip',50140,'application/x-zip-compressed','403124c4e61dca66b7cd3f5e8b2c4434',2,1,'2018-05-30 13:58:19','',NULL),(858,100,'Version','Presentation de la technologie OPC.pdf','180530140143_9d25bae79c78cfd55abb7ba3eed8a1f0.pdf',5477954,'application/pdf','883324524996e610651da670faae7f8a',3,1,'2018-05-30 14:01:43','',NULL),(859,100,'Version','OpenOpcUa_J2.pdf','180530140259_OpenOpcUa_J2.pdf',2839593,'application/pdf','0ae0c776c30e3edaa7acdc1fbc7264e7',3,1,'2018-05-30 14:02:59','',NULL),(860,100,'Version','OpenOpcUa_J3.pdf','180530140526_OpenOpcUa_J3.pdf',3021601,'application/pdf','cd871f86ca6e60ab562183d624ff879d',3,1,'2018-05-30 14:05:27','',NULL),(861,102,'Version','OpenOpcUaConfigManager -Delivrable Beta 0.7.zip','180530140617_83b89a0830506b60083dd39e8170beda.zip',9146303,'application/x-zip-compressed','759d9ac9c0cd4c842326bb0ce2ff6219',2,1,'2018-05-30 14:06:17','',NULL),(862,99,'Version','NeuAutomation.zip','180530150525_NeuAutomation.zip',1158609,'application/x-zip-compressed','fc0df19a3fde33850a4b23b38736b433',3,1,'2018-05-30 15:05:25','',NULL),(863,100,'Version','MODELE_UGCIS.mdzip','180530164940_MODELE_UGCIS.mdzip',117798,'application/x-zip-compressed','037e9b31d59c4a15de5d9ded10a27a61',1,1,'2018-05-30 16:49:40','',NULL),(865,100,'Version','Opc.Ua.NodeSet2.UGICS_V2.xmi','180530165306_Opc.Ua.NodeSet2.UGICS_V2.xmi',235890,'text/xml','ffa95c2f9545fc2ac67c14a7134054ec',1,1,'2018-05-30 16:53:06','',NULL),(866,100,'Version','MODELE_UGCIS_V2.mdzip','180530165344_MODELE_UGCIS_V2.mdzip',117798,'application/x-zip-compressed','037e9b31d59c4a15de5d9ded10a27a61',1,1,'2018-05-30 16:53:44','',NULL),(867,82,'Version','OpenOpcUa_1_0_5_5.zip','180601095712_OpenOpcUa_1_0_5_5.zip',14387056,'application/x-zip-compressed','b7fdc255d96f9c82793ff16da98292e9',1,1,'2018-06-01 09:57:13','',NULL),(868,82,'Version','VfiCsv.zip','180601100459_VfiCsv.zip',41968,'application/x-zip-compressed','4c977124dfbc32136b689d79a20994af',3,1,'2018-06-01 10:04:59','',NULL),(869,82,'Version','VfiCsv.zip','180601100500_VfiCsv.zip',41968,'application/x-zip-compressed','4c977124dfbc32136b689d79a20994af',1,1,'2018-06-01 10:05:00','',NULL),(870,82,'Version','NodeSet_Annexe_F04_V05.zip','180601101832_NodeSet_Annexe_F04_V05.zip',12600,'application/x-zip-compressed','a0a891ecb11abbf85c9dad370610d29f',2,1,'2018-06-01 10:18:32','',NULL),(872,96,'Version','Draft POC V2.pptx','180604173335_2c3db55460d08761a2c17a09ef28500f.pptx',45932,'application/vnd.openxmlformats-officedocument.presentationml.presentation','6f444d072b55f1e2b3baba8324342b75',1,1,'2018-06-04 17:33:35','',NULL),(873,103,'Version','OpenOpcUa_1_0_5_5.zip','180606141306_OpenOpcUa_1_0_5_5.zip',14387056,'application/x-zip-compressed','b7fdc255d96f9c82793ff16da98292e9',1,1,'2018-06-06 14:13:07','',NULL),(874,91,'Version','OpenOpcUaConfigManager -Delivrable Beta 0.7.zip','180606142426_83b89a0830506b60083dd39e8170beda.zip',9146303,'application/x-zip-compressed','759d9ac9c0cd4c842326bb0ce2ff6219',2,1,'2018-06-06 14:24:27','',NULL),(875,41,'Version','OpenOpcUa_1_0_5_5.zip','180606164500_OpenOpcUa_1_0_5_5.zip',14387056,'application/x-zip-compressed','b7fdc255d96f9c82793ff16da98292e9',1,1,'2018-06-06 16:45:00','',NULL),(878,60,'Version','OpenOpcUa_1_0_5_5_TIAMA.zip','180607150557_OpenOpcUa_1_0_5_5_TIAMA.zip',14538118,'application/x-zip-compressed','dabead887b151f6ec9db10e802cd15dd',1,1,'2018-06-07 15:05:57','',NULL),(879,99,'Version','NeuAutomation-08-06-2018.zip','180608142432_NeuAutomation-08-06-2018.zip',1472734,'application/x-zip-compressed','8ecafdd6f8c155def9433aacde1c67c9',3,1,'2018-06-08 14:24:32','',NULL),(880,100,'Version','OPC UA 1.04 Specification.zip','180608142556_8e3640c0e5a275d926c5fbeca5b26beb.zip',22276897,'application/x-zip-compressed','275c0d7e958b7914c8302ae87cb30091',1,1,'2018-06-08 14:25:57','',NULL),(881,30,'Version','VDMA specification OPC UA for Machine Vision v1.0.2.pdf','180608161520_938a3ee0aba8d5524f5ba33196705448.pdf',1592323,'application/pdf','14adb296a1f4847adc17b5e2ab71db01',3,254,'2018-06-08 16:15:20','CompanionSpec Machine Vision',NULL),(882,30,'Version','VDMA specification OPC UA Vision Release Candidate.pdf','180625093032_0361cd8476d3fa0db9b29b1e4c9de2f5.pdf',2461330,'application/pdf','d7978e0a4f73993990753fbd1bdca577',1,254,'2018-06-25 09:30:32','',NULL),(883,93,'Version','MISE A JOUR NODESET EH1.zip','180625171942_503e8c3e3f35a59315a977ff864d3f15.zip',6959491,'application/x-zip-compressed','e616de785f0d8a6e48f30dce14a4d076',1,328,'2018-06-25 17:19:43','',NULL),(884,93,'Version','MISE A JOUR NODESET EH1-MC-Modif 25-6-2018.zip','180625230952_94e9ff0ef20a52f0037cae68bbefacba.zip',3289938,'application/x-zip-compressed','0cdc65de49d8666edf29d6a576836a3d',1,1,'2018-06-25 23:09:53','',NULL),(885,104,'Version','2018-06-28 14.06 NEU_OOUA.mp4','180628145114_29ce82ef05f2791f074d63274a2adf4c.mp4',20023284,'video/mp4','b252ff1b0308084c700112ff494ec5bf',0,1,'2018-06-28 14:51:15','',NULL),(887,93,'Version','MISE A JOUR NODESET EH1 2806.zip','180628165604_78bded67e7ab5c0c1951dd73313420e4.zip',6967692,'application/x-zip-compressed','650163ac165ac2b39763fdc282ef2201',1,328,'2018-06-28 16:56:04','',NULL),(888,48,'Version','VDMA specification OPC UA Vision Release Candidate.pdf','180629090112_0361cd8476d3fa0db9b29b1e4c9de2f5.pdf',2461330,'application/pdf','d7978e0a4f73993990753fbd1bdca577',1,1,'2018-06-29 09:01:12','',NULL),(889,52,'Project','shark.pcapng','180629155619_shark.pcapng',21470460,'application/octet-stream','a4503b1efa4ad56b19474dc8979df1f9',0,345,'2018-06-29 15:56:20','trace',NULL),(890,93,'Version','OLW 2906 SUR SERVEUR.zip','180629183729_23ed8c52debb7e2c8b2a22349002e5ba.zip',4966143,'application/x-zip-compressed','a49c7a759fa772bdfe2d8b70b8da1a71',1,328,'2018-06-29 18:37:29','',NULL),(893,46,'Version','OpenOpcUaCoreServer_Release.zip','180703112105_OpenOpcUaCoreServer_Release.zip',667589,'application/x-zip-compressed','2a0a8c6f54d43a3cf56e2769f084889e',1,1,'2018-07-03 11:21:05','',NULL),(897,70,'Version','Livraison 3-7-2018.zip','180703153212_6a164b6f6679d536053e2469afdc863d.zip',734351,'application/x-zip-compressed','34d418788638d04f564160a2f592a48b',1,1,'2018-07-03 15:32:12','',NULL),(899,89,'Version','VpiMethod.zip','180703161702_VpiMethod.zip',15859,'application/x-zip-compressed','137bdaa1cb450caeebfbeb4c385ff224',1,1,'2018-07-03 16:17:02','',NULL),(900,70,'Version','Livraison 4-7-2018.zip','180704002817_e36186ef626f4b0a2e35e73b789a7152.zip',734599,'application/x-zip-compressed','f71c84eb88afa2f54b8f5deeaefed07f',1,1,'2018-07-04 00:28:17','',NULL),(901,87,'Version','DemoMethodes.zip','180705144205_DemoMethodes.zip',1243951,'application/x-zip-compressed','752fed67666b82cb1bd0c5c43cd3d4be',5,1,'2018-07-05 14:42:05','',NULL),(902,53,'Version','XmiToUANodeSetLibrary_RC09.zip','180705200820_XmiToUANodeSetLibrary_RC09.zip',54078,'application/x-zip-compressed','b8dcf49397822dc2f6a3687d844d73bd',1,1,'2018-07-05 20:08:20','',NULL),(903,53,'Version','XmiToUANodeSetLibrary_RC10.zip','180706084545_XmiToUANodeSetLibrary_RC10.zip',54070,'application/x-zip-compressed','3b7a8287339df74b2b65d4b81f23a929',1,1,'2018-07-06 08:45:45','',NULL),(904,67,'Version','ZX-ZXA CONSYS V23.2.zip','180709181733_d12bd6e07c73e93584544f48be5a7305.zip',55532811,'application/x-zip-compressed','0b2c542601181804d831e55e42156636',1,328,'2018-07-09 18:17:35','SETUP CONSYS',NULL),(905,67,'Version','Sentinel-Protection-Installer-7.6.8_Windows.zip','180710150012_Sentinel-Protection-Installer-7.6.8_Windows.zip',7208960,'application/x-zip-compressed','144f6e81d3113b24c5d5b45165c445c9',2,328,'2018-07-10 15:00:12','DRIVER DONGLE CONSYS',NULL),(906,89,'Version','VpiUaClnt_1.0.1.6.zip','180710151025_VpiUaClnt_1.0.1.6.zip',79172,'application/x-zip-compressed','044ec3a584a58b4e847170c1a6ec6a57',1,1,'2018-07-10 15:10:25','',NULL),(907,86,'Version','Architectures TM15.pptx','180710155740_1d74ea867f7dabe46cf63ff55911095c.pptx',45905,'application/vnd.openxmlformats-officedocument.presentationml.presentation','bb9ab548a9ea91ee9d89e0bd02c1249d',1,254,'2018-07-10 15:57:41','',NULL),(908,67,'Version','OLW FR23_2 REV 522.xml','180711121205_8cdaa164078ad87b6582d7bcdb539849.xml',3888256,'text/xml','9ade9997ddd32da940657c57232fff0f',1,328,'2018-07-11 12:12:05','FICHIER EXPORT XML',NULL),(912,45,'Version','Manuel de l_utilisateur-v0.98.pdf','180725145344_67b7cc3c985cdc6ade043d53e34a934d.pdf',893892,'application/pdf','dfe55e11a334a2908236f00e6ec55603',3,1,'2018-07-25 14:53:45','',NULL),(913,105,'Version','OpenOpcUa_1_0_5_5_Base.zip','180727150137_OpenOpcUa_1_0_5_5_Base.zip',14387056,'application/x-zip-compressed','b7fdc255d96f9c82793ff16da98292e9',10,1,'2018-07-27 15:01:38','',NULL),(914,106,'Version','OpenOpcUa_1_0_5_5_Base.zip','180730115917_OpenOpcUa_1_0_5_5_Base.zip',14387056,'application/x-zip-compressed','b7fdc255d96f9c82793ff16da98292e9',4,1,'2018-07-30 11:59:17','',NULL),(915,109,'Version','Simulation_Basic.zip','180731173057_Simulation_Basic.zip',118976,'application/x-zip-compressed','7039ae35f6c5e23c395ec7706afcb9b8',7,1,'2018-07-31 17:30:57','',NULL),(916,315,'Issue','ConfigOpenOpcUa_fichier_OK.oouaprj','180802141748_ConfigOpenOpcUa_fichier_OK.oouaprj',1345,'application/octet-stream','c346f9132a3b6b5befc7af8b997b7b63',0,346,'2018-08-02 14:17:48','fichier OK',NULL),(917,315,'Issue','ConfigOpenOpcUa_fichier_qui_fait_bloquer.oouaprj','180802141748_ConfigOpenOpcUa_fichier_qui_fait_bloquer.oouaprj',1345,'application/octet-stream','48c6232341d3d1c8424c58887d9a9dcd',0,346,'2018-08-02 14:17:48','fichier qui fait bloquer le démarrage du serveur',NULL),(918,316,'Issue','CHUBB.ZIP','180802144114_CHUBB.ZIP',7682451,'application/x-zip-compressed','6aa621d6e5cb47369e7c61707d3f6f75',0,346,'2018-08-02 14:41:14','Configuration à dézipper sous c:\\',NULL),(919,316,'Issue','OpenOpcUaCoreServer.log','180802144114_OpenOpcUaCoreServer.log',4251785,'application/octet-stream','c5e525bcf620069b76d131a923713700',0,346,'2018-08-02 14:41:15','Fichier de log du serveur (arrêt par <ctrl+c> au bout de 2 mn)',NULL),(920,60,'Version','OpenOpcUa_1_0_5_6_Beta02.zip','180803142547_OpenOpcUa_1_0_5_6_Beta02.zip',9359233,'application/x-zip-compressed','9c10311236bb1994b4d078910066c8d4',1,1,'2018-08-03 14:25:47','',NULL),(921,36,'Version','XmiToUANodeSetLibrary_RC10.zip','180807120735_XmiToUANodeSetLibrary_RC10.zip',54070,'application/x-zip-compressed','3b7a8287339df74b2b65d4b81f23a929',1,1,'2018-08-07 12:07:35','',NULL),(922,36,'Version','BatteryCharger.xmi','180807120920_BatteryCharger.xmi',216032,'text/xml','06df4c8ac855b961f363f957035e3b5a',1,1,'2018-08-07 12:09:20','',NULL),(923,36,'Version','RobotOPCUAModel.xmi','180807121017_RobotOPCUAModel.xmi',728716,'text/xml','6dd06ea2a2349e94d571d22b490d7e98',1,1,'2018-08-07 12:10:17','',NULL),(925,60,'Version','OpenOpcUa_1_0_5_6_Beta03.zip','180809165927_OpenOpcUa_1_0_5_6_Beta03.zip',16560266,'application/x-zip-compressed','a3290022664cbeabe8cc7e3a7b46c364',2,1,'2018-08-09 16:59:28','',NULL),(926,36,'Version','Demo_VpiUaClnt_x64.zip','180809170015_Demo_VpiUaClnt_x64.zip',4302765,'application/x-zip-compressed','e9071562faae93663eb2eebf9179cc7a',2,1,'2018-08-09 17:00:15','',NULL),(927,70,'Version','Livraison 20-8-2018 v0.1.0.5.zip','180820150734_4ca65b942b932050b908f9dc5263b5ac.zip',1787058,'application/x-zip-compressed','61cdfe3f228bafa4b44880ee87eeaf37',1,1,'2018-08-20 15:07:34','',NULL),(928,70,'Version','VpiTyco_0_1_0_5.zip','180821163520_VpiTyco_0_1_0_5.zip',45463,'application/x-zip-compressed','368c4b642208c887f497aed65baef5c9',1,1,'2018-08-21 16:35:20','',NULL),(929,318,'Issue','1.png','180827121159_1.png',51202,'image/png','6cdc089a0a6924d9cc1f91ad646fd2da',0,361,'2018-08-27 12:11:59','',NULL),(930,318,'Issue','2.png','180827121200_2.png',46516,'image/png','6b2d331a0eb3a21ac8331f8bc75ad87e',0,361,'2018-08-27 12:12:00','',NULL),(931,318,'Issue','3.png','180827121200_3.png',48402,'image/png','f0fb67584973d317d95b8412bdc98216',0,361,'2018-08-27 12:12:00','',NULL),(932,318,'Issue','4- workaround.png','180827121200_a952f7c49d083d9781fe37aa2e99587c.png',38836,'image/png','e705c3c856a2fd70f5c80bbb1d6aea0f',0,361,'2018-08-27 12:12:00','',NULL),(933,316,'Issue','Test_Config_Maxi.zip','180831142250_Test_Config_Maxi.zip',9163959,'application/x-zip-compressed','6fa9f7554a94823a9afea39bad912a13',0,346,'2018-08-31 14:22:50','',NULL),(934,70,'Version','OpenOpcUaConfigManager -Delivrable Beta 0.8.zip','180831154747_5e8be1f94c95c116627a75377e5add7c.zip',9529765,'application/x-zip-compressed','3320ce85da14a69f9e4bcc7d2bd90abc',1,1,'2018-08-31 15:47:48','',NULL),(935,87,'Version','Sample Applications.zip','180912114258_48eca342399faafe7ee9361df5375900.zip',6485815,'application/x-zip-compressed','2bf789406d7c35e02911dd71b0f5ea22',1,1,'2018-09-12 11:42:58','',NULL),(936,87,'Version','opc-ua-1.02-.net-sample-applications-setup-336.0-20150630.zip','180912115044_opc-ua-1.02-.net-sample-applications-setup-336.0-20150630.zip',16159826,'application/x-zip-compressed','60b068ea0d0e5e536a568dd311fe44f5',1,1,'2018-09-12 11:50:45','',NULL),(937,87,'Version','Demo_VpiUaClnt_x64_12-09-2018.zip','180912134203_Demo_VpiUaClnt_x64_12-09-2018.zip',3953093,'application/x-zip-compressed','2e72ec44f5d8254652eb7dee3eb27b6d',2,1,'2018-09-12 13:42:03','',NULL),(938,35,'Version','Livraison 13-09-2018.zip','180913113833_7cd569502607776e50f1e4aeead650b8.zip',4150896,'application/x-zip-compressed','39bcbe23d2d100d8e25d50009e36e3b7',1,1,'2018-09-13 11:38:33','',NULL),(939,93,'Version','SERVEUR OPC 1409b.zip','180914132540_7335310f24c5dec15033e709fbd1256c.zip',5200746,'application/x-zip-compressed','a76e5d84c45bce2b4c17720d562a0db3',1,328,'2018-09-14 13:25:40','',NULL),(942,110,'Version','Maquette-MTP_VpiEx.zip','180919175428_Maquette-MTP_VpiEx.zip',3649115,'application/x-zip-compressed','c4719d78034c2a13e7354caac048546d',2,1,'2018-09-19 17:54:28','',NULL),(943,87,'Version','TiamaStructures_24-09-2018.zip','180924170225_TiamaStructures_24-09-2018.zip',2278245,'application/x-zip-compressed','8ac2b038db7fe24950bef370166c4588',1,1,'2018-09-24 17:02:25','',NULL),(944,322,'Issue','Valise_BPR.zip','180924173048_Valise_BPR.zip',158195,'application/x-zip-compressed','be8a9e628e24b08ad9541cc1d30fffb7',0,346,'2018-09-24 17:30:48','Exemple de projet n\'affichant pas de ComponentOf',NULL),(946,86,'Version','Euromap83.zip','180925140328_Euromap83.zip',893264,'application/x-zip-compressed','cf812500544aaca30aed8aa6ca3aec7c',1,1,'2018-09-25 14:03:28','',NULL),(947,87,'Version','TiamaStructures_25-09-2018.zip','180925162129_TiamaStructures_25-09-2018.zip',3547801,'application/x-zip-compressed','d514b33d318e3324d53376350ee64e76',1,1,'2018-09-25 16:21:29','',NULL),(948,111,'Version','clrinterop.zip','180925162743_clrinterop.zip',37128148,'application/x-zip-compressed','f9ebde24e1538e30e0c5b27062862d64',3,1,'2018-09-25 16:27:44','',NULL),(949,45,'Version','Manuel de l_utilisateur VpiUaClnt.pdf','180929005739_ff8cb6864f4532288d2bc0092eb3cee0.pdf',965274,'application/pdf','7fc58f8c1f20f3ef10993c9b437a9838',1,1,'2018-09-29 00:57:39','',NULL),(950,112,'Version','ServerConfig.xsd','180930184838_ServerConfig.xsd',6396,'application/xml','00c36ae4b25c990f286d260ed4efd74c',10,1,'2018-09-30 18:48:38','ServerConfig Update',NULL),(951,112,'Version','SubSystem.xsd','180930184857_SubSystem.xsd',3944,'application/xml','380b38da03b71475347259b7c60142a2',12,1,'2018-09-30 18:48:57','',NULL),(952,112,'Version','OpenOpcUaClientConfig.xsd','180930184916_OpenOpcUaClientConfig.xsd',2944,'application/xml','c5b19f869e732375abc24f587a80c37a',12,1,'2018-09-30 18:49:16','',NULL),(953,112,'Version','UASimulation.xsd','180930184934_UASimulation.xsd',1804,'application/xml','21e476d2481fa3343ae4d5b4685ca62c',8,1,'2018-09-30 18:49:34','',NULL),(954,324,'Issue','IMG_20180921_174921[1].jpg','181002192237_e83265cf688aab377b143ee8fa285b86.jpg',3004852,'image/jpeg','6c3fd06e11029d8d39b02a8ec09d72d9',0,328,'2018-10-02 19:22:37','',NULL),(955,326,'Issue','Capture.PNG','181005105017_Capture.PNG',18597,'image/png','58147d747ff74ce7f4e148207bbd8119',0,374,'2018-10-05 10:50:17','message d\'erreur',NULL),(957,101,'Version','OpenOpcUa_1_0_5_6_Beta04.zip','181011140413_OpenOpcUa_1_0_5_6_Beta04.zip',14535797,'application/x-zip-compressed','1a3aed3dae7bbd929e97e6c4912236de',1,1,'2018-10-11 14:04:14','',NULL),(958,102,'Version','uaexpert-bin-win32-x86-vs2008sp1-v1.4.4-275.zip','181011144550_uaexpert-bin-win32-x86-vs2008sp1-v1.4.4-275.zip',17978936,'application/x-zip-compressed','e4eb49f63b9c7f8e06648106fcf53a15',1,1,'2018-10-11 14:45:51','',NULL),(959,327,'Issue','demo.rar','181011202617_demo.rar',13969885,'application/octet-stream','c109da634888cce5e9c0b829f852aea2',0,374,'2018-10-11 20:26:21','',NULL),(960,328,'Issue','demo.rar','181012090334_demo.rar',13969885,'application/octet-stream','c109da634888cce5e9c0b829f852aea2',0,374,'2018-10-12 09:03:34','',NULL),(961,328,'Issue','wOs.dll','181012090334_wOs.dll',984064,'application/x-msdownload','b144d020d7fda779e9c527c847b5f15b',0,374,'2018-10-12 09:03:34','',NULL),(964,113,'Version','OpenOpcUa_1_0_5_6_Beta05.zip','181017134651_OpenOpcUa_1_0_5_6_Beta05.zip',14411126,'application/x-zip-compressed','c345c0f1bc645a95c5f60677cf5982b8',4,1,'2018-10-17 13:46:51','',NULL),(967,70,'Version','Maquette-MTP_VpiEx_v0.0.0.5.zip','181023181242_Maquette-MTP_VpiEx_v0.0.0.5.zip',3623708,'application/x-zip-compressed','95e40bf33f64227fdb00d91b0aa4d148',1,1,'2018-10-23 18:12:43','',NULL),(968,114,'Version','Demo_VpiUaClnt_AutoCfg.zip','181024111152_Demo_VpiUaClnt_AutoCfg.zip',3377683,'application/x-zip-compressed','24d0a8d27cf8c58473451b26929716b3',5,1,'2018-10-24 11:11:52','',NULL),(969,115,'Version','Manuel de l_utilisateur-v0.99.pdf','181024115724_06d8cbaa68d56bf3a6de00ce737dc3d1.pdf',1727978,'application/pdf','9682826d9cc17d1ec46b78c1b0617b74',3,1,'2018-10-24 11:57:25','',NULL),(970,115,'Version','Manuel de l_utilisateur VpiUaClnt.pdf','181024115851_ff8cb6864f4532288d2bc0092eb3cee0.pdf',965274,'application/pdf','7fc58f8c1f20f3ef10993c9b437a9838',4,1,'2018-10-24 11:58:51','',NULL),(971,36,'Version','DemoLua.zip','181024143135_DemoLua.zip',2982034,'application/x-zip-compressed','4b87503a2125214f16f2027a82216fea',2,1,'2018-10-24 14:31:36','',NULL),(975,70,'Version','Livraison 4-11-2018.zip','181104110508_31a5ac3bea0296086a333d976bdc586b.zip',3610088,'application/x-zip-compressed','a4d8291e64c3cce485578fac53bda661',4,1,'2018-11-04 11:05:08','',NULL),(977,107,'Version','EUROMAP82_2_RC1_00_1.xml','181105102003_EUROMAP82_2_RC1_00_1.xml',223915,'text/xml','9717fa7168c167f0cda4c064d9017a10',4,373,'2018-11-05 10:20:03','',NULL),(978,107,'Version','EUROMAP83_1_00_ext82_2_RC1_00_1.xml','181105102018_EUROMAP83_1_00_ext82_2_RC1_00_1.xml',538697,'text/xml','f5bc37222c436c442daa18ab39634801',3,373,'2018-11-05 10:20:18','',NULL),(979,107,'Version','EUROMAP82.2_RC1.00.1.pdf','181105102027_EUROMAP82.2_RC1.00.1.pdf',550708,'application/pdf','e46dc516bf97d8e2e0647b194cacdb2f',3,373,'2018-11-05 10:20:27','',NULL),(981,109,'Version','SISE_5-11-2018.zip','181105103011_SISE_5-11-2018.zip',3114255,'application/x-zip-compressed','e1b9b02a2c2c69f40ab886562e9a6b6a',4,1,'2018-11-05 10:30:10','',NULL),(982,107,'Version','Manuel de l_utilisateur-v0.99.pdf','181105144245_06d8cbaa68d56bf3a6de00ce737dc3d1.pdf',1727978,'application/pdf','9682826d9cc17d1ec46b78c1b0617b74',7,1,'2018-11-05 14:42:45','',NULL),(983,109,'Version','SISE_5-11-2018-17h00.zip','181105171513_SISE_5-11-2018-17h00.zip',3643971,'application/x-zip-compressed','27d2206f3ce055145d710b4f33c23ab4',5,1,'2018-11-05 17:15:13','',NULL),(984,108,'Version','OpenSSL1.1-DEV.zip','181105173248_OpenSSL1.1-DEV.zip',1197879,'application/x-zip-compressed','d450b702d5211edb1cfc32de83fe32e0',6,1,'2018-11-05 17:32:48','',NULL),(985,106,'Version','OpenOpcUa_1_0_5_6_Beta09.zip','181106100640_OpenOpcUa_1_0_5_6_Beta09.zip',13745861,'application/x-zip-compressed','8cba32d9f233d8453ca36a6c0e947aeb',3,1,'2018-11-06 10:06:40','',NULL),(986,36,'Version','TiamaOpcUaTerminalClient.7z','181106103047_TiamaOpcUaTerminalClient.7z',633337,'application/octet-stream','0e2f3be6a7faa75fa290ba58f0e6428e',2,259,'2018-11-06 10:30:47','Client .NET console utilisant les dll natives.',NULL),(987,106,'Version','TiamaOpcUaTerminalClient.7z','181106104758_TiamaOpcUaTerminalClient.7z',633337,'application/octet-stream','0e2f3be6a7faa75fa290ba58f0e6428e',3,1,'2018-11-06 10:47:58','',NULL),(988,106,'Version','OpenOpcUa_1_0_5_6_SISE.zip','181106162138_OpenOpcUa_1_0_5_6_SISE.zip',5135668,'application/x-zip-compressed','cafbabab9978c4238ae01583bd0b25f4',4,1,'2018-11-06 16:21:38','',NULL),(990,113,'Version','OpenOpcUa_1_0_5_6_Beta09.zip','181106162907_OpenOpcUa_1_0_5_6_Beta09.zip',13745853,'application/x-zip-compressed','5734690572557b021a6318b71b621546',7,1,'2018-11-06 16:29:07','',NULL),(992,70,'Version','OpenOpcUaConfigManager - Delivrable Beta 0.8.1.zip','181107131734_3afd11fc72ba87ae85cfaff1dacd27ec.zip',9539564,'application/x-zip-compressed','d809693768f9f6699a4d8499ff2f13f6',5,1,'2018-11-07 13:17:35','',NULL),(994,106,'Version','OpenOpcUa_1_0_5_6_RC01.zip','181107152231_OpenOpcUa_1_0_5_6_RC01.zip',14596426,'application/x-zip-compressed','9ca5e11893ea94412b56179a02f5a89a',4,1,'2018-11-07 15:22:32','',NULL),(995,109,'Version','Simulation_2018.zip','181107153607_Simulation_2018.zip',5781944,'application/zip','3a5eaba5aa78b90636be839d7d586cb8',1,1,'2018-11-07 15:36:07','',NULL),(996,109,'Version','SubSystem.Cooperl_Release.xml','181107164124_SubSystem.Cooperl_Release.xml',357,'text/xml','4c1a9256814cdcbcc02193668445ec91',3,1,'2018-11-07 16:41:24','',NULL),(997,109,'Version','ConfigOpenOpcUa.xml','181107164124_ConfigOpenOpcUa.xml',691,'text/xml','fa5b015b25dbb2222e17a230f3c672f3',2,1,'2018-11-07 16:41:24','',NULL),(998,106,'Version','SISE.OPCUA.Client.zip','181107174043_SISE.OPCUA.Client.zip',10425801,'application/x-zip-compressed','1281d6856ff6fd732c478f7eea132909',0,390,'2018-11-07 17:40:44','client opcua sise DotNet',NULL),(999,330,'Issue','OpenOpcUaConfigManager.exe_181107_180029.zip','181107182312_OpenOpcUaConfigManager.exe_181107_180029.zip',19434375,'application/x-zip-compressed','bd5ae84e01a34ba53253fa2fcc4a9779',0,328,'2018-11-07 18:23:13','',NULL),(1000,109,'Version','TestDBUS.zip','181107225749_TestDBUS.zip',6024666,'application/zip','85c4cccd974e60cd8fa9a2e6f7cdfedf',3,1,'2018-11-07 22:57:49','Demo VpiDBUS fonctionnelle Debian9-x86',NULL),(1002,67,'Version','OpenOpcUaConfigManager - Delivrable Beta 0.8.2.zip','181107231425_0dde8ea0702f0f6612a5626d314540fc.zip',9539705,'application/x-zip-compressed','9553a51dca7b42e7185a6cbbdd134e2c',2,1,'2018-11-07 23:14:25','',NULL),(1003,67,'Version','OpenOpcUaConfigManager - Delivrable Beta 0.8.2.zip','181107231929_0dde8ea0702f0f6612a5626d314540fc.zip',9539705,'application/x-zip-compressed','9553a51dca7b42e7185a6cbbdd134e2c',1,1,'2018-11-07 23:19:30','',NULL),(1004,331,'Issue','OpenOpcUaConfigManager.exe_181107_234217.zip','181108000818_OpenOpcUaConfigManager.exe_181107_234217.zip',19286621,'application/x-zip-compressed','0e1b889d433274c588c76015d0639b92',0,328,'2018-11-08 00:08:19','',NULL),(1006,109,'Version','Sise-Project-8-11-2018.zip','181108104153_Sise-Project-8-11-2018.zip',304030,'application/x-zip-compressed','bf54a3217fc51cc0d623ec168b38d19b',2,1,'2018-11-08 10:41:53','',NULL),(1007,67,'Version','OpenOpcUaConfigManager - Delivrable Beta 0.8.2 - Debug.zip','181108115018_165cf995880de3fd24b323be831577bb.zip',14137570,'application/x-zip-compressed','9807d8b47f5d95e5540a923428b68371',2,1,'2018-11-08 11:50:18','',NULL),(1008,67,'Version','OpenOpcUaConfigManager.exe_181108_134308.zip','181108134827_OpenOpcUaConfigManager.exe_181108_134308.zip',42276208,'application/x-zip-compressed','a73f6a8a2fd4e3b3dd4f846ddce848b7',1,328,'2018-11-08 13:48:29','FICHIER DUMP PLANTAGE CONFIG MANAGER 8.2 DEBUG',NULL),(1009,106,'Version','VpiDBUS_0.0.0.2.zip','181108143336_VpiDBUS_0.0.0.2.zip',253581,'application/zip','1a6ff0f7a47881f59322ffa939294443',7,1,'2018-11-08 14:33:36','',NULL),(1011,106,'Version','OpenOpcUaVpiLibrary.zip','181108144724_OpenOpcUaVpiLibrary.zip',505035,'application/zip','eaefc4189d260766fce4083cb48307f5',3,1,'2018-11-08 14:47:24','',NULL),(1012,106,'Version','OpenOpcUa_1_0_5_6_SISE_08-11-2018_14h00.zip','181108162302_OpenOpcUa_1_0_5_6_SISE_08-11-2018_14h00.zip',11175743,'application/x-zip-compressed','5bb2f0b157c433c5842b2a638dd50a04',1,1,'2018-11-08 16:23:03','',NULL),(1013,107,'Version','Opc.Ua.Di.NodeSet2.xml','181108165159_Opc.Ua.Di.NodeSet2.xml',98235,'text/xml','a6368caaa680f3c037a440e6b443c12f',1,1,'2018-11-08 16:51:59','',NULL),(1014,107,'Version','Opc.Ua.Di.PredefinedNodes.xml','181108165159_Opc.Ua.Di.PredefinedNodes.xml',158717,'text/xml','79fd83acdbd8fe9a35c6945ae1098eda',1,1,'2018-11-08 16:51:59','',NULL),(1015,107,'Version','opc-ua-for-devices-1.01-companion-specification-20140908.pdf','181108165200_opc-ua-for-devices-1.01-companion-specification-20140908.pdf',1265858,'application/pdf','d3c71d55f9198ff6368c77debde4801c',0,1,'2018-11-08 16:52:01','',NULL),(1016,332,'Issue','build.openopcua.log','181108170912_build.openopcua.log',167384,'text/x-log','93ee8e381c65f6e7bf53f7ca9bf75ac0',0,386,'2018-11-08 17:09:12','',NULL),(1017,67,'Version','OpenOpcUaConfigManager.exe_181108_182708.zip','181108184025_OpenOpcUaConfigManager.exe_181108_182708.zip',41251664,'application/x-zip-compressed','14f96170482d263a39c1ee1ebf73d954',1,328,'2018-11-08 18:40:26','',NULL),(1018,106,'Version','OpenOpcUa_1_0_5_6_RC02.zip','181108232423_OpenOpcUa_1_0_5_6_RC02.zip',7468767,'application/x-zip-compressed','4c89d9c6953e852a19f08cf3bdd5ef3c',1,1,'2018-11-08 23:24:23','OOUA release for OpenSSL 1.1',NULL),(1021,106,'Version','OpenOpcUa_1_0_5_6_SISE_09-11-2018_9h00.zip','181109085117_OpenOpcUa_1_0_5_6_SISE_09-11-2018_9h00.zip',9732287,'application/x-zip-compressed','f352757693fab446aadf371404ac580b',2,1,'2018-11-09 08:51:18','',NULL),(1022,93,'Version','SERVEUROPC0911.zip','181110121524_SERVEUROPC0911.zip',4381026,'application/x-zip-compressed','2de1613f51d345e88194a5f348bf8fdd',1,328,'2018-11-10 12:15:24','',NULL),(1023,101,'Version','OpenOpcUa_1_0_5_6_RC03.zip','181112160828_OpenOpcUa_1_0_5_6_RC03.zip',7815137,'application/x-zip-compressed','55557c0083f13fd91ee4ce311b5bdd86',1,1,'2018-11-12 16:08:28','',NULL),(1024,113,'Version','OpenOpcUa_1_0_5_6_RC03.zip','181112161535_OpenOpcUa_1_0_5_6_RC03.zip',7815137,'application/x-zip-compressed','55557c0083f13fd91ee4ce311b5bdd86',5,1,'2018-11-12 16:15:36','',NULL),(1025,335,'Issue','Pb VPI 13-11-2018.7z','181113150113_586e89f825dbff3f503467203fbf6f33.7z',194068,'application/octet-stream','6aab4b5d8ba7b55b622cffc0b72289f1',0,361,'2018-11-13 15:01:13','',NULL),(1026,89,'Version','OpenOpcUa_1_0_5_6_RC02.zip','181113160455_OpenOpcUa_1_0_5_6_RC02.zip',16573075,'application/x-zip-compressed','6e12508f176caf84144dafe91e056929',1,1,'2018-11-13 16:04:56','',NULL),(1027,87,'Version','model_1000_nodes_int32.rar','181114150640_model_1000_nodes_int32.rar',41914,'application/octet-stream','8b89f49bd13171741cf492e63df83432',2,374,'2018-11-14 15:06:40','ensemble des fichiers pour un model avec 1000 nodes',NULL),(1028,87,'Version','model_5000_nodes_int32.rar','181114150640_model_5000_nodes_int32.rar',169393,'application/octet-stream','e473e2e70101603d15eccc07111f6eb1',0,374,'2018-11-14 15:06:40','ensemble des fichiers pour un model avec 5000 nodes',NULL),(1029,87,'Version','model_10000_nodes_int32.rar','181114150640_model_10000_nodes_int32.rar',347359,'application/octet-stream','867b845dd9dc7ed1cbc48939c6b0f707',0,374,'2018-11-14 15:06:40','ensemble des fichiers pour un model avec 10000 nodes',NULL),(1030,70,'Version','VpiTyco_0_1_0_8.zip','181121161441_VpiTyco_0_1_0_8.zip',45759,'application/x-zip-compressed','0371147cd215c830ebf24611f0db8873',2,1,'2018-11-21 16:14:41','',NULL),(1031,70,'Version','VpiTyco_0_1_0_9.zip','181122184845_VpiTyco_0_1_0_9.zip',45847,'application/x-zip-compressed','3328c54136b9a8fe5bbbe1bed75323fd',1,1,'2018-11-22 18:48:45','',NULL),(1033,70,'Version','Livraison_27-11-2018.zip','181127221638_Livraison_27-11-2018.zip',1791910,'application/x-zip-compressed','e6acecec28b9e3561059e2107692a1f6',3,1,'2018-11-27 22:16:38','',NULL),(1034,70,'Version','VpiTyco_0_1_1_1.zip','181128172028_VpiTyco_0_1_1_1.zip',46463,'application/x-zip-compressed','aa5a34b6dd27bf6228c6a5c3bbf36c94',1,1,'2018-11-28 17:20:28','',NULL),(1035,87,'Version','Demo_VpiUaClient_Manu1000.zip','181202164701_Demo_VpiUaClient_Manu1000.zip',7327398,'application/x-zip-compressed','837d515976a432113d43a4f485c51cf0',5,1,'2018-12-02 16:47:02','',NULL),(1036,101,'Version','OpenOpcUa_1_0_5_6_RC04.zip','181202171733_OpenOpcUa_1_0_5_6_RC04.zip',14602772,'application/x-zip-compressed','dc949d320dd9aada3e396e062e3377a6',1,1,'2018-12-02 17:17:33','',NULL),(1038,113,'Version','OpenOpcUa_1_0_5_6_RC04.zip','181203100650_OpenOpcUa_1_0_5_6_RC04.zip',14602772,'application/x-zip-compressed','dc949d320dd9aada3e396e062e3377a6',21,1,'2018-12-03 10:06:51','',NULL),(1039,82,'Version','OpenOpcUa_1_0_5_6_RC04.zip','181204095830_OpenOpcUa_1_0_5_6_RC04.zip',14602772,'application/x-zip-compressed','dc949d320dd9aada3e396e062e3377a6',5,1,'2018-12-04 09:58:32','',NULL),(1040,114,'Version','Demo_VpiUaClnt_AutoCfg-4-12-2018.zip','181204112854_Demo_VpiUaClnt_AutoCfg-4-12-2018.zip',2026929,'application/x-zip-compressed','48c6545f880962f6055aa230994c2c61',1,1,'2018-12-04 11:28:54','',NULL),(1041,69,'Version','Demo_VpiUaClnt_AutoCfg-4-12-2018.zip','181204114648_Demo_VpiUaClnt_AutoCfg-4-12-2018.zip',2026929,'application/x-zip-compressed','48c6545f880962f6055aa230994c2c61',0,1,'2018-12-04 11:46:48','',NULL),(1042,88,'Version','procdump.exe','181204153534_procdump.exe',651424,'application/octet-stream','6a09bc6c19c4236c0bd8a01953371a29',0,1,'2018-12-04 15:35:34','',NULL),(1043,341,'Issue','SERVEUR OPC BANC ESSAI REV5.zip','181205172312_90c1a8e9e190aa3ded2d297b9d75bcf3.zip',3327755,'application/x-zip-compressed','b28a670502baebd2dc526ffca2de0c46',0,328,'2018-12-05 17:23:12','',NULL),(1044,344,'Issue','Bug-OPCUA-CertificateStore.PNG','181207074252_Bug-OPCUA-CertificateStore.PNG',43970,'image/png','e52dbef88c91a97bdd0796a8343eca09',0,353,'2018-12-07 07:42:52','',NULL),(1045,348,'Issue','Bug-OPCUA-SegFault-VpiNull.PNG','181207093824_Bug-OPCUA-SegFault-VpiNull.PNG',49830,'image/png','354426a914d9dce95477d27e9d61b2e2',0,353,'2018-12-07 09:38:24','',NULL),(1046,348,'Issue','ServerOpcUa@_CPF_L04.log','181207093824_c1045046c1040f083367ff7a2b3f871f.log',57462,'application/octet-stream','490088835f9950c853cf01b6cc003cb8',0,353,'2018-12-07 09:38:24','',NULL),(1047,87,'Version','Aggregateur-Demo-10-12-2018.zip','181210120720_Aggregateur-Demo-10-12-2018.zip',7610627,'application/x-zip-compressed','358bdddc93ba2a5e2c872023d9a3c08b',1,1,'2018-12-10 12:07:20','',NULL),(1048,89,'Version','OpenOpcUa_1_0_5_6_RC05_Tiama.zip','181210173624_OpenOpcUa_1_0_5_6_RC05_Tiama.zip',14520499,'application/x-zip-compressed','2ada3e4c52cd321175fa9f59d7953fa1',1,1,'2018-12-10 17:36:25','',NULL),(1049,11,'Version','Webinar 1h - OpenOpcUa - 2018.pdf','181212091311_4c05b3d5823e3b863da60b931815bb5b.pdf',3451986,'application/pdf','52dcadcc1e0281d55f46c42831b56de8',15,1,'2018-12-12 09:13:11','',NULL),(1051,89,'Version','OpenOpcUa_1_0_5_6_RC06_Tiama.zip','181216193234_OpenOpcUa_1_0_5_6_RC06_Tiama.zip',8023063,'application/x-zip-compressed','712195dc6d075ae72af188ec6dde119a',1,1,'2018-12-16 19:32:35','',NULL),(1052,86,'Version','Comment creer une UDT.docx','181217141225_6d712275a72cc8d9e1aacc5eef2ea3fc.docx',382156,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','dfe6d33e85a57e75b79de48498e003d9',1,1,'2018-12-17 14:12:25','',NULL),(1053,87,'Version','DemoUserDefineStructures_17-12-2018.zip','181217141915_DemoUserDefineStructures_17-12-2018.zip',3685846,'application/x-zip-compressed','170f3d0c38c19ef0dada9e391acbb232',1,1,'2018-12-17 14:19:15','',NULL),(1054,116,'Version','Livraison 18-12-2018.zip','181218152210_3827fd6056415bfeceb684341e5d8a11.zip',1796296,'application/x-zip-compressed','18d13e98a403f74cb96e9d120d20580d',1,1,'2018-12-18 15:22:10','',NULL),(1055,349,'Issue','bug_string.PNG','181219105814_bug_string.PNG',83467,'image/png','2b774af1b822ebce01e57f730a285a49',0,374,'2018-12-19 10:58:14','',NULL),(1056,349,'Issue','xml.rar','181220161904_xml.rar',201519,'application/octet-stream','1b52f3d81664017116c723d8f9eb814c',0,374,'2018-12-20 16:19:04','',NULL),(1057,116,'Version','VpiTyco_0_1_1_3.zip','181221113020_VpiTyco_0_1_1_3.zip',46493,'application/x-zip-compressed','835083f2611ad15ace0ee09a379085fe',1,1,'2018-12-21 11:30:20','',NULL),(1061,89,'Version','OpenOpcUa_1_0_5_6_TIAMA.zip','190108134642_OpenOpcUa_1_0_5_6_TIAMA.zip',8780167,'application/x-zip-compressed','b507031956268c340672d872ec20da15',2,1,'2019-01-08 13:46:42','',NULL),(1062,101,'Version','OpenOpcUa_1_0_5_6.zip','190108134745_OpenOpcUa_1_0_5_6.zip',8600915,'application/x-zip-compressed','5533ca2da7f4bb5dc7f9879b4ab898b4',1,1,'2019-01-08 13:47:45','',NULL),(1063,103,'Version','OpenOpcUa_1_0_5_6.zip','190108134824_OpenOpcUa_1_0_5_6.zip',8600915,'application/x-zip-compressed','5533ca2da7f4bb5dc7f9879b4ab898b4',1,1,'2019-01-08 13:48:25','',NULL),(1064,113,'Version','changelog1.0.5.6.txt','190108134942_changelog1.0.5.6.txt',1898,'text/plain','07570a1d2e651eca36c2d5dd27115a60',9,1,'2019-01-08 13:49:42','',NULL),(1065,113,'Version','OpenOpcUa_1_0_5_6.zip','190108135007_OpenOpcUa_1_0_5_6.zip',8600915,'application/x-zip-compressed','5533ca2da7f4bb5dc7f9879b4ab898b4',10,1,'2019-01-08 13:50:08','',NULL),(1066,343,'Issue','Main.cpp','190114163939_Main.cpp',141058,'text/plain','fa7c0584e60cb6463871114ca4d6347e',0,1,'2019-01-14 16:39:39','',NULL),(1067,343,'Issue','Main.cpp','190114181004_Main.cpp',141294,'text/plain','8a6e804bac86e3a321d17f41f8daa177',0,1,'2019-01-14 18:10:04','',NULL),(1068,352,'Issue','UaExpert@pisa-043 [3B4140209A48C0FFDAECA47FC0ABFCA856629B69].der','190115103409_c5944b4e7efc40add7d1f23ea17cddcc.der',1262,'application/x-x509-ca-cert','50b90968de2136a2b43b98434a9bde58',0,353,'2019-01-15 10:34:09','',NULL),(1069,353,'Issue','CPF_L04.log','190115104016_CPF_L04.log',57730,'application/octet-stream','c24256840825bb8bbead41171cf6100a',0,353,'2019-01-15 10:40:16','',NULL),(1070,89,'Version','OpenOpcUa_1_0_5_7_BETA01_TIAMA.zip','190115160704_OpenOpcUa_1_0_5_7_BETA01_TIAMA.zip',8713544,'application/x-zip-compressed','4adb89e71ca39362120265bea9edfed4',1,1,'2019-01-15 16:07:05','',NULL),(1073,116,'Version','Livraison_21-01-2019.zip','190121092220_Livraison_21-01-2019.zip',1796308,'application/x-zip-compressed','9b1815787c03f9d076fb90f8a53b4134',1,1,'2019-01-21 09:22:20','',NULL),(1077,89,'Version','VpiMdbMaster_Src_1_0_3_7.zip','190123143420_VpiMdbMaster_Src_1_0_3_7.zip',70435,'application/x-zip-compressed','d4f8eb37f073b73eeaf7d24341a6fae5',1,1,'2019-01-23 14:34:20','',NULL),(1079,65,'Project','2 sauvegarde serveur OPC 14février2014.zip','190128192653_9e0307eac4c89dbe623dad02dd61fa29.zip',91625751,'application/x-zip-compressed','fd2c05984c2fa47cb73fb602cf0f36af',0,328,'2019-01-28 19:26:55','SAUVEGARDE SERVEUR OPC P1 FEVRIER 2014',NULL),(1080,89,'Version','OpenOpcUa_1_0_5_7_BETA02_TIAMA.zip','190129173752_OpenOpcUa_1_0_5_7_BETA02_TIAMA.zip',8804106,'application/x-zip-compressed','775b3987def6c376f1e83aa92b99af3e',1,1,'2019-01-29 17:37:52','',NULL),(1082,93,'Version','SERVEUR2-2101B.zip','190201101652_SERVEUR2-2101B.zip',3581072,'application/x-zip-compressed','eb8796bce878f9fc2c2cb0764e99f2af',1,328,'2019-02-01 10:16:53','SERVEUR POUR UAE PLATEFORME AU 2101',NULL),(1083,118,'Version','OpenOpcUaConfigManager - Delivrable Beta 0.8.2 - Debug.zip','190201151402_165cf995880de3fd24b323be831577bb.zip',14192930,'application/x-zip-compressed','2d757193951dc4061b8af37b4ae6fc1b',3,1,'2019-02-01 15:14:03','',NULL),(1084,93,'Version','SERVEUR2-2101B-MC.zip','190201152432_SERVEUR2-2101B-MC.zip',5006708,'application/x-zip-compressed','3df48107e6329be18b2f3e992315b42b',2,1,'2019-02-01 15:24:32','',NULL),(1085,88,'Version','Livraison 7-2-2019_DEBUG.zip','190207172838_89a1a10afbc37501269638c5b77335c7.zip',3702359,'application/x-zip-compressed','dd90426247efd2e129567b55322abfd0',1,1,'2019-02-07 17:28:39','',NULL),(1086,88,'Version','Livraison 7-2-2019_DEBUG_SYMBOL.zip','190207173754_28ad10950809604a538e78ca0929ab2e.zip',9619996,'application/x-zip-compressed','3a5bff5df04760f7a3d304fe2e23392a',1,1,'2019-02-07 17:37:55','',NULL),(1087,88,'Version','Livraison 7-2-2019_Release.zip','190207182512_f04ed5db85102beddef6b40a9f76eb53.zip',13920102,'application/x-zip-compressed','8ee73688613d68e8d0449482b85802c0',1,1,'2019-02-07 18:25:13','',NULL),(1088,89,'Version','OpenOpcUa_1_0_5_7_BETA03_TIAMA.zip','190208095219_OpenOpcUa_1_0_5_7_BETA03_TIAMA.zip',8804165,'application/x-zip-compressed','f44730e86c38f165e672d22546775ce1',1,1,'2019-02-08 09:52:19','',NULL),(1089,88,'Version','Livraison 8-2-2019 Release.zip','190208113005_433fe620492585180ef1a140f73e6464.zip',13915202,'application/x-zip-compressed','1b74cee39d27ff8122c2e3606d6afdc0',2,1,'2019-02-08 11:30:06','',NULL),(1090,1,'Project','Opc.Ua.CertificateGenerator.zip','190208160256_Opc.Ua.CertificateGenerator.zip',492299,'application/x-zip-compressed','b16c2431ac2073cadac1d8a710832c67',13,1,'2019-02-08 16:02:57','',NULL),(1091,93,'Version','SERVEUR-REV717A.zip','190213115454_SERVEUR-REV717A.zip',6019067,'application/x-zip-compressed','ee2d70631260630e6cad8f56fe3d36b4',1,328,'2019-02-13 11:54:54','',NULL),(1093,93,'Version','NodeSet-Export-13-02-2019.csv','190213132540_NodeSet-Export-13-02-2019.csv',2177692,'application/vnd.ms-excel','c417dd381ae2f909e0e412ac2970e878',1,1,'2019-02-13 13:25:40','',NULL),(1095,14,'Version','UAFlexClient_Release_1.0.0.3.zip','190217080856_UAFlexClient_Release_1.0.0.3.zip',9914090,'application/x-zip-compressed','23e2dbb4eb7b368e508aaf54ceea2463',7,1,'2019-02-17 08:08:57','',NULL),(1096,117,'Version','OLW-Wrapper_Siemens_Livraison_6-2-2019.zip','190218102724_OLW-Wrapper_Siemens_Livraison_6-2-2019.zip',36915062,'application/x-zip-compressed','a20863c00d092b94f853963742c83ec7',9,1,'2019-02-18 10:27:26','',NULL),(1097,116,'Version','Livraison 3-3-2019.zip','190303165730_95789c73d157672466203c9f1591265e.zip',1798049,'application/x-zip-compressed','0674acd00a1c070bc0f7dca0df4b71e1',1,1,'2019-03-03 16:57:30','',NULL),(1099,66,'Project','Compte rendu d_audit M2C-123-0605-14.docx','190311152805_965415b6bb2f1566fe994ce680e876a0.docx',667159,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','936aedd39677c15845a18cad8c939a09',4,1,'2019-03-11 15:28:05','',NULL),(1100,87,'Version','UserDefineStructures-Debug-x64.zip','190312153054_UserDefineStructures-Debug-x64.zip',3467321,'application/x-zip-compressed','5fdb840d54f9945bec643533f920ef8e',1,1,'2019-03-12 15:30:55','',NULL),(1103,117,'Version','OLW-Wrapper_Siemens_EnService_13-3_2019.zip','190314142811_OLW-Wrapper_Siemens_EnService_13-3_2019.zip',5535465,'application/x-zip-compressed','bde6cd1268c9b9162c5336db1b2cdaff',4,1,'2019-03-14 14:28:12','',NULL),(1104,67,'Version','PID148-149-150.xlsx','190315165123_PID148-149-150.xlsx',12177,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','61218c3ecf12764b4b10a0221dc90569',2,1,'2019-03-15 16:51:23','',NULL),(1105,59,'Version','Opc.Ua.NodeSet2.RSType.xml','190322111259_Opc.Ua.NodeSet2.RSType.xml',6494,'text/xml','d744d732313d8ed534a20b7de432b658',1,331,'2019-03-22 11:12:59','Fichier nodeSet de types RSS',NULL),(1106,61,'Version','VpiRss.zip','190322134751_VpiRss.zip',23306,'application/x-zip-compressed','1cabfd1e047289cee34570f4864576ec',2,1,'2019-03-22 13:47:51','',NULL),(1107,61,'Version','RssApi.zip','190322134956_RssApi.zip',14444,'application/x-zip-compressed','dc2c21071bc50d31bb0d64f2be3c791d',1,1,'2019-03-22 13:49:56','',NULL),(1109,59,'Version','Maquette-2019.zip','190322135543_Maquette-2019.zip',2346216,'application/x-zip-compressed','25b7829cef9f953d86551e6385155ec0',2,1,'2019-03-22 13:55:43','',NULL),(1110,100,'Version','Manuel de l_utilisateur-v1.00.pdf','190327161007_95b815d220fd3903312bad569a00c73d.pdf',1864132,'application/pdf','ce3cc58d26f2bd62b51c9a99750f1b2b',1,1,'2019-03-27 16:10:07','',NULL),(1113,101,'Version','OpenOpcUa_1_0_5_7_Beta04.zip','190329135700_OpenOpcUa_1_0_5_7_Beta04.zip',8624884,'application/x-zip-compressed','1a75bc674d9ea77b9bb2a6ded3b054f2',1,1,'2019-03-29 13:57:01','',NULL),(1116,360,'Issue','OPCUA certificats BadSignature.docx','190403112110_32483a42adc06d07817cea36909a65ac.docx',253749,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','e5e52a616c15059623cf0e26d623f8fe',0,353,'2019-04-03 11:21:10','',NULL),(1117,361,'Issue','bug_arret_serveur_Deb9x64.txt','190403114024_bug_arret_serveur_Deb9x64.txt',12314,'text/plain','a1f4b02da2b98cba5b8a2c93f3112208',0,353,'2019-04-03 11:40:24','',NULL),(1118,65,'Project','CSSI_ADP_P4_WRAPPER.zip','190403145550_CSSI_ADP_P4_WRAPPER.zip',3116408,'application/x-zip-compressed','7b19eaefc1b13766977e19967a2162a5',1,1,'2019-04-03 14:55:50','',NULL),(1119,122,'Version','VPIComDa.dll','190403172530_VPIComDa.dll',66048,'application/octet-stream','977350d432fe4d9279d6e770ce8a36c4',1,1,'2019-04-03 17:25:30','',NULL),(1121,121,'Version','Programme formation Sensibilation.docx','190403192636_6ccff0ad5b31ebc3be75d8cae3c369f3.docx',19717,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','7cac43af2c398cdb2c68c6da4824ec8f',2,1,'2019-04-03 19:26:36','',NULL),(1122,123,'Version','CSSI_ADP_P4_WRAPPER_4-4-2019.zip','190403234337_CSSI_ADP_P4_WRAPPER_4-4-2019.zip',3765770,'application/x-zip-compressed','a9f6373c4cf9e1e60ad4ff85edc69998',0,1,'2019-04-03 23:43:38','',NULL),(1123,121,'Version','Programme formation cas pratique.docx','190405101924_9ca06b579dd1b22757c807c970cbd7d8.docx',19616,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','ba51ed9cd316321412ca9b973d059033',1,1,'2019-04-05 10:19:24','',NULL),(1124,110,'Version','Maquette-MTP_VpiEx_Release.zip','190405165245_Maquette-MTP_VpiEx_Release.zip',2371610,'application/x-zip-compressed','1680ee98c65e5cdb10d2ea3187d6bab2',1,1,'2019-04-05 16:52:45','',NULL),(1125,110,'Version','Livraison 8-4-2019 v0.0.0.6.zip','190408231333_ba4fe5d48d17d51ac6e7e32a5c6698c6.zip',1829297,'application/x-zip-compressed','914f79c3aaf31547e51b4d7438f692b6',1,1,'2019-04-08 23:13:33','',NULL),(1132,103,'Version','OpenOpcUa_1_0_5_7_Beta05.zip','190415141807_OpenOpcUa_1_0_5_7_Beta05.zip',10185794,'application/x-zip-compressed','b547ac0425c3f691a059a632fd13ea7e',1,1,'2019-04-15 14:18:08','',NULL),(1133,106,'Version','OpenOpcUa_1_0_5_7_Beta05.zip','190415141843_OpenOpcUa_1_0_5_7_Beta05.zip',10185794,'application/x-zip-compressed','b547ac0425c3f691a059a632fd13ea7e',0,1,'2019-04-15 14:18:44','',NULL),(1134,101,'Version','OpenOpcUa_1_0_5_7_Beta05.zip','190415141912_OpenOpcUa_1_0_5_7_Beta05.zip',10185794,'application/x-zip-compressed','b547ac0425c3f691a059a632fd13ea7e',1,1,'2019-04-15 14:19:13','',NULL),(1135,61,'Version','OpenOpcUa_1_0_5_7_Beta05.zip','190415141943_OpenOpcUa_1_0_5_7_Beta05.zip',10185794,'application/x-zip-compressed','b547ac0425c3f691a059a632fd13ea7e',1,1,'2019-04-15 14:19:44','',NULL),(1136,363,'Issue','TEST VARIABLES OPC UA TYCO VPIEX 0.0.1.0- ESSAIS DU 150419.xlsx','190416010910_93cef83b1899326a9d412c249723c3fe.xlsx',18015,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','5c3862a65bf8d20ee20303831453fb68',0,328,'2019-04-16 01:09:10','',NULL),(1137,363,'Issue','Tyco-00200.log','190416010910_Tyco-00200.log',22976081,'application/octet-stream','6c7114733b9084638e67dc68ae650926',0,328,'2019-04-16 01:09:11','',NULL),(1138,364,'Issue','Capture_pb_de_certificats.PNG','190416113105_Capture_pb_de_certificats.PNG',47703,'image/png','11f26a0b8fd70c391e3c35256cf3e585',0,353,'2019-04-16 11:31:05','',NULL),(1139,364,'Issue','uaexpert.der','190416113106_uaexpert.der',1765,'application/x-x509-ca-cert','7f9e220633dfc1d530dd5ccee18491f6',0,353,'2019-04-16 11:31:06','',NULL),(1140,364,'Issue','UaExpert@pisa-043 [3B4140209A48C0FFDAECA47FC0ABFCA856629B69].der','190416113106_c5944b4e7efc40add7d1f23ea17cddcc.der',1262,'application/x-x509-ca-cert','50b90968de2136a2b43b98434a9bde58',0,353,'2019-04-16 11:31:06','',NULL),(1141,121,'Version','Sensibilisation a OPC UA.pdf','190416133336_7dba371ae044944b9e177385c86db61c.pdf',3255651,'application/pdf','5b733c04c914a3428696d396f44e2c3b',1,1,'2019-04-16 13:33:36','',NULL),(1142,363,'Issue','TEST VARIABLES OPC UA TYCO VPIEX 0.0.1.0- ESSAIS DU 190419.xlsx','190419202328_f3928744599ba1a9b9e2eb9dd72bc95d.xlsx',20534,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','3f4b7af98bddef3f43d22d008e61b47e',0,328,'2019-04-19 20:23:28','',NULL),(1144,363,'Issue','TEST VARIABLES OPC UA TYCO VPIEX 0.0.1.0- ESSAIS DU 220419.xlsx','190422110555_ec75f9ea4d238f168b0960873f45ad47.xlsx',20947,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','fd1db4a75637adae34fe6fa9ab6b208b',0,1,'2019-04-22 11:05:55','',NULL),(1145,66,'Project','QCM123-1203-19-v0.0.1.docx','190423204051_QCM123-1203-19-v0.0.1.docx',508115,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','19d52d381f57bc25933c05ec6d41d264',1,1,'2019-04-23 20:40:51','',NULL),(1146,66,'Project','Etat des lieux-123-1203-19.docx','190423204107_36f9f1e74cc82a4702f0c020ed8639b6.docx',292823,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','750ac7e88771daecb7082d2f11ff4d22',1,1,'2019-04-23 20:41:07','',NULL),(1147,363,'Issue','TEST VARIABLES OPC UA TYCO VPIEX 0.0.1.1- ESSAIS DU 230419.xlsx','190423234333_b363b552c582c540ffd38ef0fa1a0e90.xlsx',28662,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','502484c121e66e13740eb45566c2077c',0,328,'2019-04-23 23:43:33','',NULL),(1148,366,'Issue','CPF_L04.log','190425153536_CPF_L04.log',27303,'application/octet-stream','91cc2d21b22209a3c05f2e73cb153cc8',0,353,'2019-04-25 15:35:36','',NULL),(1149,367,'Issue','CMakeLists.txt','190426103550_CMakeLists.txt',1277,'text/plain','ea81791378d5366abab4c47d9fb1601a',0,1,'2019-04-26 10:35:50','',NULL),(1150,372,'Issue','Capture.JPG','190429165143_Capture.JPG',80250,'image/jpeg','1f0824a9f52c9494cb6e35833f716b02',0,328,'2019-04-29 16:51:43','',NULL),(1151,110,'Version','Livraison 30-4-2019 v0.0.1.2.zip','190430180739_0049627b48231747f4ba24c278ddd271.zip',3688617,'application/x-zip-compressed','907226c55ecd8c1786dac6224b105244',2,1,'2019-04-30 18:07:39','',NULL),(1152,375,'Issue','Tyco-00200.log','190430210702_Tyco-00200.log',2019752,'application/octet-stream','19edcc153ac950d400c4aa2ce068d179',0,328,'2019-04-30 21:07:02','',NULL),(1158,66,'Version','PTP_Protocol_Specification__95191_4CE_Industry.pdf','190503123047_PTP_Protocol_Specification__95191_4CE_Industry.pdf',754409,'application/pdf','3f0e727f1c47357e1df84879f961bdc8',1,1,'2019-05-03 12:30:47','',NULL),(1159,66,'Project','Profile123-1203-19.docx','190503141914_Profile123-1203-19.docx',34414,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','97293bdd629289b90ec62598131f3561',1,1,'2019-05-03 14:19:14','',NULL),(1161,66,'Project','Profile123-1203-19-V0.2.docx','190507180849_Profile123-1203-19-V0.2.docx',34269,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','09fc5511a2018e0757199c14e3efa030',2,1,'2019-05-07 18:08:49','',NULL),(1162,66,'Project','SII_900_FLI_005_A_3 - pqt.docx','190507185017_b515f1a0e2bd1a6c48eecfb25bba59f6.docx',153480,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','fc508615cc7a8ec4c840f1b33bc9aa82',1,401,'2019-05-07 18:50:17','FLI SUP 900 sur OPC-UA',NULL),(1164,110,'Version','Livraison_9-5-2019 _VpiTycoEx_0.0.1.9.zip','190509192112_c026aae1e2ec60febe1627ff2afbd2cf.zip',1834664,'application/x-zip-compressed','ae407d491dc7294e9b77aac7f91ca216',1,1,'2019-05-09 19:21:12','',NULL),(1165,110,'Version','TEST VARIABLES OPC UA TYCO VPIEX 0.0.1.9- ESSAIS DU 100519.xlsx','190510111411_275a36a92bfb63158953c501e1b88976.xlsx',19751,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','be7e74de46219184907c776b60596df1',1,328,'2019-05-10 11:14:11','TEST VARIABLES OPC UA TYCO VPIEX 0.0.1.9- ESSAIS DU 100519',NULL),(1166,52,'Project','setup-opc-ua-1.02-compliance-test-tool-v1.2.336.273-20160603.zip','190514175632_setup-opc-ua-1.02-compliance-test-tool-v1.2.336.273-20160603.zip',20059442,'application/x-zip-compressed','011b54be8d9baf5e893206e8409180de',0,1,'2019-05-14 17:56:32','',NULL),(1167,110,'Version','Livraison 15-5-2019 v0.0.2.0.zip','190515105842_5737323b015890e592c03f8470d47ada.zip',1834713,'application/x-zip-compressed','57ee337a2b71e21e9d7f8a766426a7a1',1,1,'2019-05-15 10:58:42','',NULL),(1172,70,'Version','ProcDump.zip','190515184600_ProcDump.zip',293771,'application/x-zip-compressed','7b4b879b6faa9a63f0b2ad9339ebadb4',2,1,'2019-05-15 18:46:00','',NULL),(1175,66,'Project','PXZ16C034268000MCIB [B] - dossier de conception détaillée de interface UIS.pdf','190614084807_9e1328fe1f3819633df237e6e2904621.pdf',936470,'application/pdf','338f7e765d492d4bd71dd35200b25b74',0,401,'2019-06-14 08:48:07','specs OPC sur KCF/UIS sur 1300-M2C',NULL),(1176,66,'Project','PXZ17K000130216MCIM_E_BPE-protocoles.pdf','190614084914_PXZ17K000130216MCIM_E_BPE-protocoles.pdf',1018421,'application/pdf','5bf652560295cbd64cd10f2225c8daaa',1,401,'2019-06-14 08:49:14','specs OPC sur le SI M2C (modèle de données)',NULL),(1177,66,'Project','QCM123-1203-19-v0.0.1_AEOS_2019_05_21.docx','190614085008_QCM123-1203-19-v0.0.1_AEOS_2019_05_21.docx',513955,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','9282518ee91e3acccb52e2b26d4cc476',0,401,'2019-06-14 08:50:08','réponse d\'AEOS sur le QCM',NULL),(1178,391,'Issue','UaExpert_OldCert.log','190627073357_UaExpert_OldCert.log',3209,'application/octet-stream','350f6cee967288e1ba45a1a6215b9a26',0,353,'2019-06-27 07:33:57','',NULL),(1179,391,'Issue','UaExpert_NewCert.log','190627073357_UaExpert_NewCert.log',6970,'application/octet-stream','0150df588d01b8f49f8ad35e1c29be39',0,353,'2019-06-27 07:33:57','',NULL),(1180,391,'Issue','CPF_L04.log','190627073358_CPF_L04.log',2242180,'application/octet-stream','88bdb5054b7167fb350a59251d324b44',0,353,'2019-06-27 07:33:58','',NULL),(1181,66,'Project','CCN4.results.xml.zip','190628154419_CCN4.results.xml.zip',268898,'application/x-zip-compressed','db44861f6f2dd6b2743bfceec414b851',2,401,'2019-06-28 15:44:19','tests de SHT avec le CTT sur le palier N4',NULL),(1182,66,'Project','Les profils OPC UA du Poste Principal PSAD.odt','190701163106_983376e9f47b446727b04268ceb8cb30.odt',17413,'application/vnd.oasis.opendocument.text','adb6a4e129d999197188154dc611c32e',1,401,'2019-07-01 16:31:06','liste de facets sur PSAD (réponse ATOS)',NULL),(1183,66,'Project','QCM123-1203-19-v0.0.1_Réponses.docx','190701163212_f79004dfb5b1dc73966bbcbda5869681.docx',514895,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','ab39a82c03e8bdeed27057e3cb6601e4',1,401,'2019-07-01 16:32:12','réponse ATOS au QCM sur PSAD',NULL),(1184,66,'Project','certificats-OPC.pdf','190701165951_certificats-OPC.pdf',90063,'application/pdf','1b926e9719d6cd02eda50df746efa6a9',1,401,'2019-07-01 16:59:51','copie de mon mail, que je voudrais voir intégré dans le livrable final sur lequel on travaille ...',NULL),(1185,119,'Version','OpenOpcUa_1_0_5_7_RC05.zip','190702134441_OpenOpcUa_1_0_5_7_RC05.zip',12832663,'application/x-zip-compressed','2755f0746294fa3f81d74de05fa04ced',8,1,'2019-07-02 13:44:42','',NULL),(1186,119,'Version','changelog1.0.5.7.txt','190702134606_changelog1.0.5.7.txt',1811,'text/plain','6ea7802c5f5cc6dd863f3b7ac55cdb80',11,1,'2019-07-02 13:46:06','',NULL),(1187,126,'Version','VPIS7_1.0.0.4.zip','190710154154_VPIS7_1.0.0.4.zip',16848,'application/x-zip-compressed','12ca34a40aa1f106300f372bee748599',0,1,'2019-07-10 15:41:54','',NULL),(1188,66,'Project','PXZ17KIT7080216MCIM_C_BPE-interface-FED-SAD.pdf','190715103930_PXZ17KIT7080216MCIM_C_BPE-interface-FED-SAD.pdf',737388,'application/pdf','ec5383ad2cd0c7b247da68dcbccd51a3',2,401,'2019-07-15 10:39:31','spec sur M2C (lot B) sur le modèle de données OPC-UA du SAD',NULL),(1191,66,'Project','PXZ17K007200216MCIM-BPO [A] [ ]-interface-SUP-divers.pdf','190715104032_f9df24dbdca965d68734ca41c7759f8f.pdf',1165587,'application/pdf','d6a8e6ff08a86fbe6ec37008c52ffa1e',2,401,'2019-07-15 10:40:32','interface M2C sur le modèle de données OPC-UA lors d\'une connexion avec SUP',NULL),(1193,66,'Project','PXZ17KIT4000390MCID_B_BPE SBL_GEN_FED_DS3.pdf','190718093350_13021e1ab837d8bbd820d4b16ea8a77e.pdf',748153,'application/pdf','6cfa6789d06089915965191bde7bc422',3,401,'2019-07-18 09:33:50','FED DS3 sur le lot B de M2C',NULL),(1194,66,'Project','CCN4.ctt.xml','190719143621_CCN4.ctt.xml',854382,'text/xml','1af8e2383a88a19f463ffb946c511540',0,401,'2019-07-19 14:36:21','secu CC N4 (SHT)',NULL),(1195,66,'Project','Draft-politique-sécurité-900-OPC.docx','190725164323_b45bec0e99b26307b089b84ed8de310e.docx',24111,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','71914fc528f334d6fe60003e72040454',1,401,'2019-07-25 16:43:23','draft de politique de sécurité sur OPC-UA',NULL),(1196,66,'Project','Facet_KON_900.docx','190806083116_Facet_KON_900.docx',19045,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','68529543fb7b537c217d3d92ef53e910',1,401,'2019-08-06 08:31:16','liste de facets sur KON 900 (et FED M2C) par AEOS, suite à la réunion du 1er août',NULL),(1197,66,'Project','Réponse aux Profiles 123-1203-19-V0.2-SNEF-CS-1300.docx','190826172848_715f0a0d998e9def823e9ce881da2f20.docx',43420,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','d1b4fc5459c53b6b3bc1acb9beeb5b77',0,401,'2019-08-26 17:28:48','réponse de SNEF sur le CS 1300 M2C',NULL),(1198,66,'Project','CCN4.ctt.xml','190830081424_CCN4.ctt.xml',854382,'text/xml','1af8e2383a88a19f463ffb946c511540',0,401,'2019-08-30 08:14:24','CTT de SHT sur palier N4',NULL),(1199,66,'Project','CCN4.results.xml.zip','190830081459_CCN4.results.xml.zip',268898,'application/x-zip-compressed','db44861f6f2dd6b2743bfceec414b851',0,401,'2019-08-30 08:14:59','suite CTT SHT sur N4',NULL),(1200,66,'Project','CTT_resultat.txt','190830081534_CTT_resultat.txt',777,'text/plain','261acf787c376c3d3196863850c7d0b7',0,401,'2019-08-30 08:15:34','suite CTT SHT sur palier N4',NULL),(1201,66,'Project','ExempleNodeSet.xml','190902105003_ExempleNodeSet.xml',110626,'text/xml','9e54fad3554528bb4050c24a047f32db',1,401,'2019-09-02 10:50:03','CTT SHT sur palier N4 (modèle de données)',NULL),(1202,127,'Version','EDF DIPDE - Etat des lieux-123-1203-19_v0.3.docx','190902131250_adc42a3264abc986d0cee295723bfba5.docx',960709,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','b531f3a59228cba6d6ef594c7405d764',1,1,'2019-09-02 13:12:50','',NULL),(1203,66,'Project','EDF DIPDE - Etat des lieux-123-1203-19_v0.3-pqt.docx','190902174220_a957fb81b2e813ace3268019d1f5bc3a.docx',975303,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','7501bf38ff947e31267e840dfe96b8b2',1,401,'2019-09-02 17:42:20','remarques PQT sur le draft de livrable',NULL),(1204,127,'Version','EDF DIPDE - Etat des lieux-123-1203-19_v0.4.docx','190903115423_c54407727d1feb97ccf97e33daf7ab41.docx',985049,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','95aa4535806bf50a80a8837e38ab9896',1,1,'2019-09-03 11:54:23','',NULL),(1205,66,'Project','HTIT1_100508806_105 DC - ind B - BPO - Dossier de conception fonctionnelle Sécurisation CC N4.pdf','190904143546_bee0bb2a894814639753f93dc5532cb8.pdf',5009503,'application/pdf','e20cfc8a2495cc0e40701604a99f3323',1,401,'2019-09-04 14:35:47','specs OPC UA de SHT sur le palier N4',NULL),(1206,128,'Version','uactt-v1.03.341.389-x86-64.appimage-20190418.zip','190904155321_uactt-v1.03.341.389-x86-64.appimage-20190418.zip',16050543,'application/x-zip-compressed','5e0d4ee8f8ad1a53146a08aafffd349e',2,1,'2019-09-04 15:53:22','',NULL),(1207,103,'Version','OpenOpcUa_1_0_5_7_RC06.zip','190904192747_OpenOpcUa_1_0_5_7_RC06.zip',7806067,'application/x-zip-compressed','9909a88e615f0d9c49e7c137d916b9ff',1,1,'2019-09-04 19:27:47','',NULL),(1208,66,'Project','EDF DIPDE - Etat des lieux-123-1203-19_v0.4-pqt.docx','190905101100_f6b89fe187a269204f8203e88fdbf4b7.docx',1025874,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','2c9afa9e4e74540590ebfe0f8fa7daf7',2,401,'2019-09-05 10:11:00','version complétée par PQTdu livrable final',NULL),(1209,103,'Version','OpenOpcUa_1_0_5_7_RC07_PISA.zip','190905112114_OpenOpcUa_1_0_5_7_RC07_PISA.zip',7821013,'application/x-zip-compressed','f43c4b5fa47b35aa5a983fe7abfcc5f4',1,1,'2019-09-05 11:21:15','',NULL),(1210,60,'Version','OpenOpcUa_1_0_5_7_RC07_TIAMA.zip','190905112335_OpenOpcUa_1_0_5_7_RC07_TIAMA.zip',7987270,'application/x-zip-compressed','dcf151facce8e2566b95c60b3c04832c',1,1,'2019-09-05 11:23:35','',NULL),(1211,110,'Version','Livraison_5-9-2019_VpiTycoEx_0.0.2.9.zip','190905200032_Livraison_5-9-2019_VpiTycoEx_0.0.2.9.zip',1844766,'application/x-zip-compressed','ce85b7567fb4952a510b37dd3bbac337',1,1,'2019-09-05 20:00:34','',NULL),(1212,66,'Project','EDF DIPDE - Etat des lieux-123-1203-19_v0.5-pqt.docx','190906145413_e8e711b1980cebc89294c2f6c4f33b83.docx',1023129,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','17524022704a7dbe3f1596e2c497922d',2,401,'2019-09-06 14:54:13','',NULL),(1213,121,'Version','Sensibilisation à OPC UA.pptx','190909102509_17a4dbce2ce1178604447369369a5a94.pptx',34716750,'application/vnd.openxmlformats-officedocument.presentationml.presentation','ec9b97922ab039cdf424cdafca1846d7',0,1,'2019-09-09 10:25:10','',NULL),(1214,397,'Issue','CPF_L04.pfx','190926115748_CPF_L04.pfx',4325,'application/x-pkcs12','61ad9dbd299c4d54d894413f0b2cc670',0,353,'2019-09-26 11:57:48','',NULL),(1215,397,'Issue','CPF_L04.der','190926115748_CPF_L04.der',1574,'application/x-x509-ca-cert','7c2ab24730d2f5ebb453a2e5e8694958',0,353,'2019-09-26 11:57:48','',NULL),(1216,397,'Issue','Capture.PNG','190927135045_Capture.PNG',14728,'image/png','a4de281927536a66ba4aa4fc41f214db',0,353,'2019-09-27 13:50:45','',NULL),(1217,397,'Issue','Capture.PNG','191002075219_Capture.PNG',14728,'image/png','a4de281927536a66ba4aa4fc41f214db',0,353,'2019-10-02 07:52:19','',NULL),(1218,68,'Project','OpenOpcUaConfigManager - Delivrable Beta 0.8.2 - Debug.zip','191009103829_165cf995880de3fd24b323be831577bb.zip',14211792,'application/x-zip-compressed','5f8a73c11541b13e401da3e91a8c5d11',0,1,'2019-10-09 10:38:30','',NULL),(1219,129,'Version','Manuel de l_utilisateur-v1.01.pdf','191009105508_7641c34355adcfc69a1d5e8d4057248f.pdf',1772303,'application/pdf','874b42098c99770063b33e07c6f27b34',1,1,'2019-10-09 10:55:08','',NULL),(1220,132,'Version','DemoMT-09-10-2019.zip','191009140039_DemoMT-09-10-2019.zip',6660862,'application/x-zip-compressed','1a8df10bdb57dea54b085a0cf0731453',1,1,'2019-10-09 14:00:39','',NULL),(1221,130,'Version','RunTimeDebugVS2013.zip','191009141652_RunTimeDebugVS2013.zip',1162798,'application/x-zip-compressed','a8c364a25e183fb201470f1e732791d4',2,1,'2019-10-09 14:16:52','',NULL),(1222,130,'Version','ProcDump.zip','191009153326_ProcDump.zip',293771,'application/x-zip-compressed','7b4b879b6faa9a63f0b2ad9339ebadb4',1,1,'2019-10-09 15:33:26','',NULL),(1223,132,'Version','MT_Config.oouaprj','191009161317_MT_Config.oouaprj',1320,'application/octet-stream','54d48d26ca42ab3b29930d34c9cfb474',0,223,'2019-10-09 16:13:18','',NULL),(1224,132,'Version','Opc.Ua.NodeSet2.MT_Instances.xml','191009161318_Opc.Ua.NodeSet2.MT_Instances.xml',41742298,'text/xml','13001174945950fac6b450405ad78157',0,223,'2019-10-09 16:13:20','',NULL),(1225,132,'Version','Opc.Ua.NodeSet2.MT_Types.xml','191009161321_Opc.Ua.NodeSet2.MT_Types.xml',38285,'text/xml','a31c70a237ede3d0b6694176e7e77728',0,223,'2019-10-09 16:13:21','',NULL),(1226,132,'Version','SubSystem.VpiRau.xml','191009161321_SubSystem.VpiRau.xml',15834783,'text/xml','573727a7a2784211163766e7debd21b3',0,223,'2019-10-09 16:13:22','',NULL),(1227,131,'Version','OpenOpcUa_1_0_5_7_RC08_MT.zip','191010122602_OpenOpcUa_1_0_5_7_RC08_MT.zip',7846606,'application/x-zip-compressed','274e910087894ad8e7892356f0fbf6b1',1,1,'2019-10-10 12:26:03','',NULL),(1228,68,'Project','TermLcrPourTestVpiUDP.zip','191010142945_TermLcrPourTestVpiUDP.zip',1583890,'application/x-zip-compressed','7946f956eec59fd185c886636554aa49',0,223,'2019-10-10 14:29:45','Terminal UDP pour test VPI, voir explications.txt',NULL),(1229,401,'Issue','OpenOpcUaCoreServer_Release.exe_191011_124842.zip','191015155843_OpenOpcUaCoreServer_Release.exe_191011_124842.zip',50294109,'application/x-zip-compressed','ac7c33ae657f23acd91652c233f39bcb',0,328,'2019-10-15 15:58:46','',NULL),(1230,401,'Issue','OpenOpcUaCoreServer_Release.exe_191011_124530.zip','191015155848_OpenOpcUaCoreServer_Release.exe_191011_124530.zip',45170189,'application/x-zip-compressed','1851e1576ae8e822a63c119c72fa75e5',0,328,'2019-10-15 15:58:50','',NULL),(1231,401,'Issue','OpenOpcUaCoreServer.log','191015155851_OpenOpcUaCoreServer.log',12344,'application/octet-stream','32752ca19e4748c3fd4293b2fb38914e',0,328,'2019-10-15 15:58:51','',NULL),(1232,401,'Issue','OpenOpcUaCoreServer.bak','191015155851_OpenOpcUaCoreServer.bak',12884,'application/octet-stream','2c22f553bea37269ba1e12c8bc4d7c30',0,328,'2019-10-15 15:58:52','',NULL),(1233,133,'Version','Simulation_2019_Release_x32.zip','191024111354_Simulation_2019_Release_x32.zip',1851341,'application/x-zip-compressed','1a6b00c8d5e960dde4e69e70d76e7ae2',4,1,'2019-10-24 11:13:54','',NULL),(1234,135,'Version','OpenOpcUa_J3.pdf','191025143225_OpenOpcUa_J3.pdf',4309358,'application/pdf','aae7a48094dcbaed5cb625e5dcb94a97',5,1,'2019-10-25 14:32:25','',NULL),(1241,134,'Version','OpenOpcUa_1_0_5_7_RC08_JPB.zip','191025163313_OpenOpcUa_1_0_5_7_RC08_JPB.zip',7826250,'application/x-zip-compressed','5b76103e5f55dcff2b5c25a45877c518',3,1,'2019-10-25 16:33:13','',NULL),(1242,402,'Issue','Certificats_Tyco.zip','191029103411_Certificats_Tyco.zip',18090,'application/x-zip-compressed','35c65cec3dd2743fc73c9e674c9a9071',0,328,'2019-10-29 10:34:11','',NULL),(1243,67,'Version','Maquette-MTP_VpiEx_Release_x64_v0.0.3.0.zip','191106232150_Maquette-MTP_VpiEx_Release_x64_v0.0.3.0.zip',2872708,'application/x-zip-compressed','3f51133e327cb87c0bf92ae7233aeed9',1,1,'2019-11-06 23:21:50','',NULL),(1244,70,'Version','OOUA_x64_VpiTycoEx_0.0.3.0.zip','191106232305_OOUA_x64_VpiTycoEx_0.0.3.0.zip',2312267,'application/x-zip-compressed','4e6dd3d0c8a218e8e14a51d956a6accb',3,1,'2019-11-06 23:23:05','',NULL),(1245,103,'Version','OpenOpcUa_1_0_5_7_RC09.zip','191107093246_OpenOpcUa_1_0_5_7_RC09.zip',8679235,'application/x-zip-compressed','3ed3846b3cd0c04aa65db461ea60fb37',1,1,'2019-11-07 09:32:46','',NULL),(1246,404,'Issue','valgrind_1.0.5.7_RC09','191112104708_valgrind_1.0.5.7_RC09',24629,'application/octet-stream','948334242b223b73bb84b347854b8ed1',0,353,'2019-11-12 10:47:08','',NULL),(1247,66,'Project','Opc.Ua.Nodeset2.Modele-N4-V0.97a.xml','191114084523_Opc.Ua.Nodeset2.Modele-N4-V0.97a.xml',90947,'text/xml','0728d786fa5d429289e53d7cba243405',2,401,'2019-11-14 08:45:23','données d\'entrée SHT pour NODESET',NULL),(1248,66,'Project','Opc.Ua.NodeSet2.Modele-N4-DataType-V0.97a.xml','191114084541_Opc.Ua.NodeSet2.Modele-N4-DataType-V0.97a.xml',17019,'text/xml','b40d4403fdcb46e7e220f4492227f867',3,401,'2019-11-14 08:45:41','données d\'entrée SHT pour NODESET',NULL),(1249,131,'Version','OpenOpcUa_1_0_5_7_RC10.zip','191114230911_OpenOpcUa_1_0_5_7_RC10.zip',12864929,'application/x-zip-compressed','b5d269375057df68f1b4019d31a58aed',1,1,'2019-11-14 23:09:12','',NULL),(1250,103,'Version','OpenOpcUa_1_0_5_7_RC11.zip','191118102833_OpenOpcUa_1_0_5_7_RC11.zip',7823057,'application/x-zip-compressed','1a43fe2415149e2b803221be9ea6228a',1,1,'2019-11-18 10:28:33','',NULL),(1251,131,'Version','OpenOpcUa_1_0_5_7_RC11_MT.zip','191118103510_OpenOpcUa_1_0_5_7_RC11_MT.zip',7855710,'application/x-zip-compressed','e482487a2b7773656d3267c6ee68b4d9',1,1,'2019-11-18 10:35:10','',NULL),(1252,407,'Issue','valgrind.txt','191119105417_valgrind.txt',10823,'text/plain','512fe7d13e8007aa5c8bda6f5ffa9715',0,353,'2019-11-19 10:54:17','',NULL),(1253,407,'Issue','Conf_OpcUA.zip','191119105417_Conf_OpcUA.zip',255378,'application/x-zip-compressed','648e6045116bd8efb67cf5042281cd1f',0,353,'2019-11-19 10:54:17','',NULL),(1254,407,'Issue','CPF_L04.log','191119105417_CPF_L04.log',48792,'application/octet-stream','d0cda97f4a3ee5d429bb75d4bce388bc',0,353,'2019-11-19 10:54:17','',NULL),(1255,407,'Issue','Simulation_2019.zip','191120112200_Simulation_2019.zip',5538032,'application/x-zip-compressed','be00134fb5629020f65d89c05ca0e725',0,1,'2019-11-20 11:22:00','',NULL),(1256,70,'Version','openssl_x64.zip','191120114109_openssl_x64.zip',1519542,'application/x-zip-compressed','4ef4846fcc0d8521c603cb87fc893b43',1,1,'2019-11-20 11:41:09','',NULL),(1257,103,'Version','OpenOpcUa_1_0_5_7_RC12.zip','191120171428_OpenOpcUa_1_0_5_7_RC12.zip',7823196,'application/x-zip-compressed','f8b1d15b5f23a09f52726df87086df45',1,1,'2019-11-20 17:14:29','',NULL),(1258,131,'Version','OpenOpcUa_1_0_5_7_RC12.zip','191120171551_OpenOpcUa_1_0_5_7_RC12.zip',7823196,'application/x-zip-compressed','f8b1d15b5f23a09f52726df87086df45',1,1,'2019-11-20 17:15:51','',NULL),(1259,66,'Project','PB17KGB0034556MCIM Spécifications des interfaces de communication OAP N4.pdf','191126125813_a0118e8d7d30b1c2bc9dd2e9053d3b24.pdf',950309,'application/pdf','2bfbca7797a740509bc08cece72d99b1',0,401,'2019-11-26 12:58:14','specs OAP N4',NULL),(1260,66,'Project','PB17KGB0034556MCIM Spécifications des interfaces de communication OAP N4.pdf','191126125822_a0118e8d7d30b1c2bc9dd2e9053d3b24.pdf',950309,'application/pdf','2bfbca7797a740509bc08cece72d99b1',0,401,'2019-11-26 12:58:22','specs OAP N4',NULL),(1262,137,'Version','Opc.Ua.NodeSet2.Modele-N4-DataType-V0.98.xml','191206183901_Opc.Ua.NodeSet2.Modele-N4-DataType-V0.98.xml',58060,'text/xml','968c5058c418b84288ab2a43edc2b632',2,1,'2019-12-06 18:39:01','',NULL),(1263,137,'Version','Opc.Ua.Nodeset2.Modele-N4-V0.98.xml','191206183914_Opc.Ua.Nodeset2.Modele-N4-V0.98.xml',107764,'text/xml','4de634c217f947ea9109e3d1b40cc4fe',2,1,'2019-12-06 18:39:14','',NULL),(1264,137,'Version','N4-DataType-Script.xml','191206183929_N4-DataType-Script.xml',63665,'text/xml','d914fd1d340d315512701052bdcc558f',2,1,'2019-12-06 18:39:29','',NULL),(1265,137,'Version','N4-Type-Script.xml','191206183943_N4-Type-Script.xml',256564,'text/xml','76a76767d4e5b07c6ac677af72fa32ce',3,1,'2019-12-06 18:39:43','',NULL),(1266,137,'Version','EDF-123-2803-17 N4-V0.98.docx','191206184003_8b1617050b167105384ca52afc4da69d.docx',1120531,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','ff872553b6a51b0453ad1364586eb70a',2,1,'2019-12-06 18:40:03','',NULL),(1268,412,'Issue','OLW.xml','191216171754_OLW.xml',4792578,'text/xml','7a7e8ded8c0563ac252192ec5a6630bb',0,328,'2019-12-16 17:17:55','',NULL),(1269,66,'Project','DDT+XSD.zip','191217164145_4c352c242b57f7fe7f953fde3908316a.zip',744091,'application/x-zip-compressed','a199a5985ef69d86eef5e0c803a30dc3',0,401,'2019-12-17 16:41:45','DDT KIT (serveur OPC-UA) sur 1300-M2C',NULL),(1270,138,'Version','ModelisationUA.pptx','191217165333_ModelisationUA.pptx',44082,'application/vnd.openxmlformats-officedocument.presentationml.presentation','09de84cb4973ceeeebb1c942b77f4311',0,1,'2019-12-17 16:53:33','',NULL),(1271,110,'Version','Livraison_18-12-2019.zip','191218142321_Livraison_18-12-2019.zip',2314495,'application/x-zip-compressed','30539042c7449e2149b5e98be2ec3557',1,1,'2019-12-18 14:23:21','',NULL),(1272,67,'Version','Maquette-MTP-Debug.oouaprj','191218142417_Maquette-MTP-Debug.oouaprj',1731,'text/xml','7cb33d7519eaa25a0f80c81128dd9871',1,1,'2019-12-18 14:24:17','',NULL),(1273,135,'Version','Principe d_Architecture.vsdx','191220115649_1fe7059f082abe39b273e0d44113ca90.vsdx',42518,'application/vnd.ms-visio.drawing','1645f0b74b0151bfb01068bfb3fb833d',2,1,'2019-12-20 11:56:50','',NULL),(1274,134,'Version','OpenOpcUa_1_0_5_7_RC13.zip','191220120932_OpenOpcUa_1_0_5_7_RC13.zip',7819704,'application/x-zip-compressed','f693bb0cdaedcb77c2c8627f5fc51eef',2,1,'2019-12-20 12:09:32','',NULL),(1275,133,'Version','DemoVpiNullEx-x64.zip','191220155454_DemoVpiNullEx-x64.zip',2661828,'application/x-zip-compressed','b53006249c4d62282a0e8439b52573fc',1,1,'2019-12-20 15:54:54','',NULL),(1276,133,'Version','Opc.Ua.NodeSetFanuc..xml','191220161442_Opc.Ua.NodeSetFanuc..xml',3342,'text/xml','ad63845676c74a952ce5e3a4efc8bc46',1,1,'2019-12-20 16:14:42','',NULL),(1277,66,'Project','Analyse de l_outil UACTT-OAP N4.pdf','200110112638_5846b604dbb27103694876a0fb7d64e2.pdf',701530,'application/pdf','8504ce086f2d60dec7277d7f1c59d2fa',1,401,'2020-01-10 11:26:38','analyse WORD de SOPRA STERIA suite au passage CTT de l\'OAP N4',NULL),(1279,110,'Version','VpiTycoEx_0.0.3.2.zip','200110162747_VpiTycoEx_0.0.3.2.zip',111777,'application/x-zip-compressed','9ecf9294c81e2f89349614aeac7931c7',1,1,'2020-01-10 16:27:47','',NULL),(1280,110,'Version','VpiTycoEx_0.0.3.3.zip','200110163841_VpiTycoEx_0.0.3.3.zip',111770,'application/x-zip-compressed','d57ecdef26f8b182dcdc65757fe24a4b',1,1,'2020-01-10 16:38:41','',NULL),(1281,66,'Project','dictionary_stringbytes.dat','200115141846_dictionary_stringbytes.dat',21864,'text/plain','1405c3f492111e090a02efd3af2dfb9b',1,401,'2020-01-15 14:18:46','serveur N4-dictionnaire de données extrait par SHT, suite à notre entretien avec Maxime',NULL),(1282,137,'Version','ModelisationUA.pptx','200121150547_ModelisationUA.pptx',44082,'application/vnd.openxmlformats-officedocument.presentationml.presentation','09de84cb4973ceeeebb1c942b77f4311',1,1,'2020-01-21 15:05:47','',NULL),(1283,66,'Project','idee-SIMU-V0.pptx','200121171705_idee-SIMU-V0.pptx',46784,'application/vnd.openxmlformats-officedocument.presentationml.presentation','a3abb97ccdc37773fb010bbb97729a7f',1,401,'2020-01-21 17:17:05','premieres reflexions sur le simulateur de données OPC-UA',NULL),(1284,61,'Version','OpenOpcUa_1_0_5_7_ResolutionSpectra.zip','200126132407_OpenOpcUa_1_0_5_7_ResolutionSpectra.zip',7891756,'application/x-zip-compressed','cccf44bba8e7df382c5afecc77c6a093',1,1,'2020-01-26 13:24:08','',NULL),(1285,82,'Version','OpenOpcUa_1_0_5_7_MedianeSysteme.zip','200131095835_OpenOpcUa_1_0_5_7_MedianeSysteme.zip',7849924,'application/x-zip-compressed','9e9fd02f322f6f224ab4b2826e68d0fd',5,1,'2020-01-31 09:58:36','',NULL),(1286,413,'Issue','ConfigOpenOpcUa.oouaprj','200210100948_ConfigOpenOpcUa.oouaprj',1502,'text/xml','c4feee442840179a60e6c84e768b7a04',0,1,'2020-02-10 10:09:48','',NULL),(1287,110,'Version','Livraison 19-2-2020 v0.0.3.4.zip','200219104209_2ce2b42b0bfbe6a5e19143df16529c28.zip',2075603,'application/x-zip-compressed','09cc18f41f973f08454fb9a55e012265',2,1,'2020-02-19 10:42:10','',NULL),(1289,137,'Version','Demo_Tank-N4_Release_x64.zip','200227205051_Demo_Tank-N4_Release_x64.zip',2323367,'application/x-zip-compressed','3ca0b71c3fbc2112c337de09a1bb84be',3,1,'2020-02-27 20:50:51','Demo Modele N4 Non-Simulé 27-2-2020',NULL),(1290,420,'Issue','SamesKremlin API.docx','200228104037_4ef3db339df7912f4e372ae84cb08861.docx',298478,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','c1314dc08568af17ff195029e37acb9f',0,420,'2020-02-28 10:40:37','',NULL),(1291,417,'Issue','ListCommand_SK.pptx','200228104628_ListCommand_SK.pptx',1177216,'application/vnd.openxmlformats-officedocument.presentationml.presentation','bf424c621048569ddc268e2cd23046a4',0,420,'2020-02-28 10:46:28','',NULL),(1292,110,'Version','VpiTycoEx_0.0.3.5.zip','200228173043_VpiTycoEx_0.0.3.5.zip',111976,'application/x-zip-compressed','07b8628e12b0621fea246ee3117829a5',2,1,'2020-02-28 17:30:43','',NULL),(1293,110,'Version','VpiTycoEx_0.0.3.6.zip','200304182625_VpiTycoEx_0.0.3.6.zip',112011,'application/x-zip-compressed','af03481b40dc326324d422f98fed6164',1,1,'2020-03-04 18:26:25','',NULL),(1294,139,'Version','SamesKremlin API.docx','200401110119_4ef3db339df7912f4e372ae84cb08861.docx',198062,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','999010354f749a16d00a5d326ac7a1ff',5,1,'2020-04-01 11:01:19','',NULL),(1295,127,'Version','idee-SIMU-V01.pptx','200401180714_idee-SIMU-V01.pptx',65550,'application/vnd.openxmlformats-officedocument.presentationml.presentation','3d0449dd1dd212162e232af08de4e4bc',1,1,'2020-04-01 18:07:14','',NULL),(1296,138,'Version','ObjectTypeVsVariableType.pptx','200403101006_ObjectTypeVsVariableType.pptx',81137,'application/vnd.openxmlformats-officedocument.presentationml.presentation','a9daaa029a3589a18cb29a745d3d2340',1,1,'2020-04-03 10:10:06','',NULL),(1297,138,'Version','idee-SIMU-V2.pptx','200504161227_idee-SIMU-V2.pptx',837949,'application/vnd.openxmlformats-officedocument.presentationml.presentation','15947077539a67b020929bd8b8b98d7d',2,1,'2020-05-04 16:12:27','',NULL),(1298,142,'Version','Demo_Tank-N4_Release_x64_4-5-2020.zip','200504175349_Demo_Tank-N4_Release_x64_4-5-2020.zip',2346003,'application/x-zip-compressed','0ef23be4117d226936f85319b1579905',1,1,'2020-05-04 17:53:49','',NULL),(1299,103,'Version','OpenOpcUa_1_0_5_7.zip','200506112012_OpenOpcUa_1_0_5_7.zip',7832476,'application/x-zip-compressed','c57ae5700b64db3144916cef67f5f462',1,1,'2020-05-06 11:20:13','',NULL),(1300,139,'Version','MaquetteLabo.pdf','200507160824_MaquetteLabo.pdf',185081,'application/pdf','09abaac9147a2a08c2ef716e9da9b957',3,1,'2020-05-07 16:08:24','',NULL),(1302,143,'Version','LinuxDemo.zip','200509171530_LinuxDemo.zip',2043736,'application/x-zip-compressed','85c476651ae1f7909fb06a5a8add8245',2,1,'2020-05-09 17:15:31','',NULL),(1305,140,'Version','openssl_1.1.0h.zip','200513141403_openssl_1.1.0h.zip',1700356,'application/x-zip-compressed','d386697d63adbd7d1182615a9d91a201',2,1,'2020-05-13 14:14:03','',NULL),(1306,143,'Version','LinuxDemo_13-05-2020.zip','200513145222_LinuxDemo_13-05-2020.zip',31387,'application/x-zip-compressed','03f7d2f9222dab21df5a5d1af30c5473',1,1,'2020-05-13 14:52:22','',NULL),(1307,143,'Version','LinuxDemo_17-5-2020.zip','200517173500_LinuxDemo_17-5-2020.zip',7551664,'application/x-zip-compressed','6042d4ea0fb924bdc49c433059265834',2,1,'2020-05-17 17:35:01','',NULL),(1308,144,'Version','MaquetteLabo_Release_Livraison_18-06-2020_v0.0.0.2.zip','200618153413_MaquetteLabo_Release_Livraison_18-06-2020_v0.0.0.2.zip',3192641,'application/x-zip-compressed','bd355f1316a755d42b754560fa8b052f',2,1,'2020-06-18 15:34:13','',NULL),(1309,146,'Version','Manuel de l_utilisateur-v1.03.pdf','200618153503_056dad5b3ede0c5aba1a6daba1b311cc.pdf',953004,'application/pdf','d1fa8ee3ecb92d02a358e228ad6b87eb',2,1,'2020-06-18 15:35:03','',NULL),(1310,422,'Issue','OpenOpcUaCoreServer_Release.exe_200619_082632.dmp','200619084124_OpenOpcUaCoreServer_Release.exe_200619_082632.dmp',43946518,'application/octet-stream','798ddbcb8b79b696756a131a83238241',0,426,'2020-06-19 08:41:26','',NULL),(1311,144,'Version','MaquetteLabo_x64_Release_Livraison_20-06-2020_v0.0.0.3.zip','200620235614_MaquetteLabo_x64_Release_Livraison_20-06-2020_v0.0.0.3.zip',3753827,'application/x-zip-compressed','b9f860810b868eec30fa07b3bbd9040e',1,1,'2020-06-20 23:56:15','',NULL),(1312,72,'Project','uaexpert-bin-win32-x86-vs2008sp1-v1.5.1-331.zip','200624095734_uaexpert-bin-win32-x86-vs2008sp1-v1.5.1-331.zip',18158724,'application/x-zip-compressed','3e2ce84bfd0765bd23bf3032e749ff17',3,1,'2020-06-24 09:57:35','',NULL),(1315,149,'Version','Manuel de l_utilisateur VpiUaClnt.pdf','200624110419_ff8cb6864f4532288d2bc0092eb3cee0.pdf',1027249,'application/pdf','112389d157a773c99f17f678a483b508',4,1,'2020-06-24 11:04:19','',NULL),(1316,148,'Version','OpenOpcUa_1_0_5_8.zip','200624150143_OpenOpcUa_1_0_5_8.zip',7841647,'application/x-zip-compressed','8d6e38845974c318bb111710c5d46e8d',4,1,'2020-06-24 15:01:44','',NULL),(1317,151,'Version','procdump.zip','200624155453_procdump.zip',293771,'application/x-zip-compressed','7b4b879b6faa9a63f0b2ad9339ebadb4',2,1,'2020-06-24 15:54:53','',NULL),(1318,149,'Version','OpenOpcUa_J4.pdf','200624162900_OpenOpcUa_J4.pdf',1959534,'application/pdf','e4a4690d2c4fb9fa0d08f2b42ec63d36',3,1,'2020-06-24 16:29:02','',NULL),(1319,149,'Version','Architecture.pptx','200624163402_Architecture.pptx',47616,'application/vnd.openxmlformats-officedocument.presentationml.presentation','0b40bc72a499e9639fc3d81cc87467a8',2,1,'2020-06-24 16:34:03','',NULL),(1320,427,'Issue','2020-06-26 11_52_41-Greenshot.png','200626165406_28442295460bd295e7b857d7b4f3acc9.png',237644,'image/png','2b363e4ee4405794b7312a0d457f2acc',0,426,'2020-06-26 16:54:06','',NULL),(1321,428,'Issue','OpenOpcUaCoreServer_Release.exe_200626_141246.dmp','200626173331_OpenOpcUaCoreServer_Release.exe_200626_141246.dmp',44209541,'application/octet-stream','216c9296a2f19c70c5b1853fef293770',0,426,'2020-06-26 17:33:35','',NULL),(1322,149,'Version','OPC 40010-1 - UA Companion Specification Part 1 for Robotics 1.00.pdf','200629093201_78b8ee098341a4398bfa988bdfaa023a.pdf',2990455,'application/pdf','5cbfe0b4af86f7f3209886aabac1fda3',3,1,'2020-06-29 09:32:02','',NULL),(1323,149,'Version','OPC UA Information Model for CNC Systems 1.00.pdf','200629093401_6db2173e5c4cc1aac56326f05c13ccb4.pdf',1188773,'application/pdf','b32a9995fc9a0d07ac8d1e237c7c786a',4,1,'2020-06-29 09:34:02','',NULL),(1324,148,'Version','OpenOpcUa_1_0_5_8_I-MC.zip','200629120309_OpenOpcUa_1_0_5_8_I-MC.zip',9443860,'application/x-zip-compressed','be9cac3c48980a31fef4ba873714155b',3,1,'2020-06-29 12:03:21','',NULL),(1332,149,'Version','OpenOpcUa_J3.pdf','200701143219_OpenOpcUa_J3.pdf',6166509,'application/pdf','7f59675cb6f2e00b73be5071e862f220',2,1,'2020-07-01 14:32:23','',NULL),(1334,147,'Version','Demo-CSV-HA_Release_X64.zip','200701153835_Demo-CSV-HA_Release_X64.zip',3406484,'application/x-zip-compressed','21161bb6cc14627d542773a08909ad08',2,1,'2020-07-01 15:38:38','',NULL),(1335,149,'Version','OPC UA CS Pack for I-MC.zip','200701164301_f3c7671e7eee128bc44f4cb74fa879ac.zip',6378222,'application/x-zip-compressed','59c6b6a31201248b28eeb83385d9583d',2,1,'2020-07-01 16:43:05','',NULL),(1336,153,'Version','Opc.Ua.NodeSet2.Part3-4-5_OPCUA-1.0.4.zip','200703162621_Opc.Ua.NodeSet2.Part3-4-5_OPCUA-1.0.4.zip',153856,'application/x-zip-compressed','0c7d5f4216536b4077ab1ecb944ba62f',3,1,'2020-07-03 16:26:21','',NULL),(1337,152,'Version','OpenOpcUa_1_0_5_8.zip','200703163425_OpenOpcUa_1_0_5_8.zip',7863554,'application/x-zip-compressed','ef28ed0bbac6f6b20875da493f407978',3,1,'2020-07-03 16:34:26','',NULL),(1338,426,'Issue','CaptureTP001.PNG','200715192134_CaptureTP001.PNG',84327,'image/png','fb002ceee2026de4936d1611b1056c6f',0,1,'2020-07-15 19:21:34','',NULL),(1339,144,'Version','MaquetteLabo_x64_Release_Livraison_15-07-2020_v0.0.04.zip.zip','200715192404_MaquetteLabo_x64_Release_Livraison_15-07-2020_v0.0.04.zip.zip',2683111,'application/x-zip-compressed','43682310d43390d3e9869701f8884f35',1,1,'2020-07-15 19:24:04','',NULL),(1340,65,'Version','OpenOpcUa_1_0_5_8_TYCO.zip','200716151632_OpenOpcUa_1_0_5_8_TYCO.zip',8063887,'application/x-zip-compressed','f455608eaa88c62ec4397dd10e76ca45',5,1,'2020-07-16 15:16:32','',NULL),(1341,70,'Version','Livraison 16-7-2020 V0.0.3.7.zip','200716165115_0d36e538274aa431d201151065178a23.zip',2315455,'application/x-zip-compressed','41f20a9b4e592bdf1c1e8d0bb9c04737',1,1,'2020-07-16 16:51:15','',NULL),(1342,154,'Version','Manuel de l_utilisateur-v1.03.pdf','200729144601_056dad5b3ede0c5aba1a6daba1b311cc.pdf',953004,'application/pdf','d1fa8ee3ecb92d02a358e228ad6b87eb',8,1,'2020-07-29 14:46:01','',NULL),(1343,434,'Issue','differente interpretation du int32.PNG','200730143409_e73df27cb51a9a1d24e07d24c0a8c8b2.PNG',12142,'image/png','25ed08bb87dd9ff1ab5a1045eef49b76',0,428,'2020-07-30 14:34:09','',NULL),(1344,130,'Version','OOUACoreServer_Binaires_x64_1.0.5.8.zip','200730190435_OOUACoreServer_Binaires_x64_1.0.5.8.zip',2203329,'application/x-zip-compressed','c108977087dffbcc1bd5e6b0a32aa48b',1,1,'2020-07-30 19:04:35','',NULL),(1345,156,'Version','VpiMdbServer_v0.0.0.3.zip','200730231642_VpiMdbServer_v0.0.0.3.zip',20155,'application/x-zip-compressed','4afa5536aa641b53f82ed2002dcbf034',4,1,'2020-07-30 23:16:42','',NULL),(1346,70,'Version','Livraison 10-8-2020 V0.0.3.7.zip','200810152628_b64707255f3bf703fb51620dc22e259a.zip',2316755,'application/x-zip-compressed','f6f96998f0a27d9a9bf731f20c48949e',1,1,'2020-08-10 15:26:28','',NULL),(1347,435,'Issue','ReadIndexError.png','200812101324_ReadIndexError.png',530932,'image/png','e1194495571b3a76bb7dcd6512a67817',0,1,'2020-08-12 10:13:24','',NULL),(1348,436,'Issue','writeindexranges.png','200812101445_writeindexranges.png',301111,'image/png','f212db6dfe29610631f72dc1964d57d5',0,1,'2020-08-12 10:14:45','',NULL),(1349,439,'Issue','Opc.Ua.NodeSet2.CTT.xml','200812102247_Opc.Ua.NodeSet2.CTT.xml',30124,'text/xml','970075c6598ebef70abf216940b4a43c',0,1,'2020-08-12 10:22:48','',NULL),(1350,441,'Issue','certificateError.png','200812102927_certificateError.png',532058,'image/png','e619d41049b4b85b30ef6c4410681f54',0,1,'2020-08-12 10:29:27','',NULL),(1351,441,'Issue','CertificateFixed.PNG','200812172433_CertificateFixed.PNG',44315,'image/png','5b3b709d9a4354a3f1a58dbb8c25747f',0,1,'2020-08-12 17:24:33','',NULL),(1352,435,'Issue','ReadIndex.jpg','200812180947_ReadIndex.jpg',91049,'image/jpeg','2a3d5c5d52f070bd3f82d80f0ec02eee',0,1,'2020-08-12 18:09:47','',NULL),(1353,435,'Issue','ReadIndexOPCF_SampleClient.png','200812181943_ReadIndexOPCF_SampleClient.png',295613,'image/png','d0f736d594676e7d5395e78145bd75a7',0,1,'2020-08-12 18:19:45','',NULL),(1354,158,'Version','OOUA2020_V1.0.5.9.zip','200812233002_OOUA2020_V1.0.5.9.zip',2873539,'application/x-zip-compressed','bf9a56900ec91d3a62fb769e7ca6e35a',1,1,'2020-08-12 23:30:03','',NULL),(1355,159,'Version','DemoCTT_Release_x64_LAB_OPCF_1.0.5.9.zip','200813001010_DemoCTT_Release_x64_LAB_OPCF_1.0.5.9.zip',2380317,'application/x-zip-compressed','21aabea9a5baf37fe9f6360c109e5c73',1,1,'2020-08-13 00:10:11','',NULL),(1356,442,'Issue','Definition_ServerNonce.PNG','200813073829_Definition_ServerNonce.PNG',25831,'image/png','c023696adcd7873b1045969b03e9e7f8',0,430,'2020-08-13 07:38:29','',NULL),(1357,435,'Issue','DataEncoding.PNG','200814105718_DataEncoding.PNG',13198,'image/png','958f0211f44b56b05388c742fc3c0e2d',0,1,'2020-08-14 10:57:18','',NULL),(1358,155,'Version','OpenOpcUa_1_0_5_8.zip','200818110032_OpenOpcUa_1_0_5_8.zip',7863554,'application/x-zip-compressed','ef28ed0bbac6f6b20875da493f407978',4,1,'2020-08-18 11:00:32','',NULL),(1359,70,'Version','Livraison 2-9-2020 V0.0.3.8-x64.zip','200902204648_bf8bf6945b5b11b90e22b79f8e0a7183.zip',137092,'application/x-zip-compressed','e1e8a11fae847ef6da8b32bbff89ad35',1,1,'2020-09-02 20:46:48','',NULL),(1360,161,'Version','Presentation de la technologie OPC.pdf','200904133655_9d25bae79c78cfd55abb7ba3eed8a1f0.pdf',7037356,'application/pdf','7f99cbdc4d8b12b5978719f76e605ff7',4,1,'2020-09-04 13:36:55','',NULL),(1362,162,'Version','vcredist_x64.exe','200904145538_vcredist_x64.exe',7195120,'application/x-msdownload','303c97d76841ca74701e81ad32437070',3,1,'2020-09-04 14:55:38','',NULL),(1364,164,'Version','DemoModbus_Release_x64.zip','200904155147_DemoModbus_Release_x64.zip',2999516,'application/x-zip-compressed','ef05237fb60948a72b35c0eadd4f55f1',4,1,'2020-09-04 15:51:47','',NULL),(1365,164,'Version','OpenOpcUaCoreServer_Release.exe_200904_160517.dmp','200904160753_OpenOpcUaCoreServer_Release.exe_200904_160517.dmp',6398427,'application/octet-stream','07c9ebd0fc5fc104cf14d2c3cd9d7ad7',2,432,'2020-09-04 16:07:53','',NULL),(1368,164,'Version','Demo_Simulation_RPI3.zip','200904165204_Demo_Simulation_RPI3.zip',6100755,'application/x-zip-compressed','f63ee01479111622895353d8a244dd8b',1,1,'2020-09-04 16:52:04','',NULL),(1369,70,'Version','VpiTycoEx_0.0.3.9.zip','200905105233_VpiTycoEx_0.0.3.9.zip',111968,'application/x-zip-compressed','0f0f57a2abbe5ea88f97a167a23c0823',1,1,'2020-09-05 10:52:33','',NULL),(1370,110,'Version','VpiTycoEx_0.0.4.0.zip','200907114453_VpiTycoEx_0.0.4.0.zip',112055,'application/x-zip-compressed','c826c288f0fae0722fadea9ad8316334',1,1,'2020-09-07 11:44:53','',NULL),(1371,70,'Version','Livraison-7-09-2020 V0.0.4.1.zip','200907203215_648ef0f3b20a0c6851cf6b1df051ddd4.zip',2320003,'application/x-zip-compressed','607c86ed76342520584123ee76f6c6f8',1,1,'2020-09-07 20:32:15','',NULL),(1372,446,'Issue','OpenOpcUaCoreServer_Release.exe_200907_161048.zip','200907211838_OpenOpcUaCoreServer_Release.exe_200907_161048.zip',69939481,'application/x-zip-compressed','54b94025f74e9450e65e83f7464d7c4e',0,328,'2020-09-07 21:18:41','',NULL),(1373,446,'Issue','OpenOpcUaCoreServer_Release.exe_200907_162709.zip','200907211842_OpenOpcUaCoreServer_Release.exe_200907_162709.zip',77918138,'application/x-zip-compressed','40a1a412f2bca8fa92b1f3eca5544572',0,328,'2020-09-07 21:18:43','',NULL),(1374,446,'Issue','OpenOpcUaCoreServer_Release.exe_200907_163303.zip','200907211849_OpenOpcUaCoreServer_Release.exe_200907_163303.zip',72424088,'application/x-zip-compressed','dd85c00d429de7a17436bf35c2108c02',0,328,'2020-09-07 21:18:51','',NULL),(1375,110,'Version','VpiTycoEx_0.0.4.2.zip','200908172915_VpiTycoEx_0.0.4.2.zip',112037,'application/x-zip-compressed','2d08d10fed103bf3b66dfe68c3eea5ba',1,1,'2020-09-08 17:29:15','Code 128',NULL),(1376,447,'Issue','Michel.pdf','200916160817_Michel.pdf',670522,'application/pdf','101e8524abedb58244c901bd1096c3ef',0,1,'2020-09-16 16:08:17','',NULL),(1377,155,'Version','CMakeLists.txt','200917094951_CMakeLists.txt',2127,'text/plain','dafcb4f80e96a79b718f8d98f983e5c5',1,1,'2020-09-17 09:49:51','',NULL),(1378,161,'Version','Manuel de l_utilisateur-v1.03.pdf','200918105428_056dad5b3ede0c5aba1a6daba1b311cc.pdf',953004,'application/pdf','d1fa8ee3ecb92d02a358e228ad6b87eb',10,1,'2020-09-18 10:54:28','',NULL),(1381,161,'Version','OpenOpcUa_J3.pdf','200918170438_OpenOpcUa_J3.pdf',6164984,'application/pdf','98a64cc154daf2d3df8cf3b20e27920a',7,1,'2020-09-18 17:04:38','',NULL),(1382,164,'Version','DemoVpiOs-x64_Release.zip','200920191338_DemoVpiOs-x64_Release.zip',2349093,'application/x-zip-compressed','3e5f39d259f7185df02718897c7d0677',2,1,'2020-09-20 19:13:38','',NULL),(1383,448,'Issue','Img1.png','200922171241_Img1.png',465118,'image/png','d64088761ae916d0ae31c31338148f12',0,432,'2020-09-22 17:12:41','',NULL),(1384,448,'Issue','log.txt.txt','200922171241_log.txt.txt',4296,'text/plain','9b14dc7eedab5eeb6db4484841af3e49',0,432,'2020-09-22 17:12:41','',NULL),(1385,166,'Version','DemoVpiOs-x64_Release.zip','200923085639_DemoVpiOs-x64_Release.zip',2349093,'application/x-zip-compressed','3e5f39d259f7185df02718897c7d0677',1,1,'2020-09-23 08:56:39','',NULL),(1386,166,'Version','Demo-CSV-HA_Release_X64.zip','200923085707_Demo-CSV-HA_Release_X64.zip',2750306,'application/x-zip-compressed','4c172fc5f9d51f9d8dcdc0c0113f06f2',2,1,'2020-09-23 08:57:07','',NULL),(1387,167,'Version','Presentation de la technologie OPC.pdf','200923090641_9d25bae79c78cfd55abb7ba3eed8a1f0.pdf',7037538,'application/pdf','c58b1b29f723a62cbaae74ca3434d9f6',2,1,'2020-09-23 09:06:41','',NULL),(1388,169,'Version','ProcDump.zip','200923094237_ProcDump.zip',293801,'application/x-zip-compressed','873ed04c90d0f1423054492d1390b310',3,1,'2020-09-23 09:42:37','',NULL),(1389,167,'Version','OPCUA_Spec_1.0.4.zip','200923100849_OPCUA_Spec_1.0.4.zip',23295180,'application/x-zip-compressed','e6a934db3ce7f2a3d2f5a43d39117366',1,1,'2020-09-23 10:08:49','',NULL),(1390,166,'Version','DemoAC_Release.zip','200923104343_DemoAC_Release.zip',2333893,'application/x-zip-compressed','4678899759e1f4be4aa06134db34bc03',2,1,'2020-09-23 10:43:43','',NULL),(1391,448,'Issue','Backtrace debugger.txt','200923113612_3eb9937aea05a520ff6038ea2a33d0f6.txt',3836,'text/plain','8ebc65eb0250a41a9d48c46032b275d0',0,432,'2020-09-23 11:36:12','',NULL),(1392,448,'Issue','Pile d_execution Console.txt','200923113612_321a25a22f21e08cea912b1d61834ed0.txt',838,'text/plain','487a7e394175ee0da0be9455f25ef584',0,432,'2020-09-23 11:36:12','',NULL),(1393,76,'Project','cnr_xmlda2csv.log.20200923','200923115839_cnr_xmlda2csv.log.20200923',30916944,'application/octet-stream','19487d1a2b287fd760fd81f6c21e1536',1,440,'2020-09-23 11:58:39','',NULL),(1394,167,'Version','Architecture OPC UA CNR.pptx','200923145341_a4ef3525796dcac242772bd39f398d93.pptx',51750,'application/vnd.openxmlformats-officedocument.presentationml.presentation','6098c9dd766984a83c3665578e92109c',1,1,'2020-09-23 14:53:41','',NULL),(1395,169,'Version','CNR_XMLDA2CSV_ver4.1.0.8.zip','200923152752_CNR_XMLDA2CSV_ver4.1.0.8.zip',297373,'application/x-zip-compressed','c3b396e16c1b8909329394e9da4727e8',1,1,'2020-09-23 15:27:52','',NULL),(1396,169,'Version','CNR_XMLDA2CSV_ver4.1.0.9.zip','200923163839_CNR_XMLDA2CSV_ver4.1.0.9.zip',276333,'application/x-zip-compressed','1ce7e40c7d26092b75416afe8595243a',1,1,'2020-09-23 16:38:39','',NULL),(1397,169,'Version','CNR_XMLDA2CSV_ver4.1.1.0.zip','200923165306_CNR_XMLDA2CSV_ver4.1.1.0.zip',276327,'application/x-zip-compressed','06db67899b6a4b112fd00a9d3a02c84d',1,1,'2020-09-23 16:53:06','',NULL),(1399,169,'Version','OpcNetApi.Xml.dll','200923170812_OpcNetApi.Xml.dll',94208,'application/x-msdownload','61d09bc1ba7817d5335c79a4bacb828f',2,1,'2020-09-23 17:08:12','',NULL),(1400,169,'Version','CNR_XMLDA2CSV_ver4.1.1.1.zip','200923171308_CNR_XMLDA2CSV_ver4.1.1.1.zip',276314,'application/x-zip-compressed','02524b1ff7a4cce6f3a8b250c720b7a4',1,1,'2020-09-23 17:13:08','',NULL),(1401,169,'Version','CNR_XMLDA2CSV_ver4.1.1.2.zip','200923171846_CNR_XMLDA2CSV_ver4.1.1.2.zip',276315,'application/x-zip-compressed','8946a2e51b22a74c06393da8a21754cc',1,1,'2020-09-23 17:18:46','',NULL),(1402,169,'Version','CNR_XMLDA2CSV_ver4.1.1.3.zip','200923182116_CNR_XMLDA2CSV_ver4.1.1.3.zip',276537,'application/x-zip-compressed','d51a3d2cf97def4a6099a2503a3c340f',1,1,'2020-09-23 18:21:16','',NULL),(1403,169,'Version','CNR_XMLDA2CSV_ver4.1.1.4.zip','200923182259_CNR_XMLDA2CSV_ver4.1.1.4.zip',276535,'application/x-zip-compressed','71e17cd76ed0ef0e320207f1d8410b89',1,1,'2020-09-23 18:22:59','',NULL),(1404,169,'Version','CNR_XMLDA2CSV_Valid23-9-2020.zip','200923195448_CNR_XMLDA2CSV_Valid23-9-2020.zip',276333,'application/x-zip-compressed','a6e300bb8cdc865f0099592872076036',1,1,'2020-09-23 19:54:48','',NULL),(1405,168,'Version','CNR_XMLDA2CSV_FULLSOURCE_4CE.zip','200923200444_CNR_XMLDA2CSV_FULLSOURCE_4CE.zip',80675134,'application/x-zip-compressed','b53cc2da19fc021c377b51f97acd3b70',3,1,'2020-09-23 20:04:45','',NULL),(1406,161,'Version','Architecture EMOTORS-MOM.pptx','200925154459_61d1113fb9b8a71a12b89d05ab4903c1.pptx',45018,'application/vnd.openxmlformats-officedocument.presentationml.presentation','6d52778bb8c49bd59a98446d525bd524',2,1,'2020-09-25 15:44:59','',NULL),(1407,450,'Issue','PbMinimumSamplingInterval.png','200925180541_PbMinimumSamplingInterval.png',146266,'image/png','b94f94f7177f29c94db3243c438f2e7f',0,435,'2020-09-25 18:05:41','',NULL),(1408,171,'Version','GTEDM-OPCUA_Minutes28-9-2020.docx','200928162314_GTEDM-OPCUA_Minutes28-9-2020.docx',23796,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','dc9916479b16f5ac8edf86badfde83fa',2,1,'2020-09-28 16:23:14','',NULL),(1409,170,'Version','BrainStormingEDM.pptx','200928162330_BrainStormingEDM.pptx',51436,'application/vnd.openxmlformats-officedocument.presentationml.presentation','a0ff7c3507ee6e8e5ac9c88f1f058342',2,1,'2020-09-28 16:23:30','',NULL),(1410,141,'Version','InternalKrnlApi_29-9-2020.zip','200929173102_InternalKrnlApi_29-9-2020.zip',31288,'application/x-zip-compressed','01783ef94a771cf2c290a173f99ea217',1,1,'2020-09-29 17:31:02','',NULL),(1411,451,'Issue','RE SK Utilisation de VpiType_ExtensionObject .msg','200929174957_6b24322212ddb12e204d8db2b90812da.msg',186368,'application/octet-stream','a75a6ed34bf6365260eac3805a02c253',0,424,'2020-09-29 17:49:57','',NULL),(1412,452,'Issue','Build_OpenOpcUaStackV1.rtf','200929180513_Build_OpenOpcUaStackV1.rtf',6424,'text/rtf','7645c20e03f5966376af10f9bbdfa1c8',0,431,'2020-09-29 18:05:13','',NULL),(1413,450,'Issue','WiresharkKEP-OOUA.PNG','201001134221_WiresharkKEP-OOUA.PNG',239481,'image/png','8a51fabcf2bb5341bde3b10f01919c7b',0,1,'2020-10-01 13:42:21','',NULL),(1414,450,'Issue','UAX-KEP-OOUA.PNG','201001134221_UAX-KEP-OOUA.PNG',535874,'image/png','7eeaffb72a308091c151c3c3b0a067f6',0,1,'2020-10-01 13:42:21','',NULL),(1415,170,'Version','Projet OPC UA 2020-07-15.pptx','201002081603_2eeab0fb1d6db5d37da32eb5a2bcbc5a.pptx',1316426,'application/vnd.openxmlformats-officedocument.presentationml.presentation','5f58e6ffb2fd0d13d023cd65e2b086a9',1,443,'2020-10-02 08:16:03','Expression du besoin - version initiale',NULL),(1416,170,'Version','Presentation de la technologie OPC - Matin.pdf','201005180812_256adfb1527578f60d037a17d0b628c2.pdf',3919726,'application/pdf','92e7968bf5112947e1faa5302536f805',2,1,'2020-10-05 18:08:12','',NULL),(1417,173,'Version','Demo-SQL-HA_x86_Debug.zip','201006231410_Demo-SQL-HA_x86_Debug.zip',2883717,'application/x-zip-compressed','9e627a3a8be31d92ec59a57696128781',0,1,'2020-10-06 23:14:10','',NULL),(1418,144,'Version','MaquetteLabo_x64_Release_13-10-2020.zip','201013221250_MaquetteLabo_x64_Release_13-10-2020.zip',2765350,'application/x-zip-compressed','b039f7a8913462dabdce615d12555ef3',3,1,'2020-10-13 22:12:50','',NULL),(1419,145,'Version','OpenOpcUa_TP_DirectAccess.zip','201013221556_OpenOpcUa_TP_DirectAccess.zip',9194870,'application/x-zip-compressed','a52ddd45f53df3b5f1f62df8d437d094',2,1,'2020-10-13 22:15:57','',NULL),(1420,456,'Issue','Info Send.zip','201014084333_278b5acd3781463d52d7b9a6d78ca52c.zip',19436,'application/x-zip-compressed','c6e172c96589e65f33cbd6be36a25712',0,426,'2020-10-14 08:43:33','',NULL),(1421,170,'Version','BrainStormingEDM-14-10-2020.pptx','201014172445_BrainStormingEDM-14-10-2020.pptx',74053,'application/vnd.openxmlformats-officedocument.presentationml.presentation','c9ab1d589827ab9616d615748e771148',0,1,'2020-10-14 17:24:45','',NULL),(1422,171,'Version','GTEDM-OPCUA_Minutes14-10-2020.docx','201014172505_GTEDM-OPCUA_Minutes14-10-2020.docx',23775,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','b54468f140548cefe3640fdbe7bb9a9c',1,1,'2020-10-14 17:25:05','',NULL),(1423,110,'Version','VpiTycoEx_0.0.4.3.zip','201015164056_VpiTycoEx_0.0.4.3.zip',112033,'application/x-zip-compressed','7db3bbf697b167a7dc39be8b12ce0637',1,1,'2020-10-15 16:40:56','',NULL),(1425,145,'Version','OpenOpcUa_1_0_5_9_TP.zip','201016132334_OpenOpcUa_1_0_5_9_TP.zip',7929071,'application/x-zip-compressed','9ad0cfc463a5a52f420a8d8768d19c69',2,1,'2020-10-16 13:23:34','',NULL),(1426,144,'Version','MaquetteLabo_x64_Release_Livraison_19-10-2020_v0.0.0.6.zip','201019115059_MaquetteLabo_x64_Release_Livraison_19-10-2020_v0.0.0.6.zip',2770774,'application/x-zip-compressed','b50489cdf925ad70ab3fc6b2712f81b5',1,1,'2020-10-19 11:50:59','',NULL),(1427,70,'Version','VpiTycoEx_0.0.4.4.zip','201020163511_VpiTycoEx_0.0.4.4.zip',112025,'application/x-zip-compressed','98277a7389226723eb6cd4dca40e4322',1,1,'2020-10-20 16:35:11','',NULL),(1428,461,'Issue','OPCUA_DirectAcces failed.png','201020171312_34f58378b93a9d3dbb9c32f90d839fe3.png',42447,'image/png','9e30f862dc4dc2e5f48f772fdc46cd9e',0,426,'2020-10-20 17:13:12','Copie d écran erreur',NULL),(1430,170,'Version','BrainStormingEDM-21-10-2020.pptx','201021143609_BrainStormingEDM-21-10-2020.pptx',77901,'application/vnd.openxmlformats-officedocument.presentationml.presentation','172706b97a4837cc386a9d3aa6c2f9c8',0,1,'2020-10-21 14:36:09','',NULL),(1431,171,'Version','GTEDM-OPCUA_Minutes21-10-2020.docx','201021143726_GTEDM-OPCUA_Minutes21-10-2020.docx',23764,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','613538190bbb06f35699aa9962f63ab8',1,1,'2020-10-21 14:37:26','',NULL),(1432,165,'Version','Brainstorming-Inetum.pptx','201023174845_Brainstorming-Inetum.pptx',45179,'application/vnd.openxmlformats-officedocument.presentationml.presentation','75af9a826c164f2e67a8a16b7a423f39',1,1,'2020-10-23 17:48:45','',NULL),(1433,161,'Version','InternalKrnlApi_Doc_v0.0.1.docx','201023184941_InternalKrnlApi_Doc_v0.0.1.docx',102073,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','a7124e4bec18d4b4ee296cf7ee05d761',2,1,'2020-10-23 18:49:41','',NULL),(1434,110,'Version','VpiTycoEx_0.0.4.5.zip','201025113628_VpiTycoEx_0.0.4.5.zip',112007,'application/x-zip-compressed','a9fc57a4ba14f63ce4b4cf871728525c',1,1,'2020-10-25 11:36:28','',NULL),(1435,170,'Version','LONGONI - équipements comm. - Listes - adresses IP - protocoles - 2020-10-23.xlsx','201026063008_e0b7a9f9243c140a152c283c79262d1d.xlsx',54555,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','21a95bf0b5f5c2af0043fa30731abb97',1,443,'2020-10-26 06:30:08','LONGONI - équipements comm. - Listes, protocoles et adresses IP',NULL),(1438,110,'Version','VpiTycoEx_0.0.4.6.zip','201027094956_VpiTycoEx_0.0.4.6.zip',111871,'application/x-zip-compressed','d9f27ff7b28e816d58fc9ef90c0de010',1,1,'2020-10-27 09:49:56','',NULL),(1439,70,'Version','VpiTycoEx_0.0.4.7.zip','201027181624_VpiTycoEx_0.0.4.7.zip',111662,'application/x-zip-compressed','a52489a53e9baacd9f4a3f555c33d847',1,1,'2020-10-27 18:16:25','',NULL),(1441,171,'Version','GTEDM-OPCUA_Minutes28-10-2020.docx','201028144325_GTEDM-OPCUA_Minutes28-10-2020.docx',23046,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','66333fd7a769e3f880f71b3f7b5e1c4f',1,1,'2020-10-28 14:43:25','',NULL),(1442,170,'Version','BrainStormingEDM-28-10-2020.pptx','201028144346_BrainStormingEDM-28-10-2020.pptx',82434,'application/vnd.openxmlformats-officedocument.presentationml.presentation','bd0d4beaf0ea4241312c7ffe6e0bb307',2,1,'2020-10-28 14:43:46','',NULL),(1444,462,'Issue','VPISK_Linux.PNG','201028213340_VPISK_Linux.PNG',186092,'image/png','ce448530f12dcc0b4a8e107ff7532384',0,1,'2020-10-28 21:33:40','',NULL),(1445,163,'Version','VpisSdk_GFI_Pack.zip','201029141002_VpisSdk_GFI_Pack.zip',11322666,'application/x-zip-compressed','a5ff1a7840cf1967ec963465de8f0943',1,1,'2020-10-29 14:10:04','',NULL),(1446,462,'Issue','Cyclomix-00200.log','201030182440_Cyclomix-00200.log',1408,'application/octet-stream','97c0631b93a188014540cfd06cf8fb02',0,424,'2020-10-30 18:24:41','',NULL),(1447,462,'Issue','OPCUASKServer.log','201030182441_OPCUASKServer.log',16297,'application/octet-stream','2d4e11aed2db6706ab80bd060ae309ef',0,424,'2020-10-30 18:24:41','',NULL),(1448,464,'Issue','logs 30-10-20.zip','201102105609_113937c3e1db5217a1a79f0810e0091c.zip',17173052,'application/x-zip-compressed','65f344a4a58412d4502c4bb59e810afb',0,328,'2020-11-02 10:56:12','',NULL),(1449,171,'Version','GTEDM-OPCUA_Minutes04-11-2020.docx','201104094409_GTEDM-OPCUA_Minutes04-11-2020.docx',23181,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','e8cac3581783dc7fe802b1ce60e0bcbb',1,1,'2020-11-04 09:44:13','',NULL),(1450,170,'Version','283-0311-EDM-Etude de faisabilité_V0.1_MC.docx','201104094507_e3005a23dafc73e1c8ddf8bf388b7541.docx',25103,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','0865c3288c8f6d3ad2b87994a1b8df25',4,1,'2020-11-04 09:45:07','',NULL),(1451,452,'Issue','CMake.rtf','201104183301_CMake.rtf',2159,'text/rtf','a1f48faca2f0070881f8d57eca493add',0,431,'2020-11-04 18:33:03','Sortie à l\'issue du CMake',NULL),(1452,452,'Issue','Make.rtf','201104183303_Make.rtf',7133,'text/rtf','78ba51abe9c72c9e6bf2b5e6888dbab6',0,431,'2020-11-04 18:33:03','Sortie à l\'issue du Make',NULL),(1453,175,'Version','EMOTORS - OPC UA - Projet 2020-2021.docx','201104204006_5f23923eeae9153561a62c63f58b58c0.docx',21502,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','1826cb0b49cc5fbcec22f0eb9d4c0f50',6,1,'2020-11-04 20:40:06','',NULL),(1454,161,'Version','Manuel de l_utilisateur VpiUaClnt.pdf','201105135540_ff8cb6864f4532288d2bc0092eb3cee0.pdf',1027249,'application/pdf','112389d157a773c99f17f678a483b508',4,1,'2020-11-05 13:55:40','',NULL),(1459,164,'Version','MaquetteGFI-11-11-2020.zip','201111104350_MaquetteGFI-11-11-2020.zip',9164401,'application/x-zip-compressed','1d1e0b67069347edff2266dfebc8ec31',2,1,'2020-11-11 10:43:50','',NULL),(1461,175,'Version','Atelier 01.pdf','201112114051_bd8b768e80ed21500ec3ab0c262499ed.pdf',521959,'application/pdf','5dd5b08e31831cb198d6cabe14ba4c9b',7,1,'2020-11-12 11:40:51','',NULL),(1462,465,'Issue','Ano-465.png','201112173833_Ano-465.png',94884,'image/png','afe9d73fb56f5d0afe95adaae7e8126f',0,433,'2020-11-12 17:38:33','Copie écran des lancements Graine et Serveur',NULL),(1463,465,'Issue','PlantAvantLancementLine.PNG','201112194449_PlantAvantLancementLine.PNG',28444,'image/png','5cb8f0bea53bb86a8a4b2b49ad58e582',0,1,'2020-11-12 19:44:49','',NULL),(1464,465,'Issue','PlantApresLancementLine.PNG','201112194449_PlantApresLancementLine.PNG',47004,'image/png','8244edc6d84f88926fa748433a5cfdc3',0,1,'2020-11-12 19:44:49','',NULL),(1466,164,'Version','MaquetteGFI-13-11-2020.zip','201113161107_MaquetteGFI-13-11-2020.zip',8134236,'application/x-zip-compressed','9df80960d650db40e34fbbbb64c716ea',2,1,'2020-11-13 16:11:07','',NULL),(1467,462,'Issue','RecipeDataType_badstruct.png','201116104007_RecipeDataType_badstruct.png',68510,'image/png','75146f2952b7143fcc70bcc6f057b044',0,424,'2020-11-16 10:40:07','',NULL),(1468,175,'Version','Formation OPC UA - J1 - Modelisation.pdf','201116152534_7d938f13fe043ebc107d1de129a3137c.pdf',2882078,'application/pdf','40a6264a22d8484466f40731d6f935f9',7,1,'2020-11-16 15:25:34','',NULL),(1471,177,'Version','XMI_2.5.xsd','201116153716_XMI_2.5.xsd',4658,'application/xml','6b84ff5de384bb50a72d4511034541f9',6,1,'2020-11-16 15:37:16','',NULL),(1472,177,'Version','BrainStormingArchitecture.pptx','201116170926_BrainStormingArchitecture.pptx',44818,'application/vnd.openxmlformats-officedocument.presentationml.presentation','f0f04685b79740a9a9e142ad0f7cd500',2,1,'2020-11-16 17:09:26','',NULL),(1474,467,'Issue','Exo_Tricyle.EAP','201117092642_Exo_Tricyle.EAP',1691648,'application/octet-stream','cc54fcf59a970d23a2fe7006596653a4',0,450,'2020-11-17 09:26:42','',NULL),(1475,468,'Issue','Tricycle_Gen.xml','201117094017_Tricycle_Gen.xml',50379,'text/xml','cfbef9979ff8054e0f2ed6ccfbbb4e0f',0,447,'2020-11-17 09:40:17','',NULL),(1476,468,'Issue','XmiToNodeSet.log','201117094017_XmiToNodeSet.log',1508,'application/octet-stream','2d0212705412096ba7b548324b952fe0',0,447,'2020-11-17 09:40:17','',NULL),(1477,468,'Issue','Tricycle_Conf.doc','201117094017_Tricycle_Conf.doc',18070,'application/msword','fd7b67589f68fff6ed0338a01c2e3654',0,447,'2020-11-17 09:40:17','',NULL),(1478,468,'Issue','Opc.Ua.NodeSet2.Tricycle_Conf.xml','201117094017_Opc.Ua.NodeSet2.Tricycle_Conf.xml',1739,'text/xml','b639c271bef51feeb93d8c190e64c3e4',0,447,'2020-11-17 09:40:17','',NULL),(1479,467,'Issue','XiMulator.PNG','201117095258_XiMulator.PNG',69499,'image/png','67c25d45cecd85fcbd47af47adab978c',0,1,'2020-11-17 09:52:58','',NULL),(1480,468,'Issue','XiMulator.PNG','201117095625_XiMulator.PNG',69499,'image/png','67c25d45cecd85fcbd47af47adab978c',0,1,'2020-11-17 09:56:25','',NULL),(1481,177,'Version','Opc.Ua.NodeSet.Part3_4_5.zip','201117100200_Opc.Ua.NodeSet.Part3_4_5.zip',153910,'application/x-zip-compressed','79eb1e7f9a2ef45435296588f719e846',9,1,'2020-11-17 10:02:00','',NULL),(1482,468,'Issue','Opc.Ua.NodeSet2.TricycleLionel.zip','201117102435_Opc.Ua.NodeSet2.TricycleLionel.zip',28454,'application/x-zip-compressed','9ccfd46f40e527b54fd64b277831d2ce',0,1,'2020-11-17 10:24:35','',NULL),(1483,467,'Issue','Exo_Tricycle.xml','201117103840_Exo_Tricycle.xml',39188,'text/xml','ac514fa9cf20f6f74dc94d615a64bdd6',0,450,'2020-11-17 10:38:40','',NULL),(1484,467,'Issue','2020-11-17 10_35_48-Xsimulator.png','201117103840_73897f642bc105c671603ebc134b1c63.png',58306,'image/png','e0ffae380e3f37c9e738aba1339ddce6',0,450,'2020-11-17 10:38:40','',NULL),(1485,467,'Issue','EXO_Tricycle.PNG','201117113659_EXO_Tricycle.PNG',182959,'image/png','9bfe9d1ca8bedf8544adbc63f4179972',0,1,'2020-11-17 11:36:59','',NULL),(1487,467,'Issue','Exo_Tricycle_V2_Conf.doc','201117132428_Exo_Tricycle_V2_Conf.doc',19374,'application/msword','72a292388fe443e350cae2bac3b2f3a3',0,450,'2020-11-17 13:24:28','',NULL),(1488,467,'Issue','Exo_Tricycle_V2_Gen.xml','201117134503_Exo_Tricycle_V2_Gen.xml',37808,'text/xml','d7f7428ba8bf5619ea22146f229b5dbd',0,450,'2020-11-17 13:45:03','',NULL),(1489,467,'Issue','Exo_Tricyle_V2.EAP','201117134503_Exo_Tricyle_V2.EAP',1691648,'application/octet-stream','0d34a70d4a26bd42e1ea62836505077c',0,450,'2020-11-17 13:45:03','',NULL),(1490,170,'Version','SI industriel Prod - Présentation_Analyse_Risques - 2020-11-10.pptx','201118051715_adc1c326cc2b916814afeac411ba2750.pptx',8694791,'application/vnd.openxmlformats-officedocument.presentationml.presentation','f003e3f1b5e0107a4685b583a3c9a28f',1,443,'2020-11-18 05:17:15','Présenttion SI industriel EDM Prod, analyse des risques',NULL),(1493,177,'Version','OPCUA_Profile.xml','201119093219_OPCUA_Profile.xml',3149,'text/xml','4246a5c0aa3a3ff6bebef7e77dd39c53',7,1,'2020-11-19 09:32:19','',NULL),(1499,176,'Version','uaexpert-bin-win32-x86-vs2008sp1-v1.5.1-331.zip','201119112439_uaexpert-bin-win32-x86-vs2008sp1-v1.5.1-331.zip',18158724,'application/x-zip-compressed','3e2ce84bfd0765bd23bf3032e749ff17',2,1,'2020-11-19 11:24:40','',NULL),(1500,471,'Issue','Tricycle.zip','201119155653_Tricycle.zip',2511194,'application/x-zip-compressed','21780883f207a8dbc935e697f2b950bc',0,451,'2020-11-19 15:56:53','Dossier de projet Rémi Delaire',NULL),(1503,466,'Issue','recipeDataType.PNG','201119222135_recipeDataType.PNG',73858,'image/png','48c446e4d8a0c3bbac9d3770bf898ea3',0,1,'2020-11-19 22:21:35','',NULL),(1505,143,'Version','Windows_Project.zip','201122222418_Windows_Project.zip',218953,'application/x-zip-compressed','775afa2bc74492ce86f07f42520a6162',1,1,'2020-11-22 22:24:18','',NULL),(1507,155,'Version','Opc.Ua.NodeSet2.Part3-5.zip','201201101648_Opc.Ua.NodeSet2.Part3-5.zip',153910,'application/x-zip-compressed','075ea04ea6aad7718590399fc6707f0a6342199186b69a0f8e27997859e86fb6',1,1,'2020-12-01 10:16:48','','2020/12'),(1508,156,'Version','VpiMdbMaster_1_0.3_8.zip','201201102434_VpiMdbMaster_1_0.3_8.zip',57622,'application/x-zip-compressed','7d1bf60cccc5fb9f7df70e44901118755a76b52a71aceff1328c17d8be031fe6',1,1,'2020-12-01 10:24:34','','2020/12'),(1509,154,'Version','Manuel de l_utilisateur - VpiMdbMaster.pdf','201201102539_63a45e95ce95c2eca90b4132e9b90777.pdf',1366407,'application/pdf','48da09f1a801fc8a393c320015163943cfa92264281b0cbff5b10aa49c69c34a',3,1,'2020-12-01 10:25:39','','2020/12'),(1510,156,'Version','OOUACoreServer_1.0.5.9.zip','201201103629_OOUACoreServer_1.0.5.9.zip',2228871,'application/x-zip-compressed','8346a7901c5b5c63274a4d7552686b0d9dac337cfbaca53b34ffcb1a3fad30a4',1,1,'2020-12-01 10:36:29','','2020/12'),(1511,154,'Version','OPCUA_Spec_1.0.4.zip','201201105151_OPCUA_Spec_1.0.4.zip',23295180,'application/x-zip-compressed','83cd660330a9f0b9d700b16075d69a191c4e3c07296e9309c73a5378b85e6f47',5,1,'2020-12-01 10:51:51','','2020/12'),(1512,474,'Issue','2020-12-01 16_53_13-.png','201201165355_09e78a9761cec4af5c2fcd609ced0747.png',18716,'image/png','cb6beff2da0e0dcd4204a02945a98eb075d418b32f30d613a02c7a112e192d5e',0,454,'2020-12-01 16:53:55','','2020/12'),(1515,466,'Issue','Modele-UML.png','201202134502_Modele-UML.png',151117,'image/png','2293949777602fe6511e3535f8b1dac340161801b6558614a3a5f35f776d3383',0,1,'2020-12-02 13:45:02','','2020/12'),(1516,476,'Issue','IMG_20201202_161336.jpg','201202165857_IMG_20201202_161336.jpg',2650598,'image/jpeg','53fb12851c1c5bd33bebf6316a4be848ca4c7cf06d93db2faad5542b1f832a20',0,461,'2020-12-02 16:58:57','Team Viewer','2020/12'),(1517,476,'Issue','clipboard-202012022123-ezmsc.png','201202212355_clipboard-202012022123-ezmsc.png',44336,'image/png','9e7e1f2aecfe619d64e5fc072505ab3ff8dbf534116152e6671a77b7ce7e54aa',0,1,'2020-12-02 21:23:55','','2020/12'),(1518,476,'Issue','clipboard-202012030946-4m3nz.png','201203094648_clipboard-202012030946-4m3nz.png',380284,'image/png','4a6ed76f1e8328b1d46dfec0d8b257fa2741d07473604c5733d090303bd3aca1',0,1,'2020-12-03 09:46:48','','2020/12'),(1519,70,'Version','Livraison_03-12-2020_Tyco_VpiTycoEx_0.0.4.8.zip','201203135415_Livraison_03-12-2020_Tyco_VpiTycoEx_0.0.4.8.zip',1050212,'application/x-zip-compressed','e17559de980be870f9e1e2bc3b272512b6818d244b576cf92c5f884882c1928e',1,1,'2020-12-03 13:54:15','Corrige le problème du multiTag','2020/12'),(1520,170,'Version','Equipements comm LONGONI et BADAMIER 2020-12-04.xlsx','201204093755_27407cdf2a1c6f7eb53bca8d60d6d457.xlsx',63062,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','ce421f850327dc0917ee465765b47601b9781b94e8b77ffa6d92abe7dcbfceec',1,443,'2020-12-04 09:37:55','Inventaire des équipements communicants BADAMIER et LONGONI','2020/12'),(1521,165,'Version','BrainStormingHMI.pptx','201204094645_BrainStormingHMI.pptx',47577,'application/vnd.openxmlformats-officedocument.presentationml.presentation','df2e8288edd1940f539b67f22a9ceca5f8095c8e2e5ea95d79e09c5bcdef2d15',3,1,'2020-12-04 09:46:45','','2020/12'),(1522,179,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_8_7_Release.zip','201204140505_08c75121dd07d980976e6bfa393555a6.zip',18668148,'application/x-zip-compressed','1eb2e3f5a9ac82824c494d4295535cd4331c0538ee7cfe5f07be5243003f11d3',11,1,'2020-12-04 14:05:05','','2020/12'),(1524,175,'Version','Manuel de l_utilisateur-v1.03.pdf','201204143747_056dad5b3ede0c5aba1a6daba1b311cc.pdf',953004,'application/pdf','bbdac8241e01255208516b7ae79e3151a2765eb5a5bada92119398be525854ba',4,1,'2020-12-04 14:37:47','','2020/12'),(1525,175,'Version','Emotor-LogicalModel-MC_August2020_V1.0.3.eapx','201207140921_Emotor-LogicalModel-MC_August2020_V1.0.3.eapx',4100096,NULL,'6d93d847a8e47d110d7f4db8c1fed61504c72cc2fcf84aff37667b323a8cb3a1',0,1,'2020-12-07 14:09:21','','2020/12'),(1526,175,'Version','Emotor-LogicalModel-MC_07_December2020_V1.0.6.eapx','201207150650_Emotor-LogicalModel-MC_07_December2020_V1.0.6.eapx',4100096,NULL,'dbf20cef452fb525e6cb89d3bc4888e781f371e948abbff0e49fec11e9f67a94',0,1,'2020-12-07 15:06:50','','2020/12'),(1528,466,'Issue','Opc.Ua.NodeSet2.SK_Model_7-12-2020.xml','201207181258_Opc.Ua.NodeSet2.SK_Model_7-12-2020.xml',46256,'text/xml','aa87c1c2c01e8160f5c15f9ca945c8d58f09d85feb4b88df15ef77f15dea104c',0,1,'2020-12-07 18:12:58','','2020/12'),(1529,479,'Issue','ATPV3.xml','201207181340_ATPV3.xml',54364,'text/xml','fb3d047afcc277832b0e67483df33d392172e4741e070fbf9511a5b91e62b371',0,447,'2020-12-07 18:13:40','','2020/12'),(1530,479,'Issue','ATPV3.EAPx','201207181341_ATPV3.EAPx',4165632,NULL,'5f4e0c261af68837d0413e623b31dde94769147aaeb6ee57386d1203f6823b44',0,447,'2020-12-07 18:13:41','','2020/12'),(1531,480,'Issue','Opc.Ua.NodeSet2.ATPV3_Conf.xml','201207182643_Opc.Ua.NodeSet2.ATPV3_Conf.xml',18546,'text/xml','44f31734023bbf9b7e15da7a59ecef64bd1f90cd1f36be1b7dd3f99c47cbfe28',0,447,'2020-12-07 18:26:43','sortie ConfigManager','2020/12'),(1532,480,'Issue','Opc.Ua.NodeSet2.ATPV3_Conf_Ximulator.xml','201207182905_Opc.Ua.NodeSet2.ATPV3_Conf_Ximulator.xml',16383,'text/xml','bf4fe2e329a902ad86d7bf70bd94dc4a8003325c45f4d19ca10a27cd5e2c593c',0,447,'2020-12-07 18:29:05','sortie Ximulator','2020/12'),(1533,82,'Version','OpenOpcUa_1_0_5_9.zip','201208103418_OpenOpcUa_1_0_5_9.zip',7901194,'application/x-zip-compressed','97917dea42541e6044854059cfb20da21cf693aebeb11c741c7d99305dddd0ff',2,1,'2020-12-08 10:34:18','MAJ 1.0.5.9','2020/12'),(1534,481,'Issue','clipboard-202012081146-cnrmy.png','201208114612_clipboard-202012081146-cnrmy.png',16077,'image/png','520a2f9b30d7635bfc8424d5b71dc1e8237007062f25f4018ba94ec13543310a',0,1,'2020-12-08 11:46:12','','2020/12'),(1535,485,'Issue','republish_uaexpert.png','201208125948_republish_uaexpert.png',21889,'image/png','69d2eea26c10875cd966ea4cdc6e0afedc0eee203152c956f9b287ec05068f33',0,461,'2020-12-08 12:59:48','','2020/12'),(1536,NULL,NULL,'UAExpert_issues.zip','201208132303_UAExpert_issues.zip',8301,'application/x-zip-compressed','1ce6cbbb625905d871232e2e9cc44ccc8aec51ea0ea640b8cd1f5a8e92ee825d',0,461,'2020-12-08 13:23:03',NULL,'2020/12'),(1537,485,'Issue','UAExpert_issues.log','201208133504_UAExpert_issues.log',145960,'text/plain','508b41e317108ed5b67c5aec20cb62a8c869e73b797b773c4e9dea3f4943c11d',0,461,'2020-12-08 13:35:04','','2020/12'),(1538,NULL,NULL,'OpenOpcUaCoreServer_Release.exe_201208_102531.dmp.zip','201208141144_3de89fb68976f0b14d83638915aa8b69.zip',20404530,'application/x-zip-compressed','84fd49760711067af476d8dcf7f7d0b3ee6298f2b4ab8df2a3f030336eff53a1',0,461,'2020-12-08 14:11:44',NULL,'2020/12'),(1544,143,'News','clipboard-202012092315-fqzga.png','201209231512_clipboard-202012092315-fqzga.png',22670,'image/png','209eb8005a0c18d716bfb41ac1fe74e1dc06ff92557d6997677f8bf17c90d263',0,1,'2020-12-09 23:15:12','','2020/12'),(1545,143,'News','clipboard-202012092316-40yp9.png','201209231622_clipboard-202012092316-40yp9.png',10355,'image/png','e87d0563a7a039dfbf2e2b187d977570e2735fe85c3ca67f4a4ee68de18d737e',0,1,'2020-12-09 23:16:22','','2020/12'),(1546,487,'Issue','SubSystems.S7-200.xml','201210122004_SubSystems.S7-200.xml',18818,'text/xml','fe2ce6af46054ae0a5f026d8d8d20471595dec601fcfc78c57452aebfb22e0d4',0,461,'2020-12-10 12:20:04','','2020/12'),(1547,487,'Issue','SubSystems.S7-210.xml','201210122007_SubSystems.S7-210.xml',14873,'text/xml','f8816616505c03113b1be1b92266f2cac46463b4ce435a11b22c8801dfc2993f',0,461,'2020-12-10 12:20:07','','2020/12'),(1549,487,'Issue','SubSystems.S7-220.xml','201210122014_SubSystems.S7-220.xml',506,'text/xml','6f7caac2fcb6e342d7a1bf825ef25060de806e1c37a45fd8df131aad5d659d20',0,461,'2020-12-10 12:20:14','','2020/12'),(1550,487,'Issue','SubSystems.S7-230.xml','201210122020_SubSystems.S7-230.xml',18545,'text/xml','adfb45f1cd03dce38f51b6bcb8e2b050918d4961afc78c744102e4a96d1de218',0,461,'2020-12-10 12:20:20','','2020/12'),(1551,487,'Issue','SubSystems.S7-240.xml','201210122023_SubSystems.S7-240.xml',13718,'text/xml','e3d17809302d3264fd55256056e3c0270ecef66d7a5a7975302f6f9134831e97',0,461,'2020-12-10 12:20:23','','2020/12'),(1552,487,'Issue','SubSystems.S7-250.xml','201210122027_SubSystems.S7-250.xml',13718,'text/xml','d7b477fcc6253b04125e994f1ab6b7979d2722ee2ff56bd7b70d409a6343a927',0,461,'2020-12-10 12:20:27','','2020/12'),(1553,487,'Issue','SubSystems.S7-260.xml','201210122031_SubSystems.S7-260.xml',15275,'text/xml','1d955494e28d03377ff9d89cd7c036b5d0cfe3d7ae7541cb69ed2e86d51f1a1b',0,461,'2020-12-10 12:20:31','','2020/12'),(1554,487,'Issue','SubSystems.S7-270.xml','201210122033_SubSystems.S7-270.xml',18545,'text/xml','68628dcf70320718843bc26a46a916aa4ebb662388936905bff10b211a7bceef',0,461,'2020-12-10 12:20:33','','2020/12'),(1555,487,'Issue','uaexpert.png','201210122115_uaexpert.png',107784,'image/png','64e40c777cdd5cb6c75a2c427d1466c11e8172fd1599d67cbc4056b188c53267',0,461,'2020-12-10 12:21:15','','2020/12'),(1556,65,'Version','OpenOpcUa_1_0_5_9_TYCO.zip','201211144427_OpenOpcUa_1_0_5_9_TYCO.zip',8103278,'application/x-zip-compressed','0ff1ff063b582a5bf8abf98bdb69f8c169b8c42e548c51fca3677ec10d6236ec',1,1,'2020-12-11 14:44:27','','2020/12'),(1557,118,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_8_9_Release.zip','201211152301_292f9a1a25195fb31bfc393acc2929a1.zip',20887518,'application/x-zip-compressed','f90ae783cc92b1e3b3a9806c8ca50be5f4d6a0ead7173282f4dc11e005691df9',1,1,'2020-12-11 15:23:01','','2020/12'),(1558,492,'Issue','Test-pb20201212-opcdiag.txt','201214112924_Test-pb20201212-opcdiag.txt',895984,'text/plain','69b40730e79e035900e198a86382568ff94bc85deb4c502d89c8c7351a5842bd',0,398,'2020-12-14 11:29:24','','2020/12'),(1559,485,'Issue','OpenOpcUaCoreServer_Release.exe_201214_091011.dmp.zip','201214124157_6cbd9344edbeb09c93c47d485e86b9ac.zip',1822356,'application/x-zip-compressed','a14f25fbe53511d6e306d9965bf30123ee54f37c3c12e5c07d43424c8e06cf06',0,461,'2020-12-14 12:41:57','9h10','2020/12'),(1560,485,'Issue','OpenOpcUaCoreServer_Release.exe_201214_083515.dmp.zip','201214124232_c7b258b4910cd20f8f39245a1dbc1c48.zip',2035890,'application/x-zip-compressed','119dd57d5cc812f95e540ec031ac058227419ab342a29e66986ff35da6eabec0',0,461,'2020-12-14 12:42:32','8h35','2020/12'),(1561,491,'Issue','diag_ua.png','201216083650_diag_ua.png',8361,'image/png','a04db2b4e33f0064efa3c03620655deffd94009480c3f155b9543ff199049c7f',0,461,'2020-12-16 08:36:50','','2020/12'),(1562,496,'Issue','OpenOpcUaCoreServer_Release.exe_201216_125758.dmp.zip','201216131647_0fd502672346abe73fbbe667a749d930.zip',1679621,'application/x-zip-compressed','f7f1c61263e9474a26e8cfb294a5c8e0f4a85dad05cf4c9ab884af4f48739407',0,461,'2020-12-16 13:16:47','','2020/12'),(1563,496,'Issue','OpenOpcUaCoreServer_Release.exe_201216_125701.dmp.zip','201216131905_c04100173ccc2c3d44ea91ea1f465a0b.zip',8477747,'application/x-zip-compressed','39a73036fa2f37302c08f08042be11ca8dfaa74f9b31cc41f4aff2b57c6962b2',0,461,'2020-12-16 13:19:05','','2020/12'),(1564,496,'Issue','OpenOpcUaCoreServer_Release.exe_201216_124808.dmp.zip','201216132726_0947d7d792e426bee55c731bb9a94aa5.zip',30339338,'application/x-zip-compressed','b15b6d64cd3ab642aa8a048b2219e26bd9c64e9908cfdb9fc8de19e46e6ce4c4',0,461,'2020-12-16 13:27:26','','2020/12'),(1565,65,'Version','OpenOpcUa_1_0_5_9_TYCO_16-12-2020.zip','201216173418_OpenOpcUa_1_0_5_9_TYCO_16-12-2020.zip',8141183,'application/x-zip-compressed','80382cf5bcabbe3b15891de43aa90a3dabe3fec3a5bad43b8776b4feb70c24db',1,1,'2020-12-16 17:34:18','','2020/12'),(1566,110,'Version','VpiTycoEx_0.0.5.0.zip','201217154435_VpiTycoEx_0.0.5.0.zip',1051084,'application/x-zip-compressed','e5db85625a4c422c6bbc109f2765bc1fbfc154f70cf5c87fd51a3f8caf3156f4',1,1,'2020-12-17 15:44:35','','2020/12'),(1567,503,'Issue','OpenOpcUaCoreServer_Release.exe_201217_211052.dmp.zip','201218081652_710f5185ce92dc7c68878b918950772a.zip',18735789,'application/x-zip-compressed','8cde87a767c8d6cbcda99f02cdb7a3ddb6c957a2c11b3eea3fc1d1a07cf2397e',0,461,'2020-12-18 08:16:52','','2020/12'),(1568,504,'Issue','uaexpert.png','201210122115_uaexpert.png',107784,'image/png','64e40c777cdd5cb6c75a2c427d1466c11e8172fd1599d67cbc4056b188c53267',0,461,'2020-12-18 09:55:23','','2020/12'),(1569,504,'Issue','with_old_server.png','201218095727_with_old_server.png',128824,'image/png','eee5017861a303168c5ebdfc2b13e6512e346b7a5ac229d77ed5a98ac5da549e',0,461,'2020-12-18 09:57:27','','2020/12'),(1570,504,'Issue','clipboard-202012220209-kigb4.png','201222020907_clipboard-202012220209-kigb4.png',124762,'image/png','d890c642528858b5528080326feaa02863c7709aa1c78f691730e61aec4a36f7',0,1,'2020-12-22 02:09:07','','2020/12'),(1571,504,'Issue','clipboard-202012220209-8vs4i.png','201222020919_clipboard-202012220209-8vs4i.png',123895,'image/png','32098ae31fa32f562d629719cf19c778aee48f663ec549a7dd8a41270a09a665',0,1,'2020-12-22 02:09:19','','2020/12'),(1572,504,'Issue','nodeset_width.png','201222104512_nodeset_width.png',66435,'image/png','f5f1aa2e99828a2e1de2b8236d504bb7f90f5db2b561aa6d76f80bcbedc1fbaa',0,461,'2020-12-22 10:45:12','','2020/12'),(1573,504,'Issue','nodeset_width_0.png','201222125659_nodeset_width_0.png',23367,'image/png','076def68ca443c2b4b8a82fd47dd63734f191cf7c8ca1242111f960fb0f548dc',0,461,'2020-12-22 12:56:59','','2020/12'),(1574,504,'Issue','12E_address_content.png','201222125703_12E_address_content.png',1013,'image/png','887f0dc2140a75fdd5d71ac72717b373d73070dfb2f5fd00dceae06f6591fe2e',0,461,'2020-12-22 12:57:03','','2020/12'),(1575,505,'Issue','AxATL-OPCUA-IntegrationOpenOpcUa1.0.5.8.pdf','201222163322_AxATL-OPCUA-IntegrationOpenOpcUa1.0.5.8.pdf',656437,'application/pdf','4a2f839569b01b664c8ee81996c104a3cc13d4c9e1e42524db03aca4c0cae64a',0,398,'2020-12-22 16:33:22','integration report','2020/12'),(1576,505,'Issue','OpenOpcUaSharedLib_source.zip','201222163322_OpenOpcUaSharedLib_source.zip',12965,'application/x-zip-compressed','06b670685b046dad346f34e4dfd7ed1e8982380de55620d2559a90be2692a040',0,398,'2020-12-22 16:33:22','modified sources files from Sharedlib','2020/12'),(1577,505,'Issue','OpenOpcUaClientLib_source.zip','201222163322_OpenOpcUaClientLib_source.zip',55927,'application/x-zip-compressed','f71f4a3e276897e6c205375392e6e5243a7a8e0bfe8487681ee6e647438e54e3',0,398,'2020-12-22 16:33:22','modified sources files from Clientlib','2020/12'),(1578,506,'Issue','clipboard-202012311404-9xoxt.png','201231140446_clipboard-202012311404-9xoxt.png',89541,'image/png','bbeeb2e1694ea13ed2b9e23c4175810dd01d969bd4a2efaa34943522beb602ab',0,1,'2020-12-31 14:04:46','','2020/12'),(1579,81,'Version','Opc.Ua.NodeSet2.CTT.xml','210107141310_Opc.Ua.NodeSet2.CTT.xml',30124,'text/xml','a16c4f660b28db4fc9608461cb0929e9a6553d5b38297c0b0b0d317245dc9915',1,1,'2021-01-07 14:13:10','','2021/01'),(1580,507,'Issue','OpenOpcUaCoreServer_Release.exe_210107.zip','210108081538_OpenOpcUaCoreServer_Release.exe_210107.zip',3293104,'application/x-zip-compressed','b876aeb3bfe36a9e2cd1f53379b46fddb2a5ad4897da97f654b2e62c21b0670b',0,461,'2021-01-08 08:15:38','','2021/01'),(1581,184,'Version','OpenOpcUaCoreServer_Release_8-1-2021.zip','210108093923_OpenOpcUaCoreServer_Release_8-1-2021.zip',2686181,'application/x-zip-compressed','43c8b1b5284b1ff3761b36391b4aee3c0899ed903890c575e59cb473f0345749',2,1,'2021-01-08 09:39:23','','2021/01'),(1582,183,'Version','Manuel de l_utilisateur-v1.03.pdf','210108094008_056dad5b3ede0c5aba1a6daba1b311cc.pdf',1041694,'application/pdf','7b50ded5ddb4bc8f69c19d909fd7f86eb3ce2e496717507771ee77d8ee2996a4',1,1,'2021-01-08 09:40:08','','2021/01'),(1583,183,'Version','Manuel de l_utilisateur - VpiS7.pdf','210108094049_76be721cdb7b50d4f1bb1bdfd73f06a8.pdf',1251352,'application/pdf','eff39b381ab386b72bf36bc4d19822fcb32f2189264b7cca2a4628834b8b3bd1',2,1,'2021-01-08 09:40:49','','2021/01'),(1584,507,'Issue','OpenOpcUaCoreServer_Release.exe_210108.zip','210108095416_OpenOpcUaCoreServer_Release.exe_210108.zip',5271715,'application/x-zip-compressed','6f7c6dc7437848c4c5b4643fa9d759556d942c04f28e70e9495ab0d6eabb9012',0,461,'2021-01-08 09:54:16','','2021/01'),(1585,507,'Issue','OpenOpcUaCoreServer_Release.exe_210108_102935.zip','210108104317_OpenOpcUaCoreServer_Release.exe_210108_102935.zip',2026837,'application/x-zip-compressed','fffb502390fee945ef28e2192c2cc5e73a069b9f9bb9f0ffc9e42d385f80c7aa',0,461,'2021-01-08 10:43:17','','2021/01'),(1586,507,'Issue','OpenOpcUaCoreServer_Release.exe_210108-2.zip','210108130036_OpenOpcUaCoreServer_Release.exe_210108-2.zip',10368005,'application/x-zip-compressed','a20674e28e48ea01394f738adbd575b1bd6d4b3051c31cd95d2fb4c52470a4b8',0,461,'2021-01-08 13:00:36','','2021/01'),(1587,509,'Issue','Livraison.7z','210111184434_Livraison.7z',45794695,'application/x-7z-compressed','9bb0cb36c2bd68ef25f6b029365b2fa05160be79c6c600fe10cbc93b6eed6bb8',0,347,'2021-01-11 18:44:34','','2021/01'),(1588,509,'Issue','CTT_Result_CHUBB_OOUA_1.0.5.9_12-1-2021.xlsx','210112180510_CTT_Result_CHUBB_OOUA_1.0.5.9_12-1-2021.xlsx',67163,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','f4f4d3037b80a5543c9a7493716c4b8cdc4819cf07ebedcd4c07a6bb2d038891',0,1,'2021-01-12 18:05:10','','2021/01'),(1589,509,'Issue','clipboard-202101121805-nabiy.png','210112180514_clipboard-202101121805-nabiy.png',4759,'image/png','3b9436b77b3c4654dd01141a779103d81c43ef34a01a9a6cd3337955860be329',0,1,'2021-01-12 18:05:14','','2021/01'),(1590,512,'Issue','Conf Test serveur OPC UA.zip','210112180527_959a1c07efa0b3967e50e98ef0fe84c9.zip',5627825,'application/x-zip-compressed','306de7bf4682fe45d5432f587018d4209ef1b1c4b8a6399a3668bb6a4e44670d',0,459,'2021-01-12 18:05:27','','2021/01'),(1591,512,'Issue','balise value.png','210113112007_77eb7e5e571f3271ddf4de05f26107db.png',320935,'image/png','51f9dc236b7726356e6f0f00cc1101022da5180b341a44fde8337355c2623544',0,459,'2021-01-13 11:20:07','','2021/01'),(1592,512,'Issue','Conf Test serveur OPC UA.zip','210112180527_959a1c07efa0b3967e50e98ef0fe84c9.zip',5627825,'application/x-zip-compressed','306de7bf4682fe45d5432f587018d4209ef1b1c4b8a6399a3668bb6a4e44670d',0,459,'2021-01-13 11:21:33','','2021/01'),(1593,509,'Issue','CTT_CHUBB.results.xml','210113202641_CTT_CHUBB.results.xml',366412,'text/xml','5271c5dc4389c49b687a5b0d9b4a4ffe09a74ef1abab99ad1ebf7ff147172cb7',0,1,'2021-01-13 20:26:41','','2021/01'),(1594,515,'Issue','VPI addr.PNG','210114180002_8b632229347deb37eebef17b4beeaef4.PNG',67548,'image/png','bf5a447bf84df2e4d75f78632eb27dda45a35a478dbce640deffbd4c8f345273',0,459,'2021-01-14 18:00:02','','2021/01'),(1595,516,'Issue','Opc.Ua.NodeSet2.ADP.CMSIType.xml','210115154440_Opc.Ua.NodeSet2.ADP.CMSIType.xml',21641,'text/xml','dc2852bc80d784bbe821c5eb183f02c70ffd92977667ffcf72e9978fe17d5c02',0,347,'2021-01-15 15:44:40','','2021/01'),(1596,516,'Issue','Opc.Ua.NodeSet2.ADP.ECSType.xml','210115154440_Opc.Ua.NodeSet2.ADP.ECSType.xml',23427,'text/xml','5bb5c3237f8ac79b5bf01148f91a991e4b057c45634b6fccc6d97060493a3428',0,347,'2021-01-15 15:44:40','','2021/01'),(1597,516,'Issue','Opc.Ua.NodeSet2.ADP.FMSIType.xml','210115154440_Opc.Ua.NodeSet2.ADP.FMSIType.xml',43389,'text/xml','50d65a0bbefca9a39148642ff1e18aefdbf3b8dd7c654310479124098b51ece0',0,347,'2021-01-15 15:44:40','','2021/01'),(1598,516,'Issue','Opc.Ua.NodeSet2.ADP.LSType.xml','210115154440_Opc.Ua.NodeSet2.ADP.LSType.xml',5909,'text/xml','95276c4dabe005eee17e767cc86057a12f20f6e97198ad644023c138edacbff0',0,347,'2021-01-15 15:44:40','','2021/01'),(1599,516,'Issue','Opc.Ua.NodeSet2.ADP.SSIType.xml','210115154440_Opc.Ua.NodeSet2.ADP.SSIType.xml',9084,'text/xml','194326454d4df281a4e1ec39747d40bdd42a10d90efd3ac7717d5751f9d54718',0,347,'2021-01-15 15:44:40','','2021/01'),(1600,516,'Issue','Opc.Ua.NodeSet2.ADP.UGAType.xml','210115154440_Opc.Ua.NodeSet2.ADP.UGAType.xml',17009,'text/xml','fe82f9240389f97fbc7cf5604d2e91054256e98c494c85b56fcf03317632033c',0,347,'2021-01-15 15:44:40','','2021/01'),(1602,NULL,NULL,'OrlyP0_CertificationOpcUa_Instance.xml','210115163420_OrlyP0_CertificationOpcUa_Instance.xml',3094047,'text/xml','517f90da097a590df26313d08012d2d1e30225f06e19ac83c98be7a83e18f913',0,347,'2021-01-15 16:34:20',NULL,'2021/01'),(1603,82,'Version','OpenOpcUa_1_0_5_9_RC03.zip','210117223642_OpenOpcUa_1_0_5_9_RC03.zip',8666295,'application/x-zip-compressed','6c5e656aca2700737e508f99b6d528827290476a4ab6de190f8759750937d01d',1,1,'2021-01-17 22:36:42','','2021/01'),(1604,513,'Issue','crash.png','210118081526_crash.png',43871,'image/png','21a63a8a31c37fe7dd0f411580dfabd8ec2803cc5d2dc9c25668688cc208765d',0,461,'2021-01-18 08:15:26','','2021/01'),(1605,513,'Issue','memory_leaks.png','210118081532_memory_leaks.png',42154,'image/png','30bf6a6cae44b57fa7ca46a752e6d1566c795c9dbe1d7a23dbc7d78d5580de9c',0,461,'2021-01-18 08:15:32','','2021/01'),(1606,481,'Issue','memory_leaks.png','210118081532_memory_leaks.png',42154,'image/png','30bf6a6cae44b57fa7ca46a752e6d1566c795c9dbe1d7a23dbc7d78d5580de9c',0,461,'2021-01-18 08:16:57','','2021/01'),(1607,503,'Issue','crash.png','210118081526_crash.png',43871,'image/png','21a63a8a31c37fe7dd0f411580dfabd8ec2803cc5d2dc9c25668688cc208765d',0,461,'2021-01-18 13:02:04','','2021/01'),(1608,503,'Issue','crash1.png','210118130207_crash1.png',59061,'image/png','615654b423ebf2eededb8038c09809fb72ab0f1794e0911ca009abe435a119fd',0,461,'2021-01-18 13:02:07','','2021/01'),(1609,517,'Issue','Opc.Ua.NodeSet2.ADP.SSIType.xml','210115154440_Opc.Ua.NodeSet2.ADP.SSIType.xml',9084,'text/xml','194326454d4df281a4e1ec39747d40bdd42a10d90efd3ac7717d5751f9d54718',0,347,'2021-01-18 14:20:16','','2021/01'),(1610,517,'Issue','Opc.Ua.NodeSet2.ADP.LSType.xml','210115154440_Opc.Ua.NodeSet2.ADP.LSType.xml',5909,'text/xml','95276c4dabe005eee17e767cc86057a12f20f6e97198ad644023c138edacbff0',0,347,'2021-01-18 14:20:16','','2021/01'),(1611,517,'Issue','Opc.Ua.NodeSet2.ADP.FMSIType.xml','210115154440_Opc.Ua.NodeSet2.ADP.FMSIType.xml',43389,'text/xml','50d65a0bbefca9a39148642ff1e18aefdbf3b8dd7c654310479124098b51ece0',0,347,'2021-01-18 14:20:16','','2021/01'),(1612,517,'Issue','Opc.Ua.NodeSet2.ADP.ECSType.xml','210115154440_Opc.Ua.NodeSet2.ADP.ECSType.xml',23427,'text/xml','5bb5c3237f8ac79b5bf01148f91a991e4b057c45634b6fccc6d97060493a3428',0,347,'2021-01-18 14:20:16','','2021/01'),(1613,517,'Issue','Opc.Ua.NodeSet2.ADP.CMSIType.xml','210115154440_Opc.Ua.NodeSet2.ADP.CMSIType.xml',21641,'text/xml','dc2852bc80d784bbe821c5eb183f02c70ffd92977667ffcf72e9978fe17d5c02',0,347,'2021-01-18 14:20:16','','2021/01'),(1614,517,'Issue','Opc.Ua.NodeSet2.ADP.UGAType.xml','210115154440_Opc.Ua.NodeSet2.ADP.UGAType.xml',17009,'text/xml','fe82f9240389f97fbc7cf5604d2e91054256e98c494c85b56fcf03317632033c',0,347,'2021-01-18 14:20:17','','2021/01'),(1615,156,'Version','Livrable-01-2021.zip','210118162501_Livrable-01-2021.zip',2599844,'application/x-zip-compressed','a0d7664be33e1d8944e814be36661fa3b33698d6a4b81e631e7c987778406523',2,1,'2021-01-18 16:25:01','','2021/01'),(1616,518,'Issue','OOUACAPServer.bak','210118165402_OOUACAPServer.bak',5651,NULL,'65199a87338bd92677874a37d3b36ff8affa9be7636a78ca6bda6f1db15d5e99',0,459,'2021-01-18 16:54:02','','2021/01'),(1617,518,'Issue','OOUACAPServer.log','210118165403_OOUACAPServer.log',5651,'text/plain','c40ee7d73bfec58e6e259b6f46d5f1ff8c3ebe182dce4cd2b06d57c0286d7f7f',0,459,'2021-01-18 16:54:03','','2021/01'),(1618,70,'Version','OOUA_Livraison_20-01-2021.zip','210120113440_OOUA_Livraison_20-01-2021.zip',2659756,'application/x-zip-compressed','bf86d06bc4fc34d3178723433f46c008e96cc79ee236631cea6f7b24d7b1c5f8',1,1,'2021-01-20 11:34:40','','2021/01'),(1619,520,'Issue','Concentrateur ADP Certification OPC-UA.7z','210120122553_698bf7309734436b03f0317272f1f807.7z',1751674,'application/x-7z-compressed','87b5c3e88096641e91bb0235c56fb69fb5677941a299094344e22944dbb36f51',0,347,'2021-01-20 12:25:53','','2021/01'),(1620,164,'Version','DemoAC_Release_x64.zip','210121144844_DemoAC_Release_x64.zip',2969900,'application/x-zip-compressed','57f1f85b3ed5b83100c8d425d7b49198db823736fba2881fb5e8eb238c5cbdbf',4,1,'2021-01-21 14:48:44','','2021/01'),(1622,165,'Version','BugTrack001.pptx','210121153834_BugTrack001.pptx',37702,'application/vnd.openxmlformats-officedocument.presentationml.presentation','0a4678de95d9540d7ab21f1855bf5dfc6394eeb1e97b25a3619f609a35e73305',5,1,'2021-01-21 15:38:34','','2021/01'),(1623,170,'Version','283-0311-EDM-Etude de faisabilité_V0.3_MC.docx','210121211728_d25e5ee70b000c011811ff4b3e02ba64.docx',1449241,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','513a3515dda431a184fad602efbd902b891b87c315b52ce64299e0bf249eb390',4,1,'2021-01-21 21:17:28','','2021/01'),(1624,151,'News','clipboard-202101212142-xzlia.png','210121214212_clipboard-202101212142-xzlia.png',277432,'image/png','7c1f9b18dff34b0e9149952fd28e93dd6e6be4ded427e4d0bcb04c7b8fb9b5b0',0,1,'2021-01-21 21:42:12','','2021/01'),(1625,151,'News','clipboard-202101212159-ppy3i.png','210121215935_clipboard-202101212159-ppy3i.png',1403168,'image/png','f69549571c4506b6b617e735ac26ff376379163d167820d308083df74255da5e',0,1,'2021-01-21 21:59:35','','2021/01'),(1626,162,'Version','vcpkg.exe','210122181924_vcpkg.exe',1691648,'application/x-msdownload','55f72219c4c5a3aa92a36f83c6b12e5b21d4e66ce4393028e054d401bba39878',0,1,'2021-01-22 18:19:24','','2021/01'),(1627,152,'News','clipboard-202101221831-f03lu.png','210122183157_clipboard-202101221831-f03lu.png',37569,'image/png','6c035ab1e5895e8e462a164a854d983621eef510833c410276a8df624329250a',0,1,'2021-01-22 18:31:57','','2021/01'),(1628,520,'Issue','clipboard-202101251542-dhp8t.png','210125154242_clipboard-202101251542-dhp8t.png',8519,'image/png','61a1b21c195782ac1882adc75e1cfb96b9c594aeea7f066fbebc6b6ef7dffbf9',0,1,'2021-01-25 15:42:42','','2021/01'),(1630,520,'Issue','Concentrateur ADP Certification OPC-UA-2.7z','210125165647_dbd167a8d6dacdef7034323eac6214fd.7z',1751794,'application/x-7z-compressed','dac073ca26c27830ca1c5181a765e8948345d2ece1879722496689898ea0a22a',0,347,'2021-01-25 16:56:47','','2021/01'),(1631,156,'Version','Livraison_26-1-2021.zip','210126161547_Livraison_26-1-2021.zip',2600876,'application/x-zip-compressed','eddca4a942b46ce6135128b8d9ad7b6d0457aab2c12c2f3a0f5652ec45099632',1,1,'2021-01-26 16:15:47','','2021/01'),(1632,156,'Version','OpenOpcUaCoreServer_Release.exe_210126_162245.dmp','210126162647_OpenOpcUaCoreServer_Release.exe_210126_162245.dmp',7208577,'application/vnd.tcpdump.pcap','056bd2899f9803ad966acdb247a0683a76f11ec33b4e755790f22b1c2eda1467',1,459,'2021-01-26 16:26:47','','2021/01'),(1633,170,'Version','LLv6yHPI.jpg','210127094858_LLv6yHPI.jpg',326964,'image/jpeg','7900a5c561ef289886fc4d2f2058560df11a2ac2d9692b4e0b54c4f98f6e71ab',1,1,'2021-01-27 09:48:58','','2021/01'),(1634,170,'Version','283-0311-EDM-Etude de faisabilité_V0.4_MC.docx','210127095333_7d495169eee0b517c68381113d84a2a5.docx',1545665,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','019bf542613bdc46ac5fff3e6659c65e68cfaee1bf873196004b032f35b3160a',1,1,'2021-01-27 09:53:33','','2021/01'),(1635,524,'Issue','clipboard-202101281528-cwjgd.png','210128152847_clipboard-202101281528-cwjgd.png',114081,'image/png','34573eebe25622613cf55100b6e88c4df888dc359660edb0d57d8321b0918737',0,432,'2021-01-28 15:28:47','','2021/01'),(1636,524,'Issue','clipboard-202101281529-kawwx.png','210128152928_clipboard-202101281529-kawwx.png',94713,'image/png','5586bd06a408db0a6c8b7f0923706eb009220d3fb861323fc83599de83345879',0,432,'2021-01-28 15:29:28','','2021/01'),(1637,524,'Issue','clipboard-202101281530-tu4kn.png','210128153028_clipboard-202101281530-tu4kn.png',38907,'image/png','ef4df189b6e77963150d333283cb56de3269131fad0a9f4a5fdb8ae208ababfe',0,432,'2021-01-28 15:30:28','','2021/01'),(1638,524,'Issue','clipboard-202101281531-2wuod.png','210128153135_clipboard-202101281531-2wuod.png',48068,'image/png','8cd5add3e7469bf607b49505db7b6156a539ef3493798ce5f89556042eb24d68',0,432,'2021-01-28 15:31:35','','2021/01'),(1639,70,'Version','Livraison_28-1-2021.zip','210128163549_Livraison_28-1-2021.zip',2551155,'application/x-zip-compressed','83961b6cd4ac3ee70d75e10a301e0bddbafa452abb2ccbb6cc7b9b33ee2e8880',6,1,'2021-01-28 16:35:49','','2021/01'),(1640,402,'Issue','convertDerEnPem.bat','210128175218_convertDerEnPem.bat',83,'application/x-msdos-program','87a4b52fafcfe22a493f666548fc17f021f352b9fac6d7b764c191efbebe863e',0,328,'2021-01-28 17:52:18','','2021/01'),(1641,402,'Issue','convertPemEnPfx.bat','210128175224_convertPemEnPfx.bat',148,'application/x-msdos-program','90c062cdee453286d67521515332318e29b8a80f0ae36a2f7365104193772159',0,328,'2021-01-28 17:52:24','','2021/01'),(1642,525,'Issue','clipboard-202101282221-huieu.png','210128222132_clipboard-202101282221-huieu.png',2135859,'image/png','a284c9e9f5ce173eee874cf1e146fac91dc5d284b8a7fead74e64b3247659aad',0,1,'2021-01-28 22:21:32','','2021/01'),(1643,465,'Issue','CohabitationNOK-VpiPlant.png','210202165018_CohabitationNOK-VpiPlant.png',288504,'image/png','ff14791de89b9321664f67cf65f423242ebc338227cc13b86c1885403a383e68',0,433,'2021-02-02 16:50:18','','2021/02'),(1644,170,'Version','283-0311-EDM-Etude de faisabilité_V0.5_MC.docx','210203094259_160853f93992b342de6e71594d4a2d85.docx',1553800,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','60cc624200af591a85547e5fee7a38f09b998b96ea81d5c046979bd77e99e501',6,1,'2021-02-03 09:42:59','','2021/02'),(1645,186,'Version','ManagementDAClientSetup.zip','210204140004_ManagementDAClientSetup.zip',18171838,'application/x-zip-compressed','b8a999333eeee9d739145cc90bfa0f571c2b98c01d90747ce04fbd47cbf0450a',1,1,'2021-02-04 14:00:04','','2021/02'),(1646,186,'Version','ManagementDAClient_Portable.zip','210204142523_ManagementDAClient_Portable.zip',289002,'application/x-zip-compressed','edf6ff2e8f34097bb47c00684f8aede8fd1d8c53bce3bb27d8c94e7af7bbf1a1',1,1,'2021-02-04 14:25:23','','2021/02'),(1647,186,'Version','ManagementDAClient_14h33.zip','210204143333_ManagementDAClient_14h33.zip',288216,'application/x-zip-compressed','ccc350381f9a4b3802b73333bb698e99ccbf07e0abe3c71535bf06f54171f088',1,1,'2021-02-04 14:33:33','','2021/02'),(1648,186,'Version','ManagementDAClient_14h46.zip','210204144654_ManagementDAClient_14h46.zip',3681704,'application/x-zip-compressed','aa142ec3fc224c2fbb1fa03dd2f8540df960fc620196ef82765b44e71c3567cd',1,1,'2021-02-04 14:46:54','','2021/02'),(1649,186,'Version','mfc120u.dll','210204145448_mfc120u.dll',4449952,'application/x-msdownload','c2d0e285e2333a9c620be04a5747881af0d5615da32226886e659ff31a9761cc',3,1,'2021-02-04 14:54:48','','2021/02'),(1650,186,'Version','msvcr120.dll','210204150147_msvcr120.dll',970912,'application/x-msdownload','86e39b5995af0e042fcdaa85fe2aefd7c9ddc7ad65e6327bd5e7058bc3ab615f',2,1,'2021-02-04 15:01:47','','2021/02'),(1651,186,'Version','msvcp120.dll','210204150438_msvcp120.dll',455328,'application/x-msdownload','87c42ca155473e4e71857d03497c8cbc28fa8ff7f2c8d72e8a1f39b71078f608',2,1,'2021-02-04 15:04:38','','2021/02'),(1652,186,'Version','version.dll','210204150508_version.dll',21504,'application/x-msdownload','645ca9e88da21c63710a04a0f54421018df415a3d612112c71a255c49325c082',1,1,'2021-02-04 15:05:08','','2021/02'),(1653,186,'Version','gdi32.dll','210204150535_gdi32.dll',307200,'application/x-msdownload','5d5edac77f5011e3d4b970a18741f7851ed0f80147f3555ee2a52b23a188a7db',1,1,'2021-02-04 15:05:35','','2021/02'),(1654,164,'Version','Demo-SQL-HA_x64_Debug.zip','210205161026_Demo-SQL-HA_x64_Debug.zip',2851837,'application/x-zip-compressed','9b7d3a70ea5c643ac4eaf3e67ca7b5c17b00bd2a11ffa04a3f4dd64d83a8ae56',1,1,'2021-02-05 16:10:26','','2021/02'),(1655,164,'Version','DemoUserDefineTypeTricycle.zip','210205175129_DemoUserDefineTypeTricycle.zip',14987145,'application/x-zip-compressed','8b86f7a12d25c6bfea90d69fc75c1d4e03766008a9fc4e17d99ab4648176a27d',1,1,'2021-02-05 17:51:29','','2021/02'),(1657,178,'Version','Config1_Auto_Release_IPV4.zip','210205192706_Config1_Auto_Release_IPV4.zip',3171192,'application/x-zip-compressed','71f23246700498d5abdea96988a7dceebe577d830e95ff21444c3b90bef9e45e',0,1,'2021-02-05 19:27:06','','2021/02'),(1659,532,'Issue','M4069.PNG','210211160549_M4069.PNG',176479,'image/png','9f4818f06f0fcd581ee9057228eb170fbebbedfcb81bc7521dc3e898d0c49025',0,398,'2021-02-11 16:05:49','','2021/02'),(1660,532,'Issue','M4079.JPG','210211160640_M4079.JPG',259704,'image/jpeg','93e845759ad2911d18e4fae67962e6c6983b6609a1672ad20be65640fb729ae3',0,398,'2021-02-11 16:06:40','','2021/02'),(1661,532,'Issue','M4070.PNG','210211160640_M4070.PNG',180877,'image/png','97e9dc7b2b999bb55ad2c5c174b59abe66ef6886cd318b82c143ee9431600f48',0,398,'2021-02-11 16:06:40','','2021/02'),(1662,532,'Issue','M4079_20210204_Tail.log','210212095622_M4079_20210204_Tail.log',2752566,'text/plain','a5f2f650c653449647380062edb6b52ef4ede0d9d78c23ac8122617d27090c1e',0,398,'2021-02-12 09:56:22','last 02:15 logs with 3 last rsa sign error before crash','2021/02'),(1663,80,'Version','OOUACoreServer_Binary_1.0.5.9.zip','210212125750_OOUACoreServer_Binary_1.0.5.9.zip',996400,'application/x-zip-compressed','9c8102d993915d43bea408c9ae45857d4b15efbd81db3869fed1f77d9354bf60',4,1,'2021-02-12 12:57:50','','2021/02'),(1664,143,'Version','UAExpert_1.5.12_Portable.zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',1,1,'2021-02-12 13:21:12','','2021/02'),(1667,80,'Version','OOUACoreServer_x32_1.0.5.9.zip','210212193345_OOUACoreServer_x32_1.0.5.9.zip',2069995,'application/x-zip-compressed','dba1471723dccdca08bac812c37037eeebac90437ac3f52a7f2df65aeb54ece8',3,1,'2021-02-12 19:33:45','','2021/02'),(1668,177,'Version','Livraison_12-2-2021.zip','210212223125_Livraison_12-2-2021.zip',2826976,'application/x-zip-compressed','ab948cb9c0e02f9e970f5ea174a66d9ad3aea130d84ecec60d914a3220628fc7',0,1,'2021-02-12 22:31:25','','2021/02'),(1670,150,'Version','Tree01_Release-IPV4_x64.zip','210215192738_Tree01_Release-IPV4_x64.zip',3168609,'application/x-zip-compressed','a629d61b4c6ed3b0aefb640751eff22a9f2b8e739cd4abc3ab145da71b1b6c47',2,1,'2021-02-15 19:27:38','','2021/02'),(1671,149,'Version','Manuel de l_utilisateur-v1.03.pdf','210108094008_056dad5b3ede0c5aba1a6daba1b311cc.pdf',1041694,'application/pdf','7b50ded5ddb4bc8f69c19d909fd7f86eb3ce2e496717507771ee77d8ee2996a4',2,1,'2021-02-16 09:28:26','','2021/01'),(1672,148,'Version','OpenOpcUa_1_0_5_9_RC07.zip','210208174452_OpenOpcUa_1_0_5_9_RC07.zip',8670704,'application/x-zip-compressed','8b58d1c46bf1dd449fc624ee4d09582d7db3e55faf15f1484dfcbbe8ab23544d',2,1,'2021-02-16 14:34:33','','2021/02'),(1673,187,'Version','UaClntd-001-00301-0.xml','210216151651_UaClntd-001-00301-0.xml',757,'text/xml','0e7db1e1398189cfb36aa787a6b5a6471384ddf77dc4887e3e46f45250e51266',2,1,'2021-02-16 15:16:51','','2021/02'),(1674,147,'Version','Simulation_2020_Release_x64.zip','210216155754_Simulation_2020_Release_x64.zip',2631912,'application/x-zip-compressed','63950a5c56495e76a4c1fc2610c97720a2cae04a6a4eb6142903b1f646e6bad9',2,1,'2021-02-16 15:57:54','','2021/02'),(1675,170,'Version','283-0311-EDM-Etude de faisabilité_V0.6_MC.docx','210217100703_c63a99dd2dcb75b6a773b82c69f10e19.docx',1992766,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','e84233e7d344043bedb8df5e829d00c1b3e3ce6036678d89cfdfd65e86133a31',1,1,'2021-02-17 10:07:03','','2021/02'),(1677,150,'Version','Debug-IPV4.zip','210218105250_Debug-IPV4.zip',1278471,'application/x-zip-compressed','7458f46b3c33ac49b7ad712a63e1aa695eb9b3b3298bf94592cd691cb40c73bd',2,1,'2021-02-18 10:52:50','','2021/02'),(1679,150,'Version','OpenOpcUaClientLib.dll','210218143851_OpenOpcUaClientLib.dll',165888,'application/x-msdownload','39c5d04f76721129630e407f8f057661be775d3de5eb6da53758882c45a050cf',2,1,'2021-02-18 14:38:51','','2021/02'),(1680,149,'Version','OpenOpcUa_J3.pdf','210218164948_OpenOpcUa_J3.pdf',3484551,'application/pdf','06424c52fc6442c49eed0d42d979d4c8c54df009c172ee77ac7c0b6c2a165841',4,1,'2021-02-18 16:49:48','','2021/02'),(1681,524,'Issue','Maquette alarmes.zip','210218172541_1fbb38574a3e6e422a796661ee702573.zip',3546550,'application/x-zip-compressed','055db550a4dc8e71bf3fcddbb75fbdd4787a6a7d4ed0230ac8c0f130c9c72e04',0,432,'2021-02-18 17:25:41','','2021/02'),(1682,534,'Issue','clipboard-202102191639-v4wdf.png','210219163935_clipboard-202102191639-v4wdf.png',26277,'image/png','e61d587d589849fac9175a1cc2b8906e0ad8c1dc8204fc072796152910f60456',0,432,'2021-02-19 16:39:35','','2021/02'),(1683,534,'Issue','Multi client.zip','210219164209_8d6c6e8b7172ff9970cc1105be7c5a46.zip',11874245,'application/x-zip-compressed','fde8d5c37703e6e6111091c757211123595c46abf49aeedd2716282cc6151711',0,432,'2021-02-19 16:42:09','','2021/02'),(1684,534,'Issue','clipboard-202102191728-oqxfg.png','210219172853_clipboard-202102191728-oqxfg.png',16378,'image/png','7023419f41c999eb87fddfaf0b83ff138119cf0a1ba8416d608cc0c2d99acac6',0,1,'2021-02-19 17:28:53','','2021/02'),(1685,534,'Issue','clipboard-202102191729-zfhp1.png','210219172946_clipboard-202102191729-zfhp1.png',73911,'image/png','33332feaa967657649b6c4ad5fb22dfac6f6597f0d3ea2ef3731e021ece1249c',0,1,'2021-02-19 17:29:46','','2021/02'),(1686,80,'Project','Simulation_2021_Release_x64.zip','210222103334_Simulation_2021_Release_x64.zip',2943802,'application/x-zip-compressed','80f9441afd4fe143f631bc1154dce9e4e98bf3ff4d87a799457e40827f6c934c',7,1,'2021-02-22 10:33:34','','2021/02'),(1687,80,'Project','UAExpert_1.5.12_Portable.zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',6,1,'2021-02-22 10:35:58','','2021/02'),(1688,189,'Version','OPC UA Working Group Charter - AATV vu Groupe 15 01 2021.docx','210223072748_e3a4270995d571d26ab2751ec928622c.docx',40914,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','97d384bfcba69f1dbf90ce2752473df5c7fb533ffaf5e5590de361954620466a',7,1,'2021-02-23 07:27:48','','2021/02'),(1689,532,'Issue','clipboard-202102230840-j4bny.png','210223084017_clipboard-202102230840-j4bny.png',116465,'image/png','0d6edc79a67b18624d4e1ae52b2746b229245f6ede842974a4b8738055ff7fae',0,398,'2021-02-23 08:40:17','screen copy in debug mode','2021/02'),(1690,190,'Version','XiMulator_v1.0.0.8.zip','210214203925_XiMulator_v1.0.0.8.zip',1002784,'application/x-zip-compressed','50156b46bf0717c284cbaf8bcefa209be24e8377edffa3288613b544538fa5bf',6,1,'2021-02-23 17:39:09','','2021/02'),(1691,189,'Version','Formation OPC UA - J1 - Modelisation.pdf','210223173953_7d938f13fe043ebc107d1de129a3137c.pdf',2179743,'application/pdf','8febc9bbd9fefdc8fe13f68c75fa7d8630b1fa16afb9421f6e077484713a6422',7,1,'2021-02-23 17:39:53','','2021/02'),(1692,192,'Version','Bilan Formation OPC 3Jours.pdf','210224085428_d5ceee599002d00fc17345c8aec3eecd.pdf',192970,'application/pdf','d5a51d483ecdda358de63c0a85105211b34bf61cff2a7b491d8b5eef93d168bb',9,1,'2021-02-24 08:54:28','A remplir','2021/02'),(1693,190,'Version','OPCUA_Profile.xml','210224110616_OPCUA_Profile.xml',3149,'text/xml','60f8c3ec306d1b7e6d7d323c4ca65853ff28bf82ce5d72d5b4dfd9d5144fa49a',7,1,'2021-02-24 11:06:16','','2021/02'),(1694,193,'Version','2019_IREC_031_Maximilian Both.pdf','210224125407_434054ae887c8d62f974791bb34f48dc.pdf',1307238,'application/pdf','86b132f8b7e5b619ffd4e47dafe4f31c73fd9d198077c519efe4b0c6c57b1b53',2,1,'2021-02-24 12:54:07','','2021/02'),(1695,195,'Version','OPC 40223 - UA CS for Pumps and Vacuum Pumps - RC v1.00.docx','210224133006_5546e480ee2076db77156641843ee041.docx',8144848,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','db258752efea46d955f0bb562ed8cdf3cb82a87a5cabfe62e83a83e3d2e114bb',1,1,'2021-02-24 13:30:06','','2021/02'),(1696,195,'Version','Opc.Ua.Pumps.NodeSet2.xml','210224133018_Opc.Ua.Pumps.NodeSet2.xml',7562620,'text/xml','22690223958d9cd0619643f1ae343264320dd45e9d00d0ea5aa73ad4fd47e851',0,1,'2021-02-24 13:30:18','','2021/02'),(1697,536,'Issue','clipboard-202102241456-nnqpr.png','210224145625_clipboard-202102241456-nnqpr.png',163455,'image/png','1d42775c1a9d8fbe8b2dc15aff46eb944124ee5fc235057073396b72b23f1121',0,1,'2021-02-24 14:56:25','','2021/02'),(1698,190,'Version','XiMulator_v1.0.0.9.zip','210224153135_XiMulator_v1.0.0.9.zip',1002787,'application/x-zip-compressed','777b87cea5d08808ea7c24c3c18427b2460fa4e4a463227601753bf4b5d89edf',7,1,'2021-02-24 15:31:35','','2021/02'),(1699,190,'Version','tricycle.xml','210224154954_tricycle.xml',176764,'text/xml','6274b63e19d0e7f972ec745c85622a1e70f12bd086b2090954116b9ac37b199d',1,472,'2021-02-24 15:49:54','JEGONDAY Corrupted File Tricycle Exercice','2021/02'),(1700,80,'Project','CrashXiMulator.xml','210224155018_CrashXiMulator.xml',206047,'text/xml','485b6abe68d32b92980a0c63436689f4ef6d8c936da4b3c620c32773a9f1ad41',0,473,'2021-02-24 15:50:18','Mauvais exemple','2021/02'),(1701,80,'Project','Essai tricycle.xml','210224155655_932bf0b10d32864c9444db9fdebcf245.xml',115539,'text/xml','ce980ef1ae4d596abcb09b9461ebc9c1ddfe63be76b714905da98ad9df8b4db8',2,471,'2021-02-24 15:56:55','','2021/02'),(1702,161,'Version','Brainstorming-Inetum-2021.pptx','210225105210_Brainstorming-Inetum-2021.pptx',63524,'application/vnd.openxmlformats-officedocument.presentationml.presentation','99c03521dbadc10eb79966782e05fd1ae985ee89314ace0a6dc6bf339fc8a960',1,1,'2021-02-25 10:52:10','','2021/02'),(1703,164,'Version','Demo-SQL-HA_x64_Release.zip','210225145418_Demo-SQL-HA_x64_Release.zip',2584551,'application/x-zip-compressed','c6f4278e08d6b66d3108cb27902bf8b23f1b905367ff65ba08ae3c161191a8c4',1,1,'2021-02-25 14:54:18','','2021/02'),(1705,178,'Version','Instance_OPENScS.xml','210225170102_Instance_OPENScS.xml',150573,'text/xml','54fd79021877cad562c3b28f5b1b2d90d66e72b8e2e9a25fc3c5b1ca50ab19e2',0,447,'2021-02-25 17:01:02','','2021/02'),(1706,535,'Issue','clipboard-202103011527-emvge.png','210301152735_clipboard-202103011527-emvge.png',18927,'image/png','3b712f919db7e049fb16e93abdfe69ab28ce17da2294e09b8421d7ed00055e38',0,432,'2021-03-01 15:27:35','','2021/03'),(1708,535,'Issue','clipboard-202103011754-mq8hg.png','210301175438_clipboard-202103011754-mq8hg.png',79931,'image/png','5b7895c2d90693461855a708a7d70cd0fab20aebb56eff45d1ba434ee431609c',0,432,'2021-03-01 17:54:38','','2021/03'),(1709,535,'Issue','clipboard-202103011754-vg0zb.png','210301175459_clipboard-202103011754-vg0zb.png',39038,'image/png','68a12da3b068992ea50fd6e1dfcae870c721ed350f8c1e557c1a0e4d83a548ef',0,432,'2021-03-01 17:54:59','','2021/03'),(1710,535,'Issue','clipboard-202103020956-rtiym.png','210302095613_clipboard-202103020956-rtiym.png',7717,'image/png','ed4810ec97c9386514b7ddebe074a36806ce933655b6d0df7cae66048afd7f87',0,432,'2021-03-02 09:56:13','','2021/03'),(1711,541,'Issue','clipboard-202103030954-6hoje.png','210303095425_clipboard-202103030954-6hoje.png',426231,'image/png','678cf3be1cd3361f70ad93b756a940f1a63a1e87701e9a2180f34448eff1b226',0,432,'2021-03-03 09:54:25','','2021/03'),(1712,541,'Issue','clipboard-202103030954-hwfim.png','210303095457_clipboard-202103030954-hwfim.png',97348,'image/png','466f03aee8bc51412d923710c8f878886e4010209538dfc77359f99790072ed0',0,432,'2021-03-03 09:54:57','','2021/03'),(1713,535,'Issue','clipboard-202103031034-pr2bb.png','210303103429_clipboard-202103031034-pr2bb.png',40715,'image/png','519c015deb71619e416a5654b27d4600bacbc1022d507dc13f5b74fb66fc7615',0,432,'2021-03-03 10:34:29','','2021/03'),(1714,535,'Issue','clipboard-202103031035-fyqbz.png','210303103527_clipboard-202103031035-fyqbz.png',12171,'image/png','779196727f395f94f5c5746e5cb6a30dbb3f9ce60b92b77e8316ec502e6241df',0,432,'2021-03-03 10:35:27','','2021/03'),(1715,535,'Issue','clipboard-202103031037-wq3tt.png','210303103735_clipboard-202103031037-wq3tt.png',83957,'image/png','bf17a21eca07f72f574a997b08409b784cca63dae379b1c32580d1796b9936ef',0,432,'2021-03-03 10:37:35','','2021/03'),(1716,535,'Issue','clipboard-202103031048-dxca6.png','210303104817_clipboard-202103031048-dxca6.png',8203,'image/png','8c20033c506c19e51d544ab830bddb84a558209d8ff7a56aa5195494f792b51f',0,432,'2021-03-03 10:48:17','','2021/03'),(1717,541,'Issue','clipboard-202103031620-2td8b.png','210303162043_clipboard-202103031620-2td8b.png',116875,'image/png','340175d17df6ae88e12f74db5039326736ad3075de9ba88e792a3163379e0d94',0,432,'2021-03-03 16:20:43','','2021/03'),(1718,541,'Issue','clipboard-202103031625-g96um.png','210303162540_clipboard-202103031625-g96um.png',67208,'image/png','bbf74db6412ec793d2221eeb895bc09d59abf12609f0edd329d861d5c766d50d',0,432,'2021-03-03 16:25:40','','2021/03'),(1719,110,'Version','Livraison-4-3-2021 V0.0.5.1.zip','210304145309_e9315bc069b05aa141201a3f29a9637c.zip',2662212,'application/x-zip-compressed','18a87636d1e989165f0fe320beb0de76c53515af2987ee936aaa676b433b9bb1',2,1,'2021-03-04 14:53:09','','2021/03'),(1720,110,'Version','VpiTycoEx_0.0.5.2.zip','210305114231_VpiTycoEx_0.0.5.2.zip',109622,'application/x-zip-compressed','9d25b6576bd9b9225aad42fca2deff88393a3d314bc8a69b11e5f2c2014559fc',1,1,'2021-03-05 11:42:31','','2021/03'),(1721,542,'Issue','OpenOpcUaCoreServer_Release.exe_210305_164129.dmp','210305173613_OpenOpcUaCoreServer_Release.exe_210305_164129.dmp',42103499,'application/vnd.tcpdump.pcap','1d9b424e3263b8db72714f1c5d5a5aa37e9194ee68e462756b75bfb056ec7484',0,328,'2021-03-05 17:36:13','','2021/03'),(1722,182,'Version','OOUAPassworder.exe','210305180257_OOUAPassworder.exe',42496,'application/x-msdownload','092e2ee9664462b1f01710a0df4b6df80b33bb6e9199de400646823f88740dc1',2,1,'2021-03-05 18:02:57','','2021/03'),(1723,542,'Issue','OpenOpcUaCoreServer_Release.exe_210305_181716.dmp','210305181948_OpenOpcUaCoreServer_Release.exe_210305_181716.dmp',36540099,'application/vnd.tcpdump.pcap','acfce9bb85bab1bbc8b49022a171ee06972f758f1ea0c27df2c12b461f869737',0,328,'2021-03-05 18:19:48','','2021/03'),(1724,110,'Version','VpiTycoEx_0.0.5.3.zip','210305184236_VpiTycoEx_0.0.5.3.zip',109621,'application/x-zip-compressed','92fe77644c89218d4f2bf1cdd2944a1f35ceebfe01ecfec523e88f93d163b78f',1,1,'2021-03-05 18:42:36','','2021/03'),(1725,110,'Version','VpiTycoEx_0.0.5.4.zip','210305192824_VpiTycoEx_0.0.5.4.zip',109616,'application/x-zip-compressed','f3a10224da9996d2cf9e9784b9fe1e169ee4f63c0f3357c0cfce314504364e55',1,1,'2021-03-05 19:28:24','','2021/03'),(1726,544,'Issue','failed_status.png','210308101403_failed_status.png',3785,'image/png','ca6920c247ff333882c53e872991e7a41ee9044ce71ed728bf4be898d3a69dad',0,461,'2021-03-08 10:14:03','','2021/03'),(1727,544,'Issue','ExelsiusServer.log','210308103201_ExelsiusServer.log',15468,'text/plain','ce228fdb870320fb0838ffc0fccf31e0bd9a679091ad5cda1d4931a5fc5b8a51',0,461,'2021-03-08 10:32:01','','2021/03'),(1728,524,'Issue','Maquette exemple Alarme à Seuil.zip','210308162836_3096a43494f2d59bdc9633c59665dba4.zip',2607229,'application/x-zip-compressed','5372000ea07cc02b1175c8d5bb0505b75c3c3687dbc9a7b833acefd14d8fc71f',0,432,'2021-03-08 16:28:36','','2021/03'),(1729,70,'Version','VpiTycoEx_0.0.5.5.zip','210308175728_VpiTycoEx_0.0.5.5.zip',109624,'application/x-zip-compressed','91809a225d22b633a7f13409d95db6632968b650289fbd57088c88d79e2898e4',1,1,'2021-03-08 17:57:28','','2021/03'),(1730,110,'Version','VpiTycoEx_0.0.5.6.zip','210308183508_VpiTycoEx_0.0.5.6.zip',109410,'application/x-zip-compressed','27f26e9ff495c58bbb2b2723131b3ab7f2a57b20dcd120c3c500570ed9d490e5',1,1,'2021-03-08 18:35:08','','2021/03'),(1731,110,'Version','VpiTycoEx_0.0.5.7.zip','210308184432_VpiTycoEx_0.0.5.7.zip',109407,'application/x-zip-compressed','21b66234bdddb0b03b61e1c2681d3a8c65539b55ad574cc47c9673e769367784',1,1,'2021-03-08 18:44:32','','2021/03'),(1732,110,'Version','Livraison-9-3-2021 V0.0.5.7.zip','210309134807_c0a390b72390e90101db903e4ca100ca.zip',2662127,'application/x-zip-compressed','e013ad3869194a6f450b115396669f40bf2253b48b44d3acd4da974183b038c2',1,1,'2021-03-09 13:48:07','','2021/03'),(1733,542,'Issue','OpenOpcUaCoreServer_Release.exe_210309_141859.zip','210309143118_OpenOpcUaCoreServer_Release.exe_210309_141859.zip',83001315,'application/x-zip-compressed','65e0d3ac2d0adfd27263e1dafba2d71e23342020ab4705ac835986c62b0a0f18',0,328,'2021-03-09 14:31:18','','2021/03'),(1734,110,'Version','VpiTycoEx_0.0.5.8.zip','210309154556_VpiTycoEx_0.0.5.8.zip',109396,'application/x-zip-compressed','d70fc4f3742a097b42fb5baa8b252f739a830001d47efcf7f039c417063615dd',1,1,'2021-03-09 15:45:56','','2021/03'),(1736,170,'Version','283-0311-EDM-Etude de faisabilité_V0.7_MC.docx','210310092512_5e65484e644baf85e95075d8ea53c709.docx',1995018,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','fb8212f5889587d81a0018a91a4c5a6a41c83ccf09ff33377438d1e147db3c63',3,1,'2021-03-10 09:25:12','','2021/03'),(1737,196,'Version','283-1003-EDM-CCTP Middleware OPCUA.docx','210310094738_ab148729abd31ab165667488316a91fc.docx',1410608,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','bf4e24ece1ac0637e905a03d804fbcd448849795c2a7944a8178eedd47e9e77b',1,1,'2021-03-10 09:47:38','','2021/03'),(1738,110,'Version','VpiTycoEx_0.0.5.9.zip','210310141314_VpiTycoEx_0.0.5.9.zip',109411,'application/x-zip-compressed','ebca21605a32c577d8f65c499bdbf2eba2d46f27b8bfb05038acd4891e78b073',2,1,'2021-03-10 14:13:14','','2021/03'),(1739,175,'Version','UA CS OPENSCS Job Order-Job Response.pptx','210312151531_80e7575fd7d40ada37d1f04a6eedc3f0.pptx',541897,'application/vnd.openxmlformats-officedocument.presentationml.presentation','44417c870c4ef37891c22cb73f2424650c152e707abf591ddc5ee96adb1b3c4e',1,1,'2021-03-12 15:15:31','','2021/03'),(1740,546,'Issue','Maquette exemple Vfi Csv Debug.zip','210315111125_9344f1a84015d1f0c3ab2d54efd6ea06.zip',2637067,'application/x-zip-compressed','b9f0461e32969f54e48b6f74bd94537a0e73a30573f29a4bfe6be2f02edd3465',0,432,'2021-03-15 11:11:25','','2021/03'),(1741,538,'Issue','Maquette exemple Securité LoginPassword.zip','210315154738_f03dc17e35fec0da441f49ffa9753cc5.zip',2599256,'application/x-zip-compressed','b9809f904649072834592b73f2b73cf1703499796302ac98a37176cf93643b24',0,432,'2021-03-15 15:47:38','','2021/03'),(1745,537,'Issue','Demo_VpiUaClnt_AutoCfg_Debug_x64.zip','210317085226_Demo_VpiUaClnt_AutoCfg_Debug_x64.zip',3464800,'application/x-zip-compressed','0ea84b5091616bac6d04f0af88837040766aff9be34bbdc261748759ce83da4b',0,1,'2021-03-17 08:52:26','','2021/03'),(1747,538,'Issue','clipboard-202103171158-9kbs6.png','210317115900_clipboard-202103171158-9kbs6.png',17550,'image/png','e0ee6e49d4160718e8fac431826002fa936b309e4307addcdb0145db2ec9084c',0,432,'2021-03-17 11:59:00','','2021/03'),(1748,538,'Issue','clipboard-202103171159-e2edq.png','210317120004_clipboard-202103171159-e2edq.png',9630,'image/png','e6727047ad311f5380a4f2a4a98a943769774a3174f575d4c5b31bb20194a20b',0,432,'2021-03-17 12:00:04','','2021/03'),(1749,538,'Issue','Maquette exemple Securité LoginPassword Checked.zip','210317132159_56c64ddfda1811da84fedc6ab53659e9.zip',3977229,'application/x-zip-compressed','c402a9b97fe179a0944f647719b5c30ccc00c317f8c2c041d005c56a5d736f0d',0,1,'2021-03-17 13:21:59','','2021/03'),(1750,197,'Version','40223_Pumps.zip','210317165621_40223_Pumps.zip',4610536,'application/x-zip-compressed','b515dee21502695eb47a80836f741b8addec573c3c6b6e25af362d1bf195dfbd',4,1,'2021-03-17 16:56:21','','2021/03'),(1751,164,'Version','Maquette exemple Vfi Csv Checked.zip','210318004700_f1e77bd879a9e6e1e32a1c6e294bd243.zip',4352965,'application/x-zip-compressed','984f9929fee83783198c0c32ae49f2bcdcb96b39eae12d4dbd2ecaeb166f205c',1,1,'2021-03-18 00:47:00','','2021/03'),(1752,547,'Issue','clipboard-202103181407-xb1m5.png','210318140716_clipboard-202103181407-xb1m5.png',14466,'image/png','7db1e03c9c90e19228c6b6d7ea1226d600b38e78711b9a1e42eb719c7f389218',0,1,'2021-03-18 14:07:16','','2021/03'),(1753,197,'Version','UAExpert_1.5.12_Portable.zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',5,1,'2021-03-19 10:37:13','','2021/02'),(1754,66,'Version','Certification OPC UA - Tyco 03-2021.pdf','210319185122_6cf2bb4fa7b65f2e4350eec933101dc8.pdf',389679,'application/pdf','011c02181ae93fd476d8c2e9c72f47f001d7def4d505342eeac784ebe1b6605c',1,1,'2021-03-19 18:51:22','','2021/03'),(1755,178,'Version','SFM-LINE-COM_VFI_AutoCfg_Release.zip','210320174923_SFM-LINE-COM_VFI_AutoCfg_Release.zip',3590664,'application/x-zip-compressed','4840620681d73b7dae6bdf63f435d8b62369cc60aaf0dbc01be6093faf44155a',1,1,'2021-03-20 17:49:23','','2021/03'),(1756,538,'Issue','clipboard-202103220955-g0qij.png','210322095519_clipboard-202103220955-g0qij.png',27236,'image/png','682fa95a919b5f45e72ec8ea0873ce8b1b0fab4247d2d3b8dfdadd1810186c07',0,432,'2021-03-22 09:55:19','','2021/03'),(1757,538,'Issue','clipboard-202103220955-8yilz.png','210322095531_clipboard-202103220955-8yilz.png',27280,'image/png','e912aa3e435a3bbebc7411d6b6b639d3c72e12e39ef0bbba29206a142aec7e29',0,432,'2021-03-22 09:55:31','','2021/03'),(1758,154,'Version','test.csv','210326115106_test.csv',384,'application/vnd.ms-excel','d860dba62cedeb92ba988488a78d955f4ae6cadfc7fdf50e937b177215316cf4',2,1,'2021-03-26 11:51:06','','2021/03'),(1759,NULL,NULL,'OpenOpcUaConfigManager_Delivrable Beta_0_9_0_Release_x64.zip','210316222348_14a7c88ab5026b201b838526961e6469.zip',16205577,'application/x-zip-compressed','95af533bc0b27aa73d5477c971f29c326bf279de0a07a2a69885c3415c3e618f',0,1,'2021-03-26 14:08:35',NULL,'2021/03'),(1760,164,'Version','OpcClient_Softing.zip','210326163002_OpcClient_Softing.zip',8196588,'application/x-zip-compressed','08f209bac9faf31e48ec5c61150e29f4a82892c3e7c30e8a5bab379a4a0bb4ef',2,1,'2021-03-26 16:30:02','','2021/03'),(1761,165,'Version','ctt_usrT.zip','210326171049_ctt_usrT.zip',2382,'application/x-zip-compressed','4d7673cd0a0389b61bf106373e83dbf3ba63c87d7a14d3531dc4465cb887375a',1,1,'2021-03-26 17:10:49','','2021/03'),(1763,543,'Issue','clipboard-202104061851-iz7oi.png','210406185133_clipboard-202104061851-iz7oi.png',77404,'image/png','64eb4b764d8940c6040550c48c9728c9ed52846b1ef3041628a107d4a2f64f8e',0,1,'2021-04-06 18:51:33','','2021/04'),(1764,198,'Version','OpenOpcUa_1_0_5_9_RC08.zip','210407113726_OpenOpcUa_1_0_5_9_RC08.zip',8724586,'application/x-zip-compressed','27344ef9a6895c791079828f008899a7f44892291fb09959247968f69f524920',1,1,'2021-04-07 11:37:26','','2021/04'),(1765,110,'Version','VpiTycoEx_0.0.6.0.zip','210409113117_VpiTycoEx_0.0.6.0.zip',109628,'application/x-zip-compressed','c18e26f75f2c504d60c9641fdc72cd4758e98ec95f8eb1aede49797eceab45a3',2,1,'2021-04-09 11:31:17','','2021/04'),(1766,183,'Version','Manuel de l_utilisateur - VpiS7 - 1.0.7.pdf','210409115453_e26a1ebeabc9120ffe3481afac825af7.pdf',463781,'application/pdf','20eb59bffdf3580d3be96c72e939fea6a20f087c8e57d29130fdfb7a19a2f846',1,1,'2021-04-09 11:54:53','','2021/04'),(1767,199,'Version','OpenOpcUa_1_0_5_9_RC08.zip','210407113726_OpenOpcUa_1_0_5_9_RC08.zip',8724586,'application/x-zip-compressed','27344ef9a6895c791079828f008899a7f44892291fb09959247968f69f524920',1,1,'2021-04-09 11:56:32','','2021/04'),(1768,110,'Version','VpiTycoEx_0.0.6.1.zip','210409162042_VpiTycoEx_0.0.6.1.zip',109729,'application/x-zip-compressed','6540cbd8889549e1c8c012542d6ed3eca724884fc7a34f8da38e0724e910794e',2,1,'2021-04-09 16:20:42','','2021/04'),(1769,110,'Version','VpiTycoEx_0.0.6.2.zip','210409162614_VpiTycoEx_0.0.6.2.zip',109644,'application/x-zip-compressed','8afe01dfe87bccd71415b90f88191ab1064a23b9e735cb243c848a77147408d9',1,1,'2021-04-09 16:26:14','','2021/04'),(1770,182,'Version','UAFlexClient_Debug_1.0.0.3_x64.zip','210412114402_UAFlexClient_Debug_1.0.0.3_x64.zip',17988155,'application/x-zip-compressed','ce29958338dfd0c94127a231f112c2c829bdd45a0d22dd108a8d7020eb8e6894',1,1,'2021-04-12 11:44:02','','2021/04'),(1772,555,'Issue','Demo Inetum bug UaClient Conf manuellel.zip','210412122001_e3a3aee61a05fd14f557bfefa81d698b.zip',7713473,'application/x-zip-compressed','51f94268dda8c5cae5e47d97fb6e723526a200ebf1aa186498c579c2069c2a5c',0,432,'2021-04-12 12:20:01','','2021/04'),(1773,555,'Issue','Demo v2.1-Test descente nok_MC12-04.zip','210412175414_77de6c4dd224a299a694484020639b7b.zip',7983521,'application/x-zip-compressed','f88528f42b22a9e0e2a53513df178513e4c8610da4c6818ee60adbac83cab7cb',0,1,'2021-04-12 17:54:14','','2021/04'),(1774,555,'Issue','clipboard-202104121839-txplu.png','210412184000_clipboard-202104121839-txplu.png',47131,'image/png','36613dff6fd9de09af798d1f3ce5378a88a5d33e0852189f29a5bcb86d2c0126',0,432,'2021-04-12 18:40:00','','2021/04'),(1776,555,'Issue','clipboard-202104121910-ddhl7.png','210412191021_clipboard-202104121910-ddhl7.png',120425,'image/png','b67808f74e56b70f1ad32986d8f64a373168ff93323d588982e59f797d985b13',0,432,'2021-04-12 19:10:21','','2021/04'),(1778,110,'Version','VpiTycoEx_0.0.6.3.zip','210413154228_VpiTycoEx_0.0.6.3.zip',109651,'application/x-zip-compressed','08e9746b347602ff486c4ba011ee5d0a664343f8d2099d09a8f363aa02f2ddcb',1,1,'2021-04-13 15:42:28','','2021/04'),(1779,110,'Version','VpiTycoEx_0.0.6.4.zip','210414112405_VpiTycoEx_0.0.6.4.zip',109734,'application/x-zip-compressed','93b7310d8221707d506aa626a57bade9f48ccccb4f0cedcbd9cf07f98c0fb4fa',1,1,'2021-04-14 11:24:05','','2021/04'),(1780,110,'Version','VpiTycoEx_0.0.6.5.zip','210414115357_VpiTycoEx_0.0.6.5.zip',109729,'application/x-zip-compressed','e31e367145d1203d9d517b875fa0d5024ef9e6f7771806becff4692c0494ea5b',1,1,'2021-04-14 11:53:57','','2021/04'),(1781,555,'Issue','Maquette avec Workaround 14-4-2021.zip','210414163331_d7dd5b134cfb865a38a076558bffe90b.zip',8037741,'application/x-zip-compressed','6622a1eec39140bdde3b152f0bdae1e8b700e8a7cda60afea534104f232e3c3d',0,1,'2021-04-14 16:33:31','','2021/04'),(1782,557,'Issue','Genesis Alarmes.pcapng','210415094300_2b6af5d72c65ab1596405b95fdeb9364.pcapng',290160,NULL,'f970d7408ad636207584075a0986d446bd6c4b5750887e8f2c7fe55ee63819a4',0,432,'2021-04-15 09:43:00','','2021/04'),(1783,557,'Issue','clipboard-202104150957-8zycc.png','210415095759_clipboard-202104150957-8zycc.png',58400,'image/png','002a56065708b0a5b0b4ab548ab6bf60c5f7a270a548ab36c8ac4d634716e320',0,432,'2021-04-15 09:57:59','','2021/04'),(1784,557,'Issue','clipboard-202104151000-74cih.png','210415100015_clipboard-202104151000-74cih.png',15378,'image/png','32d1d213eba2aeece86a67f9fb9425ed438d115b641b2dc87405a256478036a3',0,432,'2021-04-15 10:00:15','','2021/04'),(1785,557,'Issue','clipboard-202104151452-midwb.png','210415145246_clipboard-202104151452-midwb.png',165654,'image/png','4dac4867e2f66765acd62b2f203408bcdcb830d50884fa4b5542b002cb74bd00',0,1,'2021-04-15 14:52:46','','2021/04'),(1786,110,'Version','VpiTycoEx_0.0.6.6.zip','210415162829_VpiTycoEx_0.0.6.6.zip',109642,'application/x-zip-compressed','334f57306deb4fc041da5209a5d5f335a35c619c4a21edff511286aa78209ae9',1,1,'2021-04-15 16:28:29','','2021/04'),(1787,NULL,NULL,'clipboard-202104151758-ahu9m.png','210415175846_clipboard-202104151758-ahu9m.png',50661,'image/png','31beee0880756525b473aa4f9958c096a595dc07bea9a970e42a7f2d08d8f4a1',0,1,'2021-04-15 17:58:46',NULL,'2021/04'),(1788,557,'Issue','clipboard-202104151800-uek53.png','210415175846_clipboard-202104151758-ahu9m.png',50661,'image/png','31beee0880756525b473aa4f9958c096a595dc07bea9a970e42a7f2d08d8f4a1',0,1,'2021-04-15 18:00:05','','2021/04'),(1789,NULL,NULL,'clipboard-202104151800-m4dkv.png','210415180056_clipboard-202104151800-m4dkv.png',150075,'image/png','4435b51662efdbdce1abdcdf1562ea404a9b37b423070eae1fa17e7f45a170d7',0,432,'2021-04-15 18:00:56',NULL,'2021/04'),(1790,557,'Issue','clipboard-202104151803-0taly.png','210415180336_clipboard-202104151803-0taly.png',151580,'image/png','439443e1522ceb19882a1788e2957caa0d08de074725567ce0f97568bfda7c3e',0,432,'2021-04-15 18:03:36','','2021/04'),(1791,557,'Issue','Genesis Alarmes.pcapng','210415094300_2b6af5d72c65ab1596405b95fdeb9364.pcapng',290160,NULL,'f970d7408ad636207584075a0986d446bd6c4b5750887e8f2c7fe55ee63819a4',0,432,'2021-04-15 18:15:35','','2021/04'),(1792,557,'Issue','Screenshots paquets 1661 et 2027.pdf','210415181544_d16d73d4393085a8c96f54f44350df34.pdf',158645,'application/pdf','0864edfcf15b84645b040a01f78b9cbe7643e97ad0830255c6af5f51f218b8fc',0,432,'2021-04-15 18:15:44','','2021/04'),(1793,184,'Version','Livraison_Vpi_S7_v1.0.0.8.zip','210422111341_Livraison_Vpi_S7_v1.0.0.8.zip',1019334,'application/x-zip-compressed','23ff38d13039e8e61e1d1d2c2e9e0372587d7164ea7692dfd4b0821decab65c8',1,1,'2021-04-22 11:13:41','','2021/04'),(1794,154,'Version','Manuel de l_utilisateur OOUAConfigManager.pdf','210422142401_447e9b63ba59a1d7f5e38491dedb817f.pdf',1209106,'application/pdf','dd0799bb9a8e5d29aae495d75d5789f05702914479ded9ee48a06a6e885a6767',4,1,'2021-04-22 14:24:01','','2021/04'),(1795,NULL,NULL,'VPIRauUdpEx.zip','210422200119_VPIRauUdpEx.zip',94577386,'application/x-zip-compressed','30b417423e094d9da22e25e5dd7f7a43743ab0642ccb9495a6b45e3af596e4ce',0,223,'2021-04-22 20:01:19',NULL,'2021/04'),(1796,NULL,NULL,'VPIRauUdpEx.zip','210423122007_VPIRauUdpEx.zip',42623640,'application/x-zip-compressed','dafd3493f1084244a1414a0bb08d4f28fe993d65c2eca1f81b0221bb961e473e',0,223,'2021-04-23 12:20:07',NULL,'2021/04'),(1797,130,'Version','MT Livraison Ver1.0.0.2 - 23-04-2021.zip','210423131327_47312aeba49b145d4a0032e33d414fa9.zip',2569172,'application/x-zip-compressed','6538855645bde580ef8e1b4ae48b6dbaba9c2207d0106b6e717e82ad5f80c5aa',1,1,'2021-04-23 13:13:27','','2021/04'),(1798,NULL,NULL,'clipboard-202104262308-tt40z.png','210426230822_clipboard-202104262308-tt40z.png',44915,'image/png','fc0a6884917c009a07cc1fcc17bd670d0db6ae53cbbdbb81222917056c885e1c',0,1,'2021-04-26 23:08:22',NULL,'2021/04'),(1799,197,'Version','Atelier 1.zip','210427223353_6394015f6e9259e9e40602fef0819224.zip',20124079,'application/x-zip-compressed','9a6eb15edcd2e8b5e38375e807368d5f230489869834e504157b631c9f0e4af5',3,1,'2021-04-27 22:33:53','','2021/04'),(1800,193,'Version','Presentation de la technologie OPC J1 - Matin.pdf','210428175557_1c6e7320b551886d232355a8aa4cb303.pdf',2297692,'application/pdf','13bc21d2239d5a7b26c5f9deed19ea3ae3835fd12ec87fabeac265585c8c6063',15,1,'2021-04-28 17:55:57','','2021/04'),(1801,193,'Version','Presentation de la technologie OPC J1-Après-midi.pdf','210428175615_5700ee99b8ac695a3fe59e08becc2fa4.pdf',1274348,'application/pdf','b2f5451c63dfb60fa05a747491413f81a1875b1f31d6d847bd76dc373ddb4354',12,1,'2021-04-28 17:56:15','','2021/04'),(1802,557,'Issue','OffNormalAlarmType.txt','210429181151_OffNormalAlarmType.txt',1988,'text/plain','4a93279dc7b9f8a51f6daec7a33409f50525cf3e06789ed22b1da63a4c8ce3d9',0,432,'2021-04-29 18:11:51','','2021/04'),(1803,557,'Issue','CreateMonitoredItemRequest.txt','210429181151_CreateMonitoredItemRequest.txt',5149,'text/plain','7657a634660418310a2ca9aec6d7dbd997906000093928e2d53a821c313ea225',0,432,'2021-04-29 18:11:51','','2021/04'),(1804,560,'Issue','PM1900.csv','210429182237_PM1900.csv',6611,'application/vnd.ms-excel','444e8d086c7c1e62b58d3c78022b86f88ed091f92f82bf6284a7993177f6bc7d',0,459,'2021-04-29 18:22:37','','2021/04'),(1808,200,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_1_Release_x64.zip','210429210338_f0ca03387b0d8bc8f8f024c1dc1f7d28.zip',16214477,'application/x-zip-compressed','17c6b41b1a385450e1e80bb7a7a7b2c17d993035ed39ed4d775b7d6bc164bc5c',1,1,'2021-04-29 21:05:48','','2021/04'),(1809,201,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_1_Release_x64.zip','210429210338_f0ca03387b0d8bc8f8f024c1dc1f7d28.zip',16214477,'application/x-zip-compressed','17c6b41b1a385450e1e80bb7a7a7b2c17d993035ed39ed4d775b7d6bc164bc5c',0,1,'2021-04-29 21:06:31','','2021/04'),(1810,151,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_1_Release_x64.zip','210429210338_f0ca03387b0d8bc8f8f024c1dc1f7d28.zip',16214477,'application/x-zip-compressed','17c6b41b1a385450e1e80bb7a7a7b2c17d993035ed39ed4d775b7d6bc164bc5c',0,1,'2021-04-29 21:07:07','','2021/04'),(1811,202,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_1_Release_x64.zip','210429210338_f0ca03387b0d8bc8f8f024c1dc1f7d28.zip',16214477,'application/x-zip-compressed','17c6b41b1a385450e1e80bb7a7a7b2c17d993035ed39ed4d775b7d6bc164bc5c',0,1,'2021-04-29 21:07:59','','2021/04'),(1812,203,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_1_Release_x64.zip','210429210338_f0ca03387b0d8bc8f8f024c1dc1f7d28.zip',16214477,'application/x-zip-compressed','17c6b41b1a385450e1e80bb7a7a7b2c17d993035ed39ed4d775b7d6bc164bc5c',0,1,'2021-04-29 21:08:51','','2021/04'),(1813,204,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_1_Release_x64.zip','210429210338_f0ca03387b0d8bc8f8f024c1dc1f7d28.zip',16214477,'application/x-zip-compressed','17c6b41b1a385450e1e80bb7a7a7b2c17d993035ed39ed4d775b7d6bc164bc5c',1,1,'2021-04-29 21:09:44','','2021/04'),(1814,111,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_1_Release_x64.zip','210429210338_f0ca03387b0d8bc8f8f024c1dc1f7d28.zip',16214477,'application/x-zip-compressed','17c6b41b1a385450e1e80bb7a7a7b2c17d993035ed39ed4d775b7d6bc164bc5c',0,1,'2021-04-29 21:10:16','','2021/04'),(1815,118,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_1_Release_x64.zip','210429210338_f0ca03387b0d8bc8f8f024c1dc1f7d28.zip',16214477,'application/x-zip-compressed','17c6b41b1a385450e1e80bb7a7a7b2c17d993035ed39ed4d775b7d6bc164bc5c',0,1,'2021-04-29 21:11:09','','2021/04'),(1816,198,'Version','OpenOpcUa_1_0_5_9_RC09.zip','210429221150_OpenOpcUa_1_0_5_9_RC09.zip',8634612,'application/x-zip-compressed','57057f35563e83aa2b566a7de58c5f842df687812a1995120c0ac952f2e61ec6',1,1,'2021-04-29 22:11:50','','2021/04'),(1817,539,'Issue','clipboard-202104300939-mukyc.png','210430093929_clipboard-202104300939-mukyc.png',184988,'image/png','3607b09dc3eebc39230abe5fc2d9dbb5fde1a8859f5ae1ac964f68b62a968b4e',0,1,'2021-04-30 09:39:29','','2021/04'),(1819,554,'Issue','clipboard-202104301044-krz0w.png','210430104443_clipboard-202104301044-krz0w.png',47283,'image/png','3aa19c828c7aeacb8e37ea13bb04234a2f2836c2fa0f2545a71e734cc8d6fe79',0,1,'2021-04-30 10:44:43','','2021/04'),(1820,554,'Issue','clipboard-202104301045-z6cts.png','210430104504_clipboard-202104301045-z6cts.png',24085,'image/png','acde61144b1454d1a6500e029cdd2a7b5c5bf9be4231ee427070c5621ef83e6c',0,1,'2021-04-30 10:45:04','','2021/04'),(1821,539,'Issue','ModScan32.png','210430104758_ModScan32.png',55153,'image/png','001391ed9f356421efc718dbcc72a1424b321291f7d68d3c8e86ce80f5312373',0,459,'2021-04-30 10:47:58','','2021/04'),(1822,539,'Issue','Client OPCua.png','210430104800_059203d7543070f00791ad7cd0327242.png',233274,'image/png','ee3b0b0ecb7c55de873c2ef8b364ec50ebeae67aa81743e3ca78c3c5bb94b4f5',0,459,'2021-04-30 10:48:00','','2021/04'),(1823,539,'Issue','Valeurs automate sans passer par serveur OPCua.png','210430104807_bfb3aade9522062ad8f24c65f0d40daf.png',317987,'image/png','c7c656eb1994db0dadd16080ac20f4ece001aba0b08b6398b18cbfc26b87b65c',0,459,'2021-04-30 10:48:07','','2021/04'),(1824,539,'Issue','Valeurs automate.PNG','210430104809_16ab4fc180b79528b076db35eb904eac.PNG',123710,'image/png','c2b8860ce4576f6db638154c3234c2faf715fcfb83dd97ede590fbc5e163ff88',0,459,'2021-04-30 10:48:09','','2021/04'),(1825,539,'Issue','Valeus automate 2.PNG','210430104810_f50e6ae5e1238fbe3e130c52160e09da.PNG',77406,'image/png','dbc32d70222a4731b46fb486e5ec362dd9be4dec6b23fde46593d5e3285c1a81',0,459,'2021-04-30 10:48:10','','2021/04'),(1826,539,'Issue','Valeurs automate en passant par serveur OPcua.png','210430104811_3af00534fd6660c1a70200ef5394f97e.png',333066,'image/png','be77937eddf7d9b1ac4f7e2d0e957ee2e58c8e137dea54bdc226c4a9b40c9e7c',0,459,'2021-04-30 10:48:11','','2021/04'),(1827,539,'Issue','Serveur OPCua d_Avrieux.zip','210430105604_998634fbb9962ca31bc4c9a63437b74f.zip',5359711,'application/x-zip-compressed','ce328775b2cabc541846828b11ed9f4b33cd12368a90a676865fd9b896babf25',0,459,'2021-04-30 10:56:04','','2021/04'),(1828,561,'Issue','clipboard-202104301512-mejdj.png','210430151255_clipboard-202104301512-mejdj.png',5577973,'image/png','872ba2b329a098e28a91a34b6aa6e018ecd7714716e591b69a6886bfae853c53',0,1,'2021-04-30 15:12:55','','2021/04'),(1830,161,'Version','Manuel de l_utilisateur OOUAConfigManager.pdf','210422142401_447e9b63ba59a1d7f5e38491dedb817f.pdf',1209106,'application/pdf','dd0799bb9a8e5d29aae495d75d5789f05702914479ded9ee48a06a6e885a6767',3,1,'2021-05-03 15:55:58','','2021/04'),(1831,193,'Version','Presentation de la technologie OPC J2 - Matin.pdf','210503213220_6b18d3cd8d754c75f6aed494f4f5b2de.pdf',2860390,'application/pdf','71ca09923cc3029a1493c2e3bec19632f07301c415e96d01618059b2eb327280',11,1,'2021-05-03 21:32:20','','2021/05'),(1832,193,'Version','Presentation de la technologie OPC J2-Après-midi.pdf','210503213233_4523869e5db3f1a5dd270831cec84deb.pdf',2214300,'application/pdf','f0b4c53564ab8f1ff0ec962e21502c68c697e7748fdad27d1744c1581b98f1d9',10,1,'2021-05-03 21:32:33','','2021/05'),(1833,193,'Version','Ateliers-OPC2430.zip','210503213335_Ateliers-OPC2430.zip',84779275,'application/x-zip-compressed','5ae1c2f39167bb9dbaab6ab623eb582749d76d91b15cdfb3859b3358afd892d1',13,1,'2021-05-03 21:33:35','','2021/05'),(1834,562,'Issue','Project.zip','210504142429_Project.zip',3595897,'application/x-zip-compressed','5c51453f9d9df81622ce0900495de0ce3cdf1c3e510af78141ca5a887355a4ef',0,432,'2021-05-04 14:24:29','','2021/05'),(1837,402,'Issue','sp402sitycouae1.pfx','210505132404_sp402sitycouae1.pfx',3029,'application/x-pkcs12','a22a926fcb929a4f900a0b646518e91770b51826dd77d8dbeeb9416b3cd00596',0,1,'2021-05-05 13:24:04','','2021/05'),(1841,562,'Issue','clipboard-202105062335-lbpdp.png','210506233544_clipboard-202105062335-lbpdp.png',115963,'image/png','9363c86994957346ebcecdddcaacea9056314ca116017112933d488f67c71663',0,1,'2021-05-06 23:35:44','','2021/05'),(1842,562,'Issue','clipboard-202105062337-y88zh.png','210506233750_clipboard-202105062337-y88zh.png',9199,'image/png','6a8107bc177384d8a3058a6cda3bf4f75c1c98ae782eed6a79917e87eec4df8c',0,1,'2021-05-06 23:37:50','','2021/05'),(1843,562,'Issue','clipboard-202105062353-akwje.png','210506235336_clipboard-202105062353-akwje.png',43796,'image/png','1f97c9114b886d4f32f41aa8549c0416c6e7d6eb6ad41cf29260bd540a35f36e',0,1,'2021-05-06 23:53:36','','2021/05'),(1844,565,'Issue','Tests Ximulator 1.0.1.1.zip','210507180035_00f6a1d90752def656d30d130c87c711.zip',480078,'application/x-zip-compressed','3386f8d615a28d8afb642a798b226fbb6ff4eb6ca4e717fe350488920878e1c6',0,432,'2021-05-07 18:00:35','','2021/05'),(1845,200,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_2_Release_x64.zip','210508001121_df2ebbf4445e9193dc4333ecfc961171.zip',16067900,'application/x-zip-compressed','f885d471f1d5ef1b035f77481ab9b629e51dc3f3cfc84fe5655b835964ee92e0',2,1,'2021-05-08 00:11:21','','2021/05'),(1850,164,'Version','DemoLua.zip','210521112654_DemoLua.zip',3656007,'application/x-zip-compressed','0ee8f806e36b899b21d26bb04c088ac6fffc2ad162b074e34fe9678855f1399e',3,1,'2021-05-21 11:26:54','','2021/05'),(1851,164,'Version','DemoMethodes-x64.zip','210521123240_DemoMethodes-x64.zip',3044941,'application/x-zip-compressed','b3a5950b37bdaf39a023a5d70fb960e572c1c9e163e056c0a5adf5e0bd21ccd7',2,1,'2021-05-21 12:32:40','','2021/05'),(1852,566,'Issue','clipboard-202105251100-ixzpc.png','210525110039_clipboard-202105251100-ixzpc.png',26412,'image/png','b314142076a88962a074b0892be0a44f57f8154162c76ed29cbbce8a7a202219',0,432,'2021-05-25 11:00:39','','2021/05'),(1853,566,'Issue','clipboard-202105251105-zbznt.png','210525110517_clipboard-202105251105-zbznt.png',62854,'image/png','25c4ffb827984156e9947dcc6101bc4ee34198841e903314bee1ea5f4f7ae8a1',0,432,'2021-05-25 11:05:17','','2021/05'),(1855,566,'Issue','clipboard-202105251842-6rzhk.png','210525184241_clipboard-202105251842-6rzhk.png',31139,'image/png','d77a67342b094771bf69a6401f933dd98b81f7dff29dae2a727e0c040a3e2530',0,432,'2021-05-25 18:42:41','','2021/05'),(1856,566,'Issue','clipboard-202105251858-j7zou.png','210525185840_clipboard-202105251858-j7zou.png',25837,'image/png','4fbd95d26f83252ba8d9a7e2cc32b494ff82e5bf75b6ea74dada524b13c80d8c',0,1,'2021-05-25 18:58:40','','2021/05'),(1857,566,'Issue','clipboard-202105251859-nstky.png','210525185911_clipboard-202105251859-nstky.png',123794,'image/png','13f80a8cb7bdcfbcd56c683be01d858130151adbadd105574c5f51ca3abd9f08',0,1,'2021-05-25 18:59:11','','2021/05'),(1858,566,'Issue','clipboard-202105251900-6qqm6.png','210525190035_clipboard-202105251900-6qqm6.png',271688,'image/png','c40dc90745c30dedf7c7808951bf5750d2f03fbd5d25b1c2e788f3266d35dbae',0,1,'2021-05-25 19:00:35','','2021/05'),(1860,566,'Issue','clipboard-202105261024-yfaqe.png','210526102434_clipboard-202105261024-yfaqe.png',33767,'image/png','44043a301dbf94982fe4b2dec8cbf70edb5df9ee5e25706b0598dd1d5cbf2f74',0,432,'2021-05-26 10:24:34','','2021/05'),(1861,161,'Version','INETUM_Relations Modèle-Vpi-PR03.pptx','210526140336_a5d3f6ae912204f739c62c54db7c24ce.pptx',1307940,'application/vnd.openxmlformats-officedocument.presentationml.presentation','5e8287e5b9ffdda5ad28aae262f53ff66bdeb6ae73564cf0e371cdc3e85e8b17',3,433,'2021-05-26 14:03:36','Schéma modèle - VPI eMotors','2021/05'),(1862,565,'Issue','clipboard-202105271122-z1irj.png','210527112229_clipboard-202105271122-z1irj.png',61049,'image/png','0ab208c4e0c0f3185da73a9dc6dc5ed16cd32be383fa641a29220c9c3f9939d8',0,432,'2021-05-27 11:22:29','','2021/05'),(1863,565,'Issue','Model.xml','210527112636_Model.xml',2943482,'text/xml','2b1249a53ceba73286242dc4c15009be50055f6641daee58806afb52d1c8a79c',0,432,'2021-05-27 11:26:36','','2021/05'),(1865,565,'Issue','OutputXimulatorModel.zip','210528110256_OutputXimulatorModel.zip',487474,'application/x-zip-compressed','c5d89c9b828314a08af85338ea71dd1e664cdda869c003fbc7170034e3b885fd',0,432,'2021-05-28 11:02:56','','2021/05'),(1866,565,'Issue','clipboard-202105281112-bs9ro.png','210528111212_clipboard-202105281112-bs9ro.png',224160,'image/png','7381b09768fe5ba7e1683311ccb6a92a51328f3ba465e4079f78a7d74357a787',0,1,'2021-05-28 11:12:12','','2021/05'),(1871,182,'Version','UAFlexClient_Release_1.0.0.3_x64_IPV4.zip','210531202942_UAFlexClient_Release_1.0.0.3_x64_IPV4.zip',13897577,'application/x-zip-compressed','4edd42bb77d0d5ff4585b1b970c436027109fe349d0bf9a6494e628feb283b6d',2,1,'2021-05-31 20:30:09','IPV4 Only','2021/05'),(1873,567,'Issue','MaquetteXimulatorEtServeurAvecModeleInetumEmotors01Juin.zip','210601110507_396d7198f358e86e508150a7567feb25.zip',8124678,'application/x-zip-compressed','8f3ce10f7601a7d54d2e387ef268efea6eb672ae938a6f00cf16af0426d7fae3',0,432,'2021-06-01 11:05:07','','2021/06'),(1877,176,'Version','UAFlexClient_Release_1.0.0.3_x64_IPV4_02-06-2021.zip','210602094112_718cad177bb7b7bfd72d3533628dd1db.zip',13899302,'application/x-zip-compressed','876d06abe8f0ab8144435f3fad6169e7fcb8ff38f2c88f6f64f54390a1a1d0e4',4,1,'2021-06-02 09:41:12','','2021/06'),(1878,176,'Version','PasswordGenerator.zip','210602103129_PasswordGenerator.zip',1903540,'application/x-zip-compressed','03f25557268d77e5b75017274eacf9a1b377e511de00d86034a8195d2b05417e',1,1,'2021-06-02 10:31:29','','2021/06'),(1879,182,'Version','PasswordGenerator.zip','210602103129_PasswordGenerator.zip',1903540,'application/x-zip-compressed','03f25557268d77e5b75017274eacf9a1b377e511de00d86034a8195d2b05417e',1,1,'2021-06-02 10:31:50','','2021/06'),(1880,161,'Version','Architecture Archivage.pptx','210602160823_06a4fdd549a845b42c1096ba242e6665.pptx',52270,'application/vnd.openxmlformats-officedocument.presentationml.presentation','8fa03710610115a3413662b8ba9167586c3a07decc447f2a2ffde1de37e237fc',3,1,'2021-06-02 16:08:23','','2021/06'),(1881,165,'Version','Opc.Ua.NodeSet2.OOUA.zip','210604162613_Opc.Ua.NodeSet2.OOUA.zip',172182,'application/x-zip-compressed','3cac7e175012bdf3b62c9bfd8c95d9536df595af01f51217ebb5dbe30ba9f726',2,1,'2021-06-04 16:26:13','','2021/06'),(1882,569,'Issue','XimulatorDecomp.zip','210604175526_XimulatorDecomp.zip',1397117,'application/x-zip-compressed','3a391633b1907fd302a1ed4ff4906b89ea60318d27309ee0c35fc71762237196',0,432,'2021-06-04 17:55:26','','2021/06'),(1883,570,'Issue','clipboard-202106041805-2liyc.png','210604180542_clipboard-202106041805-2liyc.png',25970,'image/png','b919f0de13423627c0299785a7af145537abff652a757a9aee84fe0fb6eb653a',0,432,'2021-06-04 18:05:42','','2021/06'),(1884,570,'Issue','Maquette Inetum with OpenOpcUaConfigManager_Delivrable Beta_0_9_2_Release_x64.zip','210604181200_bd0690de658c2ef8a20484e531eeb972.zip',17070092,'application/x-zip-compressed','a5d6275242864c8f1acd4ce23406ddbe90c9e1acfdddf20db36674f5ee2cace9',0,432,'2021-06-04 18:12:00','','2021/06'),(1887,570,'Issue','Maquette Inetum with OpenOpcUaConfigManager_Delivrable Beta_0_9_3_Release_x64.zip','210604183618_6e3e134aa9f64497a491a66a21270ca6.zip',17282742,'application/x-zip-compressed','a0a54fb30f201c0b8e33600e5fb6d8a86d99f7a622d733928f1e8cc5d1a92b5e',0,432,'2021-06-04 18:36:18','','2021/06'),(1888,572,'Issue','clipboard-202106042326-hnxci.png','210604232615_clipboard-202106042326-hnxci.png',14943,'image/png','c2d6311e8251581a43189fd069784a2e47375d2fbd83012f5a001626b7bd72c8',0,1,'2021-06-04 23:26:15','','2021/06'),(1889,161,'News','Emotor-LogicalModel-OPCUA_V2.1.0.eapx','210605160116_Emotor-LogicalModel-OPCUA_V2.1.0.eapx',4558848,NULL,'2e1de4636dca70853af1cca175b61e4ae183be8124e4fd947f42d39b35d209c3',0,1,'2021-06-05 16:01:16','','2021/06'),(1894,570,'Issue','Tools.zip','210607112254_Tools.zip',18372150,'application/x-zip-compressed','937f2e1ddf6d80e7635b6b882461297a264d7cc29cd691b3a6b90ac340665aa6',0,432,'2021-06-07 11:22:54','','2021/06'),(1895,162,'News','Emotor-LogicalModel-OPCUA_V2.1.0.eapx','210607120135_Emotor-LogicalModel-OPCUA_V2.1.0.eapx',4558848,NULL,'18119bb142d17eef855d45f0a5e038c9d275490a70324d96767b24892425e22e',0,1,'2021-06-07 12:01:35','','2021/06'),(1896,576,'Issue','ProjectDecomp.zip','210607140011_ProjectDecomp.zip',1206422,'application/x-zip-compressed','118e4b7919a388dd47f598d8993c2e1f53fa7878a78c2ba16008b73af2b59468',0,432,'2021-06-07 14:00:11','','2021/06'),(1897,164,'Version','ProjectDecomp_7-6-2021.zip','210607163929_ProjectDecomp_7-6-2021.zip',2770429,'application/x-zip-compressed','38af8d3e9a8da189bdcee64112980996bee439ed010d31074c62b4a97ad39711',2,1,'2021-06-07 16:39:29','','2021/06'),(1900,578,'Issue','XMIModele.zip','210608145328_XMIModele.zip',334026,'application/x-zip-compressed','7fc910c8fd929a3b173df946014b03e0275d5d48e79ab66812084ef06c86b45c',0,432,'2021-06-08 14:53:28','','2021/06'),(1901,163,'Version','VpiRestClient.zip','210608221838_VpiRestClient.zip',379328,'application/x-zip-compressed','46404b5e35ee215c43d7c46385e70ea983f7d06f7d22714661a00ec44f73bf97',2,1,'2021-06-08 22:18:38','','2021/06'),(1902,581,'Issue','clipboard-202106090011-yiq8x.png','210609001118_clipboard-202106090011-yiq8x.png',37202,'image/png','0b8a8880d88767f10c9859e7c090ba9b27ffc474c04351cc35e627224bccd139',0,1,'2021-06-09 00:11:18','','2021/06'),(1911,164,'Version','Demo_VpiXmlTemplate.zip','210616100726_Demo_VpiXmlTemplate.zip',3507543,'application/x-zip-compressed','db7ebda9240aeb552b36d6a016bbe2afc89cf4d4457dab7300fa0ead44f74698',3,1,'2021-06-16 10:07:26','','2021/06'),(1912,582,'Issue','clipboard-202106161436-xwckd.png','210616143642_clipboard-202106161436-xwckd.png',8393,'image/png','10e2ae00cdcd3022a0091dce04c8551464dd67d28ab4e60e3f97e313f7d90e2b',0,432,'2021-06-16 14:36:42','','2021/06'),(1913,582,'Issue','clipboard-202106161441-hvatw.png','210616144114_clipboard-202106161441-hvatw.png',45837,'image/png','ef234f4231ec39710339024a041d02d9645a1f9b3dacf73ebe7f7e0f5a0f4d36',0,432,'2021-06-16 14:41:14','','2021/06'),(1914,582,'Issue','clipboard-202106161441-d1ijk.png','210616144151_clipboard-202106161441-d1ijk.png',78177,'image/png','6d6ccb13b21cfa49476ec6595661f347501574a2ff000797ebf78ccf0013c6a1',0,432,'2021-06-16 14:41:51','','2021/06'),(1915,582,'Issue','ProjectDecomp2.zip','210616144214_ProjectDecomp2.zip',226903,'application/x-zip-compressed','f57173e74c20ecb00a76dc2071b1ef8e997d6096f3dc760280ceb15538d50be7',0,432,'2021-06-16 14:42:14','','2021/06'),(1916,583,'Issue','Modèle eMotors - Decomp.zip','210616160350_04c61ebfc85b8c50c8e97a4621a58068.zip',2502429,'application/x-zip-compressed','57a1f210b353817735d9594ed78e1faf89936507182b47a6e73e26c18214c846',0,432,'2021-06-16 16:03:50','','2021/06'),(1917,178,'Version','Test_Thyssen.zip','210618134828_Test_Thyssen.zip',3187802,'application/x-zip-compressed','b5a9f029962c195454378fa97612908f2b4f7907fb101968e148a885d4cc1d28',4,447,'2021-06-18 13:48:28','Test S7-1500 Pb Archivage Boolean','2021/06'),(1926,205,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_6_Release_x64.zip','210624093213_c8e36b4020437344399d7400eaba6d87.zip',16081538,'application/x-zip-compressed','8e18050b656579a57a535a7a445480a2956f40b1d6b1464b7965e2d36f8d536a',9,1,'2021-06-24 17:23:01','','2021/06'),(1927,170,'News','clipboard-202106252246-gfxyq.png','210625224614_clipboard-202106252246-gfxyq.png',13512,'image/png','f699d3e7116636d05fe0f68dd99f218c51658acaa7d7f8ff1cd66fbb052655bc',0,1,'2021-06-25 22:46:14','','2021/06'),(1928,170,'News','clipboard-202106252247-rwxck.png','210625224723_clipboard-202106252247-rwxck.png',100313,'image/png','ce7beba892777b207b669ee6ebb9403d53791d2ba5e2c5ebb52b5eafc7c88bc7',0,1,'2021-06-25 22:47:23','','2021/06'),(1931,171,'News','clipboard-202106252255-6assd.png','210625224723_clipboard-202106252247-rwxck.png',100313,'image/png','ce7beba892777b207b669ee6ebb9403d53791d2ba5e2c5ebb52b5eafc7c88bc7',0,1,'2021-06-25 22:55:33','','2021/06'),(1932,171,'News','clipboard-202106252255-mavgs.png','210625225557_clipboard-202106252255-mavgs.png',15557,'image/png','14a3fce74d352483fbb5284aed7f79badd8ba45d633bfb7da01e4a90ffd126ed',0,1,'2021-06-25 22:55:57','','2021/06'),(1933,402,'Issue','clipboard-202106301319-foq2n.png','210630131911_clipboard-202106301319-foq2n.png',3023,'image/png','140c7e978972f7bab9dfed48806528033f204020dee89cc6a38185fdc89cebba',0,1,'2021-06-30 13:19:11','','2021/06'),(1934,402,'Issue','clipboard-202106301321-unq8m.png','210630132110_clipboard-202106301321-unq8m.png',9483,'image/png','6cd87a1cc4fe05839d21b609f6e3e736ea0ac604a5196473542a2f4c406a9263',0,1,'2021-06-30 13:21:10','','2021/06'),(1936,210,'Version','Modèle_Tank.vsdx','210701135032_6394c1c3cacd84a7eba76befacf24f64.vsdx',22151,'application/vnd.ms-visio.drawing','101205ed0331a4c8e207ec096b4c69add5a053470bedc436231f355b8b36425e',12,1,'2021-07-01 13:50:32','','2021/07'),(1937,210,'Version','OPCUAShapes.vss','210630165947_OPCUAShapes.vss',47616,'application/vnd.visio','2d099061edde33d82f851baa4ea6e334a56204883eeca1670876912ea0eb0676',28,1,'2021-07-01 13:50:47','','2021/06'),(1938,211,'Version','Simulation_2021_Release_x64.zip','210222103334_Simulation_2021_Release_x64.zip',2943802,'application/x-zip-compressed','80f9441afd4fe143f631bc1154dce9e4e98bf3ff4d87a799457e40827f6c934c',40,1,'2021-07-01 13:52:07','','2021/02'),(1939,211,'Version','UAExpert_1.5.12_Portable.zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',23,1,'2021-07-01 13:56:55','','2021/02'),(1940,212,'Version','Atelier03.zip','210701135825_Atelier03.zip',2828918,'application/x-zip-compressed','217b913909576db9dcf91933be4dce9ef7bdca990a056ceaadbe3003ed441fd2',19,1,'2021-07-01 13:58:25','','2021/07'),(1941,213,'Version','Atelier04.zip','210701135852_Atelier04.zip',153665,'application/x-zip-compressed','fa89c827513bd4a61478c587926d8bc61008fc8788df63bbfebd5719b288b1bd',23,1,'2021-07-01 13:58:52','','2021/07'),(1942,214,'Version','OPCUA_Profile.xml','210224110616_OPCUA_Profile.xml',3149,'text/xml','60f8c3ec306d1b7e6d7d323c4ca65853ff28bf82ce5d72d5b4dfd9d5144fa49a',34,1,'2021-07-01 13:59:13','','2021/02'),(1945,208,'Version','Manuel de l_utilisateur OOUAConfigManager.pdf','210422142401_447e9b63ba59a1d7f5e38491dedb817f.pdf',1209106,'application/pdf','dd0799bb9a8e5d29aae495d75d5789f05702914479ded9ee48a06a6e885a6767',17,1,'2021-07-06 09:07:08','','2021/04'),(1946,206,'Version','XiMulator_v1.0.1.8_v1.0.2.6.zip','210706160412_XiMulator_v1.0.1.8_v1.0.2.6.zip',1195013,'application/x-zip-compressed','4e83c0c3436be6b07675ff3047d73294d47ce8f2ee180d953079cd766e9e91f0',10,1,'2021-07-06 16:04:12','','2021/07'),(1947,209,'Version','OPCF Sample Client .Net.zip','210706161636_27c5c0b4f8f82f00f09ac182302af100.zip',2574245,'application/x-zip-compressed','9ebf29cbde9253cb831bcb7e2c996c107be26d3f03242a001e6f5a44bfe6eda1',11,1,'2021-07-06 16:16:36','','2021/07'),(1948,216,'Version','OPCUA_UML_Profile_Project.zip','210706170102_OPCUA_UML_Profile_Project.zip',143117,'application/x-zip-compressed','b5ee80556f2c1e29ca3492ed490f318182fb1708c920af91027f80c4e93d5e6e',20,1,'2021-07-06 17:01:02','','2021/07'),(1949,208,'Version','Formation OPC UA - J1 - Modelisation.pdf','210707084348_7d938f13fe043ebc107d1de129a3137c.pdf',4772584,'application/pdf','a9307e71b1789e4cf15670a1a9e95d15ae05b0e0f0f52cebc981dc22853fc7a3',24,1,'2021-07-07 08:43:48','','2021/07'),(1950,208,'Version','Formation OPC UA - J2 - Modelisation.pdf','210707084432_171db49449982fe7a771e7b344c84d02.pdf',1497356,'application/pdf','6cd70c80014c7272096a93adc8cff10d503660f7fb9784847d7b8733c7be3262',20,1,'2021-07-07 08:44:32','','2021/07'),(1952,178,'Version','Demo-PGSQL-HA_x64_Debug.zip','210707230817_Demo-PGSQL-HA_x64_Debug.zip',4572416,'application/x-zip-compressed','a962cbd913b08a5761e33ce79ee8e6bb4c21060161120b039bb4bf05965058d4',2,1,'2021-07-07 23:08:17','','2021/07'),(1953,178,'Version','Demo-PGSQL-HA_x64_Release.zip','210717115359_Demo-PGSQL-HA_x64_Release.zip',4225942,'application/x-zip-compressed','773ff1ecba64b94932100c558b70b9b1089e1547e6ab01f4e391b307fd853643',1,1,'2021-07-17 11:53:59','','2021/07'),(1954,587,'Issue','VfiPg_String.jpg','210717121857_VfiPg_String.jpg',4846672,'image/jpeg','ada2307c9ec0e08c583a9c67a1c361a22e9169bee81984e4cd381c1e1ef18aa3',0,447,'2021-07-17 12:18:57','','2021/07'),(1955,178,'Version','Demo-PGSQL-HA_x64_Release_v0.0.1.1.zip','210719173412_Demo-PGSQL-HA_x64_Release_v0.0.1.1.zip',4226045,'application/x-zip-compressed','73416bfb9a9d70a7aee064827a56788d166cc8e3efeb0e6f21539a6e42b3360f',3,1,'2021-07-19 17:34:12','','2021/07'),(1956,164,'Version','Demo-PGSQL-HA_x64_Release_v0.0.1.1.zip','210719173412_Demo-PGSQL-HA_x64_Release_v0.0.1.1.zip',4226045,'application/x-zip-compressed','73416bfb9a9d70a7aee064827a56788d166cc8e3efeb0e6f21539a6e42b3360f',2,1,'2021-07-19 17:38:40','','2021/07'),(1958,588,'Issue','DB30.csv','210720095346_DB30.csv',5248,'application/vnd.ms-excel','e48f4cd961d754bb13cf0dbd6794538cf9f4bbec7b3e4a6968e6ee5f37f2b561',0,459,'2021-07-20 09:53:46','','2021/07'),(1959,588,'Issue','DB31.csv','210720095346_DB31.csv',4342,'application/vnd.ms-excel','3c7ff8df438b80c39eb5f74cde2af453d543ad471724af506547bddf622c1ef3',0,459,'2021-07-20 09:53:46','','2021/07'),(1960,588,'Issue','DB32.csv','210720095346_DB32.csv',4962,'application/vnd.ms-excel','b6906cfeea17fdddc4df4f0c09673b871df50f0a2f6eccbe36156f46af1fb601',0,459,'2021-07-20 09:53:46','','2021/07'),(1961,588,'Issue','DB33.csv','210720095346_DB33.csv',4762,'application/vnd.ms-excel','f095bdd2ff15affc0968801bc82d0110e9e14e84e14d1983162ffc2fe831260f',0,459,'2021-07-20 09:53:46','','2021/07'),(1962,588,'Issue','DB34.csv','210720095346_DB34.csv',1447,'application/vnd.ms-excel','19a78c2431d0ab1d517d7b401e80fc23467902d55105a8e22451900377b4e290',0,459,'2021-07-20 09:53:46','','2021/07'),(1963,588,'Issue','Serveur OPCua d_Avrieux avec ramification V3.zip','210720095531_218352730707d0fc75eb93f3ce4de52a.zip',6458318,'application/x-zip-compressed','fda2ec27942af755993bb569491fd774cf8369931a2bb24c6801c058f5e4fc0a',0,459,'2021-07-20 09:55:31','','2021/07'),(1967,589,'Issue','Project.zip','210726104208_Project.zip',231787,'application/x-zip-compressed','d1a24ebe0606393ac35bf25a7ec49d413b23ccf00f3ca948bffd714f3339f73e',0,432,'2021-07-26 10:42:08','','2021/07'),(1968,591,'Issue','ServeurLine1_30-07.zip','210730113413_ServeurLine1_30-07.zip',2611888,'application/x-zip-compressed','a8e37d62dd3d2f85ca20d292a3bee87038528fef75da0a09d7354329d913d9b7',0,432,'2021-07-30 11:34:13','','2021/07'),(1969,591,'Issue','ServeurPlant_30-07.zip','210730113415_ServeurPlant_30-07.zip',2583981,'application/x-zip-compressed','9c67e5f0ba7b7e3a488f813c5917c659509f82ff0d9838a838f21f03f3f56a84',0,432,'2021-07-30 11:34:15','','2021/07'),(1972,206,'Version','XiMulator_v1.0.1.9_v1.0.2.7.zip','210801182545_XiMulator_v1.0.1.9_v1.0.2.7.zip',1199114,'application/x-zip-compressed','2efc6f9b5b42f566e3b35dd82d284e9383e846fedd45d502372573ef79c081aa',8,1,'2021-08-01 18:28:02','','2021/08'),(1973,175,'Version','Manuel de l_utilisateur OOUAConfigManager.pdf','210422142401_447e9b63ba59a1d7f5e38491dedb817f.pdf',1209106,'application/pdf','dd0799bb9a8e5d29aae495d75d5789f05702914479ded9ee48a06a6e885a6767',1,1,'2021-08-02 18:44:47','','2021/04'),(1975,177,'Version','Modèle eMotors - Decomp.7z','210803175324_75f6744fb50b4ad4837ebbc3881a30c9.7z',2205975,'application/x-7z-compressed','137643707e555570c664fbdb93d1e1d9d37cc198debfc5f280a8899e2615e541',1,447,'2021-08-03 17:53:24','','2021/08'),(1976,182,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_8_Release_x64.zip','210809164437_f1dc337ffca081be466f707e67645cb5.zip',16079959,'application/x-zip-compressed','5bd68b3df5825c7ff61881207e4180c5a87e3635a5ade31c91082b277e7e2c6c',1,1,'2021-08-09 16:44:37','','2021/08'),(1977,176,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_8_Release_x64.zip','210809164437_f1dc337ffca081be466f707e67645cb5.zip',16079959,'application/x-zip-compressed','5bd68b3df5825c7ff61881207e4180c5a87e3635a5ade31c91082b277e7e2c6c',8,1,'2021-08-09 16:51:51','','2021/08'),(1978,181,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_8_Release_x64.zip','210809164437_f1dc337ffca081be466f707e67645cb5.zip',16079959,'application/x-zip-compressed','5bd68b3df5825c7ff61881207e4180c5a87e3635a5ade31c91082b277e7e2c6c',4,1,'2021-08-09 16:56:51','','2021/08'),(1979,177,'Version','TestPLCSIM.PLC_1.OPCUA1.xml','210813144737_TestPLCSIM.PLC_1.OPCUA1.xml',59994232,'text/xml','c9a49efcd77cfb7438a0f45a4aca95ea5e7898ebaf08fbd3979c016e26509cbe',2,447,'2021-08-13 14:47:37','','2021/08'),(1980,594,'Issue','clipboard-202108131900-kcqe7.png','210813190013_clipboard-202108131900-kcqe7.png',42765,'image/png','27bddd16dbe950e70f05ae3f18890b103338ceeb4dca46366e5153b8c87a2e97',0,432,'2021-08-13 19:00:13','','2021/08'),(1981,221,'Version','Simulation_2021_Release_x64.zip','210819095026_Simulation_2021_Release_x64.zip',2649607,'application/x-zip-compressed','c1ddc9e8d15c860a3033b0eadbc7267936548319372755e951014998778b3cca',1,1,'2021-08-19 09:50:26','','2021/08'),(1982,221,'Version','UAExpert_1.5.12_Portable.zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',0,1,'2021-08-19 10:03:05','','2021/02'),(1983,175,'Version','Manuel de l_utilisateur OOUAConfigManager.docx','210820150114_89062f24d34c1d5ccd239abd03ae52d0.docx',2645433,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','31d055b71355bfa46b70118565a902cf8aa1a226a9b264f059b807b1c35ac294',2,1,'2021-08-20 15:01:14','OOUAConfigManager Mode Revision','2021/08'),(1984,175,'Version','Manuel de l_utilisateur-v1.04.docx','210820150505_3433ee808ed356e6aa94eb7f85879234.docx',1851760,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','1bba1ea693b62e99d7508af5206c57663bf5172b79bba81cc0aa92db0ba877ec',12,1,'2021-08-20 15:05:05','OOUACoreServer Mode revision','2021/08'),(1985,222,'Version','Topic.txt','210820230136_Topic.txt',213,'text/plain','1a93f2c46bb16da1bbfb44afd5478f03298ece30c741d45379f723ca9367473b',1,1,'2021-08-20 23:01:36','','2021/08'),(1986,223,'Version','Wireshark-win32-3.4.5.exe','210820231852_Wireshark-win32-3.4.5.exe',56531712,'application/x-msdownload','bc46bdc14dac4c67033bc5ad5590e4b221d5724ba28569b9134c13528fa37fed',1,1,'2021-08-20 23:18:52','','2021/08'),(1989,223,'Version','Topic.txt','210820235159_Topic.txt',120,'text/plain','cfafe0590667a1def1fbc393cd05a554fb16eec87e689ef4e8e5ac1438440736',1,1,'2021-08-20 23:51:59','','2021/08'),(1990,224,'Version','Demo-CSV-HA_Release_X64.zip','210820235253_Demo-CSV-HA_Release_X64.zip',2694462,'application/x-zip-compressed','65e387f207c70972a2e52ed87736e05b687a341e79a63b196d9e38fbaf71172d',2,1,'2021-08-20 23:52:53','','2021/08'),(1991,224,'Version','Topic.txt','210820235306_Topic.txt',24,'text/plain','48345ad886462c40a8e2fdfe82cd4f05bee4cdbd9c46a201afa40a5cd26c1b31',1,1,'2021-08-20 23:53:06','','2021/08'),(1992,225,'Version','DemoAC_Release_x64.zip','210820235408_DemoAC_Release_x64.zip',2966223,'application/x-zip-compressed','88821edbc48425e80a09c4a9e900a4012f59d58190fda8a8c1c1af82f0d3b073',1,1,'2021-08-20 23:54:08','','2021/08'),(1993,225,'Version','Topic.txt','210820235443_Topic.txt',48,'text/plain','8daefca2b2cfc73becf2307100046d64834e8b7cc520ad83df58a15804b05765',1,1,'2021-08-20 23:54:43','','2021/08'),(1994,227,'Version','hivemq-4.6.0.zip.001','210821232642_hivemq-4.6.0.zip.001',83886080,NULL,'f1dd8826a5cc977d50b5d94cfa68ba5f5c623cd7a798b66793b0ed6e7728abd0',1,1,'2021-08-21 23:26:42','','2021/08'),(1995,227,'Version','hivemq-4.6.0.zip.002','210821234714_hivemq-4.6.0.zip.002',83886080,NULL,'beb030dbf896df3fd6dd94ef23f73088840c98e266d19a2780bbc09bc9517fa3',2,1,'2021-08-21 23:47:14','','2021/08'),(1996,227,'Version','hivemq-4.6.0.zip.003','210821235513_hivemq-4.6.0.zip.003',29653767,NULL,'625bb3ebec6299e922cc6d14716d36a8751978da2b2b2895c5c02037312c3f55',1,1,'2021-08-21 23:55:13','','2021/08'),(1997,227,'Version','DemoMqttPublisher_Release.zip','210822150240_DemoMqttPublisher_Release.zip',2786888,'application/x-zip-compressed','bdc6065d0aae50bae0bcce61ffcead5e45e29448e6a62afc5e610ddb5788c8a4',1,1,'2021-08-22 15:02:40','','2021/08'),(1998,226,'Version','ModelisationStep01.zip','210822151006_ModelisationStep01.zip',2688451,'application/x-zip-compressed','0fdc9e86ced6dbe83b82302e27626b52b94f60edf208257ae0568afca1edf619',1,1,'2021-08-22 15:10:06','','2021/08'),(1999,226,'Version','Topic.txt','210822151031_Topic.txt',233,'text/plain','825e55e4423fba934e6f33d2d785e1f2409173ce0e2d5f2d1719d64938413441',1,1,'2021-08-22 15:10:31','','2021/08'),(2000,227,'Version','ConsoleReferenceSubscriber.zip','210823100627_ConsoleReferenceSubscriber.zip',4183417,'application/x-zip-compressed','f71d571f30790a2c53171ea36da4bcd88325510a52bb40faafe5df30d047e853',1,1,'2021-08-23 10:06:27','','2021/08'),(2002,219,'Version','Au Coeur d_OPC J1 - Matin.pdf','210824133756_4139b837942d34563d51437edfced643.pdf',3675333,'application/pdf','9a6c129fc217d5af5de7add755db9f7618e48f11b1adc14682b10d90056d0bf8',1,1,'2021-08-24 13:37:56','','2021/08'),(2003,221,'Version','Simulation_2021_Release_x64.zip','210824152935_Simulation_2021_Release_x64.zip',3154320,'application/x-zip-compressed','35a680a160223ee31ba0010a769c23973636258f86c87b63ad5b764edb191479',1,1,'2021-08-24 15:29:35','','2021/08'),(2004,222,'Version','Simulation_2021_Release_x64.zip','210824154908_Simulation_2021_Release_x64.zip',2701473,'application/zip','0ea3bbc5dee4af66823348d10575e12f33397a293a43b8e654185a3d337d07fc',1,490,'2021-08-24 15:49:08','Test UANOdeXML','2021/08'),(2005,220,'Version','UA_NodeSet_LONS_Fixed_25-08-2021.xml','210825083050_UA_NodeSet_LONS_Fixed_25-08-2021.xml',2059050,'text/xml','9e259bc4f7799092590ca9c3bacb9443dd0a46237fa8d1bcf7170aee17c7a487',2,1,'2021-08-25 08:30:50','','2021/08'),(2006,220,'Version','ProcDump.zip','210825100922_ProcDump.zip',293771,'application/x-zip-compressed','ed20a2da35ed4220be07b49a7fe47e50f8feb173275d7c8d534f90f13f2b7684',2,1,'2021-08-25 10:09:22','','2021/08'),(2007,219,'Version','Au Coeur d_OPC J1 - Après-midi.pdf','210825102349_c23f99e9acd106bf353aa6bb6db0e2be.pdf',2260186,'application/pdf','17dc456e244be3474a12cf0c2a17590e42da49f1b4cb21291c250409f131d5d6',1,1,'2021-08-25 10:23:49','','2021/08'),(2008,220,'Version','Manuel de l_utilisateur-v1.04.pdf','210825143325_51d8861dc8153415da5707b070053370.pdf',1021170,'application/pdf','cf5858a4bc33255f0cf553e38d2f08dd4140fee9d576e08a8247603b91a38a2c',1,1,'2021-08-25 14:33:25','','2021/08'),(2009,219,'Version','Au Coeur d_OPC J2 - Matin.pdf','210825152546_8fe932ada830ab3e295b1de1368c8970.pdf',2875341,'application/pdf','67468ade2948c63a759776082dff78915c2e4bf6aec7e906f6944db1656dfed3',1,1,'2021-08-25 15:25:46','','2021/08'),(2010,220,'Version','OPCUA_Spec_1.0.4.zip','201201105151_OPCUA_Spec_1.0.4.zip',23295180,'application/x-zip-compressed','83cd660330a9f0b9d700b16075d69a191c4e3c07296e9309c73a5378b85e6f47',1,1,'2021-08-25 16:01:56','','2020/12'),(2011,597,'Issue','clipboard-202108251640-rbcpf.png','210825164013_clipboard-202108251640-rbcpf.png',49952,'image/png','bb4634fbaf42ac7591557f1f66f23e434ff9c9170345c88fe8e6188af2346362',0,432,'2021-08-25 16:40:13','','2021/08'),(2012,597,'Issue','clipboard-202108251646-mcqoa.png','210825164623_clipboard-202108251646-mcqoa.png',34817,'image/png','4846d6e11dbc39498ad29d260faeded0daf148ecbd24c3e7b971d8c4f92db0fc',0,432,'2021-08-25 16:46:23','','2021/08'),(2013,220,'Version','OPCUA_Profile.xml','210825170418_OPCUA_Profile.xml',3819,'text/xml','876e48741f8067492eb69abcf5408d02ef8c91c15fcc3c80cb1e6dc2d2222aaa',2,1,'2021-08-25 17:04:18','','2021/08'),(2014,219,'Version','Au Coeur d_OPC J2 - Après-midi.pdf','210825172151_bf6c5456e1f17e7ae1b2495a9555e26a.pdf',2210856,'application/pdf','1c29ff5bd7abc231e1fb49cc3295ab0eab6aa10b0ee25e0e52bae7b7ad3e843d',2,1,'2021-08-25 17:21:51','','2021/08'),(2015,220,'Version','ExportSharedPackageMT.xml','210825195252_ExportSharedPackageMT.xml',85688,'text/xml','2a15db1807681cef79ceb0b0de52fa6d4f3c93c094a44c06fa549422a0da39ae',3,490,'2021-08-25 19:52:52','','2021/08'),(2016,220,'Version','SharedPacked.doc','210825202650_SharedPacked.doc',132173,'application/msword','6481469b8eb7e95106f349e3a106d8b17558d21b6a59148f596506b9fcd77e19',2,1,'2021-08-25 20:26:50','','2021/08'),(2017,220,'Version','Opc.Ua.NodeSet2.SharedPacked.xml','210825202658_Opc.Ua.NodeSet2.SharedPacked.xml',51693,'text/xml','d373a8223ba8bf63a2c185f660a19dd83e35ce8e8a4e89d9f448191a9c6d664b',2,1,'2021-08-25 20:26:58','','2021/08'),(2018,220,'Version','DemoModbus_Release_x64.zip','210826100002_DemoModbus_Release_x64.zip',3093296,'application/x-zip-compressed','a58002671ef0e27bd9ef96d3e25f9a48035b82db1595a4d7a57d6846846f5d6f',1,1,'2021-08-26 10:00:02','','2021/08'),(2019,220,'Version','Manuel de l_utilisateur - VpiMdbMaster.pdf','210826100103_63a45e95ce95c2eca90b4132e9b90777.pdf',482387,'application/pdf','e18d6b58e0040674244340926aae30c9324a412767a1cf1fdc261978bd794b43',1,1,'2021-08-26 10:01:03','','2021/08'),(2020,219,'Version','Au Coeur d_OPC J3 - Matin.pdf','210826133114_4d4cb3f086d6c6425bdec07a5321c31d.pdf',1487861,'application/pdf','f154a95456a70bcff3f1bd7be02d827b67ec20b996b23a56105b96ff66d79a0d',1,1,'2021-08-26 13:31:14','','2021/08'),(2021,219,'Version','Au Coeur d_OPC J3 - Après-midi.pdf','210826140657_c62bc0e69d4aa92583de129122e30440.pdf',978780,'application/pdf','f49f8a963f74077c897be73d9cd89c67742cf77cdbc5ce27228fc64381fe3c08',1,1,'2021-08-26 14:06:57','','2021/08'),(2022,220,'Version','VpiUaMqttJsonPub.dll','210826144855_VpiUaMqttJsonPub.dll',37376,'application/x-msdownload','72cef4afa4792e8440790a209017848c78fe1bcb4f9479a32eb5e1495bd0a700',1,1,'2021-08-26 14:48:55','','2021/08'),(2024,227,'Version','DemoModbusMqttPublisher_Release.zip','210826153748_DemoModbusMqttPublisher_Release.zip',2844175,'application/zip','9139b4c201bf49fe7b6e47bbe731997a41a154b6a69bfaece321b02d7c53f455',0,490,'2021-08-26 15:37:48','','2021/08'),(2026,220,'Version','Bilan Formation OPC 3Jours.pdf','210826155116_d5ceee599002d00fc17345c8aec3eecd.pdf',820696,'application/pdf','aae414bc51a5fb9c51cacfcfc80931cf9276f8a7205cc8b7c605b07743bb624c',1,490,'2021-08-26 15:51:16','Rempli JMO','2021/08'),(2029,597,'Issue','clipboard-202109021058-zreqv.png','210902105804_clipboard-202109021058-zreqv.png',21390,'image/png','b94f4338abc7f9ccf64525fa5aadc1e3125236e013f877db9df38d47566185b1',0,432,'2021-09-02 10:58:04','','2021/09'),(2030,597,'Issue','clipboard-202109021058-hmwx9.png','210902105839_clipboard-202109021058-hmwx9.png',19798,'image/png','508c0c2f849bc83a824e1f2edcbe0d950a3bae59d410f5cc59eb8a842bff961b',0,432,'2021-09-02 10:58:39','','2021/09'),(2031,593,'Issue','20210902_150502.jpg','210903084050_20210902_150502.jpg',5299100,'image/jpeg','af09ff1ab885e6ffe1603aa07b8588eb1086b220da660113a2b0f481b2465ce7',0,447,'2021-09-03 08:40:50','','2021/09'),(2032,593,'Issue','20210902_150437.jpg','210903084051_20210902_150437.jpg',6528900,'image/jpeg','f244cc009d2fcf8fd957121c1ea9957cd8125addeec07bb11e14e77221d959f5',0,447,'2021-09-03 08:40:51','','2021/09'),(2035,143,'Version','DemoMqttPublisher_Linux.zip','210910182430_DemoMqttPublisher_Linux.zip',6593096,'application/x-zip-compressed','efa95137a107ff0a30bb3c3ac0bf3a5b247fbc70943328e3fd59b75626cb797e',1,1,'2021-09-10 18:24:30','','2021/09'),(2036,140,'Version','ConsoleReferenceSubscriber.zip','210823100627_ConsoleReferenceSubscriber.zip',4183417,'application/x-zip-compressed','f71d571f30790a2c53171ea36da4bcd88325510a52bb40faafe5df30d047e853',1,1,'2021-09-10 18:27:31','','2021/08'),(2037,177,'News','clipboard-202109101844-lih0s.png','210910184413_clipboard-202109101844-lih0s.png',53733,'image/png','70658c1ecaca63c5e181ce163ad6a8420aca21d3f5e96ec082872b2455578c12',0,1,'2021-09-10 18:44:13','','2021/09'),(2038,594,'Issue','clipboard-202109131349-zzeyl.png','210913134933_clipboard-202109131349-zzeyl.png',388390,'image/png','046fc6eb89c21c4fd2ed72013684bc2356cabf537ab05767c4aa4bf20ccee7ba',0,432,'2021-09-13 13:49:33','','2021/09'),(2039,557,'Issue','clipboard-202109131757-t84mw.png','210913175724_clipboard-202109131757-t84mw.png',19819,'image/png','01911d87317793351430a38b100127a4967190dd30a25b6daec44a4f6d1ec4a3',0,432,'2021-09-13 17:57:24','','2021/09'),(2040,597,'Issue','clipboard-202109142219-cstc6.png','210914221959_clipboard-202109142219-cstc6.png',28191,'image/png','cc9dfcbd1ebe2350ff371522f2f6b20af6d2fa6f635f9716e0e45ae1e77df9df',0,1,'2021-09-14 22:19:59','','2021/09'),(2041,597,'Issue','clipboard-202109142221-o14rf.png','210914222111_clipboard-202109142221-o14rf.png',18447,'image/png','1bc444f11d21b3bd3e4438b11648589a71ee20edd41fcf365bfc4b13557c2a02',0,1,'2021-09-14 22:21:11','','2021/09'),(2042,597,'Issue','clipboard-202109142222-bqq3q.png','210914222206_clipboard-202109142222-bqq3q.png',18199,'image/png','dc365759c98b007913e9ac305cc4cc68434eda46e21d7d775675d20597cecd85',0,1,'2021-09-14 22:22:06','','2021/09'),(2043,178,'Version','Test1009.zip','210915161507_Test1009.zip',575027,'application/x-zip-compressed','77be807b92f7f9dc9f43035d2fa9288fff4e3c90592b475212ce51b437fda9be',2,1,'2021-09-15 16:15:07','','2021/09'),(2045,163,'Version','OpenOpcUa_1_0_6_0_INETUM_RC02.zip','210916172024_OpenOpcUa_1_0_6_0_INETUM_RC02.zip',8758679,'application/x-zip-compressed','bde33cf23871f58221243f36a705ee9548b9eb290b995062558471265eb2b43d',1,1,'2021-09-16 17:20:24','','2021/09'),(2046,599,'Issue','clipboard-202109171125-y0wa8.png','210917112552_clipboard-202109171125-y0wa8.png',4022,'image/png','e35e5996c4a1a7447490c626d2149e1213b60b0f5e67052720b675c38b5a3308',0,432,'2021-09-17 11:25:52','','2021/09'),(2047,599,'Issue','clipboard-202109171128-ijmwb.png','210917112911_clipboard-202109171128-ijmwb.png',214704,'image/png','0e849a2ecbc9383f8cb48a63a6f90a0bf3c49921e281012eb2820a0431a8980a',0,432,'2021-09-17 11:29:11','','2021/09'),(2048,599,'Issue','clipboard-202109171129-oyrrk.png','210917112948_clipboard-202109171129-oyrrk.png',73903,'image/png','f56e44505e0f3153f9d988121a83df5e7f6cda91a11df1ed50c6330ee7244e06',0,432,'2021-09-17 11:29:48','','2021/09'),(2049,177,'Version','Double_Float.zip','210917161511_Double_Float.zip',603538,'application/x-zip-compressed','c02d26550757d0a508dffbba74b3d5c640834c8bf47be3b2be340204aa6d5b55',2,489,'2021-09-17 16:15:11','Problème de conversion pour Float en Double','2021/09'),(2050,600,'Issue','clipboard-202109191437-qahab.png','210919143753_clipboard-202109191437-qahab.png',6472,'image/png','4e0374a9339d386a799cd4843d10c109a551a2bf1f9b4cae7409d0a8d6a7487b',0,432,'2021-09-19 14:37:53','','2021/09'),(2051,600,'Issue','clipboard-202109191441-n1jja.png','210919144113_clipboard-202109191441-n1jja.png',229612,'image/png','61aa006c3da5a572bdea73837e0876bc501a7b2aabb1a1b14f92c0dfb8cbd54a',0,432,'2021-09-19 14:41:13','','2021/09'),(2052,600,'Issue','clipboard-202109191447-ecp4t.png','210919144735_clipboard-202109191447-ecp4t.png',21198,'image/png','ca2edd19124627c1aa1990c419deb583cba1eba96cb0367e8000fb3e4d5a9dc2',0,432,'2021-09-19 14:47:35','','2021/09'),(2053,600,'Issue','clipboard-202109191755-ou9in.png','210919175535_clipboard-202109191755-ou9in.png',22158,'image/png','330b6640917c39be3b877e5082d1e2903a90e93553cb366376775bfdf02650c8',0,1,'2021-09-19 17:55:35','','2021/09'),(2054,601,'Issue','Trace PublishRequests trop tot.pcapng','210921115434_75aaa8a0204b136fd32304ef0090b5db.pcapng',124728,NULL,'aaff0125f8dfbce826575ebeea34b83b2f2769786710f627d5a6459c0b13c305',0,432,'2021-09-21 11:54:34','','2021/09'),(2055,602,'Issue','clipboard-202109211157-knxzf.png','210921115715_clipboard-202109211157-knxzf.png',21816,'image/png','1922b9f9c4fd27bb43e42c62e03ad082a7904c26d593f6a32d8df06660473f5d',0,432,'2021-09-21 11:57:15','','2021/09'),(2056,602,'Issue','clipboard-202109211158-bylmu.png','210921115850_clipboard-202109211158-bylmu.png',41946,'image/png','b0f5cf295a5f706fc7786151f79fd5e8c2e21dac8ad45d0d3f2f75e4f0291fb3',0,432,'2021-09-21 11:58:50','','2021/09'),(2059,603,'Issue','clipboard-202109211710-owpvz.png','210921171047_clipboard-202109211710-owpvz.png',128406,'image/png','33dcfb977909c4e6ee60de91dedb21479a789086d386bcb583efa2504d5dc543',0,432,'2021-09-21 17:10:47','','2021/09'),(2060,197,'Version','40223_Pumps.zip','210922155445_40223_Pumps.zip',4722334,'application/x-zip-compressed','9991937eee0110cc8202d4731d2a10ed40cdb954c816a728fe095ed776c897d3',1,1,'2021-09-22 15:54:45','','2021/09'),(2061,605,'Issue','Unified Automation UaExpert - The OPC Unified Architecture Client - OOUAMqttPublisher_ 2021-09-22 16-39-29.mp4','210923113620_0bd9a557538cc7c951360df0a9c7ee0f.mp4',75348544,'video/mp4','dbc3c8b619d89f20c42c5fbfec845cf0392cc85fff6c59d6340921568eb4cc7d',0,424,'2021-09-23 11:36:20','','2021/09'),(2062,604,'Issue','OpenOpcUaConfigManager.log','210923124213_OpenOpcUaConfigManager.log',84312,'text/plain','9745276c75e9477fb065a3610a2d5f4e80a1588bbfc41c34d322f6c2bf83e06d',0,424,'2021-09-23 12:42:13','','2021/09'),(2063,604,'Issue','Publisher-00150.log','210923124213_Publisher-00150.log',55,'text/plain','e39bd640b0ea93d90c7aad98ecdd22eb974c6499ea207a15f01bc852b50de828',0,424,'2021-09-23 12:42:13','','2021/09'),(2064,604,'Issue','Publisher-00150.log','210923152401_Publisher-00150.log',55,'text/plain','2312fdc6561ec9786f703df5b385fbcb43a083694f95bbd6af49cd3011040ecc',0,424,'2021-09-23 15:24:01','','2021/09'),(2065,604,'Issue','OpenOpcUaConfigManager.log','210923152402_OpenOpcUaConfigManager.log',84310,'text/plain','1ba483f1fc89774848b9c8d50d925a6b83dfa744dc1046aeb6a2c12ff653a1a5',0,424,'2021-09-23 15:24:02','','2021/09'),(2066,557,'Issue','Requests and responses analyze OPENOPCUA.xlsx','210923183435_7dbb56b2d358f383a268f0ccbf66ecec.xlsx',21405,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','471e690aef52b15ed64742c9d64568f8dc2b51be8da7c5e31b97e8f52aff80cb',0,1,'2021-09-23 18:34:35','','2021/09'),(2067,557,'Issue','clipboard-202109231838-txgqv.png','210923183901_clipboard-202109231838-txgqv.png',16895,'image/png','8bdbefaac8c4fe13011b3e2987969b7cac4bcab872708d396a149e70db679217',0,1,'2021-09-23 18:39:01','','2021/09'),(2068,557,'Issue','clipboard-202109241418-jezpy.png','210924141906_clipboard-202109241418-jezpy.png',19998,'image/png','ca45a0605397731da9349cfe6cd18d7ccc0b905609ea124a3ec19d89494f43d3',0,432,'2021-09-24 14:19:06','','2021/09'),(2069,557,'Issue','clipboard-202109241420-7xj1t.png','210924142013_clipboard-202109241420-7xj1t.png',42263,'image/png','4c3315b2a7ae64488ed6f1e04f7276b6d9c6fed8e849638245724854ef465516',0,432,'2021-09-24 14:20:13','','2021/09'),(2070,557,'Issue','Debug Alarmes.zip','210924150400_f5cc079bf696ff3fa51797b9a5a90c33.zip',133102,'application/x-zip-compressed','68064110acc0a43bc7a4d57abdaf7133c376e2407c1eb39814f1086b4481632f',0,432,'2021-09-24 15:04:00','','2021/09'),(2071,604,'Issue','testX.tcpdump','210924181418_testX.tcpdump',22724,NULL,'d79e9a199e11d07f0c63780c7af1cfd1a78e508e0e9909deb305cab13e477601',0,424,'2021-09-24 18:14:18','','2021/09'),(2072,604,'Issue','test45.tcpdump','210924181419_test45.tcpdump',8532,NULL,'dde89df167884cbf790399353b83267f285fb5d2a9071ffa44765452ae587abe',0,424,'2021-09-24 18:14:19','','2021/09'),(2075,607,'Issue','clipboard-202110041052-rxlay.png','211004105232_clipboard-202110041052-rxlay.png',55865,'image/png','f3edbd7cb53d177ccc3adebbc45d5f6ae015fa97f2b4cd513cf5321101d02ace',0,432,'2021-10-04 10:52:32','','2021/10'),(2076,607,'Issue','clipboard-202110041052-xougb.png','211004105251_clipboard-202110041052-xougb.png',60497,'image/png','c5b49dfd1f460d1ca92727ea2628d6a754db5260e414db4ccf821d5da44881c0',0,432,'2021-10-04 10:52:51','','2021/10'),(2077,607,'Issue','clipboard-202110041052-tdgds.png','211004105258_clipboard-202110041052-tdgds.png',120577,'image/png','b9875244ece413fc70eea4868a56af5e928388ae2137b50573566d6b9e17ed20',0,432,'2021-10-04 10:52:58','','2021/10'),(2078,607,'Issue','clipboard-202110041053-4igng.png','211004105310_clipboard-202110041053-4igng.png',123268,'image/png','bb7f07f196b12eb70aa29abcb46c0b2ca974820b340cad500edbff70de7cba22',0,432,'2021-10-04 10:53:10','','2021/10'),(2079,607,'Issue','clipboard-202110041053-yjp6v.png','211004105314_clipboard-202110041053-yjp6v.png',87304,'image/png','4b2caa6630b78e76fb9c9db47e855c3aa3d6ed64140a82dff5eb40917032a761',0,432,'2021-10-04 10:53:14','','2021/10'),(2080,607,'Issue','clipboard-202110041053-jmfbh.png','211004105323_clipboard-202110041053-jmfbh.png',32425,'image/png','cbe2c28795272fd8077a7639e0c35764fb4bc3192230d7fb0bbca682d39b4289',0,432,'2021-10-04 10:53:23','','2021/10'),(2081,607,'Issue','clipboard-202110041053-qaav2.png','211004105329_clipboard-202110041053-qaav2.png',28843,'image/png','80b2b3fcbdcebc8cedc709a3152a54ab5d5c24bb584b753dc36df9a6d6b1215c',0,432,'2021-10-04 10:53:29','','2021/10'),(2082,604,'Issue','clipboard-202110041602-al8zu.png','211004160226_clipboard-202110041602-al8zu.png',16497,'image/png','92a53a684a0f21bf97c782c18c0beaad2af21dfe2c97ad9a10f0471723de1cc4',0,424,'2021-10-04 16:02:26','','2021/10'),(2084,607,'Issue','Maquette Ticket 607.zip','211005182536_4f88d3fec2f3e6378e0d00e82d8c7aec.zip',14096133,'application/x-zip-compressed','eff4d206761c73b777ea0cbbf0633d5f239c664b416a40efecc88278dee4a3e4',0,432,'2021-10-05 18:25:36','','2021/10'),(2085,228,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_8_Release_x64.zip','210809164437_f1dc337ffca081be466f707e67645cb5.zip',16079959,'application/x-zip-compressed','5bd68b3df5825c7ff61881207e4180c5a87e3635a5ade31c91082b277e7e2c6c',1,1,'2021-10-06 14:13:23','','2021/08'),(2086,228,'Version','XiMulator_1.0.1.9_v1.0.2.9.zip','210929094250_XiMulator_1.0.1.9_v1.0.2.9.zip',1200106,'application/x-zip-compressed','1c2298acb97419b576ffcfaf582d33b3da8b4e3f4d33d5b3daf2ed9d72bba408',1,1,'2021-10-06 14:14:01','','2021/09'),(2087,141,'Version','ProjetModel-SK.zip','211006142319_ProjetModel-SK.zip',418936,'application/x-zip-compressed','0d770d4ed5956ccf2258e2572a5b20e990b23a44d810e12f49e8a6cd1c13317f',1,1,'2021-10-06 14:23:19','','2021/10'),(2091,609,'Issue','clipboard-202110061820-93cyh.png','211006182015_clipboard-202110061820-93cyh.png',9109,'image/png','10e2abb3b0aa2774342e9c585f7203c704e70b38b1c0da49fc20c8e128da972b',0,424,'2021-10-06 18:20:15','','2021/10'),(2092,609,'Issue','Unified Automation UaExpert - The OPC Unified Architecture Client - Maquette-Debian-SK_ 2021-10-06 18-29-49.mp4','211006183322_ab80d41c4ba075e4fba7561932f0c8d5.mp4',64762451,'video/mp4','c6611918888207e91b1100007473aab919f1d28a6f3f1c880fd8feafeaea1f8d',0,424,'2021-10-06 18:33:22','','2021/10'),(2093,609,'Issue','oouaApp.zip','211006183957_oouaApp.zip',6006170,'application/x-zip-compressed','c5aaf55752151e05b63768a14bb3bf9964c625d2f10f1a9db7d06cd1e5a2311f',0,424,'2021-10-06 18:39:57','','2021/10'),(2095,607,'Issue','TestLeak.xlsx','211007121458_TestLeak.xlsx',8718,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','166a05689d8a81fa84196127c273a15434a3400f644469192013be0b86bde1fc',0,1,'2021-10-07 12:14:58','','2021/10'),(2096,161,'Version','Manuel de l_utilisateur VpiUaClnt_1.0.2.3.pdf','211008163534_b4d8ae4d1aea057a86e202254bc5a396.pdf',404224,'application/pdf','e2941c38699d64ff07e075bb88c1ada204aaf35696a2e9d7600fe1170861bce3',3,1,'2021-10-08 16:35:34','','2021/10'),(2101,175,'Version','Manuel de l_utilisateur - VpiValuesInit.pdf','211011092739_b3ba87444ffabe68925584e7717e2f66.pdf',608972,'application/pdf','0865502e0b3dff0b7d067734d4391d985f55c0379427ea28f1f9702b97f9b56f',3,1,'2021-10-11 09:27:39','','2021/10'),(2103,161,'Version','Manuel de l_utilisateur - VpiValuesInit.pdf','211011092739_b3ba87444ffabe68925584e7717e2f66.pdf',608972,'application/pdf','0865502e0b3dff0b7d067734d4391d985f55c0379427ea28f1f9702b97f9b56f',3,1,'2021-10-11 09:29:32','','2021/10'),(2104,613,'Issue','clipboard-202110111844-d5njz.png','211011184421_clipboard-202110111844-d5njz.png',44234,'image/png','42f94c21af6593270295a6cf9d665811133c33ccce994b5d27b2fd6a07bdf20c',0,432,'2021-10-11 18:44:21','','2021/10'),(2105,613,'Issue','clipboard-202110111845-tv6ez.png','211011184503_clipboard-202110111845-tv6ez.png',12190,'image/png','b36e0d587f5401af78959f908ed5a0fab19921b4038c8522482cddf18e862cbb',0,432,'2021-10-11 18:45:03','','2021/10'),(2111,617,'Issue','VpiInitValues_UDT.zip','211014090223_VpiInitValues_UDT.zip',4577089,'application/x-zip-compressed','0b6e11854d30933095008863c2224373c208a5a5f7d1b3181aa8b521184aec0e',0,455,'2021-10-14 09:17:37','Configuration','2021/10'),(2112,618,'Issue','Maquette Ticket.zip','211014104453_2a4cfb4f126fbb5b50e6521f53593957.zip',19270899,'application/x-zip-compressed','a3af3e50fa5e3ea4fef18f44c196774d4781a8ba0dadc703e321b4bc7fd776db',0,432,'2021-10-14 10:44:53','','2021/10'),(2113,620,'Issue','clipboard-202110141437-jenzh.png','211014143714_clipboard-202110141437-jenzh.png',250420,'image/png','5d21c769ef75019c76c974089eca11550b7575de9b9cd34b9bd14bbfa2af3a14',0,424,'2021-10-14 14:37:14','','2021/10'),(2114,620,'Issue','clipboard-202110141445-vqxon.png','211014144534_clipboard-202110141445-vqxon.png',271867,'image/png','a135f82f99461c22fdaab2a4033b54cc7a322c46b8e75d2eaa0f3850fffd5cf0',0,424,'2021-10-14 14:45:34','','2021/10'),(2115,617,'Issue','VpiInitValues_UDT_14-10-2021.zip','211014151216_VpiInitValues_UDT_14-10-2021.zip',4724318,'application/x-zip-compressed','75372735636099107fdb57440d7aa0461c308fab94cc7213cd01da3526e67f73',0,1,'2021-10-14 15:12:16','','2021/10'),(2116,621,'Issue','clipboard-202110141612-cptgp.png','211014161231_clipboard-202110141612-cptgp.png',90315,'image/png','4bef2cc0ad7910e7d5add8f5a01fc672f80a890bcc2d786dfc5c5f7368101527',0,432,'2021-10-14 16:12:31','','2021/10'),(2118,624,'Issue','prepastack.zip','211014192444_prepastack.zip',409226,'application/x-zip-compressed','be300296d79234e55c7a30acc9ff8631c1d478cf26f18268a941c56cc1adb883',0,447,'2021-10-14 19:24:44','','2021/10'),(2119,623,'Issue','OpenOpcUaCoreServer_Debug.exe_211014_192425.dmp','211014193022_OpenOpcUaCoreServer_Debug.exe_211014_192425.dmp',51513513,'application/vnd.tcpdump.pcap','9b819bbfb0d56e91d2bed3d25de6502d2eecea404c838b014114a762482f9e4e',0,432,'2021-10-14 19:30:22','','2021/10'),(2120,622,'Issue','OpenOpcUaCoreServer_Debug.exe_211014_193640.dmp','211014194025_OpenOpcUaCoreServer_Debug.exe_211014_193640.dmp',69598164,'application/vnd.tcpdump.pcap','766bf88a68f0ecf367be03772cc17d8dab9590f38f3db040e5ab125f8eab3f08',0,432,'2021-10-14 19:40:25','','2021/10'),(2121,622,'Issue','Logs.zip','211014211122_Logs.zip',23424,'application/x-zip-compressed','d29323902ec071b53afedf5969bed951aa70a0c83b4e4ae610bea813c5e53751',0,432,'2021-10-14 21:11:22','','2021/10'),(2122,622,'Issue','Logs.zip','211014211449_Logs.zip',28857,'application/x-zip-compressed','1a1148193395d85e6be5b549df74250d59402215d126bf695be943080779605c',0,432,'2021-10-14 21:14:49','','2021/10'),(2123,623,'Issue','Logs.zip','211014211122_Logs.zip',23424,'application/x-zip-compressed','d29323902ec071b53afedf5969bed951aa70a0c83b4e4ae610bea813c5e53751',0,432,'2021-10-14 21:17:33','','2021/10'),(2125,177,'Version','Press_Kistler.pcapng','211015143035_Press_Kistler.pcapng',2133308,NULL,'c2315cb5c02fc05305514b8246a3f02820d0b4ff517220bc02910b2dddb75337',0,455,'2021-10-15 14:30:35','Fichier_Wireshark_Press_Kistler','2021/10'),(2128,625,'Issue','OpenOpcUaCoreServer_Debug.exe_211015_215122.dmp','211015215421_OpenOpcUaCoreServer_Debug.exe_211015_215122.dmp',50387269,'application/vnd.tcpdump.pcap','8635a2c687cda1af656a256e6e28e4db2515e2a7405976a3c4e8fa0398ad16b7',0,432,'2021-10-15 21:54:21','','2021/10'),(2130,625,'Issue','OpenOpcUaCoreServer_Debug.exe_211015_221315.dmp','211015221705_OpenOpcUaCoreServer_Debug.exe_211015_221315.dmp',46034749,'application/vnd.tcpdump.pcap','d1b430a91e9499ed84b5c30f4b3cfbe824ea036acd55689ecc3ba5859598fb6e',0,432,'2021-10-15 22:17:05','','2021/10'),(2131,163,'Version','OpenOpcUa_1_0_6_1_INETUM_15-10-2021.zip','211015222623_OpenOpcUa_1_0_6_1_INETUM_15-10-2021.zip',8769585,'application/x-zip-compressed','ffcdadedcc322c7db03afe0f0b3b30e6786488487d75ae0d7e5ffc3f65202b68',1,1,'2021-10-15 22:26:23','','2021/10'),(2132,623,'Issue','clipboard-202110171430-nbvev.png','211017143010_clipboard-202110171430-nbvev.png',24230,'image/png','989155103e852c7101af03fe3c421fbc41d0b1e15c807394baf8dec6fb32c0dc',0,432,'2021-10-17 14:30:10','','2021/10'),(2133,229,'Version','Présentation de la méthode de travail.pptx','211018164624_7bfd1c559d78ac109404ec46410eebc1.pptx',4388668,'application/vnd.openxmlformats-officedocument.presentationml.presentation','4e4194d8d074957530f7b83aafc8fb00b39e4d4c5c34e299cd89a62a7c30fd57',2,1,'2021-10-18 16:46:24','','2021/10'),(2134,229,'Version','QR Fabricants - 18-10-21.docx','211018164724_530e0fba1b19acbdb9d239512b0f3e4e.docx',29381,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','4309d8cf724af753da1325e7784654767df5e8f422e9b8dc1e4ee12cf98f6015',4,1,'2021-10-18 16:47:24','','2021/10'),(2135,231,'Version','OPC 30070-1 - UA Companion Specification Part 1 for MTConnect 2.00.pdf','211018165124_744b7c3554b4cbcd15cce2e5a6fde51a.pdf',3571417,'application/pdf','d06c54e1c0be1c1c444301de8a8acf7ff4ee6386cda1625403b6624d37d9ec19',2,1,'2021-10-18 16:51:24','','2021/10'),(2136,231,'Version','Opc.Ua.MTConnect.NodeSet2.xml','211018165137_Opc.Ua.MTConnect.NodeSet2.xml',575684,'text/xml','896041bea49a8c0be1d3b9aa30045f71fbb44f777532191fbad4529d341268ee',1,1,'2021-10-18 16:51:37','','2021/10'),(2137,231,'Version','Présentation OPC UA for MTConnect.pptx','211018165150_de96c8b131919064a3322763d2299569.pptx',401067,'application/vnd.openxmlformats-officedocument.presentationml.presentation','9b9ec11c12c8e536b46e9efd5d623626a6d09b4c971315c338d00bd33461ca33',2,1,'2021-10-18 16:51:50','','2021/10'),(2138,232,'Version','OPC 40502 - UA Companion Specification for CNC Systems 1.00.pdf','211018165216_5e6e153141734d72c586d9ebe2b35e80.pdf',1681549,'application/pdf','1b5e5e7dd68145c4ef9fcca8f348ca48f043f7b0a5da2c504607a5d68b76be7d',3,1,'2021-10-18 16:52:16','','2021/10'),(2139,232,'Version','Opc.Ua.CNC.NodeSet2.xml','211018165217_Opc.Ua.CNC.NodeSet2.xml',786836,'text/xml','d825566a0abccd7d76ede8a16b3a7abfcc84b8776968d694218ad0d7450d0439',1,1,'2021-10-18 16:52:17','','2021/10'),(2140,235,'Version','Opc.Ua.IA.NodeSet2.xml','211018165238_Opc.Ua.IA.NodeSet2.xml',99342,'text/xml','d80970301372e9836ab2c6013b9c24f4abe033dbdf5e3e9087393f0079113e4d',1,1,'2021-10-18 16:52:38','','2021/10'),(2141,235,'Version','OPC 10000-200 - UA Specification Part 200 - Industrial Automation 1.01.0.pdf','211018165239_4fdedf785cba32f1d951c5186c48314a.pdf',1124329,'application/pdf','5d15915302857f99a8d388909f24fef194066de16e79f6bd678f7f66ff2ee211',2,1,'2021-10-18 16:52:39','','2021/10'),(2143,234,'Version','OPC 40001-1 - UA CS for Machinery Part 1 - Basic Building Blocks 1.01.0.pdf','211018165305_b855ef494ba3a09918b9c1395cb7fa41.pdf',1814240,'application/pdf','c8b6f23c33b7a7baef618e089cccfa102ef88f07f5cce06a07f3d5042d52be50',2,1,'2021-10-18 16:53:24','','2021/10'),(2144,233,'Version','OPC 40501-1 - UA CS for Machine Tools Part 1 - Monitoring and Job 1.00.0.pdf','211018165359_e75623cac70bd78d846c8b660e38f0bf.pdf',2986243,'application/pdf','a1a8648a19f95d78e0e6a337b62db17879113929df6be478bf3640f151ef5e6f',3,1,'2021-10-18 16:53:59','','2021/10'),(2145,233,'Version','Opc.Ua.MachineTool.NodeSet2.xml','211018165400_Opc.Ua.MachineTool.NodeSet2.xml',309719,'text/xml','0851e11be7786bf2e2a64fc2889fde06022f0cc9da21a3c6cb699dc607ccdcab',1,1,'2021-10-18 16:54:00','','2021/10'),(2146,217,'Version','XiMulator_1.0.1.9_v1.0.2.9.zip','210929094250_XiMulator_1.0.1.9_v1.0.2.9.zip',1200106,'application/x-zip-compressed','1c2298acb97419b576ffcfaf582d33b3da8b4e3f4d33d5b3daf2ed9d72bba408',21,1,'2021-10-20 11:27:02','','2021/09'),(2147,206,'Version','OpenOpcUaConfigManager_Delivrable Beta_0_9_8_Release_x64.zip','210809164437_f1dc337ffca081be466f707e67645cb5.zip',16079959,'application/x-zip-compressed','5bd68b3df5825c7ff61881207e4180c5a87e3635a5ade31c91082b277e7e2c6c',21,1,'2021-10-20 14:05:54','','2021/08'),(2148,206,'Version','SIOME_V2.zip','211020151829_SIOME_V2.zip',50602834,'application/x-zip-compressed','12d4e9900707f863e5091f7782ad6a7af745f506b6fb8a223384d3ab40534c2e',8,1,'2021-10-20 15:18:29','','2021/10'),(2149,209,'Version','Bilan Formation OPC 2 Jours.pdf','211020160342_2a70de04f612d2634cee4ec931d24acd.pdf',192682,'application/pdf','11d6f2573be3e642d39064528650c2d1ccba833f470675c391e4974cd1d3199f',17,1,'2021-10-20 16:03:42','','2021/10'),(2152,626,'Issue','OpenOpcUaCoreServer_Debug.exe_211020_181516.dmp','211021104849_OpenOpcUaCoreServer_Debug.exe_211020_181516.dmp',66997434,'application/vnd.tcpdump.pcap','b8d14f82386a7425bbb1c290f1cf2447a70fea5fa9294cd38b33e176d742c5d3',0,432,'2021-10-21 10:48:49','','2021/10'),(2153,627,'Issue','UaClnt-003.log','211021112345_UaClnt-003.log',61705242,'text/plain','6e7d82ade4c714f79bed68c2e0a852226f3c9b1f2c40c7e38e192267b283be4a',0,432,'2021-10-21 11:23:45','','2021/10'),(2154,628,'Issue','clipboard-202110211127-pxjqo.png','211021112752_clipboard-202110211127-pxjqo.png',763707,'image/png','e19f788571cfdb975cccb3608f3a57778e75a03fe2c3c8834f458825050cd9c0',0,432,'2021-10-21 11:27:52','','2021/10'),(2161,NULL,NULL,'OpenOpcUaClientLibd_v1.0.6.0.zip','211022160208_OpenOpcUaClientLibd_v1.0.6.0.zip',145918,'application/x-zip-compressed','177a42a955259647f31879725496e169d200755d42b56511f572433b6d57c813',0,1,'2021-10-22 18:13:03',NULL,'2021/10'),(2165,633,'Issue','UaClnt-002-00601.log','211026095449_UaClnt-002-00601.log',12623,'text/plain','3fa1ca8fd2317e2d7f16202c6dbd588f36ba7fd8f180aaf84d1eff009386f8cc',0,432,'2021-10-26 09:54:49','','2021/10'),(2166,NULL,NULL,'clipboard-202110271051-gr1pk.png','211027105147_clipboard-202110271051-gr1pk.png',55474,'image/png','fcb0fd0233eac65c0b068e26038169fee3b9f34b9418d2ea55363f80c31f5095',0,513,'2021-10-27 10:51:47',NULL,'2021/10'),(2167,89,'Project','Symantec msgJPG.JPG','211027105217_a372900b1127c5c4dd5998a3d280966e.JPG',63036,'image/jpeg','0f9b2d599dce46f5831afc65d3bb11acad2e71c9bd49419bbab76a6f4a8b3c89',5,510,'2021-10-27 10:52:17','','2021/10'),(2168,634,'Issue','clipboard-202110271053-ztdeh.png','211027105147_clipboard-202110271051-gr1pk.png',55474,'image/png','fcb0fd0233eac65c0b068e26038169fee3b9f34b9418d2ea55363f80c31f5095',0,513,'2021-10-27 10:53:39','','2021/10'),(2169,237,'Version','david_tricycle.xml','211027121545_david_tricycle.xml',76352,'text/xml','96904424a1a3fe949221dfa66804928aa6c711ec178a3cbc1e36bc08cc2ac2bd',0,505,'2021-10-27 12:15:45','','2021/10'),(2170,635,'Issue','Projet_SG.rar','211027123855_Projet_SG.rar',147569,'application/x-rar-compressed','15ac73795761fefd5078d7983f86a690b9944d95ae993a505aa5be11919bb168',0,510,'2021-10-27 12:38:55','','2021/10'),(2171,89,'Project','Documentation Ximulator_Remy_verMC.zip','211027131325_12182d3170cf140ba230c0469ff1b1fc.zip',441769,'application/x-zip-compressed','0f6a4cb781deb67fcec5eef12a58e63a02ce87f2d3734b7043b20e4c2dd34548',3,1,'2021-10-27 13:13:25','','2021/10'),(2172,238,'Version','OPCUA_Spec_1.0.4.zip','201201105151_OPCUA_Spec_1.0.4.zip',23295180,'application/x-zip-compressed','83cd660330a9f0b9d700b16075d69a191c4e3c07296e9309c73a5378b85e6f47',4,1,'2021-10-27 15:32:48','','2020/12'),(2173,238,'Version','OPC UA Imerys for Lixhe Working Group Charter.docx','211027164248_fd2af442da357a320ab97956a334f9b8.docx',42719,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','cec32120be07aecd2d5f1801b69afc261f71421728f701973c0d545fe59b0a71',3,1,'2021-10-27 16:42:48','','2021/10'),(2174,238,'Version','Sunil - PersonNodeset.7z','211027164615_96421a5974aeff6e653156d677f8e81d.7z',137854,'application/x-7z-compressed','441d939e5a942e91169f2e8a0eb0ae8da79a1218caf232c49e173958c998227c',2,512,'2021-10-27 16:46:15','','2021/10'),(2175,637,'Issue','clipboard-202110281216-aufv7.png','211028121643_clipboard-202110281216-aufv7.png',46987,'image/png','7cdcf2e4fa06fbbb358d5c242f8cda15017910c8ee849d9ac27da973275cf9a5',0,432,'2021-10-28 12:16:43','','2021/10'),(2176,637,'Issue','Sprint7.zip','211028121805_Sprint7.zip',27782528,'application/x-zip-compressed','7a1cd6afd16d1eae5206d0f468f523c91b93b4940d264a4771fa0c6a8415799c',0,432,'2021-10-28 12:18:05','','2021/10'),(2177,638,'Issue','Sprint7.zip','211028121805_Sprint7.zip',27782528,'application/x-zip-compressed','7a1cd6afd16d1eae5206d0f468f523c91b93b4940d264a4771fa0c6a8415799c',0,432,'2021-10-28 12:23:08','','2021/10'),(2182,163,'Version','OpenOpcUa_1_0_6_1_INETUM_28-10-2021.zip','211028184959_OpenOpcUa_1_0_6_1_INETUM_28-10-2021.zip',8477903,'application/x-zip-compressed','fb6f0a3ba3015c2e6ffed5d0808fb704532d059442ff2aaa1f817d02e65bc3a7',1,1,'2021-10-28 18:49:59','','2021/10'),(2183,603,'Issue','clipboard-202110282116-namz5.png','211028211652_clipboard-202110282116-namz5.png',112632,'image/png','7fc13b18ddcadc323de03eafb2108b3d244417634ffce8df7ce4572509fb9a83',0,1,'2021-10-28 21:16:52','','2021/10'),(2186,185,'News','AWS-00160.dat','211101205301_AWS-00160.dat',347,'text/plain','01a0f3e2ac88fdd4499ac406ad653125f523157d7854f6fc7fc7429f4a7adcbd',0,1,'2021-11-01 20:53:01','','2021/11'),(2187,185,'News','IotHub-00170.dat','211101205308_IotHub-00170.dat',498,'text/plain','10d9f230c64e213dd68ce40eb9c86bcb354cd8a583f0f19feabb5dc8e712cb53',0,1,'2021-11-01 20:53:08','','2021/11'),(2188,185,'News','MosquitoLiveTLS-00150.dat','211101205317_MosquitoLiveTLS-00150.dat',329,'text/plain','8abfd6e548b951aae4fef4f75e50299c796691c49a8e3613d76e4877552651d6',0,1,'2021-11-01 20:53:17','','2021/11'),(2189,641,'Issue','clipboard-202111021044-ouqnd.png','211102104422_clipboard-202111021044-ouqnd.png',29245,'image/png','fe2dc90e485dfa878786ef6fc50fbb47e18b6adb5a22e691db88644e8b2546d2',0,432,'2021-11-02 10:44:22','','2021/11'),(2190,641,'Issue','OpenOpcUaCoreServer_Debug.exe_211029_182502.dmp','211102104450_OpenOpcUaCoreServer_Debug.exe_211029_182502.dmp',52746462,'application/vnd.tcpdump.pcap','392a8cb10cf66b2d1b0492583cef664a6e61f2f9e67c5517fe1cb35605da6999',0,432,'2021-11-02 10:44:50','','2021/11'),(2191,643,'Issue','OpenOpcUaCoreServer_Debug.exe_211103_154732.dmp','211103163920_OpenOpcUaCoreServer_Debug.exe_211103_154732.dmp',53762444,'application/vnd.tcpdump.pcap','e3b85b18213562c05add7f00c225096c04657ca036b475acedbeab56bf4acfcd',0,432,'2021-11-03 16:39:20','','2021/11'),(2192,643,'Issue','OpenOpcUaCoreServer_Debug.exe_211103_163749.dmp','211103163935_OpenOpcUaCoreServer_Debug.exe_211103_163749.dmp',71408721,'application/vnd.tcpdump.pcap','a0b346858789e286b29a67f18c3a55a6ea01f1073a86f9735463ee86dc227691',0,432,'2021-11-03 16:39:35','','2021/11'),(2195,638,'Issue','clipboard-202111041848-k9kx0.png','211104184819_clipboard-202111041848-k9kx0.png',367630,'image/png','24bf20a45cfadd11a3efb280f0e12a26f1ab71994f225cec1e11cacf3f34919f',0,1,'2021-11-04 18:48:19','','2021/11'),(2196,175,'Version','Formation OPC UA - J2 - Modelisation.pptx','211105164504_4dbea754b20c5714bd4de4455d15d690.pptx',4349470,'application/vnd.openxmlformats-officedocument.presentationml.presentation','2cdb990fc8b985791b9de5ce1cc35e0a35a4064c7d8aa9c3849c42d145a69ebf',3,1,'2021-11-05 16:45:04','','2021/11'),(2197,179,'Version','XiMulator_1.0.1.9_v1.0.3.0.zip','211105164646_XiMulator_1.0.1.9_v1.0.3.0.zip',1200360,'application/x-zip-compressed','6abbe489b9a316b2f107204a119d80149cbd3aada1f3505096a404664346cb76',4,1,'2021-11-05 16:46:46','','2021/11'),(2198,178,'Version','DemoS7_Simulator_Release_x64.zip','211105164846_DemoS7_Simulator_Release_x64.zip',4720164,'application/x-zip-compressed','db2c7b7d07da55c9a8bdfbf400bf0f2546ed1f795ed543423956b6f972c79a81',4,1,'2021-11-05 16:48:46','','2021/11'),(2199,175,'Version','Manuel de l_utilisateur - VpiS7 - 1.0.7.pdf','210409115453_e26a1ebeabc9120ffe3481afac825af7.pdf',463781,'application/pdf','20eb59bffdf3580d3be96c72e939fea6a20f087c8e57d29130fdfb7a19a2f846',12,1,'2021-11-05 16:49:08','','2021/04'),(2200,177,'Version','Analyse_Status_Fault_051121.pcapng','211105190112_Analyse_Status_Fault_051121.pcapng',2227328,NULL,'f4ee6fc0f27d94cf85d60dfaf8205c1d21b41c79e2828016dfce001a91861b22',2,447,'2021-11-05 19:01:12','','2021/11'),(2207,644,'Issue','clipboard-202111091208-g2bl4.png','211109120815_clipboard-202111091208-g2bl4.png',13481,'image/png','0608439dd6abb27ea89acaa23b76cbc3802d483e653afe14aefcf809f9937ca2',0,432,'2021-11-09 12:08:15','','2021/11'),(2208,644,'Issue','RotorM3M4_MODULE1.zip','211109121024_RotorM3M4_MODULE1.zip',27374337,'application/x-zip-compressed','1dcf1dcc0197522c42a98106394b04a29f0d5f002d5fb8585d052124a3a5ec93',0,432,'2021-11-09 12:10:24','','2021/11'),(2213,177,'Version','rotor_101121.zip','211110192943_rotor_101121.zip',44565442,'application/x-zip-compressed','f34b739aa40e4106a9277eefebf2e9c47fffd124c45d9f523d0788871e5815b3',2,447,'2021-11-10 19:29:43','Crash ligne rotor Mercredi 10 11 21 à 16h25','2021/11'),(2214,644,'Issue','clipboard-202111102253-hwxiu.png','211110225316_clipboard-202111102253-hwxiu.png',633810,'image/png','18f3395c80f52a904f2936af10f46ec693412297adbc93bbcda4972e790929c0',0,1,'2021-11-10 22:53:16','','2021/11'),(2215,644,'Issue','clipboard-202111102255-xhpuc.png','211110225548_clipboard-202111102255-xhpuc.png',249926,'image/png','61f28cb4b3f50d7d6a7f62064e41bc28f8fa0053234e0ff12da4de777c7428f2',0,1,'2021-11-10 22:55:48','','2021/11'),(2216,177,'Version','Test_Usinage.PLC_1.OPCUA.xml.zip','211112120510_Test_Usinage.PLC_1.OPCUA.xml.zip',4757205,'application/x-zip-compressed','c9cbfd51506c7d4dead429549432af4788d9aaf6133e5b014f921b7bc750091c',0,447,'2021-11-12 12:05:10','XML PLC S7-1500','2021/11'),(2217,179,'Version','VPIS7d_Ver_1.0.0.8.zip','211114182410_VPIS7d_Ver_1.0.0.8.zip',172834,'application/x-zip-compressed','803b0858a71d536375cb43979a51e562c1bedf6b9cafa9eaa653a9ed75c069a4',5,1,'2021-11-14 18:24:10','','2021/11'),(2218,86,'Project','QR Siemens 15-11-21.docx','211115094623_370a5bb0958c237ac240eef6b07ad61c.docx',26917,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','060252923e040a9ea1c3a10d60bc6f44076dee964197272c1429572b26615eb3',1,1,'2021-11-15 09:46:23','','2021/11'),(2219,86,'Project','OPCUA MO 27 rapport d_étape 30 oct 2021.pptx','211115094658_3d384d266d4e35d9b308358e6eb97922.pptx',531765,'application/vnd.openxmlformats-officedocument.presentationml.presentation','ee0cd6063fa428203fe4834808a5086ae24da94e2b31b2253a19b29881be678f',1,1,'2021-11-15 09:46:58','','2021/11'),(2220,644,'Issue','clipboard-202111151028-nc6b3.png','211115102812_clipboard-202111151028-nc6b3.png',55490,'image/png','d0783dd63bac520a3b3ba909256abde378c967a26a2df8e7227c1e24a72f2a78',0,432,'2021-11-15 10:28:12','','2021/11'),(2221,644,'Issue','clipboard-202111151028-rcvna.png','211115102833_clipboard-202111151028-rcvna.png',88619,'image/png','88d7c7941618148d4ba2b58df9ee6e26a88d114721b06ada4ba8f91d05383541',0,432,'2021-11-15 10:28:33','','2021/11'),(2223,645,'Issue','UaExpert_VPiS7.png','211115141944_UaExpert_VPiS7.png',183384,'image/png','0d012b64429428035b4aa5b1fe65e1fd38a7961277ef4739e85a1472dfe3479e',0,447,'2021-11-15 14:19:44','Screenshot avec décalage tableau byte vers string','2021/11'),(2224,645,'Issue','Logs.zip','211115141955_Logs.zip',39224,'application/x-zip-compressed','a29db817ede9eb6e533d6a81d8c2e8e9de4929f0624b7e621d1eb0a7d63765f8',0,447,'2021-11-15 14:19:55','Log de la maquette','2021/11'),(2225,651,'Issue','Diag prepastack 15et16 novembre 2021.zip','211116123017_89f30c26f0fbffe2514139849b6aab3d.zip',46817178,'application/x-zip-compressed','a01a8d1d8b29b6e7893b4f0be625c08d493c931ec0b287e2bd66cebf9c896354',0,432,'2021-11-16 12:30:17','','2021/11'),(2228,241,'Version','Simulation_2021_Release_x64.zip','210824152935_Simulation_2021_Release_x64.zip',3154320,'application/x-zip-compressed','35a680a160223ee31ba0010a769c23973636258f86c87b63ad5b764edb191479',13,1,'2021-11-17 08:51:26','','2021/08'),(2231,654,'Issue','OpenOpcUaCoreServer_Debug.zip','211117093806_OpenOpcUaCoreServer_Debug.zip',66489742,'application/x-zip-compressed','e916e5d2129a8789c8011319eea4c12cab052aaee37cd3e9963f900ca098df1d',0,489,'2021-11-17 09:38:06','','2021/11'),(2233,655,'Issue','CRASH PREPASTACK 17-11-21.zip','211117132357_9f33b6aeee152dd7e9e8fb0863face6f.zip',7949378,'application/x-zip-compressed','1863c15f9741084ffd035ddb8984aac3817ac4c112abee1527ca682ba6cf82fc',0,489,'2021-11-17 13:23:57','','2021/11'),(2234,656,'Issue','CRASH ROTOR 17-11-21.zip','211117132839_c7a2ce55f25bba1b87e2cf838f7e0dbc.zip',94734545,'application/x-zip-compressed','e801e3590067f784b1133f5cebdbc9c377a355b71318af1bf416423066616cf4',0,489,'2021-11-17 13:28:39','','2021/11'),(2235,657,'Issue','Wireshark_prepa_Stack.pcapng','211117155640_Wireshark_prepa_Stack.pcapng',4282700,NULL,'57a2225539938e7044ed466a1442cf4cae393450a02d4c6b448bcbee98541d0c',0,447,'2021-11-17 15:56:40','','2021/11'),(2236,658,'Issue','Résumés diagnostiques minidump et logs 16-17 novembre.docx','211117165920_7885d3ed084a24204b1fc1a001db388a.docx',166848,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','b084613f00277221de5a98cbcd51bd3e6c29c442cc8cc8e0960e177e5e664798',0,432,'2021-11-17 16:59:20','','2021/11'),(2238,241,'Version','UAExpert_1.5.12_Portable.zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',7,1,'2021-11-18 08:49:40','','2021/02'),(2240,659,'Issue','CRASH PREPASTACK 18-11-21.zip','211118150909_98a6d499ca0f74fc24825f7fd634bb2e.zip',21633322,'application/x-zip-compressed','a5c237cc01344c0fe6a018f5707fe96358648733b1e9ca384348519b5beba4c8',0,489,'2021-11-18 15:09:09','','2021/11'),(2241,660,'Issue','OpenOpcUaCoreServer_Debug.exe_211118_110525.dmp','211118151004_OpenOpcUaCoreServer_Debug.exe_211118_110525.dmp',53356663,'application/vnd.tcpdump.pcap','027ee61b9f4b89c0ac1bee6646ed55931a6ebc28cc825eeaf5e7584dec255581',0,489,'2021-11-18 15:10:04','','2021/11'),(2242,143,'Version','DemoMqttPublisher_Debug.zip','211118173606_DemoMqttPublisher_Debug.zip',5402995,'application/x-zip-compressed','01af71b0dfd55391981387f06e62f24b4b74366db876fe46255bb6a88e1b1e91',1,1,'2021-11-18 17:36:06','','2021/11'),(2244,659,'Issue','PREPASTACK 19-11-21.zip','211119112807_983ba4a9e0f940cddeb41b27e4d21554.zip',186832,'application/x-zip-compressed','c21ed9fbd5143a39bcd8e9d1c94d8a72d9117e536016cb483ea89cf0b06aa68f',0,489,'2021-11-19 11:28:07','','2021/11'),(2245,659,'Issue','USINAGE 19-11-21.zip','211119112809_b5a2928f0ab259e8440a56cbd9164aca.zip',3877758,'application/x-zip-compressed','4f1645ad036a44830ea108b8d4450ece10b28e2b8eed684960cb9a9f1fc3331d',0,489,'2021-11-19 11:28:09','','2021/11'),(2246,659,'Issue','clipboard-202111191159-oxzxt.png','211119115953_clipboard-202111191159-oxzxt.png',14707,'image/png','759eabc6be6f2b49f01f28bf9126f0cc3020e11c820c931debe6932cb0cd87ab',0,432,'2021-11-19 11:59:53','','2021/11'),(2247,659,'Issue','clipboard-202111191205-xzr0z.png','211119120531_clipboard-202111191205-xzr0z.png',74047,'image/png','421241b004efd5f2e8b85b75f1d8e5d3cc242cbaada49faf5fbaa3ad09694909',0,432,'2021-11-19 12:05:31','','2021/11'),(2248,659,'Issue','clipboard-202111191205-xn97l.png','211119120541_clipboard-202111191205-xn97l.png',10267,'image/png','3ad3ce7fbb8fee7563d0bfef3f197312b2e241928f914e70bfb6a312f9570b67',0,432,'2021-11-19 12:05:41','','2021/11'),(2249,659,'Issue','Logs ligne d_usinage.zip','211119120608_26691bc65bf71c32bbc0186df41fa15c.zip',1737635,'application/x-zip-compressed','2e4ae0b17be58277b3fad940e8b572d7ae6bb61ba64444cfe1095e9a97af2ed2',0,432,'2021-11-19 12:06:08','','2021/11'),(2250,659,'Issue','Rotor 18-19novemebre.zip','211119120914_525ab8f8f8472c3fc3f32d79caa67b55.zip',88267610,'application/x-zip-compressed','dc84f21bbf999a482f194ee8b974be55a7910d08e317d16c449bbd08cc5abbce',0,432,'2021-11-19 12:09:14','','2021/11'),(2254,662,'Issue','clipboard-202111191740-dgqbq.png','211119174033_clipboard-202111191740-dgqbq.png',19419,'image/png','ef625354a3fb8be66a54318b9acc25a5b742e4144a95601002781ee920c872c3',0,432,'2021-11-19 17:40:33','','2021/11'),(2256,190,'News','clipboard-202111212326-ni1ga.png','211121232616_clipboard-202111212326-ni1ga.png',134341,'image/png','1412cb3b132484c0076dc6fcadafa0a4489c47b3e71a0a74e8d6baa53b5423b6',0,1,'2021-11-21 23:26:16','','2021/11'),(2257,190,'News','clipboard-202111212332-3hetz.png','211121233239_clipboard-202111212332-3hetz.png',23999,'image/png','7a2447c060387ae867af5447f0ff8756ac8905be8c5e767a16cc67bea25a3707',0,1,'2021-11-21 23:32:39','','2021/11'),(2258,663,'Issue','clipboard-202111221051-wndyi.png','211122105147_clipboard-202111221051-wndyi.png',39974,'image/png','24cfa37d6fef7def1989081f76a74c2c37fbb0ed3a209889948f4136c54c3227',0,432,'2021-11-22 10:51:47','','2021/11'),(2259,663,'Issue','clipboard-202111221104-kpivk.png','211122110408_clipboard-202111221104-kpivk.png',22472,'image/png','c6c8ddabe8ce5fab6e064f7ad4f1af033ded963ae2a808bcd60736f6608c8b99',0,432,'2021-11-22 11:04:08','','2021/11'),(2260,228,'Version','TestFolder_OpenSSL_1.1.1i.zip','211122150907_TestFolder_OpenSSL_1.1.1i.zip',1900975,'application/x-zip-compressed','3aa57d184c2cdc78d222fa1f2711ffb84fadd9211c8518c6c44229eda250dfc2',1,1,'2021-11-22 15:09:07','','2021/11'),(2262,661,'Issue','rotor221121.zip','211122181945_rotor221121.zip',28609301,'application/x-zip-compressed','03c6775e67783896088026649680f7afc824e8be57199802733a7c5ee86d114a',0,447,'2021-11-22 18:19:45','','2021/11'),(2264,661,'Issue','clipboard-202111222158-i5dpv.png','211122215828_clipboard-202111222158-i5dpv.png',99628,'image/png','6e460f5c1cb72c1f3e3a1af2d9f3114b5a91a73b2984732e93b016985f500379',0,447,'2021-11-22 21:58:28','','2021/11'),(2265,666,'Issue','clipboard-202111222232-txkoj.png','211122223218_clipboard-202111222232-txkoj.png',18290,'image/png','906f499377824049318f24bcdbdf3cfb7f8f461f3d0dae3655e88e89a380d7b2',0,424,'2021-11-22 22:32:17','','2021/11'),(2266,661,'Issue','Logs.zip','211123152531_Logs.zip',24539,'application/x-zip-compressed','2ab8344cee74e16a3c2b18ac7b9a503337a626a30c2c3779c41bf53f7fd71306',0,447,'2021-11-23 15:25:31','','2021/11'),(2267,661,'Issue','RotorM3M4_MODULE1NEW.zip','211123165516_RotorM3M4_MODULE1NEW.zip',17431646,'application/x-zip-compressed','07d5e54bc31c6c08de76659ba2a4b71931487a8eeb974201f721bf3a88dd3c13',0,447,'2021-11-23 16:55:16','','2021/11'),(2268,661,'Issue','clipboard-202111241014-1prhx.png','211124101425_clipboard-202111241014-1prhx.png',151137,'image/png','76e2857f05f2892c9edc4a57831d6f86b0d7fb4db6ce9a91bbe35d61e9e25c8f',0,447,'2021-11-24 10:14:25','','2021/11'),(2269,661,'Issue','rotor2411211442.zip','211124145140_rotor2411211442.zip',68493963,'application/x-zip-compressed','3244909c6bef5777a537437f786824e3800a47e9a024f4bd27c8e3da72055400',0,447,'2021-11-24 14:51:40','','2021/11'),(2270,659,'Issue','rotor2411211513.zip','211124151719_rotor2411211513.zip',88521750,'application/x-zip-compressed','ffdbe5dd0e8a51bcc9d7eb8018693c60dd960e333fe1d4fe103527617a5fe7f8',0,447,'2021-11-24 15:17:19','','2021/11'),(2271,NULL,NULL,'RotorM3M4_MODULE1NEW.zip','211124164838_RotorM3M4_MODULE1NEW.zip',88512550,'application/x-zip-compressed','9da72783bd9b9f7b36d8972acc2f599bc54e575be8b1f76f18b21e9d3c322608',0,447,'2021-11-24 16:48:38',NULL,'2021/11'),(2272,668,'Issue','TicketModele.zip','211124171328_TicketModele.zip',1430559,'application/x-zip-compressed','58f76e1c9fb1097ef38b044b637bcc7d5411722016e38aadfb1220b114df1afb',0,432,'2021-11-24 17:13:28','','2021/11'),(2273,659,'Issue','rotor2411211742.zip','211124174815_rotor2411211742.zip',90372660,'application/x-zip-compressed','ec13863292747ad1e4c7eb4d55a3c77664a5750f3b561953788fca77c8869de5',0,447,'2021-11-24 17:48:15','','2021/11'),(2274,661,'Issue','Wireshark.zip','211124194045_Wireshark.zip',806382,'application/x-zip-compressed','53c4926460908c09452066b82eeeecd8f2c89fceaa0f71bb5ff96779c582ff0f',0,447,'2021-11-24 19:40:44','','2021/11'),(2275,238,'Version','Manuel de l_utilisateur-v1.04.pdf','210825143325_51d8861dc8153415da5707b070053370.pdf',1021170,'application/pdf','cf5858a4bc33255f0cf553e38d2f08dd4140fee9d576e08a8247603b91a38a2c',4,1,'2021-11-25 09:51:29','','2021/08'),(2276,238,'Version','Manuel de l_utilisateur OOUAConfigManager.pdf','210422142401_447e9b63ba59a1d7f5e38491dedb817f.pdf',1209106,'application/pdf','dd0799bb9a8e5d29aae495d75d5789f05702914479ded9ee48a06a6e885a6767',3,1,'2021-11-25 09:52:02','','2021/04'),(2277,92,'Project','Imerys-Fall2021-25_11_2021.eapx','211125184155_Imerys-Fall2021-25_11_2021.eapx',2625536,NULL,'dbe7d6a24451ebe1cb69d32a19230919d8361f3eb1b77c39d33dcf1e1b61831a',1,1,'2021-11-25 18:41:55','','2021/11'),(2278,661,'Issue','clipboard-202111251858-rqlpo.png','211125185824_clipboard-202111251858-rqlpo.png',34562,'image/png','7d75d409361a40c3200acbbe61a4d899fbb5083517fc4acd53415bbb6aafc85d',0,1,'2021-11-25 18:58:24','','2021/11'),(2279,661,'Issue','clipboard-202111251859-e0jta.png','211125185932_clipboard-202111251859-e0jta.png',46229,'image/png','e79c6585b221aea9882cdd6fa78f2bc64cf30e3012ba20d723f0566f000305be',0,1,'2021-11-25 18:59:32','','2021/11'),(2280,661,'Issue','clipboard-202111261123-23iv7.png','211126112310_clipboard-202111261123-23iv7.png',95748,'image/png','8fcd41005eda36e57f566f0c33830a0fe6a7fa241bde9b5b7e5a929e5d5bfa5f',0,432,'2021-11-26 11:23:10','','2021/11'),(2281,661,'Issue','clipboard-202111271219-lj7jh.png','211127121930_clipboard-202111271219-lj7jh.png',10181,'image/png','832dd0eec24ec56a24d5eae51d652252ed36a741f6ff0f18121656147908d3c5',0,447,'2021-11-27 12:19:30','','2021/11'),(2282,661,'Issue','Serveur_Test_PLCSIM.zip','211127122237_Serveur_Test_PLCSIM.zip',18209180,'application/x-zip-compressed','15d514bc18f75e3ac7db634e2bf767c47adde4cd11dccf667180d382244a34d1',0,447,'2021-11-27 12:22:37','','2021/11'),(2283,661,'Issue','PLCSIM_POC_DT_Test.zip','211127122322_PLCSIM_POC_DT_Test.zip',555789,'application/x-zip-compressed','b28704562845abc565c9f475e00efbfdab1c582e87f5e02478d78c9160af4164',0,447,'2021-11-27 12:23:22','','2021/11'),(2285,92,'Project','Imerys-Fall2021-29_11_2021.eapx','211129175722_Imerys-Fall2021-29_11_2021.eapx',2666496,NULL,'9c41a2058beaf8551583b0b9b501b8918e031cf49d87bad45dbdf406acac4e90',4,1,'2021-11-29 17:57:22','','2021/11'),(2287,242,'Version','Emotor-LogicalModel-OPCUA_V2.17.eapx','211130183750_Emotor-LogicalModel-OPCUA_V2.17.eapx',6123520,NULL,'3bd4e403f19087afadcb762feebc0bbdee3148fe44dfe3dc548187a9082fa9df',2,432,'2021-11-30 18:37:50','','2021/11'),(2288,165,'Version','XmlNPPP.zip','211130190606_XmlNPPP.zip',4268677,'application/x-zip-compressed','87948546755ee5e4a5190c7112cd272820aef44586e223dbd63a4346715f3faf',1,1,'2021-11-30 19:06:06','','2021/11'),(2289,659,'Issue','PREPAOpenOpcUaCoreServer_Debug.exe_211130_172420.zip','211201095930_bd7ebd56aa4eeb5392b12e01dd8cae67.zip',63449099,'application/x-zip-compressed','f2140bf450ce962490af8e16d4a5cd48292a61a724684c4bebee1e7cd3f28395',0,489,'2021-12-01 09:59:30','','2021/12'),(2290,659,'Issue','PREPALogs.zip','211201100002_PREPALogs.zip',2071325,'application/x-zip-compressed','b555bce962043808700b2f043b1f9a3b4102a625d3ff7ebdfe0c5f3a75d55f78',0,489,'2021-12-01 10:00:02','','2021/12'),(2291,659,'Issue','PREPAOpenOpcUaCoreServer_Debug.exe_211130_170118.zip','211201100040_4c9d62c0d7fb71d82fc57211d5a71f75.zip',74651481,'application/x-zip-compressed','be661bd50ce83799864c3ba5957b629afd953e1f0e84f5d87d439fee5247e7ad',0,489,'2021-12-01 10:00:40','','2021/12'),(2292,659,'Issue','ROTORLogs.zip','211201100101_ROTORLogs.zip',561899,'application/x-zip-compressed','b06fc2687d49634bffd9071ecbe1de0821862746ba9629c5ce01b8f34fd02d20',0,489,'2021-12-01 10:01:01','','2021/12'),(2293,659,'Issue','ROTOROpenOpcUaCoreServer_Debug.exe_211129_192446.zip','211201100212_fa017443498e5b081c9e70a7e8309f18.zip',93924411,'application/x-zip-compressed','81c025a3b2e5e324c77016bc87eab81eae3ec1f8e39d38f732311e2575e1c20b',0,489,'2021-12-01 10:02:12','','2021/12'),(2294,659,'Issue','ROTOROpenOpcUaCoreServer_Debug.exe_211129_194237.zip','211201100322_0e4dd32a50b6fca8ade3e8e1784a2a98.zip',66902621,'application/x-zip-compressed','c51430523abeddec366f2423b6f100253363bd7cac27fa98212c811c5f27cd1e',0,489,'2021-12-01 10:03:22','','2021/12'),(2295,659,'Issue','Diagnostic PLC PREPASTACK.txt','211201100431_b04c47aa365e36fce591d07a7da28076.txt',715179,'text/plain','64c13d23f134d3ab71d50007ddd0990150e67fb25610b9fcb3d05712a7833385',0,489,'2021-12-01 10:04:31','','2021/12'),(2298,143,'Version','DemoMqttPublisher_Debug_Simulation_Linux.zip','211201152930_DemoMqttPublisher_Debug_Simulation_Linux.zip',7076321,'application/x-zip-compressed','f402f9fd3db0ca8b771e3270be69c7bfc27257855a20bab38b94882b38a02ec8',1,1,'2021-12-01 15:29:30','','2021/12'),(2299,242,'Version','Livraison DebugIPV4_x64_1-12-2021.zip','211201222621_21d306936ba477917e35be6eae30da67.zip',12797538,'application/x-zip-compressed','5084b9119143b19abd458fa7a4d1ae99c4d9a8cd4257052ec4ff430569059ca1',4,1,'2021-12-01 22:26:21','','2021/12'),(2300,197,'Version','FactoryLab.zip','211202135207_FactoryLab.zip',4216931,'application/x-zip-compressed','8fed0eda0577494315d193debe57001092ab0e639a39e4bccfc6c92f53a7648d',6,1,'2021-12-02 13:52:07','','2021/12'),(2302,242,'Version','OpenOpcUaCoreServer_Debug.exe_211202_143821.dmp','211202144017_OpenOpcUaCoreServer_Debug.exe_211202_143821.dmp',67194528,'application/vnd.tcpdump.pcap','ff7bfe58eae8ca6e8b4cfdc70226e061a2803bbc481f66d797904b82d9a7ae22',1,447,'2021-12-02 14:40:17','','2021/12'),(2303,242,'Version','CONF210MI.pcapng','211202175008_CONF210MI.pcapng',115292,NULL,'586e30989e76046fdc29ee918638046b2ef6f6a3d8c74c18c5592cdb5ea50653',1,447,'2021-12-02 17:50:08','Configuration avec 210 MI','2021/12'),(2304,242,'Version','CONF1575MI.pcapng','211202175009_CONF1575MI.pcapng',423292,NULL,'62a1779819fb2e5abe9372f2d7a0a025d2b40d3199694e78e81d0878631f251d',1,447,'2021-12-02 17:50:09','Configuration avec 1575 MI','2021/12'),(2305,240,'Version','Evaluation prerequis - Questionnaire OPC d_entrée.pdf','211202210826_4a5a176e4a9d31bad2d71dc43b6e6f11.pdf',204110,'application/pdf','5e8f28ac82dd9645ed3ee54bbf42413426fcacf3354f5abf4ab7ae793884d141',3,1,'2021-12-02 21:08:26','','2021/12'),(2306,240,'Version','Bilan Formation OPC 1Jour.pdf','211202211033_2f51c054f1956ea4969608a5b82b2300.pdf',255450,'application/pdf','857f297425aea1eaea680f36f02341014482b33670c6dc10cbcbfa2cad5d2c14',18,1,'2021-12-02 21:10:33','','2021/12'),(2309,242,'Version','VPILined.zip','211203101710_VPILined.zip',115431,'application/x-zip-compressed','3962a9d8cbe474d63061edea2c1e492819f7b77f04461b9a00a4a4f7722f87a6',2,432,'2021-12-03 10:17:10','','2021/12'),(2310,672,'Issue','clipboard-202112031206-jv0rq.png','211203120605_clipboard-202112031206-jv0rq.png',95815,'image/png','9694547fdfc9e30ac5929d1c216e355ddc5d1dfae5fbe0970a18e8a7b0093d13',0,424,'2021-12-03 12:06:05','','2021/12'),(2311,672,'Issue','clipboard-202112031236-offs0.png','211203123645_clipboard-202112031236-offs0.png',66377,'image/png','b448afc867330085d6fcc244215c14588d12869ae264433824c4309dc128eea3',0,424,'2021-12-03 12:36:45','','2021/12'),(2312,672,'Issue','clipboard-202112031248-trwym.png','211203124824_clipboard-202112031248-trwym.png',9540,'image/png','69f2cc489de225d3e155da07157d1d9bcf5532829f1ae95d2afe1d0f16ca8ca1',0,424,'2021-12-03 12:48:24','','2021/12'),(2314,666,'Issue','SIGFAULT8.JPG','211205110920_SIGFAULT8.JPG',411944,'image/jpeg','35e494734a7c67b4ffd403752edcd04c602382135888280c5db9eb48bdefe071',0,424,'2021-12-05 11:09:20','','2021/12'),(2315,666,'Issue','SIGFAULT9.JPG','211205110926_SIGFAULT9.JPG',90514,'image/jpeg','a952213080eda6a859061034e1dbe7978cbc39de167e90267d3f02c5a554f925',0,424,'2021-12-05 11:09:26','','2021/12'),(2316,666,'Issue','SIGFAULT10.JPG','211205112255_SIGFAULT10.JPG',254946,'image/jpeg','058aa019b04288cd2a61228595a48c03982c8532263b306636c8753ce8a6de6e',0,424,'2021-12-05 11:22:55','','2021/12'),(2317,666,'Issue','SIGFAULT11.JPG','211205112306_SIGFAULT11.JPG',54820,'image/jpeg','cbf2517246ed298d056860ebd86ff31c41386a56bfb537eaa6f5d89a2aa288cf',0,424,'2021-12-05 11:23:06','','2021/12'),(2322,673,'Issue','clipboard-202112071343-pxnrc.png','211207134342_clipboard-202112071343-pxnrc.png',178641,'image/png','5f778b1781d24145045a032b20171245bf58f5701e1054bc53a1f4cc7c6253ab',0,424,'2021-12-07 13:43:42','','2021/12'),(2323,673,'Issue','clipboard-202112071343-eweyx.png','211207134356_clipboard-202112071343-eweyx.png',29076,'image/png','73de23399c01ca9e668e56e221d2b2c5b85c4f2f9cf808efb4555cedcb2d1550',0,424,'2021-12-07 13:43:56','','2021/12'),(2324,242,'Version','VpiUaClientBinaries_0712.zip','211207153641_VpiUaClientBinaries_0712.zip',320097,'application/x-zip-compressed','7b4d915e898211c77ac49a695782287a545764c613dc96bf3e22c7bdd21fbbab',1,1,'2021-12-07 15:36:41','','2021/12'),(2325,242,'Version','Livraison Binaires IPV4-7-12-2021.zip','211207171328_98a0cb78e93bf617da45efd471720f02.zip',12363554,'application/x-zip-compressed','4b1c3d9b0a33d9ab11a92e6c54a67630bb7dde5fe948162fec43145a99d95cf6',3,1,'2021-12-07 17:13:28','','2021/12'),(2327,228,'Version','XiMulator_1.0.2.0_v1.0.3.1.zip','211208092618_XiMulator_1.0.2.0_v1.0.3.1.zip',1232448,'application/x-zip-compressed','0b77a6cd57907f4cf00a46dd20c9398a1c2c98eb7a6c7a428431115551f7a1c1',0,1,'2021-12-08 09:26:36','','2021/12'),(2328,242,'Version','Livraison Binaires IPV4-8-12-2021.zip','211208093132_c973ceca51b42baaf9893a24c53bc7af.zip',12263832,'application/x-zip-compressed','e6891e167e472ccdaeab197d7ee2712e3979d1014f1aeae24f8ab659c5ecb380',3,1,'2021-12-08 09:31:32','','2021/12'),(2329,163,'Version','OpenOpcUa_1_0_7_0_INETUM_8-12-2021.zip','211208100251_OpenOpcUa_1_0_7_0_INETUM_8-12-2021.zip',8736783,'application/x-zip-compressed','07977d8bad79a7f9ffae1ce47e253b8cfb03ecfc4049cbc1205528682c058e8a',1,1,'2021-12-08 10:02:51','','2021/12'),(2332,242,'Version','Inetum binaries 08 12.zip','211208115416_c3925081919b2224421651763d1d748d.zip',444789,'application/x-zip-compressed','b1645b457476af91e3c83b63489a2238aac568afffdbd8068db931dd0e31c7b6',0,432,'2021-12-08 11:54:16','','2021/12'),(2333,673,'Issue','Opc.Ua.NodeSet2.SK_Model_07-11-2021.xml','211208131644_Opc.Ua.NodeSet2.SK_Model_07-11-2021.xml',145571,'text/xml','42e657aea55990e0bcc5e502549b60471da23e354fed214026b26266fedd5dc9',0,424,'2021-12-08 13:16:44','','2021/12'),(2334,673,'Issue','Opc.Ua.NodeSet2.SK_Instance.xml','211208131644_Opc.Ua.NodeSet2.SK_Instance.xml',74996,'text/xml','72beb1360b7c7d8ca7c686118ddb9574d0511bcc8ba0873194e948295bc21a06',0,424,'2021-12-08 13:16:44','','2021/12'),(2335,673,'Issue','Opc.Ua.SubSystem.MqttPub.xml','211208131644_Opc.Ua.SubSystem.MqttPub.xml',21642,'text/xml','6be50067fbddf92f99e90e9a0eff04b14d0e6e789f38e021a0f958eb5745d921',0,424,'2021-12-08 13:16:44','','2021/12'),(2336,673,'Issue','Opc.Ua.SubSystem.Sk.xml','211208131644_Opc.Ua.SubSystem.Sk.xml',21560,'text/xml','6bb8910dc3e481e6cfe6b092d9efee6c597054727708aead19b2781deec6534f',0,424,'2021-12-08 13:16:44','','2021/12'),(2337,673,'Issue','ConfigOpenOpcUa.oouaprj','211208131826_ConfigOpenOpcUa.oouaprj',1695,NULL,'080992ee7b8f81a98d6e8c41da2a6d002c9bd72b9061cf789e89338cc9c32ed0',0,424,'2021-12-08 13:18:26','','2021/12'),(2338,673,'Issue','clipboard-202112081431-pwi3x.png','211208143134_clipboard-202112081431-pwi3x.png',27567,'image/png','7f97a804e0fe5f5212c800337d857600be87e9d1a25df0291235043deb950a7f',0,424,'2021-12-08 14:31:34','','2021/12'),(2339,673,'Issue','clipboard-202112081445-juozi.png','211208144536_clipboard-202112081445-juozi.png',13800,'image/png','e669d7200a2f0b6cbb50a95d32f3460ec781518c1e964fd0a7cf29c2548f1c75',0,424,'2021-12-08 14:45:36','','2021/12'),(2341,242,'Version','SynchroVpiValuesInit0912.zip','211209095445_SynchroVpiValuesInit0912.zip',116326,'application/x-zip-compressed','db219b2ecd87f24193c5f3b8134730b263f3948ed79ab6251d06747003f44d5b',1,432,'2021-12-09 09:54:45','','2021/12'),(2342,177,'Version','Emotor-LogicalModel-OPCUA_V2.18.eapx','211209151540_Emotor-LogicalModel-OPCUA_V2.18.eapx',6123520,NULL,'0ce9586cee843e999f342becb066218f8d226fde21e9d0148b466b44e06b3e73',1,447,'2021-12-09 15:15:40','','2021/12'),(2343,242,'Version','Livraison Binaires IPV4-10-12-2021.zip','211210074600_709d6bec8e3d51a2856e95810adf5ff6.zip',12568967,'application/x-zip-compressed','3c0e1808dd07676040f665af07f2a6b9fd43167d267d1e51655444edf638d3c6',4,1,'2021-12-10 07:46:00','','2021/12'),(2345,675,'Issue','USINAGE_COVER_MODULE1.zip','211213094649_USINAGE_COVER_MODULE1.zip',17593065,'application/x-zip-compressed','7c4fbfe2b3b2e63da9672d6b775269aa6b07aad9a73db23e5da7b6974c5f3be2',0,447,'2021-12-13 09:46:49','','2021/12'),(2346,242,'Version','109755133_SiOME_CODE_V23.zip','211213094809_109755133_SiOME_CODE_V23.zip',72710527,'application/x-zip-compressed','fa2de340d34943ff1f0ea759934ad01402c850c6a029e299ee56a0e2bc4151b4',1,447,'2021-12-13 09:48:09','','2021/12'),(2347,243,'Version','Bilan semaine 49-2021.docx','211213120230_f0449dfc8a4d1e52b239feaad534f8fa.docx',25004,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','f57bf24d3be7b5b70f1134d168b1028bec34aa2daea51d52ff44cec52884debf',3,1,'2021-12-13 12:02:30','','2021/12'),(2349,677,'Issue','clipboard-202112170706-wfpmi.png','211217070624_clipboard-202112170706-wfpmi.png',22282,'image/png','527b2fdf493b318a214330b0eceea42175c1ee868a495fbdb4b4fdd92bb624c2',0,1,'2021-12-17 07:06:24','','2021/12'),(2350,677,'Issue','clipboard-202112170707-gvhmp.png','211217070717_clipboard-202112170707-gvhmp.png',44184,'image/png','92499a26f7ec64e1af8586d0e2443e47287ce9cb65681954a436c42a75bc21e0',0,1,'2021-12-17 07:07:17','','2021/12'),(2351,677,'Issue','clipboard-202112170708-ophuo.png','211217070813_clipboard-202112170708-ophuo.png',36187,'image/png','be7313ef8d95083b4afeadae78a21042f4af6ddb1faed4685462c4e6139c9bfd',0,1,'2021-12-17 07:08:13','','2021/12'),(2352,244,'Version','OpenOpcUa_1_0_7_0_INETUM_8-12-2021.zip','211208100251_OpenOpcUa_1_0_7_0_INETUM_8-12-2021.zip',8736783,'application/x-zip-compressed','07977d8bad79a7f9ffae1ce47e253b8cfb03ecfc4049cbc1205528682c058e8a',1,1,'2021-12-17 14:39:11','','2021/12'),(2353,679,'Issue','2.zip','211220163318_2.zip',4997,'application/x-zip-compressed','b2d138a09aeb4f6f7e05515a6b5c88de183dd68f63f7381e07f3a11077c8906e',0,424,'2021-12-20 16:33:18','2.zip','2021/12'),(2354,679,'Issue','1.zip','211220163318_1.zip',4878,'application/x-zip-compressed','4226ae11da8adb8a4a66bf5407beaf76428f0e5b3ee6f578179daf81161a2621',0,424,'2021-12-20 16:33:18','1.zip','2021/12'),(2355,679,'Issue','clipboard-202112211159-qlhk1.png','211221115942_clipboard-202112211159-qlhk1.png',146496,'image/png','3a3dc998409a67aed00be35df99770b56b03537e04919f2d2375fa7278339d0f',0,1,'2021-12-21 11:59:42','','2021/12'),(2356,164,'Version','DemoS7_Simulator_Debug_x64.zip','211221174507_DemoS7_Simulator_Debug_x64.zip',4919035,'application/x-zip-compressed','23412516d9b0a8ee8e46f3182254b1174ec68a97cd2df0118692b00851ed8d56',2,1,'2021-12-21 17:45:07','','2021/12'),(2357,243,'Version','STATOR_211221.zip','211222175504_STATOR_211221.zip',17212329,'application/x-zip-compressed','2b4b302e1cea49e20c3a91ca65451fbe64701d726bf7ac6fb88ffd2837e7cb13',0,447,'2021-12-22 17:55:04','Config Stator avec VPI S7 + LOG temps de chargement','2021/12'),(2358,92,'Project','LogicalModel_Imerys-Fall2021-22_12_2021.eapx','220103133448_LogicalModel_Imerys-Fall2021-22_12_2021.eapx',3035136,NULL,'93d9e594446546f028aa192b7c00021711b7dfdfff55eba9cc41484c54ed62f4',0,1,'2022-01-03 13:34:48','','2022/01'),(2359,92,'Project','Imerys Model-3-1-2022.zip','220103150256_3c42f48c1a81f1e597579845fdb24cb5.zip',901781,'application/x-zip-compressed','b4d977fa3e7b89731cee0a9de906ac8d4c0abae2504ed42990008bd0918540d7',2,1,'2022-01-03 15:02:56','','2022/01'),(2360,92,'Project','LogicalModel_Imerys-Winter2022-03_01_2022.eapx','220103173614_LogicalModel_Imerys-Winter2022-03_01_2022.eapx',3035136,NULL,'95e225a761ed626e518eec54d14a3fdd4723a76d226d99677d1be12aa2ac6742',0,1,'2022-01-03 17:36:14','','2022/01'),(2361,165,'Version','Plant.zip','220103190015_Plant.zip',41299882,'application/x-zip-compressed','d3e87965b5a9cf9958a4526336d70066920aa3816bdb52009048f03710e30c45',2,1,'2022-01-03 19:00:15','','2022/01'),(2362,163,'Version','OpenOpcUa_1_0_7_0_INETUM_05-01-2022.zip','220105130810_OpenOpcUa_1_0_7_0_INETUM_05-01-2022.zip',8640128,'application/x-zip-compressed','7510c6234d242da6fbba411511d647920b5b084bc7aa860c31fcb7c13b44745b',6,1,'2022-01-05 13:08:10','','2022/01'),(2365,244,'Version','OpenOpcUa_1_0_7_0_INETUM_05-01-2022.zip','220105130810_OpenOpcUa_1_0_7_0_INETUM_05-01-2022.zip',8640128,'application/x-zip-compressed','7510c6234d242da6fbba411511d647920b5b084bc7aa860c31fcb7c13b44745b',0,1,'2022-01-05 14:07:22','','2022/01'),(2367,245,'Version','Demo03-01-2022_Release.zip','220105154011_Demo03-01-2022_Release.zip',2774809,'application/x-zip-compressed','7fb67efe926e6b793fb60d18629645b61c13705f992505626d6a7b9d8ffe25ca',2,1,'2022-01-05 15:40:11','','2022/01'),(2368,688,'Issue','clipboard-202201051628-ackvb.png','220105162856_clipboard-202201051628-ackvb.png',35042,'image/png','b45099daae8ad2792efd52883f4ce0e2dbb92b15be98f17946ff1e28ce9b66f4',0,432,'2022-01-05 16:28:56','','2022/01'),(2369,92,'Project','LogicalModel_Imerys-Winter2022-05_01_2022.eapx','220105181216_LogicalModel_Imerys-Winter2022-05_01_2022.eapx',3092480,NULL,'f4e552db8a15509a2f63dfc55b007da4d01b2691bb7933d0b5e4e00bc8cb718a',2,1,'2022-01-05 18:12:16','','2022/01'),(2370,248,'Version','Manuel de l_utilisateur OOUAConfigManager.pdf','210422142401_447e9b63ba59a1d7f5e38491dedb817f.pdf',1209106,'application/pdf','dd0799bb9a8e5d29aae495d75d5789f05702914479ded9ee48a06a6e885a6767',2,1,'2022-01-06 16:31:46','','2021/04'),(2372,248,'Version','PrésentationXiMulator.pdf','220106163353_c4c6967f5810e569a40c1904963f900a.pdf',1237815,'application/pdf','d66ff28dbb15d1483ec95f3e462cdcb43135be11c06ba497e07c19df9d345f5f',1,1,'2022-01-06 16:33:53','','2022/01'),(2373,248,'Version','Manuel de l_utilisateur - VpiS7 - 1.0.8.pdf','220106163436_fb7d49caabb0d426464fa2073b4607b0.pdf',467852,'application/pdf','562330561b5bef01892cd919be3a8982f56b056c9380ba00e623c099f8e275f0',1,1,'2022-01-06 16:34:36','','2022/01'),(2374,247,'Version','FactoryLab_CEA_Release.zip','220106165505_FactoryLab_CEA_Release.zip',3108056,'application/x-zip-compressed','a1e9f33d0e3c1980190b003d015b5681ef37ff8cbacf14cd3490d71f3251457b',1,1,'2022-01-06 16:55:05','','2022/01'),(2376,178,'Version','FactoryLab_CEA_Release.zip','220106165505_FactoryLab_CEA_Release.zip',3108056,'application/x-zip-compressed','a1e9f33d0e3c1980190b003d015b5681ef37ff8cbacf14cd3490d71f3251457b',0,1,'2022-01-07 13:53:17','','2022/01'),(2377,691,'Issue','STATOR_211221.zip','211222175504_STATOR_211221.zip',17212329,'application/x-zip-compressed','2b4b302e1cea49e20c3a91ca65451fbe64701d726bf7ac6fb88ffd2837e7cb13',0,447,'2022-01-07 20:41:41','','2021/12'),(2378,692,'Issue','clipboard-202201091433-f1hm7.png','220109143310_clipboard-202201091433-f1hm7.png',12141,'image/png','edf28fe07d40e7c60385a6d584c0dffba5f86b8f1988dc3cd6d7b5934dc28066',0,1,'2022-01-09 14:33:10','','2022/01'),(2379,242,'Version','XiMulator_1.0.2.1_v1.0.3.4.zip','220110020624_XiMulator_1.0.2.1_v1.0.3.4.zip',1234167,'application/x-zip-compressed','77c95ff86a70edba7eaff2b4d6ba87450f0f38eee1ce9f673a0159988662b4a9',2,1,'2022-01-10 02:06:24','','2022/01'),(2380,692,'Issue','clipboard-202201100915-4teu2.png','220110091502_clipboard-202201100915-4teu2.png',6238,'image/png','c9d353ec7011374405d8a4e56b99a88c1fd4ba72eab24dc3c23c92cfc71aa013',0,447,'2022-01-10 09:15:02','','2022/01'),(2381,692,'Issue','Emotor-LogicalModel-OPCUA_V2.19.eapx','220110091542_Emotor-LogicalModel-OPCUA_V2.19.eapx',6123520,NULL,'c4ff3b5789d7a4d84ad416dd8dd5b776c674ab664b0adbc6cc4d62f753b11d70',0,447,'2022-01-10 09:15:42','','2022/01'),(2382,693,'Issue','clipboard-202201101134-j5gza.png','220110113425_clipboard-202201101134-j5gza.png',19652,'image/png','e9a5190d0c1d4add2d8f6506df5b7b8eecd671c7ca7995a84468e6b559850bcd',0,447,'2022-01-10 11:34:25','','2022/01'),(2383,693,'Issue','clipboard-202201101134-25ibk.png','220110113441_clipboard-202201101134-25ibk.png',5457,'image/png','42ce3e65270b13ff9149b134811a5a82f2869307adfb9d77a547a1e141777ab3',0,447,'2022-01-10 11:34:41','','2022/01'),(2384,693,'Issue','clipboard-202201101137-qekuk.png','220110113726_clipboard-202201101137-qekuk.png',28990,'image/png','b6c8cbaa6730d4663760fea65909c0b3323fea79f1b9a8df167dd33ce3d2f214',0,447,'2022-01-10 11:37:26','','2022/01'),(2385,693,'Issue','clipboard-202201101138-l9dq9.png','220110113843_clipboard-202201101138-l9dq9.png',45267,'image/png','fd72b343340ef7e5047b8890e6b3076aa928e96fede6573bd22a1b4076ad622b',0,447,'2022-01-10 11:38:43','','2022/01'),(2386,693,'Issue','clipboard-202201101139-e35nn.png','220110113923_clipboard-202201101139-e35nn.png',35643,'image/png','9cb21dad23a92b7a4cec906e6899938262b2376ab4759b69adde8af37db26b71',0,447,'2022-01-10 11:39:23','','2022/01'),(2387,693,'Issue','clipboard-202201101142-uatv1.png','220110114245_clipboard-202201101142-uatv1.png',25599,'image/png','8f5c06191e172525e964561be3ff9f8948207ef97167c1b56d8e19661f070c2e',0,447,'2022-01-10 11:42:45','','2022/01'),(2389,164,'Version','ConfigTremery Michael Debug.zip','220110181504_607ec7e77d4fb526bd12f5bc2b656a09.zip',14508696,'application/x-zip-compressed','273a6179b2c6d4ee1ba3f6990f7edcde2a7bde14798a62470601c34cb0fc4d27',1,432,'2022-01-10 18:15:04','','2022/01'),(2391,163,'Version','VpiLine source.zip','220110185139_adbca2bbf068481b026f38881efd318e.zip',48059,'application/x-zip-compressed','339f68d867b40fad2f15b60406dc6daf1fe3036b8b577ca8629842c096581c9d',1,432,'2022-01-10 18:51:39','','2022/01'),(2392,695,'Issue','Craash-LM-Console-1.png','220111153531_Craash-LM-Console-1.png',46483,'image/png','85c69fe3384a834c7e4544e5d9fe93c5a69cb20f28a91fae989a0187a8d96630',0,433,'2022-01-11 15:35:31','Capture de la console, montrant le lock et unlock','2022/01'),(2393,695,'Issue','Crash-LM-PileAppels-1.png','220111153534_Crash-LM-PileAppels-1.png',325759,'image/png','e7c340e44e62e2c36daa81c822aeafb7d0f15dd3eb0d038f25209defb3c2ed2f',0,433,'2022-01-11 15:35:34','Pile des appels lors du crash','2022/01'),(2395,693,'Issue','Emotor-LogicalModel-OPCUA_V2.19.eapx','220112104001_Emotor-LogicalModel-OPCUA_V2.19.eapx',6123520,NULL,'8d565b019864be36c83696b3ae9ca9ff879f15ecda6ec42581774dccba408114',0,447,'2022-01-12 10:40:01','','2022/01'),(2396,92,'Project','LogicalModel_Imerys-Winter2022-12_01_2022.eapx','220112170357_LogicalModel_Imerys-Winter2022-12_01_2022.eapx',3092480,NULL,'5333750d4934bdae3912d15effb004d16b92b347823264849254fcf1caf7a49c',2,1,'2022-01-12 17:03:57','','2022/01'),(2399,695,'Issue','clipboard-202201121849-pbheg.png','220112184937_clipboard-202201121849-pbheg.png',321014,'image/png','fe8ed9ad7e3fcc2941b8e99e0d8124dc4b2e1a90092343919823f14f78f0f4b8',0,433,'2022-01-12 18:49:37','','2022/01'),(2400,695,'Issue','clipboard-202201121849-phejq.png','220112184946_clipboard-202201121849-phejq.png',66356,'image/png','ef7c108ec01be06126e0cb79da7c8561969a7532c1ec08513b2b247b9befb3b8',0,433,'2022-01-12 18:49:46','','2022/01'),(2401,695,'Issue','StructuresEmotorsd.dll','220112193312_StructuresEmotorsd.dll',524288,'application/x-msdownload','c3cb24976cc8a64163c54f3e0eee221d514f028f66e7b406051de633221fdf1a',0,433,'2022-01-12 19:33:12','','2022/01'),(2402,695,'Issue','VPILined.dll','220112193312_VPILined.dll',552960,'application/x-msdownload','e97fc71424ea06b6e0fc70d4331613cf6944bf728f1e7cdc208876eab3ea5a50',0,433,'2022-01-12 19:33:12','','2022/01'),(2404,240,'Version','OPC2410 - Quizz stagiaire.pdf','220113084827_ee71d9b11ef0a60b6f22240e975e28d7.pdf',223572,'application/pdf','5c528842941ddd57ecd3975596e1145c2c6b5290172bee4536dc3e7da0b0b598',12,1,'2022-01-13 08:48:27','','2022/01'),(2405,240,'Version','Presentation de la technologie OPC - Matin.pdf','220113085030_256adfb1527578f60d037a17d0b628c2.pdf',4251558,'application/pdf','bec6c897060e69272e3ff03329a1b3c3b5f080a924b2d4da6aae25a9048a6ca8',13,1,'2022-01-13 08:50:30','','2022/01'),(2406,240,'Version','Presentation de la technologie OPC-Après-midi.pdf','220113085044_150c808d8091eeaae22f6e37bcee1178.pdf',3669499,'application/pdf','446e8ba951bbf7b9c9f3bc72ca73d7e772008b5795fb66458eb93362bc9c4105',14,1,'2022-01-13 08:50:44','','2022/01'),(2407,695,'Issue','clipboard-202201131702-9mixy.png','220113170206_clipboard-202201131702-9mixy.png',340582,'image/png','b128ec753f810cffea4903839a0a152d03b5df8685e5f502bf3e7aad400cb162',0,433,'2022-01-13 17:02:06','','2022/01'),(2408,249,'Version','Brainstorming-13-01-2022.pptx','220113171513_Brainstorming-13-01-2022.pptx',45728,'application/vnd.openxmlformats-officedocument.presentationml.presentation','50df0847a6316d8f1134bd0935317c520d3b3a7a08662cc29ab8f777ab812c2f',1,1,'2022-01-13 17:15:13','','2022/01'),(2409,249,'Version','2640 - Plan - OpenOpcUa [4 jours].pdf','220113171621_0afe71abef5d2f699bfb07138cd2639a.pdf',254735,'application/pdf','57d66e47cd16eecb57303807001853895f6b563cecbd39f6a79872091576e695',4,1,'2022-01-13 17:16:21','','2022/01'),(2415,85,'Project','OPCUA_UMATI_with_Answers.pdf','220114153902_OPCUA_UMATI_with_Answers.pdf',116888,'application/pdf','eefc22f8cd5e6f2f6e5905a867066bdfd076678d6205c115ad55e0533cb8a0c8',0,1,'2022-01-14 15:39:02','','2022/01'),(2416,85,'Project','Présentation OPC UA Industrial Autmation.pdf','220114154346_b3640a255d74e788e865cb08e840ff79.pdf',648073,'application/pdf','bdd294bb2145825425748af40fdc84dfd7554da008e8fe5b559d26ac25521f70',2,1,'2022-01-14 15:43:46','','2022/01'),(2417,85,'Project','Présentation OPC UA for MTConnect.pdf','220114154408_04d38dfc9a0ec8089b47a7523df9c398.pdf',513829,'application/pdf','9f93eed5d448597f9e911f1b0ff981e08ea6dfe63682b9fb43ec868bdb8331d5',1,1,'2022-01-14 15:44:08','','2022/01'),(2418,85,'Project','Présentation OPC UA for Machinery Part 1- Basic Building Blocks.pdf','220114154424_96afc2bb4d948283161ee79c8b5395ae.pdf',474348,'application/pdf','3b9906d38f6fa4587eae324984ed1218c1288062f912aebb3bea812e734aa54a',1,1,'2022-01-14 15:44:24','','2022/01'),(2420,85,'Project','Présentation OPC UA for Machine Tools Part 1.pdf','220114154517_74be0a6dd794b8f8a926267bdac4c87a.pdf',893187,'application/pdf','671fe2d2d88e81ba780ec97aed1f5d18c5dfb701f34b40ae02c3359ba4a59ebf',1,1,'2022-01-14 15:45:17','','2022/01'),(2421,85,'Project','Présentation OPC UA for CNC Systems.pdf','220114154537_7b5a906f72fb73e843535808ef019e14.pdf',503416,'application/pdf','aab855edc222810b9396d89fe2f5a4cebb3b40390b28aac6174f9dbca5e790ed',1,1,'2022-01-14 15:45:37','','2022/01'),(2422,85,'Project','QR Final 04-01-2022.pdf','220114160429_52ddaf09a40073d99abe6e7a8bbf7a3e.pdf',171227,'application/pdf','06696e16ab2530d8182c84ad895434ae5a234cbafc9e640c90366d2ce2996011',1,1,'2022-01-14 16:04:29','','2022/01'),(2423,701,'Issue','Emotor-LogicalModel-OPCUA_V2.20.eapx','220117101605_Emotor-LogicalModel-OPCUA_V2.20.eapx',6123520,NULL,'a4c8caf59e7f76804683e7312d0eecd4eacd7ddd0fbcd66455409565731d1b77',0,447,'2022-01-17 10:16:05','','2022/01'),(2424,702,'Issue','Log_170122.zip','220117102910_Log_170122.zip',15165157,'application/x-zip-compressed','a099f610505bacdc243ea04acd60736576025028072ec5d3c3941861cddb0700',0,447,'2022-01-17 10:29:10','','2022/01'),(2425,695,'Issue','22-01-17-BinairesLM.zip','220117183700_22-01-17-BinairesLM.zip',1647456,'application/x-zip-compressed','284b1a731cf3dae57622c9144a87dd53865da23f04a04b128f64a319da6db841',0,433,'2022-01-17 18:37:00','','2022/01'),(2426,703,'Issue','LogicalModel_Imerys-Winter2022-17_01_2022_SG.eapx','220118090458_LogicalModel_Imerys-Winter2022-17_01_2022_SG.eapx',3158016,NULL,'e0f4b01f5d7d4e7215aed1d062d34ee80f7875b6d41e0bab66f41c69ce73dd98',0,510,'2022-01-18 09:04:58','','2022/01'),(2427,692,'Issue','clipboard-202201182248-bi0es.png','220118224900_clipboard-202201182248-bi0es.png',11667,'image/png','a026bdf503bbe7d5b56280156581fd04d49db888d7ac2f83fc9d4927d98601c2',0,1,'2022-01-18 22:49:00','','2022/01'),(2428,242,'Version','XiMulator_1.0.2.1_v1.0.3.5.zip','220118225205_XiMulator_1.0.2.1_v1.0.3.5.zip',1235045,'application/x-zip-compressed','5402b5fb6466fbf46932b84265978f5eb528a1c2c80ee0e756d7f4cc9253aaa9',2,1,'2022-01-18 22:52:05','','2022/01'),(2429,246,'Version','FactoryLab_CEA_Release_19-01-2022_Type.zip','220119144953_FactoryLab_CEA_Release_19-01-2022_Type.zip',3110277,'application/x-zip-compressed','4c4554bd80fe404783cdab7bedb166c5dab98beb299dccfc579a553bfcf13793',2,1,'2022-01-19 14:49:53','','2022/01'),(2430,247,'Version','XiMulator_1.0.2.1_v1.0.3.5.zip','220118225205_XiMulator_1.0.2.1_v1.0.3.5.zip',1235045,'application/x-zip-compressed','5402b5fb6466fbf46932b84265978f5eb528a1c2c80ee0e756d7f4cc9253aaa9',0,1,'2022-01-19 14:50:23','','2022/01'),(2431,247,'Version','SIOME2.3.zip','220119145132_SIOME2.3.zip',72716313,'application/x-zip-compressed','8a6a4d9c2f0dc3e4da15bb406e071a78aaef203f40ac9a8b9249c93c9a050570',1,1,'2022-01-19 14:51:32','','2022/01'),(2432,692,'Issue','Emotor-LogicalModel-OPCUA_V2.21.eapx','220120103142_Emotor-LogicalModel-OPCUA_V2.21.eapx',6123520,NULL,'ddbe7927ee3a7d4b3b6c8779edaf0c05aa81071102e37e804fa5e013f86bce9f',0,447,'2022-01-20 10:31:42','','2022/01'),(2433,140,'Version','XiMulator_1.0.2.1_v1.0.3.5.zip','220118225205_XiMulator_1.0.2.1_v1.0.3.5.zip',1235045,'application/x-zip-compressed','5402b5fb6466fbf46932b84265978f5eb528a1c2c80ee0e756d7f4cc9253aaa9',0,1,'2022-01-20 15:04:48','','2022/01'),(2434,704,'Issue','PHA83350.02.pdf','220121155022_PHA83350.02.pdf',7041430,'application/pdf','e3f72dbce88f89b9be91b8b0dc95def6c9aec5bca77c653a0bcf820483faf7b0',0,532,'2022-01-21 15:50:22','','2022/01'),(2435,693,'Issue','clipboard-202201211829-ufczw.png','220121182957_clipboard-202201211829-ufczw.png',252478,'image/png','1ee33940804edb121b3b5afc96e0c3fedddb22205cc17c9d26b5b475facfd4c8',0,447,'2022-01-21 18:29:57','','2022/01'),(2436,695,'Issue','PackageDebugInetumE2E_21-Jan-22.zip','220121183831_PackageDebugInetumE2E_21-Jan-22.zip',41005250,'application/x-zip-compressed','b83318a487876a509d11e63aa6c0e0711e6971c2297e355137788cfefaf52cba',0,436,'2022-01-21 18:38:31','','2022/01'),(2437,143,'Version','DemoMqttPublisher_Debug_SK_Linux.zip','220123100948_DemoMqttPublisher_Debug_SK_Linux.zip',7427549,'application/x-zip-compressed','88d0c10b0ce706e1d04f617338935786eb976628cdc1fe5e0b1f545f954c89d5',3,1,'2022-01-23 10:09:48','','2022/01'),(2439,253,'Version','Generation-24-01-2022.zip','220124145947_Generation-24-01-2022.zip',878540,'application/x-zip-compressed','5bc42af40b20b92b3fbfcc5bd34e585d977c3778c7a7784c66254d2290dd7832',0,1,'2022-01-24 14:59:47','','2022/01'),(2440,212,'News','clipboard-202201242339-1tdoy.png','220124233925_clipboard-202201242339-1tdoy.png',99000,'image/png','a392badbc7e41e91fe18e4bd64916d84cb3528cde2aa9c150f60cf277365f4b5',0,1,'2022-01-24 23:39:25','','2022/01'),(2441,248,'Version','Manuel de l_utilisateur - VpiMdbMaster 1.0.3.9.pdf','220124234246_07f0970d73121a76299681d05e43982b.pdf',495641,'application/pdf','513e500fe7b8953fd7acc4c896e2f7215befbf169f9904a70bf2763a4e6919ed',3,1,'2022-01-24 23:42:46','','2022/01'),(2442,705,'Issue','oouaApp.zip','220125101600_oouaApp.zip',6057401,'application/x-zip-compressed','8e2009163b089e6e3398c1def8a6f635cd7197996be0857d26f3e569913f4ae4',0,424,'2022-01-25 10:16:00','','2022/01'),(2443,NULL,NULL,'LogicalModel_Imerys-V1.0.1.eapx','220125111947_LogicalModel_Imerys-V1.0.1.eapx',3092480,NULL,'a11db85a3b0a9fdb61591edc357a7a92329f1147697838627f89cc6f506cde32',0,1,'2022-01-25 11:19:47',NULL,'2022/01'),(2444,705,'Issue','DemoMqttPublisher_Debug_SK.zip','220125152619_DemoMqttPublisher_Debug_SK.zip',7294251,'application/x-zip-compressed','18f0fb3a4192d276770f316689e5a9a6a1041134d2da66775383b384701962c5',0,1,'2022-01-25 15:26:19','','2022/01'),(2445,707,'Issue','SiOME-ERROR-Screenshot-1.JPG','220125184548_SiOME-ERROR-Screenshot-1.JPG',91679,'image/jpeg','c286e2eeb2e7fbc00584439b539b6dc91e2dc58575a86a988926eead6a9bae3c',0,436,'2022-01-25 18:45:48','','2022/01'),(2446,707,'Issue','SiOME-ERROR-Screenshot-2.JPG','220125184553_SiOME-ERROR-Screenshot-2.JPG',166509,'image/jpeg','fd88e331f1767a528fcf4878948cce0bd55a96f80c5691d7a2beda916031f9e3',0,436,'2022-01-25 18:45:53','','2022/01'),(2447,705,'Issue','clipboard-202201251945-jsuhx.png','220125194553_clipboard-202201251945-jsuhx.png',6876,'image/png','0c02977b219971ca6a247a2fb6a31aab36663c39586f31352d1cd4f7a472a42c',0,424,'2022-01-25 19:45:52','','2022/01'),(2448,705,'Issue','clipboard-202201251947-1a9tv.png','220125194717_clipboard-202201251947-1a9tv.png',22019,'image/png','f5388c8449e4342d6f8a3c2a6ff8e42ec22b6fe1aebd9f898efa63f340a44e2f',0,424,'2022-01-25 19:47:17','','2022/01'),(2449,705,'Issue','clipboard-202201261026-phlqx.png','220126102630_clipboard-202201261026-phlqx.png',17379,'image/png','8263d33a43bcd9cb14643afe06d4a44c821b7d81dcfac974489cf4719d2ad77d',0,424,'2022-01-26 10:26:30','','2022/01'),(2450,95,'Project','2022-01-19-Variables Cellule OPCUA.xlsx','220126142359_9e39b32262b1ca2c4b798cb91432f99b.xlsx',1356123,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','a3e30da1772eef032d7eeca07e6a587210c014f602076db9d355a0431beaa6a2',5,500,'2022-01-26 14:23:59','','2022/01'),(2451,705,'Issue','clipboard-202201261747-so0sa.png','220126174724_clipboard-202201261747-so0sa.png',53895,'image/png','ec9b90a1ec2576e2eeee5a15cc5def351fb496a2b9f475ab5efc0fb3001f1d61',0,424,'2022-01-26 17:47:24','','2022/01'),(2452,708,'Issue','clipboard-202201262058-pfdwz.png','220126205847_clipboard-202201262058-pfdwz.png',79837,'image/png','a252c7949b2932c8f76b48387c7cff821727dca6dc46b5ba659c33617f0c6762',0,1,'2022-01-26 20:58:47','','2022/01'),(2453,708,'Issue','clipboard-202201262101-bzflz.png','220126210152_clipboard-202201262101-bzflz.png',83691,'image/png','3dab2b3c00b0ae4c9e90dd94524dd01cd4cfb6f50bf982279537039eddaa2a84',0,1,'2022-01-26 21:01:52','','2022/01'),(2454,708,'Issue','clipboard-202201262103-r4a6z.png','220126210340_clipboard-202201262103-r4a6z.png',56644,'image/png','4267081742243937946ab36e5c7583922ae577d50e4f2ac4cf8b08cbc553d758',0,1,'2022-01-26 21:03:40','','2022/01'),(2455,708,'Issue','clipboard-202201271714-okagx.png','220127171410_clipboard-202201271714-okagx.png',156641,'image/png','f89ea5674648371238c47f26194ca9d629595fc251f0dd537446cb32694273a9',0,447,'2022-01-27 17:14:10','','2022/01'),(2456,708,'Issue','Emotor-LogicalModel-OPCUA_V2.22.eapx','220127171450_Emotor-LogicalModel-OPCUA_V2.22.eapx',6123520,NULL,'7497e215a3647c656666e1ba7ee80880a9d0a8c76f0ac843d8fcbf4fb7e8b2ef',0,447,'2022-01-27 17:14:50','','2022/01'),(2457,NULL,NULL,'clipboard-202201271733-hatqx.png','220127173328_clipboard-202201271733-hatqx.png',19998,'image/png','e659f8b825640a0b0387ec53b7e3e9b47871daf473fb4b3a2076f9eb4eb1b85f',0,1,'2022-01-27 17:33:28',NULL,'2022/01'),(2458,NULL,NULL,'clipboard-202201271736-pml8n.png','220127173328_clipboard-202201271733-hatqx.png',19998,'image/png','e659f8b825640a0b0387ec53b7e3e9b47871daf473fb4b3a2076f9eb4eb1b85f',0,1,'2022-01-27 17:37:18',NULL,'2022/01'),(2459,695,'Issue','InetumDebugE2E2701.zip','220127191825_InetumDebugE2E2701.zip',11803502,'application/x-zip-compressed','dcb12cb21a3b801b77b64925fdaf324053f91b54da896caebe87f0fae01b3ba8',0,432,'2022-01-27 19:18:25','','2022/01'),(2460,708,'Issue','clipboard-202201281018-aywmr.png','220128101910_clipboard-202201281018-aywmr.png',136433,'image/png','7d0a22ca422c39885ae1a721307f9772a1a7667d3f6696b11c2b20785c3da989',0,1,'2022-01-28 10:19:10','','2022/01'),(2462,242,'Version','XiMulator_1.0.2.2_v1.0.3.6.zip','220128102859_XiMulator_1.0.2.2_v1.0.3.6.zip',1236695,'application/x-zip-compressed','8392f7961663ecc48e52a3a5cfffc1197686085411bf29a8e21f7299abd58bdd',2,1,'2022-01-28 10:28:59','','2022/01'),(2463,213,'News','clipboard-202201281030-w14fb.png','220128103032_clipboard-202201281030-w14fb.png',33574,'image/png','f11c47c1c93d0f800af01d8ac57b4847425753696851631f83a98b980666b50b',0,1,'2022-01-28 10:30:32','','2022/01'),(2464,705,'Issue','clipboard-202201281528-wba0d.png','220128152829_clipboard-202201281528-wba0d.png',53166,'image/png','837f13d3438a863a5f2375818d0ff520f93aa508ff80e58565bd67558029c59b',0,424,'2022-01-28 15:28:29','','2022/01'),(2465,705,'Issue','clipboard-202201281529-xkamv.png','220128152910_clipboard-202201281529-xkamv.png',15332,'image/png','b2b84c49bf9b7db8d499da34f7cee1aada899b842e93c4b81660c938692b5688',0,424,'2022-01-28 15:29:10','','2022/01'),(2466,705,'Issue','clipboard-202201281602-m5dkx.png','220128160233_clipboard-202201281602-m5dkx.png',97286,'image/png','7a33a734a8b42de321dd47c970b246e58ce8a9404d0fec90a9f28b01d8c41656',0,1,'2022-01-28 16:02:33','','2022/01'),(2467,695,'Issue','InetumDebugE2E2801.zip','220128183025_InetumDebugE2E2801.zip',14165478,'application/x-zip-compressed','78092eb3cafd4e4928b3a55e6cdd5e0b4b5b4373dc621c608222c85e64dbed3e',0,432,'2022-01-28 18:30:25','','2022/01'),(2468,695,'Issue','clipboard-202201281831-wdezr.png','220128183104_clipboard-202201281831-wdezr.png',101506,'image/png','a5c32c48bf5c80109e5c95a68c9e35d6782a0b98abd760b138280f31a7e405e4',0,432,'2022-01-28 18:31:04','','2022/01'),(2469,695,'Issue','clipboard-202201281834-auuqn.png','220128183407_clipboard-202201281834-auuqn.png',114689,'image/png','b54c0b029b546737f941b9f29f07fe050bb32853f9d4df3e5b4a2323ebc71b6c',0,432,'2022-01-28 18:34:07','','2022/01'),(2470,695,'Issue','clipboard-202201281834-hx5yk.png','220128183416_clipboard-202201281834-hx5yk.png',92703,'image/png','2fadebad2b3425c576a72be583e9732d24d046a591a9fa730aff6507d21a345f',0,432,'2022-01-28 18:34:16','','2022/01'),(2471,705,'Issue','clipboard-202201282150-5wylu.png','220128215027_clipboard-202201282150-5wylu.png',425683,'image/png','6b614d32504600db765be4e5d6ac330b9f43328b4405ac0a636acf8d34cb730f',0,1,'2022-01-28 21:50:27','','2022/01'),(2472,705,'Issue','VpiUaPub.cpp','220128215045_VpiUaPub.cpp',115928,'text/plain','fac85c8a21cf1c0b6c32a4291863faeb9a39f34f9d01b1bc14fcf45459a48d74',0,1,'2022-01-28 21:50:45','','2022/01'),(2473,695,'Issue','Snapshot #1.dsnapshot','220129003536_b3b35e9c6bcec38c44a785f3ea1f5a58.dsnapshot',3796992,NULL,'4c3483e02bafd5ab58cb885d5870dd7fae66c9b54553030066c1a90e596ff89a',0,1,'2022-01-29 00:35:36','','2022/01'),(2475,247,'Version','NodeSetFiles_2022_01_31.zip','220131091734_NodeSetFiles_2022_01_31.zip',50477,'application/x-zip-compressed','f341359aa18bc857bbae6ed41d84a2026d074e5f23e79ccf8dd5a369b5d0e9de',1,496,'2022-01-31 09:17:34','','2022/01'),(2476,NULL,NULL,'2022-01-26-Variables Cellule OPCUA.xlsx','220131092035_9c87aa49e7e7d9a848b3af0d353068b2.xlsx',1356380,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','e9c75af2f4dd35ee740684e2044e120e57e8d002bbef5661c034b6b63cd20691',0,496,'2022-01-31 09:20:35',NULL,'2022/01'),(2477,246,'Version','2022-01-26-Variables Cellule OPCUA.xlsx','220131092035_9c87aa49e7e7d9a848b3af0d353068b2.xlsx',1356380,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','e9c75af2f4dd35ee740684e2044e120e57e8d002bbef5661c034b6b63cd20691',2,496,'2022-01-31 09:22:36','','2022/01'),(2478,229,'Version','QR Final 04-01-2022.pdf','220114160429_52ddaf09a40073d99abe6e7a8bbf7a3e.pdf',171227,'application/pdf','06696e16ab2530d8182c84ad895434ae5a234cbafc9e640c90366d2ce2996011',2,1,'2022-01-31 11:42:47','','2022/01'),(2479,161,'Version','Manuel de l_utilisateur - VpiS7 - 1.0.8.pdf','220106163436_fb7d49caabb0d426464fa2073b4607b0.pdf',467852,'application/pdf','562330561b5bef01892cd919be3a8982f56b056c9380ba00e623c099f8e275f0',1,1,'2022-01-31 14:51:58','','2022/01'),(2480,705,'Issue','clipboard-202201311524-0waud.png','220131152452_clipboard-202201311524-0waud.png',6976,'image/png','d4169c1b9b1bb04f85a04acc939232c121d18a5bf2e0024dfaabb876032c933b',0,424,'2022-01-31 15:24:52','','2022/01'),(2481,711,'Issue','Brainstorm.pptx','220131154124_Brainstorm.pptx',40524,'application/vnd.openxmlformats-officedocument.presentationml.presentation','3d9db8f35824f4e08b0d046be0c4fa64a650b8d903a61e4230f06eed8c299f4f',0,1,'2022-01-31 15:41:24','','2022/01'),(2482,715,'Issue','clipboard-202201311615-ffkpm.png','220131161504_clipboard-202201311615-ffkpm.png',7482,'image/png','5a82049dcdcb0b53bade08c39144917bf99d2429fa53853abb89b3933cc7bc35',0,424,'2022-01-31 16:15:04','','2022/01'),(2484,715,'Issue','clipboard-202201311634-cminb.png','220131163454_clipboard-202201311634-cminb.png',10014,'image/png','72d3fc96e69e8ce8624ec0ff2a32413ef42bb7006797fe5ad8c0e0449d7684c4',0,424,'2022-01-31 16:34:54','','2022/01'),(2485,248,'Version','2022-01-26-Variables Cellule OPCUA-MC.xlsx','220201114855_bdc08fc148b5029bc1eec3f3d491fef5.xlsx',1359155,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','e6b721dab1e1db9d94dc66c4022b4341b6ecb3f9034eebee85795b6508064eaa',1,1,'2022-02-01 11:48:55','','2022/02'),(2486,248,'Version','2022-02-01-Variables Cellule OPCUA_nodesetID_MGO.xlsx','220201132641_98c40de349e2731cd5fa68eedc114833.xlsx',1359516,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','7ff2737bf337c44d65770e8de86910ffa66ce501215168b70b06095cea9aaab7',1,496,'2022-02-01 13:26:41','','2022/02'),(2487,717,'Issue','clipboard-202202011720-48bvm.png','220201172010_clipboard-202202011720-48bvm.png',56411,'image/png','41d3d2802f1a2583fbbde43b06b79c826061e6beb7288e127c615032f21ce8bc',0,1,'2022-02-01 17:20:10','','2022/02'),(2488,695,'Issue','clipboard-202202011753-d25cl.png','220201175335_clipboard-202202011753-d25cl.png',45956,'image/png','8ecb4be1d7a6d8ea5d89c84911cf70b3b35890d2d240226d229ab7123b09ea5b',0,432,'2022-02-01 17:53:35','','2022/02'),(2489,695,'Issue','OpenOpcUaCoreServer_COVER_Debug.exe_220201_161122.dmp','220201175822_d8c8c01626749214aff952ce5abc542f.dmp',52974807,'application/vnd.tcpdump.pcap','e16d663d7cc043875e5a17ba985df3d2c757b6478320a74ab95f6e2a2f0ef3b8',0,432,'2022-02-01 17:58:22','','2022/02'),(2490,695,'Issue','OpenOpcUaCoreServer_COVER_Debug.exe_220201_180943.dmp','220201182738_2c5cab6ee3f68d9148d3c772660dea63.dmp',49967199,'application/vnd.tcpdump.pcap','980b899609c5f0c46ac3520bcc5314789f3d7875bbfb3f1245e38a7dbaf9006d',0,432,'2022-02-01 18:27:38','','2022/02'),(2491,695,'Issue','OpenOpcUaCoreServer_COVER_Debug.exe_220201_181435.dmp','220201182948_650b84f461c144e24415ee5c33c92c13.dmp',50090111,'application/vnd.tcpdump.pcap','ef8584011ee1450b6395a11d84239d8ac035d55d834f63888ccca32305f08e2c',0,432,'2022-02-01 18:29:48','','2022/02'),(2492,242,'Version','XiMulator_1.0.2.2_v1.0.3.7.zip','220201211252_XiMulator_1.0.2.2_v1.0.3.7.zip',1236884,'application/x-zip-compressed','458c917921b1bb84ef6bce9ea1a5415f9f3ab8208b8b9d8572e2f12ec22babd9',1,1,'2022-02-01 21:12:52','','2022/02'),(2494,87,'Project','Présentation OPC UA Industrial Automation.pdf','220114154346_b3640a255d74e788e865cb08e840ff79.pdf',648073,'application/pdf','bdd294bb2145825425748af40fdc84dfd7554da008e8fe5b559d26ac25521f70',0,1,'2022-02-02 09:28:49','','2022/01'),(2495,87,'Project','Présentation OPC UA for MTConnect.pdf','220114154408_04d38dfc9a0ec8089b47a7523df9c398.pdf',513829,'application/pdf','9f93eed5d448597f9e911f1b0ff981e08ea6dfe63682b9fb43ec868bdb8331d5',0,1,'2022-02-02 09:29:05','','2022/01'),(2496,87,'Project','Présentation OPC UA for Machinery Part 1- Basic Building Blocks.pdf','220114154424_96afc2bb4d948283161ee79c8b5395ae.pdf',474348,'application/pdf','3b9906d38f6fa4587eae324984ed1218c1288062f912aebb3bea812e734aa54a',0,1,'2022-02-02 09:29:36','','2022/01'),(2497,87,'Project','Présentation OPC UA for Machine Tools Part 1.pdf','220114154517_74be0a6dd794b8f8a926267bdac4c87a.pdf',893187,'application/pdf','671fe2d2d88e81ba780ec97aed1f5d18c5dfb701f34b40ae02c3359ba4a59ebf',0,1,'2022-02-02 09:30:00','','2022/01'),(2498,87,'Project','Présentation OPC UA for CNC Systems.pdf','220114154537_7b5a906f72fb73e843535808ef019e14.pdf',503416,'application/pdf','aab855edc222810b9396d89fe2f5a4cebb3b40390b28aac6174f9dbca5e790ed',0,1,'2022-02-02 09:30:30','','2022/01'),(2499,87,'Project','QR Final 04-01-2022.pdf','220114160429_52ddaf09a40073d99abe6e7a8bbf7a3e.pdf',171227,'application/pdf','06696e16ab2530d8182c84ad895434ae5a234cbafc9e640c90366d2ce2996011',1,1,'2022-02-02 09:30:40','','2022/01'),(2500,715,'Issue','clipboard-202202021044-whjtk.png','220202104402_clipboard-202202021044-whjtk.png',354805,'image/png','decba5609ae682c6ad923d6b05513c9955119c3c72ddb46d0496ca81f9b831d2',0,1,'2022-02-02 10:44:02','','2022/02'),(2501,253,'Version','LogicalModel_Imerys-V1.0.2.eapx','220202120308_LogicalModel_Imerys-V1.0.2.eapx',3092480,NULL,'414a1aa8e2932802fc86dbbbc3293d2b412a2819667f1a96e44c111cdde066e8',3,1,'2022-02-02 12:03:08','','2022/02'),(2502,255,'Version','BrainStorming-2-2-2022.pptx','220202144545_BrainStorming-2-2-2022.pptx',46202,'application/vnd.openxmlformats-officedocument.presentationml.presentation','1608bc8cc60afeeafe16fabfdc8f816622de9eeffe134e5fc6fa44b3291796d1',2,1,'2022-02-02 14:45:45','','2022/02'),(2503,257,'Version','OPCUAShapes.vss','210630165947_OPCUAShapes.vss',47616,'application/vnd.visio','2d099061edde33d82f851baa4ea6e334a56204883eeca1670876912ea0eb0676',1,1,'2022-02-02 15:33:28','','2021/06'),(2504,258,'Version','Simulation_2021_Release_x64 (2).zip','210222103334_Simulation_2021_Release_x64.zip',2943802,'application/x-zip-compressed','80f9441afd4fe143f631bc1154dce9e4e98bf3ff4d87a799457e40827f6c934c',4,1,'2022-02-02 15:33:51','','2021/02'),(2505,258,'Version','UAExpert_1.5.12_Portable (1).zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',5,1,'2022-02-02 15:34:04','','2021/02'),(2506,695,'Issue','DebugInetum0202.zip','220202154510_DebugInetum0202.zip',12432507,'application/x-zip-compressed','00fa9cb71c6a9865f79a4ca3c26e958f7ee6b78bdcac468438c4cc4be046269e',0,432,'2022-02-02 15:45:10','','2022/02'),(2508,719,'Issue','Model-Generation-SharedClasses-Warnings.JPG','220202162657_Model-Generation-SharedClasses-Warnings.JPG',87647,'image/jpeg','d918882af46a92314201d5dd43a1d5dd9858a18fcd8c2fcb7d60ffec588e2315',0,436,'2022-02-02 16:26:57','','2022/02'),(2509,719,'Issue','Model-Generation-InputOutput-Warnings.JPG','220202162732_Model-Generation-InputOutput-Warnings.JPG',176887,'image/jpeg','8fa58c4a8b9f1000eb8c0582d6daac03c95303b33b7371c27aee0bf13c9722ff',0,436,'2022-02-02 16:27:32','','2022/02'),(2510,719,'Issue','Model-Generation-InputOutput-Errors.JPG','220202162735_Model-Generation-InputOutput-Errors.JPG',81952,'image/jpeg','71612dcc0d2d1d01a8778e6469ef6d037513499944f64aae791fa372ae7128ae',0,436,'2022-02-02 16:27:35','','2022/02'),(2511,255,'Version','Manufacturing overview.pdf','220202184016_a63edacf3ab09333be1b23658f8e5e58.pdf',1446485,'application/pdf','1bbaf4b4e25d4f9c929e4908afb18b05f033b20d1077027603f5d166055fbf58',5,530,'2022-02-02 18:40:16','Battery Manufacturing','2022/02'),(2513,255,'Version','VERKOR_PFD_R7_090221.pdf','220202190640_VERKOR_PFD_R7_090221.pdf',350982,'application/pdf','a4086dc536705b9930493501f1a7ab435ff2d1217dd1674b4b7d6be3894c9160',3,530,'2022-02-02 19:06:40','Mixing Process','2022/02'),(2515,255,'Version','(Verkor) coating Process(25May2021).pdf','220202192230_fd805141b5d0d51a9b89e46a26f95aef.pdf',2904685,'application/pdf','a68ff13d8f8403047d06d93c0344a2483798bf5b6820dd7dae25c0ab0568f4ef',9,530,'2022-02-02 19:22:30','Coating Process','2022/02'),(2516,255,'Version','20211001_ Calendering Machine.pdf','220202192626_cfd33be46ec4d5ad56e62faf669595e5.pdf',1842485,'application/pdf','bc13de53dbce45f97af5f767ca2254d59f240c40a481552748ebb36ce11a3074',3,530,'2022-02-02 19:26:26','Calendering Machine','2022/02'),(2517,255,'Version','Electrode Line Slitter_CLS.pdf','220202192819_6b4da2ad68b1c3cdf13a0091d7c603b0.pdf',1307535,'application/pdf','41ab65b1517b21f8c722ffe22b35f5da3f1ba17a19137196ab20f17c915034ea',1,530,'2022-02-02 19:28:19','Electrode Slitting','2022/02'),(2519,695,'Issue','clipboard-202202031150-ninaw.png','220203115018_clipboard-202202031150-ninaw.png',367756,'image/png','7fb9ebd4e0bef113165cff3dfcb486f8ba14b5aa30bf9c4e145fd8ac6a41471a',0,433,'2022-02-03 11:50:18','pile crash 1 (crash à la 2eme remontée)','2022/02'),(2520,695,'Issue','clipboard-202202031150-tnahj.png','220203115054_clipboard-202202031150-tnahj.png',437634,'image/png','a9199d22819588f4cbdaa463d0f628da1cc0bfca1e067dbcc1d28646b1556b68',0,433,'2022-02-03 11:50:54','pile crash 3 (crash à la 4eme remontée)','2022/02'),(2521,165,'Version','Opc.Ua.NodeSet2.OOUA.zip','210604162613_Opc.Ua.NodeSet2.OOUA.zip',172182,'application/x-zip-compressed','3cac7e175012bdf3b62c9bfd8c95d9536df595af01f51217ebb5dbe30ba9f726',2,1,'2022-02-03 18:18:21','','2021/06'),(2522,721,'Issue','ServeurOPC.zip','220203191322_ServeurOPC.zip',6329026,'application/x-zip-compressed','12b0a4c0ab9d13a43ca581a530332b2a57635ed6ab65309739915eb1603c93a8',0,328,'2022-02-03 19:13:22','','2022/02'),(2523,693,'Issue','clipboard-202202031916-lrvwi.png','220203191658_clipboard-202202031916-lrvwi.png',143396,'image/png','69984a1ade9960f686144d4124ddc7172571521d55524c2fb7e6fecb2238eaaa',0,447,'2022-02-03 19:16:58','','2022/02'),(2524,693,'Issue','clipboard-202202031929-ugvxz.png','220203192937_clipboard-202202031929-ugvxz.png',292812,'image/png','501a5a0beb911f18f1d2e8e9f8b66c531e89876cf5e2ea09b1b657c2cd5bff02',0,447,'2022-02-03 19:29:37','','2022/02'),(2525,693,'Issue','clipboard-202202031931-r7kiw.png','220203193130_clipboard-202202031931-r7kiw.png',494907,'image/png','6168dea004b203aee88ca544a28fc0e82cd4dfcf66516063675d4fa6fdd3d946',0,447,'2022-02-03 19:31:30','','2022/02'),(2526,695,'Issue','TesteurLua-2022-02-03.zip','220203214036_TesteurLua-2022-02-03.zip',423985,'application/x-zip-compressed','b6d9c73db982160a690ebb4035c16b5681e2aa3ff2404c217feb1b693f30e539',0,433,'2022-02-03 21:40:36','package testeur automatique lua','2022/02'),(2527,705,'Issue','clipboard-202202040909-dpqph.png','220204090910_clipboard-202202040909-dpqph.png',130252,'image/png','f0662b5ab945ac27be85afd6c1fa5dc123cd81172f4b2ee105177747f34eb2e4',0,424,'2022-02-04 09:09:10','','2022/02'),(2528,695,'Issue','clipboard-202202040949-0ttpp.png','220204094919_clipboard-202202040949-0ttpp.png',258703,'image/png','f58f0524a47d12c67d25306fbca7d820f6b408299bac7fb93bb4de9cf0dc96c2',0,433,'2022-02-04 09:49:19','','2022/02'),(2529,695,'Issue','PDB-LM.zip','220204111838_PDB-LM.zip',3376308,'application/x-zip-compressed','e28874e1f452966652bfdf05a3f9da45ead9d51f17fba834de8d0b2b2fbe3ec8',0,433,'2022-02-04 11:18:38','','2022/02'),(2530,695,'Issue','LivraisonDeleak040211h25.zip','220204112950_LivraisonDeleak040211h25.zip',1917373,'application/x-zip-compressed','7b4a0dc677fb373b0ece1cf5d1577e936892266acb525c098f317421eebfbe54',0,432,'2022-02-04 11:29:50','','2022/02'),(2533,695,'Issue','StructureEmotorsCorrectionInsertDate.zip','220204121633_StructureEmotorsCorrectionInsertDate.zip',841718,'application/x-zip-compressed','0ea7202d08505800b681cde8c1b71724a4afdbcfa92b63cb9dffd8367869f225',0,432,'2022-02-04 12:16:33','','2022/02'),(2534,695,'Issue','StructureEmotorsCorrectionInsertDate.zip','220204122401_StructureEmotorsCorrectionInsertDate.zip',841646,'application/x-zip-compressed','130d7fbb524d0fad49b73b0a3955024108ba32cf07ecaf4dc0bd4a51f909ef57',0,432,'2022-02-04 12:24:01','','2022/02'),(2536,722,'Issue','clipboard-202202042326-tcxj8.png','220204232631_clipboard-202202042326-tcxj8.png',101963,'image/png','8db74d8b154257a43946b98cd2031e1095e065bac14cf8921d09cb4b0384ff14',0,1,'2022-02-04 23:26:31','','2022/02'),(2537,722,'Issue','clipboard-202202042335-q0l2t.png','220204233523_clipboard-202202042335-q0l2t.png',24129,'image/png','4abe5222cb09df6a47041100d9b4367dbb59432cab6c98a606c37f2a2bcc2dd6',0,1,'2022-02-04 23:35:23','','2022/02'),(2538,722,'Issue','clipboard-202202051324-epwul.png','220205132438_clipboard-202202051324-epwul.png',94964,'image/png','8268192999740416a577804625ee4c792e75a282fef208fc27ea83e2642b9a54',0,1,'2022-02-05 13:24:38','','2022/02'),(2539,722,'Issue','clipboard-202202051347-hbbtg.png','220205134709_clipboard-202202051347-hbbtg.png',321176,'image/png','48d16437a53c667b60b9bc46a7b4f1e6e26c1c24843a6f5eda144f06f84a6cb0',0,1,'2022-02-05 13:47:09','','2022/02'),(2540,722,'Issue','clipboard-202202051356-nihkh.png','220205135634_clipboard-202202051356-nihkh.png',286461,'image/png','c81251ecfd87784cd802b44cf28f12775f33e67e11d5694e9070591e17092770',0,1,'2022-02-05 13:56:34','','2022/02'),(2541,695,'Issue','VpiLinesource0702.zip','220207112555_VpiLinesource0702.zip',49508,'application/x-zip-compressed','21828e36d6bc607e5a5d11a8607d4d62815e59fb3aa37ccb0e5cf63df2123786',0,432,'2022-02-07 11:25:55','','2022/02'),(2542,695,'Issue','StructuresEmotorssource.zip','220207115507_StructuresEmotorssource.zip',44152,'application/x-zip-compressed','685f607675ddc27d45cafe5723a3b98e585e3cda3f7bab4a13b1e36c9dc70b3c',0,432,'2022-02-07 11:55:07','','2022/02'),(2543,695,'Issue','StructuresEmotorssource.zip','220207115744_StructuresEmotorssource.zip',49234,'application/x-zip-compressed','1acecfd4a44c4847c2e86fefb1198481e7a63c55a031485ae7e5e4ec9bd3af67',0,432,'2022-02-07 11:57:44','','2022/02'),(2544,254,'Version','SIOME2.3.zip','220119145132_SIOME2.3.zip',72716313,'application/x-zip-compressed','8a6a4d9c2f0dc3e4da15bb406e071a78aaef203f40ac9a8b9249c93c9a050570',8,1,'2022-02-07 15:17:14','','2022/01'),(2545,253,'Version','imerys_model_v1.0.2.zip','220207152724_imerys_model_v1.0.2.zip',344626,'application/x-zip-compressed','f2042c5f9453c59246a880f31362fffc5884420355a9f4abe43b5b380eda658d',3,1,'2022-02-07 15:27:24','','2022/02'),(2546,245,'Version','Carbital3_February_2022.zip','220207180317_Carbital3_February_2022.zip',2972541,'application/x-zip-compressed','a1728394394912f2f8864f9ca86dc63e5e402e311c4ab4b76ccb557f8e2d80bc',2,1,'2022-02-07 18:03:17','','2022/02'),(2548,695,'Issue','ShareInetumLMBinaries0702.zip','220207181017_ShareInetumLMBinaries0702.zip',1618779,'application/x-zip-compressed','61d2eecb4cfdd8159383bdd08dbe18d300b33979a9ea90017c739220325845f8',0,432,'2022-02-07 18:10:17','','2022/02'),(2549,705,'Issue','AWS-00160.log','220207202002_AWS-00160.log',5832,'text/plain','ce3fdb98eda60ecae315b51e9df211d669b6d64f45bb7156930162d61fe070fa',0,1,'2022-02-07 20:20:02','','2022/02'),(2550,705,'Issue','clipboard-202202072020-gg4jt.png','220207202052_clipboard-202202072020-gg4jt.png',121996,'image/png','3198a6f56ee99795418b9e56438d021a40ef2036d99d2d984d81f8c46d52fb93',0,1,'2022-02-07 20:20:52','','2022/02'),(2551,705,'Issue','clipboard-202202072021-qr8t1.png','220207202132_clipboard-202202072021-qr8t1.png',292731,'image/png','32331fa563c42a6f05330c6439fc15b1e9d4ee13e9d653b8f1019239174a5e73',0,1,'2022-02-07 20:21:32','','2022/02'),(2553,705,'Issue','clipboard-202202072140-lmnkp.png','220207214057_clipboard-202202072140-lmnkp.png',167718,'image/png','bb6520fa199a0d6397a767c593435fa86a3026aff60674c767d7ab9ca6b554a3',0,1,'2022-02-07 21:40:57','','2022/02'),(2554,722,'Issue','clipboard-202202072256-zya0g.png','220207225657_clipboard-202202072256-zya0g.png',198945,'image/png','e3ab16c5dcec0bcc8d981c891e94b3e719848a4ba0b099b8aee27fe676259036',0,1,'2022-02-07 22:56:57','','2022/02'),(2555,722,'Issue','clipboard-202202072257-yzqhu.png','220207225720_clipboard-202202072257-yzqhu.png',295463,'image/png','c9695d308f6d97bb8180b24244d9b644151fc58ae38f8c9b9edf0f183c7f8f40',0,1,'2022-02-07 22:57:20','','2022/02'),(2556,246,'Version','DemoLua_Release.zip','220208091152_DemoLua_Release.zip',2401708,'application/x-zip-compressed','6326a82f1d1caf6ed320c896355a0f1ef09abc766cfaf58b329451c6be809408',3,1,'2022-02-08 09:11:52','','2022/02'),(2557,720,'Issue','clipboard-202202080916-8awld.png','220208091653_clipboard-202202080916-8awld.png',204449,'image/png','4b987516c3067202a1f454c00ee63ee07899272ae8bb9966574f20e220b312b4',0,1,'2022-02-08 09:16:53','','2022/02'),(2558,720,'Issue','clipboard-202202080917-4ht4c.png','220208091739_clipboard-202202080917-4ht4c.png',338232,'image/png','51c1ac82c834270149e13b00e0335bc736e1509e68fdfd2102026dd354a3a458',0,1,'2022-02-08 09:17:39','','2022/02'),(2560,695,'Issue','ShareMichel-2022-02-08-10h47.zip','220208104920_ShareMichel-2022-02-08-10h47.zip',241596,'application/x-zip-compressed','cb9122daaba85ca88c1dc031ddbcb19c49a3455fe9b0b213244ad4b703693850',0,433,'2022-02-08 10:49:20','','2022/02'),(2561,695,'Issue','ShareMichel-2022-02-08-11h27.zip','220208113550_ShareMichel-2022-02-08-11h27.zip',7729133,'application/x-zip-compressed','0f1d3b15477e9b8e3c89aad386274e0615da84a7c8e8f376c0aba14d2f246a6e',0,433,'2022-02-08 11:35:50','','2022/02'),(2562,259,'Version','Verkor-Conceptual_v0.0.0.1.eapx','220208165918_Verkor-Conceptual_v0.0.0.1.eapx',2502656,NULL,'2ff50087e8a36b8f68bf056f613006c2ea718c48e7fd7b8fea5805fdd477a885',2,1,'2022-02-08 16:59:18','','2022/02'),(2563,695,'Issue','ShareMichel-Vpi Plant-2022-02-08-19h15.zip','220208191955_482e590ca7b8a083d66475a61bbdc351.zip',118391,'application/x-zip-compressed','b90b425c14b0115b0c11b8254ee192fc82300af840e060a3345c351c7aaad2e6',0,433,'2022-02-08 19:19:55','','2022/02'),(2564,695,'Issue','ShareMichel-ScriptTesteur-2022-02-09-11h15.zip','220209111921_ShareMichel-ScriptTesteur-2022-02-09-11h15.zip',3500,'application/x-zip-compressed','f9bc0dc3afb70db1680b150fdf73ed54c887bb50030eb2623e6882ce668d64ca',0,433,'2022-02-09 11:19:21','','2022/02'),(2565,711,'Issue','clipboard-202202091548-hm4sy.png','220209154810_clipboard-202202091548-hm4sy.png',78746,'image/png','c1cc079557414344669592f6725c82df165a7498bcd8e40f790081dbce28cc5a',0,1,'2022-02-09 15:48:10','','2022/02'),(2566,711,'Issue','clipboard-202202091548-2u71b.png','220209154837_clipboard-202202091548-2u71b.png',89016,'image/png','ba719fccc1e11c2ab2f30949357828839e1cfe8562c0ea9eae440755119b71d9',0,1,'2022-02-09 15:48:37','','2022/02'),(2567,719,'Issue','ModelGeneration-Test-Feb-7.zip','220209160833_ModelGeneration-Test-Feb-7.zip',1935502,'application/x-zip-compressed','b5efa0522c57a501a93d45e918f046a178be904b8ad0a058234ae8bd540ab017',0,436,'2022-02-09 16:08:33','','2022/02'),(2569,245,'Version','Lixhe.zip','220209175956_Lixhe.zip',3065285,'application/x-zip-compressed','43b13f0bcd25cd40aa69312be34961acc37fa0d111eb7f21f884e5e541891839',3,1,'2022-02-09 17:59:56','','2022/02'),(2570,695,'Issue','ShareMichel-DeltaSourcesLM-2022-02-09-19h45.zip','220209195803_ShareMichel-DeltaSourcesLM-2022-02-09-19h45.zip',65879,'application/x-zip-compressed','6257d0b183fdc0098415d00b64d35c609c676645a93d1b0bc46f356321aecbd4',0,433,'2022-02-09 19:58:03','delta de code à reporter sur projets eMotors','2022/02'),(2571,695,'Issue','VpiLine-26000.log','220209205757_VpiLine-26000.log',920635,'text/plain','05aa7a6d0a8d6637142e6e811953ebfb629f1c1d85a47d185b39a6061b9415b6',0,1,'2022-02-09 20:57:57','','2022/02'),(2573,695,'Issue','clipboard-202202101151-nu6c7.png','220210115150_clipboard-202202101151-nu6c7.png',614652,'image/png','3701c020fd0f48d6e8266ed79a5b67c87ded9d8055f7771db449b3ad0ac7cae4',0,432,'2022-02-10 11:51:50','','2022/02'),(2574,695,'Issue','clipboard-202202101152-omitw.png','220210115217_clipboard-202202101152-omitw.png',439102,'image/png','0ab4b439a695b972b35ae91dda66652ce57915a3c51fdc67880465f83247e365',0,432,'2022-02-10 11:52:17','','2022/02'),(2575,695,'Issue','clipboard-202202101153-gdckh.png','220210115317_clipboard-202202101153-gdckh.png',37678,'image/png','4c13a1c437d3681e4d142266d48b9125cbc61692c6fa2b29e4553dbc30788d20',0,432,'2022-02-10 11:53:17','','2022/02'),(2576,NULL,NULL,'Livraison Binaires Debug-IPV4_10-2-2022.zip','220210121551_29b5714c60b99b20ee01edebf82ea2e6.zip',13977527,'application/x-zip-compressed','9aeebd474a96e5951d906c44d0c921d36ba71f4a24211fc14d523e10cf595102',0,1,'2022-02-10 12:15:51',NULL,'2022/02'),(2577,162,'Version','Livraison Binaires Debug-IPV4_10-2-2022-13h00.zip','220210121551_29b5714c60b99b20ee01edebf82ea2e6.zip',13977527,'application/x-zip-compressed','9aeebd474a96e5951d906c44d0c921d36ba71f4a24211fc14d523e10cf595102',3,1,'2022-02-10 13:03:44','','2022/02'),(2578,259,'Version','Verkor-Conceptual_v0.0.0.2.eapx','220208165918_Verkor-Conceptual_v0.0.0.1.eapx',2502656,NULL,'2ff50087e8a36b8f68bf056f613006c2ea718c48e7fd7b8fea5805fdd477a885',2,1,'2022-02-10 14:03:44','','2022/02'),(2579,255,'Version','(PNT) Functional analysis of coater (30Dec2021).pdf','220210150949_d4b75b4981892fca7501a921a46505ac.pdf',11151992,'application/pdf','f1dffe0b380c47bdf8f9499c8d2b4d9ffdff130d8a75d4f5671de09a485a4a77',6,530,'2022-02-10 15:09:49','Functional description - Coating','2022/02'),(2580,259,'Version','Verkor-Conceptual_v0.0.0.3.eapx','220210154615_Verkor-Conceptual_v0.0.0.3.eapx',2519040,NULL,'5da015a8a74415467b7036e82eeb8a1c55d8c9ea5e2bc0752706b0f7e2ee6ccb',1,1,'2022-02-10 15:46:15','','2022/02'),(2581,731,'Issue','clipboard-202202101616-6zgdi.png','220210161604_clipboard-202202101616-6zgdi.png',9223,'image/png','4e092510260e667a60586e4c769ed9f74f2e43644ddbfa3305635b3c6a0ca1ea',0,1,'2022-02-10 16:16:04','','2022/02'),(2582,259,'Version','Verkor-Conceptual_v0.0.0.4.eapx','220210170652_Verkor-Conceptual_v0.0.0.4.eapx',2539520,NULL,'e0369cc3c50091b680d31d3f4be938c00830bdde82717c74be02abffd3afa3aa',2,1,'2022-02-10 17:06:52','','2022/02'),(2583,163,'Version','SourceInetum.zip','220210183547_SourceInetum.zip',95354144,'application/x-zip-compressed','c1f234408a84216f348bb1c43b4ba9acf443cc46ebb9b7b2ddf117699e991a9b',2,1,'2022-02-10 18:35:47','','2022/02'),(2584,162,'Version','Dll_IPV4.zip','220210190535_Dll_IPV4.zip',1615106,'application/x-zip-compressed','b76092f876cb8462261b0f8c2ace117e8e8609fbddb5c19c10a49188522f8ec5',2,1,'2022-02-10 19:05:35','','2022/02'),(2585,162,'Version','Lib_IPV4.zip','220210190640_Lib_IPV4.zip',611315,'application/x-zip-compressed','7e40566d1781e7554a3f5e13c81c7afa492a5b6dba68fe84704cc5d8df8bfd45',2,1,'2022-02-10 19:06:40','','2022/02'),(2586,705,'Issue','clipboard-202202111323-z9o2b.png','220211132321_clipboard-202202111323-z9o2b.png',55668,'image/png','94ad398a0f292f0c953a8c0470c155f63001b078a87dfd9bf93cc406131813cb',0,424,'2022-02-11 13:23:21','','2022/02'),(2587,705,'Issue','IotHub-00170-NOK-OK.log','220211144747_IotHub-00170-NOK-OK.log',9319,'text/plain','6e70899b9687dd3610fd34dbdb44ef6bf7a5b09545921c58f81d64b585ee0172',0,424,'2022-02-11 14:47:47','','2022/02'),(2588,705,'Issue','IotHub-00170-OK-OK.log','220211144751_IotHub-00170-OK-OK.log',5011,'text/plain','c1caecd10de521df250467af4a45b78d8e939a2995b75a28a36f0de3be194394',0,424,'2022-02-11 14:47:51','','2022/02'),(2589,705,'Issue','IotHub-00170_MetadataTrue.log','220211145415_IotHub-00170_MetadataTrue.log',44137,'text/plain','2924d8163edba0a5f3d6b8de479f72504a7c6b79e136a8873ec8a2324f5ebcba',0,424,'2022-02-11 14:54:15','','2022/02'),(2590,705,'Issue','Sans titre.png','220211145918_34839053e158a003d0af270cd9616212.png',72027,'image/png','56b4ad7d672bb62b1dcd0759d2924754000a1385a7102a53486b120de587e011',0,424,'2022-02-11 14:59:18','','2022/02'),(2591,735,'Issue','clipboard-202202131110-dmhlh.png','220213111045_clipboard-202202131110-dmhlh.png',143207,'image/png','f6fddbe2d9b955a7b97145660e4bccf006c3152c45e85942d718b4b54cc154dc',0,1,'2022-02-13 11:10:45','','2022/02'),(2592,735,'Issue','clipboard-202202131114-xrqii.png','220213111408_clipboard-202202131114-xrqii.png',45867,'image/png','b39df6eca59cbc118bf155e49ab7fb2bda40247905f5057339a164da4442fac2',0,1,'2022-02-13 11:14:08','','2022/02'),(2594,735,'Issue','clipboard-202202131132-zuexi.png','220213113231_clipboard-202202131132-zuexi.png',82348,'image/png','a1593096b612f60807c22253433971efdfb380a9086e3cbbab734a061ff63635',0,432,'2022-02-13 11:32:31','','2022/02'),(2595,259,'Version','Verkor-Conceptual_v0.0.0.4 - GO v1.eapx','220215093305_d04bdc3bf6836a3e11fa4df8b24fed6a.eapx',2629632,NULL,'8210c0d51b640a52b1856ed08ac95c7a76a5a2e3d844045d1142e622605e57df',1,532,'2022-02-15 09:33:05','','2022/02'),(2596,163,'Version','DataDictionnaryEMotorsV2.17.xml','220215104958_DataDictionnaryEMotorsV2.17.xml',53470,'text/xml','c38c964bb6ba2b2f6e8a9d3e7f9317baf38c1d83d6820957d37c5b4ef8de61b4',1,1,'2022-02-15 10:49:58','','2022/02'),(2597,695,'Issue','structuresv2.h','220215134629_structuresv2.h',7381,'text/plain','07a807df042f5ac1f857359ef8373bc9bbdc2a74b6d92386e440c33d2e710a88',0,432,'2022-02-15 13:46:29','','2022/02'),(2599,259,'Version','Verkor-Conceptual_v0.0.0.5.eapx','220215171855_Verkor-Conceptual_v0.0.0.5.eapx',2588672,NULL,'0cc512db4044c06fa9da5a3c6d57546c4a9d727f0c063c9e2e60b6413c143630',2,1,'2022-02-15 17:18:55','','2022/02'),(2600,164,'Version','TesteurEmotors.zip','220216121743_TesteurEmotors.zip',6993599,'application/x-zip-compressed','2a53757ff75be3891cef4d1bb47da58d642d92026639f30990e0383a7bff5fcd',1,1,'2022-02-16 12:17:43','','2022/02'),(2601,247,'Version','Livraison-16-02-2022.zip','220216142224_Livraison-16-02-2022.zip',1218801,'application/x-zip-compressed','bc4c3d18c2c1ebba392db2b30702ff5a812ead604b74efc8c9bb404da68e2935',1,1,'2022-02-16 14:22:24','','2022/02'),(2602,245,'Version','Lixhe_2022_V0.2.zip','220216170632_Lixhe_2022_V0.2.zip',3989103,'application/x-zip-compressed','b9493427e144620255fa1fa7c8469dfc720208d4d6dc3eb00518a0826d7fcc2f',2,1,'2022-02-16 17:06:32','','2022/02'),(2603,NULL,NULL,'CPC Sensor.PNG','220217101410_497e21141f857ab67c92723dc506da0c.PNG',20439,'image/png','4c58d0a2f2eb90513f2dc11fa22fbb1e8a37143d213008855d9050f487a8e11c',0,533,'2022-02-17 10:14:10',NULL,'2022/02'),(2604,NULL,NULL,'thumbnail_image004.png','220217120039_thumbnail_image004.png',22496,'image/png','ac598d0c79b8a9f74d97f404296327930e150a81b342946c9196334bec35f981',0,489,'2022-02-17 12:00:39',NULL,'2022/02'),(2605,747,'Issue','thumbnail_image004.png','220217120039_thumbnail_image004.png',22496,'image/png','ac598d0c79b8a9f74d97f404296327930e150a81b342946c9196334bec35f981',0,489,'2022-02-17 12:10:25','','2022/02'),(2606,747,'Issue','PrepaStack.log','220217121034_PrepaStack.log',33336,'text/plain','850032d69b810c82032ce679564afb4e39aecda10b865e3cbcff7d1525a49298',0,489,'2022-02-17 12:10:34','','2022/02'),(2607,695,'Issue','Utilisation des Methodes de structuresemotors.txt','220217154943_f21894ac13de9d8d1366038941363859.txt',16162,'text/plain','836f868fa8aea8cb46c838960b8c73c62dcc58a5959d59ccd64cb25c5e2b456b',0,433,'2022-02-17 15:49:43','','2022/02'),(2608,748,'Issue','Logs.zip','220217182826_Logs.zip',4596,'application/x-zip-compressed','79c2551207d7d8de00e0405696f7e4e9abf0b02f510e64e83561849082b3c6d0',0,432,'2022-02-17 18:28:26','','2022/02'),(2609,748,'Issue','OpenOpcUaCoreServer_Debug.exe_220217_181159.dmp','220217182835_OpenOpcUaCoreServer_Debug.exe_220217_181159.dmp',34323374,'application/vnd.tcpdump.pcap','20d27a450288ced03d9139d10a03e20eb2b235f62e95692a32ab1dbcdf2d3883',0,432,'2022-02-17 18:28:35','','2022/02'),(2611,220,'News','clipboard-202202180049-gnaxq.png','220218004954_clipboard-202202180049-gnaxq.png',90863,'image/png','285ed8d80ad16510f22483baafabbae996b284a0272441904d4ebb06cb376622',0,1,'2022-02-18 00:49:54','','2022/02'),(2612,220,'News','clipboard-202202180050-5ck7g.png','220218005029_clipboard-202202180050-5ck7g.png',60559,'image/png','1e7fed985efe20f39ff9f6dc22231333dbd7a3ad9c789bb5e3021a23192d7834',0,1,'2022-02-18 00:50:29','','2022/02'),(2613,221,'News','clipboard-202202180057-jf3zd.png','220218005734_clipboard-202202180057-jf3zd.png',112411,'image/png','a8b3953fe41fafb0d14d845533928913574bb32809d116389de40c1475933e33',0,1,'2022-02-18 00:57:34','','2022/02'),(2614,221,'News','clipboard-202202180058-fns3k.png','220218005804_clipboard-202202180058-fns3k.png',106761,'image/png','cf3aaca89335a0a2f847ffe62a3814cc494ac698a251345c781464bbe49245ab',0,1,'2022-02-18 00:58:04','','2022/02'),(2615,749,'Issue','IotHub-00170.log','220218144433_IotHub-00170.log',9727,'text/plain','05f8418566927c59796f90fa988ee8ba3315a441f4ce547f65d1969cca84d6a4',0,424,'2022-02-18 14:44:33','','2022/02'),(2616,750,'Issue','clipboard-202202211039-bd2oo.png','220221103914_clipboard-202202211039-bd2oo.png',46773,'image/png','c01b8dd78796b0f491b57d9d093784ce1d956f1d54ecf509624b936f5c336fcb',0,1,'2022-02-21 10:39:14','','2022/02'),(2617,255,'Version','(Verkor-PNT) Coater concept layout drawing (05Oct2021).pdf','220221104224_d1c07688eac687839cf96b72aac0fefd.pdf',1882434,'application/pdf','abaab1275bd6fc4d411d45f0ffece7ceee442ce15ce4b14772bcf19fc1aee4e8',2,532,'2022-02-21 10:42:24','','2022/02'),(2619,253,'Version','LogicalModel_Imerys-V1.0.6.eapx','220221173201_LogicalModel_Imerys-V1.0.6.eapx',3108864,NULL,'62e5a5b5e542478f7a13d4378deff403b9c135e1914924cc053fccec6b5441d7',0,1,'2022-02-21 17:32:01','','2022/02'),(2622,253,'Version','Generation_21-02-2022.zip','220221175513_Generation_21-02-2022.zip',442167,'application/x-zip-compressed','7ad8363120b64468722b963ba9eb9dfcefa16d4de160f319ee48767c96464884',2,1,'2022-02-21 17:55:13','','2022/02'),(2624,259,'Version','Verkor-Conceptual_v0.0.0.6.eapx','220221183827_Verkor-Conceptual_v0.0.0.6.eapx',2600960,NULL,'e04559f70d1f6d6409c1e5f957759a1f3bfa7f9a45af429dd21ec7ec82a743c0',1,1,'2022-02-21 18:38:27','','2022/02'),(2625,746,'Issue','clipboard-202202220030-csjse.png','220222003057_clipboard-202202220030-csjse.png',54716,'image/png','9424f1ca57956b0f527c33216a1c77aac6ca2760c20ebbf7f6a2820ea8ae6b69',0,1,'2022-02-22 00:30:57','','2022/02'),(2626,259,'Version','Verkor-Conceptual_v0.0.0.7.eapx','220222170005_Verkor-Conceptual_v0.0.0.7.eapx',2600960,NULL,'3d0490334de209f63a7ff464b8f22ee02180bf7ee373bdc0f67017a40ae3770d',1,1,'2022-02-22 17:00:05','','2022/02'),(2627,259,'Version','Verkor-Conceptual_v0.0.0.8.eapx','220222174845_Verkor-Conceptual_v0.0.0.8.eapx',2625536,NULL,'8426fc8f24191bf6009460848fabf20114ec4d83a974551a07c073ec5383e936',1,532,'2022-02-22 17:48:45','','2022/02'),(2628,262,'Version','DemoLua_Release.zip','220223131302_DemoLua_Release.zip',2397757,'application/x-zip-compressed','2950955f8013d22bf8eccbb419499de17992bdeb24c66cbcfb1965e580d2ed7c',1,1,'2022-02-23 13:13:02','','2022/02'),(2629,262,'Version','UAExpert_1.5.12_Portable.zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',1,1,'2022-02-23 13:16:31','','2021/02'),(2630,259,'Version','Verkor-Conceptual_v0.0.0.9.eapx','220223160231_Verkor-Conceptual_v0.0.0.9.eapx',2658304,NULL,'c8c9662436aa3eb20de43ffe6fc39b3aa66a5bac47e98907f2da7fe36ab4e1c7',5,1,'2022-02-23 16:02:31','','2022/02'),(2631,163,'Version','SourcesLivrable_4CE_23-2-2022.zip','220223164116_SourcesLivrable_4CE_23-2-2022.zip',247825,'application/x-zip-compressed','ca7dafa78e78abf55a8948854633fefdeb0972946dd1471ebdc9970dd71994c0',4,1,'2022-02-23 16:41:16','','2022/02'),(2632,164,'Version','TesteurEmotors_23-2-2022.zip','220223164220_TesteurEmotors_23-2-2022.zip',7973869,'application/x-zip-compressed','9f88c17a6b32b06df2fc70e13bb09d02329a2d2e83b17ce6aa95de96b9fe10a3',2,1,'2022-02-23 16:42:20','','2022/02'),(2635,742,'Issue','Nozzles on Coater.PNG','220224104904_b0fa82cb89d9b4752f41d734ffbed269.PNG',766823,'image/png','f728489cc526eb069346a522b5a7bfcfde32d20679b26ae28cd5b29ec463c7ee',0,533,'2022-02-24 10:49:04','','2022/02'),(2637,263,'Version','OpcUa.Net.1.02.SDK_24-02-2022_Debug.zip','220224142011_OpcUa.Net.1.02.SDK_24-02-2022_Debug.zip',921288,'application/x-zip-compressed','db7d45615cb8f288deb8f141e3a407c22254f3b53aac98e58751d7954074c7b5',1,1,'2022-02-24 14:20:11','','2022/02'),(2638,263,'Version','OpcUa.Net.1.02.SDK_24-02-2022_Release.zip','220224154817_OpcUa.Net.1.02.SDK_24-02-2022_Release.zip',851142,'application/x-zip-compressed','ad8f7ae624b96f7d0eac965ef7bda2a1be51d5814ab7d6ab51da2712f2d65199',0,1,'2022-02-24 15:48:17','','2022/02'),(2641,263,'Version','Manuel de l_utilisateur-v1.04.pdf','210825143325_51d8861dc8153415da5707b070053370.pdf',1021170,'application/pdf','cf5858a4bc33255f0cf553e38d2f08dd4140fee9d576e08a8247603b91a38a2c',1,1,'2022-02-25 14:38:51','','2021/08'),(2642,260,'Version','Réaliser des clients OpcUa J1.pdf','220225153416_1709a02149ba1b7fb42ed1b4f57b99f3.pdf',821015,'application/pdf','9f55e31ed61718b2e7483db1fe3243dfc77484e73e4dfe4882af432c139f9aee',2,1,'2022-02-25 15:34:16','','2022/02'),(2643,260,'Version','Réaliser des clients OpcUa J2.pdf','220225153426_feb37905578642aa9cc34fa3a5435fa8.pdf',1381564,'application/pdf','4ee63da53db7afa2811f07dc8eab34f10f033535449e929a927f09ec440e91c5',1,1,'2022-02-25 15:34:26','','2022/02'),(2644,263,'Version','CMR.zip','220225162241_CMR.zip',1371486,'application/x-zip-compressed','f339817bdb590367b4a62a15b9420b8644fc44407d46403d34d24f11bd3d1222',1,1,'2022-02-25 16:22:41','','2022/02'),(2646,263,'Version','2410 - Bilan Formation OPC 1 Jour.pdf','220225163704_afd1183d905bbf4d7154a028799d5096.pdf',297505,'application/pdf','62d9e404b5aa966e4673a6792ac5a8af379b65a54d5790e55a7e3bcb8d959db4',3,1,'2022-02-25 16:37:04','','2022/02'),(2647,263,'Version','2620 - Bilan Formation OPC 2 Jours.pdf','220225163804_8970f0485266ac1ce9080f46f3a9b850.pdf',297615,'application/pdf','f4d95cf0ed938c92645b1d795a7df90d83fb78bf946a8827f22851c131655c5e',2,1,'2022-02-25 16:38:04','','2022/02'),(2648,252,'Version','DemoLua_Release.zip','220223131302_DemoLua_Release.zip',2397757,'application/x-zip-compressed','2950955f8013d22bf8eccbb419499de17992bdeb24c66cbcfb1965e580d2ed7c',6,1,'2022-03-03 10:20:45','','2022/02'),(2649,252,'Version','UAExpert_1.5.12_Portable.zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',4,1,'2022-03-03 10:23:40','','2021/02'),(2650,252,'Version','OPCF Sample Client .Net.zip','210706161636_27c5c0b4f8f82f00f09ac182302af100.zip',2574245,'application/x-zip-compressed','9ebf29cbde9253cb831bcb7e2c996c107be26d3f03242a001e6f5a44bfe6eda1',5,1,'2022-03-03 10:24:30','','2021/07'),(2651,252,'Version','Demo-CSV-HA_Release_X64.zip','220303102712_Demo-CSV-HA_Release_X64.zip',3003922,'application/x-zip-compressed','599087410b3fd39f9bc0c415f4a87169391ab41b237b13cb5f4a7d930dcddeb7',5,1,'2022-03-03 10:27:12','','2022/03'),(2652,252,'Version','DemoVpiOs-x64_Release.zip','220303141404_DemoVpiOs-x64_Release.zip',2445446,'application/x-zip-compressed','18a919a367051092828941ec59e7db1fc70a5247b758d7cd2f7f1af2bc31eab3',5,1,'2022-03-03 14:14:04','','2022/03'),(2653,252,'Version','DemoS7_Simulator_Release_x64.zip','220303145028_DemoS7_Simulator_Release_x64.zip',4546915,'application/x-zip-compressed','46ce1591e2dab9939f79c55029d28db71077bed7cb631eb918c3b64328854642',4,1,'2022-03-03 14:50:28','','2022/03'),(2654,252,'Version','DemoModbus_Release_x64.zip','220303150556_DemoModbus_Release_x64.zip',3105100,'application/x-zip-compressed','82bd69db5c425c6a6a3a47b24b8065a8e60ffe4efd7fde1aa94e7af8b2b50a47',4,1,'2022-03-03 15:05:56','','2022/03'),(2656,249,'Version','Manuel de l_utilisateur-v1.04.pdf','220303155540_51d8861dc8153415da5707b070053370.pdf',1110324,'application/pdf','413a2bb7bd258f83d3e4f4681bf20a328588d03920b6262b952dcebcdafe2ea6',2,1,'2022-03-03 15:55:40','','2022/03'),(2657,249,'Version','Manuel de l_utilisateur - VpiMdbMaster 1.0.3.9.pdf','220303155730_07f0970d73121a76299681d05e43982b.pdf',553454,'application/pdf','2d688e2181ec9fca203f14bea257b7321ca3f81650242dab83af12e6c87a4d73',3,1,'2022-03-03 15:57:30','','2022/03'),(2658,266,'Version','NodeSet_HA.zip','220303162940_NodeSet_HA.zip',2599,'application/x-zip-compressed','847f833d5bdc6b0211d8c9a2df055fec3cf30443aa48bc30c617eb31fe55bfae',3,1,'2022-03-03 16:29:40','','2022/03'),(2665,259,'Version','Verkor-Conceptual_v0.0.1.0.eapx','220308155219_Verkor-Conceptual_v0.0.1.0.eapx',2658304,NULL,'1629315a0d525e9712e5739ca2c5cbd1f9dadcc35f2b7bdc6447223ab9d6c244',2,1,'2022-03-08 15:52:19','','2022/03'),(2667,268,'Version','vc_redist.x64.exe','220308162630_vc_redist.x64.exe',14990824,'application/x-msdownload','dd479820f34498c706bd61c4e7bdafc18a739e397762d7e16d7ad0b9a4cbd79f',3,1,'2022-03-08 16:26:30','','2022/03'),(2668,267,'Version','DemoS7_Simulator_Release_x64.zip','220308163339_DemoS7_Simulator_Release_x64.zip',4821516,'application/x-zip-compressed','98a606cb0eaab400f58863d0560d4a51cad0d5067a40656631ed9417d5a9b31a',2,1,'2022-03-08 16:33:39','','2022/03'),(2669,267,'Version','DemoMqttPublisher_Release.zip','220308212121_DemoMqttPublisher_Release.zip',2821701,'application/x-zip-compressed','d5debc51fe56f97fb1a8fa53e6fd10538eeee2ed51727e9fc170945f13e15309',1,1,'2022-03-08 21:21:21','','2022/03'),(2672,259,'Version','Verkor-Conceptual_v0.0.1.2.eapx','220309172149_Verkor-Conceptual_v0.0.1.2.eapx',2723840,NULL,'e5de5c43abe2248283469ad3b2aaa689c28760fbe644e93e42d8cbbe34f76a8a',0,1,'2022-03-09 17:21:49','','2022/03'),(2673,255,'Version','V2 Architecture.pptx','220309172205_61c85df015a1a1fda27ca4bf7f0f0302.pptx',3880265,'application/vnd.openxmlformats-officedocument.presentationml.presentation','0b23a306b26830bdc0787dfdbf5f47b0bc1270e7148a15803f8e97317a8228a9',0,1,'2022-03-09 17:22:05','','2022/03'),(2674,267,'Version','Drop Imerys 10 03 v1.zip','220310114607_5166072ac2d8d6b3f86ddeeace4b0f57.zip',61003,'application/x-zip-compressed','f861830ffc5d945e344bd6f20a91ea594b4f46dd19afebb2cecfd8953d3d73ef',1,432,'2022-03-10 11:46:07','','2022/03'),(2675,267,'Version','Drop Inetum 10 03 v1.zip','220310114929_c24260c3198bc0c8bdc2888719d3c209.zip',13513970,'application/x-zip-compressed','f60da9e026c906c9b1b1b9ce7f9957c849d6716db883a19a3f7d00d0f03c9f67',1,432,'2022-03-10 11:49:29','','2022/03'),(2676,268,'Version','VPIS7.zip','220310175046_VPIS7.zip',54397,'application/x-zip-compressed','60a0662bb0013e0eb7da98805156c518aff7c2240f925b4f8820f71faab59905',1,1,'2022-03-10 17:50:46','','2022/03'),(2678,268,'Version','VPIS7_0.0.1.1.zip','220310181922_VPIS7_0.0.1.1.zip',21991,'application/x-zip-compressed','cac517d5d302bab91f0b790a2194d7b9b9ee14418558b9cc2ef91646a6676d00',1,1,'2022-03-10 18:19:22','','2022/03'),(2679,268,'Version','OpenSSL.zip','220311145446_OpenSSL.zip',1813448,'application/x-zip-compressed','2a74ab5ceaaab38e9da83aaf78b21289fd0059403b76077b941285d66a62362a',1,1,'2022-03-11 14:54:46','','2022/03'),(2680,269,'Version','ctt_ca1I.der','220311160648_ctt_ca1I.der',1089,'application/x-x509-ca-cert','e664f22719670fbc2ba7f45afa5dbb0168895db7cd0d70878114f3d32e43bebd',1,1,'2022-03-11 16:06:48','','2022/03'),(2681,269,'Version','CertsImerys.zip','220311161726_CertsImerys.zip',6028,'application/x-zip-compressed','5a0db24faee0a453c2d3949026f5075150a0d6498ec560e507fc529842ef013a',5,432,'2022-03-11 16:17:26','','2022/03'),(2683,268,'Version','VPIS7_1.0.1.2.zip','220314135932_VPIS7_1.0.1.2.zip',22575,'application/x-zip-compressed','36976424e99861ea53fb7203513e1794e6302ace3687db6e01f2ce7f075d7c70',1,1,'2022-03-14 13:59:32','','2022/03'),(2684,179,'Version','VPIS7_1.0.1.2.zip','220314135932_VPIS7_1.0.1.2.zip',22575,'application/x-zip-compressed','36976424e99861ea53fb7203513e1794e6302ace3687db6e01f2ce7f075d7c70',1,1,'2022-03-14 13:59:56','','2022/03'),(2685,245,'Version','VPIS7_1.0.1.2.zip','220314135932_VPIS7_1.0.1.2.zip',22575,'application/x-zip-compressed','36976424e99861ea53fb7203513e1794e6302ace3687db6e01f2ce7f075d7c70',2,1,'2022-03-14 14:22:42','','2022/03'),(2686,253,'Version','LogicalModel_Imerys-V1.0.7.eapx','220314145845_LogicalModel_Imerys-V1.0.7.eapx',3108864,NULL,'48e30360cf37cb78ab0be6feef4eb2302f831caa91656f73f71589bc8ca7b9a1',2,1,'2022-03-14 14:58:45','','2022/03'),(2687,242,'Version','OOUA_Binaries_15-3-2022.zip','220315092419_OOUA_Binaries_15-3-2022.zip',3306838,'application/x-zip-compressed','3676e7a5f45bd9eb35aab30805113df08fe7d4f7297415310ac084b57c8ca856',4,1,'2022-03-15 09:24:19','','2022/03'),(2688,761,'Issue','OpenOpcUaCoreServer_Debug.exe_220315_093552.zip','220315100718_OpenOpcUaCoreServer_Debug.exe_220315_093552.zip',43092761,'application/x-zip-compressed','9b7a8c9647e927fe9f897a1bb1b95aebdbf99e901d7544dfb061e9d3f63aa49f',0,489,'2022-03-15 10:07:18','','2022/03'),(2690,252,'Version','Bontoux.zip','220316145724_Bontoux.zip',3382394,'application/x-zip-compressed','1f8ef4beedf2f701835d31524debf38c3e83c773eb9857ca5b2750c1f4b77ec8',4,1,'2022-03-16 14:57:24','','2022/03'),(2692,270,'Version','SIOME2.3.zip','220119145132_SIOME2.3.zip',72716313,'application/x-zip-compressed','8a6a4d9c2f0dc3e4da15bb406e071a78aaef203f40ac9a8b9249c93c9a050570',6,1,'2022-03-16 15:05:43','','2022/01'),(2693,249,'Version','OPCUA_Profile.xml','220316153900_OPCUA_Profile.xml',3589,'text/xml','61dfc487955bdebd8fee30a7d2882d54f13c2454d09e4006ba4311449780c91a',4,1,'2022-03-16 15:39:00','','2022/03'),(2695,270,'Version','OpenOpcUaConfigManager_Delivrable Beta_0.1.0_Release_x64.zip','220316161027_9d6bb2ff78994b90dbf8ccbf378e8436.zip',28038973,'application/x-zip-compressed','e1f5a5c4e63ff3b230ad32683526a61fa2b2c1a74a6cdf5c1061dc09ea1c4300',7,1,'2022-03-16 16:10:27','','2022/03'),(2696,266,'Version','modbusWago.pcapng','220316164307_modbusWago.pcapng',180460,NULL,'8e4ce6dd9c70da4fc17d58dc6972fc078cba6a0a9ba7f20d5798546440169c8b',0,528,'2022-03-16 16:43:07','','2022/03'),(2697,249,'Version','Brainstorming-16-03-2022.pptx','220316172841_Brainstorming-16-03-2022.pptx',54104,'application/vnd.openxmlformats-officedocument.presentationml.presentation','0f1886f04f95fd4121906ab80ba6434180b724912eb12abb5e1eecc7cb036847',0,1,'2022-03-16 17:28:41','','2022/03'),(2698,761,'Issue','Historization ROTOR.zip','220316183510_9d3e022ebad9cb1a92e94c1ca62ad2a8.zip',805365,'application/x-zip-compressed','d77faa47c57022e0a46198dd27cd30c5f1c27f172dd3a2b25dec3d446eee7eeb',0,489,'2022-03-16 18:35:10','','2022/03'),(2700,764,'Issue','Logs - 16 mar 1 am.zip','220317170050_a6ffcfedc59925aca79c5e010a101789.zip',2846897,'application/x-zip-compressed','5c1b30f46c6565d1f15fe3db5a470009edc6216f16659b0dd1ae66bc7c622358',0,432,'2022-03-17 17:00:50','','2022/03'),(2702,764,'Issue','Logs - 17 mar 6 pm.zip','220317181016_1b154509f55eb5b8ab927ad89473273c.zip',45265,'application/x-zip-compressed','79246493acfbd6f74d7afad778d031eb7c38fe30d932c95096e841d715c531a8',0,432,'2022-03-17 18:10:16','','2022/03'),(2703,268,'Version','Livraison Binaires Release-IPV6 - 17-03-2022.zip','220317181737_056a24d251cad366bf33b354c9902479.zip',2766154,'application/x-zip-compressed','7b3b35dca313c4053e900427a46825ac9e58e10d7aa421529da02ad9a9ddc5f9',2,1,'2022-03-17 18:17:37','','2022/03'),(2704,269,'Version','Procdump.zip','220317182445_Procdump.zip',284617,'application/x-zip-compressed','5eb081202e9e9bf657f0e36a54e842a2c966f993433160dd76fd25020fb0e088',1,432,'2022-03-17 18:24:45','','2022/03'),(2706,764,'Issue','OpenOpcUaCoreServer_Release.exe_220317_184841.dmp','220317193647_OpenOpcUaCoreServer_Release.exe_220317_184841.dmp',20720502,'application/vnd.tcpdump.pcap','4a7268b6bd06463bea1e074ce1500f44df0e68ad1aa2ee0cc53178a1af716e08',0,432,'2022-03-17 19:36:47','','2022/03'),(2707,764,'Issue','demo_Imerys18-03-22.zip','220318094013_demo_Imerys18-03-22.zip',3602977,'application/x-zip-compressed','41cdea9c11a852d2c1cbfe827d4e13014eb7d085f874ec47748578fc4fa3dc14',0,432,'2022-03-18 09:40:13','','2022/03'),(2708,764,'Issue','Traces Crash 18-03.zip','220318151705_30edaec4f409dd57e3679bb14050a528.zip',54333429,'application/x-zip-compressed','f77aae2cc489ab40a6f3c9be037b3c91ebfa71f174c1f54621001466eab00fef',0,432,'2022-03-18 15:17:05','','2022/03'),(2710,162,'Version','Livraison Binaires Debug-IPV6 - 18-03-2022.zip','220318174550_0d3f61c3de619ddb29583604254d990a.zip',8773499,'application/x-zip-compressed','1090df9eeff82f05404a2bc765d8e8385a8463859fc6e4b2372e7b3f8bc28741',6,1,'2022-03-18 17:45:50','','2022/03'),(2711,764,'Issue','Traces et logs Crash 18-03 18h.zip','220318180200_b71d2f27223caf257e3636a6f44e99a3.zip',94940616,'application/x-zip-compressed','ca40d23b73e090734e6201e4779b3a3e73cf7d6e9c3800108fa8b51b7acd27c4',0,432,'2022-03-18 18:02:00','','2022/03'),(2712,162,'Version','BinDebug_VS2017.zip','220318182456_BinDebug_VS2017.zip',910733,'application/x-zip-compressed','c8bf3765788d1b582a3a4b9d064dc088150bcef2eee1b9febdfd27b6229b9405',2,1,'2022-03-18 18:24:56','','2022/03'),(2713,764,'Issue','OpenOpcUaCoreServer_Debug.exe_220318_185225.dmp','220319103400_OpenOpcUaCoreServer_Debug.exe_220318_185225.dmp',38899764,'application/vnd.tcpdump.pcap','2702a7bb069030672eae4c551fca141cc667eae5be76c7d26855b62994280500',0,432,'2022-03-19 10:34:00','','2022/03'),(2714,764,'Issue','OpenOpcUaCoreServer_Debug.exe_220319_165645.dmp','220319170331_OpenOpcUaCoreServer_Debug.exe_220319_165645.dmp',31832644,'application/vnd.tcpdump.pcap','c1ef55b15b8ce29bc6bd21d86cabf4421b331135ec8a37c568fb4f6027c80671',0,1,'2022-03-19 17:03:31','','2022/03'),(2717,267,'Version','demo_ImerysDebugv1.0.0.0.zip','220321162426_demo_ImerysDebugv1.0.0.0.zip',26488971,'application/x-zip-compressed','16d0e029e9c0231f9d7c4b9989747d69e9d947f83e31bb13a6d4ab2f7f79a74a',1,432,'2022-03-21 16:24:26','','2022/03'),(2718,271,'Version','DemoLua_Release.zip','220322073619_DemoLua_Release.zip',2403063,'application/x-zip-compressed','f0f21673aac251bd18f7d47f3ce79e899a5d91ac8a554c0e8de1e29b705b611f',10,1,'2022-03-22 07:36:19','','2022/03'),(2719,271,'Version','UAExpert_1.5.12_Portable.zip','220322073636_UAExpert_1.5.12_Portable.zip',17475297,'application/x-zip-compressed','bd2422e36e16b81bdec32ca5093eea807aa39b07f218bf4ca7f18cc1f3d1fbf8',21,1,'2022-03-22 07:36:36','','2022/03'),(2720,271,'Version','Topic.txt','220322073645_Topic.txt',190,'text/plain','6acc13f3c504725d7433dd2600f9d824f40f7fcce3a725254a9e8e02176ff7cc',3,1,'2022-03-22 07:36:45','','2022/03'),(2721,272,'Version','Wireshark-win32-3.4.5.exe','210820231852_Wireshark-win32-3.4.5.exe',56531712,'application/x-msdownload','bc46bdc14dac4c67033bc5ad5590e4b221d5724ba28569b9134c13528fa37fed',20,1,'2022-03-22 07:37:18','','2021/08'),(2722,272,'Version','Topic.txt','210820235159_Topic.txt',120,'text/plain','cfafe0590667a1def1fbc393cd05a554fb16eec87e689ef4e8e5ac1438440736',4,1,'2022-03-22 07:37:31','','2021/08'),(2723,273,'Version','Demo-CSV-HA_Release_X64.zip','220322073745_Demo-CSV-HA_Release_X64.zip',4850704,'application/x-zip-compressed','7bbe4e07e54ac212e4ab606c0619ed404a9619441214548b367afc59a28af2ee',8,1,'2022-03-22 07:37:45','','2022/03'),(2725,275,'Version','Opc.Ua.Net.1.02.SDK_Release_20-03-2022.zip','220322073814_Opc.Ua.Net.1.02.SDK_Release_20-03-2022.zip',851231,'application/x-zip-compressed','7fc64aafceee89b937440048eb95db60d80278754438ab752ee5ec1b230b0efa',13,1,'2022-03-22 07:38:14','','2022/03'),(2726,275,'Version','Topic.txt','220322073823_Topic.txt',70,'text/plain','a1e7f9cd1a60f5d9465f97e6a85cafa334c2136b615572446ac902cb402b52e6',3,1,'2022-03-22 07:38:23','','2022/03'),(2728,277,'Version','Manuel de l_utilisateur-v1.04.pdf','220303155540_51d8861dc8153415da5707b070053370.pdf',1110324,'application/pdf','413a2bb7bd258f83d3e4f4681bf20a328588d03920b6262b952dcebcdafe2ea6',12,1,'2022-03-22 10:55:38','','2022/03'),(2729,274,'Version','DemoAC_Release_x64.zip','220322110044_DemoAC_Release_x64.zip',2981736,'application/x-zip-compressed','5797a7fcd30bc169b01db5cae1c93f7594bc4bf4952d1441cc5cdae1cb18e04c',9,1,'2022-03-22 11:00:44','','2022/03'),(2730,276,'Version','Session 2 - Création de clients et de serveur OPC UA.pdf','220322141924_54cb2cac2d221b6c1406d1394b0a4ee6.pdf',1398825,'application/pdf','cb7e8b61272e2be782a086c6c519cc2649981aaad8f6b23aa8d57b7684ce574a',10,1,'2022-03-22 14:19:24','','2022/03'),(2731,759,'Issue','clipboard-202203221434-btkyd.png','220322143436_clipboard-202203221434-btkyd.png',73077,'image/png','321082d0c21a4b164159fd10ebe5044dfcb27bf877d73e885a7fdcb7365be5ff',0,432,'2022-03-22 14:34:36','','2022/03'),(2732,275,'Version','UASampleClientStep02.Config.xml','220322144403_UASampleClientStep02.Config.xml',2356,'text/xml','67e6df9ca38580b7f7aef7a2ffc086085bca203a263897af895a340bd4a0686a',2,1,'2022-03-22 14:44:03','','2022/03'),(2733,275,'Version','UASampleClientStep02.zip','220322144508_UASampleClientStep02.zip',4940247,'application/x-zip-compressed','02de2e9823bf00e34c376301511cb0e39f425511a105acf87e83980c662e5c92',9,1,'2022-03-22 14:45:08','','2022/03'),(2734,278,'Version','DemoModbus_Release_x64.zip','220322152457_DemoModbus_Release_x64.zip',3106177,'application/x-zip-compressed','84a64041bf7a993ce05291ee1660c4d9b11fe93bd18b7339ce7c50253919a159',6,1,'2022-03-22 15:24:57','','2022/03'),(2735,278,'Version','DemoS7_Simulator_Release_x64.zip','220308163339_DemoS7_Simulator_Release_x64.zip',4821516,'application/x-zip-compressed','98a606cb0eaab400f58863d0560d4a51cad0d5067a40656631ed9417d5a9b31a',7,1,'2022-03-22 15:27:03','','2022/03'),(2736,NULL,NULL,'Demo_VpiUaClient_Manu2_Release_IPV4_64bits.zip','220322161215_Demo_VpiUaClient_Manu2_Release_IPV4_64bits.zip',8502534,'application/x-zip-compressed','47bbbe30e44c7325241d3ab01b30e36f426fc14b8adb2a979885c2401fa418c2',0,1,'2022-03-22 16:12:15',NULL,'2022/03'),(2738,246,'Version','Demo_VpiUaClient_Manu2_Release_IPV4_64bits.zip','220323124536_Demo_VpiUaClient_Manu2_Release_IPV4_64bits.zip',8508980,'application/x-zip-compressed','260394ad7e558ea5688b47181462d4af094069e9926338e61e90cee2b62bca13',3,1,'2022-03-23 12:45:36','','2022/03'),(2739,278,'Version','Demo_VpiUaClient_Manu2_Release_IPV4_64bits.zip','220323124536_Demo_VpiUaClient_Manu2_Release_IPV4_64bits.zip',8508980,'application/x-zip-compressed','260394ad7e558ea5688b47181462d4af094069e9926338e61e90cee2b62bca13',6,1,'2022-03-23 12:46:21','','2022/03'),(2740,246,'Version','TEST MARC MARS.zip','220323140749_7bcc50352e5c13f301262095d74ccf12.zip',282654,'application/x-zip-compressed','04510a54a69fa0e890f9e3b22069d0586f2dedde9953998fe2ce9993895cdf3f',1,496,'2022-03-23 14:07:49','','2022/03'),(2743,764,'Issue','Maquette SampleData.zip','220323165506_031761bcca135ad237b49b24afb9ab84.zip',11238539,'application/x-zip-compressed','b9d9e775ef8cb02232dafcced649a77eb13ec41bbe46457140f2729b321c546c',0,432,'2022-03-23 16:55:06','','2022/03'),(2745,143,'Version','DemoMqttSubscriber_Debug_SK.zip','220324102222_DemoMqttSubscriber_Debug_SK.zip',3482665,'application/x-zip-compressed','4091d31a6331a3512be93dc3a96d7e32b9e254fb7db9d160c7ee166edc7ad400',1,1,'2022-03-24 10:22:22','','2022/03'),(2746,280,'Version','XiMulator_1.0.2.3_v1.0.4.1.zip','220322104243_XiMulator_1.0.2.3_v1.0.4.1.zip',1237892,'application/x-zip-compressed','20c5849c0e02cbfa958518128285bfb79ba3d15778206d0f62a2ba04e03a0c07',10,1,'2022-03-24 13:21:56','','2022/03'),(2747,276,'Version','Session 3 - Modelisation OPC UA.pdf','220324134355_f94de6ad35f183cb32034eb461139164.pdf',4611363,'application/pdf','15abd56d7d1c83b4a16013f713da702c5369fb42a7ea063a937b65185d46854a',6,1,'2022-03-24 13:43:55','','2022/03'),(2748,281,'Version','2530 - Bilan Formation OPC 2 Jours.pdf','220324135717_a536b9737f35bbac49a60e55f3039b4c.pdf',297760,'application/pdf','fbc39c90f6c7cf3cbf7c2974a505b3dc8836cf10cd8fdfcc94e9c12f2c9e65f8',10,1,'2022-03-24 13:57:17','','2022/03'),(2749,280,'Version','OPCUA_Profile.xml','220316153900_OPCUA_Profile.xml',3589,'text/xml','61dfc487955bdebd8fee30a7d2882d54f13c2454d09e4006ba4311449780c91a',9,1,'2022-03-24 14:16:11','','2022/03'),(2750,276,'Version','Opc.Ua.NodeSet2.Tricycle.xml','220324144602_Opc.Ua.NodeSet2.Tricycle.xml',15985,'text/xml','f60717bd15d57d1ab3d539957435a9361b1ce458833b23ad1d6f07607466e56f',2,540,'2022-03-24 14:46:02','','2022/03'),(2751,280,'Version','SIOME2.3.zip','220119145132_SIOME2.3.zip',72716313,'application/x-zip-compressed','8a6a4d9c2f0dc3e4da15bb406e071a78aaef203f40ac9a8b9249c93c9a050570',11,1,'2022-03-24 14:57:35','','2022/01'),(2752,NULL,NULL,'Process Flow Diagram.xlsx','220324172147_54966fedaddc4e27df8b19fa104811dd.xlsx',355305,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','103ae421e2146571f253a4bc217b11e559de8e59fa909211bfbff1e016b50af1',0,531,'2022-03-24 17:21:47',NULL,'2022/03'),(2754,255,'Version','220216(yymmdd)_Process Flow Diagram.xlsx','220324174605_89e5c5027dab853448532394791bf278.xlsx',368534,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','2f9ec3585e0985df7881918b76504afbf69d9fa69fd05cfa08b58c0e4fbcee4d',2,532,'2022-03-24 17:46:05','','2022/03'),(2755,772,'Issue','Logs - Freeze Server.zip','220325092232_6958d88f974bc3fdf27f8340aac647a2.zip',76248,'application/x-zip-compressed','1aeb8b274d3fc2e132e934ad2117b5305e26c886f8805b09b99caf5dec7d92d1',0,432,'2022-03-25 09:22:32','','2022/03'),(2761,279,'Version','XiMulator_1.0.2.3_v1.0.4.2.zip','220327212140_XiMulator_1.0.2.3_v1.0.4.2.zip',1239349,'application/x-zip-compressed','6f98f929ed7af3c19692d43f9776756a865d6047f6048c88d419ecee477c7276',0,1,'2022-03-27 21:23:51','','2022/03'),(2765,774,'Issue','PD-Mixer.gif','220328093854_PD-Mixer.gif',72467,'image/gif','2c3cdd4a511171cd7e079373703f574638c53c3b06df3ccc35944299392e3511',0,533,'2022-03-28 09:38:54','','2022/03'),(2766,774,'Issue','edge-position-control-system01.jpg','220328094316_edge-position-control-system01.jpg',60197,'image/jpeg','1b79f88444554f039e9c7595735c61a46f75062d0e817fcf44decb5393959c4f',0,533,'2022-03-28 09:43:16','','2022/03'),(2767,773,'Issue','clipboard-202203281022-j6oxu.png','220328102253_clipboard-202203281022-j6oxu.png',3743,'image/png','891c0027238eb31cc98a3fab0195695a1a7dd6218520868292fee24b7ea36e45',0,447,'2022-03-28 10:22:53','','2022/03'),(2769,776,'Issue','clipboard-202203281635-akkf1.png','220328163504_clipboard-202203281635-akkf1.png',22034,'image/png','6cf0a2f8c39e7d34dd2446f08c27d775a38d6a388d6ad1d1526d0421544351c4',0,424,'2022-03-28 16:35:04','','2022/03'),(2770,776,'Issue','clipboard-202203281644-zw1cr.png','220328164425_clipboard-202203281644-zw1cr.png',90421,'image/png','83b070088f2dc48f9d34be80f55be420f1c699f73ad60eb6f02793496a071f09',0,424,'2022-03-28 16:44:25','','2022/03'),(2771,776,'Issue','HiveMq-00150.log','220328165152_HiveMq-00150.log',278,'text/plain','0e296e87614e3f1613b3c40cf63aceb8eac73773c6f99f150af23bd6305c09f1',0,424,'2022-03-28 16:51:52','','2022/03'),(2772,776,'Issue','DemoMqttSubscriber.log','220328165200_DemoMqttSubscriber.log',87806,'text/plain','3694fbf778b747d2442fb785e4cf526e62a895964cbb6aaaada1e38ca2238d19',0,424,'2022-03-28 16:52:00','','2022/03'),(2773,776,'Issue','wireshark.tcpdump','220328165204_wireshark.tcpdump',64648,NULL,'80edcd38cd2943f3c0eabd10967fc2ea76e1c96e5e26397203cf2ff528d00555',0,424,'2022-03-28 16:52:04','','2022/03'),(2774,776,'Issue','clipboard-202203281746-ltjwq.png','220328174624_clipboard-202203281746-ltjwq.png',25420,'image/png','e04a17731fef6ed6db82149f5789cdaa99aa62a0805187d7c3e587481fabc673',0,424,'2022-03-28 17:46:24','','2022/03'),(2775,776,'Issue','1.zip','220328180217_1.zip',6023,'application/x-zip-compressed','d2a1bcbdf44ea02e532b073f35024b79ae3050d48598f658788b54cc04a63475',0,424,'2022-03-28 18:02:17','','2022/03'),(2776,776,'Issue','2.zip','220328180217_2.zip',7242,'application/x-zip-compressed','9d9e9291a4021178b972f070bef1e912aa0ba20c508f5214a03eb2d51e061c5f',0,424,'2022-03-28 18:02:17','','2022/03'),(2780,237,'Version','XiMulator_1.0.2.3_v1.0.4.4.zip','220328185409_XiMulator_1.0.2.3_v1.0.4.4.zip',1239782,'application/x-zip-compressed','a9c59f76aadc8460b19d73458416b70cfb04aac8322e05ed5cff1d7c091a746c',2,1,'2022-03-28 20:11:13','','2022/03'),(2782,234,'News','S7-00150.dat','220329002506_S7-00150.dat',171,'text/plain','f3593284f6ee4285df6c42fae5dcf7c8b827e73fc0dec8f1cb94500f4a7db698',0,1,'2022-03-29 00:25:06','','2022/03'),(2783,287,'Version','Evaluation prerequis - Questionnaire OPC d_entrée.pdf','211202210826_4a5a176e4a9d31bad2d71dc43b6e6f11.pdf',204110,'application/pdf','5e8f28ac82dd9645ed3ee54bbf42413426fcacf3354f5abf4ab7ae793884d141',7,1,'2022-03-29 08:49:48','','2021/12'),(2784,285,'Version','Evaluation prerequis - Questionnaire OPC d_entrée - YB.pdf','220329091756_9ddfb3b758460d0c40b41ee71ff810ca.pdf',212750,'application/pdf','b73557d53e4bd9f2d75ef9b0bbd2d8a22d354ec6fc23bbd34e9e5a200a89ad17',4,553,'2022-03-29 09:17:56','','2022/03'),(2785,104,'Project','Evaluation prerequis - Questionnaire OPC d_entrée RH.pdf','220329092233_36e33954f45d858bc3e3f163c048eb6d.pdf',896117,'application/pdf','1a8558a9055e6fbab349a203d49ee05dc8a67875d5b06130fce034dafa911fb9',3,554,'2022-03-29 09:22:33','Evaluation RH','2022/03'),(2786,104,'Project','MR-Editag-Evaluation prerequis - Questionnaire OPC d_entrée.pdf','220329092651_770fdd08fd62674110ae5928da189209.pdf',465041,'application/pdf','03d535e486e1427b6095f36e67f6d55de98d4a213f45eb124067a9ec78eea83f',1,555,'2022-03-29 09:26:51','','2022/03'),(2787,104,'Project','Evaluation prerequis - Questionnaire OPC d_entrée-CD.pdf','220329093143_50decac616ce6b82d11aaff8aaa3839a.pdf',793618,'application/pdf','6372937cc0ac0ca810b6ebb537e8a323f4f416546543db9ae59bf139d99f4620',1,557,'2022-03-29 09:31:43','','2022/03'),(2788,104,'Project','Evaluation prerequis - Questionnaire OPC d_entrée_PMoreau.pdf','220329093159_5a96e0c97a4aec36ef90ea266813122c.pdf',906032,'application/pdf','7475ed7b3f3d5fd7c34649f801432a97b730c92764365742802fe2065cf91428',1,556,'2022-03-29 09:31:59','','2022/03'),(2789,284,'Version','Evaluation prerequis - Questionnaire OPC d_entrée_EG.pdf','220329094617_121b7572edff2e2d07970156d123b36e.pdf',486160,'application/pdf','4d0eaadca0fd46b1574b430456a3046a00790ea6e0dd1019565ca8329e6dc0a6',1,558,'2022-03-29 09:46:17','ERiC GATTO','2022/03'),(2791,284,'Version','Members.xlsx','220329094943_Members.xlsx',11715,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','e184a28884d507859955a98f8656a209c22948e817accbe227b57ec0e9a30bf4',1,1,'2022-03-29 09:49:43','','2022/03'),(2794,285,'Version','DemoLua_Release.zip','220329133317_DemoLua_Release.zip',2407941,'application/x-zip-compressed','b883e19b2f0d764bc52e2a30843e9e57cefa1134afa185c907bedcce722c6c4f',7,1,'2022-03-29 13:33:17','','2022/03'),(2795,285,'Version','uaexpert-bin-win32-x86-vs2008sp1-v1.6.1-424.exe','220329133351_uaexpert-bin-win32-x86-vs2008sp1-v1.6.1-424.exe',21188026,'application/x-msdownload','faa3be8fd7de93a6ba5c76a20449471ea5fa6fae785888b5ce911b8969ed1eaa',6,1,'2022-03-29 13:33:51','','2022/03'),(2796,779,'Issue','Logs (2).zip','220329141929_7be5d17cfc8f09682d956fce1427f1a4.zip',6335,'application/x-zip-compressed','3b90eb6a9afcef077f5bfad7df0bfe5015bcaca646bdcf6d1b27f6d98a612dc7',0,432,'2022-03-29 14:19:29','','2022/03'),(2797,779,'Issue','clipboard-202203291420-yrspz.png','220329142042_clipboard-202203291420-yrspz.png',67031,'image/png','da90fe0690f53e056c916d8f2ddce290ced2d76052d02e62e15bd548de8812a7',0,432,'2022-03-29 14:20:42','','2022/03'),(2798,779,'Issue','clipboard-202203291421-0c15q.png','220329142107_clipboard-202203291421-0c15q.png',16518,'image/png','8122dda481e4dd63c873d277e3d1524726d37c1c3e49c768b082c9d448f14fe3',0,432,'2022-03-29 14:21:07','','2022/03'),(2799,779,'Issue','clipboard-202203291423-rm9sp.png','220329142342_clipboard-202203291423-rm9sp.png',12326,'image/png','75e71ab3878929fd8f2dd26c8d43365e27a620587b47954a3a575d2a41886d74',0,432,'2022-03-29 14:23:42','','2022/03'),(2800,284,'Version','Presentation de la technologie OPC - Matin.pdf','220329152551_256adfb1527578f60d037a17d0b628c2.pdf',4251490,'application/pdf','a5efa5002b0ea1c7fc60d2063cd06de0117ab1b9e5341a155d358a53e783653e',5,1,'2022-03-29 15:25:51','','2022/03'),(2801,284,'Version','Presentation de la technologie OPC-Après-midi.pdf','220329152603_150c808d8091eeaae22f6e37bcee1178.pdf',3669605,'application/pdf','72b397caa24a7674c8debe21d28326227aa755b592fad6fc80f5ea9743201323',5,1,'2022-03-29 15:26:03','','2022/03'),(2802,284,'Version','Manuel de l_utilisateur-v1.04.pdf','220303155540_51d8861dc8153415da5707b070053370.pdf',1110324,'application/pdf','413a2bb7bd258f83d3e4f4681bf20a328588d03920b6262b952dcebcdafe2ea6',8,1,'2022-03-29 16:13:20','','2022/03'),(2803,287,'Version','2410 - Bilan Formation OPC 1 Jour.pdf','220225163704_afd1183d905bbf4d7154a028799d5096.pdf',297505,'application/pdf','62d9e404b5aa966e4673a6792ac5a8af379b65a54d5790e55a7e3bcb8d959db4',4,1,'2022-03-29 16:41:05','','2022/02'),(2804,287,'Version','OPCUA_MQTT_Payload.json','220329164548_OPCUA_MQTT_Payload.json',1639,'application/json','392a59d648a3d81e6b05f39824953708fbb67059ea77fe0d4262b7ac14c9b7f5',4,1,'2022-03-29 16:45:48','','2022/03'),(2805,287,'Version','Openssl-bio-fetch.tar.gz','220329164548_Openssl-bio-fetch.tar.gz',35671,'application/x-gzip','dc5dbe7885cfe67a82244ed07beebfa958a84de6c0ccd62de02c821d43351a20',3,1,'2022-03-29 16:45:48','','2022/03'),(2806,284,'Version','Editag.drawio','220329164711_Editag.drawio',2870,NULL,'dde67537c1c26d02df7ceb1ecb201428e308bb9eabeceb89d6075c6eac1c3f16',3,1,'2022-03-29 16:47:11','','2022/03'),(2810,776,'Issue','3.zip','220329181644_3.zip',6754,'application/x-zip-compressed','7d941331e3dc45155cd2ebeb6226cb48f343763de4b7a88162946c0579bf7485',0,424,'2022-03-29 18:16:44','','2022/03'),(2811,163,'Version','Opc.Ua.NodeSet2.Part14.xml','220329215400_Opc.Ua.NodeSet2.Part14.xml',591256,'text/xml','bd936cfba30c380bf4b8161c87b00b4c6c01ed89289f3df46e1bfaf5671d04a5',2,1,'2022-03-29 21:54:00','','2022/03'),(2812,253,'Version','LogicalModel_Imerys-V1.0.8.eapx','220330135723_LogicalModel_Imerys-V1.0.8.eapx',3108864,NULL,'00bac58c3cd5a3798a4f384a72ac4c19990ab4f287d82e01b73e4fb36df99b54',6,1,'2022-03-30 13:57:23','','2022/03'),(2813,781,'Issue','13249Y01 Rev0 Cathode_Preliminary.pdf','220330144035_9f85cf72a08a38d506b52096a9db0043.pdf',292860,'application/pdf','b9a85ceadf98e29c5ae585f56aba52efa1357876ff67f44607fa23be9cfb28fd',0,533,'2022-03-30 14:40:35','','2022/03'),(2814,781,'Issue','13250Y01 Rev0 Anode_Preliminary.pdf','220330144106_efa0d2c2e25635aeb456ab4dcec085aa.pdf',250617,'application/pdf','7d73f0b875c09ec7ce750f24734a3368115fda183957ff2dd29df7685029e300',0,533,'2022-03-30 14:41:06','','2022/03'),(2815,259,'Version','Verkor-Logical_v0.0.0.1.eapx','220330151327_Verkor-Logical_v0.0.0.1.eapx',2732032,NULL,'4f90316362430e627023d3fbda00a1a5e711b5f30311fe47f24d82fb7d4eb20a',0,1,'2022-03-30 15:13:27','','2022/03'),(2816,162,'Version','VPIS7d_v1.0.1.6.zip','220329170820_VPIS7d_v1.0.1.6.zip',60198,'application/x-zip-compressed','be07da2ab335ebfab17a2e0494a6cd0232fa9c97ac306d24f358d09102769f3b',1,1,'2022-03-31 12:06:42','','2022/03'),(2817,259,'Version','Verkor-Logical_v0.0.0.2.eapx','220331153221_Verkor-Logical_v0.0.0.2.eapx',2789376,NULL,'8b8b35f17849aab29ffbe412eb3c18fc51b119947108b76f24c38727912c7a01',0,1,'2022-03-31 15:32:21','','2022/03'),(2818,143,'Version','Mqtt_Demo_Linux.zip','220331161545_Mqtt_Demo_Linux.zip',14020666,'application/x-zip-compressed','0df71e2b78b4707de4d7c4020cd9c73852a7b00802de800c7b7fd976b9386f03',1,1,'2022-03-31 16:15:45','','2022/03'),(2819,141,'Version','OpenOpcUa_1_0_7_0_SK_31-03-2022.zip','220331161619_OpenOpcUa_1_0_7_0_SK_31-03-2022.zip',8970158,'application/x-zip-compressed','2926d70758b6ac557cc83b90fffde216607c746e88de2f1a515bb9d0dcf9e0d2',1,1,'2022-03-31 16:16:19','','2022/03'),(2823,785,'Issue','4.zip','220404121112_4.zip',3864,'application/x-zip-compressed','2edcd029ea9ce7da1c0adf866f0096d82f73fcd4ffd79882e416b997dbbafad4',0,424,'2022-04-04 12:11:12','','2022/04'),(2824,785,'Issue','6.zip','220404121112_6.zip',3414,'application/x-zip-compressed','5949747d6ad14a2969d39bbf6c08366d51d78ac4fca4f5520c027c2fb62ea0de',0,424,'2022-04-04 12:11:12','','2022/04'),(2825,785,'Issue','7.zip','220404121112_7.zip',3667,'application/x-zip-compressed','f1d9418e24d2e9534c66f47e4a3a5cb5316d53a33f8e6aadd08f41c53ab7b034',0,424,'2022-04-04 12:11:12','','2022/04'),(2826,786,'Issue','Capture.JPG','220404121525_Capture.JPG',23701,'image/jpeg','0e7e5dfa68bedcc944b4db9f9f383afcf1c037c97af19f0d004cebae96fd993d',0,424,'2022-04-04 12:15:25','','2022/04'),(2827,242,'Version','VpiValuesInitd_v0.0.1.0.zip','220404133451_VpiValuesInitd_v0.0.1.0.zip',41027,'application/x-zip-compressed','d18bee9ae6188bb35160c310603da6a4c57718768a533c7c265b4f2f768060f4',1,1,'2022-04-04 13:34:51','','2022/04'),(2828,241,'News','clipboard-202204041402-o4eqz.png','220404140238_clipboard-202204041402-o4eqz.png',138477,'image/png','55812cd9191fd199a5ee87e5c7128e6254e8f6b5727006cd3c376ae2fd8b5acb',0,1,'2022-04-04 14:02:38','','2022/04'),(2829,787,'Issue','VpiValuesInit-25000.log','220404144813_VpiValuesInit-25000.log',320,'text/plain','a6dc06fac55ce954d2c2db2214abb2456c8333f489641b92698c34dd606e75f4',0,489,'2022-04-04 14:48:13','','2022/04'),(2830,176,'Version','FortiClientVPNOnlineInstaller_7.0 (1).exe','220404150222_105541f80613f0807cb6de555ec46ead.exe',3004032,'application/x-msdownload','d9879ec8b0eb1fc3d47c2476198cee8c9b56ca733e89634f6fe13b405508a6f5',2,447,'2022-04-04 15:02:22','','2022/04'),(2831,787,'Issue','VpiValuesInit-25000.log','220404152402_VpiValuesInit-25000.log',1609,'text/plain','9c24bc3dfda073597f8c27a162137ad620e8bfc37c472643b24fe758f143cde4',0,489,'2022-04-04 15:24:02','','2022/04'),(2832,255,'Version','Verkor VIC Slurry Mixing Line_PFD_220318_V11.dwg','220404172356_c126da1b4f94eb1488655ca241019d8d.dwg',1468345,'image/vnd.dwg','72379842634d45082a76c03f54cf2b834a898abd31868f2c0fb6ff107e65c61c',0,532,'2022-04-04 17:23:56','','2022/04'),(2833,242,'Version','VpiValuesInitd_Version_0.0.1.1.zip','220404183559_VpiValuesInitd_Version_0.0.1.1.zip',41232,'application/x-zip-compressed','08f01886f0476a399f946ed4ad56a4c5f8710d63878d4d283c7a185ac1c67fdd',1,1,'2022-04-04 18:35:59','','2022/04'),(2834,242,'Version','VpiValuesInitd_Version_0.0.1.2.zip','220404192733_VpiValuesInitd_Version_0.0.1.2.zip',41332,'application/x-zip-compressed','b3d645730420b05f08d1930a9411717bec90cfc7e3f9968337c463a575353715',1,1,'2022-04-04 19:27:33','','2022/04'),(2835,269,'Version','ChromeSetup.exe','220405114242_ChromeSetup.exe',1343320,'application/x-msdownload','a96d9f04b80845b4facf1c5a448d25b48a3acf42cc1581e9ca8cadd77ba555ea',1,1,'2022-04-05 11:42:42','','2022/04'),(2838,267,'Version','uaexpert-bin-win32-x86-vs2008sp1-v1.6.1-424.exe','220329133351_uaexpert-bin-win32-x86-vs2008sp1-v1.6.1-424.exe',21188026,'application/x-msdownload','faa3be8fd7de93a6ba5c76a20449471ea5fa6fae785888b5ce911b8969ed1eaa',1,1,'2022-04-05 14:12:33','','2022/03'),(2839,267,'Version','InetumTransferImerys0504v3BackToProd.zip','220405143126_InetumTransferImerys0504v3BackToProd.zip',16207798,'application/x-zip-compressed','f62ceaccd1b8ab771a31077de85bdcc73507d711bfd4ee90ee4b2c26330f084f',2,432,'2022-04-05 14:31:26','','2022/04'),(2840,788,'Issue','10.zip','220405144018_10.zip',6503,'application/x-zip-compressed','41d377189116eadc8cba5c4656b395a15c3feb85034bc83fcedd5dd74d91f2f2',0,424,'2022-04-05 14:40:18','','2022/04'),(2841,788,'Issue','9.zip','220405144018_9.zip',6896,'application/x-zip-compressed','fe770549e4fab69d799a5ccafc9482d7087b671b9afe1e047bd9cc360731b10d',0,424,'2022-04-05 14:40:18','','2022/04'),(2844,259,'Version','Verkor-Logical_v0.0.0.3.eapx','220405153206_Verkor-Logical_v0.0.0.3.eapx',2789376,NULL,'a7afbc55d7901bba11b38454a0e33549b809f6c09c61c41a2d47fb0990c5874a',1,1,'2022-04-05 15:32:06','','2022/04'),(2845,787,'Issue','OneDrive_1_05-04-2022.zip','220405172449_OneDrive_1_05-04-2022.zip',23024499,'application/x-zip-compressed','2db8c0d02f19b1282df3159661ec3b19099489a8cf3203681be657e9ae3ac43b',0,447,'2022-04-05 17:24:49','','2022/04'),(2846,787,'Issue','clipboard-202204051725-mt8op.png','220405172533_clipboard-202204051725-mt8op.png',146480,'image/png','cefa8b113b44787d994a28373b61dac92b621bda03d0e11889a896a8e8223e08',0,447,'2022-04-05 17:25:33','','2022/04'),(2847,259,'Version','Verkor-Logical_v0.0.0.4.eapx','220406155910_Verkor-Logical_v0.0.0.4.eapx',2789376,NULL,'f47398751c07a6bda19e05a10cb9066d6387b5a4dab6aac4fe59b3b1b66165ae',2,531,'2022-04-06 15:59:10','Added comments to coating model.','2022/04'),(2848,255,'Version','Verkor VIC Slurry Mixing Line_PFD_220406_V14.dwg','220406160554_359b7bd3a40ac669b3b5f6da91d09deb.dwg',27404704,'image/vnd.dwg','d6455115c8319e0b5a877e60accc54a48deb541ba70724733621fad575703acb',2,531,'2022-04-06 16:05:54','','2022/04'),(2849,255,'Version','Mixing_Docs_V1.zip','220406160659_Mixing_Docs_V1.zip',4736737,'application/x-zip-compressed','2c57f937d80619d6a435872bbae239b4e48e5dd5443466562ea9d052e2373e0e',0,531,'2022-04-06 16:06:59','','2022/04'),(2850,259,'Version','Verkor-Logical_v0.0.0.5.eapx','220406175902_Verkor-Logical_v0.0.0.5.eapx',2854912,NULL,'60e3f1df856251df8ad9421fb74a2ffb310e3073d2c79406a516d3d6af93059c',0,1,'2022-04-06 17:59:02','','2022/04'),(2851,791,'Issue','clipboard-202204062040-ubfpr.png','220406204041_clipboard-202204062040-ubfpr.png',29566,'image/png','4d5aa4be4485218010013b71b2c749a60cc38e5078fe8c088352b5f9d2c05a03',0,432,'2022-04-06 20:40:41','','2022/04'),(2852,791,'Issue','Ticket0604.zip','220406210845_Ticket0604.zip',36413514,'application/x-zip-compressed','a83814608a2ad0129b94298a6dfe18b7f5ac94b409aada5f39cfff960f2dc26b',0,432,'2022-04-06 21:08:45','','2022/04'),(2853,759,'Issue','VpiS7Logs.zip','220407115743_VpiS7Logs.zip',5510,'application/x-zip-compressed','2571b56bd5044b09fbf7fdaced22aaab0ee7af778591792e5a643866e1e316d0',0,432,'2022-04-07 11:57:43','','2022/04'),(2854,759,'Issue','demo_ImerysDebugTicket759.zip','220407115745_demo_ImerysDebugTicket759.zip',17584448,'application/x-zip-compressed','21b8ff75bf527ac27cc630fb07eec78298bedecfcc7926c1fae14a0b16d9ef75',0,432,'2022-04-07 11:57:45','','2022/04'),(2855,282,'Version','MergeConfigModel_.xsd','220408142154_MergeConfigModel_.xsd',28796,'application/xml','93e8e6f074410656e7f008d1263c97946e1851e26c022449c88772377b42170f',2,550,'2022-04-08 14:21:54','merges des XSD de configuration Qual@xy','2022/04'),(2857,282,'Version','Swagger api tool.txt','220408142757_373537c62ffc5a6ad5ab36cc06958618.txt',135,'text/plain','fd6f4321707ec48033f52b083e4eae655fdc10ca82b4b42c04b877a82244f599',2,550,'2022-04-08 14:27:57','swagger api tool online','2022/04'),(2858,282,'Version','api1.1_V2.json','220408142823_api1.1_V2.json',121775,'application/json','d877f9fb36d03854c5e2d9eba7e2d7441450318e985949a9cf9d41ac1cf7a555',3,550,'2022-04-08 14:28:23','swagger api description avec les descriptions manquantes','2022/04'),(2859,288,'Version','SRS_Supplier_8-4-2022.zip','220408172336_SRS_Supplier_8-4-2022.zip',3851256,'application/x-zip-compressed','dea4e487bcf05e330bd34f9add54c6e86b744487e7c5f934ded69f9e85fe3de6',1,1,'2022-04-08 17:23:36','','2022/04'),(2860,259,'Version','Verkor-Logical_v0.0.0.6.eapx','220408180600_Verkor-Logical_v0.0.0.6.eapx',2854912,NULL,'bf079ce429ec63dd37b982501f14941aa519d7493ed8a3247d776ae28e42e4ed',0,1,'2022-04-08 18:06:00','','2022/04'),(2861,259,'Version','Verkor-Logical_v0.0.0.7.eapx','220411182213_Verkor-Logical_v0.0.0.7.eapx',2887680,NULL,'91f4e5faec1b6f05d82cf72a71ceb8730e70f0540570615297c00a1022b8327d',1,1,'2022-04-11 18:22:13','','2022/04'),(2862,284,'Version','NT_100743362_0108_KITTING_EXCHANGE_TABLE_V2.xlsx','220412091400_NT_100743362_0108_KITTING_EXCHANGE_TABLE_V2.xlsx',49372,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','3cf346d5e9e35d5931d89ab47a099c9e2789a00427c7a4ba262d7d18eb838902',3,553,'2022-04-12 09:14:00','','2022/04'),(2863,284,'Version','7022_Descriptif_Echanges_MES_v2.4.docx','220412091416_7022_Descriptif_Echanges_MES_v2.4.docx',1031251,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','94529e46903c8a45c56fe36a33f8b3537d1991b483ca1d5bbf7fb74182957a8f',3,553,'2022-04-12 09:14:16','','2022/04'),(2864,283,'Version','SIOME2.3.zip','220119145132_SIOME2.3.zip',72716313,'application/x-zip-compressed','8a6a4d9c2f0dc3e4da15bb406e071a78aaef203f40ac9a8b9249c93c9a050570',4,1,'2022-04-12 09:45:39','','2022/01'),(2865,269,'Version','InetumTransferImerysProdToBack1204v1.zip','220412094912_InetumTransferImerysProdToBack1204v1.zip',17351944,'application/x-zip-compressed','b65e45455b31c88362bfbb133ab73e190f3c4590d95ef995c84778e6bcccedec',1,432,'2022-04-12 09:49:12','','2022/04'),(2866,283,'Version','MaquetteEditag.zip','220412100604_MaquetteEditag.zip',2664433,'application/x-zip-compressed','712a860d7e5f213aa366d5d92a3f134a67e5a11c492f7acb3c7c37fa24e7ffaa',5,1,'2022-04-12 10:06:04','','2022/04'),(2867,283,'Version','Demo.uap','220412101524_Demo.uap',1910,NULL,'24e2d7e58ac8f3bd5da42f0ab4483cbcdb883a888c4b2401c90ce904e6210ccd',5,1,'2022-04-12 10:15:24','','2022/04'),(2869,283,'Version','Opc.Ua.Noset2.LokeosInstances.xml','220412140356_Opc.Ua.Noset2.LokeosInstances.xml',24317,'text/xml','cf42140fdbc7356aed5246aa9e9a8e76665a1176a121f6d077b1dc089e1de369',3,1,'2022-04-12 14:03:56','','2022/04'),(2870,285,'Version','VC_redist.x64.exe','220412143128_VC_redist.x64.exe',25314320,'application/x-msdownload','37ed59a66699c0e5a7ebeef7352d7c1c2ed5ede7212950a1b0a8ee289af4a95b',2,1,'2022-04-12 14:31:28','','2022/04'),(2871,NULL,NULL,'OpenOpcUaConfigManager_Delivrable Beta_0.1.0_Release_x64.zip','220412143720_9d6bb2ff78994b90dbf8ccbf378e8436.zip',27476858,'application/x-zip-compressed','36109056d70b105d82cef8e427e9fa6bf362b283b5c5de22bd728e6cf5b3dec2',0,1,'2022-04-12 14:37:20',NULL,'2022/04'),(2872,289,'Version','OpenOpcUaConfigManager_Delivrable Beta_0.1.0_Release_x64.zip','220412143720_9d6bb2ff78994b90dbf8ccbf378e8436.zip',27476858,'application/x-zip-compressed','36109056d70b105d82cef8e427e9fa6bf362b283b5c5de22bd728e6cf5b3dec2',7,1,'2022-04-12 14:38:12','','2022/04'),(2874,254,'Version','XiMulator_1.0.2.3_v1.0.4.5.zip','220412144636_XiMulator_1.0.2.3_v1.0.4.5.zip',1240012,'application/x-zip-compressed','bcc7404f960bae0aeae307debeb86b8fe85b6e995464df1578da9674ce197eac',1,1,'2022-04-12 14:47:14','','2022/04'),(2877,205,'Version','OpenOpcUaConfigManager_Delivrable Beta_0.1.0_Release_x64.zip','220412143720_9d6bb2ff78994b90dbf8ccbf378e8436.zip',27476858,'application/x-zip-compressed','36109056d70b105d82cef8e427e9fa6bf362b283b5c5de22bd728e6cf5b3dec2',2,1,'2022-04-12 14:48:40','','2022/04'),(2878,182,'Version','OpenOpcUaConfigManager_Delivrable Beta_0.1.0_Release_x64.zip','220412143720_9d6bb2ff78994b90dbf8ccbf378e8436.zip',27476858,'application/x-zip-compressed','36109056d70b105d82cef8e427e9fa6bf362b283b5c5de22bd728e6cf5b3dec2',1,1,'2022-04-12 14:49:10','','2022/04'),(2880,283,'Version','Lokeos Nodeset.xml','220412145102_f0519964f19aa601084fc7099f6b4603.xml',60507,'text/xml','05c8151677209d8968a0477784f04e21027fd627ce7d76a029e60b10cafc1dc7',6,556,'2022-04-12 14:51:02','','2022/04'),(2882,269,'Version','InetumTransferImerysProdToBack1204v2.zip','220412150757_InetumTransferImerysProdToBack1204v2.zip',23373144,'application/x-zip-compressed','cc8f06f452657007dc9dc8cafcf23762b974d51393765260de984118f8a07ce0',1,546,'2022-04-12 15:07:57','','2022/04'),(2883,283,'Version','MaquetteEditag_12-04-2022.zip','220412154014_MaquetteEditag_12-04-2022.zip',2837539,'application/x-zip-compressed','ba91446bd0ef706296b109a685c26763254db604520cb72717ba4fba0a33c3aa',3,1,'2022-04-12 15:40:14','','2022/04'),(2884,284,'Version','Editag_12-04-2022.drawio','220412161635_Editag_12-04-2022.drawio',3870,NULL,'c50feaf41fabc8bf80f4c62aa5ac8ac488ec98a6db496013cc396a4e225d67fe',0,1,'2022-04-12 16:16:35','','2022/04'),(2886,269,'Version','InetumTransferImerysProdToBack1204v2Bis.zip','220412182854_InetumTransferImerysProdToBack1204v2Bis.zip',18872065,'application/x-zip-compressed','24531094f8d13ce7b9913e3451b7cc851eb7f28d9f8b01a71a2a0274a8a96c0e',1,546,'2022-04-12 18:28:54','','2022/04'),(2888,236,'Version','Maquette_ImerysParisDebug.zip','220412231100_Maquette_ImerysParisDebug.zip',18015279,'application/x-zip-compressed','9655419d27d7a193b47fd9ac71c771dc1225b09f20e0dc58ec8c8564df62e125',2,1,'2022-04-12 23:11:00','','2022/04'),(2890,290,'Version','FLAGSHIP-certificate.zip','220413001009_FLAGSHIP-certificate.zip',2503,'application/x-zip-compressed','1e402148664fa01cf163e733981f448773ac553956e984256b4693f5b941e783',3,1,'2022-04-13 00:10:09','','2022/04'),(2891,290,'Version','libiconv-2.zip','220413001646_libiconv-2.zip',921807,'application/x-zip-compressed','32ae3cecd20e8cebf3a58dfe29844f70e5f624bc67ac95a3663394d635b31bcc',2,1,'2022-04-13 00:16:46','','2022/04'),(2892,791,'Issue','Rotor1204.zip','220413101825_Rotor1204.zip',28247373,'application/x-zip-compressed','daf74def5b42d6f563b99fdb8380a26ef371c5e0157edaef39a0ff3da243ae98',0,432,'2022-04-13 10:18:25','','2022/04'),(2893,259,'Version','Verkor-Logical_v0.0.0.8.eapx','220413143457_Verkor-Logical_v0.0.0.8.eapx',2891776,NULL,'7399e76b1adb071a09a4ba1732e9e3ccdf667057b4958ae3811387bb87dccad1',1,531,'2022-04-13 14:34:57','','2022/04'),(2894,259,'Version','Verkor-Logical_v0.0.0.9.eapx','220413160126_Verkor-Logical_v0.0.0.9.eapx',2895872,NULL,'9134778b7a5c089f54b102763bb7a2b91fb5f7f2617c1b27966673656a03dbba',1,1,'2022-04-13 16:01:26','','2022/04'),(2895,798,'Issue','clipboard-202204131847-gjhka.png','220413184704_clipboard-202204131847-gjhka.png',665339,'image/png','6841b5c48262a999fefdc9421fedf633fbdb16c578bc3d72636a2f9e7260906b',0,489,'2022-04-13 18:47:04','','2022/04'),(2896,162,'Version','Livraison Binaires Debug-IPV6 - 14-04-2022.zip','220414112043_a1e610cc58015d28bf16ae4bebdd328d.zip',9879450,'application/x-zip-compressed','0964fc4ce39fc638a71049c477c56b19e57860e9509d19827d075c68d4a4b234',4,1,'2022-04-14 11:20:43','','2022/04'),(2897,259,'Version','Verkor-Logical_v0.0.1.0.eapx','220414150358_Verkor-Logical_v0.0.1.0.eapx',2899968,NULL,'f5194aa33ff9e420730e23bab9bdbe5e98cf36df6c7585f92b16401c158d61b1',0,1,'2022-04-14 15:03:58','','2022/04'),(2898,103,'Project','Optimu - CdC Connecteur Optimu eMotors 2022 04 11.pdf','220414161316_8855b9c5bb907407bbaf952b0f5aef82.pdf',2095916,'application/pdf','5e96f884eb6afd00b86100f6b55e0aaead24e47ba1b8d0719bd7de54be2af6ee',2,549,'2022-04-14 16:13:16','v1','2022/04'),(2899,103,'Project','Optimu_XmlFormat.xml','220414161821_Optimu_XmlFormat.xml',1485,'text/xml','2121c365d5af1828dd333dd1b159b3ebefea1c0c5c8dc35b251a56c429cb05b7',2,549,'2022-04-14 16:18:21','v2','2022/04'),(2900,103,'Project','Optimu Arborescence SFTP.docx','220414161952_2388f869ae90d18665bd8a5efa4eca60.docx',16040,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','9fc4390387a2874458318d7c5b34776d1ec128b8b3f0a002024b210f3a9b72a1',0,549,'2022-04-14 16:19:52','','2022/04'),(2901,282,'Version','api1.1.json','220414162037_api1.1.json',120066,'application/json','fc336250d29717a24b3f72546f6f3c27ea6aa784df4b2eed527925ea66f9f0fd',1,549,'2022-04-14 16:20:37','','2022/04'),(2902,282,'Version','Xsd_Qualaxy.zip','220414162057_Xsd_Qualaxy.zip',19819,'application/x-zip-compressed','8a076b66076d8d74e928a2daa395fb2ed8c22fc3c0b6e48cb1e1cfd7d2780ab4',2,549,'2022-04-14 16:20:57','','2022/04'),(2903,NULL,NULL,'_Imerys_line1_2_3_LastBinariesFrom4CE.zip','220414174809__Imerys_line1_2_3_LastBinariesFrom4CE.zip',16812318,'application/x-zip-compressed','c49b55db7c13abc37e48c850b83340e75e7402fe77b82dd614148a1aec25f5a9',0,546,'2022-04-14 17:48:09',NULL,'2022/04'),(2905,267,'Version','InetumTransferImerysProdToBack1404_L123_4CEBin.zip','220414183850_InetumTransferImerysProdToBack1404_L123_4CEBin.zip',17955158,'application/x-zip-compressed','628012dd0a8160470527f31f57c8fa9e54121b996eaab41d76cee24dc93f309a',1,546,'2022-04-14 18:38:50','','2022/04'),(2906,267,'Version','InetumTransferImerysProdToBack1504_L123_4CEBinV2.zip','220415095237_fadbd9536041c7a3a70fa5981baffaba.zip',17089200,'application/x-zip-compressed','fe4f231ad50e636ade8cddc7305d4fee5fe0d98b2c7d318eb2b49e811871267c',1,546,'2022-04-15 09:52:37','','2022/04'),(2907,267,'Version','InetumTransferImerysProdToBack1504_L123_4CEBinV3.zip','220415171531_50a131f0e67dcadaee87ea70d4e01620.zip',18219371,'application/x-zip-compressed','6a368136cdc4b3397393033478908520233de051e6174f611f6ffd36780132d2',1,546,'2022-04-15 17:15:31','','2022/04'),(2908,255,'Version','SupplierPresentation.pptx','220419163239_SupplierPresentation.pptx',46328,'application/vnd.openxmlformats-officedocument.presentationml.presentation','d51fe3794e77c0ca7c78064413ba28f5f6ca5933006f6aa17c854690e2f34d1b',1,1,'2022-04-19 16:32:39','','2022/04'),(2909,255,'Version','InternalUsePresentation.pptx','220419163259_InternalUsePresentation.pptx',59682,'application/vnd.openxmlformats-officedocument.presentationml.presentation','90ff0331dfebb3417c681faa29cdbd62341dab6ac13440d6656080a22b0d8766',1,1,'2022-04-19 16:32:59','','2022/04'),(2910,103,'Project','Emotor-LogicalModel-OPCUA_V2.24.eapx','220419171018_Emotor-LogicalModel-OPCUA_V2.24.eapx',6123520,NULL,'ad9641d94898c4b4bd1839e8b9395fa77ec2309a2fe45f7210b0bfbe9fb0eeb5',2,549,'2022-04-19 17:10:18','','2022/04'),(2911,291,'Version','PlmToMiddleWare.xml','220419193837_PlmToMiddleWare.xml',383,'text/xml','9f2b15f4a78d96e316eecf0c829b8230afa50544cc631dd8e0e474e7015e2e23',0,1,'2022-04-19 19:38:37','','2022/04'),(2913,292,'Version','Livraison Binaires Debug-IPV4 - 20-4-2022.zip','220420094601_134d5876fa03b8547f0287db26179686.zip',13627100,'application/x-zip-compressed','05f64fd5554067d78da105ff7aa564302f2004620476348faf0b51d69ed47fdc',3,1,'2022-04-20 09:47:05','','2022/04'),(2914,807,'Issue','Ticket Ximulaotor 20 04.zip','220420181221_8fd1c4a273a6989d8758f57e7ced8b6b.zip',292102,'application/x-zip-compressed','1d8bfc4bb289f9722bba700da37bd2fd584a4eef9d29295a57d4a79bacfde86b',0,432,'2022-04-20 18:12:21','','2022/04'),(2916,103,'Project','Optimu_MiddlewareToGmm_XML_données_réelles.zip','220420191657_5cda51d3a5dda45cb8cefd70d58b777f.zip',2200,'application/x-zip-compressed','c38b3fb4c2ab3bcfa085b1572dc19bd24a9f9dc4c2e01827bd5366d5b9819c85',6,549,'2022-04-20 19:16:57','Fichiers horodatés ISO8601 MiddlewareToGmm','2022/04'),(2917,808,'Issue','clipboard-202204211057-weclf.png','220421105952_clipboard-202204211057-weclf.png',11688,'image/png','cefb9fc3e1344191771a2c4545c4bdadfc751ee344d5ada78eb6ae4688b6ea51',0,432,'2022-04-21 10:59:52','','2022/04'),(2918,809,'Issue','OOUA_IMERYS_MVP_C3_vfi.zip','220421123750_OOUA_IMERYS_MVP_C3_vfi.zip',17098180,'application/x-zip-compressed','716ab57a752e51b2f93b9cb782d226248626491f36b90bea65f164175ca644a6',0,432,'2022-04-21 12:37:50','','2022/04'),(2919,255,'Version','InternalUsePresentationV1.pptx','220421142202_InternalUsePresentationV1.pptx',61131,'application/vnd.openxmlformats-officedocument.presentationml.presentation','7f3c3b1d877c66b96aa5417230667f0d0a3a03c067d29b271387285851381817',1,1,'2022-04-21 14:22:02','','2022/04'),(2920,255,'Version','SupplierPresentationV1.pptx','220421142203_SupplierPresentationV1.pptx',47778,'application/vnd.openxmlformats-officedocument.presentationml.presentation','bf0ecfce56e8315aa55fd576bb71b1299bfab23f06cb1f2269bf4a0c62aa8a87',1,1,'2022-04-21 14:22:03','','2022/04'),(2921,259,'Version','Verkor-Logical_v0.0.1.1.eapx','220421150332_Verkor-Logical_v0.0.1.1.eapx',2899968,NULL,'67c7f9f944f5ce28de58ec09e3b90a1380a9f5eed9e1a9991999a5a1392093d0',0,1,'2022-04-21 15:03:32','','2022/04'),(2922,253,'Version','LogicalModel_Imerys-V2.0.0.eapx','220421201059_LogicalModel_Imerys-V2.0.0.eapx',3108864,NULL,'755d33ce7bd1a479955942f49519db4bb54694845c21bc55601953e72d9397f0',1,1,'2022-04-21 20:10:59','','2022/04'),(2923,293,'Version','BrainStormSCADA.pptx','220421205834_BrainStormSCADA.pptx',42006,'application/vnd.openxmlformats-officedocument.presentationml.presentation','3d9dc0ab982d054c71a6284b95043feb8249c9c3ef21a5e36e7cbd04b1a0574a',5,1,'2022-04-21 20:58:34','','2022/04'),(2924,267,'Version','InetumTransferImerysBack2Prod2204_v1.3.0.0.zip','220422091847_InetumTransferImerysBack2Prod2204_v1.3.0.0.zip',14709366,'application/x-zip-compressed','66d63e1fac34e44461b740e82a900ba5be4c0e56f49d494b5a8692c7e9c5b5c4',1,546,'2022-04-22 09:18:47','','2022/04'),(2925,269,'Version','Opc.Ua.NodeSet2.Part3.xml','220422103641_Opc.Ua.NodeSet2.Part3.xml',82928,'text/xml','f6caae91ea11664d221b5802d1f3bffb117799dc6d28bce0e2293e43347eca3c',2,546,'2022-04-22 10:36:41','','2022/04'),(2926,269,'Version','Opc.Ua.NodeSet2.Lixhe.xml','220422103703_Opc.Ua.NodeSet2.Lixhe.xml',872707,'text/xml','6b3df6553eb4d755e538a70c2ccf495eb383d5be16d8b68e510bb56b38cff1b4',1,546,'2022-04-22 10:37:03','','2022/04'),(2928,244,'Version','OpenOpcUa_1_0_7_0.zip','220422151235_OpenOpcUa_1_0_7_0.zip',8591052,'application/x-zip-compressed','45f9eb36bd5f3bc4a117ef3ec214983a64a2bddda1359cfd042f693e588f238e',1,1,'2022-04-22 15:12:35','','2022/04'),(2929,267,'Version','InetumTransferImerysProd2Back2204_v1.3.0.0.zip','220422170449_InetumTransferImerysProd2Back2204_v1.3.0.0.zip',15444705,'application/x-zip-compressed','9fe34e59969b9c6a532d25f05cbcc4d7362ce59451c293818e9fe23950588cfc',1,546,'2022-04-22 17:04:49','','2022/04'),(2930,810,'Issue','clipboard-202204221732-ivoq5.png','220422173227_clipboard-202204221732-ivoq5.png',415953,'image/png','5cc20c2f8b0d16baf718b563758f66ead1826c0a38d63f83a2f070ebdcfa152e',0,546,'2022-04-22 17:32:27','','2022/04'),(2931,810,'Issue','clipboard-202204221732-kl6rk.png','220422173245_clipboard-202204221732-kl6rk.png',205009,'image/png','97a2c5c895377015494c87a9332ca32b4f94c0a15aa4317ca43c2ef74720bb9c',0,546,'2022-04-22 17:32:45','','2022/04'),(2932,811,'Issue','Emotor-LogicalModel-OPCUA_V2.25.eapx','220423153727_Emotor-LogicalModel-OPCUA_V2.25.eapx',6123520,NULL,'ceb7159bafd33287768c4f36f184fbad8b8b85e7cd28eb6bb11862ff2ffdf47e',0,1,'2022-04-23 15:37:27','','2022/04'),(2933,812,'Issue','clipboard-202204251424-lb2dd.png','220425142749_clipboard-202204251424-lb2dd.png',32746,'image/png','9bd969da5d4a687cd3fe36020f7a57ea46a2a57db3d6e9bdeded01402805bcdc',0,432,'2022-04-25 14:27:49','','2022/04'),(2934,253,'Version','LogicalModel_Imerys-V2.0.1.eapx','220426170001_LogicalModel_Imerys-V2.0.1.eapx',3182592,NULL,'5d02595e33c582aae85642c2b7f99bc05e8441ded5a132c434aadcb0001a1d70',4,1,'2022-04-26 17:00:01','','2022/04'),(2935,259,'Version','Verkor-Logical_v0.0.1.2.eapx','220427161002_Verkor-Logical_v0.0.1.2.eapx',2916352,NULL,'345435f106fe4abcdcb33677ad474a7df53466d309623463e37963c46b4a3ac6',0,1,'2022-04-27 16:10:02','','2022/04'),(2936,813,'Issue','clipboard-202204271612-zs9t1.png','220427161242_clipboard-202204271612-zs9t1.png',116548,'image/png','2af937ad6625175b0a869b2963ceacd9bbb31b6403969a1f3d0286d6903050c9',0,1,'2022-04-27 16:12:42','','2022/04'),(2937,814,'Issue','clipboard-202204271615-ovmpv.png','220427161549_clipboard-202204271615-ovmpv.png',19734,'image/png','e72c405a8c23f6da3358503a7f9251382ba7fda3a5872a6cdd550e99466f0b09',0,1,'2022-04-27 16:15:49','','2022/04'),(2938,815,'Issue','clipboard-202204271616-jxsy9.png','220427161649_clipboard-202204271616-jxsy9.png',33738,'image/png','ff9ef7e724de114fb0f033226f91b031e41ad4a9a99f1044a851b061e5b7195a',0,1,'2022-04-27 16:16:49','','2022/04'),(2939,813,'Issue','clipboard-202204271628-nahyo.png','220427162718_clipboard-202204271628-nahyo.png',22500,'image/png','91504ff2fa8962c3648f71abd1ec042a48d9aa38f6d0e838788195af83de8cd5',0,533,'2022-04-27 16:27:18','','2022/04'),(2940,267,'Version','InetumTransferImerysProd2Back2804_v1.3.1.0.zip','220428093723_InetumTransferImerysProd2Back2804_v1.3.1.0.zip',15566445,'application/x-zip-compressed','724800598c480cd3cd2acdc3494feecd27014570a31b3edf755685500e608059',1,546,'2022-04-28 09:37:23','','2022/04'),(2941,259,'Version','Verkor-Logical_v0.0.1.3.eapx','220428103604_Verkor-Logical_v0.0.1.3.eapx',2932736,NULL,'5ed3bb2be8371ad766b1ce7ceb8b17e44805500308e4f519d4ae888bda277714',0,1,'2022-04-28 10:36:04','','2022/04'),(2942,269,'Version','VC_redist.x64 (2).exe','220412143128_VC_redist.x64.exe',25314320,'application/x-msdownload','37ed59a66699c0e5a7ebeef7352d7c1c2ed5ede7212950a1b0a8ee289af4a95b',1,546,'2022-04-28 20:01:21','','2022/04'),(2943,269,'Version','concrt140d.dll','220428200854_concrt140d.dll',762648,'application/x-msdownload','f57e8a67d918495d6a6bf0a7bffabaa12c9cf4b8378b55bd810a444d9b84a3cb',1,546,'2022-04-28 20:08:54','','2022/04'),(2945,269,'Version','msvcr120.dll','220429115650_msvcr120.dll',963744,'application/x-msdownload','0d00bf1756a95679715e93dc82b1b31994773d029fbbd4e0e85136ef082b86a9',2,546,'2022-04-29 11:56:50','','2022/04'),(2946,810,'Issue','msvcr120.dll','220429115650_msvcr120.dll',963744,'application/x-msdownload','0d00bf1756a95679715e93dc82b1b31994773d029fbbd4e0e85136ef082b86a9',0,546,'2022-04-29 12:39:57','','2022/04'),(2947,NULL,NULL,'InetumTransferImerysProd2Back2904_v1.3.2.0.zip','220429130429_InetumTransferImerysProd2Back2904_v1.3.2.0.zip',16049225,'application/x-zip-compressed','5010c76750b6b2aa09bec718914e0ad3553aed7a1ced589499d518392359b46d',0,546,'2022-04-29 13:04:29',NULL,'2022/04'),(2948,267,'Version','InetumTransferImerysProd2Back2904_v1.3.2.0.zip','220429130429_InetumTransferImerysProd2Back2904_v1.3.2.0.zip',16049225,'application/x-zip-compressed','5010c76750b6b2aa09bec718914e0ad3553aed7a1ced589499d518392359b46d',2,546,'2022-04-29 13:04:49','','2022/04'),(2951,103,'Project','EmotorsOptimuConnector1.0.0 avec fiches recette.zip','220429151328_49b4513f9e97a5c26904a99349818c4a.zip',1480202,'application/x-zip-compressed','9a565814cb7e9bad2d77730c21a0f412dcd1fc0d14da7248bfb0676e0f1002a8',5,551,'2022-04-29 15:13:28','','2022/04'),(2952,259,'Version','Verkor-Logical_v0.0.1.4.eapx','220429170522_Verkor-Logical_v0.0.1.4.eapx',2949120,NULL,'4582596061cdf41c59666dbce813638464432ae2efb48bdd2d65604651ae47e7',1,1,'2022-04-29 17:05:22','','2022/04'),(2953,820,'Issue','clipboard-202205011754-argrd.png','220501175440_clipboard-202205011754-argrd.png',8441,'image/png','0316047699872d6b675dec8f67451e2e1c7913e9d6b70197209f6079e00c34db',0,1,'2022-05-01 17:54:40','','2022/05'),(2954,255,'Version','(2022-04-13) Coater Alarms List.xlsx','220502140931_d4be2a32c4d9dd5e0da3db7469d37970.xlsx',21421,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','fab6c6e92d90653f85d1d10106dc31008aac095bfea1b19c95e6bd3277db9639',1,531,'2022-05-02 14:09:31','List of alarms for coating machine','2022/05'),(2955,255,'Version','(Verkor-PNT) Draft MES data list (25May2021) - VK comments.xlsx','220502140931_11faaf0477aed472a1d7b318cb5f76d9.xlsx',41155,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','fd7c472f49fb405ca7c807992473f1e62800a507f5fd9c314e64e2cc901ba3b6',0,531,'2022-05-02 14:09:31','PLC Tag list of coating machine','2022/05'),(2956,255,'Version','(2022-05-02) Calendering ALARM LIST.xlsx','220502141353_5ba06b0e0ebfd7ee8cfde2c960d93b48.xlsx',19828,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','e1aa6db03fc91de3b358635c273d9c5698194a45885cccce94e721034fa0ffe8',0,531,'2022-05-02 14:13:53','List of alarms for Calendering machine','2022/05'),(2957,255,'Version','20 - Calendering MES Data List - PNT-VK reviewed 14-04-22.xlsx','220502141353_c6630029604a12d5d4ae2649d17fd969.xlsx',33740,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','db5b52dc06fe2db17d887570843583b57303bb2a50a2b87c88e4db7e65be2537',2,531,'2022-05-02 14:13:53','PLC Tag list for Calendering machine','2022/05'),(2958,255,'Version','(2022-05-02) SLITTER ALARM LIST.xlsx','220502141354_22ca0a587575e6929b1efd0b0d0e304f.xlsx',18212,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','c3eacbefa5a2cc1bf084f4a83196af593adfb5a91a3453c58f756192eacd5930',0,531,'2022-05-02 14:13:54','List of alarms for Slitting machine','2022/05'),(2960,294,'Version','Presentation de la technologie OPC-Après-midi.pdf','220503161427_150c808d8091eeaae22f6e37bcee1178.pdf',3629831,'application/pdf','a670d8731a2a9bfc4754836e5d863dcb3170aa7001df67e98f5f7cce46a4eb6a',6,1,'2022-05-03 16:14:27','','2022/05'),(2961,294,'Version','Presentation de la technologie OPC - Matin.pdf','220503161427_256adfb1527578f60d037a17d0b628c2.pdf',4224510,'application/pdf','d06c9ada4e122d10fd67e402f7cc74671236487f3015efff672435bd6b90f862',8,1,'2022-05-03 16:14:27','','2022/05'),(2963,821,'Issue','OPC UA bug DataRequest.pptx','220503164738_0813b2d73af01e12f267d84267b5615e.pptx',751545,'application/vnd.openxmlformats-officedocument.presentationml.presentation','5819442b60ec883f2594be6d0de08c0b59d52a5b8a4f27b3a2b12f46851b549c',0,548,'2022-05-03 16:47:38','','2022/05'),(2964,259,'Version','Verkor-Logical_v0.0.1.5.eapx','220503172223_Verkor-Logical_v0.0.1.5.eapx',2949120,NULL,'1934ad078dd5e5e740c5cc06c4fe4932fffcf900300a344fb9ad152a6ad11218',2,1,'2022-05-03 17:22:23','','2022/05'),(2965,255,'Version','(Verkor-PNT) Draft MES data list (3May2022).xlsx','220503172308_14cd85f588f4375cdc0f9c5aadc636f1.xlsx',42320,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','a8a65d5ead49f53f632c144dd5ac0ddc324d75ed9d02ce16870c89498e29d2c7',1,1,'2022-05-03 17:23:08','','2022/05'),(2968,255,'Version','(Verkor-PNT) Draft MES data list (3May2022) - Mapping with OPC UA Model.xlsx','220503192218_d713e7316c0550c89adc5aaf78933a90.xlsx',46688,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','b78a0ca122da0a2f4cf1cc8f088a83f82991679bd891f648185463f0245722cf',2,531,'2022-05-03 19:22:18','Mapping done with comments','2022/05'),(2969,259,'Version','Verkor-Logical_v0.0.1.6.eapx','220503192319_Verkor-Logical_v0.0.1.6.eapx',2953216,NULL,'7912336d13e52a7db4f4312cdb973dc5cc24abb5102c34d8fc70332d737ece32',1,531,'2022-05-03 19:23:19','Mapping done with MES Data list. Need to review','2022/05'),(2970,295,'Version','Atelier1.zip','220504084406_Atelier1.zip',19874949,'application/x-zip-compressed','2b92733104b8d422f88abca119560712581c4690010c1dc665bcaa707a53a20e',4,1,'2022-05-04 08:44:06','','2022/05'),(2971,295,'Version','Atelier2.zip','220504084458_Atelier2.zip',56304017,'application/x-zip-compressed','487be9b3bc2aa5a3de859786273ddf37f68ade08c2cb26f6898ebcc248488f86',4,1,'2022-05-04 08:44:58','','2022/05'),(2972,295,'Version','Atelier3 - Demo-CSV-HA_Release_X64.zip','220322073745_Demo-CSV-HA_Release_X64.zip',4850704,'application/x-zip-compressed','7bbe4e07e54ac212e4ab606c0619ed404a9619441214548b367afc59a28af2ee',4,1,'2022-05-04 08:45:31','','2022/03'),(2973,295,'Version','Atelier4 -DemoAC_Release.zip','220504084551_6ad4d4c82d8540ab532955aa4fa3caa3.zip',2333893,'application/x-zip-compressed','437e44ca73173101e92bdb4d2a73b11845e34c3775fdfa89329cf8fcefe57505',5,1,'2022-05-04 08:45:51','','2022/05'),(2974,295,'Version','Atelier5-DemoVpiOs-x64_Release.zip','220504084614_Atelier5-DemoVpiOs-x64_Release.zip',2436355,'application/x-zip-compressed','9acb03e17b74930cdb3d52b5ecbcb183a2df170017cb8864cffb9537bda6b254',5,1,'2022-05-04 08:46:14','','2022/05'),(2975,35,'Version','OOUA_Binaires_IPV6_64bits.zip','220504150223_OOUA_Binaires_IPV6_64bits.zip',2536726,'application/x-zip-compressed','00392da2302f792b708147a69882c3d442f68ad6e173c01084ac5b06aafe6423',4,1,'2022-05-04 15:02:23','','2022/05'),(2976,294,'Version','Session 2 - Utilisation et Configuration OOUA.pdf','220504204725_13aa4cd2dac142f983c63578435b29e6.pdf',4064615,'application/pdf','ef6269d1e1fd7f60e64e70c525159d3d7d037fcdbcfd363ba9b9665807bb2c90',5,1,'2022-05-04 20:47:25','','2022/05'),(2978,255,'Version','OPCUA_Spec_1.0.4.zip','201201105151_OPCUA_Spec_1.0.4.zip',23295180,'application/x-zip-compressed','83cd660330a9f0b9d700b16075d69a191c4e3c07296e9309c73a5378b85e6f47',1,1,'2022-05-05 15:18:58','','2020/12'),(2979,259,'Version','Verkor-Logical_v0.0.1.7.eapx','220505160259_Verkor-Logical_v0.0.1.7.eapx',3018752,NULL,'d458307768c7f076c49025738791aeac5c5426e153e777556b22a49e9b59a995',0,1,'2022-05-05 16:02:59','','2022/05'),(2980,255,'Version','(Verkor-PNT) Draft MES data list (3May2022) - Mapping with OPC UA Model.xlsx','220505160319_d713e7316c0550c89adc5aaf78933a90.xlsx',48060,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','38bf945260ba0eaec5bb66ca5348d9ace0263080c9a81e4d6a42041b7087e7de',3,1,'2022-05-05 16:03:19','','2022/05'),(2981,255,'Version','(2022-04-13) Coater Alarms List.xlsx','220505160320_d4be2a32c4d9dd5e0da3db7469d37970.xlsx',20736,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','ebdc5cc914e58211bbacda3ea954ee4149de4d6026d0b90e99c66f243427c180',1,1,'2022-05-05 16:03:20','','2022/05'),(2982,244,'News','clipboard-202205051749-vckza.png','220505174959_clipboard-202205051749-vckza.png',31935,'image/png','75e8520240ecd8f63663badd465a66da75c5f8cb0b8b5ba185ac7746acc19794',0,1,'2022-05-05 17:49:59','','2022/05'),(2983,253,'Version','LogicalModel_Imerys-V2.0.2.eapx','220505181213_LogicalModel_Imerys-V2.0.2.eapx',3194880,NULL,'6b43862052ab38e7e7a5c042679e502a4984d58a9a810731667d74033b369d7d',2,1,'2022-05-05 18:12:13','','2022/05'),(2984,296,'Version','Maquette_OptimuLabo_V1.0.0.0_5-5-2022.zip','220505220111_Maquette_OptimuLabo_V1.0.0.0_5-5-2022.zip',3715112,'application/x-zip-compressed','deff44050489958ebb218a20449c67b68e2087d341bfd699ebc951ca54506ceb',5,1,'2022-05-05 22:01:11','','2022/05'),(2988,156,'Version','Livraison Binaires Debug-IPV4 - 6-5-2022.zip','220506131010_648298860bdefefcdebad3697d4fe6ae.zip',12368975,'application/x-zip-compressed','27afadca80400f9b2f28f29d7f9c11fa9d2f3d1b46e17bd848cc2467096f196b',1,1,'2022-05-06 13:10:10','','2022/05'),(2989,251,'Version','XiMulator_1.0.2.3_v1.0.4.5.zip','220412144636_XiMulator_1.0.2.3_v1.0.4.5.zip',1240012,'application/x-zip-compressed','bcc7404f960bae0aeae307debeb86b8fe85b6e995464df1578da9674ce197eac',2,1,'2022-05-06 13:37:12','','2022/04'),(2991,252,'Version','Model_6-5-2022.zip','220506142301_Model_6-5-2022.zip',3121605,'application/x-zip-compressed','2395868e8398bdaf87c41dd2b985432ab8d9cc07cbbe5e6936e0314fb486434d',2,1,'2022-05-06 14:23:01','','2022/05'),(2993,249,'Version','Manuel de l_utilisateur VpiUaClnt_1.0.2.3.pdf','211008163534_b4d8ae4d1aea057a86e202254bc5a396.pdf',404224,'application/pdf','e2941c38699d64ff07e075bb88c1ada204aaf35696a2e9d7600fe1170861bce3',7,1,'2022-05-06 14:41:21','','2021/10'),(2995,251,'Version','Livraison-Release-IPV4-6-5-2022.zip','220506150024_Livraison-Release-IPV4-6-5-2022.zip',1150445,'application/x-zip-compressed','57586a41aa252465b9f2edfa08fc6a57f75101130c78802cfa509ed518abf852',1,1,'2022-05-06 15:00:24','','2022/05'),(2996,249,'Version','Bilan Formation OPC 3Jours.pdf','220506161303_d5ceee599002d00fc17345c8aec3eecd.pdf',297790,'application/pdf','cf540abfb145171e33071e0f1fb619c1a617fc09e9db61be6c7c7066957e333e',3,1,'2022-05-06 16:13:03','','2022/05'),(2997,249,'Version','Brainstorming-6-5-2022.pptx','220506164139_Brainstorming-6-5-2022.pptx',60161,'application/vnd.openxmlformats-officedocument.presentationml.presentation','bfcbf2d62e871ded86080ea807fad4972adfc3af7977313e5f135d518e18dbbc',0,1,'2022-05-06 16:41:39','','2022/05'),(2999,297,'Version','Bontoux-Logique.eapx','220506164255_Bontoux-Logique.eapx',2506752,NULL,'70c48ad3b12db7b067d90ccbb6437bead305abcf202f8e6c1abe1a8a3abf4807',1,1,'2022-05-06 16:42:55','','2022/05'),(3001,245,'News','clipboard-202205071739-ibmnh.png','220507173942_clipboard-202205071739-ibmnh.png',33495,'image/png','2d0f6357a318374f7bb569ad99af6a4f2d89980790c5b405329166c66d935dfa',0,1,'2022-05-07 17:39:42','','2022/05'),(3005,237,'Version','XiMulator_1.0.2.3_v1.0.4.6.zip','220507174334_XiMulator_1.0.2.3_v1.0.4.6.zip',1240496,'application/x-zip-compressed','6fb6cf0df64ae1036b226806dce477db8db7d2fb6fa4d3d90b6e537b994afc69',1,1,'2022-05-07 17:45:35','','2022/05'),(3006,298,'Version','XiMulator_1.0.2.3_v1.0.4.6.zip','220507174334_XiMulator_1.0.2.3_v1.0.4.6.zip',1240496,'application/x-zip-compressed','6fb6cf0df64ae1036b226806dce477db8db7d2fb6fa4d3d90b6e537b994afc69',0,1,'2022-05-07 17:46:44','','2022/05'),(3007,181,'Version','XiMulator_1.0.2.3_v1.0.4.6.zip','220507174334_XiMulator_1.0.2.3_v1.0.4.6.zip',1240496,'application/x-zip-compressed','6fb6cf0df64ae1036b226806dce477db8db7d2fb6fa4d3d90b6e537b994afc69',3,1,'2022-05-07 17:47:20','','2022/05'),(3008,270,'Version','XiMulator_1.0.2.3_v1.0.4.6.zip','220507174334_XiMulator_1.0.2.3_v1.0.4.6.zip',1240496,'application/x-zip-compressed','6fb6cf0df64ae1036b226806dce477db8db7d2fb6fa4d3d90b6e537b994afc69',1,1,'2022-05-07 17:50:32','','2022/05'),(3009,293,'Version','OPC 40560 OPC UA for Mining.zip','220509160756_0a54e17d38cfbe7f0c2f91ba299ebd01.zip',6096835,'application/x-zip-compressed','96bc2a338d2fb43bf9159461adeccbc497f55c5553de23f6210100fcd9081602',3,1,'2022-05-09 16:07:56','','2022/05'),(3010,253,'Version','OPCUA_UML_Profile_Project.eapx','220509163702_OPCUA_UML_Profile_Project.eapx',2510848,NULL,'74aeb5ca161ca2b6a5f408e4c849e7c0b79af619c6de3c14e4030e0a302759e4',2,1,'2022-05-09 16:37:02','','2022/05'),(3011,253,'Version','LogicalModel_Imerys-V2.0.3.eapx','220509170126_LogicalModel_Imerys-V2.0.3.eapx',3203072,NULL,'859a1673e7e4e5997d83fe657ee0c88ad2630f4a1d075c625f70e7436677eca9',1,1,'2022-05-09 17:01:26','','2022/05'),(3012,268,'Version','Livraison Binaires Debug-IPV6 - 9-05-2022.zip','220509192135_830b6e0f3d55659a3fa253fe2af9c08d.zip',10375964,'application/x-zip-compressed','d2286b45efe2ff7fa17707f0d15f8588b75d8ef22ebe6f5ff5ab6e8f20b29d96',2,1,'2022-05-09 19:21:35','','2022/05'),(3013,823,'Issue','OOUA_IMERYS_MVP_C3.log','220510104425_OOUA_IMERYS_MVP_C3.log',42059,'text/plain','ea80d5d48a41873ac3f24c034b897400a052bcfed3d81346f55cea8bfa983078',0,432,'2022-05-10 10:44:25','','2022/05'),(3014,111,'Version','OPCUA_Profile.xml','220510150847_OPCUA_Profile.xml',5142,'text/xml','d7de124b4474108cc31578db8102034e0168c4c5c3e4a15d58e61672430821c6',5,1,'2022-05-10 15:08:47','','2022/05'),(3015,294,'Version','Bilan Formation OPC 3Jours.pdf','220506161303_d5ceee599002d00fc17345c8aec3eecd.pdf',297790,'application/pdf','cf540abfb145171e33071e0f1fb619c1a617fc09e9db61be6c7c7066957e333e',5,1,'2022-05-10 15:30:54','','2022/05'),(3016,294,'Version','Session 3 - Modelisation OPC UA.pdf','220510171741_f94de6ad35f183cb32034eb461139164.pdf',4588741,'application/pdf','036bdea88ee087ac666c56d7323264cc41717d10a49d73ff1aef834a40295211',4,1,'2022-05-10 17:17:41','','2022/05'),(3017,253,'Version','LogicalModel_Imerys-V2.0.4.eapx','220511203425_LogicalModel_Imerys-V2.0.4.eapx',3313664,NULL,'6463ae2b56ef8f80464175fc03a9773a1d6f2146ea20545cfc4d8a2bbc45b49c',4,1,'2022-05-11 20:34:25','','2022/05'),(3022,259,'Version','Verkor-Logical_v0.0.1.8.eapx','220512134044_Verkor-Logical_v0.0.1.8.eapx',3190784,NULL,'6bf1c0039e58f14ba491de84a17196305968b86ae6026b0bfc74cc202d39200e',1,1,'2022-05-12 13:40:44','','2022/05'),(3023,141,'Version','OpenOpcUa_1_0_7_0_SK_13-05-2022.zip','220513084417_OpenOpcUa_1_0_7_0_SK_13-05-2022.zip',8977375,'application/x-zip-compressed','295cd35831f7b629b4c6937564c2e647fe0e69c5d13756956ada24eaef2f32ed',1,1,'2022-05-13 08:44:17','','2022/05'),(3024,267,'Version','OOUA_IMERYS_MVP_C3_Back2Prod_v2.0.0.0.zip','220513102548_OOUA_IMERYS_MVP_C3_Back2Prod_v2.0.0.0.zip',15274788,'application/x-zip-compressed','a6d888e6f6231eece35c440fb998efd8d43026a7a2d692eef7995ae051b97331',2,546,'2022-05-13 10:25:48','130522','2022/05'),(3025,162,'Version','Binaires_Debian9_x64.zip','220513190712_Binaires_Debian9_x64.zip',7149557,'application/x-zip-compressed','b3a63b53994eb65f123ce77fa65d3de085db9489566ee574018163c7c0d04c72',1,1,'2022-05-13 19:07:12','','2022/05'),(3027,267,'Version','OOUA_IMERYS_MVP_C3_Prod2Back_v2.0.0.zip','220516151734_OOUA_IMERYS_MVP_C3_Prod2Back_v2.0.0.zip',18176651,'application/x-zip-compressed','91457a30b8f781ed9da3772306203f77f79c11b257330df6e2a00510515ffad9',1,546,'2022-05-16 15:17:34','Version Operationnelle sans activation automate 30','2022/05'),(3029,154,'Version','Manuel de l_utilisateur - VpiS7 - 1.0.8.pdf','220106163436_fb7d49caabb0d426464fa2073b4607b0.pdf',467852,'application/pdf','562330561b5bef01892cd919be3a8982f56b056c9380ba00e623c099f8e275f0',3,1,'2022-05-17 17:17:15','','2022/01'),(3030,154,'Version','Manuel de l_utilisateur VpiUaClnt_1.0.2.3.pdf','211008163534_b4d8ae4d1aea057a86e202254bc5a396.pdf',404224,'application/pdf','e2941c38699d64ff07e075bb88c1ada204aaf35696a2e9d7600fe1170861bce3',3,1,'2022-05-17 17:17:34','','2021/10'),(3031,103,'Project','Emotors Optimu Connector - Jeux de test 220408.zip','220518080234_82748ce459c332b91ec1e3b6d4df7fbf.zip',8217,'application/x-zip-compressed','acac45446979847025fdbfc61bf27838d9b8b5a4a6a593603cb824c306701c6f',2,551,'2022-05-18 08:02:34','','2022/05'),(3032,103,'Project','Emotors Optimu Connector - GmmToMiddleware 1.0.omi','220524144646_84ec39865613ffc070238adf2215bc39.omi',4728,NULL,'7699bf6cc30ea10a895abd110c09481ff26ec8e8ae94e69963d611a287bd6b88',2,552,'2022-05-24 14:46:46','','2022/05'),(3033,65,'Version','OpenOpcUa_1_0_7_0_Tyco_24-5-2022.zip','220524184339_OpenOpcUa_1_0_7_0_Tyco_24-5-2022.zip',8832828,'application/x-zip-compressed','799aa01c3283de7fee53f75d22f0dc888ab77b5d948d066dc80a9b825b102a90',1,1,'2022-05-24 18:43:39','','2022/05'),(3034,253,'Version','LogicalModel_Imerys-V2.0.5.eapx','220525145953_LogicalModel_Imerys-V2.0.5.eapx',3346432,NULL,'cbd759ed5bcda9d2cfb03692e0fff258903e0cbd6049567b8fc914e19caada72',2,510,'2022-05-25 14:59:53','','2022/05'),(3035,253,'Version','LogicalModel_Imerys-V2.0.6.eapx','220525162122_LogicalModel_Imerys-V2.0.6.eapx',3346432,NULL,'ecf5c001936e47b468ecfe58cae29f4ac19fdddef5ceda51b6af583c20aed77d',4,510,'2022-05-25 16:21:22','','2022/05'),(3036,245,'Version','Generation-25-5-2022.zip','220527181612_Generation-25-5-2022.zip',3671770,'application/x-zip-compressed','f5634090d84b8919f8a4051e87a0203b24c4640d2bd2122dcc6bab0214f0dbd1',1,1,'2022-05-27 18:16:12','','2022/05'),(3037,761,'Issue','clipboard-202205301639-7yemo.png','220530163955_clipboard-202205301639-7yemo.png',439990,'image/png','c02d0eba92d5ce6633387ca0434ae35cd88459df52a49d9e3ea17cfb4a49278e',0,489,'2022-05-30 16:39:55','','2022/05'),(3038,761,'Issue','CONSOELECTRIQUE_avec_historization.zip','220530164843_CONSOELECTRIQUE_avec_historization.zip',71266438,'application/x-zip-compressed','7fb36f9e6d3994353d85b1b8221688e958ba1cb13429065af798ad303f31d144',0,489,'2022-05-30 16:48:43','','2022/05'),(3039,253,'Version','LogicalModel_Imerys-V2.0.7.eapx','220530175441_LogicalModel_Imerys-V2.0.7.eapx',3346432,NULL,'ea3d641657f45052f735af2436e8af940e2058914779c764b7a5d6c2821ce8e5',3,1,'2022-05-30 17:54:41','','2022/05'),(3040,761,'Issue','clipboard-202205311127-hlqmb.png','220531112728_clipboard-202205311127-hlqmb.png',842828,'image/png','3353db2c77d272fa7648ed2fe1f5676a0fe4ab16cbe0e0cc92f879aabcc3c1c3',0,1,'2022-05-31 11:27:28','','2022/05'),(3041,837,'Issue','clipboard-202205311605-z3lg2.png','220531160507_clipboard-202205311605-z3lg2.png',16690,'image/png','6b13c5fd8a0f2222741e853e1a634f396e55722f222d7992bc8f56ec251c556c',0,1,'2022-05-31 16:05:07','','2022/05'),(3042,254,'Version','SiOME_V25.zip','220601152441_SiOME_V25.zip',80118630,'application/x-zip-compressed','6d72d93ae65c53aa8899f2694f8b3a16d8d32e3724b1c4da4d2670bb1712ce53',4,1,'2022-06-01 15:24:41','','2022/06'),(3046,829,'Issue','ISO2.JPG','220602122703_ISO2.JPG',247333,'image/jpeg','fed03d6f7a45f0f78722106665d906856346efe786b1f10dc1f2ea66f5f9e7ce',0,510,'2022-06-02 12:27:03','','2022/06'),(3047,829,'Issue','ISO.JPG','220602122704_ISO.JPG',66025,'image/jpeg','c445877abe4e66995bb8ca4bf631f0f48a7328762aa53cb81fde0b0ad6568620',0,510,'2022-06-02 12:27:04','','2022/06'),(3048,253,'Version','LogicalModel_Imerys-V2.0.8.eapx','220602155353_LogicalModel_Imerys-V2.0.8.eapx',3346432,NULL,'fb0e3fc56400cbba9d1b491223e237a73d5e1b7a0991b3775199321e066bd5e7',5,510,'2022-06-02 15:53:53','','2022/06'),(3049,245,'Version','OOUA_IMERYS_MVP_C3.zip','220602180706_OOUA_IMERYS_MVP_C3.zip',36628985,'application/x-zip-compressed','7fe0c29e1a586b9f7841a67ee663b5e6945e4c9581f604f4e01a763ac9178de3',2,510,'2022-06-02 18:07:06','','2022/06'),(3050,675,'Issue','Ximulateur.zip','220602195327_Ximulateur.zip',1537758,'application/x-zip-compressed','73cde9c86c73298f2eb6a09be266dd7b4b7a7e518acab9de848e40f6f8deebd8',0,447,'2022-06-02 19:53:27','','2022/06'),(3052,296,'Version','Maquette_OptimuLabo_V1.0.0.1_12-5-2022.zip','220603134637_Maquette_OptimuLabo_V1.0.0.1_12-5-2022.zip',2946053,'application/x-zip-compressed','ceddc242e355fd7bdd07e57d7dcb651eb5a7f1c65ffcc065b964ce97ef0a2725',5,1,'2022-06-03 13:46:37','','2022/06'),(3054,293,'Version','Instance Creation.pdf','220603150437_6c0a7931bb8bcfc05e45ff2644686ed2.pdf',414432,'application/pdf','134a2360b2156807196d6d07581d82f0e294f8895e9f9ffc5d09ad8f03064d09',5,1,'2022-06-03 15:04:37','','2022/06'),(3057,761,'Issue','OpenOpcUaCoreServer_Debug.exe_220603_184901.zip','220603185456_OpenOpcUaCoreServer_Debug.exe_220603_184901.zip',11311977,'application/x-zip-compressed','844c8231c8500b50be5bc895f6c0fda474001bc231c183128f5efc32fb24e092',0,489,'2022-06-03 18:54:56','','2022/06'),(3060,838,'Issue','VPIS7_Exemple_Image_1.png','220607200231_VPIS7_Exemple_Image_1.png',3049,'image/png','5adbce3523826d4abe7b600c8f98323d395fb0b6d42f10196a94731ad3b9b73d',0,455,'2022-06-07 20:02:31','','2022/06'),(3061,838,'Issue','VPIS7_Exemple_Image_2_Selection.png','220607200236_VPIS7_Exemple_Image_2_Selection.png',3313,'image/png','96e2241bab60088695200832d6d006db472cb7ae84ee4d34078720dae358aa4d',0,455,'2022-06-07 20:02:36','','2022/06'),(3062,161,'Version','OPCUA_Profile.xml','220510150847_OPCUA_Profile.xml',5142,'text/xml','d7de124b4474108cc31578db8102034e0168c4c5c3e4a15d58e61672430821c6',0,1,'2022-06-08 10:37:19','','2022/05'),(3063,162,'Version','XiMulator_1.0.2.4_v1.0.4.8.zip','220608104509_XiMulator_1.0.2.4_v1.0.4.8.zip',1254764,'application/x-zip-compressed','eae33a28c6a7e45c74ceb7dbf0ad8aa2a71204377d385637d3463e254024b4de',1,1,'2022-06-08 10:45:09','','2022/06'),(3065,237,'Version','PLC_S7_Simulator.zip','220610091232_PLC_S7_Simulator.zip',1946783,'application/x-zip-compressed','ef4cd38b6a4743be0154c12c5e7d59dc7a62cc2905d099f1351a7c96b278360e',1,1,'2022-06-10 09:12:32','','2022/06'),(3067,103,'Project','EmotorsOptimuConnector1.0.1.zip','220610133641_EmotorsOptimuConnector1.0.1.zip',1204336,'application/x-zip-compressed','2335d5d5045c6faf1ea05ff0aa7b545b55780f7cb5c24792289fee07e16116fa',2,551,'2022-06-10 13:36:41','Nouvelle version du connecteur','2022/06'),(3068,103,'Project','OK_Update_Default.xml','220610133641_OK_Update_Default.xml',208,'text/xml','2af0b4cdb074228b80542ea0b4e28e46ecad8dab518c0030512bb46b27bb3e49',1,551,'2022-06-10 13:36:41','Nouveau fichier requis pour les tests du connecteur','2022/06'),(3069,103,'Project','Fiches de recette connecteur Emotors Optimu Connector 2022 06 10.doc','220610133642_74461d42b3ffd791e2953752a53e101c.doc',243200,'application/msword','24f6dd468a50219c8955a320e7b1aebaceb591b2d688cf950d60f3ed4035b978',6,551,'2022-06-10 13:36:42','Nouvelle version de la fiche des recettes du connecteur','2022/06'),(3070,176,'Version','SiOME_V25.zip','220601152441_SiOME_V25.zip',80118630,'application/x-zip-compressed','6d72d93ae65c53aa8899f2694f8b3a16d8d32e3724b1c4da4d2670bb1712ce53',4,1,'2022-06-10 14:07:12','','2022/06'),(3071,175,'Version','OPCUA_Profile.xml','220510150847_OPCUA_Profile.xml',5142,'text/xml','d7de124b4474108cc31578db8102034e0168c4c5c3e4a15d58e61672430821c6',0,1,'2022-06-10 14:14:46','','2022/05'),(3072,70,'Version','Livraison-10-6-2022.zip','220610155351_Livraison-10-6-2022.zip',2682553,'application/x-zip-compressed','287694e52a24f561137f4cfd8fd73f23d55d08537073b360496564866ad9eff4',1,1,'2022-06-10 15:53:51','','2022/06'),(3075,841,'Issue','ServeurAvrieux.zip','220613143810_ServeurAvrieux.zip',20982314,'application/x-zip-compressed','b7bf490f9f536d650c55a84da5c1bae8240989925c9e8dcba1363665b0239ff0',0,565,'2022-06-13 14:38:10','','2022/06'),(3076,178,'Version','DemoVpiOs-x64_Debug.zip','220613144429_DemoVpiOs-x64_Debug.zip',3030174,'application/x-zip-compressed','9487fb2285d6b67953612956dfa51a74de6c1c6d34ba605ee028c8f8c41a67a1',2,1,'2022-06-13 14:44:29','','2022/06'),(3077,253,'Version','LogicalModel_Imerys-V2.1.0.eapx','220613205443_LogicalModel_Imerys-V2.1.0.eapx',3346432,NULL,'cdb05fdd1227efc07a57e94f27a0e817cf65bea5af84f85a22f5eee5827016cf',5,1,'2022-06-13 20:54:43','','2022/06'),(3078,298,'Version','SiOME_V25.zip','220601152441_SiOME_V25.zip',80118630,'application/x-zip-compressed','6d72d93ae65c53aa8899f2694f8b3a16d8d32e3724b1c4da4d2670bb1712ce53',1,1,'2022-06-14 10:22:50','','2022/06'),(3079,181,'Version','Modscan.zip','220614141309_Modscan.zip',1133573,'application/x-zip-compressed','e433e589e55c37a9fc2ca4cf37628f668fc44a0eb055890392b996cd51a4c8d0',1,1,'2022-06-14 14:13:09','','2022/06'),(3080,157,'Version','Demo_VpiUaClnt_x64_Release_IPV6.zip','220614154549_Demo_VpiUaClnt_x64_Release_IPV6.zip',9561933,'application/x-zip-compressed','c572a2bf5524bed1fba9b40474a9cff76c7add186db56ae578e1b645db4b7bf7',2,1,'2022-06-14 15:45:49','','2022/06'),(3081,259,'Version','Verkor-Logical_v0.0.2.0.eapx','220615012751_Verkor-Logical_v0.0.2.0.eapx',3239936,NULL,'026fde75accc2a0be47dd3d1a9084c02be55a84ffde2037b96d0431ac1c44aad',3,1,'2022-06-15 01:27:51','','2022/06'),(3082,259,'Version','Generation_v0.0.2.0.zip','220615012809_Generation_v0.0.2.0.zip',1565458,'application/x-zip-compressed','48cd03c0f388e98f53cd461089d012ecf394d94d094ffa207c0cd214bc994754',0,1,'2022-06-15 01:28:09','','2022/06'),(3083,251,'News','clipboard-202206150130-1xu68.png','220615013046_clipboard-202206150130-1xu68.png',26220,'image/png','212f4dbdcedd726ddf77b64d5f210d1da3990ec740106300bc8185213323149e',0,1,'2022-06-15 01:30:46','','2022/06'),(3084,70,'Version','VpiTycoEx_0.0.6.9.zip','220615142548_VpiTycoEx_0.0.6.9.zip',109667,'application/x-zip-compressed','e3ea527b42aafdea1f25672cd1d97cd288f913ece3d57374f51d0ada47f89510',1,1,'2022-06-15 14:25:48','','2022/06'),(3085,70,'Version','VpiTycoEx_0.0.7.0.zip','220615162756_VpiTycoEx_0.0.7.0.zip',109706,'application/x-zip-compressed','8fb708a58e6f15a2ee80a43ffb75235858d3c7046fdb9b5f3615b914b9372d49',1,1,'2022-06-15 16:27:56','','2022/06'),(3086,70,'Version','VpiTycoEx_0.0.7.1.zip','220615173551_VpiTycoEx_0.0.7.1.zip',109702,'application/x-zip-compressed','9be7895fbad20dbc95d1b74c62aa05e22b8e3f64273887ee7d841f0a234f5ae0',1,1,'2022-06-15 17:35:51','','2022/06'),(3090,237,'Version','XiMulator_1.0.2.4_v1.0.4.9.zip','220615222553_XiMulator_1.0.2.4_v1.0.4.9.zip',1253938,'application/x-zip-compressed','e09a89c55fcf0f67ace64d9ae48da48d4a129905ea6751d6fcf529353929830f',0,1,'2022-06-15 22:33:52','','2022/06'),(3091,298,'Version','XiMulator_1.0.2.4_v1.0.4.9.zip','220615222553_XiMulator_1.0.2.4_v1.0.4.9.zip',1253938,'application/x-zip-compressed','e09a89c55fcf0f67ace64d9ae48da48d4a129905ea6751d6fcf529353929830f',3,1,'2022-06-15 22:34:08','','2022/06'),(3092,845,'Issue','Aviso-00300.log','220616121008_Aviso-00300.log',127944,'text/plain','74cf90df8d4b9769ca39204d5336cfe40d5c960e3d9dbf399d2b2da8fd98ac58',0,565,'2022-06-16 12:10:08','','2022/06'),(3093,845,'Issue','DB46VPI00311.log','220616121008_DB46VPI00311.log',172712,'text/plain','7a32af962f61485ce62f55fede8ff9fec05f584bddb866654dab475ffdb3fddf',0,565,'2022-06-16 12:10:08','','2022/06'),(3094,845,'Issue','DB42VPI00309.log','220616121009_DB42VPI00309.log',367984,'text/plain','780316a7122f19a714dc2600f6d56500901171fd17ba507541f3136f7210fd0c',0,565,'2022-06-16 12:10:09','','2022/06'),(3095,103,'Project','QualaxyApiTestsPlatforme_V1.2.docx','220617085534_QualaxyApiTestsPlatforme_V1.2.docx',1902959,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','e9cef3e1eb0caf12faf5bc56e4da3808c6e551e614fcb0be02b90ca6d8b23eee',7,550,'2022-06-17 08:55:34','Document de description de la plateforme de tests Qual@xy - Ajout d\'exemples','2022/06'),(3096,846,'Issue','clipboard-202206171119-g0lgz.png','220617111951_clipboard-202206171119-g0lgz.png',53868,'image/png','424926f2f40bc999d094446ef6405f00fb48b00466cc0b1d5b3cf99ec21ac4fd',0,550,'2022-06-17 11:19:51','','2022/06'),(3098,269,'Version','OOUA_IMERYS_MVP_C3 - v1.0.8.zip','220617181716_923683e48f2f9468d5e6a4b12ebeb885.zip',16607459,'application/x-zip-compressed','6c741e9c4acc18a32b06dff67aff9222a86961b36a07ba06e767581f3b8c14e6',3,546,'2022-06-17 18:17:16','','2022/06'),(3100,846,'Issue','clipboard-202206192239-1nntd.png','220619223921_clipboard-202206192239-1nntd.png',33225,'image/png','55292bfb66036c34066b9ee867f0a464859ae12f03d7a3997222639bcc09c328',0,1,'2022-06-19 22:39:21','','2022/06'),(3101,846,'Issue','clipboard-202206192240-elraf.png','220619224051_clipboard-202206192240-elraf.png',73408,'image/png','c16f4b2112e03eacb7065ee99aa07c9088cf17efb693647324dca51f95c2c019',0,1,'2022-06-19 22:40:51','','2022/06'),(3102,846,'Issue','clipboard-202206201104-umq8g.jpg','220620110413_clipboard-202206201104-umq8g.jpg',286932,'image/jpeg','c991870d86dea2b2fbbea1c0a50b80355e55edc46cb69f8ad7515fb171848925',0,550,'2022-06-20 11:04:13','','2022/06'),(3103,298,'Version','S7_Tool.zip','220620175503_S7_Tool.zip',1946126,'application/x-zip-compressed','93ce57302b60cee77be69c87dea5b9516f32834423bb184afa5decb70d7c33d5',3,1,'2022-06-20 17:55:03','','2022/06'),(3104,288,'Version','Demo_v0.0.2.0.zip','220620175537_Demo_v0.0.2.0.zip',3245103,'application/x-zip-compressed','60e5db9568bd68b357955cc08f515aecf53895fe642769439f20c1aad15739a7',1,1,'2022-06-20 17:55:37','','2022/06'),(3105,848,'Issue','3_Structure des Objets -EN.pdf','220622114025_890090c8fd9b130b6a9b4da4b674707c.pdf',422358,'application/pdf','4be958d0c9545cf340cb3a97d5d3b6428532ad03a4c6ae0392737a7522470d52',0,550,'2022-06-22 11:40:25','','2022/06'),(3106,182,'Version','OpenOpcUaConfigManager_Delivrable Beta_0.1.0_Debug_x64.zip','220622155132_36b1c0f70983417dafe507f226bdc1d6.zip',20437556,'application/x-zip-compressed','6897cfecf93c219c3c60b75934716cf29f046940adeba2c48f02ee5a22f348b9',1,1,'2022-06-22 15:51:32','','2022/06'),(3107,849,'Issue','Opc.Ua.NodeSet2.ImerysMainPackage.xml','220622162019_Opc.Ua.NodeSet2.ImerysMainPackage.xml',424771,'text/xml','d23689de1c0c3090e3ac33f522e137da5a8b80566488f92f51984fed8e96d6dc',0,545,'2022-06-22 16:20:19','','2022/06'),(3108,849,'Issue','Opc.Ua.NodeSet2.Lixhe.xml','220622162019_Opc.Ua.NodeSet2.Lixhe.xml',449961,'text/xml','4398203099b867660b1c56665ac98eacae808f98d938bc57d96563419d56704f',0,545,'2022-06-22 16:20:19','','2022/06'),(3110,182,'Version','XiMulator_1.0.2.5_v1.0.5.0.zip','220623093109_XiMulator_1.0.2.5_v1.0.5.0.zip',1254387,'application/x-zip-compressed','4bce9bba7eace98c845a7278076dedac99f5c4932f56998b0676a34f546eb5bd',1,1,'2022-06-23 09:31:34','','2022/06'),(3111,254,'Version','XiMulator_1.0.2.5_v1.0.5.0.zip','220623093109_XiMulator_1.0.2.5_v1.0.5.0.zip',1254387,'application/x-zip-compressed','4bce9bba7eace98c845a7278076dedac99f5c4932f56998b0676a34f546eb5bd',3,1,'2022-06-23 09:32:15','','2022/06'),(3112,254,'News','clipboard-202206230936-pptaj.png','220623093605_clipboard-202206230936-pptaj.png',32360,'image/png','142337a08b9fcf405459515186c2f8da7ba200d001adc91a2cf37f4fcfe65d63',0,1,'2022-06-23 09:36:05','','2022/06'),(3113,255,'News','clipboard-202206230939-w9vb6.png','220623093605_clipboard-202206230936-pptaj.png',32360,'image/png','142337a08b9fcf405459515186c2f8da7ba200d001adc91a2cf37f4fcfe65d63',0,1,'2022-06-23 09:39:29','','2022/06'),(3115,182,'Version','XiMulator_1.0.2.5_v1.0.5.1.zip','220623102334_XiMulator_1.0.2.5_v1.0.5.1.zip',1254394,'application/x-zip-compressed','8163e85b1c6438f82bba674774c0119533936af08ab54b3b228eca93c1d5c31e',2,1,'2022-06-23 10:23:34','','2022/06'),(3116,851,'Issue','XiMulator_1.0.2.5_v1.0.5.1.zip','220623110941_XiMulator_1.0.2.5_v1.0.5.1.zip',1254396,'application/x-zip-compressed','b31f61e39e3335e6c26382738bf109ce9c6a0ad122447ffa680f583ecf5861eb',0,1,'2022-06-23 11:09:41','','2022/06'),(3117,851,'Issue','Generation_V1.0.8.zip','220623111010_Generation_V1.0.8.zip',405275,'application/x-zip-compressed','2c53e5af2ac46b321921fb78217fade7691996f52390f6ff09813618ae4ddb1e',0,1,'2022-06-23 11:10:10','','2022/06'),(3118,830,'Issue','clipboard-202206231135-nttxh.png','220623113511_clipboard-202206231135-nttxh.png',132662,'image/png','f403834a8757180d0d0038cb2b22b903388d3a3a982e113c306d8bda906d091e',0,1,'2022-06-23 11:35:11','','2022/06'),(3119,830,'Issue','clipboard-202206231135-wtue0.png','220623113537_clipboard-202206231135-wtue0.png',213714,'image/png','effd59a389433ce6973b31bfc5abd0a02a977e027bd4f7b02aa74229e8558899',0,1,'2022-06-23 11:35:37','','2022/06'),(3120,830,'Issue','OOUA_IMERYS_MVP_C3_1.0.8.zip','220623113631_OOUA_IMERYS_MVP_C3_1.0.8.zip',7882387,'application/x-zip-compressed','7eaae3dc251b7fb8758a20e159d600d85a416294f72a816cc85417b1e4658292',0,1,'2022-06-23 11:36:31','','2022/06'),(3121,NULL,NULL,'clipboard-202206231512-9lvlh.png','220623151228_clipboard-202206231512-9lvlh.png',84517,'image/png','e6a2aeee22fda0bed26587b6b9dc2c217425332ca312b3559be9d368a52277d9',0,432,'2022-06-23 15:12:28',NULL,'2022/06'),(3122,831,'Issue','clipboard-202206231518-nzrm6.png','220623151809_clipboard-202206231518-nzrm6.png',76807,'image/png','accbb22868edc594a514205df3d3573caf02192601047fc65b23f8784984a3e5',0,432,'2022-06-23 15:18:09','','2022/06'),(3123,831,'Issue','clipboard-202206231530-hctsc.png','220623153034_clipboard-202206231530-hctsc.png',51186,'image/png','4d8a814bfd758a5003d39a771a175d961fdd250dd6dfe8898e88ad3cafbcc27c',0,546,'2022-06-23 15:30:34','','2022/06'),(3124,253,'Version','Generation_2.1.0.zip','220623213926_Generation_2.1.0.zip',422192,'application/x-zip-compressed','7b2c51ca3c1b81efc30993403af738c400ca83f4bf13b0f6d495306baaa524ed',3,1,'2022-06-23 21:39:26','','2022/06'),(3126,162,'Version','changelog1.0.7.1.txt','220623221322_changelog1.0.7.1.txt',1661,'text/plain','1ba0000c661a75509774b8ca30a278d771a79cb1d7442ababbc742e16669d341',1,1,'2022-06-23 22:13:22','','2022/06'),(3127,852,'Issue','clipboard-202206241139-h6y2f.png','220624113937_clipboard-202206241139-h6y2f.png',39329,'image/png','b15bda06042bf4e269ad59d319323874fe094d0cccd8034262f9a5395474dea9',0,1,'2022-06-24 11:39:37','','2022/06'),(3128,852,'Issue','clipboard-202206241448-nuooa.png','220624144838_clipboard-202206241448-nuooa.png',18322,'image/png','7e91ff39b15865b3fc0fd711afe4bec48bae2f3cb9f0866a0e3c6c3bfdf57795',0,550,'2022-06-24 14:48:38','','2022/06'),(3129,853,'Issue','Lokeos.zip','220624155815_Lokeos.zip',2898064,'application/x-zip-compressed','3c9db4c969fb11d986f16acd218edd3fe6c6513cbca9e96b1ad87a20227fe6f2',0,553,'2022-06-24 15:58:15','Dossier installation client','2022/06'),(3130,853,'Issue','2022-06-24_155903.png','220624155933_2022-06-24_155903.png',63521,'image/png','51e98c9004998cc4855bdd8dd85e9fcd7a897cbc83c901674252f40412e91ab4',0,553,'2022-06-24 15:59:33','Copie écran message erreur','2022/06'),(3131,163,'Version','Encoder-Decoder.zip','220624170207_Encoder-Decoder.zip',54393,'application/x-zip-compressed','86a7fc1636a3436126c3156e9d259e400e25c9c4516fd62287669edcfb3b0d6d',2,1,'2022-06-24 17:02:07','','2022/06'),(3132,853,'Issue','clipboard-202206241726-r1qne.png','220624172623_clipboard-202206241726-r1qne.png',150674,'image/png','6f0906e4bc257e018d53c0c4287ffc237b79ed6c6acbcd98014cdd2687756f60',0,1,'2022-06-24 17:26:23','','2022/06'),(3133,853,'Issue','clipboard-202206241727-ro4n7.png','220624172710_clipboard-202206241727-ro4n7.png',83283,'image/png','b78c544d149beca3a0c8d0fa37f9eaae89fef9a78f4d98e517fc8312fec02de4',0,1,'2022-06-24 17:27:10','','2022/06'),(3134,854,'Issue','Tests_VpiOptimu_V1.0.0.1.docx','220624175858_Tests_VpiOptimu_V1.0.0.1.docx',23963,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','f4de7470cba048c0ea9cbf4db448bee65e74a521b178647b67b75589e50a02c8',0,549,'2022-06-24 17:58:58','Fiches de test VpiOptimu','2022/06'),(3136,806,'Issue','clipboard-202206270937-rn1we.png','220627093727_clipboard-202206270937-rn1we.png',61748,'image/png','4c4b5ac87505166b42599a7f507bdaf48046e3cab81581e31c21c220c10002d6',0,1,'2022-06-27 09:37:27','','2022/06'),(3137,141,'Version','OpenOpcUa_1_0_7_2_SK_27-06-2022_v1.0.7.2.zip','220627101613_OpenOpcUa_1_0_7_2_SK_27-06-2022_v1.0.7.2.zip',9023651,'application/x-zip-compressed','496b8bd5fe15afa9f39bcd72e67ad9cb6eb73a18a241e81a60d6bd34e0c6cef3',1,1,'2022-06-27 10:16:13','','2022/06'),(3138,288,'Version','Demo-PGSQL-HA_x64_Release_27-06-2022.zip','220627140434_Demo-PGSQL-HA_x64_Release_27-06-2022.zip',4246924,'application/x-zip-compressed','b2b436f6b0a7dfabd6b22541a12ad6d2ada56724da0f9757bf3b890b1e9cec3c',1,1,'2022-06-27 14:04:34','','2022/06'),(3139,253,'Version','LogicalModel_Imerys-V2.1.2.eapx','220627180333_LogicalModel_Imerys-V2.1.2.eapx',3379200,NULL,'0f6427f7bdb79b646438cbced7f21b61f2c02a4409965159646feb3f58c5b4cb',5,1,'2022-06-27 18:03:33','','2022/06'),(3140,288,'Version','Demo_v0.0.2.1.zip','220627213851_Demo_v0.0.2.1.zip',4684033,'application/x-zip-compressed','5ec099bf5bd72da5631a236bdcfd29e99067b47379db53a975572b475c7cc364',1,572,'2022-06-27 21:38:51','','2022/06'),(3141,856,'Issue','Demo_v0.0.2.1.zip','220627213851_Demo_v0.0.2.1.zip',4684033,'application/x-zip-compressed','5ec099bf5bd72da5631a236bdcfd29e99067b47379db53a975572b475c7cc364',0,572,'2022-06-27 21:39:56','','2022/06'),(3142,290,'Version','OOUA_IMERYS_MVP_C3.zip','220628091843_OOUA_IMERYS_MVP_C3.zip',8289475,'application/x-zip-compressed','a198e8581fa78c1d35165ebef51dd923ff5cf992e8a6bc834e0ca4d8b4743c50',2,1,'2022-06-28 09:18:43','','2022/06'),(3143,175,'Version','DataFlow.pptx','220628111920_DataFlow.pptx',711847,'application/vnd.openxmlformats-officedocument.presentationml.presentation','87cd1049ee101c0e3aa4fd3d7a8346fe3658affb98250021b1fbaff29addf73c',2,1,'2022-06-28 11:19:20','','2022/06'),(3144,859,'Issue','clipboard-202206281405-ljbkv.png','220628140538_clipboard-202206281405-ljbkv.png',28520,'image/png','96e970e5531bca2ba32fb5c9a2346d19d364187b377aac72ab316b5991e97771',0,432,'2022-06-28 14:05:38','','2022/06'),(3145,859,'Issue','USINAGE_COVER_MODULE1Ticket.zip','220628140736_USINAGE_COVER_MODULE1Ticket.zip',17843341,'application/x-zip-compressed','c8e602b6b9f1c2265dd419c3f129465f84376c41a9e6f59b693791a99df42728',0,432,'2022-06-28 14:07:36','','2022/06'),(3146,859,'Issue','clipboard-202206281410-k66ng.png','220628141014_clipboard-202206281410-k66ng.png',25692,'image/png','bf9cd6977ad752b1d779e4606255964e45ba268fa471ec9cc0e00eef29387ff2',0,432,'2022-06-28 14:10:14','','2022/06'),(3147,269,'Version','OOUA_IMERYS_MVP_C3_Line4.zip','220628141603_OOUA_IMERYS_MVP_C3_Line4.zip',19872406,'application/x-zip-compressed','2d927698704fefd43bc3ac9eb7b831c253e762cfe7e4ea421c0e5ef4aa3a0708',7,546,'2022-06-28 14:16:03','','2022/06'),(3148,288,'Version','Demo_v0.0.2.1_MC.zip','220628141855_Demo_v0.0.2.1_MC.zip',4687370,'application/x-zip-compressed','d8bd9f71e89eb4204cdc259f7da3323d26f384496946d1892799be8efec6dc4b',1,1,'2022-06-28 14:18:55','','2022/06'),(3149,194,'Version','NodeSet_OOUA_1.04_May2022.zip','220628161624_NodeSet_OOUA_1.04_May2022.zip',230200,'application/x-zip-compressed','fbe74fa9909c1aed95f296792c8a734e600eb6380b16c8dbf9b76fc0d9769e87',1,1,'2022-06-28 16:16:24','','2022/06'),(3152,197,'Version','Opc.Ua.Di.NodeSet2.xml','220628162747_Opc.Ua.Di.NodeSet2.xml',129546,'text/xml','0302923aaa73e1227fa60a7285f050eaa080030261d512fe8cb60bf5992177c7',1,1,'2022-06-28 16:27:47','','2022/06'),(3153,197,'Version','Opc.Ua.Machinery.NodeSet2.xml','220628162748_Opc.Ua.Machinery.NodeSet2.xml',30270,'text/xml','153cdb9f471fbcada0aa5de30f1176225f37e7f53aa412129fa49eaa7c090192',1,1,'2022-06-28 16:27:48','','2022/06'),(3154,840,'Issue','Serveur JNEM - 28-06-2022.zip','220628174551_bcf0d8273408a1d88aab8868a698926d.zip',3061972,'application/x-zip-compressed','ee75d7a0679793a7c8abdfb8a46d78758a7d44f17c45d4a8d9bc0c96151b2634',0,492,'2022-06-28 17:45:51','','2022/06'),(3155,197,'Version','Demo-PGSQL-HA_x64_Release.zip','220628174742_Demo-PGSQL-HA_x64_Release.zip',4118955,'application/x-zip-compressed','e1fcf4f9cc9ea0e2eac35acce2dca9922c164de018c6c1bde694e331475d4e3a',1,1,'2022-06-28 17:47:42','','2022/06'),(3156,296,'Version','Maquette_OptimuLabo_V1.0.0.2.zip','220629132245_Maquette_OptimuLabo_V1.0.0.2.zip',3001904,'application/x-zip-compressed','0fbdad4b7e3cb21786dbc29814c8602c5325aedd131e0348dfabe5e7b17b83bd',1,1,'2022-06-29 13:22:45','','2022/06'),(3157,854,'Issue','Tests_VpiOptimu_V1.0.0.2.docx','220629132430_Tests_VpiOptimu_V1.0.0.2.docx',24826,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','3abc7d2258c895bc6efd9a3381240bc6b80b53fbcd7fe58d7ac5f445c2ea88d4',0,1,'2022-06-29 13:24:30','','2022/06'),(3158,157,'Version','DemoModbus_Debug_x64.zip','220629142755_DemoModbus_Debug_x64.zip',3112217,'application/x-zip-compressed','6049d88e06c4c49f8be9f3564687efefae673e04213dac4024ae54751bf04f96',1,1,'2022-06-29 14:27:55','','2022/06'),(3159,157,'Version','mod_RSsim.exe','220629142858_mod_RSsim.exe',589824,'application/x-msdownload','da8c1684c88af81e924b03c97cb892248337301e408aded2e4bc50e23d1ffcaa',0,1,'2022-06-29 14:28:58','','2022/06'),(3161,859,'Issue','clipboard-202206300919-k6unq.png','220630091924_clipboard-202206300919-k6unq.png',11157,'image/png','dce97e514fc746626c2fa545f649a8267f0629bd3b0b36ecb7ea14105b516336',0,432,'2022-06-30 09:19:24','','2022/06'),(3163,269,'Version','OOUA_IMERYS_MVP_C3_Prod2Back_300622.zip','220630154645_OOUA_IMERYS_MVP_C3_Prod2Back_300622.zip',57547869,'application/x-zip-compressed','2b67436ae607c43974c9f020fc1cde4e12021054065cad85bb56d9daff7a3285',3,546,'2022-06-30 15:46:45','','2022/06'),(3164,253,'Version','Generation_2.1.3.zip','220630171724_Generation_2.1.3.zip',432968,'application/x-zip-compressed','7eaeeeafb1fbf2d5805029d9580204e395f8ecc8f1373ab38617292f3a2471b3',4,1,'2022-06-30 17:17:24','','2022/06'),(3165,299,'Version','Generation_2.1.3.zip','220630171724_Generation_2.1.3.zip',432968,'application/x-zip-compressed','7eaeeeafb1fbf2d5805029d9580204e395f8ecc8f1373ab38617292f3a2471b3',0,1,'2022-06-30 17:20:15','','2022/06'),(3166,865,'Issue','clipboard-202206301755-onjdc.png','220630175537_clipboard-202206301755-onjdc.png',108870,'image/png','f8edd574b55bfe03234c865bcf7be46c37291237275ef9bbbe1dc2c478c64a26',0,432,'2022-06-30 17:55:37','','2022/06'),(3168,268,'Version','Livraison Binaires Debug-IPV6 - 30-06-2022_v1.0.7.4.zip','220630220632_446cd0175317856f47901fc8ed3e92ce.zip',10796109,'application/x-zip-compressed','b7407f93a2738ed5ab5e6ccc89859dec5fc00194c56700141aeae92a3901704c',0,1,'2022-06-30 22:06:32','','2022/06'),(3169,256,'Version','Livraison Binaires Release-IPV4 - 1-7-2022_v1.0.7.4.zip','220701095522_db54b4bbbc8b420477db567d7fb54d11.zip',2772868,'application/x-zip-compressed','0bca800407cca89b47d7886c3b69aa157ebbb13b61cd8465a24bd26a572508ab',1,1,'2022-07-01 09:55:22','','2022/07'),(3170,288,'Version','Demo_VpiUaClient_Manu2_Release_IPV4_64bits.zip','220701100501_Demo_VpiUaClient_Manu2_Release_IPV4_64bits.zip',8501960,'application/x-zip-compressed','50cf0e4921bce2bf31238267c686c69e6e001f5b54c131878453cc9654875e8d',3,1,'2022-07-01 10:05:01','','2022/07'),(3171,178,'Version','DemoMqttPublisher_Debug_Simulation.zip','220701140916_DemoMqttPublisher_Debug_Simulation.zip',3506857,'application/x-zip-compressed','9ea1a331dcb182d569d1ec436c00ddc769644c423af65503d26b6c8f7348eded',1,1,'2022-07-01 14:09:16','','2022/07'),(3173,296,'Version','OptimuLabo_v1.0.0.3_1-7-2022.zip','220701142911_OptimuLabo_v1.0.0.3_1-7-2022.zip',3005265,'application/x-zip-compressed','b6528eb289c440f2d7d95a9a23a693614e9534c8200c0a0adc3c45ae2d03a82a',3,1,'2022-07-01 14:29:11','','2022/07'),(3174,866,'Issue','Liste Bugs-Alarmes.docx','220701143128_c80b17d5b256d895b2124798ec7bb998.docx',24527,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','d5f9b5354c91b5946c19ce52ef17dd8811a5b9a4347f422a739a9e7e3417ff61',0,545,'2022-07-01 14:31:28','','2022/07'),(3175,866,'Issue','tracesWireShark_bug_Alarmes.zip','220701143215_tracesWireShark_bug_Alarmes.zip',247360,'application/x-zip-compressed','fd70ca17ef034239e2a5bd2d8b78cd7bad0f4d76c3757f453b98ba98e4832c15',0,545,'2022-07-01 14:32:15','','2022/07'),(3176,867,'Issue','Bug1.pcapng','220701153502_Bug1.pcapng',556912,NULL,'915beaaf43ca3b1f43752928ca34dfe9d052b11d15fcde411a47367bcad52223',0,545,'2022-07-01 15:35:02','','2022/07'),(3177,868,'Issue','Bug2.pcapng','220701153801_Bug2.pcapng',141880,NULL,'c30903d868e3791170194c202d56cd0bb280e1ee65e984d89d13afa718c94f2b',0,545,'2022-07-01 15:38:01','','2022/07'),(3178,163,'Version','OpenOpcUa_1_0_7_4_INETUM_1-7-2022.zip','220701164814_OpenOpcUa_1_0_7_4_INETUM_1-7-2022.zip',8658798,'application/x-zip-compressed','12bd04625213486a1e5a48b9715b326a612a7deb13f0a05bbcfd865402a2ea68',2,1,'2022-07-01 16:48:14','','2022/07'),(3180,269,'Version','OOUA_IMERYS_MVP_C3_Stable_Prod2Back_010722_PourInvestigConfigManager.zip','220701181231_51a45aff40fc52f85943cf71d9e7ad7f.zip',19703718,'application/x-zip-compressed','bbcc39ca960e5c1b349539b5a59bf546e1e0e28c3491deafe491752c03df6627',3,546,'2022-07-01 18:12:31','','2022/07'),(3181,253,'Version','LogicalModel_Imerys-V2.1.3.eapx','220701194653_LogicalModel_Imerys-V2.1.3.eapx',3379200,NULL,'503a83a0c069d87c96a3887c4323470eb26c2772824fc4657cf56ce9ccd72d02',2,1,'2022-07-01 19:46:53','','2022/07'),(3182,301,'Version','Simulation_2022_Release_x64.zip','220704110817_Simulation_2022_Release_x64.zip',3006201,'application/x-zip-compressed','589f7952cbf977f81e5320fc83771df14681602b7ecce34443900b3414d327e9',1,1,'2022-07-04 11:08:17','','2022/07'),(3183,301,'Version','Topic.txt','220704110818_Topic.txt',206,'text/plain','fc1259733fd7285dc12f42a3738554fa56ab8682111ec570811bf7771dd988ef',0,1,'2022-07-04 11:08:18','','2022/07'),(3184,301,'Version','UAExpert_1.5.12_Portable.zip','210212132112_UAExpert_1.5.12_Portable.zip',17473995,'application/x-zip-compressed','b19b0e4a811614d849316165f5e74b490774a1293c0c636f68ca39a4f534d5d3',4,1,'2022-07-04 11:08:21','','2021/02'),(3185,302,'Version','Topic.txt','210820230136_Topic.txt',213,'text/plain','1a93f2c46bb16da1bbfb44afd5478f03298ece30c741d45379f723ca9367473b',0,1,'2022-07-04 11:08:34','','2021/08'),(3186,253,'Version','LogicalModel_Imerys-V2.1.4.eapx','220704171406_LogicalModel_Imerys-V2.1.4.eapx',3379200,NULL,'4475f664a89031c71d64809e964e85af4c6a06b5cd020d1f67c6bcce691a9711',5,1,'2022-07-04 17:14:06','','2022/07'),(3188,300,'Version','2430- Presentation de la technologie OPC J1 - Matin.pdf','220705142707_53098ac1ea7607585cb3121bb9c7b6f3.pdf',3835142,'application/pdf','ccb9343d509427967fcd698122e1e7da0c2ccbaf01e2eec036646a6d29cae370',0,1,'2022-07-05 14:27:07','','2022/07'),(3189,300,'Version','OPCUA_Spec_1.0.4.zip','201201105151_OPCUA_Spec_1.0.4.zip',23295180,'application/x-zip-compressed','83cd660330a9f0b9d700b16075d69a191c4e3c07296e9309c73a5378b85e6f47',1,1,'2022-07-05 16:06:01','','2020/12'),(3191,205,'Version','XiMulator_1.0.2.5_v1.0.5.2.zip','220706132243_XiMulator_1.0.2.5_v1.0.5.2.zip',1254660,'application/x-zip-compressed','99d58a7d3fd2a018dca7300a7216dc2bc6dd22b9d5c31845bcbb1e18789afbee',1,1,'2022-07-06 13:24:26','','2022/07'),(3192,254,'Version','XiMulator_1.0.2.5_v1.0.5.2.zip','220706132243_XiMulator_1.0.2.5_v1.0.5.2.zip',1254660,'application/x-zip-compressed','99d58a7d3fd2a018dca7300a7216dc2bc6dd22b9d5c31845bcbb1e18789afbee',4,1,'2022-07-06 13:25:05','','2022/07'),(3193,182,'Version','XiMulator_1.0.2.5_v1.0.5.2.zip','220706132243_XiMulator_1.0.2.5_v1.0.5.2.zip',1254660,'application/x-zip-compressed','99d58a7d3fd2a018dca7300a7216dc2bc6dd22b9d5c31845bcbb1e18789afbee',0,1,'2022-07-06 13:25:24','','2022/07'),(3194,872,'Issue','Livraison Binaires Debug-IPV4 - 6-7-2022_v1.0.7.4.zip','220706134517_3a6f3d2d8cfffd6c5557c99128881fce.zip',12607851,'application/x-zip-compressed','b340823d9971e19e18a3bc804647f42ae2be61f4b9beb7279430882977d3ba34',0,1,'2022-07-06 13:45:17','','2022/07'),(3196,874,'Issue','MSVRCR120.JPG','220706170952_MSVRCR120.JPG',43458,'image/jpeg','f0e8bf61f3428fb1cdd316c57caeb624f222fa17437e624732e0e60f567fecbf',0,496,'2022-07-06 17:09:52','','2022/07'),(3197,870,'Issue','clipboard-202207061744-yjkvf.png','220706174409_clipboard-202207061744-yjkvf.png',58639,'image/png','a506e76ac5af9f8f3c3da438a92929f8bb7afac6aef6db91d3949823d1887064',0,550,'2022-07-06 17:44:09','','2022/07'),(3198,263,'News','clipboard-202207071538-v0vsd.png','220707153817_clipboard-202207071538-v0vsd.png',99721,'image/png','201ceb5d81e8263d246fab4234a412b26203a137c91c53b4838f6827021a024e',0,1,'2022-07-07 15:38:17','','2022/07'),(3199,854,'Issue','Jeux de test Emotors.zip','220707201648_6dd430abb7881affc4102b7c7ec667ef.zip',23068,'application/x-zip-compressed','34a102cb7ecd9e080b7b05bbf0a6c217f16fe07549aece53c0a5045a2e59f8f6',0,549,'2022-07-07 20:16:48','','2022/07'),(3200,854,'Issue','Tests_VpiOptimu_V1.0.0.3.docx','220707201838_Tests_VpiOptimu_V1.0.0.3.docx',33891,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','48020f5bf2e1ae2d3a0a758609585d9eca1f8819d59aa34ed44c8fa6c2db5936',0,549,'2022-07-07 20:18:38','','2022/07'),(3203,253,'Version','LogicalModel_Imerys-V2.1.5.eapx','220707215907_LogicalModel_Imerys-V2.1.5.eapx',3379200,NULL,'af8b56d70eed8caefc2f1b7115d9e617cf931fde3145c9e28150e12cdcc2ecc8',7,1,'2022-07-07 21:59:07','','2022/07'),(3204,253,'Version','Generation_2.1.5.zip','220707215912_Generation_2.1.5.zip',433410,'application/x-zip-compressed','ffa5182c28661f47aaa747d11a97576aab839732d2077e4dff322ae83889bea8',6,1,'2022-07-07 21:59:12','','2022/07'),(3205,71,'Project','OPC_UA_TECHPAP (2).zip','220712135816_458ea5219e41c9a430ca8f064d6df043.zip',23671352,'application/x-zip-compressed','3ba703bdea362ebd96f8305a7254fc7ff10c49c2eaf450b7b80580d56ec6a02c',1,575,'2022-07-12 13:58:16','','2022/07'),(3206,877,'Issue','OPC_UA_TECHPAP (2).zip','220712135816_458ea5219e41c9a430ca8f064d6df043.zip',23671352,'application/x-zip-compressed','3ba703bdea362ebd96f8305a7254fc7ff10c49c2eaf450b7b80580d56ec6a02c',0,575,'2022-07-12 14:00:50','','2022/07'),(3207,246,'Version','DemoMqttPublisher_Debug_Simulation.zip','220712162125_DemoMqttPublisher_Debug_Simulation.zip',3510897,'application/x-zip-compressed','a98434b1c49eff77a3b5d4ee18dfdac98bd60b6cc2358b22a903f2ce7f9d66bf',3,1,'2022-07-12 16:21:25','','2022/07'),(3208,245,'Version','Test Folder.zip','220712174707_cda1dbfa7930127f8003f4f5a2e8f989.zip',342595,'application/x-zip-compressed','1572fe55df752e0d603579a7edb9e4ee64fd57f7d465baa7aec66a8e92e21ada',1,503,'2022-07-12 17:47:07','Nandan Ximulator Demo - Imerys','2022/07'),(3209,254,'Version','XiMulator_1.0.2.5_v1.0.5.3.zip','220712180046_XiMulator_1.0.2.5_v1.0.5.3.zip',1254668,'application/x-zip-compressed','554d480d72a4807d4ed379d0ae7c011f3394de98ca1773626222f08fffea7d9d',2,1,'2022-07-12 18:00:46','','2022/07'),(3210,176,'Version','Service_In-Uninstall.zip','220712204326_Service_In-Uninstall.zip',493,'application/x-zip-compressed','06360979c7dfe0a6721062ef1c240f2c5b64b01d2cfbd5870de48cc98b966621',1,1,'2022-07-12 20:43:26','','2022/07'),(3211,303,'Version','Topic.txt','220713100308_Topic.txt',17,'text/plain','0850367b096bd1cad98c8cb59b259a685276430f919fed91b1dfd4fa16343e0e',0,1,'2022-07-13 10:03:08','','2022/07'),(3212,303,'Version','Wireshark-win32-3.4.5.exe','210820231852_Wireshark-win32-3.4.5.exe',56531712,'application/x-msdownload','bc46bdc14dac4c67033bc5ad5590e4b221d5724ba28569b9134c13528fa37fed',1,1,'2022-07-13 10:03:17','','2021/08'),(3213,304,'Version','Topic.txt','210820235306_Topic.txt',24,'text/plain','48345ad886462c40a8e2fdfe82cd4f05bee4cdbd9c46a201afa40a5cd26c1b31',0,1,'2022-07-13 11:00:36','','2021/08'),(3214,304,'Version','Demo-CSV-HA_Release_X64.zip','210820235253_Demo-CSV-HA_Release_X64.zip',2694462,'application/x-zip-compressed','65e387f207c70972a2e52ed87736e05b687a341e79a63b196d9e38fbaf71172d',1,1,'2022-07-13 11:00:37','','2021/08'),(3215,305,'Version','Topic.txt','210820235443_Topic.txt',48,'text/plain','8daefca2b2cfc73becf2307100046d64834e8b7cc520ad83df58a15804b05765',0,1,'2022-07-13 11:18:19','','2021/08'),(3216,305,'Version','DemoAC_Release_x64.zip','210820235408_DemoAC_Release_x64.zip',2966223,'application/x-zip-compressed','88821edbc48425e80a09c4a9e900a4012f59d58190fda8a8c1c1af82f0d3b073',1,1,'2022-07-13 11:18:19','','2021/08'),(3217,300,'Version','2430 - Presentation de la technologie OPC J2 - Matin.pdf','220713113220_5e260e6e1ca3e4a2ad722bd0d95a7e27.pdf',2871367,'application/pdf','4b414f6fc4698bebd9a22da93b2e535b244d46233ecbcc6b1645b6de59dbcce5',2,1,'2022-07-13 11:32:20','','2022/07'),(3218,300,'Version','2430 - Presentation de la technologie OPC J1-Après-midi.pdf','220713113255_ceaf425b2b48f7ab9d31d86426b4091b.pdf',2316572,'application/pdf','3ed34cb2f63e896b7c0436baf4ebed02d64941173bd48c6243d4c179ef0bb489',0,1,'2022-07-13 11:32:55','','2022/07'),(3219,306,'Version','ModelisationStep01.zip','210822151006_ModelisationStep01.zip',2688451,'application/x-zip-compressed','0fdc9e86ced6dbe83b82302e27626b52b94f60edf208257ae0568afca1edf619',1,1,'2022-07-13 13:18:56','','2021/08'),(3220,306,'Version','Topic.txt','210822151031_Topic.txt',233,'text/plain','825e55e4423fba934e6f33d2d785e1f2409173ce0e2d5f2d1719d64938413441',0,1,'2022-07-13 13:18:57','','2021/08'),(3221,306,'Version','SiOME_V25.zip','220601152441_SiOME_V25.zip',80118630,'application/x-zip-compressed','6d72d93ae65c53aa8899f2694f8b3a16d8d32e3724b1c4da4d2670bb1712ce53',1,1,'2022-07-13 13:19:19','','2022/06'),(3222,879,'Issue','GENESIS.pcapng','220713133157_GENESIS.pcapng',5752540,NULL,'a03fee5cdee2d4699ab1a73fbe1372e9a6865b5bee634e9480cb4ffb81a31374',0,545,'2022-07-13 13:31:57','','2022/07'),(3223,300,'Version','2430 - Presentation de la technologie OPC J2-Après-midi.pdf','220713154400_9e070b2cbea2cd710117df4a41f03e75.pdf',2219005,'application/pdf','960019da17c79b0d5ee9d44def0e3a217a9780d6017799157504394bc240cd0a',0,1,'2022-07-13 15:44:00','','2022/07'),(3224,300,'Version','2430 - Bilan Formation OPC 2 Jours.pdf','220713154427_f24c773781b1ede3f5893403809baf99.pdf',306307,'application/pdf','ca7646ab21b89fa9397321c5184919da5f05fdad5c14aa8d5461d31b59c6733e',1,1,'2022-07-13 15:44:27','','2022/07'),(3225,236,'Version','DemoS7_Simulator_Release_x64.zip','220308163339_DemoS7_Simulator_Release_x64.zip',4821516,'application/x-zip-compressed','98a606cb0eaab400f58863d0560d4a51cad0d5067a40656631ed9417d5a9b31a',4,1,'2022-07-13 16:09:04','','2022/03'),(3226,879,'Issue','SQL-00200.log','220713165628_SQL-00200.log',577,'text/plain','2f6d8acc1d3ac5a5922c9fd2b2efda3f3c85bdc809551ad63c2cca11a57febdc',0,545,'2022-07-13 16:56:28','','2022/07'),(3227,879,'Issue','HATest.log','220713165628_HATest.log',7243,'text/plain','eed8d85b48018dd76c28688fe56560c075a43d0d3f2fd200eea7699b52a95257',0,545,'2022-07-13 16:56:28','','2022/07'),(3228,253,'Version','LixheVar_1.0.8.csv','220716184629_LixheVar_1.0.8.csv',3057234,'text/csv','b6851355355518e92aeb4e78c517e41b8c59599a7d521286694529ebd54c2bf5',1,1,'2022-07-16 18:46:29','','2022/07'),(3229,162,'Version','Livraison Binaires Debug-IPV6 - 19-07-2022_v1.0.7.4.zip','220719140610_085527477ed17a1475e4339eef6a6de5.zip',10829062,'application/x-zip-compressed','12d6b5b73799af57852a1168840f3add32554314dfd635f623551fc45bbd3112',1,1,'2022-07-19 14:06:10','','2022/07'),(3230,292,'Version','VPIS7d_version_1.0.2.4.zip','220719194008_VPIS7d_version_1.0.2.4.zip',61702,'application/x-zip-compressed','06a8c28e860427508dc9a52a6913f26afdb70370ac3a72be642992b27bfc7509',1,1,'2022-07-19 19:40:08','','2022/07'),(3231,197,'Version','Serveur JNEM - 28-06-2022.zip','220721120627_bcf0d8273408a1d88aab8868a698926d.zip',4495709,'application/x-zip-compressed','72a2f8719772c5b49eaff7d2d151353506e65827349cb9457f19686a2d617d59',1,1,'2022-07-21 12:06:27','','2022/07'),(3232,864,'Issue','clipboard-202207211445-zkfym.png','220721144507_clipboard-202207211445-zkfym.png',30341,'image/png','30106ec1ad71500396e9f80aa979eb66f8c9d2aaca5f6bd607d66a35a9eb902c',0,1,'2022-07-21 14:45:07','','2022/07'),(3234,290,'Version','LixheVar_1.0.8-21-7-2022.zip','220721153154_LixheVar_1.0.8-21-7-2022.zip',204780,'application/x-zip-compressed','c6ebb7fc608ffdf670aa5d5b7713fb48d4d1eea1723572989b1c62769232b3c2',0,1,'2022-07-21 15:31:54','','2022/07'),(3235,162,'Version','Livraison Binaires Debug-IPV6 - 21-07-2022_v1.0.7.4.zip','220721160652_d6a6fd8e7d4eeddc41ee07c054ef2159.zip',10774269,'application/x-zip-compressed','80e4030bd6077f227e8d8312e3110c52537982af93fd917a8d910513e14525a1',1,1,'2022-07-21 16:06:52','','2022/07'),(3236,165,'Version','OpenOpcUaCoreServer_Debug.exe_220721_161318.dmp','220721161454_OpenOpcUaCoreServer_Debug.exe_220721_161318.dmp',20841997,'application/vnd.tcpdump.pcap','17533f63e7c3c1f898d942fc051e0f7d725bd15a6ce71856cbed32c8fa58dff3',1,545,'2022-07-21 16:14:54','','2022/07'),(3237,165,'Version','OpenOpcUaCoreServer_Debug.exe_220721_164851.zip','220721165952_OpenOpcUaCoreServer_Debug.exe_220721_164851.zip',38456240,'application/x-zip-compressed','681c2c5c71517563df3b92762ed9bba606e378b134046af1be8d8440c694507f',1,545,'2022-07-21 16:59:52','','2022/07'),(3238,290,'Version','LixheVar_1.0.8-21-7-2022.zip','220721153154_LixheVar_1.0.8-21-7-2022.zip',204780,'application/x-zip-compressed','c6ebb7fc608ffdf670aa5d5b7713fb48d4d1eea1723572989b1c62769232b3c2',0,1,'2022-07-21 17:06:20','','2022/07'),(3240,883,'Issue','Ticket Probleme Chargement VPIs.zip','220721202737_337512d261517e60332749e027561e00.zip',13878782,'application/x-zip-compressed','26e8d22036e53de003ab704a200b76b640d6ed84c2180b0ee1d0971e88631936',0,432,'2022-07-21 20:27:37','','2022/07'),(3241,292,'Version','Livraison Binaires Debug-IPV6 - 22-07-2022_v1.0.7.4.zip','220722104131_0de1212c1d87f7c0501676b685086bf9.zip',10835208,'application/x-zip-compressed','096a27b643204e9eb086e1593bf9557fbe248d52d3e40461931b79f2ea90f35c',1,1,'2022-07-22 10:41:31','','2022/07'),(3242,165,'Version','TRACEALARM_ Debug-IPV6 - 21-07-2022_v1.0.7.4.pcapng','220722152401_346df76bf18327953e3af1e47f9155d8.pcapng',2492844,NULL,'3ca6f7d7384911fcb6d0ff1c085fd282ad91f8a5138cc70f1da178d17f42326a',0,545,'2022-07-22 15:24:01','','2022/07'),(3243,292,'Version','GenericEncoderDecoder.zip','220722160527_GenericEncoderDecoder.zip',54429,'application/x-zip-compressed','11597e576843ba86436e558df66aacdc242245f85f13f1dbc46696f0ac3169a0',1,1,'2022-07-22 16:05:27','','2022/07'),(3244,879,'Issue','HATest.log','220723170110_HATest.log',12643,'text/plain','62f4bee7f3f00cb849882acfd42d12bb36275ff9f7e383af35e2d456d96e585a',0,1,'2022-07-23 17:01:10','','2022/07'),(3245,879,'Issue','SQL-00200.log','220723170110_SQL-00200.log',5059,'text/plain','6c6b59d01728d8a123fadc8eba432033ba8941060782e43b5eed8a6721d04d1f',0,1,'2022-07-23 17:01:10','','2022/07'),(3246,879,'Issue','01.PNG','220723170110_01.PNG',74341,'image/png','3551dc46de6a6eaf10b0a4a81b66c0627de13fac6549524825e3dc454b520ead',0,1,'2022-07-23 17:01:10','','2022/07'),(3248,156,'Version','Demo_VpiUaClnt_AutoCfg_Debug_x64.zip','220725144411_Demo_VpiUaClnt_AutoCfg_Debug_x64.zip',3769890,'application/x-zip-compressed','117f4ee960bfcb9ff9f25820f80dfe65770ac2c23d89472c86efd07738757fe0',1,1,'2022-07-25 14:44:11','','2022/07'),(3249,157,'Version','Demo-PGSQL-HA_x64_Release.zip','220725161422_Demo-PGSQL-HA_x64_Release.zip',4121322,'application/x-zip-compressed','1505e38d39762def2eb65131fc5429f4c8c489ad6681227d30654527cbf1835f',1,1,'2022-07-25 16:14:22','','2022/07'),(3250,884,'Issue','exemple.PNG','220726165927_exemple.PNG',460339,'image/png','6e665b627e7611a4e67b92a98c306003dd6efdcbd9aad44c8fc234338f326e54',0,565,'2022-07-26 16:59:27','','2022/07'),(3251,292,'Version','VPIS7d_v1.0.2.5.zip','220728103836_VPIS7d_v1.0.2.5.zip',61706,'application/x-zip-compressed','e3a5b7e408ed96cc1761f91ca550565ec9961fcccf579127d3ea2ce4283ff66f',1,1,'2022-07-28 10:38:36','','2022/07'),(3252,194,'Version','Livraison Binaires Debug-IPV6 - 28-07-2022_v1.0.7.5.zip','220728113549_1c35d63ac9efb616a461576d085227df.zip',10340014,'application/x-zip-compressed','875873ce8ed3891c0fc310ac3b9d8ffed9ef373bc81d089a76d59f51087bba8c',2,1,'2022-07-28 11:35:49','','2022/07'),(3253,194,'Version','Livraison Binaires Release-IPV6 - 28-07-2022_v1.0.7.5.zip','220728114126_5595c231580fbe2c3d35167bba1726ad.zip',1451541,'application/x-zip-compressed','8727f8a88be2c53b671101840d325243cfd209158a862aaac0c845a33072fdf0',2,1,'2022-07-28 11:41:26','','2022/07'),(3254,879,'Issue','crashServeurHA_html.zip','220728121942_crashServeurHA_html.zip',13005875,'application/x-zip-compressed','68b82f200fb67f0e622dbfa2e24e905b6c4ee255bd8814c3aac9a4cc185d0166',0,545,'2022-07-28 12:19:42','','2022/07'),(3255,3,'WikiPage','ASII_TABLE.jpg','220728131848_ASII_TABLE.jpg',897782,'image/jpeg','cf459bba1f6d98b291f48e85e265dc4419eca73288b147c5c31a50ea9bf7fab6',0,1,'2022-07-28 13:18:48','','2022/07'),(3260,296,'Version','OptimuLabo_v1.0.0.3_v1.0.0.2_29-7-2022.zip','220729112229_OptimuLabo_v1.0.0.3_v1.0.0.2_29-7-2022.zip',5013982,'application/x-zip-compressed','02c71abd0f0eb0f51a03f5c5a4770ee4866bfecefec26cd10e5cc9cfeadae43c',2,1,'2022-07-29 11:22:29','','2022/07'),(3262,879,'Issue','crashHA.zip','220729115049_crashHA.zip',2949340,'application/x-zip-compressed','080ab1636245b4361cd2920bca7f798c13ac08e977fdcd32f2951135fe42d60e',0,545,'2022-07-29 11:50:49','','2022/07'),(3263,292,'Version','Livraison Binaires Debug-IPV6 - 29-07-2022_v1.0.7.5.zip','220729170116_29714e34d168630d573f6aeae2bc43bc.zip',10358595,'application/x-zip-compressed','4d04710fc5a5c4fd1eca8f18ce7e05ceea78f44edab900da6cee26b5f540f702',1,1,'2022-07-29 17:01:16','','2022/07'),(3264,268,'Version','VPIS7_1.0.2.6.zip','220801100330_VPIS7_1.0.2.6.zip',24948,'application/x-zip-compressed','89d79afaaeaf7f5a8e3ab8b2b796682bbd8cd175a35bb0b506d6792893d3f682',1,1,'2022-08-01 10:03:30','','2022/08'),(3265,239,'Version','VPIS7_1.0.2.6.zip','220801100330_VPIS7_1.0.2.6.zip',24948,'application/x-zip-compressed','89d79afaaeaf7f5a8e3ab8b2b796682bbd8cd175a35bb0b506d6792893d3f682',0,1,'2022-08-01 10:03:54','','2022/08'),(3266,182,'Version','XiMulator_1.0.2.5_v1.0.5.4.zip','220801115526_XiMulator_1.0.2.5_v1.0.5.4.zip',1255016,'application/x-zip-compressed','e55c91278b09649cbec20489e14f4e27e8322c960d3ce6b2c837510943d15323',0,1,'2022-08-01 11:55:26','','2022/08'),(3268,254,'Version','XiMulator_1.0.2.5_v1.0.5.4.zip','220801115526_XiMulator_1.0.2.5_v1.0.5.4.zip',1255016,'application/x-zip-compressed','e55c91278b09649cbec20489e14f4e27e8322c960d3ce6b2c837510943d15323',3,1,'2022-08-01 11:56:09','','2022/08'),(3269,205,'Version','XiMulator_1.0.2.5_v1.0.5.4.zip','220801115526_XiMulator_1.0.2.5_v1.0.5.4.zip',1255016,'application/x-zip-compressed','e55c91278b09649cbec20489e14f4e27e8322c960d3ce6b2c837510943d15323',1,1,'2022-08-01 11:56:29','','2022/08'),(3270,239,'Version','VPIS7d_v1.0.2.6.zip','220801172330_VPIS7d_v1.0.2.6.zip',62068,'application/x-zip-compressed','e7d995577b2beec10f1df1820add1b5afb402fe07a31ae398a0c22a7ecf86ccb',0,1,'2022-08-01 17:23:30','','2022/08'),(3271,NULL,NULL,'clipboard-202208011849-aexbd.png','220801184955_clipboard-202208011849-aexbd.png',553975,'image/png','9750f9fdec3aaf61ca931a1dca0157c9ae1d8d3dd046fc2f8e65c348f4280b04',0,432,'2022-08-01 18:49:55',NULL,'2022/08'),(3272,NULL,NULL,'clipboard-202208011850-360ux.png','220801185027_clipboard-202208011850-360ux.png',619148,'image/png','1bd277f81e466ac4d53dd2e5853aa4d01823a55d5848f02883af75ec7873bdf0',0,432,'2022-08-01 18:50:27',NULL,'2022/08'),(3273,890,'Issue','clipboard-202208011903-o3qtl.png','220801190330_clipboard-202208011903-o3qtl.png',190804,'image/png','21b125891e788b9f9074cf5050e730fb3cd6f923f9a204f954dcf94696335572',0,432,'2022-08-01 19:03:30','','2022/08'),(3274,890,'Issue','clipboard-202208011903-yvltw.png','220801190356_clipboard-202208011903-yvltw.png',216840,'image/png','ae531c825b721363c029ccd8fdac782238278c53c0355178202363a8f2aefb52',0,432,'2022-08-01 19:03:56','','2022/08'),(3275,890,'Issue','Ticket Blocage demarrage serveur et chargement Vpi lorsque VpiLine et VpiValuesInit actives.zip','220801190531_7b6338a79451ebb3c61f0152400daf8f.zip',18255095,'application/x-zip-compressed','48f3dc57500aa96e22b426c204daa9bb9bf2f6b646318b8fb1652301c3b067c4',0,432,'2022-08-01 19:05:31','','2022/08'),(3276,245,'Version','OOUA_IMERYS_MVP_C3_SIOME_DEV.zip','220802151957_OOUA_IMERYS_MVP_C3_SIOME_DEV.zip',21212751,'application/x-zip-compressed','123f7cc46f6de61e9c54f8c70a6181eda4340b6feb04f356775c90a9cb436abd',2,573,'2022-08-02 15:19:57','','2022/08'),(3278,879,'Issue','traceWireSharkHA-ReponseIncomplete.pcapng','220803141851_traceWireSharkHA-ReponseIncomplete.pcapng',25256,NULL,'ff49eecb91b08133ab0a9e32912451e0e714e36b02385f3e6f1ce70d9c237346',0,545,'2022-08-03 14:18:51','','2022/08'),(3279,879,'Issue','HATest-Binaires03-08.zip','220803141905_HATest-Binaires03-08.zip',19836663,'application/x-zip-compressed','ba946978019fb70ae0bb7eeb11b7750d6d682cb311247f2141116cc351685570',0,545,'2022-08-03 14:19:05','','2022/08'),(3280,879,'Issue','pgadmin.JPG','220803141918_pgadmin.JPG',39588,'image/jpeg','2a8be4cd9b287868dabefb029cd3cdd2116898d8b2d68fac5b72e3c94626e9cc',0,545,'2022-08-03 14:19:18','','2022/08'),(3281,879,'Issue','UAExpert.JPG','220803141919_UAExpert.JPG',102625,'image/jpeg','864834e96504ac809e07cd4341faee76e975a192e80e16925f829c389fe52c18',0,545,'2022-08-03 14:19:19','','2022/08'),(3282,162,'Version','Livraison Binaires Debug-IPV4 - 3-08-2022_v1.0.7.7.zip','220803144702_b25dde89da47c6b83b9b866457b0ef98.zip',11663710,'application/x-zip-compressed','dcc900d38c7c1734f8e4d1687129e363097feb5c73d8e601478451a380652536',2,1,'2022-08-03 14:47:02','','2022/08'),(3283,253,'Version','ImerysTypesXMI1.1.xml','220803153211_ImerysTypesXMI1.1.xml',1670232,'text/xml','ff108d325c46c10d06795cff182ff46e4e0d7a12a772117df2b3c48ca3bbb8aa',1,573,'2022-08-03 15:32:11','','2022/08'),(3284,253,'Version','LogicalModel_Imerys-V2.1.6.eapx','220803155402_LogicalModel_Imerys-V2.1.6.eapx',3379200,NULL,'fc987c7e7dfa5fa2dba286dd6c2456d2a9860c986fe846bb3400781c3edb6351',3,1,'2022-08-03 15:54:02','','2022/08'),(3285,253,'Version','Generation_2.1.6.zip','220803160249_Generation_2.1.6.zip',483236,'application/x-zip-compressed','608e71d1e36619a1a43bc8b2fa035992e142dd4598be6026e594f1234d698702',3,1,'2022-08-03 16:02:49','','2022/08'),(3286,162,'Version','Livraison Binaires Debug-IPV4 - 4-08-2022_v1.0.7.7.zip','220804132904_c734493fa0353527e3f6ee0b293b15fd.zip',14270659,'application/x-zip-compressed','8517d592d879ffb6c846a22ab448762e09c47c7c24d233305272ef54f4071205',1,1,'2022-08-04 13:29:04','','2022/08'),(3287,891,'Issue','clipboard-202208041719-egipf.png','220804171946_clipboard-202208041719-egipf.png',133629,'image/png','fc6aa8f6a8baf75d91dc6f7816a39fbcb88c7abb8de07edef447294425433f73',0,432,'2022-08-04 17:19:46','','2022/08'),(3288,891,'Issue','clipboard-202208041720-e8yq2.png','220804172044_clipboard-202208041720-e8yq2.png',144677,'image/png','6d12a0a752236b5d85cbe3e3dbf434a55c82628727710b6cd707d4922f48cd0f',0,432,'2022-08-04 17:20:44','','2022/08'),(3289,293,'Version','OOUA_IMERYS_MVP_C3_SIOME_DEV_SEM_V215.zip','220804173901_OOUA_IMERYS_MVP_C3_SIOME_DEV_SEM_V215.zip',19951891,'application/x-zip-compressed','405e3ef1ae79841f5c72c656101aacc604c0dc496adf49214649243c776b0597',1,573,'2022-08-04 17:39:01','','2022/08'),(3290,891,'Issue','ProcDump.zip','220804174331_ProcDump.zip',91928598,'application/x-zip-compressed','30646736783c71177045837a45e4b290166df52e20dd0c200c52ead353313047',0,432,'2022-08-04 17:43:31','','2022/08'),(3291,891,'Issue','PDB-SymbolesToInclude.zip','220804174354_PDB-SymbolesToInclude.zip',29975696,'application/x-zip-compressed','79b2eabc617667a935f2449d45a83f7be5fa7be70464fa64face8e1b071c0884',0,432,'2022-08-04 17:43:54','','2022/08'),(3292,293,'Version','OOUA_IMERYS_MVP_C3_SIOME_DEV_SEM_V215.zip','220805095701_OOUA_IMERYS_MVP_C3_SIOME_DEV_SEM_V215.zip',20237303,'application/x-zip-compressed','2ac4bf88ea2019fd133499e117fb4e94fce2eb481cc6d5e996655d44fe94ed07',1,573,'2022-08-05 09:57:01','','2022/08'),(3293,253,'Version','LogicalModel_Imerys-V2.1.7.eapx','220808161112_LogicalModel_Imerys-V2.1.7.eapx',3411968,NULL,'31cead161b36beb08c744d628b01774b64e8b6e54b024c1cd4af85b79b6c376b',2,573,'2022-08-08 16:11:12','','2022/08'),(3294,239,'Version','Livraison Binaires Debug-IPV6 - 09-08-2022_v1.0.7.7.zip','220809152710_9f742e5d27aa340ff4c0f659643ca237.zip',10378216,'application/x-zip-compressed','0202c1764425846dd2e98c3dc3adb17573d9f1bef7db4820bc72091766d63932',2,1,'2022-08-09 15:27:10','','2022/08'),(3295,896,'Issue','1-OpenOpcUa Project - US.pdf','220809153248_189abf72248a82966f7f29a58051526e.pdf',1661699,'application/pdf','ae38d07c50c52012cb07038b286fdc0fb3ae8f97c468cb5623ff1e177853929d',0,1,'2022-08-09 15:32:48','','2022/08'),(3296,894,'Issue','clipboard-202208091630-kzt9x.png','220809163015_clipboard-202208091630-kzt9x.png',81884,'image/png','8930fb095030948942c4758ab6cb9bad3c7bb311d2d393373f09a7fffd0c44bf',0,1,'2022-08-09 16:30:15','','2022/08'),(3297,894,'Issue','clipboard-202208091630-qcupj.png','220809163056_clipboard-202208091630-qcupj.png',85620,'image/png','86615dcaffc4ccbfaf71df171ca070e31689f9d9409d056d85b9c23dab3db3be',0,1,'2022-08-09 16:30:56','','2022/08'),(3298,894,'Issue','clipboard-202208091631-wxdus.png','220809163135_clipboard-202208091631-wxdus.png',32895,'image/png','e5855e219ca3c2c5e19967bffb5d4a3214959cf400dde779ff172d8a3901552f',0,1,'2022-08-09 16:31:35','','2022/08'),(3299,293,'Version','OOUA_IMERYS_TestSemih.zip','220810161636_OOUA_IMERYS_TestSemih.zip',17518192,'application/x-zip-compressed','b14e0a237a07ba2ea6483960f214796ee50b012f9b09649ba0897d45b94bb7b5',1,573,'2022-08-10 16:16:36','','2022/08'),(3300,245,'Version','OOUA_IMERYS_TestSemih_MC.zip','220810172152_OOUA_IMERYS_TestSemih_MC.zip',17569439,'application/x-zip-compressed','37400a07d48fb00f4ee4643e90782f61ce9bed7f9b3c018c922529dbe3087822',1,1,'2022-08-10 17:21:52','','2022/08'),(3301,895,'Issue','OOUA_IMERYS_TestSemih_CheckedMC.zip','220810194534_OOUA_IMERYS_TestSemih_CheckedMC.zip',17554653,'application/x-zip-compressed','978618b687a58fbb16ac68aadc4e8c9a3a5a90e985be4dd424663e329f7dd932',0,1,'2022-08-10 19:45:34','','2022/08'),(3302,245,'Version','OOUA_IMERYS_TestSemih_CheckedMC.zip','220810194534_OOUA_IMERYS_TestSemih_CheckedMC.zip',17554653,'application/x-zip-compressed','978618b687a58fbb16ac68aadc4e8c9a3a5a90e985be4dd424663e329f7dd932',1,1,'2022-08-12 17:18:37','','2022/08'),(3303,293,'Version','OOUA_IMERYS_TestSemih_V1.zip','220812171947_OOUA_IMERYS_TestSemih_V1.zip',17517743,'application/x-zip-compressed','3af47ae4a0267031296fc4679f44bc0e21030f9943906dfea9c7caa8792beaca',1,573,'2022-08-12 17:19:47','','2022/08'),(3304,293,'Version','OOUA_IMERYS_TestSemih_V2.zip','220816180147_OOUA_IMERYS_TestSemih_V2.zip',17528814,'application/x-zip-compressed','45a6a1728444b9b9658ec2b42662fdc0d7ff8bad3e64cdc112584fbf7b9f56d9',1,573,'2022-08-16 18:01:47','','2022/08'),(3305,898,'Issue','clipboard-202208171723-zh0il.png','220817172346_clipboard-202208171723-zh0il.png',90025,'image/png','b5afc82912d3f34f93699e9ee458ea4df6c422ff050b7fda48afff77a7fc08b9',0,432,'2022-08-17 17:23:46','','2022/08'),(3306,898,'Issue','clipboard-202208171731-ibifz.png','220817173106_clipboard-202208171731-ibifz.png',124577,'image/png','5a182db6e8d6eb91de3891b472594c4b758284a35f0235edf674abe487ae330f',0,432,'2022-08-17 17:31:06','','2022/08'),(3307,898,'Issue','clipboard-202208171731-w4gfe.png','220817173146_clipboard-202208171731-w4gfe.png',123755,'image/png','84a20b6a9bfc1b7098562a111c7d6dd540781a5267253117e638c8bdf8b8cbeb',0,432,'2022-08-17 17:31:46','','2022/08'),(3308,898,'Issue','clipboard-202208181418-lehyy.png','220818141823_clipboard-202208181418-lehyy.png',51278,'image/png','3fbb66f44da9caaca32ec5c5f41790f69d6da540d5eca325c491defa4ea2c123',0,432,'2022-08-18 14:18:23','','2022/08'),(3309,898,'Issue','Plant.log','220818141925_Plant.log',35054,'text/plain','8ba3462c3e741587064d6aeb5d5b7275c5dee619bb5bd574cbdbf2df7a88563b',0,432,'2022-08-18 14:19:25','','2022/08'),(3310,898,'Issue','OpenOpcUaStackV1d.dll','220818155528_OpenOpcUaStackV1d.dll',1610240,'application/x-msdownload','86e96eeaafd1e91e7a5374cbd5586fb151dda82446c685fadb818f27c1d80067',0,1,'2022-08-18 15:55:28','','2022/08'),(3311,NULL,NULL,'OpenOpcUaStackV1d.dll','220818171345_OpenOpcUaStackV1d.dll',1608704,'application/x-msdownload','25ee8ff786c0ae0cb07d7e8bdc3780d9e38c57c370f501ec76f352bdac12ddd1',0,1,'2022-08-18 17:13:45',NULL,'2022/08'),(3312,898,'Issue','OpenOpcUaStackV1d.dll','220818171345_OpenOpcUaStackV1d.dll',1608704,'application/x-msdownload','25ee8ff786c0ae0cb07d7e8bdc3780d9e38c57c370f501ec76f352bdac12ddd1',0,1,'2022-08-18 17:21:48','','2022/08'),(3313,898,'Issue','Plant.log','220818172741_Plant.log',44660,'text/plain','2b62fc1ee736bcf3531cceb1a1514b2ccca2f655cecc29391d41c37510666d35',0,432,'2022-08-18 17:27:41','','2022/08'),(3314,898,'Issue','clipboard-202208181728-vq6ib.png','220818172834_clipboard-202208181728-vq6ib.png',36567,'image/png','687dd0cc502f190aa8f9e69a9d24ba96e1078b775b1cd7ad9eb1d536cef66f64',0,432,'2022-08-18 17:28:34','','2022/08'),(3315,898,'Issue','clipboard-202208191646-hi4st.png','220819164638_clipboard-202208191646-hi4st.png',18652,'image/png','44410bca490ae9f82c2aec559a38e4a24330c27b31dace4b1742fa118450edbb',0,432,'2022-08-19 16:46:38','','2022/08'),(3316,898,'Issue','UaClnt-Assembly.bak','220819165644_UaClnt-Assembly.bak',37330,NULL,'54a7e6be92a9556df72265f2009c8ababeaebd581be386a7f3b35ed00d652840',0,432,'2022-08-19 16:56:44','','2022/08'),(3317,898,'Issue','UaClnt-Assembly-01901.bak','220819165644_UaClnt-Assembly-01901.bak',2772,NULL,'26ee2f1a85691f0c3f4f709b8b0d6f57c53cea6152802d1a22dd2f8d4ad7f3e0',0,432,'2022-08-19 16:56:44','','2022/08'),(3318,898,'Issue','Plant08-19-14-10.bak','220819165644_Plant08-19-14-10.bak',1047718,NULL,'42acc47f117d773ffee8f56589af3c2ffe3449d36ebc5ceff1ec0a087929fa4d',0,432,'2022-08-19 16:56:44','','2022/08'),(3319,254,'Version','Service_InstallUninstall.zip','220712204326_Service_In-Uninstall.zip',493,'application/x-zip-compressed','06360979c7dfe0a6721062ef1c240f2c5b64b01d2cfbd5870de48cc98b966621',2,1,'2022-08-22 11:43:45','','2022/07'),(3320,237,'Version','ManagementDAClientSetup.zip','210204140004_ManagementDAClientSetup.zip',18171838,'application/x-zip-compressed','b8a999333eeee9d739145cc90bfa0f571c2b98c01d90747ce04fbd47cbf0450a',2,1,'2022-08-24 14:36:22','','2021/02'),(3321,236,'Version','OOUA_IMERYS_PROD.zip','220825085743_OOUA_IMERYS_PROD.zip',17895435,'application/x-zip-compressed','4ab0396bb982503b54c66b2f6cf04d3de90cbd62255c1f8aa1c73e91503b6df1',2,1,'2022-08-25 08:57:43','','2022/08'),(3322,290,'Version','IMERYS_PROD-25-08-2022.csv','220825104656_IMERYS_PROD-25-08-2022.csv',5960050,'text/csv','0d1729a8d9d358a48086facefa027e0ca6ae7849a25304bda76a2f6d6a8e6b11',4,1,'2022-08-25 10:46:56','','2022/08'),(3323,253,'Version','LogicalModel_Imerys-V2.1.8.eapx','220825160338_LogicalModel_Imerys-V2.1.8.eapx',3477504,NULL,'b82c07f8b5f6ec5a543901b5ecb6f12c2eb78d7d5f9d26960c1dcbb34b6f4970',1,573,'2022-08-25 16:03:38','','2022/08'),(3324,902,'Issue','clipboard-202208291046-uxkjl.png','220829104604_clipboard-202208291046-uxkjl.png',165441,'image/png','9a58721aba356a01cb23c07c4385748c5ebbd7f2825b11099a27ec3f8dbff08e',0,510,'2022-08-29 10:46:04','','2022/08'),(3325,902,'Issue','clipboard-202208291136-iiso9.png','220829113654_clipboard-202208291136-iiso9.png',125091,'image/png','ae8c2d6bab6c0dfe6cf9cfab85fa2d922a5a81968e7859760312feac1331ad5e',0,510,'2022-08-29 11:36:54','','2022/08'),(3327,292,'Version','VfiPgSqld_0.0.2.1.zip','220830171558_VfiPgSqld_0.0.2.1.zip',42016,'application/x-zip-compressed','ed7421b7fae9813f1e5826b88ab797601779c352fbbcb6414fb5260ffbc0598a',0,1,'2022-08-30 17:15:58','','2022/08'),(3328,307,'Version','VC_redist.x86.exe','220905090917_VC_redist.x86.exe',13730768,'application/x-msdownload','cf92a10c62ffab83b4a2168f5f9a05e5588023890b5c0cc7ba89ed71da527b0f',1,1,'2022-09-05 09:09:17','','2022/09'),(3329,307,'Version','GatewayComDa.zip','220905090944_GatewayComDa.zip',3314480,'application/x-zip-compressed','ed090dee98a2eb51d627c5b45bcb9ee6302082df7759772ff0a60d4d24045aa5',1,1,'2022-09-05 09:09:44','','2022/09'),(3330,292,'Version','Livraison Binaires Debug-IPV4 - 5-09-2022_v1.0.7.7.zip','220905110704_973b998d61423568eab1579bf49bbc15.zip',15227635,'application/x-zip-compressed','c5bf3e060a288be5497e23fe44c2cd31ad45846b7433ad244e778086eaebd959',1,1,'2022-09-05 11:07:04','','2022/09'),(3332,307,'Version','VPIComDa_5-9-2022.zip','220905110839_VPIComDa_5-9-2022.zip',32739,'application/x-zip-compressed','c02c5bb774d501412450ec3cc7822dad0694580832aad318fa95fd628ba9a99a',1,1,'2022-09-05 11:08:39','','2022/09'),(3333,307,'Version','VPIComDa_1.0.0.9.zip','220905134510_VPIComDa_1.0.0.9.zip',33164,'application/x-zip-compressed','3bca6a3500b7b38cb6640707a0029b4ff99489023c50f01a08720fb500a8fe57',1,1,'2022-09-05 13:45:10','','2022/09'),(3334,307,'Version','VPIComDa_1.0.1.0.zip','220905140934_VPIComDa_1.0.1.0.zip',33301,'application/x-zip-compressed','98b8f153638be09f9bad85cc53598ae7da760f485cc8bd8d323093a49da4cee9',1,1,'2022-09-05 14:09:34','','2022/09'),(3336,307,'Version','Demo_Vpi_UaClient_Manu_x64_Debug_IPV6.zip','220905151104_Demo_Vpi_UaClient_Manu_x64_Debug_IPV6.zip',3378045,'application/x-zip-compressed','0e876a7b01aa094b1923e7b881388a5d90b58476256354553d3b49b363ac2104',1,1,'2022-09-05 15:11:04','','2022/09'),(3337,909,'Issue','OOUA.zip','220906091442_OOUA.zip',855599,'application/x-zip-compressed','ab02b4e93f9d81bcd7f8cb87cd20ef099f77d8c18806407e65467445a34db78c',0,489,'2022-09-06 09:14:42','','2022/09'),(3341,179,'Version','VpiValuesInitd_1.0.4.0.zip','220906144706_VpiValuesInitd_1.0.4.0.zip',41453,'application/x-zip-compressed','1b73f1bc876e9a667adf563e1d11e531f4208962ffb0ef3fdfc6373e9f046ab6',1,1,'2022-09-06 14:47:06','','2022/09'),(3342,179,'Version','VfiPgSqld_0.0.2.3.zip','220906145541_VfiPgSqld_0.0.2.3.zip',42124,'application/x-zip-compressed','b66d5f50180ba52ff12fba9e76e9936dd5fd0640baafe3488f7da9303635c30f',1,1,'2022-09-06 14:55:41','','2022/09'),(3343,179,'Version','Test_Restitution_15h14.zip','220906151514_Test_Restitution_15h14.zip',83637,'application/x-zip-compressed','2d145daf2c9dd2b75f53898ba49fa8b330eeabe779b288aaf92199ee969f615f',1,1,'2022-09-06 15:15:14','','2022/09'),(3344,292,'Version','Test_Restitution_15h14.zip','220906151514_Test_Restitution_15h14.zip',83637,'application/x-zip-compressed','2d145daf2c9dd2b75f53898ba49fa8b330eeabe779b288aaf92199ee969f615f',2,1,'2022-09-06 15:15:40','','2022/09'),(3347,162,'Version','VfiPgSqld_0.0.2.5.zip','220906154130_VfiPgSqld_0.0.2.5.zip',42294,'application/x-zip-compressed','ca3ab25e77e3ec8be787a0848b8eab37c48a7307b1a093bbf78e4f4fdb40f199',2,1,'2022-09-06 15:41:46','','2022/09'),(3354,292,'Version','Livraison_6-9-2022.zip','220906163604_Livraison_6-9-2022.zip',172359,'application/x-zip-compressed','ff4aa0f1f0cf15adf9bfebc685534a6e348a8a6a0b355a211dad143fcc5d1e39',3,1,'2022-09-06 16:36:04','','2022/09'),(3355,909,'Issue','OOUA.zip','220906212325_OOUA.zip',11646941,'application/x-zip-compressed','77c5bd94c12ff9b5d6b843acc33f2f7fd93d154df2533d1f37cce54b39cf796a',0,489,'2022-09-06 21:23:25','','2022/09'),(3356,308,'Version','OOUA_IMERYS_PROD_7-9-2022.zip','220907140934_OOUA_IMERYS_PROD_7-9-2022.zip',9230596,'application/x-zip-compressed','d83ba5969719c9fbef8fa34a09a6a55e185784ab346ec3303c3bb0a09c76d0ac',0,1,'2022-09-07 14:09:34','','2022/09'),(3357,239,'Version','Livraison Binaires Debug-IPV4 - 7-09-2022_v1.0.7.7.zip','220907154804_3e7b4157bbeee30415d382c6d228208f.zip',15269048,'application/x-zip-compressed','836ca8126861da0243a787bdcb7c1e6e01ac8760c70ad6d050a835e7874260a6',0,1,'2022-09-07 15:48:04','','2022/09'),(3358,292,'Version','LivraisonPartielle_7-9-2022.zip','220907161359_LivraisonPartielle_7-9-2022.zip',172489,'application/x-zip-compressed','d3a935801678362b3f6ea07b6e777694c33b0c5766beaa6cfe64259b8642c646',2,1,'2022-09-07 16:13:59','','2022/09'),(3359,292,'Version','Package_Vpi_Vfi_No_Leak-7-9-2022.zip','220907170005_Package_Vpi_Vfi_No_Leak-7-9-2022.zip',172725,'application/x-zip-compressed','b9fb87ed0fc4a9ac62fe766fbedd26a4252ba8e2e7f9562e7525e956cca1e3d5',2,1,'2022-09-07 17:00:05','','2022/09'),(3360,909,'Issue','Test_Crash_Sodel.zip','220907204628_Test_Crash_Sodel.zip',61198800,'application/x-zip-compressed','1c61f8b3f7be236460e7627922f9c471b0deac5b4df54f43197267df45953f19',0,447,'2022-09-07 20:46:28','','2022/09'),(3361,909,'Issue','clipboard-202209072245-icr3q.png','220907224545_clipboard-202209072245-icr3q.png',35087,'image/png','e9458a6d2fd77bb994d434e2f70e0a5b85f8116ac68774dfdba08bda6a8e06d2',0,1,'2022-09-07 22:45:45','','2022/09'),(3362,909,'Issue','clipboard-202209072246-4p6tc.png','220907224617_clipboard-202209072246-4p6tc.png',20558,'image/png','92142a7c5bf793f8a44a08bc212c016b3f2e95656c2d8dcec45ac4935055dca5',0,1,'2022-09-07 22:46:17','','2022/09'),(3363,239,'Version','Livraison Binaires Debug-IPV6 - 08-09-2022_v1.0.7.8.zip','220908140147_66bac6429df87cbf590deb9b1bef27f0.zip',12757650,'application/x-zip-compressed','545466f89c692c7ab6b97b2015513024550c48cfe9c4fa3a99692d433cd899e7',1,1,'2022-09-08 14:01:47','','2022/09'),(3364,911,'Issue','clipboard-202209081404-exn9o.png','220908140443_clipboard-202209081404-exn9o.png',140541,'image/png','a22370619ad0d98a6612f59bcb26729e6697fc4b3f0005da730923f10ee73674',0,510,'2022-09-08 14:04:43','','2022/09'),(3365,911,'Issue','feedplant_Instanciation.JPG','220908140525_feedplant_Instanciation.JPG',48035,'image/jpeg','da42857fb47825a40b532412caa64fcddce325b63d28669db7b0c62daddab74b',0,510,'2022-09-08 14:05:25','','2022/09'),(3366,911,'Issue','FEEDPLANT.PNG','220908141256_FEEDPLANT.PNG',110627,'image/png','4530d72da34b5d8bbc85978dcc94dc09366c03bec4897c00c0cbaaa9cfbd5e5d',0,573,'2022-09-08 14:12:56','','2022/09'),(3367,NULL,NULL,'clipboard-202209081420-700ug.png','220908142031_clipboard-202209081420-700ug.png',16257,'image/png','126ce10a0d1a2e7e3a250d2fbe51df773a743aaf27e7da62568e9f0b6b5b5696',0,1,'2022-09-08 14:20:31',NULL,'2022/09'),(3368,911,'Issue','clipboard-202209081421-9m0uc.png','220908142031_clipboard-202209081420-700ug.png',16257,'image/png','126ce10a0d1a2e7e3a250d2fbe51df773a743aaf27e7da62568e9f0b6b5b5696',0,1,'2022-09-08 14:21:24','','2022/09'),(3369,239,'Version','UAFlexClient_Debug_1.0.0.3_x64.zip','220908150432_UAFlexClient_Debug_1.0.0.3_x64.zip',18006735,'application/x-zip-compressed','64a02f808bcb3e89381d2bf363e517c37df17daddfb071c52f6a5552e87b92e3',1,1,'2022-09-08 15:04:32','','2022/09'),(3370,912,'Issue','LM3-2.zip','220908160911_LM3-2.zip',20919255,'application/x-zip-compressed','ae9c5cdb6a8d26084bc561cda1ca7a6d254d8aac4cf1159c767e627ca6cb27f8',0,432,'2022-09-08 16:09:11','','2022/09'),(3371,912,'Issue','ExportBDDAS.zip','220908160946_ExportBDDAS.zip',3296,'application/x-zip-compressed','ffd06f264cd127a7d4b3dfcda69052825ce9434fc74d1463a550c16ab1669eb6',0,432,'2022-09-08 16:09:46','','2022/09'),(3372,913,'Issue','Logistique.xml','220908163928_Logistique.xml',690193,'text/xml','e25041aebc1db22e13874caa5863e7392397bf8ebd15b6011310b5776a879c5f',0,545,'2022-09-08 16:39:28','','2022/09'),(3373,913,'Issue','SharedClasses.xml','220908163928_SharedClasses.xml',1878672,'text/xml','e61e7fcc5c7b95bc22b517215f3be525cac216b4b401d064a4588395c936ee30',0,545,'2022-09-08 16:39:28','','2022/09'),(3374,913,'Issue','XmiToNodeSet.log','220908163943_XmiToNodeSet.log',979,'text/plain','540ca4f3796e7beee7e57a0829dd4c0a18444c1838b0a62bba3ec42f867d3e83',0,545,'2022-09-08 16:39:43','','2022/09'),(3375,292,'Version','TestBase64.zip','220908165620_TestBase64.zip',33638038,'application/x-zip-compressed','7ba2d59b37e224d8dbc472f39843828fe9254249461d932242c3bb27a5043aa1',0,1,'2022-09-08 16:56:20','','2022/09'),(3376,913,'Issue','Emotor-LogicalModel-OPCUA_V2.30draft2.eapx','220908180416_Emotor-LogicalModel-OPCUA_V2.30draft2.eapx',6123520,NULL,'cb0f4b3d0270e4cdc34369569643994dbf72924a0b780132959e9b85d2fd7f06',0,545,'2022-09-08 18:04:16','','2022/09'),(3377,162,'Version','Livraison Binaires Debug-IPV4 - 8-09-2022_v1.0.7.8.zip','220908192557_e895b9c7a0f6f1a6009a1bc087c111b2.zip',12636168,'application/x-zip-compressed','253dd9293ccec6cede4f5ecf8272287a035945b9f720a4c5f021623ec280e629',1,1,'2022-09-08 19:25:57','','2022/09'),(3379,308,'Version','OOUA_IMERYS_PROD_9-9-2022.zip','220909110453_OOUA_IMERYS_PROD_9-9-2022.zip',9655517,'application/x-zip-compressed','fc2166930570d67014a14c399ffca08a7ecae33565bd257386e0250fb0c45033',1,1,'2022-09-09 11:04:53','','2022/09'),(3380,309,'Version','Microsoft.VC141.DebugCRT.zip','220909140623_Microsoft.VC141.DebugCRT.zip',953785,'application/x-zip-compressed','1c2cba3ebb3092fd5fcd75ed7f0a1084c19c5f9fd1259d2b6a85d9983f3cfe84',3,1,'2022-09-09 14:06:23','','2022/09'),(3382,253,'Version','FullConfig-9-9-2022.zip','220909162337_FullConfig-9-9-2022.zip',396531,'application/x-zip-compressed','5aad0f7811ccfb2683dda41d9c5024c730375f8acbc123f19207aaac3efd9b5d',3,1,'2022-09-09 16:23:37','','2022/09'),(3383,292,'Version','XiMulator_1.0.2.5_v1.0.5.5.zip','220912180345_XiMulator_1.0.2.5_v1.0.5.5.zip',1254795,'application/x-zip-compressed','e54e8bd03eb709f58f127b8ebc680af73425749a9830ad0ff7a8bfa93bbbe840',1,1,'2022-09-12 18:03:45','','2022/09'),(3385,26,'Project','OpenOpcUaFlexClient.exe_220914_181440.dmp','220914181745_OpenOpcUaFlexClient.exe_220914_181440.dmp',19007377,'application/vnd.tcpdump.pcap','fc082557e23b2be6c1a57b548cea4f12585df15b8948f8dcc55d813f0d041733',1,1,'2022-09-14 18:17:45','','2022/09'),(3386,29,'Version','OpenOpcUaConfigManager_Delivrable Beta_0.1.0.3_Debug_x64.zip','220914195719_eae8a83927af071ed89b2895bb45b508.zip',18272017,'application/x-zip-compressed','985f3ca8c5c488be9d236727c20ff74746b58d301de28cf9b7f488386d2fedcd',2,1,'2022-09-14 19:57:19','','2022/09'),(3387,915,'Issue','Schéma flux LM S7.pptx','220915141307_9536fe238b2e5eed0b4b6cdf749e1cb7.pptx',46537,'application/vnd.openxmlformats-officedocument.presentationml.presentation','f2240301a46881546557ff2688f5c0dfa4ae0c767c4e29cc3984462859cf61c2',0,432,'2022-09-15 14:13:07','','2022/09'),(3388,251,'Version','Demo_VpiUaClnt_AutoCfg_Release_x64.zip','220915143522_Demo_VpiUaClnt_AutoCfg_Release_x64.zip',3288817,'application/x-zip-compressed','0bda15f0eb29df360d0dc0450840a0aa077e49b05f2e88057455fe486db3c59b',2,1,'2022-09-15 14:35:22','','2022/09'),(3389,270,'Version','XiMulator_1.0.2.5_v1.0.5.5.zip','220912180345_XiMulator_1.0.2.5_v1.0.5.5.zip',1254795,'application/x-zip-compressed','e54e8bd03eb709f58f127b8ebc680af73425749a9830ad0ff7a8bfa93bbbe840',0,1,'2022-09-15 14:36:23','','2022/09'),(3390,252,'Version','Demo_VpiUaClnt_AutoCfg_Release_x64_OOUA_SEED.zip','220915161624_Demo_VpiUaClnt_AutoCfg_Release_x64_OOUA_SEED.zip',6663253,'application/x-zip-compressed','aa58a05dd3cc8f0288ccd724f4b67d0810738b9eca051f9789aa446e181bdb08',1,1,'2022-09-15 16:16:24','','2022/09'),(3391,915,'Issue','Schéma flux LM S7 V2.pptx','220915161900_f7d7ab45e3ce41e5a3ed7ab7812b4144.pptx',47091,'application/vnd.openxmlformats-officedocument.presentationml.presentation','c2563d03daf9260dbda4715a40f0017edb849a32aa9a4014b93acabe3437fb9c',0,432,'2022-09-15 16:19:00','','2022/09'),(3392,915,'Issue','Schéma flux LM S7-MC.pptx','220915162359_bb15deae9155efbf47352b98ce200f2e.pptx',49198,'application/vnd.openxmlformats-officedocument.presentationml.presentation','bde84fbc5550094613edde0a1043ff805490f375bd5e871e1db5acc4ed53055b',0,1,'2022-09-15 16:23:59','','2022/09'),(3393,239,'Version','Livraison Binaires Debug-IPV4 - 16-09-2022_v1.0.7.8.zip','220916095905_99a52fb2ea14d3cd4bd5d9f44572aa1d.zip',12636536,'application/x-zip-compressed','3ddd22500436ff2cae0feb79384c5b2179b0bebce548a68d3b93b424ee274cc3',3,1,'2022-09-16 09:59:05','','2022/09'),(3396,292,'Version','Livraison Binaires Debug-IPV4 - 16-09-2022_v1.0.7.9.zip','220916135734_99a52fb2ea14d3cd4bd5d9f44572aa1d.zip',12690826,'application/x-zip-compressed','5cbeb907c517830dd83e43d9b1c420922cfc6b3e073f33c8ba0e343dcb6ff717',3,1,'2022-09-16 14:48:23','','2022/09'),(3397,917,'Issue','configmanager.PNG','220920100959_configmanager.PNG',373033,'image/png','dd907daafcfcc04bda19a0c1a763e3aa036339079e10a871a082257218b5ea85',0,573,'2022-09-20 10:09:59','','2022/09'),(3398,253,'Version','FullConfig9202022.csv','220920133043_FullConfig9202022.csv',5847507,'text/csv','c190e1869d566908a37897589fef363a9c2f604d78bf4c295bcc7a2269639ebd',4,573,'2022-09-20 13:30:43','','2022/09'),(3399,918,'Issue','image.png','220921093759_image.png',108491,'image/png','af141d3f96e98e307bdff639720cafbf6ff8038fc8f50419b6c13bf38769599a',0,573,'2022-09-21 09:37:59','','2022/09'),(3400,919,'Issue','clipboard-202209211125-pdvkp.png','220921112556_clipboard-202209211125-pdvkp.png',9164,'image/png','f6e8bfb0f2f6baf4266ce83b728cd237a831b77439fa87efc34640400a9d42e4',0,510,'2022-09-21 11:25:56','','2022/09'),(3401,920,'Issue','clipboard-202209211143-hctvs.png','220921114338_clipboard-202209211143-hctvs.png',14528,'image/png','27490ed2a264b37d9c6d59c2e83be9670f0eb13d76bd90b3c4dc97715f28f942',0,510,'2022-09-21 11:43:38','','2022/09'),(3402,308,'Version','OOUA_IMERYS_PROD_21-9-2022.zip','220921161719_OOUA_IMERYS_PROD_21-9-2022.zip',10590465,'application/x-zip-compressed','9f49b99b053b36d67223441306a52ab026eedf626838cacd5601706ce0ec36e4',1,1,'2022-09-21 16:17:19','','2022/09'),(3403,165,'Version','ConfigurationseMotorsForConfigManagerTest.zip','220922105719_ConfigurationseMotorsForConfigManagerTest.zip',41736331,'application/x-zip-compressed','f0bde1b29013da35be74e851de883605d0e146ffd8381b5df222d2f30de2b7e7',3,432,'2022-09-22 10:57:19','','2022/09'),(3404,308,'Version','OOUA_IMERYS_PRODTEST-23-9-2022.zip','220923093413_OOUA_IMERYS_PRODTEST-23-9-2022.zip',18867142,'application/x-zip-compressed','952b3c667b1170288b2c95e9da118831254b4f7b93849fef5596bd28e9e1fe33',1,1,'2022-09-23 09:34:13','','2022/09'),(3405,157,'Version','DemoMqttPublisher_Debug_Simulation.zip','220712162125_DemoMqttPublisher_Debug_Simulation.zip',3510897,'application/x-zip-compressed','a98434b1c49eff77a3b5d4ee18dfdac98bd60b6cc2358b22a903f2ce7f9d66bf',1,1,'2022-09-23 11:18:34','','2022/07'),(3406,854,'Issue','Tests_VpiOptimu_V1.0.0.5 & VpiQualaxyClient_V1.0.0.2.docx','220923142518_958d4ec2495d8bbcdd29d8d917948053.docx',26574,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','c374309c9a0f92e86108970974835b51d84f6efda152f9ef59cd83ba2c65bd92',0,549,'2022-09-23 14:25:18','','2022/09'),(3407,854,'Issue','Jeux de test Emotors.zip','220923142528_6dd430abb7881affc4102b7c7ec667ef.zip',23068,'application/x-zip-compressed','75c6955c755e2fa0ed0c6a62d804eb03dcded495fd0cfc4bba725e8f2e2753df',0,549,'2022-09-23 14:25:28','','2022/09'),(3408,293,'Version','FullConfig27092022.csv','220927160212_FullConfig27092022.csv',5502510,'text/csv','a1ee33ae962189c6b230c9ccbba596c3b234f4bcee7c8946c6bb51f8eea3fca4',1,573,'2022-09-27 16:02:12','','2022/09'),(3409,293,'Version','FullConfig28092022.csv','220928141141_FullConfig28092022.csv',5502527,'text/csv','08751616f9eabdaa35dccd5fdee376a9f8d101958cc21d75cc5b34933ac302d8',1,573,'2022-09-28 14:11:41','','2022/09'),(3410,252,'Version','Demo_VpiUaClnt_AutoCfg_IPV4_Debug_x64_OOUA_REMOTE_SEED.zip','220928143403_9f93b39c93cdcafcc1c6c08f7107bf27.zip',3806660,'application/x-zip-compressed','bc7b72a3fb5a3bd19ee0d9050371c6d41ac42fcbdc6ea8df7ccef120854ebe1b',1,1,'2022-09-28 14:34:03','','2022/09'),(3411,249,'Version','Manuel de l_utilisateur OOUAConfigManager.pdf','220928144209_447e9b63ba59a1d7f5e38491dedb817f.pdf',1149589,'application/pdf','789daf8a69d8100195d042f6082a76ba1b5711f39146d9e22104bb0891f52ca6',3,1,'2022-09-28 14:42:09','','2022/09'),(3412,252,'Version','Demo_VpiUaClnt_AutoCfg_IPV4_Release_x64_OOUA_REMOTE_SEED.zip','220928223359_3d4b016d3daa1a92cb8f12b55cfc6bec.zip',3293996,'application/x-zip-compressed','93ac410bd8d5192942930a51515b3d5ec7b52a355d9105fd04e2d4bfe815e6f9',1,1,'2022-09-28 22:33:59','','2022/09'),(3413,293,'Version','OOUA_IMERYS_PRODTEST.zip','220930142501_OOUA_IMERYS_PRODTEST.zip',19402323,'application/x-zip-compressed','cc74029e60d02d76c4e4338c89070ee8410fe1e06952c776e6a0b5c6cebfb35f',3,573,'2022-09-30 14:25:01','','2022/09'),(3414,NULL,NULL,'OpenOpcUaCoreServer_Debug_LM1.exe_220930_150608.dmp.7z','220930174358_307d936d6bf25086acca8e6f3ea5819f.7z',6508755,'application/x-7z-compressed','54b3a1cc695c6dc7ecb94ee6b309fa4193a2078d84151c595cb5b3421a97cc35',0,433,'2022-09-30 17:43:58',NULL,'2022/09'),(3415,922,'Issue','PileAppel-ArretServeur-1.7.0.9.png','220930175317_PileAppel-ArretServeur-1.7.0.9.png',118420,'image/png','39d96ede522313eeb8a9ab66b0a9dafd457ac42db510e49b973de7efe81d1c36',0,433,'2022-09-30 17:53:17','Screenshot pile d\'appel issue du ProcDump','2022/09'),(3416,922,'Issue','OpenOpcUaCoreServer_Debug_LM1.exe_220930_150608.dmp.7z','220930174358_307d936d6bf25086acca8e6f3ea5819f.7z',6508755,'application/x-7z-compressed','54b3a1cc695c6dc7ecb94ee6b309fa4193a2078d84151c595cb5b3421a97cc35',0,433,'2022-09-30 17:54:08','Proc Dump LM','2022/09'),(3418,891,'Issue','dump_891.docx','220930175447_dump_891.docx',743090,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','9a8c1d38452631f1c493354980bbe7a2b564e4ad1d64dbebb4e384cea4bca65a',0,432,'2022-09-30 17:54:47','','2022/09'),(3419,923,'Issue','ss.PNG','221004114309_ss.PNG',88148,'image/png','ef31c7a30b3dc82da36d05fe6d9246570d157b88aa8b2789539896271ab1d564',0,573,'2022-10-04 11:43:09','','2022/10'),(3420,898,'Issue','Recap pb de gammeV3.xlsx','221004153512_fa89ccfb33fbaa3099086c2da6ae5866.xlsx',19438,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','5c4097810cebdc1088030522defc61d2ffea473763d81eb9cf81da4da3537d63',0,432,'2022-10-04 15:35:12','','2022/10'),(3421,924,'Issue','clipboard-202210052049-vry6x.png','221005204906_clipboard-202210052049-vry6x.png',51659,'image/png','f792ac9ab2cb82672dbf1910f1616dcbc95426d78ec9044aa35649b83cfe4a3d',0,1,'2022-10-05 20:49:06','','2022/10'),(3422,238,'Version','OOUACoreServer User Manual-v1.08.docx','221006134525_c6250474fc7593d32590bbf1ae705216.docx',1902111,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','bccd7116dd41cde72f0c9ac91aea423c5efb279176815dc64f3f2240714c6ac3',1,1,'2022-10-06 13:45:25','','2022/10'),(3423,90,'Project','OOUACoreServer - Manuel de l_utilisateur-v1.08.pdf','221006134658_47f144268e30e740b0321d516cac9930.pdf',1045302,'application/pdf','38d4d30ab46cedf7e07b6e7949d9df8ba27be3423a9396f487641120230adba1',0,1,'2022-10-06 13:46:58','','2022/10'),(3425,293,'Version','OOUA_IMERYS_PRODTESTV2.zip','221006153536_OOUA_IMERYS_PRODTESTV2.zip',19300272,'application/x-zip-compressed','bedcb62c45ab8de4ef905bc0c27703e3042bb2284513356c9d3bc742d8f41470',4,573,'2022-10-06 15:35:36','','2022/10'),(3426,249,'Version','OOUACoreServer User Manual-v1.08.docx','221006134525_c6250474fc7593d32590bbf1ae705216.docx',1902111,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','bccd7116dd41cde72f0c9ac91aea423c5efb279176815dc64f3f2240714c6ac3',0,1,'2022-10-06 16:09:06','','2022/10'),(3427,926,'Issue','projet agrégateur.zip','221006161352_4908f9f403e1a4fe25f2332d9fb5f1d1.zip',142712,'application/x-zip-compressed','339ac7e3c279dacf61c291eb44c27816c39b9857f9c6eebd0e210050c64735f4',0,1,'2022-10-06 16:13:52','','2022/10'),(3428,926,'Issue','OpenOpcUaCoreServer_Release_agg.exe_221006_164302.dmp','221006164943_25e549f4773a93436ef6a3ffdcdfed1d.dmp',7277782,'application/vnd.tcpdump.pcap','8c792c5991d6210f3f9ea11d8d0bdd9871df71a87361da768d98321f8d14f0b1',0,528,'2022-10-06 16:49:43','','2022/10'),(3429,926,'Issue','c660l.zip','221006172811_c660l.zip',3111993,'application/x-zip-compressed','d6a850f28f5ff37fc641754e826d5132f59e32726f0b1921c64fdc832f228bcd',0,528,'2022-10-06 17:28:11','','2022/10'),(3430,926,'Issue','portugal.zip','221006172814_portugal.zip',3109743,'application/x-zip-compressed','5781951b11de371af5b5fdbe230e5a02ac2e3e3958bac2479ac6bc197fce8725',0,528,'2022-10-06 17:28:14','','2022/10'),(3431,926,'Issue','stripper.zip','221006172822_stripper.zip',3110578,'application/x-zip-compressed','1b35b1b5c4400c34cb5f67b9092acc0ab6a966985e4b4b3b5c9ea0ea6be9243d',0,528,'2022-10-06 17:28:22','','2022/10'),(3432,927,'Issue','logs du 061022.zip','221006191233_2c35fb43facf0c2132d4f98a29c8a55d.zip',36024355,'application/x-zip-compressed','e1a4360b1c26bc14f315bf70a6bde05c66d1272bf573d82f800b610335b12564',0,328,'2022-10-06 19:12:33','','2022/10'),(3433,929,'Issue','Tyco-00200.log','221006192341_Tyco-00200.log',11631584,'text/plain','0ce802cab6f6e7e92a0ac856f7d6c0297bb4818da6551d482bbe325a707725c2',0,328,'2022-10-06 19:23:41','','2022/10'),(3434,293,'Version','OOUA_IMERYS_PRODTESTv3.zip','221007140538_OOUA_IMERYS_PRODTESTv3.zip',19306215,'application/x-zip-compressed','c791267b719ab31172bb57f7c5fcdbe5f56aed48b9c06a5da1ae501d77296bc3',3,573,'2022-10-07 14:05:38','','2022/10'),(3435,891,'Issue','clipboard-202210071456-dp5oy.png','221007145650_clipboard-202210071456-dp5oy.png',183828,'image/png','9cace8793c535f752412fe37e12d0ebd6bbda6effe80d23fb4bbd1c9fbc2feed',0,432,'2022-10-07 14:56:50','','2022/10'),(3436,891,'Issue','clipboard-202210071457-s0orv.png','221007145703_clipboard-202210071457-s0orv.png',315744,'image/png','61257f11ae6e54b17a8973c74e204654eb935392f6b27000f52411a982c72c24',0,432,'2022-10-07 14:57:03','','2022/10'),(3437,891,'Issue','clipboard-202210071457-mhwy8.png','221007145718_clipboard-202210071457-mhwy8.png',316636,'image/png','0c9226d7d96cd3686f727a964208a9352d8d58cbf4256be209ec51d9df1a595c',0,432,'2022-10-07 14:57:18','','2022/10'),(3438,891,'Issue','clipboard-202210071457-uhlhe.png','221007145729_clipboard-202210071457-uhlhe.png',149761,'image/png','995d63435cc68787a00b46239e63f0ee95d2d8566d46b2016118a7944c091980',0,432,'2022-10-07 14:57:29','','2022/10'),(3439,293,'Version','FullConfig710222.csv','221007155640_FullConfig710222.csv',5502428,'text/csv','ef3f3cd90eeaa33801e9f1a335964f21b34e7f0685050ca547eb8e60a592e9b8',1,573,'2022-10-07 15:56:40','','2022/10'),(3440,251,'Version','Demo-PGSQL-HA_x64_Release.zip','220725161422_Demo-PGSQL-HA_x64_Release.zip',4121322,'application/x-zip-compressed','1505e38d39762def2eb65131fc5429f4c8c489ad6681227d30654527cbf1835f',1,1,'2022-10-11 14:59:08','','2022/07'),(3441,249,'Version','OOUACoreServer - Manuel de l_utilisateur-v1.08.docx','221011150118_437740cfea80475025e347c6358c43b8.docx',1902102,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','ad1153df729f15f899eb9ccf490693e1071b5b726176b5d3c186db59b82679f0',1,1,'2022-10-11 15:01:18','','2022/10'),(3442,310,'Version','Emotor-LogicalModel-OPCUA_V2.30.1.eapx','221012141058_Emotor-LogicalModel-OPCUA_V2.30.1.eapx',6123520,NULL,'95120f88216e7b9d9911ddf1823a4c0d7cc088097874967782d36ff534f74e5c',1,549,'2022-10-12 14:10:58','','2022/10'),(3443,181,'Version','OPCUA_Profile.xml','221013150122_OPCUA_Profile.xml',5367,'text/xml','e818a1f8e5b839b9ae114d35b7e0730c3ec0a4b3f5cd31155cd93eff3f73bb83',1,1,'2022-10-13 15:01:22','','2022/10'),(3444,156,'Version','Livraison-IPV4-13-10-2022.zip','221013152923_Livraison-IPV4-13-10-2022.zip',15860732,'application/x-zip-compressed','e0e99d9855919e92da6d4097601da342b43d693a0c0b14f17c00a87cbb2f091c',1,1,'2022-10-13 15:29:23','','2022/10'),(3445,181,'Version','OpenOpcUaConfigManager_Delivrable Beta_0.1.0.3_Debug_x64.zip','221013153103_eae8a83927af071ed89b2895bb45b508.zip',18281719,'application/x-zip-compressed','d03e06a6fe4a674df8db5354148a7979f74ce052a8ae39704477e5cfa16764b5',2,1,'2022-10-13 15:31:03','','2022/10'),(3446,154,'Version','OOUACoreServer - Manuel de l_utilisateur-v1.08.docx','221011150118_437740cfea80475025e347c6358c43b8.docx',1902102,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','ad1153df729f15f899eb9ccf490693e1071b5b726176b5d3c186db59b82679f0',2,1,'2022-10-13 15:32:33','','2022/10'),(3447,156,'Version','VpiUaMqttJsonPubd_0.0.0.5.zip','221013163521_VpiUaMqttJsonPubd_0.0.0.5.zip',828270,'application/x-zip-compressed','4f66bab3b878aa0fcd928dbcffc27a9e2c5b79fdfc1acc727f184109e59e222e',1,1,'2022-10-13 16:35:21','','2022/10'),(3448,934,'Issue','OpcClient-00309.log','221014093828_OpcClient-00309.log',146,'text/plain','3ab911fe32a3408d5dd5352d1aeddcf97e54f1da9c48b3cb4246944f14c5826c',0,565,'2022-10-14 09:38:28','','2022/10'),(3449,934,'Issue','OpcClient.log','221014093828_OpcClient.log',0,'text/plain','e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855',0,565,'2022-10-14 09:38:28','','2022/10'),(3451,934,'Issue','ServeurOpc_Debug.zip','221014095819_ServeurOpc_Debug.zip',14731196,'application/x-zip-compressed','f9d4ac1f4bd735472590ba244153a90f040c8332607c1e2e93c6615b666e4962',0,565,'2022-10-14 09:58:19','','2022/10'),(3452,934,'Issue','Capture.JPG','221014095900_Capture.JPG',16487,'image/jpeg','78d2a74c025614aab19c5a35946e87737db5f20b9ab344d0d26b0f456ac4a5e7',0,565,'2022-10-14 09:59:00','','2022/10'),(3453,182,'Version','XiMulator_1.0.2.6_v1.0.5.6.zip','221015191647_XiMulator_1.0.2.6_v1.0.5.6.zip',1255814,'application/x-zip-compressed','6fbd8ccb44fbb4dcde473cc5910660bc28dd5f8ffb4306cd36dffabe673a5ba0',0,1,'2022-10-15 19:16:47','','2022/10'),(3454,176,'Version','XiMulator_1.0.2.6_v1.0.5.6.zip','221015191647_XiMulator_1.0.2.6_v1.0.5.6.zip',1255814,'application/x-zip-compressed','6fbd8ccb44fbb4dcde473cc5910660bc28dd5f8ffb4306cd36dffabe673a5ba0',1,1,'2022-10-15 19:17:06','','2022/10'),(3455,237,'Version','XiMulator_1.0.2.6_v1.0.5.6.zip','221015191647_XiMulator_1.0.2.6_v1.0.5.6.zip',1255814,'application/x-zip-compressed','6fbd8ccb44fbb4dcde473cc5910660bc28dd5f8ffb4306cd36dffabe673a5ba0',1,1,'2022-10-15 19:17:42','','2022/10'),(3456,205,'Version','XiMulator_1.0.2.6_v1.0.5.6.zip','221015191647_XiMulator_1.0.2.6_v1.0.5.6.zip',1255814,'application/x-zip-compressed','6fbd8ccb44fbb4dcde473cc5910660bc28dd5f8ffb4306cd36dffabe673a5ba0',1,1,'2022-10-15 19:18:18','','2022/10'),(3457,228,'Version','XiMulator_1.0.2.6_v1.0.5.6.zip','221015191647_XiMulator_1.0.2.6_v1.0.5.6.zip',1255814,'application/x-zip-compressed','6fbd8ccb44fbb4dcde473cc5910660bc28dd5f8ffb4306cd36dffabe673a5ba0',1,1,'2022-10-15 19:18:40','','2022/10'),(3458,270,'Version','XiMulator_1.0.2.6_v1.0.5.6.zip','221015191647_XiMulator_1.0.2.6_v1.0.5.6.zip',1255814,'application/x-zip-compressed','6fbd8ccb44fbb4dcde473cc5910660bc28dd5f8ffb4306cd36dffabe673a5ba0',1,1,'2022-10-15 19:18:57','','2022/10'),(3459,289,'Version','XiMulator_1.0.2.6_v1.0.5.6.zip','221015191647_XiMulator_1.0.2.6_v1.0.5.6.zip',1255814,'application/x-zip-compressed','6fbd8ccb44fbb4dcde473cc5910660bc28dd5f8ffb4306cd36dffabe673a5ba0',0,1,'2022-10-15 19:19:22','','2022/10'),(3460,181,'Version','XiMulator_1.0.2.6_v1.0.5.6.zip','221015191647_XiMulator_1.0.2.6_v1.0.5.6.zip',1255814,'application/x-zip-compressed','6fbd8ccb44fbb4dcde473cc5910660bc28dd5f8ffb4306cd36dffabe673a5ba0',1,1,'2022-10-15 19:19:56','','2022/10'),(3461,239,'Version','Livraison Binaires Debug-IPV4 - 17-10-2022_v1.0.8.0.zip','221017130555_29b883f78a215015a750112b6fcac95c.zip',16225313,'application/x-zip-compressed','0f0132192ce70b5a1e4fef16a3d950e78528a8a17cd4bfdeaf2902a22f440d05',3,1,'2022-10-17 13:05:55','','2022/10'),(3462,176,'Version','XiMulator_1.0.2.6_v1.0.5.7.zip','221017143547_XiMulator_1.0.2.6_v1.0.5.7.zip',1255479,'application/x-zip-compressed','3d1fafdf012b89d3c6d3350483d02833be4ec56b9fc914eda5e07a420b874949',1,1,'2022-10-17 14:35:47','','2022/10'),(3463,182,'Version','XiMulator_1.0.2.6_v1.0.5.7.zip','221017143547_XiMulator_1.0.2.6_v1.0.5.7.zip',1255479,'application/x-zip-compressed','3d1fafdf012b89d3c6d3350483d02833be4ec56b9fc914eda5e07a420b874949',0,1,'2022-10-17 14:44:29','','2022/10'),(3464,253,'Version','Generation_2.1.8.zip','221017154239_Generation_2.1.8.zip',453625,'application/x-zip-compressed','8ae58f7ebac69e88314aa8d743425e4e0255227cfba90dc28c646532e11eab86',2,1,'2022-10-17 15:42:39','','2022/10'),(3465,253,'Version','LogicalModel_Imerys-V2.1.8.eapx','221017154301_LogicalModel_Imerys-V2.1.8.eapx',3411968,NULL,'6e59e1058d6aa0ac5b97562adb0dbbc5fc326d6d9ccdd131be813748448c2b93',2,1,'2022-10-17 15:43:01','','2022/10'),(3467,245,'Version','OpenOpcUaCoreServer.lua','221017154911_OpenOpcUUaCoreServer.lua',357,NULL,'e6877c379bde35cbf3e06160078e1d1e33c17d501bd8cf18f39d2a77e240edda',1,1,'2022-10-17 15:49:47','','2022/10'),(3468,932,'Issue','932.zip','221017161631_932.zip',26557,'application/x-zip-compressed','c7c81f3be6292338d5fdde05431398702284734ff901a2f116097d5d99ddc989',0,432,'2022-10-17 16:16:31','','2022/10'),(3469,251,'Version','Livraison-Release-IPV4-17-10-2022.zip','221017175354_Livraison-Release-IPV4-17-10-2022.zip',1220679,'application/x-zip-compressed','758da9e316dd2047ba975a1612684bcb02ce859b226495e411dd034193db89c3',1,1,'2022-10-17 17:53:54','','2022/10'),(3470,293,'Version','OOUA_IMERYS_PROD_V4.zip','221018154224_OOUA_IMERYS_PROD_V4.zip',11417752,'application/x-zip-compressed','5664cb2479a78cc08e9a1cc3a62a068e18e2d8612f07365ceaced44c0bbff0c1',1,573,'2022-10-18 15:42:24','','2022/10'),(3471,236,'Version','DemoMqttPublisher_Debug_Simulation_Imerys.zip','221018164807_DemoMqttPublisher_Debug_Simulation_Imerys.zip',3533052,'application/x-zip-compressed','d6f6ac2607bb3de8b087e112630e27eec9989c2ba6d06b7727803c4a540073a8',1,1,'2022-10-18 16:48:07','','2022/10'),(3472,239,'Version','VpiUaMqttJsonPubd_0.0.0.6.zip','221019080446_VpiUaMqttJsonPubd_0.0.0.6.zip',82728,'application/x-zip-compressed','9dd81b0fc5b59ed0eaf6009bdbf860d6d24d5b641709b964218b012db34d0a24',1,1,'2022-10-19 08:04:46','','2022/10'),(3473,923,'Issue','newss.PNG','221020113039_newss.PNG',12811,'image/png','061d264786c11eec62fbad281dfb23b586e247d1713000c7b2b761d2d0402af0',0,573,'2022-10-20 11:30:39','','2022/10'),(3474,156,'Version','Livraison-IPV4-20-10-2022.zip','221020135114_Livraison-IPV4-20-10-2022.zip',15954691,'application/x-zip-compressed','63f72c358b1bb2abb585839d7bbac39b24e845220b2940454f4112aead42fd4c',1,1,'2022-10-20 13:51:14','','2022/10'),(3475,311,'Version','Robot00150.dat','221020143255_Robot00150.dat',273,'text/plain','683b790a3251fb03559045cd0a5891aa5d9db836983143e5b1892f337642c0b8',0,1,'2022-10-20 14:32:55','','2022/10'),(3476,NULL,NULL,'OpenOpcUaCoreServer_Debug_01.exe_221021_110551.zip','221021110802_OpenOpcUaCoreServer_Debug_01.exe_221021_110551.zip',52465385,'application/x-zip-compressed','b09cc24b5faba69363fdec1300af1df707555efcb4b507e2f988a7760625c11d',0,573,'2022-10-21 11:08:02',NULL,'2022/10'),(3477,923,'Issue','OpenOpcUaCoreServer_Debug_01.exe_221021_110551.zip','221021110802_OpenOpcUaCoreServer_Debug_01.exe_221021_110551.zip',52465385,'application/x-zip-compressed','b09cc24b5faba69363fdec1300af1df707555efcb4b507e2f988a7760625c11d',0,573,'2022-10-21 11:08:55','','2022/10'),(3478,923,'Issue','Livraison Binaires Debug-IPV4 - 21-10-2022_v1.0.8.0.zip','221021131024_5b51866cfdceb684921bf2b3901fed6e.zip',19762749,'application/x-zip-compressed','0dce2533c35ae5392c7cf4fdd19c1a53706497a3d5265981b28951b9b2a83224',0,1,'2022-10-21 13:10:24','','2022/10'),(3481,175,'Version','OOUACoreServer - Manuel de l_utilisateur-v1.08.docx','221011150118_437740cfea80475025e347c6358c43b8.docx',1902102,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','ad1153df729f15f899eb9ccf490693e1071b5b726176b5d3c186db59b82679f0',3,1,'2022-10-28 13:37:20','','2022/10'),(3482,239,'Version','VPIS7d_1.0.2.8.zip','221022190643_VPIS7d_1.0.2.8.zip',115592,'application/x-zip-compressed','5a35547ee56e4714e839d43e5e32e162fa41229a03a80a79e8007d3c68751eba',1,1,'2022-10-31 13:51:43','','2022/10'),(3483,239,'Version','VpiUaMqttJsonPubd_0.0.0.6.zip','221031140339_VpiUaMqttJsonPubd_0.0.0.6.zip',82728,'application/x-zip-compressed','071eb13416069f1c0f58375693b45858d896a72e822b92a683b67867a0391686',1,1,'2022-10-31 14:03:39','','2022/10'),(3484,923,'Issue','OpenOpcUaCoreServer_Debug_01.exe_221031_153809.zip','221031154239_OpenOpcUaCoreServer_Debug_01.exe_221031_153809.zip',27160845,'application/x-zip-compressed','75a1bb0ff8fb580541e8cb561ed4b67b56fda3c0e89745968eb90f66fd841a9e',0,573,'2022-10-31 15:42:39','','2022/10'),(3485,923,'Issue','OSSL_Libs.zip','221031160728_OSSL_Libs.zip',5029412,'application/x-zip-compressed','40149e39047339abded5d3752390139a0d769e71b998ea8fd159a9ab8bbc55e1',0,1,'2022-10-31 16:07:28','','2022/10'),(3486,923,'Issue','OpenOpcUaCoreServer_Debug_01.exe_221031_161754.zip','221031161919_OpenOpcUaCoreServer_Debug_01.exe_221031_161754.zip',27246519,'application/x-zip-compressed','de961d38b0ee70188bc896a1f602f254fdf1413958f8122abfe335735d3499a2',0,573,'2022-10-31 16:19:19','','2022/10'),(3487,923,'Issue','VpiUaMqttJsonPubd_0.0.0.7.zip','221031163647_VpiUaMqttJsonPubd_0.0.0.7.zip',839402,'application/x-zip-compressed','305cb0c9228044bbc86c449846078581cca033dd0ad790c1dd346b9f51b12041',0,1,'2022-10-31 16:36:47','','2022/10'),(3488,NULL,NULL,'OpenOpcUaCoreServer_Debug_01.exe_221031_165429.zip','221031165601_OpenOpcUaCoreServer_Debug_01.exe_221031_165429.zip',27199254,'application/x-zip-compressed','fe8deb258647ab55b0d908f91a9a88c7a58f3d9969b3eff4eb83afea7b9b3564',0,573,'2022-10-31 16:56:01',NULL,'2022/10'),(3489,252,'Version','Demo-PGSQL-HA_x64_Release.zip','220725161422_Demo-PGSQL-HA_x64_Release.zip',4121322,'application/x-zip-compressed','1505e38d39762def2eb65131fc5429f4c8c489ad6681227d30654527cbf1835f',0,1,'2022-11-02 14:13:47','','2022/07'),(3490,923,'Issue','OpenOpcUaCoreServer_Debug_01.exe_221102_150643.zip','221102150912_OpenOpcUaCoreServer_Debug_01.exe_221102_150643.zip',27170214,'application/x-zip-compressed','e9233e6d5dec080525a17fa2e920baa615b2020578a705a8d5265ce78f3d79cd',0,573,'2022-11-02 15:09:12','','2022/11'),(3491,194,'Version','VPIMdbMaster_1.0.4.1.zip','221102151739_VPIMdbMaster_1.0.4.1.zip',66176,'application/x-zip-compressed','d1011a8bad3068c5d9e7e67b9c9e8ad21d3691f42b73332bbcc46820e524b465',1,1,'2022-11-02 15:17:39','','2022/11'),(3492,923,'Issue','VpiUaMqttJsonPubd_0.0.0.8.zip','221102160107_VpiUaMqttJsonPubd_0.0.0.8.zip',825039,'application/x-zip-compressed','2bed739bfbdf323a5af342565ac53c7ddaa5ad801035c9913f523388cbceef08',0,1,'2022-11-02 16:01:07','','2022/11'),(3493,867,'Issue','clipboard-202211031154-a0xef.png','221103115409_clipboard-202211031154-a0xef.png',66707,'image/png','a91ccbf6884a3efcb1f077be28a4232aa970ee9ae81be29a0dad6afd921e6e08',0,1,'2022-11-03 11:54:09','','2022/11'),(3494,162,'Version','Livraison Binaires Debug-IPV4 - 4-11-2022_v1.0.8.1.zip','221104170621_7a4a0ec3f56538432a9584756e8a3d9e.zip',14888720,'application/x-zip-compressed','655a3f7751916349673e628f4e3a2cc337b8259ecfdbbc7a8b65881d7924659a',2,1,'2022-11-04 17:06:21','','2022/11'),(3495,937,'Issue','Serveur JNEM - 09-09-2022.zip','221107091754_1ddcbaa468ca6c2ae452096a810059f1.zip',6751482,'application/x-zip-compressed','3c6ee8a400e28cabf24cd5c35cc01208afa6957540740b0eb32470b66d9ca409',0,492,'2022-11-07 09:17:54','','2022/11'),(3496,293,'Version','OOUA_IMERYS_PRODTEST_V4.zip','221107163845_OOUA_IMERYS_PRODTEST_V4.zip',29288811,'application/x-zip-compressed','b4d16414b7c931344689c41456f5552f8b701e68020cb1ca18d9d72eeecca3a2',1,573,'2022-11-07 16:38:45','','2022/11'),(3497,940,'Issue','MicrosoftTeams-image.png','221109101450_MicrosoftTeams-image.png',5808,'image/png','2f7f4a191fdcc8743bb215dee82c2268220e22a05ece1e0a4d4f5b0df39c8b5e',0,447,'2022-11-09 10:14:50','','2022/11'),(3498,176,'Version','XiMulator_1.0.2.6_v1.0.5.8.zip','221109103035_XiMulator_1.0.2.6_v1.0.5.8.zip',1255489,'application/x-zip-compressed','ef08b8e69998d9143ec8ff486b0417051d207cb7f107d988d45e039e959aaa5b',2,1,'2022-11-09 10:30:35','','2022/11'),(3499,922,'Issue','20221109.zip','221109124157_20221109.zip',65549043,'application/x-zip-compressed','d31b5d7dc80f6fa7af8a321ae5a0b4b8af77e83d0dae523a34fdff834e93d30a',0,433,'2022-11-09 12:41:57','','2022/11'),(3500,922,'Issue','AnalyseMiniDump.docx','221109162024_AnalyseMiniDump.docx',538241,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','911f3ef516aecd48f341756d9b9091f2a85416ac64ef99188af45aaeafd03c5d',0,1,'2022-11-09 16:20:24','','2022/11'),(3501,181,'Version','SiOME_V25.zip','220601152441_SiOME_V25.zip',80118630,'application/x-zip-compressed','6d72d93ae65c53aa8899f2694f8b3a16d8d32e3724b1c4da4d2670bb1712ce53',1,1,'2022-11-10 14:06:54','','2022/06'),(3502,155,'Version','OpenOpcUa_1_0_7_4_MACOS_11-11-2022.zip','221111191659_OpenOpcUa_1_0_7_4_MACOS_11-11-2022.zip',13572195,'application/zip','4c4854660e4b8e47438326d4d9756495c8125baa8d9b9d5a1c72575e0edf766b',3,1,'2022-11-11 19:16:59','','2022/11'),(3503,943,'Issue','ss.PNG','221114111400_ss.PNG',266538,'image/png','302bac039b032e403d60d330a38d76c586bf283495c45b41faa5018eacf91285',0,573,'2022-11-14 11:14:00','','2022/11'),(3504,944,'Issue','clipboard-202211141220-7jo6e.png','221114122056_clipboard-202211141220-7jo6e.png',7774,'image/png','c8f4877956864edc93946d6899843a393fdb5986824355678d44c0ba8631a2dd',0,432,'2022-11-14 12:20:56','','2022/11'),(3505,944,'Issue','clipboard-202211141221-grl6n.png','221114122121_clipboard-202211141221-grl6n.png',26923,'image/png','f7622ecf67497718bc1575b1c75e4d5a36c19cbd820b18ae6a50926aacce10b2',0,432,'2022-11-14 12:21:21','','2022/11'),(3506,944,'Issue','clipboard-202211141221-umhbn.png','221114122147_clipboard-202211141221-umhbn.png',23650,'image/png','21870fc4499f5e58216a5e3ad9cab7097c847e370510f0b2f06384c2ac521e4a',0,432,'2022-11-14 12:21:47','','2022/11'),(3507,944,'Issue','Line_Middleware_V2.zip','221114122935_Line_Middleware_V2.zip',23546287,'application/x-zip-compressed','ee7786c7c4b5e1cac181caaee6e7608d478036e352609230838a3ebfe13807ae',0,432,'2022-11-14 12:29:35','','2022/11'),(3508,945,'Issue','pgadmin.PNG','221115155449_pgadmin.PNG',60370,'image/png','9e551cc13583e093c2032ed2f59bf60cb65e29b3a31a455cd3cedb080361b63a',0,573,'2022-11-15 15:54:49','','2022/11'),(3509,155,'Version','OpenOpcUa_1_0_7_4_MACOS_16-11-2022.zip','221116122201_OpenOpcUa_1_0_7_4_MACOS_16-11-2022.zip',7531230,'application/x-zip-compressed','0ac5855a97f74fb18f249f8c62939f3bd28165b8f3c6b336c87b2996ab59b37f',2,1,'2022-11-16 12:22:01','','2022/11'),(3510,156,'Version','UAFlexClient_Release_1.0.0.3_x64_IPV4.zip','221116162608_UAFlexClient_Release_1.0.0.3_x64_IPV4.zip',13909134,'application/x-zip-compressed','21299fb402fac325204724e7f482815576753c04e3a70c2752c5415fb0ee6a9d',2,1,'2022-11-16 16:26:08','','2022/11'),(3511,157,'Version','DemoMqttSubscriber_Debug_Simulation.zip','221117142621_DemoMqttSubscriber_Debug_Simulation.zip',3417417,'application/x-zip-compressed','2addeac44c35446ef50311bebe95a05110ca8bd8c0c97415c2ea94226f4758d9',1,1,'2022-11-17 14:26:21','','2022/11'),(3512,946,'Issue','TestModele.zip','221117152134_TestModele.zip',29008177,'application/x-zip-compressed','c1e389a008d3b370a200ac777bd4a77dbeb335b2e75bf3e55b0a07d068dadcdb',0,565,'2022-11-17 15:21:34','','2022/11'),(3513,NULL,NULL,'SyncPDB-Debug-IPV4.bat','221118151435_SyncPDB-Debug-IPV4.bat',614,'application/x-msdos-program','b454e760235c7c86970ad89b0b976e3b557bdc5017ffd4d0953cc012e4c8eef1',0,1,'2022-11-18 15:14:35',NULL,'2022/11'),(3514,162,'Version','Livraison Binaires Debug-IPV4 - 17-11-2022_v1.0.8.3.zip','221118151825_8f42da3032f6d322e4487dec88db14ce.zip',13266347,'application/x-zip-compressed','2e48e7ba884e34c9c5dbde9c7ebde0f093d2b66d57dbb8a4150b86c250518a70',2,1,'2022-11-18 15:18:25','','2022/11'),(3515,948,'Issue','clipboard-202211181741-ppzkx.png','221118174117_clipboard-202211181741-ppzkx.png',96863,'image/png','b596f1f8da500ac8b54318def3a409ca6a896494b433dfee808fc564da8b1494',0,432,'2022-11-18 17:41:17','','2022/11'),(3516,948,'Issue','clipboard-202211181741-wurse.png','221118174130_clipboard-202211181741-wurse.png',64784,'image/png','ad623a463f54300c4105bec44744150a0c42a70e8cf1ee9e7f8b0404c4553916',0,432,'2022-11-18 17:41:30','','2022/11'),(3517,948,'Issue','clipboard-202211181741-xmqky.png','221118174143_clipboard-202211181741-xmqky.png',79751,'image/png','801293ba4331c2048743debf912660ab88c59a52b0156ef780f69200f34cc735',0,432,'2022-11-18 17:41:43','','2022/11'),(3518,948,'Issue','Crash Assembly Recap.odt','221118174343_71909f12126554514a9ade9bc9f5898e.odt',100531,'application/vnd.oasis.opendocument.text','0f20edc7985046b1c7d0276c070fa9afbaaa9f1bb6970616cdd931e8d2c39bd9',0,432,'2022-11-18 17:43:43','','2022/11'),(3519,948,'Issue','Crash Assembly Detail.odt','221118174343_d2008d667dbd7899def1eeec26e20c1d.odt',519911,'application/vnd.oasis.opendocument.text','b6a160849324a4b2cdb05f5ad3f0f6449ad5577e080bb3c9fdb79c00a7e52139',0,432,'2022-11-18 17:43:43','','2022/11'),(3520,948,'Issue','Crash Assembly Detail V2.odt','221122140531_f2063b4bd2b322ff3f0bed399d890126.odt',706563,'application/vnd.oasis.opendocument.text','7f515c17f96a8fe1e259385c83b8cf3e73a306dc01d5d6cb0a5d6fe95c0b484a',0,432,'2022-11-22 14:05:30','','2022/11'),(3521,948,'Issue','Crash Assembly Recap V2.odt','221122140531_cd4643b4099b430a8a03a1918ef5cb3b.odt',114667,'application/vnd.oasis.opendocument.text','fcfd0cea63cdf4dcd828df6ecacd259d73bfe15a0bca99ffdafb601e1f2ddc66',0,432,'2022-11-22 14:05:31','','2022/11'),(3522,293,'Version','LastCsv.csv','221122173617_LastCsv.csv',5423970,'text/csv','9c4348d4c40192d0e70bbfb4e056cdd6c36d72002d40c574b89665ddfa0b1199',1,573,'2022-11-22 17:36:17','','2022/11'),(3523,162,'Version','OOUA_DebugIPV4_Binaries_1.0.8.3.zip','221123201828_OOUA_DebugIPV4_Binaries_1.0.8.3.zip',3196519,'application/x-zip-compressed','c4ec52fa7d165cd9d4b1a21dbfcc80f44e930c75f55f4b64c9daf957e12e74a1',1,1,'2022-11-23 20:18:28','','2022/11'),(3524,948,'Issue','clipboard-202211251008-yhkhl.png','221125100809_clipboard-202211251008-yhkhl.png',32701,'image/png','f598d8df81f76e1e9369e0ec223c6ad06dfa5f74084fd6e638f677da79ea8e13',0,432,'2022-11-25 10:08:09','','2022/11'),(3525,948,'Issue','OneDrive_2022-11-25.zip','221125100826_OneDrive_2022-11-25.zip',31390148,'application/x-zip-compressed','37068672687142f93e0399f48e14bbbb50025e1a59e0e1b0bc72fe933d0dedd6',0,432,'2022-11-25 10:08:26','','2022/11'),(3527,949,'Issue','clipboard-202211251109-yymen.png','221125110933_clipboard-202211251109-yymen.png',25359,'image/png','d1baecfafa3bd3a6d63bb1d8f92ba4de8cc2206ce394526c7b92674581cf5b71',0,432,'2022-11-25 11:09:33','','2022/11'),(3528,162,'Version','Livraison Binaires Debug-IPV4 - 25-11-2022_v1.0.8.3.zip','221125140150_0c7b7660d501d8cad56b9603f8c741ec.zip',14717673,'application/x-zip-compressed','abaedeb5ad721180c04c7ac39225578290badaad1fd02b15d3a70e19bbab0b4b',3,1,'2022-11-25 14:01:50','','2022/11'),(3530,162,'Version','Livraison Binaires Debug-IPV4 - 28-11-2022_v1.0.8.4.zip','221128102754_2162ed85cdecccefc4fa2120487fa28f.zip',14744323,'application/x-zip-compressed','35543e1f54875dbb6c6c162b76b164fcddfccf3d618927e622ba51eba36803d8',1,1,'2022-11-28 10:27:54','','2022/11'),(3531,950,'Issue','UaClnt-ManuelLineX-00301.log','221128113514_UaClnt-ManuelLineX-00301.log',370,'text/plain','bcf73575dc5b90de31cb2439c38b441af527aa4f211aaf4c9d9799b9e2f780b1',0,432,'2022-11-28 11:35:14','','2022/11'),(3532,950,'Issue','UaClnt-ManuelLineX.log','221128113514_UaClnt-ManuelLineX.log',6635,'text/plain','b9bf5627524e39351b85d8781d4211d3d25549b8e8e4ea40afb75545cd91f954',0,432,'2022-11-28 11:35:14','','2022/11'),(3533,950,'Issue','clipboard-202211281159-sevim.png','221128115918_clipboard-202211281159-sevim.png',38056,'image/png','a9e9e37d8d65da522bf1da8fb16f5c4f5e7fddeb03e24c408ce3766425ff0750',0,432,'2022-11-28 11:59:18','','2022/11'),(3534,950,'Issue','clipboard-202211281201-hy1cr.png','221128120101_clipboard-202211281201-hy1cr.png',52668,'image/png','2107faf874743f9caa8239553eb0d1e7bbcf8564ad6121144459e906e9331795',0,432,'2022-11-28 12:01:01','','2022/11'),(3535,950,'Issue','PM LM désynchro.pcapng','221128135438_aefcdaf37260a837c4ae2c7a38944fe9.pcapng',111972,NULL,'90c73b1b841fc029b95603c7b0d204c76a997426b6a7bdc7414eaf511455a66a',0,432,'2022-11-28 13:54:38','','2022/11'),(3536,951,'Issue','OPCUA GRAFANA IMERYS.pcapng','221128144921_a958a5061358e783a6ac6b30e91fd288.pcapng',8501444,NULL,'2aa8f63849e2ea84fa0a91ebb6ce364056c487d0d3e1afad302a16189f68bd90',0,510,'2022-11-28 14:49:21','','2022/11'),(3537,950,'Issue','PM.zip','221128151433_PM.zip',25154083,'application/x-zip-compressed','636049266c96fe8bafa44eb5e317916ca6dc3db680c11c9d13198201e9356474',0,432,'2022-11-28 15:14:33','','2022/11'),(3538,162,'Version','Livraison Binaires Debug-IPV4 - 29-11-2022_v1.0.8.4.zip','221129094354_3bf81b4533805bdd641f968dd586a2e1.zip',14760921,'application/x-zip-compressed','9a8ead2b6eb510b2dcb5f73e6505315716a982b5423753b53f222f2c5e101edd',1,1,'2022-11-29 09:43:54','','2022/11'),(3539,293,'Version','telegraf.zip','221129115255_telegraf.zip',42638275,'application/x-zip-compressed','327e6b5eaac9b40e95444eb83a36d9c77a70e521c694c3c51fa6c2f372bba9df',1,573,'2022-11-29 11:52:55','','2022/11'),(3540,950,'Issue','Cas Comm NOK sens LM PM - OK sens PM LM.zip','221129124659_e202e82e07fe68119d88bdad77843817.zip',66981,'application/x-zip-compressed','b9e0fa344f059f18380f005269115ec8e8b56828f9b87010056fa0d40f56ebd2',0,432,'2022-11-29 12:46:59','','2022/11'),(3541,950,'Issue','Cas Comm NOK sens LM PM - OK sens PM LM2.zip','221129142722_aa31f9fadd71d915ac0a7fdd6d36e409.zip',68429,'application/x-zip-compressed','f5a6b392c4f171b92d988192452f5c1e511e84a59e595a280b90e33b4730ecc2',0,432,'2022-11-29 14:27:22','','2022/11'),(3542,162,'Version','Livraison Binaires Debug-IPV4 - 29-11-2022_AM_v1.0.8.4.zip','221129152053_7d648e657202f58791e0308263beab78.zip',15077462,'application/x-zip-compressed','456b186e9f62c30e1a10408065f8ce7f71c505f9f841e9982b22c5a42e96271b',1,1,'2022-11-29 15:20:53','','2022/11'),(3543,950,'Issue','clipboard-202211291627-iibvr.png','221129162759_clipboard-202211291627-iibvr.png',25960,'image/png','bb7828669a7b5134ba99d4272e3033dc16016829b7e919953056c99fecc51fb9',0,432,'2022-11-29 16:27:59','','2022/11'),(3544,950,'Issue','clipboard-202211291628-zuvtz.png','221129162846_clipboard-202211291628-zuvtz.png',19246,'image/png','964272b784067d815769a5ac371e698eea05b2c3534d3fe6968322cf31f7e484',0,432,'2022-11-29 16:28:46','','2022/11'),(3545,950,'Issue','OK Restitution DataChangeFilterNOK.zip','221129162900_db12a996405c355f82518e8874bdac1b.zip',79847,'application/x-zip-compressed','a77fcd873963d5a7174175d26dac662ba8ef2a2b724d11e4af76557b4940469e',0,432,'2022-11-29 16:29:00','','2022/11'),(3546,162,'Version','Livraison Binaires Debug-IPV4 - 29-11-2022_AM2_v1.0.8.4.zip','221129170139_9d474515bf2e6cc7b686015bc60eebde.zip',14763654,'application/x-zip-compressed','ba7d6bd2bca898cb190f1e7b9cfb87a66564b0de32d4161aa205ab1f59f4c396',1,1,'2022-11-29 17:01:39','','2022/11'),(3547,950,'Issue','OK.pcapng','221129182253_OK.pcapng',93864,NULL,'1dbb9c24d5cb5d7094a934b250d29f89434cfece4b49d950a85b14a01c584118',0,432,'2022-11-29 18:22:53','','2022/11'),(3548,239,'Version','Livraison Binaires Debug-IPV4 - 30-11-2022_v1.0.8.4.zip','221130110819_206bbdb480b5e7138f57ef16dc24d4a7.zip',19812731,'application/x-zip-compressed','cc01d482981ef92d87af5d92bd3c336986206135fc893ea50fc12bc9b9eb4262',1,1,'2022-11-30 11:08:19','','2022/11'),(3550,950,'Issue','3011Crash.zip','221130143837_3011Crash.zip',17019880,'application/x-zip-compressed','eac4bd2f699c0cb3a7f0e1e49661365ca30f0cd28d56023df7d5cc356bd47972',0,432,'2022-11-30 14:38:37','','2022/11'),(3551,950,'Issue','clipboard-202211301459-8ve1z.png','221130145945_clipboard-202211301459-8ve1z.png',203094,'image/png','41a261d32c4a117ab70d038ab542db94e927ffeb537c8646898a39df76235439',0,1,'2022-11-30 14:59:45','','2022/11'),(3552,950,'Issue','Crash4.zip','221130184712_Crash4.zip',8472127,'application/x-zip-compressed','ed282195f827dcb4fda7ee9b5cc97be34cb34a9fc1673255bebffc7cbfae6b0c',0,432,'2022-11-30 18:47:12','','2022/11'),(3553,950,'Issue','3011 BlocageBi.zip','221130184719_4177e0f4eca52a64eba147d4833cb141.zip',87272,'application/x-zip-compressed','2270c5b4866cf7fca9583eb0ab90a77edd8ff2d6228e3afc49456591dbb89b5f',0,432,'2022-11-30 18:47:19','','2022/11'),(3554,251,'Version','Livraison Binaires Debug-IPV4 - 1-12-2022_v1.0.8.4.zip','221201141537_012702b9bbab9432c023a1bed8b02e3e.zip',19856878,'application/x-zip-compressed','68c3c325e18888d29506ea12dfe5132c9b601de06a462bb8198da67352afa085',2,1,'2022-12-01 14:15:37','','2022/12'),(3558,239,'Version','Livraison Binaires Debug-IPV4 - 1-12-2022_v1.0.8.4.zip','221201180219_012702b9bbab9432c023a1bed8b02e3e.zip',20176953,'application/x-zip-compressed','3173ef113e15d94db96a55f15d10b89b5b61449709db367d178dcc5de0a54837',1,1,'2022-12-01 18:02:19','','2022/12'),(3560,239,'Version','Livraison Binaires Debug-IPV4 - 5-12-2022_v1.0.8.4.zip','221205194926_d3f8ce407163400d5f17e8c28465e23d.zip',20210569,'application/x-zip-compressed','2f719d36223530c1d47b61ba8b4346cc08d3a2ff2061b9740469326b9be9f5bc',2,1,'2022-12-05 19:49:26','','2022/12'),(3561,953,'Issue','clipboard-202212052039-jc4p6.png','221205203919_clipboard-202212052039-jc4p6.png',3583221,'image/png','530b9b09fe1ee724d80edba5db6587617e673160ff5277724aef35702a097720',0,1,'2022-12-05 20:39:19','','2022/12'),(3562,156,'Version','Livraison Binaires Debug-IPV4 - 6-12-2022.zip','221206150728_1cc7a1055c3f79282b0f58e7f0eea84a.zip',16228705,'application/x-zip-compressed','8c0b7d88b40b0d5a11f65474a881ec7b297570661121eb1d00ef186a08be6bfc',3,1,'2022-12-06 15:07:28','','2022/12'),(3563,955,'Issue','3011Crash.zip','221207111938_3011Crash.zip',25492485,'application/x-zip-compressed','ce5a25400668a312c035bf95bd05f6d93b8a8b8fdad4ae62161a752ac9b01e9b',0,432,'2022-12-07 11:19:38','','2022/12'),(3564,956,'Issue','3011 BlocageBi.zip','221207112448_4177e0f4eca52a64eba147d4833cb141.zip',87272,'application/x-zip-compressed','87c6b2861a20855358784d4911b071d2960aee6b9313b0f9491f1b2238ce4bce',0,432,'2022-12-07 11:24:48','','2022/12'),(3566,947,'Issue','clipboard-202212071902-lzaez.png','221207190232_clipboard-202212071902-lzaez.png',26638,'image/png','db0a92191963ba7d925abc3d853d5c806cfe241e6081b2e63d52d6092164e5fa',0,432,'2022-12-07 19:02:32','','2022/12'),(3567,947,'Issue','clipboard-202212071902-kqqks.png','221207190259_clipboard-202212071902-kqqks.png',27469,'image/png','7bc2f08f3a5aff3f67625ec85a9f03ab7b1275b74a04dd0d09c35cd271859909',0,432,'2022-12-07 19:02:59','','2022/12'),(3568,947,'Issue','clipboard-202212071903-ctfiv.png','221207190322_clipboard-202212071903-ctfiv.png',29493,'image/png','f76715e5744be7dedd0142312f63dff9c495430fc10c02030b4aace5cc454c7f',0,432,'2022-12-07 19:03:22','','2022/12'),(3569,290,'Version','OOUA_IMERYS_PROD.zip','221212151030_OOUA_IMERYS_PROD.zip',31285408,'application/x-zip-compressed','111481ada596e0adc05b4ecc0d79c9c236ca3efd993ede69dc4f0e6f576b73cc',1,573,'2022-12-12 15:10:30','','2022/12'),(3571,162,'Version','Livraison Binaires Debug-IPV4 - 14-12-2022_v1.0.8.4.zip','221214082137_0ccb9902d2376553d7bf6ed052c29e28.zip',15722161,'application/x-zip-compressed','8727122b90e8f43e36eda8212262a28b45ff1dc51d882c9e3016764cd2fb1567',0,1,'2022-12-14 08:22:16','','2022/12'),(3573,92,'Project','LogicalModel_Imerys-V2.2.1.qea','221216112643_LogicalModel_Imerys-V2.2.1.qea',2015232,'EA.Document.qea','890b4babfa77bb76a1a6467d3e085c537e694dcf21cf7915bf5ce29eeff4dc71',0,510,'2022-12-16 11:26:43','','2022/12'),(3574,965,'Issue','DemoLua_Debug.zip','221222180223_DemoLua_Debug.zip',2801548,'application/x-zip-compressed','568f530c8566db0bd2d4e4bb9c3ed9fea269f162396477db61a6ba3598b985d9',0,1,'2022-12-22 18:02:23','','2022/12'),(3575,965,'Issue','Sim_EKB_Install_2019_12_13.exe','221222180423_Sim_EKB_Install_2019_12_13.exe',3976704,'application/x-msdownload','46253c63983c347ada18d59d4d5d14cc1596a5f9f5ba355c03165173e24e0847',0,1,'2022-12-22 18:04:23','','2022/12'),(3576,966,'Issue','clipboard-202212231549-lnrbd.png','221223154951_clipboard-202212231549-lnrbd.png',1130490,'image/png','0e5ea8f0c2643b773113398c4b56df721d8e8281ccdfd93d63ba33b1bfc057eb',0,432,'2022-12-23 15:49:51','','2022/12'),(3577,966,'Issue','Opc.Ua.NodeSet2.Emotors.Types.Shared.xml','221223155046_Opc.Ua.NodeSet2.Emotors.Types.Shared.xml',1753941,'text/xml','348fa425e71833a7cc9eca6b0b44fbe82aad487a4878de79c71c83962758e3d0',0,432,'2022-12-23 15:50:46','','2022/12'),(3578,162,'Version','Livraison Binaires Debug-IPV4 - 23-12-2022_v1.0.8.4.zip','221223174642_34d6c19aa0604d61856b2aae41ed75a0.zip',14533014,'application/x-zip-compressed','591b72e73c6b1227f5706693f2ae4cceb0790bb055094306c298c5f6794fac36',1,1,'2022-12-23 17:46:42','','2022/12'),(3579,163,'Version','OpenOpcUa_1_0_8_4.zip','221223181831_OpenOpcUa_1_0_8_4.zip',8628270,'application/x-zip-compressed','b08609e3882c3a7ac84c881c4bd3fb31ca57f599f44ce0cd5d27b0e99b63689a',1,1,'2022-12-23 18:18:31','','2022/12'),(3580,162,'Version','VpiValuesInitd_v0.0.2.0.zip','221223185656_VpiValuesInitd_v0.0.2.0.zip',41588,'application/x-zip-compressed','145140ae95d0ad3b1e093a9f6d2ac9541177e645fa737a3786ab085177db910d',1,1,'2022-12-23 18:56:56','','2022/12'),(3581,961,'Issue','clipboard-202212232003-s9izf.png','221223200302_clipboard-202212232003-s9izf.png',64742,'image/png','aab442c58ae210bb844f292f5ade2a40816b6c4da8599db551f78d78ac46fa5b',0,432,'2022-12-23 20:03:02','','2022/12'),(3582,967,'Issue','clipboard-202212232021-ezqtt.png','221223202124_clipboard-202212232021-ezqtt.png',127286,'image/png','ee16e45bd89cc9e8022d293df9267097ec3f6c34da44923658d8e0ec2dab611a',0,447,'2022-12-23 20:21:24','','2022/12'),(3583,967,'Issue','clipboard-202212232025-smt21.png','221223202514_clipboard-202212232025-smt21.png',98691,'image/png','7c18239240356f8c7ce313c5440b88b46b8b7ea5a07edbc0d22e62fc89d8af0d',0,447,'2022-12-23 20:25:14','','2022/12'),(3584,967,'Issue','clipboard-202212232027-eqcdz.png','221223202745_clipboard-202212232027-eqcdz.png',115306,'image/png','80e3483bc25db258bea54fcb0e8438136db09155e1763c12883cf95220b6dd31',0,447,'2022-12-23 20:27:45','','2022/12'),(3585,967,'Issue','clipboard-202212232029-vl58a.png','221223202943_clipboard-202212232029-vl58a.png',52011,'image/png','b3d0d7c9c9f12c5cc185d34e6ea250d327349e5010754ba03c51a1136d58038a',0,447,'2022-12-23 20:29:43','','2022/12'),(3586,967,'Issue','v2.32_draft5.zip','221223203138_v2.32_draft5.zip',7128660,'application/x-zip-compressed','70537dc99b4fb07998d49c62890fd22aef993f8f6280677d87c994ec0ee29de8',0,447,'2022-12-23 20:31:38','','2022/12'),(3587,967,'Issue','v2.30.6_fix1.zip','221223203139_v2.30.6_fix1.zip',747278,'application/x-zip-compressed','b733d3b3dd585f2c4fe3a3cee156f05b9c546bc572256c608cd1e39be74b6c6a',0,447,'2022-12-23 20:31:39','','2022/12'),(3588,90,'Project','VC_redist.x64.exe','221226105059_VC_redist.x64.exe',25466016,'application/x-msdownload','2257b3fbe3c7559de8b31170155a433faf5b83829e67c589d5674ff086b868b9',0,1,'2022-12-26 10:50:59','','2022/12'),(3589,90,'Project','OOUACoreServer User Manual-v1.08.pdf','221226105149_3b677d63c3d08bafd20e00b7300197b4.pdf',1013375,'application/pdf','6e8001175b3a672786ac7e5073202bc80f9a452809714b63a0ca10f15cade8e7',0,1,'2022-12-26 10:51:49','','2022/12'),(3592,968,'Issue','OpenOpcUaCoreServer_Debug_PM.exe_221228_120333.zip','221228120455_OpenOpcUaCoreServer_Debug_PM.exe_221228_120333.zip',5532855,'application/x-zip-compressed','388dc7e2995fddfc292ab37b84ccc9900b6c195e694a77bb00ed1121137a9b46',0,447,'2022-12-28 12:04:55','','2022/12'),(3594,968,'Issue','Logs.zip','221228171343_Logs.zip',217641,'application/x-zip-compressed','c7f632017d691749d6e89a7906837e5e0ecc3b4206bf8887d9d0f5e6220c48a1',0,447,'2022-12-28 17:13:43','','2022/12'),(3595,968,'Issue','Logs_avec_reconnection.zip','221228172102_Logs_avec_reconnection.zip',220507,'application/x-zip-compressed','a8d3cba12dd700c3c5cb0d7cb3a2561f2b830f32b76c04396fcfd7eee6799be6',0,447,'2022-12-28 17:21:02','','2022/12'),(3596,968,'Issue','Logs_VpiS7.zip','221228175507_Logs_VpiS7.zip',422436,'application/x-zip-compressed','fde479e11b146cef2e1041b3783ba1e814a8e315a8534b57df436c2561a49522',0,447,'2022-12-28 17:55:07','','2022/12'),(3598,968,'Issue','Logs_PM.zip','221229110606_Logs_PM.zip',4868,'application/x-zip-compressed','8652d22e0c7ff273392d8c453a20dff88c2537162c160575b8af9a69e230849c',0,447,'2022-12-29 11:06:06','','2022/12'),(3600,968,'Issue','Logs_Wireshark.zip','221229163502_Logs_Wireshark.zip',6675,'application/x-zip-compressed','0e7252f4859f7515ed094b820f6aafa646eb938ac02a1feeb9795139871c2564',0,447,'2022-12-29 16:35:02','','2022/12'),(3601,968,'Issue','Erreur_Connexion.pcapng','221229163503_Erreur_Connexion.pcapng',9243168,NULL,'21e392b12c66b523d837cbc082bbb2c11d0e4cc9692ee14fbe869da1b1a30624',0,447,'2022-12-29 16:35:03','','2022/12'),(3603,968,'Issue','trace_Reconnexion_Ok2eme.pcapng','221229174218_trace_Reconnexion_Ok2eme.pcapng',2366424,NULL,'dbdd0d160c06dc1349c932a4036daafe6d13ad78c5e54742bc497518e6c6c454',0,447,'2022-12-29 17:42:18','','2022/12'),(3604,968,'Issue','Logs_Wireshark2emereco.zip','221229174535_Logs_Wireshark2emereco.zip',7841,'application/x-zip-compressed','dc4af61e70b5d77d58420964fb030d88453fcd953de12060ded3ccf79cf09326',0,447,'2022-12-29 17:45:35','','2022/12'),(3607,968,'Issue','Logs.zip','221230162242_Logs.zip',20807,'application/x-zip-compressed','7915b3b19c14a620ae11adb9290f1de5c206664ec75c749d092d02db9992db82',0,447,'2022-12-30 16:22:42','','2022/12'),(3610,179,'Version','VpiUaClntd.zip','221230182911_VpiUaClntd.zip',125968,'application/x-zip-compressed','a7b04d0f75209fd4282ddc2fde8f8b63194c8398446464f0f24be3afff20264e',1,1,'2022-12-30 18:29:11','','2022/12'),(3611,968,'Issue','LogsRechargementPLC_NonReconnexionau2eme.zip','221231103839_LogsRechargementPLC_NonReconnexionau2eme.zip',156150,'application/x-zip-compressed','8de37d497018d9b3df06ab6bae5553fd8a4035d4e42cf36a277178b8987265c8',0,447,'2022-12-31 10:38:39','','2022/12'),(3612,968,'Issue','Trace_RechargementPLC.pcapng','221231103842_Trace_RechargementPLC.pcapng',3531292,NULL,'c23423477aeb1dabf931bdec5691ee5f442014f6e18414f7219919d6965e7f01',0,447,'2022-12-31 10:38:42','','2022/12'),(3613,968,'Issue','LogsSansVpiWarmStart.zip','221231105427_LogsSansVpiWarmStart.zip',336828,'application/x-zip-compressed','5c0f1dd472ba8f73c9b12be372fb72cb61bcfb66adbabe3ed7de519e8365aad9',0,447,'2022-12-31 10:54:27','','2022/12'),(3614,968,'Issue','Trace_RechargementPLC_casSansVpiWarmStart.pcapng','221231105427_Trace_RechargementPLC_casSansVpiWarmStart.pcapng',5648640,NULL,'d6c7a49c439b376266339d149da0d0966900313df662b63e4d66bb901e994039',0,447,'2022-12-31 10:54:27','','2022/12'),(3615,943,'Issue','PDB_CloudOPCUA.zip','230102103608_PDB_CloudOPCUA.zip',17704428,'application/x-zip-compressed','7302b587f53a886cf9ecdb0ab7474fa3373e99648b05f38527e62285bc8c05f5',0,573,'2023-01-02 10:36:08','','2023/01'),(3616,92,'Project','LogicalModel_Imerys-V2.2.1.qea','230103161324_LogicalModel_Imerys-V2.2.1.qea',2027520,'EA.Document.qea','655d1cc50070de1d4008f23a1669385995035a82a3b4abf807ed44a3b7c7f4ac',0,510,'2023-01-03 16:13:24','','2023/01'),(3617,308,'Version','OOUA_IMERYS_PROD_412023.zip','230104110506_OOUA_IMERYS_PROD_412023.zip',33150767,'application/x-zip-compressed','016167752019834e222005fc6905c20f8b047ace1e5ebdde1b854fd8217ead29',1,573,'2023-01-04 11:05:06','','2023/01'),(3618,254,'Version','uaexpert-bin-win32-x86-vs2008sp1-v1.6.1-424.exe','220329133351_uaexpert-bin-win32-x86-vs2008sp1-v1.6.1-424.exe',21188026,'application/x-msdownload','faa3be8fd7de93a6ba5c76a20449471ea5fa6fae785888b5ce911b8969ed1eaa',1,573,'2023-01-04 14:21:49','','2022/03'),(3621,968,'Issue','OpenOpcUaCoreServer_Debug.exe_230105_222215.7z','230105222519_OpenOpcUaCoreServer_Debug.exe_230105_222215.7z',20320346,'application/x-7z-compressed','2323bb261a93267bb2a029d655f324e2be5074b1a60b73a11af3f5da92fbb7f8',0,447,'2023-01-05 22:25:19','','2023/01'),(3626,969,'Issue','ximulator.PNG','230109085807_ximulator.PNG',13551,'image/png','54bd73f01cd98d8408bf12bfb23f30ae0ee1de9647b07a90d4b174e7f70a464d',0,573,'2023-01-09 08:58:07','','2023/01'),(3627,92,'Project','LogicalModel_Imerys-V2.2.11.qea','230109134701_LogicalModel_Imerys-V2.2.11.qea',2027520,'EA.Document.qea','d865e563974b1cf522f4f51d7a4c8478b20486713eee576776b3d0fac0c98cbf',0,510,'2023-01-09 13:47:01','','2023/01'),(3628,237,'Version','XiMulator_1.0.2.6_v1.0.5.8.zip','221109103035_XiMulator_1.0.2.6_v1.0.5.8.zip',1255489,'application/x-zip-compressed','ef08b8e69998d9143ec8ff486b0417051d207cb7f107d988d45e039e959aaa5b',1,1,'2023-01-09 13:49:49','','2022/11'),(3631,962,'Issue','OOUA_IMERYS_MVP_C3.log','230110101827_OOUA_IMERYS_MVP_C3.log',367585,'text/plain','a0f5b8a9e5f94ae154d9e17e6a5d201134ae3ff4bf8b05b8191c25f02e5aa0cd',0,573,'2023-01-10 10:18:27','','2023/01'),(3632,962,'Issue','Grafana Capture.pcapng','230110101830_c3c823c7df55c031c545ff18e03a6770.pcapng',21272188,NULL,'071ad1e5e90283bb905f4417eb647363f0cdee26c0a00b74b0ca89ecde043dd7',0,573,'2023-01-10 10:18:30','','2023/01'),(3633,962,'Issue','OOUA_IMERYS_MVP_C3.log','230110130549_OOUA_IMERYS_MVP_C3.log',406978,'text/plain','c20186647394362c84ce24887affbc49c747305e998df97f159a1fc0c03d3acb',0,573,'2023-01-10 13:05:49','','2023/01'),(3634,962,'Issue','SQL-00200.log','230110130550_SQL-00200.log',1270,'text/plain','13304e68aa42b8ef5ff23892d2ecc03e175de421c2cb9a2aaa37d6272a52fc9d',0,573,'2023-01-10 13:05:50','','2023/01'),(3635,968,'Issue','TRACE_deconnexion.pcapng','230110150334_TRACE_deconnexion.pcapng',8622124,NULL,'612fd0258501918f29dc6e30c7457348cb6e98837deecf99f5acb26ab9eb9543',0,447,'2023-01-10 15:03:34','','2023/01'),(3641,968,'Issue','Logs_110123.zip','230111180614_Logs_110123.zip',35241,'application/x-zip-compressed','68aeeb1e3102574c605b10c5e24597321aa3cc7e19099603ef722b4989832435',0,447,'2023-01-11 18:06:14','','2023/01'),(3643,108,'Project','LogicalModel_Imerys-V2.2.11.qea','230109134701_LogicalModel_Imerys-V2.2.11.qea',2027520,'EA.Document.qea','d865e563974b1cf522f4f51d7a4c8478b20486713eee576776b3d0fac0c98cbf',2,510,'2023-01-12 09:37:12','','2023/01'),(3644,962,'Issue','OOUA_IMERYS_MVP_C3.log','230112130805_OOUA_IMERYS_MVP_C3.log',901357,'text/plain','0cc803c7c8d3e0c79d60b6fb9f90d9b6f04981a4f5a8f98654ec1b4e6de5c5df',0,573,'2023-01-12 13:08:05','','2023/01'),(3645,968,'Issue','OpenOpcUaCoreServer_Debug.exe_230112_144719.zip','230112144837_OpenOpcUaCoreServer_Debug.exe_230112_144719.zip',8595692,'application/x-zip-compressed','e0630527850421f50a1f982d740acea2cc5d9dc95a1aa6555057dcc0226e3122',0,447,'2023-01-12 14:48:37','','2023/01'),(3646,313,'Version','Grafana Meeting Minutes 2023-01-11 - V1 - Data Platform.pdf','230112150054_063a9f6f34b2965b8cb322cb0a85c2df.pdf',163400,'application/pdf','8b4d8b7d710dffbc7d4436e4633a8905c105664f6ce360fd526cca63eff24ef3',0,573,'2023-01-12 15:00:54','','2023/01'),(3649,310,'Version','Emotor-LogicalModel-OPCUA_V2.32.1.eapx','230113141014_Emotor-LogicalModel-OPCUA_V2.32.1.eapx',11767808,NULL,'61668f2aadd33972bdf495b0665347f40b7ad81950a2859af0e5c5f35ab77f88',0,549,'2023-01-13 14:10:14','','2023/01'),(3652,970,'Issue','Project.zip','230113194845_Project.zip',1002328,'application/x-zip-compressed','00311e096793f3ad123c79a0bf7692dbdb14a0d8766b5c81ba7b9ded168cb81a',0,447,'2023-01-13 19:48:45','','2023/01'),(3654,162,'Version','Livraison Binaires Debug-IPV4 - 14-01-2023_v1.0.8.5.zip','230113203910_560c47f7bfbca56715a86c67c6c5b8f7.zip',16700589,'application/x-zip-compressed','e516139d4fb810de89e89891f14a4ba6ebf892ed33a7d5572fb05a500c246d6a',0,1,'2023-01-13 20:39:46','','2023/01'),(3655,971,'Issue','Assemblage.zip','230113205810_Assemblage.zip',75106751,'application/x-zip-compressed','b3f183c0bb861cb677de23c15d9c02d4d56708fa1ff174170adf9e348321647a',0,447,'2023-01-13 20:58:10','','2023/01'),(3656,971,'Issue','OpenOpcUaCoreServer_Debug.exe_230113_210044.zip','230113210231_OpenOpcUaCoreServer_Debug.exe_230113_210044.zip',7548998,'application/x-zip-compressed','c0ee0579f41a1b0f5eee7396bb571e8307287a4c255640fb28ae1841f699c5ab',0,447,'2023-01-13 21:02:31','','2023/01'),(3657,971,'Issue','clipboard-202301132127-amucf.png','230113212720_clipboard-202301132127-amucf.png',314813,'image/png','f30773cb60ec6aaa0b41c4332bac9e6e51365a2df88375377038d3d9c7c626e1',0,1,'2023-01-13 21:27:20','','2023/01'),(3658,971,'Issue','clipboard-202301132127-kidpl.png','230113212754_clipboard-202301132127-kidpl.png',135952,'image/png','07b1958c30f4858650d1d869c1996eda1a01803124c562fc1799a44b7c364e12',0,1,'2023-01-13 21:27:54','','2023/01'),(3659,971,'Issue','clipboard-202301132128-filvi.png','230113212843_clipboard-202301132128-filvi.png',783916,'image/png','457e47a2374bde3ee9ae0feacc2d9d1579157213285de01baca41d74d76e639e',0,1,'2023-01-13 21:28:43','','2023/01'),(3661,176,'Version','XiMulator_1.0.2.7_v1.0.5.9.zip','230115164308_XiMulator_1.0.2.7_v1.0.5.9.zip',1255659,'application/x-zip-compressed','a7e5dcb412a69984115d22976ee680943c749b90d66a4c016fb7cb10b18df092',1,1,'2023-01-15 16:43:08','','2023/01'),(3662,182,'Version','XiMulator_1.0.2.7_v1.0.5.9.zip','230115164308_XiMulator_1.0.2.7_v1.0.5.9.zip',1255659,'application/x-zip-compressed','a7e5dcb412a69984115d22976ee680943c749b90d66a4c016fb7cb10b18df092',0,1,'2023-01-15 16:43:30','','2023/01'),(3663,237,'Version','XiMulator_1.0.2.7_v1.0.5.9.zip','230115164308_XiMulator_1.0.2.7_v1.0.5.9.zip',1255659,'application/x-zip-compressed','a7e5dcb412a69984115d22976ee680943c749b90d66a4c016fb7cb10b18df092',0,1,'2023-01-15 16:43:57','','2023/01'),(3664,205,'Version','XiMulator_1.0.2.7_v1.0.5.9.zip','230115164308_XiMulator_1.0.2.7_v1.0.5.9.zip',1255659,'application/x-zip-compressed','a7e5dcb412a69984115d22976ee680943c749b90d66a4c016fb7cb10b18df092',0,1,'2023-01-15 16:44:18','','2023/01'),(3665,181,'Version','XiMulator_1.0.2.7_v1.0.5.9.zip','230115164308_XiMulator_1.0.2.7_v1.0.5.9.zip',1255659,'application/x-zip-compressed','a7e5dcb412a69984115d22976ee680943c749b90d66a4c016fb7cb10b18df092',2,1,'2023-01-15 16:44:40','','2023/01'),(3666,228,'Version','XiMulator_1.0.2.7_v1.0.5.9.zip','230115164308_XiMulator_1.0.2.7_v1.0.5.9.zip',1255659,'application/x-zip-compressed','a7e5dcb412a69984115d22976ee680943c749b90d66a4c016fb7cb10b18df092',1,1,'2023-01-15 16:45:12','','2023/01'),(3667,270,'Version','XiMulator_1.0.2.7_v1.0.5.9.zip','230115164308_XiMulator_1.0.2.7_v1.0.5.9.zip',1255659,'application/x-zip-compressed','a7e5dcb412a69984115d22976ee680943c749b90d66a4c016fb7cb10b18df092',1,1,'2023-01-15 16:45:50','','2023/01'),(3669,972,'Issue','OpenOpcUaCoreServer_Debug.exe_230114_060007.zip','230116082050_OpenOpcUaCoreServer_Debug.exe_230114_060007.zip',31620917,'application/x-zip-compressed','a67691f96a8008933987cc710c4da7162ec37ca70da0ac8824b18e9d2194715a',0,573,'2023-01-16 08:20:50','','2023/01'),(3670,972,'Issue','PDB_1612023.zip','230102103608_PDB_CloudOPCUA.zip',17704428,'application/x-zip-compressed','7302b587f53a886cf9ecdb0ab7474fa3373e99648b05f38527e62285bc8c05f5',0,573,'2023-01-16 08:55:01','','2023/01'),(3671,972,'Issue','Logs_1612023.zip','230116085524_Logs_1612023.zip',447383,'application/x-zip-compressed','c81f6788b90c756f1d6962a53be38880e479a26e7471aa125ccf6dbad5d93ab7',0,573,'2023-01-16 08:55:24','','2023/01'),(3672,314,'Version','109755133_SiOME_CODE_V26 (1).zip','230116125313_3b069089b2e744c6a6005ca4029af532.zip',81564272,'application/x-zip-compressed','ee398f071920c880a5f04a1084ab1bdd37cbce3eb9fe9c7854765338ab61533a',1,573,'2023-01-16 12:53:13','','2023/01'),(3675,973,'Issue','OOUA_IMERYS_MVP_C3.log','230117103920_OOUA_IMERYS_MVP_C3.log',928108,'text/plain','fb96761ad3dfa0bc8de3e56a63819efefe0298a91da648f8ea400a770447c4b3',0,573,'2023-01-17 10:39:20','','2023/01'),(3676,973,'Issue','cp.PNG','230117105835_cp.PNG',95593,'image/png','982c6b89ebf7ad92dd2b2990252d48c322a848d8c584c59263ed184ab7091390',0,573,'2023-01-17 10:58:35','','2023/01'),(3677,974,'Issue','Logs_PM_ImpossibleStpWatchingThread.zip','230117220400_Logs_PM_ImpossibleStpWatchingThread.zip',1863074,'application/x-zip-compressed','a7124fdf76e98372bfde963bdbc38bbc9a50db13c883d7280febf1b97ca1672c',0,447,'2023-01-17 22:04:00','','2023/01'),(3678,974,'Issue','clipboard-202301172204-sgi1t.png','230117220420_clipboard-202301172204-sgi1t.png',47655,'image/png','b30789b723ea11bb1b79e45294e913206dcc18b02f40073c0a2a4a1c5373d777',0,447,'2023-01-17 22:04:20','','2023/01'),(3679,974,'Issue','Logs_Pc_Connexion_Pm_LM.zip','230119013104_Logs_Pc_Connexion_Pm_LM.zip',1902754,'application/x-zip-compressed','599dc41fd88c7649a56942ff01677d0577f4eb988e496d13630557421812b965',0,447,'2023-01-19 01:31:04','','2023/01'),(3680,974,'Issue','Trace_Pb_ConnexionPM_LM.pcapng','230119013106_Trace_Pb_ConnexionPM_LM.pcapng',8194108,NULL,'6185711d28f74d460e76432e3da3b99d06a4637b0f1eec402ef9fdb6fe0a0f6e',0,447,'2023-01-19 01:31:06','','2023/01'),(3681,974,'Issue','clipboard-202301190131-ezltk.png','230119013134_clipboard-202301190131-ezltk.png',54864,'image/png','c0c7b3cc0b2feb3a99386024a981ef98e293cb7ba205c79023eeab056b1a3f08',0,447,'2023-01-19 01:31:34','','2023/01'),(3682,176,'Version','OpenSSL_1.1.zip','230119144415_OpenSSL_1.1.zip',1813431,'application/x-zip-compressed','3667e3af0d7864318f7937dad6fac763b679a805d7d207e6ee5061b2bf3ecf99',1,1,'2023-01-19 14:44:15','','2023/01'),(3683,975,'Issue','certificate.pem.crt','230119145735_certificate.pem.crt',1220,'application/x-x509-ca-cert','a4b787cbab54d0c629fff3ed490bcb121bfbc708d61b579c4b64eafe8c325770',0,548,'2023-01-19 14:57:35','','2023/01'),(3684,975,'Issue','SSL.zip','230119152418_SSL.zip',13701,'application/x-zip-compressed','9fa9fcb40632b925143a0a95e071460366ff172041a927789ff0f1e876ac8e71',0,1,'2023-01-19 15:24:18','','2023/01'),(3685,975,'Issue','mosquitto.org.crt','230119154448_mosquitto.org.crt',1452,'application/x-x509-ca-cert','45612492b0690dc1f16b97c2df2d1649fababcc1bf52ca0c12935dbda00ad7e6',0,1,'2023-01-19 15:44:48','','2023/01'),(3687,974,'Issue','OpenOpcUaCoreServer_Debug.exe_230119_223658.zip','230119223814_OpenOpcUaCoreServer_Debug.exe_230119_223658.zip',45668152,'application/x-zip-compressed','08a66b75e2b0e5f9bb09d02e527cb28f78308a231e6fd00133db7cdf15673ba9',0,447,'2023-01-19 22:38:14','','2023/01'),(3688,974,'Issue','Logs_BadInetrnalError_VpiAssemblyBak.zip','230119230247_Logs_BadInetrnalError_VpiAssemblyBak.zip',1821507,'application/x-zip-compressed','d4b968c80d0548c29d91573a755c27db74bafb7ce111f17912c8e1905d5c04ae',0,447,'2023-01-19 23:02:47','','2023/01'),(3689,974,'Issue','Trace_Connexion_PM_BadInternalError.zip','230119230258_Trace_Connexion_PM_BadInternalError.zip',96299903,'application/x-zip-compressed','bf95ae6b85787b808dc4346806de15271ccb785b3f6567e55e38cf18997612cb',0,447,'2023-01-19 23:02:58','','2023/01'),(3691,976,'Issue','Project.zip','230120092011_Project.zip',531323,'application/x-zip-compressed','b1911c0c3b21ad2a7340224cb64151d67f74b97ab988afcb4e5968e6331ced32',0,455,'2023-01-20 09:20:11','Project','2023/01'),(3692,178,'Version','DemoMqttPublisher_Debug_Simulation.zip','230120134219_DemoMqttPublisher_Debug_Simulation.zip',3533092,'application/x-zip-compressed','81a035ead91468dfa1dfc3d2477eafe0c2ad2cfb5a9b252ce441cf348ddb6fbe',0,1,'2023-01-20 13:42:19','','2023/01'),(3693,178,'Version','DemoMqttSubscriber_Debug_Simulation.zip','230120141825_DemoMqttSubscriber_Debug_Simulation.zip',3447491,'application/x-zip-compressed','d4c97abf78cc5ba61f2eb3bc5ef46f0aedd306886d50b747a21e163771821733',1,1,'2023-01-20 14:18:25','','2023/01'),(3694,972,'Issue','Logs.zip','230120142731_Logs.zip',2218,'application/x-zip-compressed','6d88d43b44079b9e25468558b0e0d7b001bd579bb80307dfea8e44894c26ce2d',0,573,'2023-01-20 14:27:31','','2023/01'),(3695,972,'Issue','OpenOpcUaCoreServer_Debug.exe_230120_140933.zip','230120142732_OpenOpcUaCoreServer_Debug.exe_230120_140933.zip',10568957,'application/x-zip-compressed','2f426837c6d9b671589861f3cab2f93ca22fc69bf5b904977a1181335cde77bc',0,573,'2023-01-20 14:27:32','','2023/01'),(3696,972,'Issue','PDB.zip','230120142734_PDB.zip',18754988,'application/x-zip-compressed','d529cb909e60014a734c7810ed7ce5e5b42a03cff013af9fd4d2b4091e4aefa7',0,573,'2023-01-20 14:27:34','','2023/01'),(3697,315,'Version','Livraison Binaires Debug-IPV4 - 20-01-2023_v1.0.8.5.zip','230120153846_aff4265277c31ab2bc606843d5abbaea.zip',22482575,'application/x-zip-compressed','511c864ce69936067250abb9ffbaa8818d768d7997879cb8c0ae020e969a1af0',1,1,'2023-01-20 15:38:46','','2023/01'),(3699,179,'Version','Livraison Binaires Debug-IPV4 - 20-01-2023_v1.0.8.5.zip','230120205358_aff4265277c31ab2bc606843d5abbaea.zip',16827468,'application/x-zip-compressed','4923bc5d792fba81f1b44bda763d1046c72173994009ab3625e5b3d298a211b7',1,1,'2023-01-20 20:53:58','','2023/01'),(3700,976,'Issue','clipboard-202301210512-cxykf.png','230121051200_clipboard-202301210512-cxykf.png',60122,'image/png','6eb2c2ad3decbe08bef7faae40dab04279db16f8a95940c0f8cb46c2d8599c93',0,447,'2023-01-21 05:12:00','','2023/01'),(3701,976,'Issue','clipboard-202301210512-w9scr.png','230121051232_clipboard-202301210512-w9scr.png',1156377,'image/png','9d4fc11be2b973eef9cc50ba4734ceadc7735679a81ccff24ec0e7b00dfbee66',0,447,'2023-01-21 05:12:32','','2023/01'),(3702,974,'Issue','Crash_LM_OpenOpcUaCoreServer_Debug.exe_230121_045751.zip','230121051706_65e2d6a4282e28e560be11cb8f7c824a.zip',46046785,'application/x-zip-compressed','5a96edd9bd7367d847196ff702af8d3cf7d1d9c265f28eef3e4ef5c553bb69f0',0,447,'2023-01-21 05:17:06','','2023/01'),(3703,974,'Issue','Crash_PM_OpenOpcUaCoreServer_Debug.exe_230119_225302.zip','230121052037_10a1a0234b16985b26fe709462f1cce4.zip',7524927,'application/x-zip-compressed','11b656931c3337489d27e6da8fb0ce04d47770f1b6fc7950fe0aa26344a73498',0,447,'2023-01-21 05:20:37','','2023/01'),(3704,974,'Issue','Crash_PM_OpenOpcUaCoreServer_Debug.exe_230121_002740.zip','230121052039_825feb1bb6eac30af82c6bb68d7c566b.zip',9154394,'application/x-zip-compressed','89c902715291a231a30534fe5db0c2bc183a15bc4d1dcd3d918ccaa638f3a349',0,447,'2023-01-21 05:20:39','','2023/01'),(3705,974,'Issue','Trace_Pb_ConnexionPM_LM_Crash.zip','230121052040_Trace_Pb_ConnexionPM_LM_Crash.zip',4037055,'application/x-zip-compressed','60ce0b3592e5be0996266d7e273ee30596b72651a54777d6a825cbbed26caaaa',0,447,'2023-01-21 05:20:40','','2023/01'),(3706,974,'Issue','Crash_LM_OpenOpcUaCoreServer_Debug.exe_230121_045751.zip','230121051706_65e2d6a4282e28e560be11cb8f7c824a.zip',46046785,'application/x-zip-compressed','5a96edd9bd7367d847196ff702af8d3cf7d1d9c265f28eef3e4ef5c553bb69f0',0,447,'2023-01-21 05:20:42','','2023/01'),(3707,974,'Issue','Crash_PM_Logs.zip','230121052145_Crash_PM_Logs.zip',1826750,'application/x-zip-compressed','1dea906439eb30e26b632c53b93fbab651764d3f8975adb53f2d7f7bd8c8487d',0,447,'2023-01-21 05:21:45','','2023/01'),(3708,976,'Issue','clipboard-202301210537-sejm0.png','230121053648_clipboard-202301210537-sejm0.png',72230,'image/png','70ea222b4b13bdd41c0f5b8cb0beb5dba4fa6bdf02113fdcdb9d6032f489a2be',0,447,'2023-01-21 05:36:48','','2023/01'),(3709,179,'Version','Livraison Binaires Debug-IPV4 - 21-01-2023_v1.0.8.5.zip','230121093337_cad8884e32e366c447d3c4e8ce254d03.zip',16831595,'application/x-zip-compressed','1e1ac10f94f470a95f5411d390567f0a69c7213768e741bcec7b8b402808d01c',1,1,'2023-01-21 09:33:37','','2023/01'),(3710,974,'Issue','Crash_LM_Fermeture_OpenOpcUaCoreServer_Debug.exe_230121_230525.zip','230121230854_5b5721f14a9160a793e4e249ee83470b.zip',46058459,'application/x-zip-compressed','fe2fa70ad787f5695fc3063884b7cfe2228fdfd4f9a2b156950fea256ec46ccc',0,447,'2023-01-21 23:08:54','','2023/01'),(3711,974,'Issue','StopWatchingThread.zip','230121231248_StopWatchingThread.zip',720849,'application/x-zip-compressed','ce745d21cf13a2c20839c0dfd8a4124aaf9f43af647ead548855985dc710e48e',0,447,'2023-01-21 23:12:48','','2023/01'),(3712,974,'Issue','Trace_Pb_ConnexionPM_LM_StopWtachingThread.zip','230121231250_Trace_Pb_ConnexionPM_LM_StopWtachingThread.zip',6314079,'application/x-zip-compressed','bab81e765eb82cc15748ef1e348448eee6ba268152c141bce31d3b43bce21d92',0,447,'2023-01-21 23:12:50','','2023/01'),(3713,974,'Issue','Crash_PM_OpenOpcUaCoreServer_Debug.exe_230121_230331.zip','230121231714_ce1a3719d35a1d54c07fcd8fe60d2457.zip',7475105,'application/x-zip-compressed','9ac2694380c5122fdd676d94193bd6533fbe032c9586f2554324b4d3788fce19',0,447,'2023-01-21 23:17:14','','2023/01'),(3714,974,'Issue','clipboard-202301212333-dpddj.png','230121233401_clipboard-202301212333-dpddj.png',365983,'image/png','a91065533f26299491df6a2baa07ab962d0304d3667dff62fc24cd3f7410dbd8',0,1,'2023-01-21 23:34:01','','2023/01'),(3715,976,'Issue','clipboard-202301221937-0dgpf.png','230122193720_clipboard-202301221937-0dgpf.png',9521,'image/png','c9327fd1eeb8ecfadad71b4f73bf2c3fe2bcafbe9cbe598e1f405b912423ef28',0,1,'2023-01-22 19:37:20','','2023/01'),(3716,976,'Issue','clipboard-202301221939-pyt3u.png','230122193942_clipboard-202301221939-pyt3u.png',216840,'image/png','1a69feff6548ab188c5d6e15dcd75b95e117296fb7a19e5bd9677b9344722a9c',0,1,'2023-01-22 19:39:42','','2023/01'),(3717,976,'Issue','clipboard-202301221940-raqe7.png','230122194028_clipboard-202301221940-raqe7.png',133643,'image/png','f2f3f4d134769a91de94970eada56bf91adeaaca28305f60b61129cd305bbc08',0,1,'2023-01-22 19:40:28','','2023/01'),(3718,179,'Version','Livraison Binaires Debug-IPV4 - 23-01-2023_v1.0.8.5.zip','230123103542_b77ba632073b0dffc70bca14526817a5.zip',16867049,'application/x-zip-compressed','8e880f1a6281b8c8ebbd3cdca1fec6698e7ddbbe0dd3a5e45e59b16e8ce48816',1,1,'2023-01-23 10:35:42','','2023/01'),(3719,972,'Issue','Logs.zip','230123115516_Logs.zip',3726,'application/x-zip-compressed','6bcb050a9b0a18ede84f56021fc3d2c23557cae7576e179ac7b182b285564384',0,573,'2023-01-23 11:55:16','','2023/01'),(3720,972,'Issue','OpenOpcUaCoreServer_Debug.exe_230123_114949.zip','230123115518_OpenOpcUaCoreServer_Debug.exe_230123_114949.zip',8881855,'application/x-zip-compressed','564cf067a7badca09f98c3a1d3a5fdb64b1899c2176e0d21c960b7efa412303a',0,573,'2023-01-23 11:55:18','','2023/01'),(3721,176,'Version','109755133_SiOME_CODE_V26.zip','230123165928_109755133_SiOME_CODE_V26.zip',81592685,'application/x-zip-compressed','cba605b61d4da6d3e174af6013448a31a66d7df0aee6e9b0b0c2e03d67b6cda7',1,447,'2023-01-23 16:59:28','','2023/01'),(3722,976,'Issue','OpenOpcUaCoreServer_Debug_test.exe_230123_173335.zip','230123173520_2df1ce100aebeeb3d5b808efffb7ebe6.zip',14893787,'application/x-zip-compressed','c316c56f612d9dec31c88b26d6704f2a7a9b8fb0acb042dfe461df8ac778ae85',0,447,'2023-01-23 17:35:20','','2023/01'),(3723,978,'Issue','TEST UACLIENT NEW IPIN3.zip','230123173809_246368154af20e454fd393e262bd97fb.zip',45744701,'application/x-zip-compressed','644b95b8b2d82a48114d3f5fd7d955f27068439d45363bb65e83f803c5211fa8',0,447,'2023-01-23 17:38:09','','2023/01'),(3724,974,'Issue','OpenOpcUaCoreServer_Debug.exe_230123_213637.zip','230123220420_OpenOpcUaCoreServer_Debug.exe_230123_213637.zip',10056785,'application/x-zip-compressed','cea78c200fc6287d95cc04f27d4c8572456096efc5ae8d639a8371a7c680d411',0,447,'2023-01-23 22:04:20','','2023/01'),(3725,974,'Issue','Crash_Rechargement_PLC_OpenOpcUaCoreServer_Debug.exe_230123_223637.zip','230123223725_dfc25fc37aaa30cbaf179115d3e7f06a.zip',10007845,'application/x-zip-compressed','be63451fcf3759bf90c070ace4046ea119fe0893c7d1248cdb6cbb67bd23b7aa',0,447,'2023-01-23 22:37:25','','2023/01'),(3726,179,'Version','Livraison Binaires Debug-IPV4 - 24-01-2023_v1.0.8.5.zip','230123231810_c13553bc2054a78714a6aff376237564.zip',17016040,'application/x-zip-compressed','d5ebeb5174f193ff905e952f6d706f4352903ecd2a9bd64519b3ac904683e77c',4,1,'2023-01-23 23:18:10','','2023/01'),(3727,979,'Issue','S7_47-00950.log','230124092443_S7_47-00950.log',967092,'text/plain','7bdc17a943bf1d856d055cbd50129e269d65dccd0f4d746cd88191686545faf7',0,573,'2023-01-24 09:24:43','','2023/01'),(3728,979,'Issue','S7_23-00850.log','230124092443_S7_23-00850.log',2222900,'text/plain','414086fe0f7d7574d446f62e8ed7612b5714f1b595df583f7c70f81fe90acaf0',0,573,'2023-01-24 09:24:43','','2023/01'),(3729,979,'Issue','PDB.zip','230124092454_PDB.zip',18754744,'application/x-zip-compressed','4ded170f0cd6189196f6a4e6243dcbbba85895c3c200d9d195fb3bca87707145',0,573,'2023-01-24 09:24:54','','2023/01'),(3730,979,'Issue','wireshark.PNG','230124133955_wireshark.PNG',21241,'image/png','49211e490b8af63e65cf251dd08bf787341f0aac180e3fb6305f60cf5e0b9a0f',0,573,'2023-01-24 13:39:55','','2023/01'),(3731,181,'Version','UAFlexClient_Release_IPV4_1.0.0.4_x64.zip','230124162610_UAFlexClient_Release_IPV4_1.0.0.4_x64.zip',13911986,'application/x-zip-compressed','650a14f56cfe2c569c958139bad1fb5c9af6663505e9b4fdbb861f74519df6b1',1,1,'2023-01-24 16:26:10','','2023/01'),(3732,13,'Project','OpenOpcUaConfigManager_Delivrable Beta_0.1.0.4_Debug_x64.zip','230124164035_4523328942ac7c17e405e4de3dbe318b.zip',18303687,'application/x-zip-compressed','fa60198948d70502a262b7124e278207cc19a424148f04409ed769cf01bdc96d',0,1,'2023-01-24 16:40:35','','2023/01'),(3733,179,'Version','Livraison Binaires Debug-IPV4 - 25-01-2023_v1.0.8.5.zip','230125100618_8235ff2258bfee22bc14ef9450219892.zip',16988660,'application/x-zip-compressed','f10ef72ec390045551fc834efbb7fb02585aefbb38d981fbca7467d517be5b23',1,1,'2023-01-25 10:06:18','','2023/01'),(3734,179,'Version','Livraison Binaires Debug-IPV4 - 25-01-2023_v1.0.8.5_18h00.zip','230125181922_707e8818c8b4d20ee1b8678df862d8e1.zip',16992078,'application/x-zip-compressed','294f3e1ec76763375580b4464e0fc471c10e1f76bf0ad6e758cbf09d6d262afa',2,1,'2023-01-25 18:19:22','','2023/01'),(3735,178,'Version','Demo_Vpi_UaClient_Manu_4Vpi_x64_Debug_IPV4.zip','230125203832_Demo_Vpi_UaClient_Manu_4Vpi_x64_Debug_IPV4.zip',16213386,'application/x-zip-compressed','cd099e82c0db7db4eac7ffbff3001e07e7e02cfbb20577daa1e028ec848b3248',1,1,'2023-01-25 20:38:32','','2023/01'),(3736,178,'Version','DemoS7_Simulator_Debug_x64_NodeId_String.zip','230125203915_DemoS7_Simulator_Debug_x64_NodeId_String.zip',5358972,'application/x-zip-compressed','aff5f63433c65c8eb3e749a598edab7216bbb2bf19cec8d3cfe279dfbd7b7acd',1,1,'2023-01-25 20:39:15','','2023/01'),(3737,974,'Issue','OpenOpcUaCoreServer_Debug.exe_230127_141628.zip','230127142227_OpenOpcUaCoreServer_Debug.exe_230127_141628.zip',11622816,'application/x-zip-compressed','57c8160886a22601613f6de2fa0dd32f23db3ec2d35693efe3ac17de8dbf8c77',0,450,'2023-01-27 14:22:27','','2023/01'),(3738,980,'Issue','clipboard-202301301424-dzhzs.png','230130142420_clipboard-202301301424-dzhzs.png',87754,'image/png','5fc8a1cda697a5e73e82affa369174a0493ac6b2935df4227adeee2fc4e7dd6a',0,432,'2023-01-30 14:24:20','','2023/01'),(3739,980,'Issue','EMOPU - 1041 Crash serveur stator 27.01.2023.zip','230130142828_b8410c645220de0d50aabe18c4860055.zip',100433053,'application/x-zip-compressed','47affa49223e7ab4ddbd37c9aaf550f21cee19ff4dcd7f031b37e198d9a9f0d0',0,432,'2023-01-30 14:28:28','','2023/01'),(3740,982,'Issue','UaClnt-IlotPrepaStackM2.log','230131092238_UaClnt-IlotPrepaStackM2.log',601055,'text/plain','03c0644ca25cf04c596f6657fc82bc84344aa4bdd942ec731d1fc86953be603e',0,450,'2023-01-31 09:22:38','','2023/01'),(3741,976,'Issue','Test_WireShark.zip','230131112045_Test_WireShark.zip',27362494,'application/x-zip-compressed','38b4f88a036080719ec2cc0f13ca926553a57a962d65568e85ed5f1c676bf7f2',0,447,'2023-01-31 11:20:45','','2023/01'),(3742,976,'Issue','SinumerikOne-Lecture.pcapng','230131113403_SinumerikOne-Lecture.pcapng',20572776,NULL,'7fafd0afeaf61e9a1f2320cd473631cd6321ef247068140991d5d7afd55c0d81',0,447,'2023-01-31 11:34:03','','2023/01'),(3743,976,'Issue','OpenOpcUaCoreServer_Debug_test.exe_230131_122405.zip','230131122459_e98949bc0ecd11fb08b9261b2bad20ce.zip',14911939,'application/x-zip-compressed','73df92e51d2569d0a6d86742f1236f180855b97662a00b7962b9c7acbc74ca72',0,447,'2023-01-31 12:24:59','','2023/01'),(3744,179,'Version','Livraison Binaires Debug-IPV4 - 31-01-2023_v1.0.8.5.zip','230131165901_956964f595d882325d26d9e23b9fd596.zip',16980333,'application/x-zip-compressed','e0dff1841da4935b1db41fda1c0e0b0e9aaa6c7ea0210d75b6ecdccfbfdc1939',2,1,'2023-01-31 16:59:01','','2023/01'),(3746,981,'Issue','ApresRechargementInitValue.png','230131172125_ApresRechargementInitValue.png',79173,'image/png','7689235f24c417f13ca7f3e1ebdee81b6ba74428255144d44c744874c726b6f7',0,455,'2023-01-31 17:21:25','','2023/01'),(3747,981,'Issue','AvantRechargementInitValue.png','230131172125_AvantRechargementInitValue.png',192267,'image/png','ca5c0bb1dea7ac3b6dd5d6d5228482c94daa51a23d54bf3af389e281bea847ae',0,455,'2023-01-31 17:21:25','','2023/01'),(3748,972,'Issue','OpenOpcUaCoreServer_Debug.exe_230131_175740.zip','230201101149_OpenOpcUaCoreServer_Debug.exe_230131_175740.zip',55479834,'application/x-zip-compressed','6b3c90d4a54364b276b066fcc8d688dd7e53c075f8faf42148643e1c3e685226',0,573,'2023-02-01 10:11:49','','2023/02'),(3749,972,'Issue','SQL-00200.log','230201101245_SQL-00200.log',160,'text/plain','c4d3223dfb39c074bfecff7a7c718c43d6fc2fba6fab81e15846019d817a2bb1',0,573,'2023-02-01 10:12:45','','2023/02'),(3750,972,'Issue','ImerysPROD.log','230201101245_ImerysPROD.log',1510,'text/plain','e8193341ee7fcc990efcce80eb9a208c49241234cd0e7d021a45a64a6eff6d3c',0,573,'2023-02-01 10:12:45','','2023/02'),(3751,972,'Issue','ValuesInit-00200.log','230201101246_ValuesInit-00200.log',4296,'text/plain','3064eee27c0fe5f994088108dbe5ce3eb2c38e4a682fa18a0141b59fd0f0c5b8',0,573,'2023-02-01 10:12:46','','2023/02'),(3752,972,'Issue','Subscriber-00160.log','230201101246_Subscriber-00160.log',39959,'text/plain','3646f580dc497e38c6373b225f9fccdc9f03a83d695ded7613fa56b9897a2be1',0,573,'2023-02-01 10:12:46','','2023/02'),(3753,976,'Issue','UaClnt-001-00301.dat','230201154132_UaClnt-001-00301.dat',161,'text/plain','2573b63adf1912d14663dcc78f9f61d4c972dec809b48fe026797ee4bc006555',0,447,'2023-02-01 15:41:32','','2023/02'),(3754,976,'Issue','SubSystem.Uaclient-001_Release.xml','230201154132_SubSystem.Uaclient-001_Release.xml',27087,'text/xml','e9c47fe37402ccdc866154a730b8117cc2b79f4cf7331358135d604cc93da6d9',0,447,'2023-02-01 15:41:32','','2023/02'),(3755,976,'Issue','UaClnt-001-00301-0.xml','230201154132_UaClnt-001-00301-0.xml',17883,'text/xml','d3444f3e34b8db10e7c4b394fcd531132db932a976d9a849eca160dae52bbbe0',0,447,'2023-02-01 15:41:32','','2023/02'),(3756,976,'Issue','1-2-2023.zip','230201174721_1-2-2023.zip',2917995,'application/x-zip-compressed','b6e2191332e7990d5cbf1d3630d5247eba25ae4bc13919cae13810e70a25b176',0,1,'2023-02-01 17:47:21','','2023/02'),(3757,976,'Issue','1-2-2023_18h00.zip','230201175508_1-2-2023_18h00.zip',2917503,'application/x-zip-compressed','e5cd7fdbf803f5ed0ae68c274e61e741a30336457a3c5fd0b323931a1328338a',0,1,'2023-02-01 17:55:08','','2023/02'),(3758,976,'Issue','TEST UACLIENT NEW IPIN3 - 1.0.8.5.zip','230201205301_bf2601e54336213d40075c825a23ae4a.zip',27243226,'application/x-zip-compressed','b019914633d58640fd2a70b2da14a513fc14819294c4a01199925fddc46cf682',0,447,'2023-02-01 20:53:01','','2023/02'),(3759,984,'Issue','clipboard-202302021407-oyivw.png','230202140750_clipboard-202302021407-oyivw.png',61898,'image/png','2c1bcfc414724d7fb6f518bfc7ca35648dae3445b68c97294075f85798d1a19e',0,432,'2023-02-02 14:07:50','','2023/02'),(3760,984,'Issue','EMOPU 1057 - Crash stator 31.01.2023.zip','230202141550_c1302372891b878031a17287423b31a2.zip',27013662,'application/x-zip-compressed','2830dffee2cf5099848907753c3071378c8501c815f88d739bb2ad470e6321bf',0,432,'2023-02-02 14:15:50','','2023/02'),(3761,984,'Issue','EMOPU-1057 Minidump.zip','230202141601_d15bce6b566a8bb77bbeb0fc2fb743da.zip',79259380,'application/x-zip-compressed','d51da7bbe1448a45f1b0a76e316917710ddb66243ddbbc736439d884b8b65bd2',0,432,'2023-02-02 14:16:01','','2023/02'),(3762,179,'Version','Livraison Binaires Debug-IPV4 - 03-02-2023_v1.0.8.5.zip','230203140513_a1aa6d0bbaa3c65d370bec0cf64662cb.zip',16179592,'application/x-zip-compressed','3ca32184318b9d3faee53f58110834c69dd923fec58c11a4ba7d0f939bd9b479',2,1,'2023-02-03 14:05:13','','2023/02'),(3763,986,'Issue','clipboard-202302031930-jomxl.png','230203193026_clipboard-202302031930-jomxl.png',153043,'image/png','82cb126cf8a969d0b92c2a6c84966c4aa41eefeb17ccadc0a4900f34e63cdd4e',0,432,'2023-02-03 19:30:26','','2023/02'),(3764,986,'Issue','Crash PM Preprod 1.zip','230203193111_102823d384802d283afe5b513451ba4f.zip',38985776,'application/x-zip-compressed','8e5c3ec797676dfc783e69de5c8afc3d41091f5362e8441eefb63300cc7fccf8',0,432,'2023-02-03 19:31:11','','2023/02'),(3765,987,'Issue','clipboard-202302031932-x4c79.png','230203193256_clipboard-202302031932-x4c79.png',203909,'image/png','5c19e719be09a4c39680e211c55ae3b228da3c3b87cbb0b951e269ea8aa8cfe0',0,432,'2023-02-03 19:32:56','','2023/02'),(3766,987,'Issue','Crash PM Preprod 2.zip','230203193306_036bf1fe459d1f2b4ec35c511a8c293e.zip',34430686,'application/x-zip-compressed','b563aa57556da34ac00d4f5c7137ab688bd917ad47a4a5cea42a3dc2abb73a5e',0,432,'2023-02-03 19:33:06','','2023/02'),(3767,988,'Issue','CrashDemarrageBinairesPdb.zip','230206114700_CrashDemarrageBinairesPdb.zip',18004052,'application/x-zip-compressed','69a9733ca0458440cc1b120b5a92c6028220b01d90a41eb14567f0f7e89ca666',0,432,'2023-02-06 11:47:00','','2023/02'),(3768,988,'Issue','OpenOpcUaCoreServer_Debug.exe_230204_210013.zip','230206114704_OpenOpcUaCoreServer_Debug.exe_230204_210013.zip',18965420,'application/x-zip-compressed','a30da6a906ab515a5cbeb929478fc8fc154473841b17e08ce8a55bae0ce595b9',0,432,'2023-02-06 11:47:04','','2023/02'),(3769,988,'Issue','OpenOpcUaCoreServer_Debug.exe_230206_092243.zip','230206114715_OpenOpcUaCoreServer_Debug.exe_230206_092243.zip',46474014,'application/x-zip-compressed','58067ddc9a1c86e3a185f138f5c7820846baee326dfbe3fa74978380e8b6708f',0,432,'2023-02-06 11:47:15','','2023/02'),(3770,988,'Issue','LogsAssemblage.zip','230206114721_LogsAssemblage.zip',454569,'application/x-zip-compressed','5fb8b9588aab260bebeed8be35409dae14c67865a4ab04fdff8739121215bd3a',0,432,'2023-02-06 11:47:21','','2023/02'),(3771,988,'Issue','LogsPrepastack.zip','230206114740_LogsPrepastack.zip',171154,'application/x-zip-compressed','f5e7317815063460bcaf3e1666c21e38701c2f429119c00de1ae233b2361da99',0,432,'2023-02-06 11:47:40','','2023/02'),(3772,988,'Issue','Crashs au démarrage.docx','230206142823_a97cfbef5ef940c5a82e4f275d685140.docx',226362,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','e1f44c0c86df7a7ed5a2160e065e1a6ccabef2778878b3da04d5d1185c91a910',0,432,'2023-02-06 14:28:23','','2023/02'),(3773,988,'Issue','EtudeCrash_OpenOpcUaCoreServer.docx','230206145403_EtudeCrash_OpenOpcUaCoreServer.docx',1121907,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','512a084e86aa659a403ed299b60f3f67b66292e2d1844fb4a0efb4845db0cfa2',0,1,'2023-02-06 14:54:03','','2023/02'),(3774,988,'Issue','clipboard-202302071122-hzgh4.png','230207112226_clipboard-202302071122-hzgh4.png',79661,'image/png','440f826e314493a5eba244b00d79fd048c81e281b77e5c463ea0f85a1ed37d2b',0,432,'2023-02-07 11:22:26','','2023/02'),(3775,988,'Issue','Opc.Ua.NodeSet2.Emotors.Types.Shared (8).xml','230207113657_580c6cf5b11cbe45b9b97d23f3211072.xml',2760587,'text/xml','abf61320eeaf4aa6b1d80a8b550431807f451fe9d5636b8a93d8c1dbf0acdf8c',0,432,'2023-02-07 11:36:57','','2023/02'),(3776,315,'Version','Livraison Binaires Debug-IPV4 - 7-02-2023_v1.0.8.5.zip','230207162127_9bb5521eb95ccea6af755ad9d09c8ba2.zip',21882771,'application/x-zip-compressed','21d661258cc3f0c27cbe332648f7d9888e7df9372f666a303b97ff78f9140baa',1,1,'2023-02-07 16:21:27','','2023/02'),(3777,155,'Version','OpenOpcUa_1_0_8_5.zip','230208143829_OpenOpcUa_1_0_8_5.zip',8644960,'application/x-zip-compressed','4966b11ca78641582a2664aa5a452756edda0c80382fde37cac71aaec6080e0a',1,1,'2023-02-08 14:38:29','','2023/02'),(3778,514,'Issue','clipboard-202302081855-ucaui.png','230208185535_clipboard-202302081855-ucaui.png',11288,'image/png','e83f7193c707dc922c0f181431758ae85d2c53a4a40d853d7a62d4bee3b3a33a',0,1,'2023-02-08 18:55:35','','2023/02'),(3779,514,'Issue','clipboard-202302081856-hltdn.png','230208185612_clipboard-202302081856-hltdn.png',17242,'image/png','b879c2151eef660e207dccb51154120fc796c31eabec135cd127fd52734a7fe7',0,1,'2023-02-08 18:56:12','','2023/02'),(3780,514,'Issue','clipboard-202302081856-et7ga.png','230208185657_clipboard-202302081856-et7ga.png',57878,'image/png','14699b73a02586d92835b69461cefadcf081ffe11780011d304f7ff7ca1ab246',0,1,'2023-02-08 18:56:57','','2023/02'),(3781,315,'Version','Livraison Binaires Debug-IPV4 - 9-02-2023_v1.0.8.5.zip','230209174901_ed186d056bb274490b848ed887437717.zip',21816018,'application/x-zip-compressed','4c4fc9a8c652bebdd3037ba7461fc3b70e4a7a9f966d774f209447b8d1daa261',1,1,'2023-02-09 17:49:01','','2023/02'),(3782,175,'Version','Opc.Ua.NodeSet2.Emotors.Types.Shared (9).xml','230207113657_580c6cf5b11cbe45b9b97d23f3211072.xml',2760587,'text/xml','abf61320eeaf4aa6b1d80a8b550431807f451fe9d5636b8a93d8c1dbf0acdf8c',1,447,'2023-02-10 13:54:08','','2023/02'),(3783,313,'Version','AWS_Credential_Samples.txt','230210144755_AWS_Credential_Samples.txt',1522,'text/plain','1de466b11f20aa75109f4e09f5eb8b2259b127f7d6d98c5a40834982806e701d',1,573,'2023-02-10 14:47:55','','2023/02'),(3784,990,'Issue','expression_de_besoin_VPIKPI.pdf','230210174712_expression_de_besoin_VPIKPI.pdf',126580,'application/pdf','5a91d8460aa1b71d2a5633caf3f48e12da8832ff10194c67de2b1bcd784eac03',0,548,'2023-02-10 17:47:12','','2023/02'),(3785,991,'Issue','clipboard-202302101815-lo6gg.png','230210181502_clipboard-202302101815-lo6gg.png',321285,'image/png','03f0618f1c7c8f2f473b120c0080b9561c241ad8069670c3efa25c0f7d65635f',0,432,'2023-02-10 18:15:02','','2023/02'),(3786,992,'Issue','clipboard-202302131536-ussys.png','230213153618_clipboard-202302131536-ussys.png',23201,'image/png','2dd001ec9769dc3191b6d83a4b56eb90ea9856637d5b3de79234d3bd4cf58c6b',0,432,'2023-02-13 15:36:18','','2023/02'),(3787,992,'Issue','clipboard-202302131539-codv7.png','230213153958_clipboard-202302131539-codv7.png',88925,'image/png','6a3bc90fc13247a9a5d25811474fd0fca4d5c0e3f21cbb81eadaea6765beb847',0,432,'2023-02-13 15:39:58','','2023/02'),(3788,992,'Issue','Logs 2023.02.11_11-57-49.zip','230213154543_820315543fa20662a2c42d2f326644b7.zip',505951,'application/x-zip-compressed','6db6e3d77685c719dba2589c8c17393d445b54d023c1099c53e7e01b537939a5',0,432,'2023-02-13 15:45:43','','2023/02'),(3789,992,'Issue','Livraison Binaires Debug-IPV4 - 03-02-2023_v1.0.8.5.zip','230203140513_a1aa6d0bbaa3c65d370bec0cf64662cb.zip',16179592,'application/x-zip-compressed','3ca32184318b9d3faee53f58110834c69dd923fec58c11a4ba7d0f939bd9b479',0,432,'2023-02-13 15:45:55','','2023/02'),(3790,992,'Issue','OpenOpcUaCoreServer_Debug.exe_230211_115204.dmp.zip','230213154605_44ed7e356d0a72ec5c877413662c226b.zip',88548687,'application/x-zip-compressed','4f219d02077c57eeb217bb63ee1f6b53c651e33c71067a285c18ed19a4e4b3f3',0,432,'2023-02-13 15:46:05','','2023/02'),(3791,316,'Version','DemoMqttPublisherSubscriber_Debug_Simulation.zip','230213160255_DemoMqttPublisherSubscriber_Debug_Simulation.zip',6977929,'application/x-zip-compressed','27ec5dc7f5510118cf3baf7cd439b0aeb766db9df83135230b180b5e8e716805',0,1,'2023-02-13 16:02:55','','2023/02'),(3792,162,'Version','Livraison Binaires Debug-IPV4 - 14-02-2023_v1.0.8.5.zip','230214094837_3652d2749447e6d7f04c1d5f68b60840.zip',15337089,'application/x-zip-compressed','7ece33376fc0f9a1ae81084a54502c81303b5baccaa5ea5696ea983085a082dc',1,1,'2023-02-14 09:48:37','','2023/02'),(3793,992,'Issue','PM.zip','230214115309_PM.zip',75387830,'application/x-zip-compressed','7a1d1201f76ac4bf0433e2d50d07c316e7dfa872601dcc1a2a47930b3bc91266',0,432,'2023-02-14 11:53:09','','2023/02'),(3794,992,'Issue','Crash 11h24 logs bak.zip','230214115322_062af6bd0da4c5b42d75644c757eb66d.zip',69060,'application/x-zip-compressed','bd4c4c05232080ec660dbe64073b3e2da2cf51b59af17ea3a5b72016d10c8b7b',0,432,'2023-02-14 11:53:22','','2023/02'),(3795,992,'Issue','clipboard-202302141157-ld44b.png','230214115731_clipboard-202302141157-ld44b.png',64708,'image/png','f91cbd6ba9233c82817a87e300356d7162193fa5da6946247e2b98bbf5717476',0,432,'2023-02-14 11:57:31','','2023/02'),(3796,992,'Issue','clipboard-202302141158-blslg.png','230214115811_clipboard-202302141158-blslg.png',39528,'image/png','89916ee3e7b9518d7eb27818ca75f0a6ecd68b18c02d9c354def9cd45960cded',0,432,'2023-02-14 11:58:11','','2023/02'),(3797,993,'Issue','clipboard-202302141228-v8zsl.png','230214122809_clipboard-202302141228-v8zsl.png',134822,'image/png','054816e5969afa009d999903a3ef1fa49f603effe953847993d7286304e28649',0,432,'2023-02-14 12:28:09','','2023/02'),(3798,993,'Issue','ServerDiagnosticsTest.zip','230214122848_ServerDiagnosticsTest.zip',8374559,'application/x-zip-compressed','9772131c8f5ad2aaab620c994e4ebf058351ff8caeb7d0c4ce0ce5776409b064',0,432,'2023-02-14 12:28:48','','2023/02'),(3799,992,'Issue','clipboard-202302141334-3dgbb.png','230214133457_clipboard-202302141334-3dgbb.png',113348,'image/png','80c97bba975fa329d7b986f178f5b935d0660cc9845ea8e51cfcc051675faf61',0,1,'2023-02-14 13:34:57','','2023/02'),(3800,992,'Issue','clipboard-202302141338-wuzd5.png','230214133804_clipboard-202302141338-wuzd5.png',70797,'image/png','048df072dd21d87472ecdb53c9f7014b16765f1b9c5d8c66568baeee8f79c804',0,1,'2023-02-14 13:38:04','','2023/02'),(3801,162,'Version','Livraison Binaires Debug-IPV4 - 14-02-2023_v1.0.8.5_14h00.zip','230214143207_359d215c09780e7c4066796e1a7ab884.zip',15356559,'application/x-zip-compressed','2187846950b55b10b7e1c0524c10aa95b76717128ffba494e13b77d1fa72c9ce',1,1,'2023-02-14 14:32:07','','2023/02'),(3802,163,'Version','OpenOpcUa_1_0_8_5.zip','230214150705_OpenOpcUa_1_0_8_5.zip',8645185,'application/x-zip-compressed','496e5c7f34191f3f3c279640abd4bb20ca3bfba28db2ea48ce6d9bf24f79d61c',1,1,'2023-02-14 15:07:05','','2023/02'),(3803,992,'Issue','Livraison Binaires Debug-IPV4 - 14-02-2023_v1.0.8.5_14h00.zip','230214143207_359d215c09780e7c4066796e1a7ab884.zip',15356559,'application/x-zip-compressed','2187846950b55b10b7e1c0524c10aa95b76717128ffba494e13b77d1fa72c9ce',0,432,'2023-02-14 18:27:34','','2023/02'),(3804,992,'Issue','OpenOpcUaCoreServer_Debug_PM.exe_230214_163857.dmp.zip','230214182755_ebc1efdf9b606b843c93f96e589610b1.zip',21713110,'application/x-zip-compressed','4c645b08bf67c708315c9f01fb8bdf8fde1e4e58633d8e56c2a57f81918243ac',0,432,'2023-02-14 18:27:55','','2023/02'),(3805,994,'Issue','Traces PM-Bridgeworx+Workbench.pcapng','230214183932_f51d50426910b94ab6673b011e58a316.pcapng',82563796,NULL,'988033e5b922a59e9a909a22dc3519a4fbf2801ad6357d6b4a4f29c76f55bd92',0,432,'2023-02-14 18:39:32','','2023/02'),(3806,992,'Issue','PM Backoffice Crash 15-02-23 7h35.zip','230215093717_9c4c5fd3e4ecd22b8cf331effe5fd7ea.zip',25109812,'application/x-zip-compressed','fb2e8dbdbbea5a2547926c1529d3b20da345ac997f8c9b4f2f8846a5d94fd59b',0,432,'2023-02-15 09:37:17','','2023/02'),(3807,992,'Issue','Livraison Binaires Debug-IPV4 - 14-02-2023_v1.0.8.5_14h00.zip','230214143207_359d215c09780e7c4066796e1a7ab884.zip',15356559,'application/x-zip-compressed','2187846950b55b10b7e1c0524c10aa95b76717128ffba494e13b77d1fa72c9ce',0,432,'2023-02-15 09:37:31','','2023/02'),(3808,995,'Issue','clipboard-202302151024-lwq9f.png','230215102423_clipboard-202302151024-lwq9f.png',10199,'image/png','e866dbfddb57154ee32ca7b983380c9f81f8d1681c1aa6e4fdd19f13c484b7e4',0,432,'2023-02-15 10:24:23','','2023/02'),(3809,995,'Issue','clipboard-202302151024-xaii9.png','230215102440_clipboard-202302151024-xaii9.png',16868,'image/png','84d6a5587a7c8f311fefb3534ef268150bb419f1b8fd494193c89debefea6497',0,432,'2023-02-15 10:24:40','','2023/02'),(3810,995,'Issue','GOOD.csv','230215102742_GOOD.csv',726167,'text/csv','9b8e3dcc2b2c46ad811439577cda5a66514ffad21c7d42a3bf4423ae645458d6',0,432,'2023-02-15 10:27:41','','2023/02'),(3811,995,'Issue','BAD.csv','230215102742_BAD.csv',2310854,'text/csv','054a194cde9707df69ed83ffed3d17d6d6315b6ea1cf2bc6533eadaad94ef3b9',0,432,'2023-02-15 10:27:42','','2023/02'),(3812,995,'Issue','Good to Bad.csv','230215102751_309e0af544933c4904cc04af2590997e.csv',43627093,'text/csv','44ee50066c6a24c1089ee1406a9a192b196ffff4fe4e2e5ca4696c6e868a655a',0,432,'2023-02-15 10:27:51','','2023/02'),(3813,990,'Issue','clipboard-202302151116-eqpn3.png','230215111649_clipboard-202302151116-eqpn3.png',67172,'image/png','fda7732f054ea06885e6b0c6a637a354736b973b44db6705d74cec967997c493',0,1,'2023-02-15 11:16:49','','2023/02'),(3814,990,'Issue','clipboard-202302151743-idemu.png','230215174411_clipboard-202302151743-idemu.png',10798,'image/png','cd898e8384ef74d354ffe4d544c92fb47d28e5b3fc9130b9f75cbf21da2e80e9',0,548,'2023-02-15 17:44:11','','2023/02'),(3815,312,'Version','LogicalModel_Imerys-V2.3.qea','230216105127_LogicalModel_Imerys-V2.3.qea',2027520,'EA.Document.qea','d6e3ea7d96d61e620d3f45163ca42bf929239c40910208e5eea54a7234ab69d9',0,510,'2023-02-16 10:51:27','','2023/02'),(3816,972,'Issue','Logs.zip','230216111446_Logs.zip',4212,'application/x-zip-compressed','f413513c6552c6bff90aa92d2c4529e9537bc7279733b9b9b4fe4098e4683cc6',0,573,'2023-02-16 11:14:46','','2023/02'),(3817,972,'Issue','PDB.zip','230216111453_PDB.zip',17222348,'application/x-zip-compressed','1f64d3b027607c62cb4d0345736d881384c30c1b0b22ad8f7c2af44407808505',0,573,'2023-02-16 11:14:53','','2023/02'),(3818,972,'Issue','OpenOpcUaCoreServer_Debug.exe_230214_111442.dmp.zip','230216111501_d6373871924b5aef8b15748450cd1ac4.zip',58467429,'application/x-zip-compressed','90399263336bc33b7e3b84f01aafe0a047ad0de6cf8db8c5b7024620b723224b',0,573,'2023-02-16 11:15:01','','2023/02'),(3819,315,'Version','Livraison Binaires Debug-IPV4 - 16-02-2023_v1.0.8.5.zip','230216144932_9f560c453ca704ea2e50138e41274eb2.zip',21841138,'application/x-zip-compressed','a0cc1d1242c65dc283bfd3f59217a50570e8633fad1b516884c4f730f2f0c1ac',0,1,'2023-02-16 14:49:32','','2023/02'),(3820,162,'Version','Livraison Binaires Debug-IPV4 - 16-02-2023_v1.0.8.5.zip','230216145243_9f560c453ca704ea2e50138e41274eb2.zip',15339266,'application/x-zip-compressed','34717bd4f6ac83c16aa544ae133a7306e7f8414638c737e8c473195180d83738',1,1,'2023-02-16 14:52:43','','2023/02'),(3821,992,'Issue','clipboard-202302170909-mzjly.png','230217090906_clipboard-202302170909-mzjly.png',157670,'image/png','ce367abf2164f9c8f807c8661ecc6141dcc4ac00ddcf7345d7a58e342f07fd0b',0,432,'2023-02-17 09:09:06','','2023/02'),(3822,992,'Issue','clipboard-202302170935-v3elu.png','230217093538_clipboard-202302170935-v3elu.png',14306,'image/png','34c9452a1d5b4ef1d097807ea70f2b0cdf0165e3d70f346d5eff6904394f8d92',0,432,'2023-02-17 09:35:38','','2023/02'),(3823,997,'Issue','Test deploiement L18.zip','230217095514_1de2283009d12b4e996e192eadca0d65.zip',21976450,'application/x-zip-compressed','12225d87af68b2644c2646c2c22658120ae894c52239ae98eb0b160ecf819c6f',0,565,'2023-02-17 09:55:14','','2023/02'),(3824,1000,'Issue','clipboard-202302171424-qw97u.png','230217142426_clipboard-202302171424-qw97u.png',34750,'image/png','301b4d427bb11c0f062e0b9afb69dd5bfe7821b97b768a31b1f912435e6d0461',0,432,'2023-02-17 14:24:26','','2023/02'),(3825,1000,'Issue','LM-17-02-23.zip','230217142818_LM-17-02-23.zip',66555502,'application/x-zip-compressed','9b7f3cb2c7e30030a4a60217d586afd547a302412610c741ca28b53ec67a51dd',0,432,'2023-02-17 14:28:18','','2023/02'),(3826,990,'Issue','tasks.drawio','230217183649_tasks.drawio',442072,NULL,'709ef780dfda883b58ff4b0158ccd3fdfbf7f167ce1a391a66128438ea47ab67',0,548,'2023-02-17 18:36:49','','2023/02');
/*!40000 ALTER TABLE `attachments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_sources`
--
DROP TABLE IF EXISTS `auth_sources`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_sources` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(30) NOT NULL DEFAULT '',
`name` varchar(60) NOT NULL DEFAULT '',
`host` varchar(60) DEFAULT NULL,
`port` int(11) DEFAULT NULL,
`account` varchar(255) DEFAULT NULL,
`account_password` varchar(255) DEFAULT '',
`base_dn` varchar(255) DEFAULT NULL,
`attr_login` varchar(30) DEFAULT NULL,
`attr_firstname` varchar(30) DEFAULT NULL,
`attr_lastname` varchar(30) DEFAULT NULL,
`attr_mail` varchar(30) DEFAULT NULL,
`onthefly_register` tinyint(1) NOT NULL DEFAULT '0',
`tls` tinyint(1) NOT NULL DEFAULT '0',
`filter` text,
`timeout` int(11) DEFAULT NULL,
`verify_peer` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `index_auth_sources_on_id_and_type` (`id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_sources`
--
LOCK TABLES `auth_sources` WRITE;
/*!40000 ALTER TABLE `auth_sources` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_sources` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `boards`
--
DROP TABLE IF EXISTS `boards`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `boards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`topics_count` int(11) NOT NULL DEFAULT '0',
`messages_count` int(11) NOT NULL DEFAULT '0',
`last_message_id` int(11) DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `boards_project_id` (`project_id`),
KEY `index_boards_on_last_message_id` (`last_message_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `boards`
--
LOCK TABLES `boards` WRITE;
/*!40000 ALTER TABLE `boards` DISABLE KEYS */;
INSERT INTO `boards` VALUES (1,1,'OpenOpcUaCoreServer','Various information about the core server',1,5,6,8,NULL),(2,1,'OpenOpcUaClientLib','Forum for OpenOpcUa client ',2,0,0,NULL,NULL),(3,1,'General','General question about OPC UA technology.',3,0,0,NULL,NULL),(4,48,'FAQ','Frequently Asked Question',1,2,3,9,NULL),(5,50,'FAQ','Frequently Asked Question',1,0,0,NULL,NULL),(6,53,'FAQ','Frequently Asked Question',1,1,1,10,NULL);
/*!40000 ALTER TABLE `boards` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `changes`
--
DROP TABLE IF EXISTS `changes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `changes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changeset_id` int(11) NOT NULL,
`action` varchar(1) NOT NULL DEFAULT '',
`path` text NOT NULL,
`from_path` text,
`from_revision` varchar(255) DEFAULT NULL,
`revision` varchar(255) DEFAULT NULL,
`branch` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `changesets_changeset_id` (`changeset_id`)
) ENGINE=InnoDB AUTO_INCREMENT=22212 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `changes`
--
LOCK TABLES `changes` WRITE;
/*!40000 ALTER TABLE `changes` DISABLE KEYS */;
INSERT INTO `changes` VALUES (1,1,'A','/branches',NULL,NULL,NULL,NULL),(2,1,'A','/tags',NULL,NULL,NULL,NULL),(3,1,'A','/trunk',NULL,NULL,NULL,NULL),(4,1,'A','/trunk/Debug',NULL,NULL,NULL,NULL),(5,1,'A','/trunk/Debug/uastackd.dll',NULL,NULL,NULL,NULL),(6,1,'A','/trunk/Debug/uastackd.exp',NULL,NULL,NULL,NULL),(7,1,'A','/trunk/Debug/uastackd.ilk',NULL,NULL,NULL,NULL),(8,1,'A','/trunk/Debug/uastackd.lib',NULL,NULL,NULL,NULL),(9,1,'A','/trunk/Debug/uastackd.pdb',NULL,NULL,NULL,NULL),(10,1,'A','/trunk/Lib',NULL,NULL,NULL,NULL),(11,1,'A','/trunk/Lib/linux32',NULL,NULL,NULL,NULL),(12,1,'A','/trunk/Lib/win32',NULL,NULL,NULL,NULL),(13,1,'A','/trunk/Lib/win32/OPCUA_CPP_SharedLibd.lib',NULL,NULL,NULL,NULL),(14,1,'A','/trunk/Lib/win32/XMLSAXParserd.lib',NULL,NULL,NULL,NULL),(15,1,'A','/trunk/Lib/win32/libeay32.dll',NULL,NULL,NULL,NULL),(16,1,'A','/trunk/Lib/win32/libeay32.lib',NULL,NULL,NULL,NULL),(17,1,'A','/trunk/Lib/win32/libxml2.lib',NULL,NULL,NULL,NULL),(18,1,'A','/trunk/Lib/win32/uastackd.lib',NULL,NULL,NULL,NULL),(19,1,'A','/trunk/Lib/win64',NULL,NULL,NULL,NULL),(20,1,'A','/trunk/Lib/wince6',NULL,NULL,NULL,NULL),(21,1,'A','/trunk/OpcUAStackV1.ncb',NULL,NULL,NULL,NULL),(22,1,'A','/trunk/OpcUAStackV1.sln',NULL,NULL,NULL,NULL),(23,1,'A','/trunk/OpcUAStackV1.suo',NULL,NULL,NULL,NULL),(24,1,'A','/trunk/UAStackV1',NULL,NULL,NULL,NULL),(25,1,'A','/trunk/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(26,1,'A','/trunk/UAStackV1/CertificateStore',NULL,NULL,NULL,NULL),(27,1,'A','/trunk/UAStackV1/CertificateStore/certs',NULL,NULL,NULL,NULL),(28,1,'A','/trunk/UAStackV1/CertificateStore/certs/4CEUAServer [0E29158B78B024380825CE7FF1070A520FEA58D7].der',NULL,NULL,NULL,NULL),(29,1,'A','/trunk/UAStackV1/CertificateStore/certs/UA Local Discovery Server [CB988313BD5E781F570E7F4EB50588380D55750F].der',NULL,NULL,NULL,NULL),(30,1,'A','/trunk/UAStackV1/CertificateStore/private',NULL,NULL,NULL,NULL),(31,1,'A','/trunk/UAStackV1/CertificateStore/private/4CEUAServer [0E29158B78B024380825CE7FF1070A520FEA58D7].pfx',NULL,NULL,NULL,NULL),(32,1,'A','/trunk/UAStackV1/Debug',NULL,NULL,NULL,NULL),(33,1,'A','/trunk/UAStackV1/Debug/BuildLog.htm',NULL,NULL,NULL,NULL),(34,1,'A','/trunk/UAStackV1/Debug/UAStackV1.res',NULL,NULL,NULL,NULL),(35,1,'A','/trunk/UAStackV1/Debug/mt.dep',NULL,NULL,NULL,NULL),(36,1,'A','/trunk/UAStackV1/Debug/opcua_asynccallstate.obj',NULL,NULL,NULL,NULL),(37,1,'A','/trunk/UAStackV1/Debug/opcua_base64.obj',NULL,NULL,NULL,NULL),(38,1,'A','/trunk/UAStackV1/Debug/opcua_binarydecoder.obj',NULL,NULL,NULL,NULL),(39,1,'A','/trunk/UAStackV1/Debug/opcua_binaryencoder.obj',NULL,NULL,NULL,NULL),(40,1,'A','/trunk/UAStackV1/Debug/opcua_buffer.obj',NULL,NULL,NULL,NULL),(41,1,'A','/trunk/UAStackV1/Debug/opcua_builtintypes.obj',NULL,NULL,NULL,NULL),(42,1,'A','/trunk/UAStackV1/Debug/opcua_channel.obj',NULL,NULL,NULL,NULL),(43,1,'A','/trunk/UAStackV1/Debug/opcua_clientapi.obj',NULL,NULL,NULL,NULL),(44,1,'A','/trunk/UAStackV1/Debug/opcua_connection.obj',NULL,NULL,NULL,NULL),(45,1,'A','/trunk/UAStackV1/Debug/opcua_core.obj',NULL,NULL,NULL,NULL),(46,1,'A','/trunk/UAStackV1/Debug/opcua_crypto.obj',NULL,NULL,NULL,NULL),(47,1,'A','/trunk/UAStackV1/Debug/opcua_datetime.obj',NULL,NULL,NULL,NULL),(48,1,'A','/trunk/UAStackV1/Debug/opcua_decoder.obj',NULL,NULL,NULL,NULL),(49,1,'A','/trunk/UAStackV1/Debug/opcua_encodeableobject.obj',NULL,NULL,NULL,NULL),(50,1,'A','/trunk/UAStackV1/Debug/opcua_encoder.obj',NULL,NULL,NULL,NULL),(51,1,'A','/trunk/UAStackV1/Debug/opcua_endpoint.obj',NULL,NULL,NULL,NULL),(52,1,'A','/trunk/UAStackV1/Debug/opcua_endpoint_ex.obj',NULL,NULL,NULL,NULL),(53,1,'A','/trunk/UAStackV1/Debug/opcua_enumeratedtype.obj',NULL,NULL,NULL,NULL),(54,1,'A','/trunk/UAStackV1/Debug/opcua_extensionobject.obj',NULL,NULL,NULL,NULL),(55,1,'A','/trunk/UAStackV1/Debug/opcua_guid.obj',NULL,NULL,NULL,NULL),(56,1,'A','/trunk/UAStackV1/Debug/opcua_http_internal.obj',NULL,NULL,NULL,NULL),(57,1,'A','/trunk/UAStackV1/Debug/opcua_httpconnection.obj',NULL,NULL,NULL,NULL),(58,1,'A','/trunk/UAStackV1/Debug/opcua_httpconnection_securityproxy.obj',NULL,NULL,NULL,NULL),(59,1,'A','/trunk/UAStackV1/Debug/opcua_httplistener.obj',NULL,NULL,NULL,NULL),(60,1,'A','/trunk/UAStackV1/Debug/opcua_httplistener_connectionmanager.obj',NULL,NULL,NULL,NULL),(61,1,'A','/trunk/UAStackV1/Debug/opcua_httplistener_securitystub.obj',NULL,NULL,NULL,NULL),(62,1,'A','/trunk/UAStackV1/Debug/opcua_https_connection.obj',NULL,NULL,NULL,NULL),(63,1,'A','/trunk/UAStackV1/Debug/opcua_https_secureconnection.obj',NULL,NULL,NULL,NULL),(64,1,'A','/trunk/UAStackV1/Debug/opcua_httpstream.obj',NULL,NULL,NULL,NULL),(65,1,'A','/trunk/UAStackV1/Debug/opcua_list.obj',NULL,NULL,NULL,NULL),(66,1,'A','/trunk/UAStackV1/Debug/opcua_listener.obj',NULL,NULL,NULL,NULL),(67,1,'A','/trunk/UAStackV1/Debug/opcua_memory.obj',NULL,NULL,NULL,NULL),(68,1,'A','/trunk/UAStackV1/Debug/opcua_memorystream.obj',NULL,NULL,NULL,NULL),(69,1,'A','/trunk/UAStackV1/Debug/opcua_messagecontext.obj',NULL,NULL,NULL,NULL),(70,1,'A','/trunk/UAStackV1/Debug/opcua_p_binary.obj',NULL,NULL,NULL,NULL),(71,1,'A','/trunk/UAStackV1/Debug/opcua_p_cryptofactory.obj',NULL,NULL,NULL,NULL),(72,1,'A','/trunk/UAStackV1/Debug/opcua_p_datetime.obj',NULL,NULL,NULL,NULL),(73,1,'A','/trunk/UAStackV1/Debug/opcua_p_guid.obj',NULL,NULL,NULL,NULL),(74,1,'A','/trunk/UAStackV1/Debug/opcua_p_interface.obj',NULL,NULL,NULL,NULL),(75,1,'A','/trunk/UAStackV1/Debug/opcua_p_internal.obj',NULL,NULL,NULL,NULL),(76,1,'A','/trunk/UAStackV1/Debug/opcua_p_libxml2.obj',NULL,NULL,NULL,NULL),(77,1,'A','/trunk/UAStackV1/Debug/opcua_p_memory.obj',NULL,NULL,NULL,NULL),(78,1,'A','/trunk/UAStackV1/Debug/opcua_p_mutex.obj',NULL,NULL,NULL,NULL),(79,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl.obj',NULL,NULL,NULL,NULL),(80,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl_3des.obj',NULL,NULL,NULL,NULL),(81,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl_aes.obj',NULL,NULL,NULL,NULL),(82,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl_ecdsa.obj',NULL,NULL,NULL,NULL),(83,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl_hmac_sha.obj',NULL,NULL,NULL,NULL),(84,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl_pki.obj',NULL,NULL,NULL,NULL),(85,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl_random.obj',NULL,NULL,NULL,NULL),(86,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl_rsa.obj',NULL,NULL,NULL,NULL),(87,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl_sha.obj',NULL,NULL,NULL,NULL),(88,1,'A','/trunk/UAStackV1/Debug/opcua_p_openssl_x509.obj',NULL,NULL,NULL,NULL),(89,1,'A','/trunk/UAStackV1/Debug/opcua_p_pki_nosecurity.obj',NULL,NULL,NULL,NULL),(90,1,'A','/trunk/UAStackV1/Debug/opcua_p_pkifactory.obj',NULL,NULL,NULL,NULL),(91,1,'A','/trunk/UAStackV1/Debug/opcua_p_securitypolicy_none.obj',NULL,NULL,NULL,NULL),(92,1,'A','/trunk/UAStackV1/Debug/opcua_p_semaphore.obj',NULL,NULL,NULL,NULL),(93,1,'A','/trunk/UAStackV1/Debug/opcua_p_socket.obj',NULL,NULL,NULL,NULL),(94,1,'A','/trunk/UAStackV1/Debug/opcua_p_socket_interface.obj',NULL,NULL,NULL,NULL),(95,1,'A','/trunk/UAStackV1/Debug/opcua_p_socket_internal.obj',NULL,NULL,NULL,NULL),(96,1,'A','/trunk/UAStackV1/Debug/opcua_p_string.obj',NULL,NULL,NULL,NULL),(97,1,'A','/trunk/UAStackV1/Debug/opcua_p_thread.obj',NULL,NULL,NULL,NULL),(98,1,'A','/trunk/UAStackV1/Debug/opcua_p_timer.obj',NULL,NULL,NULL,NULL),(99,1,'A','/trunk/UAStackV1/Debug/opcua_p_trace.obj',NULL,NULL,NULL,NULL),(100,1,'A','/trunk/UAStackV1/Debug/opcua_p_utilities.obj',NULL,NULL,NULL,NULL),(101,1,'A','/trunk/UAStackV1/Debug/opcua_p_win32_pki.obj',NULL,NULL,NULL,NULL),(102,1,'A','/trunk/UAStackV1/Debug/opcua_p_wincrypt_random.obj',NULL,NULL,NULL,NULL),(103,1,'A','/trunk/UAStackV1/Debug/opcua_proxystub.obj',NULL,NULL,NULL,NULL),(104,1,'A','/trunk/UAStackV1/Debug/opcua_securechannel.obj',NULL,NULL,NULL,NULL),(105,1,'A','/trunk/UAStackV1/Debug/opcua_secureconnection.obj',NULL,NULL,NULL,NULL),(106,1,'A','/trunk/UAStackV1/Debug/opcua_securelistener.obj',NULL,NULL,NULL,NULL),(107,1,'A','/trunk/UAStackV1/Debug/opcua_securelistener_channelmanager.obj',NULL,NULL,NULL,NULL),(108,1,'A','/trunk/UAStackV1/Debug/opcua_securelistener_policymanager.obj',NULL,NULL,NULL,NULL),(109,1,'A','/trunk/UAStackV1/Debug/opcua_securestream.obj',NULL,NULL,NULL,NULL),(110,1,'A','/trunk/UAStackV1/Debug/opcua_serverapi.obj',NULL,NULL,NULL,NULL),(111,1,'A','/trunk/UAStackV1/Debug/opcua_servicetable.obj',NULL,NULL,NULL,NULL),(112,1,'A','/trunk/UAStackV1/Debug/opcua_stream.obj',NULL,NULL,NULL,NULL),(113,1,'A','/trunk/UAStackV1/Debug/opcua_string.obj',NULL,NULL,NULL,NULL),(114,1,'A','/trunk/UAStackV1/Debug/opcua_stringtable.obj',NULL,NULL,NULL,NULL),(115,1,'A','/trunk/UAStackV1/Debug/opcua_tcpconnection.obj',NULL,NULL,NULL,NULL),(116,1,'A','/trunk/UAStackV1/Debug/opcua_tcplistener.obj',NULL,NULL,NULL,NULL),(117,1,'A','/trunk/UAStackV1/Debug/opcua_tcplistener_connectionmanager.obj',NULL,NULL,NULL,NULL),(118,1,'A','/trunk/UAStackV1/Debug/opcua_tcpsecurechannel.obj',NULL,NULL,NULL,NULL),(119,1,'A','/trunk/UAStackV1/Debug/opcua_tcpstream.obj',NULL,NULL,NULL,NULL),(120,1,'A','/trunk/UAStackV1/Debug/opcua_thread.obj',NULL,NULL,NULL,NULL),(121,1,'A','/trunk/UAStackV1/Debug/opcua_threadpool.obj',NULL,NULL,NULL,NULL),(122,1,'A','/trunk/UAStackV1/Debug/opcua_timer.obj',NULL,NULL,NULL,NULL),(123,1,'A','/trunk/UAStackV1/Debug/opcua_trace.obj',NULL,NULL,NULL,NULL),(124,1,'A','/trunk/UAStackV1/Debug/opcua_types.obj',NULL,NULL,NULL,NULL),(125,1,'A','/trunk/UAStackV1/Debug/opcua_utilities.obj',NULL,NULL,NULL,NULL),(126,1,'A','/trunk/UAStackV1/Debug/opcua_xmldecoder.obj',NULL,NULL,NULL,NULL),(127,1,'A','/trunk/UAStackV1/Debug/opcua_xmlencoder.obj',NULL,NULL,NULL,NULL),(128,1,'A','/trunk/UAStackV1/Debug/opcua_xmlreader.obj',NULL,NULL,NULL,NULL),(129,1,'A','/trunk/UAStackV1/Debug/opcua_xmlwriter.obj',NULL,NULL,NULL,NULL),(130,1,'A','/trunk/UAStackV1/Debug/uastackd.dll.embed.manifest',NULL,NULL,NULL,NULL),(131,1,'A','/trunk/UAStackV1/Debug/uastackd.dll.embed.manifest.res',NULL,NULL,NULL,NULL),(132,1,'A','/trunk/UAStackV1/Debug/uastackd.dll.intermediate.manifest',NULL,NULL,NULL,NULL),(133,1,'A','/trunk/UAStackV1/Debug/vc90.idb',NULL,NULL,NULL,NULL),(134,1,'A','/trunk/UAStackV1/Debug/vc90.pdb',NULL,NULL,NULL,NULL),(135,1,'A','/trunk/UAStackV1/ReadMe.txt',NULL,NULL,NULL,NULL),(136,1,'A','/trunk/UAStackV1/UAStack.pbpxml',NULL,NULL,NULL,NULL),(137,1,'A','/trunk/UAStackV1/UAStackV1.aps',NULL,NULL,NULL,NULL),(138,1,'A','/trunk/UAStackV1/UAStackV1.rc',NULL,NULL,NULL,NULL),(139,1,'A','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(140,1,'A','/trunk/UAStackV1/UAStackV1.vcproj.4CE-INDUSTRY-NB.Michel.user',NULL,NULL,NULL,NULL),(141,1,'A','/trunk/UAStackV1/dirlist',NULL,NULL,NULL,NULL),(142,1,'A','/trunk/UAStackV1/include',NULL,NULL,NULL,NULL),(143,1,'A','/trunk/UAStackV1/include/linux',NULL,NULL,NULL,NULL),(144,1,'A','/trunk/UAStackV1/include/shared',NULL,NULL,NULL,NULL),(145,1,'A','/trunk/UAStackV1/include/shared/opcua.h',NULL,NULL,NULL,NULL),(146,1,'A','/trunk/UAStackV1/include/shared/opcua_asynccallstate.h',NULL,NULL,NULL,NULL),(147,1,'A','/trunk/UAStackV1/include/shared/opcua_attributes.h',NULL,NULL,NULL,NULL),(148,1,'A','/trunk/UAStackV1/include/shared/opcua_base64.h',NULL,NULL,NULL,NULL),(149,1,'A','/trunk/UAStackV1/include/shared/opcua_binaryencoder.h',NULL,NULL,NULL,NULL),(150,1,'A','/trunk/UAStackV1/include/shared/opcua_binaryencoderinternal.h',NULL,NULL,NULL,NULL),(151,1,'A','/trunk/UAStackV1/include/shared/opcua_browsenames.h',NULL,NULL,NULL,NULL),(152,1,'A','/trunk/UAStackV1/include/shared/opcua_buffer.h',NULL,NULL,NULL,NULL),(153,1,'A','/trunk/UAStackV1/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(154,1,'A','/trunk/UAStackV1/include/shared/opcua_channel.h',NULL,NULL,NULL,NULL),(155,1,'A','/trunk/UAStackV1/include/shared/opcua_channel_internal.h',NULL,NULL,NULL,NULL),(156,1,'A','/trunk/UAStackV1/include/shared/opcua_clientapi.h',NULL,NULL,NULL,NULL),(157,1,'A','/trunk/UAStackV1/include/shared/opcua_clientproxy.h',NULL,NULL,NULL,NULL),(158,1,'A','/trunk/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(159,1,'A','/trunk/UAStackV1/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(160,1,'A','/trunk/UAStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(161,1,'A','/trunk/UAStackV1/include/shared/opcua_credentials.h',NULL,NULL,NULL,NULL),(162,1,'A','/trunk/UAStackV1/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(163,1,'A','/trunk/UAStackV1/include/shared/opcua_cryptofactory.h',NULL,NULL,NULL,NULL),(164,1,'A','/trunk/UAStackV1/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(165,1,'A','/trunk/UAStackV1/include/shared/opcua_decoder.h',NULL,NULL,NULL,NULL),(166,1,'A','/trunk/UAStackV1/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(167,1,'A','/trunk/UAStackV1/include/shared/opcua_encoder.h',NULL,NULL,NULL,NULL),(168,1,'A','/trunk/UAStackV1/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(169,1,'A','/trunk/UAStackV1/include/shared/opcua_endpoint_ex.h',NULL,NULL,NULL,NULL),(170,1,'A','/trunk/UAStackV1/include/shared/opcua_endpoint_internal.h',NULL,NULL,NULL,NULL),(171,1,'A','/trunk/UAStackV1/include/shared/opcua_enumeratedtype.h',NULL,NULL,NULL,NULL),(172,1,'A','/trunk/UAStackV1/include/shared/opcua_errorhandling.h',NULL,NULL,NULL,NULL),(173,1,'A','/trunk/UAStackV1/include/shared/opcua_exclusions.h',NULL,NULL,NULL,NULL),(174,1,'A','/trunk/UAStackV1/include/shared/opcua_extensionobject.h',NULL,NULL,NULL,NULL),(175,1,'A','/trunk/UAStackV1/include/shared/opcua_guid.h',NULL,NULL,NULL,NULL),(176,1,'A','/trunk/UAStackV1/include/shared/opcua_http_internal.h',NULL,NULL,NULL,NULL),(177,1,'A','/trunk/UAStackV1/include/shared/opcua_httpconnection.h',NULL,NULL,NULL,NULL),(178,1,'A','/trunk/UAStackV1/include/shared/opcua_httpconnection_securityproxy.h',NULL,NULL,NULL,NULL),(179,1,'A','/trunk/UAStackV1/include/shared/opcua_httplistener.h',NULL,NULL,NULL,NULL),(180,1,'A','/trunk/UAStackV1/include/shared/opcua_httplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(181,1,'A','/trunk/UAStackV1/include/shared/opcua_httplistener_securitystub.h',NULL,NULL,NULL,NULL),(182,1,'A','/trunk/UAStackV1/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(183,1,'A','/trunk/UAStackV1/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(184,1,'A','/trunk/UAStackV1/include/shared/opcua_httpstream.h',NULL,NULL,NULL,NULL),(185,1,'A','/trunk/UAStackV1/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(186,1,'A','/trunk/UAStackV1/include/shared/opcua_list.h',NULL,NULL,NULL,NULL),(187,1,'A','/trunk/UAStackV1/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(188,1,'A','/trunk/UAStackV1/include/shared/opcua_memory.h',NULL,NULL,NULL,NULL),(189,1,'A','/trunk/UAStackV1/include/shared/opcua_memorystream.h',NULL,NULL,NULL,NULL),(190,1,'A','/trunk/UAStackV1/include/shared/opcua_messagecontext.h',NULL,NULL,NULL,NULL),(191,1,'A','/trunk/UAStackV1/include/shared/opcua_mutex.h',NULL,NULL,NULL,NULL),(192,1,'A','/trunk/UAStackV1/include/shared/opcua_p_binary.h',NULL,NULL,NULL,NULL),(193,1,'A','/trunk/UAStackV1/include/shared/opcua_p_compilerinfo.h',NULL,NULL,NULL,NULL),(194,1,'A','/trunk/UAStackV1/include/shared/opcua_p_crypto.h',NULL,NULL,NULL,NULL),(195,1,'A','/trunk/UAStackV1/include/shared/opcua_p_cryptofactory.h',NULL,NULL,NULL,NULL),(196,1,'A','/trunk/UAStackV1/include/shared/opcua_p_datetime.h',NULL,NULL,NULL,NULL),(197,1,'A','/trunk/UAStackV1/include/shared/opcua_p_guid.h',NULL,NULL,NULL,NULL),(198,1,'A','/trunk/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(199,1,'A','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(200,1,'A','/trunk/UAStackV1/include/shared/opcua_p_libxml2.h',NULL,NULL,NULL,NULL),(201,1,'A','/trunk/UAStackV1/include/shared/opcua_p_memory.h',NULL,NULL,NULL,NULL),(202,1,'A','/trunk/UAStackV1/include/shared/opcua_p_mutex.h',NULL,NULL,NULL,NULL),(203,1,'A','/trunk/UAStackV1/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(204,1,'A','/trunk/UAStackV1/include/shared/opcua_p_openssl_pki.h',NULL,NULL,NULL,NULL),(205,1,'A','/trunk/UAStackV1/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(206,1,'A','/trunk/UAStackV1/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(207,1,'A','/trunk/UAStackV1/include/shared/opcua_p_pki_nosecurity.h',NULL,NULL,NULL,NULL),(208,1,'A','/trunk/UAStackV1/include/shared/opcua_p_pkifactory.h',NULL,NULL,NULL,NULL),(209,1,'A','/trunk/UAStackV1/include/shared/opcua_p_securitypolicy_none.h',NULL,NULL,NULL,NULL),(210,1,'A','/trunk/UAStackV1/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(211,1,'A','/trunk/UAStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(212,1,'A','/trunk/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(213,1,'A','/trunk/UAStackV1/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(214,1,'A','/trunk/UAStackV1/include/shared/opcua_p_string.h',NULL,NULL,NULL,NULL),(215,1,'A','/trunk/UAStackV1/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(216,1,'A','/trunk/UAStackV1/include/shared/opcua_p_timer.h',NULL,NULL,NULL,NULL),(217,1,'A','/trunk/UAStackV1/include/shared/opcua_p_trace.h',NULL,NULL,NULL,NULL),(218,1,'A','/trunk/UAStackV1/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(219,1,'A','/trunk/UAStackV1/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(220,1,'A','/trunk/UAStackV1/include/shared/opcua_p_win32_pki.h',NULL,NULL,NULL,NULL),(221,1,'A','/trunk/UAStackV1/include/shared/opcua_p_wincrypt.h',NULL,NULL,NULL,NULL),(222,1,'A','/trunk/UAStackV1/include/shared/opcua_p_xml.h',NULL,NULL,NULL,NULL),(223,1,'A','/trunk/UAStackV1/include/shared/opcua_pki.h',NULL,NULL,NULL,NULL),(224,1,'A','/trunk/UAStackV1/include/shared/opcua_pkifactory.h',NULL,NULL,NULL,NULL),(225,1,'A','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(226,1,'A','/trunk/UAStackV1/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(227,1,'A','/trunk/UAStackV1/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(228,1,'A','/trunk/UAStackV1/include/shared/opcua_securechannel_types.h',NULL,NULL,NULL,NULL),(229,1,'A','/trunk/UAStackV1/include/shared/opcua_secureconnection.h',NULL,NULL,NULL,NULL),(230,1,'A','/trunk/UAStackV1/include/shared/opcua_securelistener.h',NULL,NULL,NULL,NULL),(231,1,'A','/trunk/UAStackV1/include/shared/opcua_securelistener_channelmanager.h',NULL,NULL,NULL,NULL),(232,1,'A','/trunk/UAStackV1/include/shared/opcua_securelistener_policymanager.h',NULL,NULL,NULL,NULL),(233,1,'A','/trunk/UAStackV1/include/shared/opcua_securestream.h',NULL,NULL,NULL,NULL),(234,1,'A','/trunk/UAStackV1/include/shared/opcua_semaphore.h',NULL,NULL,NULL,NULL),(235,1,'A','/trunk/UAStackV1/include/shared/opcua_serverapi.h',NULL,NULL,NULL,NULL),(236,1,'A','/trunk/UAStackV1/include/shared/opcua_serverstub.h',NULL,NULL,NULL,NULL),(237,1,'A','/trunk/UAStackV1/include/shared/opcua_servicetable.h',NULL,NULL,NULL,NULL),(238,1,'A','/trunk/UAStackV1/include/shared/opcua_soapsecurechannel.h',NULL,NULL,NULL,NULL),(239,1,'A','/trunk/UAStackV1/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(240,1,'A','/trunk/UAStackV1/include/shared/opcua_stackstatuscodes.h',NULL,NULL,NULL,NULL),(241,1,'A','/trunk/UAStackV1/include/shared/opcua_statuscodes.h',NULL,NULL,NULL,NULL),(242,1,'A','/trunk/UAStackV1/include/shared/opcua_stream.h',NULL,NULL,NULL,NULL),(243,1,'A','/trunk/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(244,1,'A','/trunk/UAStackV1/include/shared/opcua_stringtable.h',NULL,NULL,NULL,NULL),(245,1,'A','/trunk/UAStackV1/include/shared/opcua_tcpconnection.h',NULL,NULL,NULL,NULL),(246,1,'A','/trunk/UAStackV1/include/shared/opcua_tcplistener.h',NULL,NULL,NULL,NULL),(247,1,'A','/trunk/UAStackV1/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(248,1,'A','/trunk/UAStackV1/include/shared/opcua_tcpsecurechannel.h',NULL,NULL,NULL,NULL),(249,1,'A','/trunk/UAStackV1/include/shared/opcua_tcpstream.h',NULL,NULL,NULL,NULL),(250,1,'A','/trunk/UAStackV1/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(251,1,'A','/trunk/UAStackV1/include/shared/opcua_threadpool.h',NULL,NULL,NULL,NULL),(252,1,'A','/trunk/UAStackV1/include/shared/opcua_timer.h',NULL,NULL,NULL,NULL),(253,1,'A','/trunk/UAStackV1/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(254,1,'A','/trunk/UAStackV1/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(255,1,'A','/trunk/UAStackV1/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(256,1,'A','/trunk/UAStackV1/include/shared/opcua_xmldefs.h',NULL,NULL,NULL,NULL),(257,1,'A','/trunk/UAStackV1/include/shared/opcua_xmlencoder.h',NULL,NULL,NULL,NULL),(258,1,'A','/trunk/UAStackV1/include/shared/opcua_xmlencoderinternal.h',NULL,NULL,NULL,NULL),(259,1,'A','/trunk/UAStackV1/include/shared/opcua_xmlreader.h',NULL,NULL,NULL,NULL),(260,1,'A','/trunk/UAStackV1/include/shared/opcua_xmlwriter.h',NULL,NULL,NULL,NULL),(261,1,'A','/trunk/UAStackV1/include/shared/resource.h',NULL,NULL,NULL,NULL),(262,1,'A','/trunk/UAStackV1/include/win32',NULL,NULL,NULL,NULL),(263,1,'A','/trunk/UAStackV1/include/win32/iconv.h',NULL,NULL,NULL,NULL),(264,1,'A','/trunk/UAStackV1/include/win32/openssl',NULL,NULL,NULL,NULL),(265,1,'A','/trunk/UAStackV1/include/win32/openssl/aes.h',NULL,NULL,NULL,NULL),(266,1,'A','/trunk/UAStackV1/include/win32/openssl/asn1.h',NULL,NULL,NULL,NULL),(267,1,'A','/trunk/UAStackV1/include/win32/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(268,1,'A','/trunk/UAStackV1/include/win32/openssl/asn1t.h',NULL,NULL,NULL,NULL),(269,1,'A','/trunk/UAStackV1/include/win32/openssl/bio.h',NULL,NULL,NULL,NULL),(270,1,'A','/trunk/UAStackV1/include/win32/openssl/blowfish.h',NULL,NULL,NULL,NULL),(271,1,'A','/trunk/UAStackV1/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(272,1,'A','/trunk/UAStackV1/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(273,1,'A','/trunk/UAStackV1/include/win32/openssl/cast.h',NULL,NULL,NULL,NULL),(274,1,'A','/trunk/UAStackV1/include/win32/openssl/comp.h',NULL,NULL,NULL,NULL),(275,1,'A','/trunk/UAStackV1/include/win32/openssl/conf.h',NULL,NULL,NULL,NULL),(276,1,'A','/trunk/UAStackV1/include/win32/openssl/conf_api.h',NULL,NULL,NULL,NULL),(277,1,'A','/trunk/UAStackV1/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(278,1,'A','/trunk/UAStackV1/include/win32/openssl/des.h',NULL,NULL,NULL,NULL),(279,1,'A','/trunk/UAStackV1/include/win32/openssl/des_old.h',NULL,NULL,NULL,NULL),(280,1,'A','/trunk/UAStackV1/include/win32/openssl/dh.h',NULL,NULL,NULL,NULL),(281,1,'A','/trunk/UAStackV1/include/win32/openssl/dsa.h',NULL,NULL,NULL,NULL),(282,1,'A','/trunk/UAStackV1/include/win32/openssl/dso.h',NULL,NULL,NULL,NULL),(283,1,'A','/trunk/UAStackV1/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(284,1,'A','/trunk/UAStackV1/include/win32/openssl/e_os2.h',NULL,NULL,NULL,NULL),(285,1,'A','/trunk/UAStackV1/include/win32/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(286,1,'A','/trunk/UAStackV1/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(287,1,'A','/trunk/UAStackV1/include/win32/openssl/ecdh.h',NULL,NULL,NULL,NULL),(288,1,'A','/trunk/UAStackV1/include/win32/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(289,1,'A','/trunk/UAStackV1/include/win32/openssl/engine.h',NULL,NULL,NULL,NULL),(290,1,'A','/trunk/UAStackV1/include/win32/openssl/err.h',NULL,NULL,NULL,NULL),(291,1,'A','/trunk/UAStackV1/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(292,1,'A','/trunk/UAStackV1/include/win32/openssl/hmac.h',NULL,NULL,NULL,NULL),(293,1,'A','/trunk/UAStackV1/include/win32/openssl/idea.h',NULL,NULL,NULL,NULL),(294,1,'A','/trunk/UAStackV1/include/win32/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(295,1,'A','/trunk/UAStackV1/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(296,1,'A','/trunk/UAStackV1/include/win32/openssl/lhash.h',NULL,NULL,NULL,NULL),(297,1,'A','/trunk/UAStackV1/include/win32/openssl/md2.h',NULL,NULL,NULL,NULL),(298,1,'A','/trunk/UAStackV1/include/win32/openssl/md4.h',NULL,NULL,NULL,NULL),(299,1,'A','/trunk/UAStackV1/include/win32/openssl/md5.h',NULL,NULL,NULL,NULL),(300,1,'A','/trunk/UAStackV1/include/win32/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(301,1,'A','/trunk/UAStackV1/include/win32/openssl/objects.h',NULL,NULL,NULL,NULL),(302,1,'A','/trunk/UAStackV1/include/win32/openssl/ocsp.h',NULL,NULL,NULL,NULL),(303,1,'A','/trunk/UAStackV1/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(304,1,'A','/trunk/UAStackV1/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(305,1,'A','/trunk/UAStackV1/include/win32/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(306,1,'A','/trunk/UAStackV1/include/win32/openssl/pem.h',NULL,NULL,NULL,NULL),(307,1,'A','/trunk/UAStackV1/include/win32/openssl/pem2.h',NULL,NULL,NULL,NULL),(308,1,'A','/trunk/UAStackV1/include/win32/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(309,1,'A','/trunk/UAStackV1/include/win32/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(310,1,'A','/trunk/UAStackV1/include/win32/openssl/pq_compat.h',NULL,NULL,NULL,NULL),(311,1,'A','/trunk/UAStackV1/include/win32/openssl/pqueue.h',NULL,NULL,NULL,NULL),(312,1,'A','/trunk/UAStackV1/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(313,1,'A','/trunk/UAStackV1/include/win32/openssl/rc2.h',NULL,NULL,NULL,NULL),(314,1,'A','/trunk/UAStackV1/include/win32/openssl/rc4.h',NULL,NULL,NULL,NULL),(315,1,'A','/trunk/UAStackV1/include/win32/openssl/ripemd.h',NULL,NULL,NULL,NULL),(316,1,'A','/trunk/UAStackV1/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(317,1,'A','/trunk/UAStackV1/include/win32/openssl/safestack.h',NULL,NULL,NULL,NULL),(318,1,'A','/trunk/UAStackV1/include/win32/openssl/sha.h',NULL,NULL,NULL,NULL),(319,1,'A','/trunk/UAStackV1/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(320,1,'A','/trunk/UAStackV1/include/win32/openssl/ssl2.h',NULL,NULL,NULL,NULL),(321,1,'A','/trunk/UAStackV1/include/win32/openssl/ssl23.h',NULL,NULL,NULL,NULL),(322,1,'A','/trunk/UAStackV1/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(323,1,'A','/trunk/UAStackV1/include/win32/openssl/stack.h',NULL,NULL,NULL,NULL),(324,1,'A','/trunk/UAStackV1/include/win32/openssl/store.h',NULL,NULL,NULL,NULL),(325,1,'A','/trunk/UAStackV1/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(326,1,'A','/trunk/UAStackV1/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(327,1,'A','/trunk/UAStackV1/include/win32/openssl/tmdiff.h',NULL,NULL,NULL,NULL),(328,1,'A','/trunk/UAStackV1/include/win32/openssl/txt_db.h',NULL,NULL,NULL,NULL),(329,1,'A','/trunk/UAStackV1/include/win32/openssl/ui.h',NULL,NULL,NULL,NULL),(330,1,'A','/trunk/UAStackV1/include/win32/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(331,1,'A','/trunk/UAStackV1/include/win32/openssl/x509.h',NULL,NULL,NULL,NULL),(332,1,'A','/trunk/UAStackV1/include/win32/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(333,1,'A','/trunk/UAStackV1/include/win32/openssl/x509v3.h',NULL,NULL,NULL,NULL),(334,1,'A','/trunk/UAStackV1/include/wince',NULL,NULL,NULL,NULL),(335,1,'A','/trunk/UAStackV1/include/wince/openssl',NULL,NULL,NULL,NULL),(336,1,'A','/trunk/UAStackV1/include/wince/openssl/aes.h',NULL,NULL,NULL,NULL),(337,1,'A','/trunk/UAStackV1/include/wince/openssl/asn1.h',NULL,NULL,NULL,NULL),(338,1,'A','/trunk/UAStackV1/include/wince/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(339,1,'A','/trunk/UAStackV1/include/wince/openssl/asn1t.h',NULL,NULL,NULL,NULL),(340,1,'A','/trunk/UAStackV1/include/wince/openssl/bio.h',NULL,NULL,NULL,NULL),(341,1,'A','/trunk/UAStackV1/include/wince/openssl/blowfish.h',NULL,NULL,NULL,NULL),(342,1,'A','/trunk/UAStackV1/include/wince/openssl/bn.h',NULL,NULL,NULL,NULL),(343,1,'A','/trunk/UAStackV1/include/wince/openssl/buffer.h',NULL,NULL,NULL,NULL),(344,1,'A','/trunk/UAStackV1/include/wince/openssl/camellia.h',NULL,NULL,NULL,NULL),(345,1,'A','/trunk/UAStackV1/include/wince/openssl/cast.h',NULL,NULL,NULL,NULL),(346,1,'A','/trunk/UAStackV1/include/wince/openssl/cms.h',NULL,NULL,NULL,NULL),(347,1,'A','/trunk/UAStackV1/include/wince/openssl/comp.h',NULL,NULL,NULL,NULL),(348,1,'A','/trunk/UAStackV1/include/wince/openssl/conf.h',NULL,NULL,NULL,NULL),(349,1,'A','/trunk/UAStackV1/include/wince/openssl/conf_api.h',NULL,NULL,NULL,NULL),(350,1,'A','/trunk/UAStackV1/include/wince/openssl/crypto.h',NULL,NULL,NULL,NULL),(351,1,'A','/trunk/UAStackV1/include/wince/openssl/des.h',NULL,NULL,NULL,NULL),(352,1,'A','/trunk/UAStackV1/include/wince/openssl/des_old.h',NULL,NULL,NULL,NULL),(353,1,'A','/trunk/UAStackV1/include/wince/openssl/dh.h',NULL,NULL,NULL,NULL),(354,1,'A','/trunk/UAStackV1/include/wince/openssl/dsa.h',NULL,NULL,NULL,NULL),(355,1,'A','/trunk/UAStackV1/include/wince/openssl/dso.h',NULL,NULL,NULL,NULL),(356,1,'A','/trunk/UAStackV1/include/wince/openssl/dtls1.h',NULL,NULL,NULL,NULL),(357,1,'A','/trunk/UAStackV1/include/wince/openssl/e_os2.h',NULL,NULL,NULL,NULL),(358,1,'A','/trunk/UAStackV1/include/wince/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(359,1,'A','/trunk/UAStackV1/include/wince/openssl/ec.h',NULL,NULL,NULL,NULL),(360,1,'A','/trunk/UAStackV1/include/wince/openssl/ecdh.h',NULL,NULL,NULL,NULL),(361,1,'A','/trunk/UAStackV1/include/wince/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(362,1,'A','/trunk/UAStackV1/include/wince/openssl/engine.h',NULL,NULL,NULL,NULL),(363,1,'A','/trunk/UAStackV1/include/wince/openssl/err.h',NULL,NULL,NULL,NULL),(364,1,'A','/trunk/UAStackV1/include/wince/openssl/evp.h',NULL,NULL,NULL,NULL),(365,1,'A','/trunk/UAStackV1/include/wince/openssl/hmac.h',NULL,NULL,NULL,NULL),(366,1,'A','/trunk/UAStackV1/include/wince/openssl/idea.h',NULL,NULL,NULL,NULL),(367,1,'A','/trunk/UAStackV1/include/wince/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(368,1,'A','/trunk/UAStackV1/include/wince/openssl/kssl.h',NULL,NULL,NULL,NULL),(369,1,'A','/trunk/UAStackV1/include/wince/openssl/lhash.h',NULL,NULL,NULL,NULL),(370,1,'A','/trunk/UAStackV1/include/wince/openssl/md4.h',NULL,NULL,NULL,NULL),(371,1,'A','/trunk/UAStackV1/include/wince/openssl/md5.h',NULL,NULL,NULL,NULL),(372,1,'A','/trunk/UAStackV1/include/wince/openssl/mdc2.h',NULL,NULL,NULL,NULL),(373,1,'A','/trunk/UAStackV1/include/wince/openssl/modes.h',NULL,NULL,NULL,NULL),(374,1,'A','/trunk/UAStackV1/include/wince/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(375,1,'A','/trunk/UAStackV1/include/wince/openssl/objects.h',NULL,NULL,NULL,NULL),(376,1,'A','/trunk/UAStackV1/include/wince/openssl/ocsp.h',NULL,NULL,NULL,NULL),(377,1,'A','/trunk/UAStackV1/include/wince/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(378,1,'A','/trunk/UAStackV1/include/wince/openssl/opensslv.h',NULL,NULL,NULL,NULL),(379,1,'A','/trunk/UAStackV1/include/wince/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(380,1,'A','/trunk/UAStackV1/include/wince/openssl/pem.h',NULL,NULL,NULL,NULL),(381,1,'A','/trunk/UAStackV1/include/wince/openssl/pem2.h',NULL,NULL,NULL,NULL),(382,1,'A','/trunk/UAStackV1/include/wince/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(383,1,'A','/trunk/UAStackV1/include/wince/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(384,1,'A','/trunk/UAStackV1/include/wince/openssl/pqueue.h',NULL,NULL,NULL,NULL),(385,1,'A','/trunk/UAStackV1/include/wince/openssl/rand.h',NULL,NULL,NULL,NULL),(386,1,'A','/trunk/UAStackV1/include/wince/openssl/rc2.h',NULL,NULL,NULL,NULL),(387,1,'A','/trunk/UAStackV1/include/wince/openssl/rc4.h',NULL,NULL,NULL,NULL),(388,1,'A','/trunk/UAStackV1/include/wince/openssl/ripemd.h',NULL,NULL,NULL,NULL),(389,1,'A','/trunk/UAStackV1/include/wince/openssl/rsa.h',NULL,NULL,NULL,NULL),(390,1,'A','/trunk/UAStackV1/include/wince/openssl/safestack.h',NULL,NULL,NULL,NULL),(391,1,'A','/trunk/UAStackV1/include/wince/openssl/seed.h',NULL,NULL,NULL,NULL),(392,1,'A','/trunk/UAStackV1/include/wince/openssl/sha.h',NULL,NULL,NULL,NULL),(393,1,'A','/trunk/UAStackV1/include/wince/openssl/ssl.h',NULL,NULL,NULL,NULL),(394,1,'A','/trunk/UAStackV1/include/wince/openssl/ssl2.h',NULL,NULL,NULL,NULL),(395,1,'A','/trunk/UAStackV1/include/wince/openssl/ssl23.h',NULL,NULL,NULL,NULL),(396,1,'A','/trunk/UAStackV1/include/wince/openssl/ssl3.h',NULL,NULL,NULL,NULL),(397,1,'A','/trunk/UAStackV1/include/wince/openssl/stack.h',NULL,NULL,NULL,NULL),(398,1,'A','/trunk/UAStackV1/include/wince/openssl/symhacks.h',NULL,NULL,NULL,NULL),(399,1,'A','/trunk/UAStackV1/include/wince/openssl/tls1.h',NULL,NULL,NULL,NULL),(400,1,'A','/trunk/UAStackV1/include/wince/openssl/ts.h',NULL,NULL,NULL,NULL),(401,1,'A','/trunk/UAStackV1/include/wince/openssl/txt_db.h',NULL,NULL,NULL,NULL),(402,1,'A','/trunk/UAStackV1/include/wince/openssl/ui.h',NULL,NULL,NULL,NULL),(403,1,'A','/trunk/UAStackV1/include/wince/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(404,1,'A','/trunk/UAStackV1/include/wince/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(405,1,'A','/trunk/UAStackV1/include/wince/openssl/x509.h',NULL,NULL,NULL,NULL),(406,1,'A','/trunk/UAStackV1/include/wince/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(407,1,'A','/trunk/UAStackV1/include/wince/openssl/x509v3.h',NULL,NULL,NULL,NULL),(408,1,'A','/trunk/UAStackV1/source',NULL,NULL,NULL,NULL),(409,1,'A','/trunk/UAStackV1/source/Wince6',NULL,NULL,NULL,NULL),(410,1,'A','/trunk/UAStackV1/source/Wince6/ProjSysgen.bat',NULL,NULL,NULL,NULL),(411,1,'A','/trunk/UAStackV1/source/Wince6/ReadMe.txt',NULL,NULL,NULL,NULL),(412,1,'A','/trunk/UAStackV1/source/Wince6/UAStack.bib',NULL,NULL,NULL,NULL),(413,1,'A','/trunk/UAStackV1/source/Wince6/UAStack.dat',NULL,NULL,NULL,NULL),(414,1,'A','/trunk/UAStackV1/source/Wince6/UAStack.db',NULL,NULL,NULL,NULL),(415,1,'A','/trunk/UAStackV1/source/Wince6/UAStack.def',NULL,NULL,NULL,NULL),(416,1,'A','/trunk/UAStackV1/source/Wince6/UAStack.pbpxml',NULL,NULL,NULL,NULL),(417,1,'A','/trunk/UAStackV1/source/Wince6/UAStack.reg',NULL,NULL,NULL,NULL),(418,1,'A','/trunk/UAStackV1/source/Wince6/makefile',NULL,NULL,NULL,NULL),(419,1,'A','/trunk/UAStackV1/source/Wince6/postlink.bat',NULL,NULL,NULL,NULL),(420,1,'A','/trunk/UAStackV1/source/Wince6/prelink.bat',NULL,NULL,NULL,NULL),(421,1,'A','/trunk/UAStackV1/source/Wince6/sources',NULL,NULL,NULL,NULL),(422,1,'A','/trunk/UAStackV1/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(423,1,'A','/trunk/UAStackV1/source/opcua_base64.c',NULL,NULL,NULL,NULL),(424,1,'A','/trunk/UAStackV1/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(425,1,'A','/trunk/UAStackV1/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(426,1,'A','/trunk/UAStackV1/source/opcua_buffer.c',NULL,NULL,NULL,NULL),(427,1,'A','/trunk/UAStackV1/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(428,1,'A','/trunk/UAStackV1/source/opcua_channel.c',NULL,NULL,NULL,NULL),(429,1,'A','/trunk/UAStackV1/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(430,1,'A','/trunk/UAStackV1/source/opcua_connection.c',NULL,NULL,NULL,NULL),(431,1,'A','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(432,1,'A','/trunk/UAStackV1/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(433,1,'A','/trunk/UAStackV1/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(434,1,'A','/trunk/UAStackV1/source/opcua_decoder.c',NULL,NULL,NULL,NULL),(435,1,'A','/trunk/UAStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(436,1,'A','/trunk/UAStackV1/source/opcua_encoder.c',NULL,NULL,NULL,NULL),(437,1,'A','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(438,1,'A','/trunk/UAStackV1/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(439,1,'A','/trunk/UAStackV1/source/opcua_enumeratedtype.c',NULL,NULL,NULL,NULL),(440,1,'A','/trunk/UAStackV1/source/opcua_extensionobject.c',NULL,NULL,NULL,NULL),(441,1,'A','/trunk/UAStackV1/source/opcua_guid.c',NULL,NULL,NULL,NULL),(442,1,'A','/trunk/UAStackV1/source/opcua_http_internal.c',NULL,NULL,NULL,NULL),(443,1,'A','/trunk/UAStackV1/source/opcua_httpconnection.c',NULL,NULL,NULL,NULL),(444,1,'A','/trunk/UAStackV1/source/opcua_httpconnection_securityproxy.c',NULL,NULL,NULL,NULL),(445,1,'A','/trunk/UAStackV1/source/opcua_httplistener.c',NULL,NULL,NULL,NULL),(446,1,'A','/trunk/UAStackV1/source/opcua_httplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(447,1,'A','/trunk/UAStackV1/source/opcua_httplistener_securitystub.c',NULL,NULL,NULL,NULL),(448,1,'A','/trunk/UAStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(449,1,'A','/trunk/UAStackV1/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(450,1,'A','/trunk/UAStackV1/source/opcua_httpstream.c',NULL,NULL,NULL,NULL),(451,1,'A','/trunk/UAStackV1/source/opcua_list.c',NULL,NULL,NULL,NULL),(452,1,'A','/trunk/UAStackV1/source/opcua_listener.c',NULL,NULL,NULL,NULL),(453,1,'A','/trunk/UAStackV1/source/opcua_memory.c',NULL,NULL,NULL,NULL),(454,1,'A','/trunk/UAStackV1/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(455,1,'A','/trunk/UAStackV1/source/opcua_messagecontext.c',NULL,NULL,NULL,NULL),(456,1,'A','/trunk/UAStackV1/source/opcua_p_binary.c',NULL,NULL,NULL,NULL),(457,1,'A','/trunk/UAStackV1/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(458,1,'A','/trunk/UAStackV1/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(459,1,'A','/trunk/UAStackV1/source/opcua_p_guid.c',NULL,NULL,NULL,NULL),(460,1,'A','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(461,1,'A','/trunk/UAStackV1/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(462,1,'A','/trunk/UAStackV1/source/opcua_p_libxml2.c',NULL,NULL,NULL,NULL),(463,1,'A','/trunk/UAStackV1/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(464,1,'A','/trunk/UAStackV1/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(465,1,'A','/trunk/UAStackV1/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(466,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_3des.c',NULL,NULL,NULL,NULL),(467,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_aes.c',NULL,NULL,NULL,NULL),(468,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(469,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_hmac_sha.c',NULL,NULL,NULL,NULL),(470,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_nosecurity.c',NULL,NULL,NULL,NULL),(471,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(472,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(473,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(474,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_sha.c',NULL,NULL,NULL,NULL),(475,1,'A','/trunk/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(476,1,'A','/trunk/UAStackV1/source/opcua_p_os.c',NULL,NULL,NULL,NULL),(477,1,'A','/trunk/UAStackV1/source/opcua_p_pki_nosecurity.c',NULL,NULL,NULL,NULL),(478,1,'A','/trunk/UAStackV1/source/opcua_p_pkifactory.c',NULL,NULL,NULL,NULL),(479,1,'A','/trunk/UAStackV1/source/opcua_p_securitypolicy_none.c',NULL,NULL,NULL,NULL),(480,1,'A','/trunk/UAStackV1/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(481,1,'A','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(482,1,'A','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(483,1,'A','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(484,1,'A','/trunk/UAStackV1/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(485,1,'A','/trunk/UAStackV1/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(486,1,'A','/trunk/UAStackV1/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(487,1,'A','/trunk/UAStackV1/source/opcua_p_trace.c',NULL,NULL,NULL,NULL),(488,1,'A','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(489,1,'A','/trunk/UAStackV1/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(490,1,'A','/trunk/UAStackV1/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(491,1,'A','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(492,1,'A','/trunk/UAStackV1/source/opcua_securechannel.c',NULL,NULL,NULL,NULL),(493,1,'A','/trunk/UAStackV1/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(494,1,'A','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(495,1,'A','/trunk/UAStackV1/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(496,1,'A','/trunk/UAStackV1/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(497,1,'A','/trunk/UAStackV1/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(498,1,'A','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(499,1,'A','/trunk/UAStackV1/source/opcua_servicetable.c',NULL,NULL,NULL,NULL),(500,1,'A','/trunk/UAStackV1/source/opcua_stream.c',NULL,NULL,NULL,NULL),(501,1,'A','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(502,1,'A','/trunk/UAStackV1/source/opcua_stringtable.c',NULL,NULL,NULL,NULL),(503,1,'A','/trunk/UAStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(504,1,'A','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(505,1,'A','/trunk/UAStackV1/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(506,1,'A','/trunk/UAStackV1/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(507,1,'A','/trunk/UAStackV1/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(508,1,'A','/trunk/UAStackV1/source/opcua_thread.c',NULL,NULL,NULL,NULL),(509,1,'A','/trunk/UAStackV1/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(510,1,'A','/trunk/UAStackV1/source/opcua_timer.c',NULL,NULL,NULL,NULL),(511,1,'A','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(512,1,'A','/trunk/UAStackV1/source/opcua_types.c',NULL,NULL,NULL,NULL),(513,1,'A','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(514,1,'A','/trunk/UAStackV1/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(515,1,'A','/trunk/UAStackV1/source/opcua_xmlencoder.c',NULL,NULL,NULL,NULL),(516,1,'A','/trunk/UAStackV1/source/opcua_xmlreader.c',NULL,NULL,NULL,NULL),(517,1,'A','/trunk/UAStackV1/source/opcua_xmlwriter.c',NULL,NULL,NULL,NULL),(518,2,'M','/trunk/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(519,3,'A','/branches/Linux',NULL,NULL,NULL,NULL),(520,3,'A','/branches/Linux/.cproject',NULL,NULL,NULL,NULL),(521,3,'A','/branches/Linux/.project',NULL,NULL,NULL,NULL),(522,3,'A','/branches/Linux/CMakeLists.txt',NULL,NULL,NULL,NULL),(523,3,'A','/branches/Linux/build',NULL,NULL,NULL,NULL),(524,3,'A','/branches/Linux/build/CMakeCache.txt',NULL,NULL,NULL,NULL),(525,3,'A','/branches/Linux/build/CMakeFiles',NULL,NULL,NULL,NULL),(526,3,'A','/branches/Linux/build/CMakeFiles/CMakeCCompiler.cmake',NULL,NULL,NULL,NULL),(527,3,'A','/branches/Linux/build/CMakeFiles/CMakeCXXCompiler.cmake',NULL,NULL,NULL,NULL),(528,3,'A','/branches/Linux/build/CMakeFiles/CMakeDetermineCompilerABI_C.bin',NULL,NULL,NULL,NULL),(529,3,'A','/branches/Linux/build/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin',NULL,NULL,NULL,NULL),(530,3,'A','/branches/Linux/build/CMakeFiles/CMakeDirectoryInformation.cmake',NULL,NULL,NULL,NULL),(531,3,'A','/branches/Linux/build/CMakeFiles/CMakeError.log',NULL,NULL,NULL,NULL),(532,3,'A','/branches/Linux/build/CMakeFiles/CMakeOutput.log',NULL,NULL,NULL,NULL),(533,3,'A','/branches/Linux/build/CMakeFiles/CMakeSystem.cmake',NULL,NULL,NULL,NULL),(534,3,'A','/branches/Linux/build/CMakeFiles/CMakeTmp',NULL,NULL,NULL,NULL),(535,3,'A','/branches/Linux/build/CMakeFiles/CMakeTmp/CMakeFiles',NULL,NULL,NULL,NULL),(536,3,'A','/branches/Linux/build/CMakeFiles/CMakeTmp/CMakeFiles/cmTryCompileExec.dir',NULL,NULL,NULL,NULL),(537,3,'A','/branches/Linux/build/CMakeFiles/CompilerIdC',NULL,NULL,NULL,NULL),(538,3,'A','/branches/Linux/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c',NULL,NULL,NULL,NULL),(539,3,'A','/branches/Linux/build/CMakeFiles/CompilerIdC/a.out',NULL,NULL,NULL,NULL),(540,3,'A','/branches/Linux/build/CMakeFiles/CompilerIdCXX',NULL,NULL,NULL,NULL),(541,3,'A','/branches/Linux/build/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp',NULL,NULL,NULL,NULL),(542,3,'A','/branches/Linux/build/CMakeFiles/CompilerIdCXX/a.out',NULL,NULL,NULL,NULL),(543,3,'A','/branches/Linux/build/CMakeFiles/Makefile.cmake',NULL,NULL,NULL,NULL),(544,3,'A','/branches/Linux/build/CMakeFiles/Makefile2',NULL,NULL,NULL,NULL),(545,3,'A','/branches/Linux/build/CMakeFiles/TargetDirectories.txt',NULL,NULL,NULL,NULL),(546,3,'A','/branches/Linux/build/CMakeFiles/cmake.check_cache',NULL,NULL,NULL,NULL),(547,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir',NULL,NULL,NULL,NULL),(548,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/C.includecache',NULL,NULL,NULL,NULL),(549,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/DependInfo.cmake',NULL,NULL,NULL,NULL),(550,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/build.make',NULL,NULL,NULL,NULL),(551,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/cmake_clean.cmake',NULL,NULL,NULL,NULL),(552,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/depend.internal',NULL,NULL,NULL,NULL),(553,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/depend.make',NULL,NULL,NULL,NULL),(554,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/flags.make',NULL,NULL,NULL,NULL),(555,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/link.txt',NULL,NULL,NULL,NULL),(556,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/progress.make',NULL,NULL,NULL,NULL),(557,3,'A','/branches/Linux/build/CMakeFiles/opcua_stack.dir/source',NULL,NULL,NULL,NULL),(558,3,'A','/branches/Linux/build/CMakeFiles/progress.marks',NULL,NULL,NULL,NULL),(559,3,'A','/branches/Linux/build/Makefile',NULL,NULL,NULL,NULL),(560,3,'A','/branches/Linux/build/cmake_install.cmake',NULL,NULL,NULL,NULL),(561,3,'A','/branches/Linux/include',NULL,NULL,NULL,NULL),(562,3,'A','/branches/Linux/include/shared',NULL,NULL,NULL,NULL),(563,3,'A','/branches/Linux/include/shared/opcua.h',NULL,NULL,NULL,NULL),(564,3,'A','/branches/Linux/include/shared/opcua_asynccallstate.h',NULL,NULL,NULL,NULL),(565,3,'A','/branches/Linux/include/shared/opcua_attributes.h',NULL,NULL,NULL,NULL),(566,3,'A','/branches/Linux/include/shared/opcua_base64.h',NULL,NULL,NULL,NULL),(567,3,'A','/branches/Linux/include/shared/opcua_binaryencoder.h',NULL,NULL,NULL,NULL),(568,3,'A','/branches/Linux/include/shared/opcua_binaryencoderinternal.h',NULL,NULL,NULL,NULL),(569,3,'A','/branches/Linux/include/shared/opcua_browsenames.h',NULL,NULL,NULL,NULL),(570,3,'A','/branches/Linux/include/shared/opcua_buffer.h',NULL,NULL,NULL,NULL),(571,3,'A','/branches/Linux/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(572,3,'A','/branches/Linux/include/shared/opcua_channel.h',NULL,NULL,NULL,NULL),(573,3,'A','/branches/Linux/include/shared/opcua_channel_internal.h',NULL,NULL,NULL,NULL),(574,3,'A','/branches/Linux/include/shared/opcua_clientapi.h',NULL,NULL,NULL,NULL),(575,3,'A','/branches/Linux/include/shared/opcua_clientproxy.h',NULL,NULL,NULL,NULL),(576,3,'A','/branches/Linux/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(577,3,'A','/branches/Linux/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(578,3,'A','/branches/Linux/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(579,3,'A','/branches/Linux/include/shared/opcua_credentials.h',NULL,NULL,NULL,NULL),(580,3,'A','/branches/Linux/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(581,3,'A','/branches/Linux/include/shared/opcua_cryptofactory.h',NULL,NULL,NULL,NULL),(582,3,'A','/branches/Linux/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(583,3,'A','/branches/Linux/include/shared/opcua_decoder.h',NULL,NULL,NULL,NULL),(584,3,'A','/branches/Linux/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(585,3,'A','/branches/Linux/include/shared/opcua_encoder.h',NULL,NULL,NULL,NULL),(586,3,'A','/branches/Linux/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(587,3,'A','/branches/Linux/include/shared/opcua_endpoint_ex.h',NULL,NULL,NULL,NULL),(588,3,'A','/branches/Linux/include/shared/opcua_endpoint_internal.h',NULL,NULL,NULL,NULL),(589,3,'A','/branches/Linux/include/shared/opcua_enumeratedtype.h',NULL,NULL,NULL,NULL),(590,3,'A','/branches/Linux/include/shared/opcua_errorhandling.h',NULL,NULL,NULL,NULL),(591,3,'A','/branches/Linux/include/shared/opcua_exclusions.h',NULL,NULL,NULL,NULL),(592,3,'A','/branches/Linux/include/shared/opcua_extensionobject.h',NULL,NULL,NULL,NULL),(593,3,'A','/branches/Linux/include/shared/opcua_guid.h',NULL,NULL,NULL,NULL),(594,3,'A','/branches/Linux/include/shared/opcua_http_internal.h',NULL,NULL,NULL,NULL),(595,3,'A','/branches/Linux/include/shared/opcua_httpconnection.h',NULL,NULL,NULL,NULL),(596,3,'A','/branches/Linux/include/shared/opcua_httpconnection_securityproxy.h',NULL,NULL,NULL,NULL),(597,3,'A','/branches/Linux/include/shared/opcua_httplistener.h',NULL,NULL,NULL,NULL),(598,3,'A','/branches/Linux/include/shared/opcua_httplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(599,3,'A','/branches/Linux/include/shared/opcua_httplistener_securitystub.h',NULL,NULL,NULL,NULL),(600,3,'A','/branches/Linux/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(601,3,'A','/branches/Linux/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(602,3,'A','/branches/Linux/include/shared/opcua_httpstream.h',NULL,NULL,NULL,NULL),(603,3,'A','/branches/Linux/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(604,3,'A','/branches/Linux/include/shared/opcua_list.h',NULL,NULL,NULL,NULL),(605,3,'A','/branches/Linux/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(606,3,'A','/branches/Linux/include/shared/opcua_memory.h',NULL,NULL,NULL,NULL),(607,3,'A','/branches/Linux/include/shared/opcua_memorystream.h',NULL,NULL,NULL,NULL),(608,3,'A','/branches/Linux/include/shared/opcua_messagecontext.h',NULL,NULL,NULL,NULL),(609,3,'A','/branches/Linux/include/shared/opcua_mutex.h',NULL,NULL,NULL,NULL),(610,3,'A','/branches/Linux/include/shared/opcua_p_binary.h',NULL,NULL,NULL,NULL),(611,3,'A','/branches/Linux/include/shared/opcua_p_compilerinfo.h',NULL,NULL,NULL,NULL),(612,3,'A','/branches/Linux/include/shared/opcua_p_crypto.h',NULL,NULL,NULL,NULL),(613,3,'A','/branches/Linux/include/shared/opcua_p_cryptofactory.h',NULL,NULL,NULL,NULL),(614,3,'A','/branches/Linux/include/shared/opcua_p_datetime.h',NULL,NULL,NULL,NULL),(615,3,'A','/branches/Linux/include/shared/opcua_p_guid.h',NULL,NULL,NULL,NULL),(616,3,'A','/branches/Linux/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(617,3,'A','/branches/Linux/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(618,3,'A','/branches/Linux/include/shared/opcua_p_libxml2.h',NULL,NULL,NULL,NULL),(619,3,'A','/branches/Linux/include/shared/opcua_p_memory.h',NULL,NULL,NULL,NULL),(620,3,'A','/branches/Linux/include/shared/opcua_p_mutex.h',NULL,NULL,NULL,NULL),(621,3,'A','/branches/Linux/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(622,3,'A','/branches/Linux/include/shared/opcua_p_openssl_pki.h',NULL,NULL,NULL,NULL),(623,3,'A','/branches/Linux/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(624,3,'A','/branches/Linux/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(625,3,'A','/branches/Linux/include/shared/opcua_p_pki_nosecurity.h',NULL,NULL,NULL,NULL),(626,3,'A','/branches/Linux/include/shared/opcua_p_pkifactory.h',NULL,NULL,NULL,NULL),(627,3,'A','/branches/Linux/include/shared/opcua_p_securitypolicy_none.h',NULL,NULL,NULL,NULL),(628,3,'A','/branches/Linux/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(629,3,'A','/branches/Linux/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(630,3,'A','/branches/Linux/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(631,3,'A','/branches/Linux/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(632,3,'A','/branches/Linux/include/shared/opcua_p_string.h',NULL,NULL,NULL,NULL),(633,3,'A','/branches/Linux/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(634,3,'A','/branches/Linux/include/shared/opcua_p_timer.h',NULL,NULL,NULL,NULL),(635,3,'A','/branches/Linux/include/shared/opcua_p_trace.h',NULL,NULL,NULL,NULL),(636,3,'A','/branches/Linux/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(637,3,'A','/branches/Linux/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(638,3,'A','/branches/Linux/include/shared/opcua_p_win32_pki.h',NULL,NULL,NULL,NULL),(639,3,'A','/branches/Linux/include/shared/opcua_p_wincrypt.h',NULL,NULL,NULL,NULL),(640,3,'A','/branches/Linux/include/shared/opcua_p_xml.h',NULL,NULL,NULL,NULL),(641,3,'A','/branches/Linux/include/shared/opcua_pki.h',NULL,NULL,NULL,NULL),(642,3,'A','/branches/Linux/include/shared/opcua_pkifactory.h',NULL,NULL,NULL,NULL),(643,3,'A','/branches/Linux/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(644,3,'A','/branches/Linux/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(645,3,'A','/branches/Linux/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(646,3,'A','/branches/Linux/include/shared/opcua_securechannel_types.h',NULL,NULL,NULL,NULL),(647,3,'A','/branches/Linux/include/shared/opcua_secureconnection.h',NULL,NULL,NULL,NULL),(648,3,'A','/branches/Linux/include/shared/opcua_securelistener.h',NULL,NULL,NULL,NULL),(649,3,'A','/branches/Linux/include/shared/opcua_securelistener_channelmanager.h',NULL,NULL,NULL,NULL),(650,3,'A','/branches/Linux/include/shared/opcua_securelistener_policymanager.h',NULL,NULL,NULL,NULL),(651,3,'A','/branches/Linux/include/shared/opcua_securestream.h',NULL,NULL,NULL,NULL),(652,3,'A','/branches/Linux/include/shared/opcua_semaphore.h',NULL,NULL,NULL,NULL),(653,3,'A','/branches/Linux/include/shared/opcua_serverapi.h',NULL,NULL,NULL,NULL),(654,3,'A','/branches/Linux/include/shared/opcua_serverstub.h',NULL,NULL,NULL,NULL),(655,3,'A','/branches/Linux/include/shared/opcua_servicetable.h',NULL,NULL,NULL,NULL),(656,3,'A','/branches/Linux/include/shared/opcua_soapsecurechannel.h',NULL,NULL,NULL,NULL),(657,3,'A','/branches/Linux/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(658,3,'A','/branches/Linux/include/shared/opcua_stackstatuscodes.h',NULL,NULL,NULL,NULL),(659,3,'A','/branches/Linux/include/shared/opcua_statuscodes.h',NULL,NULL,NULL,NULL),(660,3,'A','/branches/Linux/include/shared/opcua_stream.h',NULL,NULL,NULL,NULL),(661,3,'A','/branches/Linux/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(662,3,'A','/branches/Linux/include/shared/opcua_stringtable.h',NULL,NULL,NULL,NULL),(663,3,'A','/branches/Linux/include/shared/opcua_tcpconnection.h',NULL,NULL,NULL,NULL),(664,3,'A','/branches/Linux/include/shared/opcua_tcplistener.h',NULL,NULL,NULL,NULL),(665,3,'A','/branches/Linux/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(666,3,'A','/branches/Linux/include/shared/opcua_tcpsecurechannel.h',NULL,NULL,NULL,NULL),(667,3,'A','/branches/Linux/include/shared/opcua_tcpstream.h',NULL,NULL,NULL,NULL),(668,3,'A','/branches/Linux/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(669,3,'A','/branches/Linux/include/shared/opcua_threadpool.h',NULL,NULL,NULL,NULL),(670,3,'A','/branches/Linux/include/shared/opcua_timer.h',NULL,NULL,NULL,NULL),(671,3,'A','/branches/Linux/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(672,3,'A','/branches/Linux/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(673,3,'A','/branches/Linux/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(674,3,'A','/branches/Linux/include/shared/opcua_xmldefs.h',NULL,NULL,NULL,NULL),(675,3,'A','/branches/Linux/include/shared/opcua_xmlencoder.h',NULL,NULL,NULL,NULL),(676,3,'A','/branches/Linux/include/shared/opcua_xmlencoderinternal.h',NULL,NULL,NULL,NULL),(677,3,'A','/branches/Linux/include/shared/opcua_xmlreader.h',NULL,NULL,NULL,NULL),(678,3,'A','/branches/Linux/include/shared/opcua_xmlwriter.h',NULL,NULL,NULL,NULL),(679,3,'A','/branches/Linux/include/shared/resource.h',NULL,NULL,NULL,NULL),(680,3,'A','/branches/Linux/include/win32',NULL,NULL,NULL,NULL),(681,3,'A','/branches/Linux/include/win32/iconv.h',NULL,NULL,NULL,NULL),(682,3,'A','/branches/Linux/include/win32/openssl',NULL,NULL,NULL,NULL),(683,3,'A','/branches/Linux/include/win32/openssl/aes.h',NULL,NULL,NULL,NULL),(684,3,'A','/branches/Linux/include/win32/openssl/asn1.h',NULL,NULL,NULL,NULL),(685,3,'A','/branches/Linux/include/win32/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(686,3,'A','/branches/Linux/include/win32/openssl/asn1t.h',NULL,NULL,NULL,NULL),(687,3,'A','/branches/Linux/include/win32/openssl/bio.h',NULL,NULL,NULL,NULL),(688,3,'A','/branches/Linux/include/win32/openssl/blowfish.h',NULL,NULL,NULL,NULL),(689,3,'A','/branches/Linux/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(690,3,'A','/branches/Linux/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(691,3,'A','/branches/Linux/include/win32/openssl/cast.h',NULL,NULL,NULL,NULL),(692,3,'A','/branches/Linux/include/win32/openssl/comp.h',NULL,NULL,NULL,NULL),(693,3,'A','/branches/Linux/include/win32/openssl/conf.h',NULL,NULL,NULL,NULL),(694,3,'A','/branches/Linux/include/win32/openssl/conf_api.h',NULL,NULL,NULL,NULL),(695,3,'A','/branches/Linux/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(696,3,'A','/branches/Linux/include/win32/openssl/des.h',NULL,NULL,NULL,NULL),(697,3,'A','/branches/Linux/include/win32/openssl/des_old.h',NULL,NULL,NULL,NULL),(698,3,'A','/branches/Linux/include/win32/openssl/dh.h',NULL,NULL,NULL,NULL),(699,3,'A','/branches/Linux/include/win32/openssl/dsa.h',NULL,NULL,NULL,NULL),(700,3,'A','/branches/Linux/include/win32/openssl/dso.h',NULL,NULL,NULL,NULL),(701,3,'A','/branches/Linux/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(702,3,'A','/branches/Linux/include/win32/openssl/e_os2.h',NULL,NULL,NULL,NULL),(703,3,'A','/branches/Linux/include/win32/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(704,3,'A','/branches/Linux/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(705,3,'A','/branches/Linux/include/win32/openssl/ecdh.h',NULL,NULL,NULL,NULL),(706,3,'A','/branches/Linux/include/win32/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(707,3,'A','/branches/Linux/include/win32/openssl/engine.h',NULL,NULL,NULL,NULL),(708,3,'A','/branches/Linux/include/win32/openssl/err.h',NULL,NULL,NULL,NULL),(709,3,'A','/branches/Linux/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(710,3,'A','/branches/Linux/include/win32/openssl/hmac.h',NULL,NULL,NULL,NULL),(711,3,'A','/branches/Linux/include/win32/openssl/idea.h',NULL,NULL,NULL,NULL),(712,3,'A','/branches/Linux/include/win32/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(713,3,'A','/branches/Linux/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(714,3,'A','/branches/Linux/include/win32/openssl/lhash.h',NULL,NULL,NULL,NULL),(715,3,'A','/branches/Linux/include/win32/openssl/md2.h',NULL,NULL,NULL,NULL),(716,3,'A','/branches/Linux/include/win32/openssl/md4.h',NULL,NULL,NULL,NULL),(717,3,'A','/branches/Linux/include/win32/openssl/md5.h',NULL,NULL,NULL,NULL),(718,3,'A','/branches/Linux/include/win32/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(719,3,'A','/branches/Linux/include/win32/openssl/objects.h',NULL,NULL,NULL,NULL),(720,3,'A','/branches/Linux/include/win32/openssl/ocsp.h',NULL,NULL,NULL,NULL),(721,3,'A','/branches/Linux/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(722,3,'A','/branches/Linux/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(723,3,'A','/branches/Linux/include/win32/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(724,3,'A','/branches/Linux/include/win32/openssl/pem.h',NULL,NULL,NULL,NULL),(725,3,'A','/branches/Linux/include/win32/openssl/pem2.h',NULL,NULL,NULL,NULL),(726,3,'A','/branches/Linux/include/win32/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(727,3,'A','/branches/Linux/include/win32/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(728,3,'A','/branches/Linux/include/win32/openssl/pq_compat.h',NULL,NULL,NULL,NULL),(729,3,'A','/branches/Linux/include/win32/openssl/pqueue.h',NULL,NULL,NULL,NULL),(730,3,'A','/branches/Linux/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(731,3,'A','/branches/Linux/include/win32/openssl/rc2.h',NULL,NULL,NULL,NULL),(732,3,'A','/branches/Linux/include/win32/openssl/rc4.h',NULL,NULL,NULL,NULL),(733,3,'A','/branches/Linux/include/win32/openssl/ripemd.h',NULL,NULL,NULL,NULL),(734,3,'A','/branches/Linux/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(735,3,'A','/branches/Linux/include/win32/openssl/safestack.h',NULL,NULL,NULL,NULL),(736,3,'A','/branches/Linux/include/win32/openssl/sha.h',NULL,NULL,NULL,NULL),(737,3,'A','/branches/Linux/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(738,3,'A','/branches/Linux/include/win32/openssl/ssl2.h',NULL,NULL,NULL,NULL),(739,3,'A','/branches/Linux/include/win32/openssl/ssl23.h',NULL,NULL,NULL,NULL),(740,3,'A','/branches/Linux/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(741,3,'A','/branches/Linux/include/win32/openssl/stack.h',NULL,NULL,NULL,NULL),(742,3,'A','/branches/Linux/include/win32/openssl/store.h',NULL,NULL,NULL,NULL),(743,3,'A','/branches/Linux/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(744,3,'A','/branches/Linux/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(745,3,'A','/branches/Linux/include/win32/openssl/tmdiff.h',NULL,NULL,NULL,NULL),(746,3,'A','/branches/Linux/include/win32/openssl/txt_db.h',NULL,NULL,NULL,NULL),(747,3,'A','/branches/Linux/include/win32/openssl/ui.h',NULL,NULL,NULL,NULL),(748,3,'A','/branches/Linux/include/win32/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(749,3,'A','/branches/Linux/include/win32/openssl/x509.h',NULL,NULL,NULL,NULL),(750,3,'A','/branches/Linux/include/win32/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(751,3,'A','/branches/Linux/include/win32/openssl/x509v3.h',NULL,NULL,NULL,NULL),(752,3,'A','/branches/Linux/include/wince',NULL,NULL,NULL,NULL),(753,3,'A','/branches/Linux/include/wince/openssl',NULL,NULL,NULL,NULL),(754,3,'A','/branches/Linux/include/wince/openssl/aes.h',NULL,NULL,NULL,NULL),(755,3,'A','/branches/Linux/include/wince/openssl/asn1.h',NULL,NULL,NULL,NULL),(756,3,'A','/branches/Linux/include/wince/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(757,3,'A','/branches/Linux/include/wince/openssl/asn1t.h',NULL,NULL,NULL,NULL),(758,3,'A','/branches/Linux/include/wince/openssl/bio.h',NULL,NULL,NULL,NULL),(759,3,'A','/branches/Linux/include/wince/openssl/blowfish.h',NULL,NULL,NULL,NULL),(760,3,'A','/branches/Linux/include/wince/openssl/bn.h',NULL,NULL,NULL,NULL),(761,3,'A','/branches/Linux/include/wince/openssl/buffer.h',NULL,NULL,NULL,NULL),(762,3,'A','/branches/Linux/include/wince/openssl/camellia.h',NULL,NULL,NULL,NULL),(763,3,'A','/branches/Linux/include/wince/openssl/cast.h',NULL,NULL,NULL,NULL),(764,3,'A','/branches/Linux/include/wince/openssl/cms.h',NULL,NULL,NULL,NULL),(765,3,'A','/branches/Linux/include/wince/openssl/comp.h',NULL,NULL,NULL,NULL),(766,3,'A','/branches/Linux/include/wince/openssl/conf.h',NULL,NULL,NULL,NULL),(767,3,'A','/branches/Linux/include/wince/openssl/conf_api.h',NULL,NULL,NULL,NULL),(768,3,'A','/branches/Linux/include/wince/openssl/crypto.h',NULL,NULL,NULL,NULL),(769,3,'A','/branches/Linux/include/wince/openssl/des.h',NULL,NULL,NULL,NULL),(770,3,'A','/branches/Linux/include/wince/openssl/des_old.h',NULL,NULL,NULL,NULL),(771,3,'A','/branches/Linux/include/wince/openssl/dh.h',NULL,NULL,NULL,NULL),(772,3,'A','/branches/Linux/include/wince/openssl/dsa.h',NULL,NULL,NULL,NULL),(773,3,'A','/branches/Linux/include/wince/openssl/dso.h',NULL,NULL,NULL,NULL),(774,3,'A','/branches/Linux/include/wince/openssl/dtls1.h',NULL,NULL,NULL,NULL),(775,3,'A','/branches/Linux/include/wince/openssl/e_os2.h',NULL,NULL,NULL,NULL),(776,3,'A','/branches/Linux/include/wince/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(777,3,'A','/branches/Linux/include/wince/openssl/ec.h',NULL,NULL,NULL,NULL),(778,3,'A','/branches/Linux/include/wince/openssl/ecdh.h',NULL,NULL,NULL,NULL),(779,3,'A','/branches/Linux/include/wince/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(780,3,'A','/branches/Linux/include/wince/openssl/engine.h',NULL,NULL,NULL,NULL),(781,3,'A','/branches/Linux/include/wince/openssl/err.h',NULL,NULL,NULL,NULL),(782,3,'A','/branches/Linux/include/wince/openssl/evp.h',NULL,NULL,NULL,NULL),(783,3,'A','/branches/Linux/include/wince/openssl/hmac.h',NULL,NULL,NULL,NULL),(784,3,'A','/branches/Linux/include/wince/openssl/idea.h',NULL,NULL,NULL,NULL),(785,3,'A','/branches/Linux/include/wince/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(786,3,'A','/branches/Linux/include/wince/openssl/kssl.h',NULL,NULL,NULL,NULL),(787,3,'A','/branches/Linux/include/wince/openssl/lhash.h',NULL,NULL,NULL,NULL),(788,3,'A','/branches/Linux/include/wince/openssl/md4.h',NULL,NULL,NULL,NULL),(789,3,'A','/branches/Linux/include/wince/openssl/md5.h',NULL,NULL,NULL,NULL),(790,3,'A','/branches/Linux/include/wince/openssl/mdc2.h',NULL,NULL,NULL,NULL),(791,3,'A','/branches/Linux/include/wince/openssl/modes.h',NULL,NULL,NULL,NULL),(792,3,'A','/branches/Linux/include/wince/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(793,3,'A','/branches/Linux/include/wince/openssl/objects.h',NULL,NULL,NULL,NULL),(794,3,'A','/branches/Linux/include/wince/openssl/ocsp.h',NULL,NULL,NULL,NULL),(795,3,'A','/branches/Linux/include/wince/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(796,3,'A','/branches/Linux/include/wince/openssl/opensslv.h',NULL,NULL,NULL,NULL),(797,3,'A','/branches/Linux/include/wince/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(798,3,'A','/branches/Linux/include/wince/openssl/pem.h',NULL,NULL,NULL,NULL),(799,3,'A','/branches/Linux/include/wince/openssl/pem2.h',NULL,NULL,NULL,NULL),(800,3,'A','/branches/Linux/include/wince/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(801,3,'A','/branches/Linux/include/wince/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(802,3,'A','/branches/Linux/include/wince/openssl/pqueue.h',NULL,NULL,NULL,NULL),(803,3,'A','/branches/Linux/include/wince/openssl/rand.h',NULL,NULL,NULL,NULL),(804,3,'A','/branches/Linux/include/wince/openssl/rc2.h',NULL,NULL,NULL,NULL),(805,3,'A','/branches/Linux/include/wince/openssl/rc4.h',NULL,NULL,NULL,NULL),(806,3,'A','/branches/Linux/include/wince/openssl/ripemd.h',NULL,NULL,NULL,NULL),(807,3,'A','/branches/Linux/include/wince/openssl/rsa.h',NULL,NULL,NULL,NULL),(808,3,'A','/branches/Linux/include/wince/openssl/safestack.h',NULL,NULL,NULL,NULL),(809,3,'A','/branches/Linux/include/wince/openssl/seed.h',NULL,NULL,NULL,NULL),(810,3,'A','/branches/Linux/include/wince/openssl/sha.h',NULL,NULL,NULL,NULL),(811,3,'A','/branches/Linux/include/wince/openssl/ssl.h',NULL,NULL,NULL,NULL),(812,3,'A','/branches/Linux/include/wince/openssl/ssl2.h',NULL,NULL,NULL,NULL),(813,3,'A','/branches/Linux/include/wince/openssl/ssl23.h',NULL,NULL,NULL,NULL),(814,3,'A','/branches/Linux/include/wince/openssl/ssl3.h',NULL,NULL,NULL,NULL),(815,3,'A','/branches/Linux/include/wince/openssl/stack.h',NULL,NULL,NULL,NULL),(816,3,'A','/branches/Linux/include/wince/openssl/symhacks.h',NULL,NULL,NULL,NULL),(817,3,'A','/branches/Linux/include/wince/openssl/tls1.h',NULL,NULL,NULL,NULL),(818,3,'A','/branches/Linux/include/wince/openssl/ts.h',NULL,NULL,NULL,NULL),(819,3,'A','/branches/Linux/include/wince/openssl/txt_db.h',NULL,NULL,NULL,NULL),(820,3,'A','/branches/Linux/include/wince/openssl/ui.h',NULL,NULL,NULL,NULL),(821,3,'A','/branches/Linux/include/wince/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(822,3,'A','/branches/Linux/include/wince/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(823,3,'A','/branches/Linux/include/wince/openssl/x509.h',NULL,NULL,NULL,NULL),(824,3,'A','/branches/Linux/include/wince/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(825,3,'A','/branches/Linux/include/wince/openssl/x509v3.h',NULL,NULL,NULL,NULL),(826,3,'A','/branches/Linux/source',NULL,NULL,NULL,NULL),(827,3,'A','/branches/Linux/source/Wince6',NULL,NULL,NULL,NULL),(828,3,'A','/branches/Linux/source/Wince6/ProjSysgen.bat',NULL,NULL,NULL,NULL),(829,3,'A','/branches/Linux/source/Wince6/ReadMe.txt',NULL,NULL,NULL,NULL),(830,3,'A','/branches/Linux/source/Wince6/UAStack.bib',NULL,NULL,NULL,NULL),(831,3,'A','/branches/Linux/source/Wince6/UAStack.dat',NULL,NULL,NULL,NULL),(832,3,'A','/branches/Linux/source/Wince6/UAStack.db',NULL,NULL,NULL,NULL),(833,3,'A','/branches/Linux/source/Wince6/UAStack.def',NULL,NULL,NULL,NULL),(834,3,'A','/branches/Linux/source/Wince6/UAStack.pbpxml',NULL,NULL,NULL,NULL),(835,3,'A','/branches/Linux/source/Wince6/UAStack.reg',NULL,NULL,NULL,NULL),(836,3,'A','/branches/Linux/source/Wince6/makefile',NULL,NULL,NULL,NULL),(837,3,'A','/branches/Linux/source/Wince6/postlink.bat',NULL,NULL,NULL,NULL),(838,3,'A','/branches/Linux/source/Wince6/prelink.bat',NULL,NULL,NULL,NULL),(839,3,'A','/branches/Linux/source/Wince6/sources',NULL,NULL,NULL,NULL),(840,3,'A','/branches/Linux/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(841,3,'A','/branches/Linux/source/opcua_base64.c',NULL,NULL,NULL,NULL),(842,3,'A','/branches/Linux/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(843,3,'A','/branches/Linux/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(844,3,'A','/branches/Linux/source/opcua_buffer.c',NULL,NULL,NULL,NULL),(845,3,'A','/branches/Linux/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(846,3,'A','/branches/Linux/source/opcua_channel.c',NULL,NULL,NULL,NULL),(847,3,'A','/branches/Linux/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(848,3,'A','/branches/Linux/source/opcua_connection.c',NULL,NULL,NULL,NULL),(849,3,'A','/branches/Linux/source/opcua_core.c',NULL,NULL,NULL,NULL),(850,3,'A','/branches/Linux/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(851,3,'A','/branches/Linux/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(852,3,'A','/branches/Linux/source/opcua_decoder.c',NULL,NULL,NULL,NULL),(853,3,'A','/branches/Linux/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(854,3,'A','/branches/Linux/source/opcua_encoder.c',NULL,NULL,NULL,NULL),(855,3,'A','/branches/Linux/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(856,3,'A','/branches/Linux/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(857,3,'A','/branches/Linux/source/opcua_enumeratedtype.c',NULL,NULL,NULL,NULL),(858,3,'A','/branches/Linux/source/opcua_extensionobject.c',NULL,NULL,NULL,NULL),(859,3,'A','/branches/Linux/source/opcua_guid.c',NULL,NULL,NULL,NULL),(860,3,'A','/branches/Linux/source/opcua_http_internal.c',NULL,NULL,NULL,NULL),(861,3,'A','/branches/Linux/source/opcua_httpconnection.c',NULL,NULL,NULL,NULL),(862,3,'A','/branches/Linux/source/opcua_httpconnection_securityproxy.c',NULL,NULL,NULL,NULL),(863,3,'A','/branches/Linux/source/opcua_httplistener.c',NULL,NULL,NULL,NULL),(864,3,'A','/branches/Linux/source/opcua_httplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(865,3,'A','/branches/Linux/source/opcua_httplistener_securitystub.c',NULL,NULL,NULL,NULL),(866,3,'A','/branches/Linux/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(867,3,'A','/branches/Linux/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(868,3,'A','/branches/Linux/source/opcua_httpstream.c',NULL,NULL,NULL,NULL),(869,3,'A','/branches/Linux/source/opcua_list.c',NULL,NULL,NULL,NULL),(870,3,'A','/branches/Linux/source/opcua_listener.c',NULL,NULL,NULL,NULL),(871,3,'A','/branches/Linux/source/opcua_memory.c',NULL,NULL,NULL,NULL),(872,3,'A','/branches/Linux/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(873,3,'A','/branches/Linux/source/opcua_messagecontext.c',NULL,NULL,NULL,NULL),(874,3,'A','/branches/Linux/source/opcua_p_binary.c',NULL,NULL,NULL,NULL),(875,3,'A','/branches/Linux/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(876,3,'A','/branches/Linux/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(877,3,'A','/branches/Linux/source/opcua_p_guid.c',NULL,NULL,NULL,NULL),(878,3,'A','/branches/Linux/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(879,3,'A','/branches/Linux/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(880,3,'A','/branches/Linux/source/opcua_p_libxml2.c',NULL,NULL,NULL,NULL),(881,3,'A','/branches/Linux/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(882,3,'A','/branches/Linux/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(883,3,'A','/branches/Linux/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(884,3,'A','/branches/Linux/source/opcua_p_openssl_3des.c',NULL,NULL,NULL,NULL),(885,3,'A','/branches/Linux/source/opcua_p_openssl_aes.c',NULL,NULL,NULL,NULL),(886,3,'A','/branches/Linux/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(887,3,'A','/branches/Linux/source/opcua_p_openssl_hmac_sha.c',NULL,NULL,NULL,NULL),(888,3,'A','/branches/Linux/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(889,3,'A','/branches/Linux/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(890,3,'A','/branches/Linux/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(891,3,'A','/branches/Linux/source/opcua_p_openssl_sha.c',NULL,NULL,NULL,NULL),(892,3,'A','/branches/Linux/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(893,3,'A','/branches/Linux/source/opcua_p_pki_nosecurity.c',NULL,NULL,NULL,NULL),(894,3,'A','/branches/Linux/source/opcua_p_pkifactory.c',NULL,NULL,NULL,NULL),(895,3,'A','/branches/Linux/source/opcua_p_securitypolicy_none.c',NULL,NULL,NULL,NULL),(896,3,'A','/branches/Linux/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(897,3,'A','/branches/Linux/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(898,3,'A','/branches/Linux/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(899,3,'A','/branches/Linux/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(900,3,'A','/branches/Linux/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(901,3,'A','/branches/Linux/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(902,3,'A','/branches/Linux/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(903,3,'A','/branches/Linux/source/opcua_p_trace.c',NULL,NULL,NULL,NULL),(904,3,'A','/branches/Linux/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(905,3,'A','/branches/Linux/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(906,3,'A','/branches/Linux/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(907,3,'A','/branches/Linux/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(908,3,'A','/branches/Linux/source/opcua_securechannel.c',NULL,NULL,NULL,NULL),(909,3,'A','/branches/Linux/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(910,3,'A','/branches/Linux/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(911,3,'A','/branches/Linux/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(912,3,'A','/branches/Linux/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(913,3,'A','/branches/Linux/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(914,3,'A','/branches/Linux/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(915,3,'A','/branches/Linux/source/opcua_servicetable.c',NULL,NULL,NULL,NULL),(916,3,'A','/branches/Linux/source/opcua_stream.c',NULL,NULL,NULL,NULL),(917,3,'A','/branches/Linux/source/opcua_string.c',NULL,NULL,NULL,NULL),(918,3,'A','/branches/Linux/source/opcua_stringtable.c',NULL,NULL,NULL,NULL),(919,3,'A','/branches/Linux/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(920,3,'A','/branches/Linux/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(921,3,'A','/branches/Linux/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(922,3,'A','/branches/Linux/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(923,3,'A','/branches/Linux/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(924,3,'A','/branches/Linux/source/opcua_thread.c',NULL,NULL,NULL,NULL),(925,3,'A','/branches/Linux/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(926,3,'A','/branches/Linux/source/opcua_timer.c',NULL,NULL,NULL,NULL),(927,3,'A','/branches/Linux/source/opcua_trace.c',NULL,NULL,NULL,NULL),(928,3,'A','/branches/Linux/source/opcua_types.c',NULL,NULL,NULL,NULL),(929,3,'A','/branches/Linux/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(930,3,'A','/branches/Linux/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(931,3,'A','/branches/Linux/source/opcua_xmlencoder.c',NULL,NULL,NULL,NULL),(932,3,'A','/branches/Linux/source/opcua_xmlreader.c',NULL,NULL,NULL,NULL),(933,3,'A','/branches/Linux/source/opcua_xmlwriter.c',NULL,NULL,NULL,NULL),(934,4,'M','/branches/Linux',NULL,NULL,NULL,NULL),(935,4,'D','/branches/Linux/build',NULL,NULL,NULL,NULL),(936,5,'M','/branches/Linux/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(937,6,'M','/branches/Linux/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(938,6,'M','/branches/Linux/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(939,7,'R','/trunk/UAStackV1/include/shared/opcua_datetime.h','/branches/Linux/include/shared/opcua_datetime.h','6',NULL,NULL),(940,8,'R','/trunk/UAStackV1/include/shared/opcua_core.h','/branches/Linux/include/shared/opcua_core.h','7',NULL,NULL),(941,9,'M','/branches/Linux/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(942,10,'R','/trunk/UAStackV1/include/shared/opcua_platformdefs.h','/branches/Linux/include/shared/opcua_platformdefs.h','9',NULL,NULL),(943,11,'D','/trunk/UAStackV1/Debug',NULL,NULL,NULL,NULL),(944,12,'M','/branches/Linux/.cproject',NULL,NULL,NULL,NULL),(945,12,'A','/branches/Linux/.settings',NULL,NULL,NULL,NULL),(946,12,'A','/branches/Linux/.settings/org.eclipse.cdt.core.prefs',NULL,NULL,NULL,NULL),(947,12,'M','/branches/Linux/CMakeLists.txt',NULL,NULL,NULL,NULL),(948,12,'M','/branches/Linux/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(949,12,'M','/branches/Linux/include/shared/opcua_p_datetime.h',NULL,NULL,NULL,NULL),(950,12,'M','/branches/Linux/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(951,12,'M','/branches/Linux/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(952,12,'M','/branches/Linux/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(953,12,'M','/branches/Linux/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(954,12,'M','/branches/Linux/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(955,12,'M','/branches/Linux/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(956,12,'M','/branches/Linux/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(957,12,'M','/branches/Linux/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(958,12,'M','/branches/Linux/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(959,12,'M','/branches/Linux/include/shared/opcua_p_wincrypt.h',NULL,NULL,NULL,NULL),(960,12,'M','/branches/Linux/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(961,12,'M','/branches/Linux/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(962,12,'M','/branches/Linux/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(963,12,'M','/branches/Linux/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(964,12,'M','/branches/Linux/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(965,12,'M','/branches/Linux/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(966,12,'M','/branches/Linux/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(967,12,'M','/branches/Linux/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(968,12,'M','/branches/Linux/source/opcua_string.c',NULL,NULL,NULL,NULL),(969,12,'M','/branches/Linux/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(970,13,'R','/trunk/UAStackV1/include/shared/opcua.h','/branches/Linux/include/shared/opcua.h','12',NULL,NULL),(971,13,'R','/trunk/UAStackV1/include/shared/opcua_asynccallstate.h','/branches/Linux/include/shared/opcua_asynccallstate.h','12',NULL,NULL),(972,13,'R','/trunk/UAStackV1/include/shared/opcua_attributes.h','/branches/Linux/include/shared/opcua_attributes.h','12',NULL,NULL),(973,13,'R','/trunk/UAStackV1/include/shared/opcua_base64.h','/branches/Linux/include/shared/opcua_base64.h','12',NULL,NULL),(974,13,'R','/trunk/UAStackV1/include/shared/opcua_binaryencoder.h','/branches/Linux/include/shared/opcua_binaryencoder.h','12',NULL,NULL),(975,13,'R','/trunk/UAStackV1/include/shared/opcua_binaryencoderinternal.h','/branches/Linux/include/shared/opcua_binaryencoderinternal.h','12',NULL,NULL),(976,13,'R','/trunk/UAStackV1/include/shared/opcua_browsenames.h','/branches/Linux/include/shared/opcua_browsenames.h','12',NULL,NULL),(977,13,'R','/trunk/UAStackV1/include/shared/opcua_buffer.h','/branches/Linux/include/shared/opcua_buffer.h','12',NULL,NULL),(978,13,'R','/trunk/UAStackV1/include/shared/opcua_builtintypes.h','/branches/Linux/include/shared/opcua_builtintypes.h','12',NULL,NULL),(979,13,'R','/trunk/UAStackV1/include/shared/opcua_channel.h','/branches/Linux/include/shared/opcua_channel.h','12',NULL,NULL),(980,13,'R','/trunk/UAStackV1/include/shared/opcua_channel_internal.h','/branches/Linux/include/shared/opcua_channel_internal.h','12',NULL,NULL),(981,13,'R','/trunk/UAStackV1/include/shared/opcua_clientapi.h','/branches/Linux/include/shared/opcua_clientapi.h','12',NULL,NULL),(982,13,'R','/trunk/UAStackV1/include/shared/opcua_clientproxy.h','/branches/Linux/include/shared/opcua_clientproxy.h','12',NULL,NULL),(983,13,'R','/trunk/UAStackV1/include/shared/opcua_config.h','/branches/Linux/include/shared/opcua_config.h','12',NULL,NULL),(984,13,'R','/trunk/UAStackV1/include/shared/opcua_connection.h','/branches/Linux/include/shared/opcua_connection.h','12',NULL,NULL),(985,13,'R','/trunk/UAStackV1/include/shared/opcua_credentials.h','/branches/Linux/include/shared/opcua_credentials.h','12',NULL,NULL),(986,13,'R','/trunk/UAStackV1/include/shared/opcua_crypto.h','/branches/Linux/include/shared/opcua_crypto.h','12',NULL,NULL),(987,13,'R','/trunk/UAStackV1/include/shared/opcua_cryptofactory.h','/branches/Linux/include/shared/opcua_cryptofactory.h','12',NULL,NULL),(988,13,'M','/trunk/UAStackV1/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(989,13,'R','/trunk/UAStackV1/include/shared/opcua_decoder.h','/branches/Linux/include/shared/opcua_decoder.h','12',NULL,NULL),(990,13,'R','/trunk/UAStackV1/include/shared/opcua_encodeableobject.h','/branches/Linux/include/shared/opcua_encodeableobject.h','12',NULL,NULL),(991,13,'R','/trunk/UAStackV1/include/shared/opcua_encoder.h','/branches/Linux/include/shared/opcua_encoder.h','12',NULL,NULL),(992,13,'R','/trunk/UAStackV1/include/shared/opcua_endpoint.h','/branches/Linux/include/shared/opcua_endpoint.h','12',NULL,NULL),(993,13,'R','/trunk/UAStackV1/include/shared/opcua_endpoint_ex.h','/branches/Linux/include/shared/opcua_endpoint_ex.h','12',NULL,NULL),(994,13,'R','/trunk/UAStackV1/include/shared/opcua_endpoint_internal.h','/branches/Linux/include/shared/opcua_endpoint_internal.h','12',NULL,NULL),(995,13,'R','/trunk/UAStackV1/include/shared/opcua_enumeratedtype.h','/branches/Linux/include/shared/opcua_enumeratedtype.h','12',NULL,NULL),(996,13,'R','/trunk/UAStackV1/include/shared/opcua_errorhandling.h','/branches/Linux/include/shared/opcua_errorhandling.h','12',NULL,NULL),(997,13,'R','/trunk/UAStackV1/include/shared/opcua_exclusions.h','/branches/Linux/include/shared/opcua_exclusions.h','12',NULL,NULL),(998,13,'R','/trunk/UAStackV1/include/shared/opcua_extensionobject.h','/branches/Linux/include/shared/opcua_extensionobject.h','12',NULL,NULL),(999,13,'R','/trunk/UAStackV1/include/shared/opcua_guid.h','/branches/Linux/include/shared/opcua_guid.h','12',NULL,NULL),(1000,13,'R','/trunk/UAStackV1/include/shared/opcua_http_internal.h','/branches/Linux/include/shared/opcua_http_internal.h','12',NULL,NULL),(1001,13,'R','/trunk/UAStackV1/include/shared/opcua_httpconnection.h','/branches/Linux/include/shared/opcua_httpconnection.h','12',NULL,NULL),(1002,13,'R','/trunk/UAStackV1/include/shared/opcua_httpconnection_securityproxy.h','/branches/Linux/include/shared/opcua_httpconnection_securityproxy.h','12',NULL,NULL),(1003,13,'R','/trunk/UAStackV1/include/shared/opcua_httplistener.h','/branches/Linux/include/shared/opcua_httplistener.h','12',NULL,NULL),(1004,13,'R','/trunk/UAStackV1/include/shared/opcua_httplistener_connectionmanager.h','/branches/Linux/include/shared/opcua_httplistener_connectionmanager.h','12',NULL,NULL),(1005,13,'R','/trunk/UAStackV1/include/shared/opcua_httplistener_securitystub.h','/branches/Linux/include/shared/opcua_httplistener_securitystub.h','12',NULL,NULL),(1006,13,'R','/trunk/UAStackV1/include/shared/opcua_https_connection.h','/branches/Linux/include/shared/opcua_https_connection.h','12',NULL,NULL),(1007,13,'R','/trunk/UAStackV1/include/shared/opcua_https_secureconnection.h','/branches/Linux/include/shared/opcua_https_secureconnection.h','12',NULL,NULL),(1008,13,'R','/trunk/UAStackV1/include/shared/opcua_httpstream.h','/branches/Linux/include/shared/opcua_httpstream.h','12',NULL,NULL),(1009,13,'R','/trunk/UAStackV1/include/shared/opcua_identifiers.h','/branches/Linux/include/shared/opcua_identifiers.h','12',NULL,NULL),(1010,13,'R','/trunk/UAStackV1/include/shared/opcua_list.h','/branches/Linux/include/shared/opcua_list.h','12',NULL,NULL),(1011,13,'R','/trunk/UAStackV1/include/shared/opcua_listener.h','/branches/Linux/include/shared/opcua_listener.h','12',NULL,NULL),(1012,13,'R','/trunk/UAStackV1/include/shared/opcua_memory.h','/branches/Linux/include/shared/opcua_memory.h','12',NULL,NULL),(1013,13,'R','/trunk/UAStackV1/include/shared/opcua_memorystream.h','/branches/Linux/include/shared/opcua_memorystream.h','12',NULL,NULL),(1014,13,'R','/trunk/UAStackV1/include/shared/opcua_messagecontext.h','/branches/Linux/include/shared/opcua_messagecontext.h','12',NULL,NULL),(1015,13,'R','/trunk/UAStackV1/include/shared/opcua_mutex.h','/branches/Linux/include/shared/opcua_mutex.h','12',NULL,NULL),(1016,13,'R','/trunk/UAStackV1/include/shared/opcua_p_binary.h','/branches/Linux/include/shared/opcua_p_binary.h','12',NULL,NULL),(1017,13,'R','/trunk/UAStackV1/include/shared/opcua_p_compilerinfo.h','/branches/Linux/include/shared/opcua_p_compilerinfo.h','12',NULL,NULL),(1018,13,'R','/trunk/UAStackV1/include/shared/opcua_p_crypto.h','/branches/Linux/include/shared/opcua_p_crypto.h','12',NULL,NULL),(1019,13,'R','/trunk/UAStackV1/include/shared/opcua_p_cryptofactory.h','/branches/Linux/include/shared/opcua_p_cryptofactory.h','12',NULL,NULL),(1020,13,'R','/trunk/UAStackV1/include/shared/opcua_p_datetime.h','/branches/Linux/include/shared/opcua_p_datetime.h','12',NULL,NULL),(1021,13,'R','/trunk/UAStackV1/include/shared/opcua_p_guid.h','/branches/Linux/include/shared/opcua_p_guid.h','12',NULL,NULL),(1022,13,'R','/trunk/UAStackV1/include/shared/opcua_p_interface.h','/branches/Linux/include/shared/opcua_p_interface.h','12',NULL,NULL),(1023,13,'R','/trunk/UAStackV1/include/shared/opcua_p_internal.h','/branches/Linux/include/shared/opcua_p_internal.h','12',NULL,NULL),(1024,13,'R','/trunk/UAStackV1/include/shared/opcua_p_libxml2.h','/branches/Linux/include/shared/opcua_p_libxml2.h','12',NULL,NULL),(1025,13,'R','/trunk/UAStackV1/include/shared/opcua_p_memory.h','/branches/Linux/include/shared/opcua_p_memory.h','12',NULL,NULL),(1026,13,'R','/trunk/UAStackV1/include/shared/opcua_p_mutex.h','/branches/Linux/include/shared/opcua_p_mutex.h','12',NULL,NULL),(1027,13,'R','/trunk/UAStackV1/include/shared/opcua_p_openssl.h','/branches/Linux/include/shared/opcua_p_openssl.h','12',NULL,NULL),(1028,13,'R','/trunk/UAStackV1/include/shared/opcua_p_openssl_pki.h','/branches/Linux/include/shared/opcua_p_openssl_pki.h','12',NULL,NULL),(1029,13,'R','/trunk/UAStackV1/include/shared/opcua_p_os.h','/branches/Linux/include/shared/opcua_p_os.h','12',NULL,NULL),(1030,13,'R','/trunk/UAStackV1/include/shared/opcua_p_pki.h','/branches/Linux/include/shared/opcua_p_pki.h','12',NULL,NULL),(1031,13,'R','/trunk/UAStackV1/include/shared/opcua_p_pki_nosecurity.h','/branches/Linux/include/shared/opcua_p_pki_nosecurity.h','12',NULL,NULL),(1032,13,'R','/trunk/UAStackV1/include/shared/opcua_p_pkifactory.h','/branches/Linux/include/shared/opcua_p_pkifactory.h','12',NULL,NULL),(1033,13,'R','/trunk/UAStackV1/include/shared/opcua_p_securitypolicy_none.h','/branches/Linux/include/shared/opcua_p_securitypolicy_none.h','12',NULL,NULL),(1034,13,'R','/trunk/UAStackV1/include/shared/opcua_p_semaphore.h','/branches/Linux/include/shared/opcua_p_semaphore.h','12',NULL,NULL),(1035,13,'R','/trunk/UAStackV1/include/shared/opcua_p_socket.h','/branches/Linux/include/shared/opcua_p_socket.h','12',NULL,NULL),(1036,13,'R','/trunk/UAStackV1/include/shared/opcua_p_socket_interface.h','/branches/Linux/include/shared/opcua_p_socket_interface.h','12',NULL,NULL),(1037,13,'R','/trunk/UAStackV1/include/shared/opcua_p_socket_internal.h','/branches/Linux/include/shared/opcua_p_socket_internal.h','12',NULL,NULL),(1038,13,'R','/trunk/UAStackV1/include/shared/opcua_p_string.h','/branches/Linux/include/shared/opcua_p_string.h','12',NULL,NULL),(1039,13,'R','/trunk/UAStackV1/include/shared/opcua_p_thread.h','/branches/Linux/include/shared/opcua_p_thread.h','12',NULL,NULL),(1040,13,'R','/trunk/UAStackV1/include/shared/opcua_p_timer.h','/branches/Linux/include/shared/opcua_p_timer.h','12',NULL,NULL),(1041,13,'R','/trunk/UAStackV1/include/shared/opcua_p_trace.h','/branches/Linux/include/shared/opcua_p_trace.h','12',NULL,NULL),(1042,13,'R','/trunk/UAStackV1/include/shared/opcua_p_types.h','/branches/Linux/include/shared/opcua_p_types.h','12',NULL,NULL),(1043,13,'R','/trunk/UAStackV1/include/shared/opcua_p_utilities.h','/branches/Linux/include/shared/opcua_p_utilities.h','12',NULL,NULL),(1044,13,'R','/trunk/UAStackV1/include/shared/opcua_p_win32_pki.h','/branches/Linux/include/shared/opcua_p_win32_pki.h','12',NULL,NULL),(1045,13,'R','/trunk/UAStackV1/include/shared/opcua_p_wincrypt.h','/branches/Linux/include/shared/opcua_p_wincrypt.h','12',NULL,NULL),(1046,13,'R','/trunk/UAStackV1/include/shared/opcua_p_xml.h','/branches/Linux/include/shared/opcua_p_xml.h','12',NULL,NULL),(1047,13,'R','/trunk/UAStackV1/include/shared/opcua_pki.h','/branches/Linux/include/shared/opcua_pki.h','12',NULL,NULL),(1048,13,'R','/trunk/UAStackV1/include/shared/opcua_pkifactory.h','/branches/Linux/include/shared/opcua_pkifactory.h','12',NULL,NULL),(1049,13,'R','/trunk/UAStackV1/include/shared/opcua_proxystub.h','/branches/Linux/include/shared/opcua_proxystub.h','12',NULL,NULL),(1050,13,'R','/trunk/UAStackV1/include/shared/opcua_securechannel.h','/branches/Linux/include/shared/opcua_securechannel.h','12',NULL,NULL),(1051,13,'R','/trunk/UAStackV1/include/shared/opcua_securechannel_types.h','/branches/Linux/include/shared/opcua_securechannel_types.h','12',NULL,NULL),(1052,13,'R','/trunk/UAStackV1/include/shared/opcua_secureconnection.h','/branches/Linux/include/shared/opcua_secureconnection.h','12',NULL,NULL),(1053,13,'R','/trunk/UAStackV1/include/shared/opcua_securelistener.h','/branches/Linux/include/shared/opcua_securelistener.h','12',NULL,NULL),(1054,13,'R','/trunk/UAStackV1/include/shared/opcua_securelistener_channelmanager.h','/branches/Linux/include/shared/opcua_securelistener_channelmanager.h','12',NULL,NULL),(1055,13,'R','/trunk/UAStackV1/include/shared/opcua_securelistener_policymanager.h','/branches/Linux/include/shared/opcua_securelistener_policymanager.h','12',NULL,NULL),(1056,13,'R','/trunk/UAStackV1/include/shared/opcua_securestream.h','/branches/Linux/include/shared/opcua_securestream.h','12',NULL,NULL),(1057,13,'R','/trunk/UAStackV1/include/shared/opcua_semaphore.h','/branches/Linux/include/shared/opcua_semaphore.h','12',NULL,NULL),(1058,13,'R','/trunk/UAStackV1/include/shared/opcua_serverapi.h','/branches/Linux/include/shared/opcua_serverapi.h','12',NULL,NULL),(1059,13,'R','/trunk/UAStackV1/include/shared/opcua_serverstub.h','/branches/Linux/include/shared/opcua_serverstub.h','12',NULL,NULL),(1060,13,'R','/trunk/UAStackV1/include/shared/opcua_servicetable.h','/branches/Linux/include/shared/opcua_servicetable.h','12',NULL,NULL),(1061,13,'R','/trunk/UAStackV1/include/shared/opcua_soapsecurechannel.h','/branches/Linux/include/shared/opcua_soapsecurechannel.h','12',NULL,NULL),(1062,13,'R','/trunk/UAStackV1/include/shared/opcua_socket.h','/branches/Linux/include/shared/opcua_socket.h','12',NULL,NULL),(1063,13,'R','/trunk/UAStackV1/include/shared/opcua_stackstatuscodes.h','/branches/Linux/include/shared/opcua_stackstatuscodes.h','12',NULL,NULL),(1064,13,'R','/trunk/UAStackV1/include/shared/opcua_statuscodes.h','/branches/Linux/include/shared/opcua_statuscodes.h','12',NULL,NULL),(1065,13,'R','/trunk/UAStackV1/include/shared/opcua_stream.h','/branches/Linux/include/shared/opcua_stream.h','12',NULL,NULL),(1066,13,'R','/trunk/UAStackV1/include/shared/opcua_string.h','/branches/Linux/include/shared/opcua_string.h','12',NULL,NULL),(1067,13,'R','/trunk/UAStackV1/include/shared/opcua_stringtable.h','/branches/Linux/include/shared/opcua_stringtable.h','12',NULL,NULL),(1068,13,'R','/trunk/UAStackV1/include/shared/opcua_tcpconnection.h','/branches/Linux/include/shared/opcua_tcpconnection.h','12',NULL,NULL),(1069,13,'R','/trunk/UAStackV1/include/shared/opcua_tcplistener.h','/branches/Linux/include/shared/opcua_tcplistener.h','12',NULL,NULL),(1070,13,'R','/trunk/UAStackV1/include/shared/opcua_tcplistener_connectionmanager.h','/branches/Linux/include/shared/opcua_tcplistener_connectionmanager.h','12',NULL,NULL),(1071,13,'R','/trunk/UAStackV1/include/shared/opcua_tcpsecurechannel.h','/branches/Linux/include/shared/opcua_tcpsecurechannel.h','12',NULL,NULL),(1072,13,'R','/trunk/UAStackV1/include/shared/opcua_tcpstream.h','/branches/Linux/include/shared/opcua_tcpstream.h','12',NULL,NULL),(1073,13,'R','/trunk/UAStackV1/include/shared/opcua_thread.h','/branches/Linux/include/shared/opcua_thread.h','12',NULL,NULL),(1074,13,'R','/trunk/UAStackV1/include/shared/opcua_threadpool.h','/branches/Linux/include/shared/opcua_threadpool.h','12',NULL,NULL),(1075,13,'R','/trunk/UAStackV1/include/shared/opcua_timer.h','/branches/Linux/include/shared/opcua_timer.h','12',NULL,NULL),(1076,13,'R','/trunk/UAStackV1/include/shared/opcua_trace.h','/branches/Linux/include/shared/opcua_trace.h','12',NULL,NULL),(1077,13,'R','/trunk/UAStackV1/include/shared/opcua_types.h','/branches/Linux/include/shared/opcua_types.h','12',NULL,NULL),(1078,13,'R','/trunk/UAStackV1/include/shared/opcua_utilities.h','/branches/Linux/include/shared/opcua_utilities.h','12',NULL,NULL),(1079,13,'R','/trunk/UAStackV1/include/shared/opcua_xmldefs.h','/branches/Linux/include/shared/opcua_xmldefs.h','12',NULL,NULL),(1080,13,'R','/trunk/UAStackV1/include/shared/opcua_xmlencoder.h','/branches/Linux/include/shared/opcua_xmlencoder.h','12',NULL,NULL),(1081,13,'R','/trunk/UAStackV1/include/shared/opcua_xmlencoderinternal.h','/branches/Linux/include/shared/opcua_xmlencoderinternal.h','12',NULL,NULL),(1082,13,'R','/trunk/UAStackV1/include/shared/opcua_xmlreader.h','/branches/Linux/include/shared/opcua_xmlreader.h','12',NULL,NULL),(1083,13,'R','/trunk/UAStackV1/include/shared/opcua_xmlwriter.h','/branches/Linux/include/shared/opcua_xmlwriter.h','12',NULL,NULL),(1084,13,'R','/trunk/UAStackV1/include/shared/resource.h','/branches/Linux/include/shared/resource.h','12',NULL,NULL),(1085,14,'M','/branches/Linux/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(1086,14,'M','/branches/Linux/source/opcua_channel.c',NULL,NULL,NULL,NULL),(1087,14,'M','/branches/Linux/source/opcua_memory.c',NULL,NULL,NULL,NULL),(1088,14,'M','/branches/Linux/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(1089,14,'M','/branches/Linux/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(1090,14,'M','/branches/Linux/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(1091,14,'M','/branches/Linux/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(1092,14,'M','/branches/Linux/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(1093,14,'M','/branches/Linux/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(1094,14,'M','/branches/Linux/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(1095,14,'M','/branches/Linux/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(1096,14,'M','/branches/Linux/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(1097,15,'M','/branches/Linux/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(1098,15,'M','/branches/Linux/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(1099,15,'M','/branches/Linux/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(1100,15,'M','/branches/Linux/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(1101,15,'M','/branches/Linux/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(1102,15,'M','/branches/Linux/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(1103,15,'M','/branches/Linux/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(1104,15,'M','/branches/Linux/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(1105,15,'M','/branches/Linux/source/opcua_types.c',NULL,NULL,NULL,NULL),(1106,16,'M','/trunk/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(1107,16,'M','/trunk/UAStackV1/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(1108,17,'D','/trunk/UAStackV1/source/opcua_p_openssl_nosecurity.c',NULL,NULL,NULL,NULL),(1109,17,'D','/trunk/UAStackV1/source/opcua_p_os.c',NULL,NULL,NULL,NULL),(1110,18,'M','/branches/Linux/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(1111,19,'R','/trunk/UAStackV1/source/Wince6','/branches/Linux/source/Wince6','18',NULL,NULL),(1112,19,'R','/trunk/UAStackV1/source/opcua_asynccallstate.c','/branches/Linux/source/opcua_asynccallstate.c','18',NULL,NULL),(1113,19,'R','/trunk/UAStackV1/source/opcua_base64.c','/branches/Linux/source/opcua_base64.c','18',NULL,NULL),(1114,19,'R','/trunk/UAStackV1/source/opcua_binarydecoder.c','/branches/Linux/source/opcua_binarydecoder.c','18',NULL,NULL),(1115,19,'R','/trunk/UAStackV1/source/opcua_binaryencoder.c','/branches/Linux/source/opcua_binaryencoder.c','18',NULL,NULL),(1116,19,'R','/trunk/UAStackV1/source/opcua_buffer.c','/branches/Linux/source/opcua_buffer.c','18',NULL,NULL),(1117,19,'R','/trunk/UAStackV1/source/opcua_builtintypes.c','/branches/Linux/source/opcua_builtintypes.c','18',NULL,NULL),(1118,19,'R','/trunk/UAStackV1/source/opcua_channel.c','/branches/Linux/source/opcua_channel.c','18',NULL,NULL),(1119,19,'R','/trunk/UAStackV1/source/opcua_clientapi.c','/branches/Linux/source/opcua_clientapi.c','18',NULL,NULL),(1120,19,'R','/trunk/UAStackV1/source/opcua_connection.c','/branches/Linux/source/opcua_connection.c','18',NULL,NULL),(1121,19,'R','/trunk/UAStackV1/source/opcua_core.c','/branches/Linux/source/opcua_core.c','18',NULL,NULL),(1122,19,'R','/trunk/UAStackV1/source/opcua_crypto.c','/branches/Linux/source/opcua_crypto.c','18',NULL,NULL),(1123,19,'R','/trunk/UAStackV1/source/opcua_datetime.c','/branches/Linux/source/opcua_datetime.c','18',NULL,NULL),(1124,19,'R','/trunk/UAStackV1/source/opcua_decoder.c','/branches/Linux/source/opcua_decoder.c','18',NULL,NULL),(1125,19,'R','/trunk/UAStackV1/source/opcua_encodeableobject.c','/branches/Linux/source/opcua_encodeableobject.c','18',NULL,NULL),(1126,19,'R','/trunk/UAStackV1/source/opcua_encoder.c','/branches/Linux/source/opcua_encoder.c','18',NULL,NULL),(1127,19,'R','/trunk/UAStackV1/source/opcua_endpoint.c','/branches/Linux/source/opcua_endpoint.c','18',NULL,NULL),(1128,19,'R','/trunk/UAStackV1/source/opcua_endpoint_ex.c','/branches/Linux/source/opcua_endpoint_ex.c','18',NULL,NULL),(1129,19,'R','/trunk/UAStackV1/source/opcua_enumeratedtype.c','/branches/Linux/source/opcua_enumeratedtype.c','18',NULL,NULL),(1130,19,'R','/trunk/UAStackV1/source/opcua_extensionobject.c','/branches/Linux/source/opcua_extensionobject.c','18',NULL,NULL),(1131,19,'R','/trunk/UAStackV1/source/opcua_guid.c','/branches/Linux/source/opcua_guid.c','18',NULL,NULL),(1132,19,'R','/trunk/UAStackV1/source/opcua_http_internal.c','/branches/Linux/source/opcua_http_internal.c','18',NULL,NULL),(1133,19,'R','/trunk/UAStackV1/source/opcua_httpconnection.c','/branches/Linux/source/opcua_httpconnection.c','18',NULL,NULL),(1134,19,'R','/trunk/UAStackV1/source/opcua_httpconnection_securityproxy.c','/branches/Linux/source/opcua_httpconnection_securityproxy.c','18',NULL,NULL),(1135,19,'R','/trunk/UAStackV1/source/opcua_httplistener.c','/branches/Linux/source/opcua_httplistener.c','18',NULL,NULL),(1136,19,'R','/trunk/UAStackV1/source/opcua_httplistener_connectionmanager.c','/branches/Linux/source/opcua_httplistener_connectionmanager.c','18',NULL,NULL),(1137,19,'R','/trunk/UAStackV1/source/opcua_httplistener_securitystub.c','/branches/Linux/source/opcua_httplistener_securitystub.c','18',NULL,NULL),(1138,19,'R','/trunk/UAStackV1/source/opcua_https_connection.c','/branches/Linux/source/opcua_https_connection.c','18',NULL,NULL),(1139,19,'R','/trunk/UAStackV1/source/opcua_https_secureconnection.c','/branches/Linux/source/opcua_https_secureconnection.c','18',NULL,NULL),(1140,19,'R','/trunk/UAStackV1/source/opcua_httpstream.c','/branches/Linux/source/opcua_httpstream.c','18',NULL,NULL),(1141,19,'R','/trunk/UAStackV1/source/opcua_list.c','/branches/Linux/source/opcua_list.c','18',NULL,NULL),(1142,19,'R','/trunk/UAStackV1/source/opcua_listener.c','/branches/Linux/source/opcua_listener.c','18',NULL,NULL),(1143,19,'R','/trunk/UAStackV1/source/opcua_memory.c','/branches/Linux/source/opcua_memory.c','18',NULL,NULL),(1144,19,'R','/trunk/UAStackV1/source/opcua_memorystream.c','/branches/Linux/source/opcua_memorystream.c','18',NULL,NULL),(1145,19,'R','/trunk/UAStackV1/source/opcua_messagecontext.c','/branches/Linux/source/opcua_messagecontext.c','18',NULL,NULL),(1146,19,'R','/trunk/UAStackV1/source/opcua_p_binary.c','/branches/Linux/source/opcua_p_binary.c','18',NULL,NULL),(1147,19,'R','/trunk/UAStackV1/source/opcua_p_cryptofactory.c','/branches/Linux/source/opcua_p_cryptofactory.c','18',NULL,NULL),(1148,19,'R','/trunk/UAStackV1/source/opcua_p_datetime.c','/branches/Linux/source/opcua_p_datetime.c','18',NULL,NULL),(1149,19,'R','/trunk/UAStackV1/source/opcua_p_guid.c','/branches/Linux/source/opcua_p_guid.c','18',NULL,NULL),(1150,19,'R','/trunk/UAStackV1/source/opcua_p_interface.c','/branches/Linux/source/opcua_p_interface.c','18',NULL,NULL),(1151,19,'R','/trunk/UAStackV1/source/opcua_p_internal.c','/branches/Linux/source/opcua_p_internal.c','18',NULL,NULL),(1152,19,'R','/trunk/UAStackV1/source/opcua_p_libxml2.c','/branches/Linux/source/opcua_p_libxml2.c','18',NULL,NULL),(1153,19,'R','/trunk/UAStackV1/source/opcua_p_memory.c','/branches/Linux/source/opcua_p_memory.c','18',NULL,NULL),(1154,19,'R','/trunk/UAStackV1/source/opcua_p_mutex.c','/branches/Linux/source/opcua_p_mutex.c','18',NULL,NULL),(1155,19,'R','/trunk/UAStackV1/source/opcua_p_openssl.c','/branches/Linux/source/opcua_p_openssl.c','18',NULL,NULL),(1156,19,'R','/trunk/UAStackV1/source/opcua_p_openssl_3des.c','/branches/Linux/source/opcua_p_openssl_3des.c','18',NULL,NULL),(1157,19,'R','/trunk/UAStackV1/source/opcua_p_openssl_aes.c','/branches/Linux/source/opcua_p_openssl_aes.c','18',NULL,NULL),(1158,19,'R','/trunk/UAStackV1/source/opcua_p_openssl_ecdsa.c','/branches/Linux/source/opcua_p_openssl_ecdsa.c','18',NULL,NULL),(1159,19,'R','/trunk/UAStackV1/source/opcua_p_openssl_hmac_sha.c','/branches/Linux/source/opcua_p_openssl_hmac_sha.c','18',NULL,NULL),(1160,19,'R','/trunk/UAStackV1/source/opcua_p_openssl_pki.c','/branches/Linux/source/opcua_p_openssl_pki.c','18',NULL,NULL),(1161,19,'R','/trunk/UAStackV1/source/opcua_p_openssl_random.c','/branches/Linux/source/opcua_p_openssl_random.c','18',NULL,NULL),(1162,19,'R','/trunk/UAStackV1/source/opcua_p_openssl_rsa.c','/branches/Linux/source/opcua_p_openssl_rsa.c','18',NULL,NULL),(1163,19,'R','/trunk/UAStackV1/source/opcua_p_openssl_sha.c','/branches/Linux/source/opcua_p_openssl_sha.c','18',NULL,NULL),(1164,19,'R','/trunk/UAStackV1/source/opcua_p_openssl_x509.c','/branches/Linux/source/opcua_p_openssl_x509.c','18',NULL,NULL),(1165,19,'R','/trunk/UAStackV1/source/opcua_p_pki_nosecurity.c','/branches/Linux/source/opcua_p_pki_nosecurity.c','18',NULL,NULL),(1166,19,'R','/trunk/UAStackV1/source/opcua_p_pkifactory.c','/branches/Linux/source/opcua_p_pkifactory.c','18',NULL,NULL),(1167,19,'R','/trunk/UAStackV1/source/opcua_p_securitypolicy_none.c','/branches/Linux/source/opcua_p_securitypolicy_none.c','18',NULL,NULL),(1168,19,'R','/trunk/UAStackV1/source/opcua_p_semaphore.c','/branches/Linux/source/opcua_p_semaphore.c','18',NULL,NULL),(1169,19,'R','/trunk/UAStackV1/source/opcua_p_socket.c','/branches/Linux/source/opcua_p_socket.c','18',NULL,NULL),(1170,19,'R','/trunk/UAStackV1/source/opcua_p_socket_interface.c','/branches/Linux/source/opcua_p_socket_interface.c','18',NULL,NULL),(1171,19,'R','/trunk/UAStackV1/source/opcua_p_socket_internal.c','/branches/Linux/source/opcua_p_socket_internal.c','18',NULL,NULL),(1172,19,'R','/trunk/UAStackV1/source/opcua_p_string.c','/branches/Linux/source/opcua_p_string.c','18',NULL,NULL),(1173,19,'R','/trunk/UAStackV1/source/opcua_p_thread.c','/branches/Linux/source/opcua_p_thread.c','18',NULL,NULL),(1174,19,'R','/trunk/UAStackV1/source/opcua_p_timer.c','/branches/Linux/source/opcua_p_timer.c','18',NULL,NULL),(1175,19,'R','/trunk/UAStackV1/source/opcua_p_trace.c','/branches/Linux/source/opcua_p_trace.c','18',NULL,NULL),(1176,19,'R','/trunk/UAStackV1/source/opcua_p_utilities.c','/branches/Linux/source/opcua_p_utilities.c','18',NULL,NULL),(1177,19,'R','/trunk/UAStackV1/source/opcua_p_win32_pki.c','/branches/Linux/source/opcua_p_win32_pki.c','18',NULL,NULL),(1178,19,'R','/trunk/UAStackV1/source/opcua_p_wincrypt_random.c','/branches/Linux/source/opcua_p_wincrypt_random.c','18',NULL,NULL),(1179,19,'R','/trunk/UAStackV1/source/opcua_proxystub.c','/branches/Linux/source/opcua_proxystub.c','18',NULL,NULL),(1180,19,'R','/trunk/UAStackV1/source/opcua_securechannel.c','/branches/Linux/source/opcua_securechannel.c','18',NULL,NULL),(1181,19,'R','/trunk/UAStackV1/source/opcua_secureconnection.c','/branches/Linux/source/opcua_secureconnection.c','18',NULL,NULL),(1182,19,'R','/trunk/UAStackV1/source/opcua_securelistener.c','/branches/Linux/source/opcua_securelistener.c','18',NULL,NULL),(1183,19,'R','/trunk/UAStackV1/source/opcua_securelistener_channelmanager.c','/branches/Linux/source/opcua_securelistener_channelmanager.c','18',NULL,NULL),(1184,19,'R','/trunk/UAStackV1/source/opcua_securelistener_policymanager.c','/branches/Linux/source/opcua_securelistener_policymanager.c','18',NULL,NULL),(1185,19,'R','/trunk/UAStackV1/source/opcua_securestream.c','/branches/Linux/source/opcua_securestream.c','18',NULL,NULL),(1186,19,'R','/trunk/UAStackV1/source/opcua_serverapi.c','/branches/Linux/source/opcua_serverapi.c','18',NULL,NULL),(1187,19,'R','/trunk/UAStackV1/source/opcua_servicetable.c','/branches/Linux/source/opcua_servicetable.c','18',NULL,NULL),(1188,19,'R','/trunk/UAStackV1/source/opcua_stream.c','/branches/Linux/source/opcua_stream.c','18',NULL,NULL),(1189,19,'R','/trunk/UAStackV1/source/opcua_string.c','/branches/Linux/source/opcua_string.c','18',NULL,NULL),(1190,19,'R','/trunk/UAStackV1/source/opcua_stringtable.c','/branches/Linux/source/opcua_stringtable.c','18',NULL,NULL),(1191,19,'R','/trunk/UAStackV1/source/opcua_tcpconnection.c','/branches/Linux/source/opcua_tcpconnection.c','18',NULL,NULL),(1192,19,'R','/trunk/UAStackV1/source/opcua_tcplistener.c','/branches/Linux/source/opcua_tcplistener.c','18',NULL,NULL),(1193,19,'R','/trunk/UAStackV1/source/opcua_tcplistener_connectionmanager.c','/branches/Linux/source/opcua_tcplistener_connectionmanager.c','18',NULL,NULL),(1194,19,'R','/trunk/UAStackV1/source/opcua_tcpsecurechannel.c','/branches/Linux/source/opcua_tcpsecurechannel.c','18',NULL,NULL),(1195,19,'R','/trunk/UAStackV1/source/opcua_tcpstream.c','/branches/Linux/source/opcua_tcpstream.c','18',NULL,NULL),(1196,19,'R','/trunk/UAStackV1/source/opcua_thread.c','/branches/Linux/source/opcua_thread.c','18',NULL,NULL),(1197,19,'R','/trunk/UAStackV1/source/opcua_threadpool.c','/branches/Linux/source/opcua_threadpool.c','18',NULL,NULL),(1198,19,'R','/trunk/UAStackV1/source/opcua_timer.c','/branches/Linux/source/opcua_timer.c','18',NULL,NULL),(1199,19,'R','/trunk/UAStackV1/source/opcua_trace.c','/branches/Linux/source/opcua_trace.c','18',NULL,NULL),(1200,19,'R','/trunk/UAStackV1/source/opcua_types.c','/branches/Linux/source/opcua_types.c','18',NULL,NULL),(1201,19,'R','/trunk/UAStackV1/source/opcua_utilities.c','/branches/Linux/source/opcua_utilities.c','18',NULL,NULL),(1202,19,'R','/trunk/UAStackV1/source/opcua_xmldecoder.c','/branches/Linux/source/opcua_xmldecoder.c','18',NULL,NULL),(1203,19,'R','/trunk/UAStackV1/source/opcua_xmlencoder.c','/branches/Linux/source/opcua_xmlencoder.c','18',NULL,NULL),(1204,19,'R','/trunk/UAStackV1/source/opcua_xmlreader.c','/branches/Linux/source/opcua_xmlreader.c','18',NULL,NULL),(1205,19,'R','/trunk/UAStackV1/source/opcua_xmlwriter.c','/branches/Linux/source/opcua_xmlwriter.c','18',NULL,NULL),(1206,20,'M','/trunk',NULL,NULL,NULL,NULL),(1207,20,'M','/trunk/Lib/win32/uastackd.lib',NULL,NULL,NULL,NULL),(1208,20,'M','/trunk/UAStackV1',NULL,NULL,NULL,NULL),(1209,20,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(1210,20,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(1211,20,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(1212,20,'M','/trunk/UAStackV1/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(1213,21,'D','/trunk/Debug',NULL,NULL,NULL,NULL),(1214,22,'M','/trunk/OpcUAStackV1.suo',NULL,NULL,NULL,NULL),(1215,23,'D','/trunk/OpcUAStackV1.ncb',NULL,NULL,NULL,NULL),(1216,24,'D','/trunk/UAStackV1/CertificateStore',NULL,NULL,NULL,NULL),(1217,25,'D','/trunk/UAStackV1/UAStackV1.aps',NULL,NULL,NULL,NULL),(1218,25,'D','/trunk/UAStackV1/UAStackV1.vcproj.4CE-INDUSTRY-NB.Michel.user',NULL,NULL,NULL,NULL),(1219,25,'D','/trunk/UAStackV1/dirlist',NULL,NULL,NULL,NULL),(1220,26,'D','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(1221,27,'A','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(1222,28,'M','/trunk/UAStackV1',NULL,NULL,NULL,NULL),(1223,28,'D','/trunk/UAStackV1/ReadMe.txt',NULL,NULL,NULL,NULL),(1224,29,'A','/InformationModel',NULL,NULL,NULL,NULL),(1225,29,'A','/InformationModel/trunk',NULL,NULL,NULL,NULL),(1226,30,'A','/InformationModel/trunk/Information Model.sln',NULL,NULL,NULL,NULL),(1227,31,'A','/EDF-MAPE',NULL,NULL,NULL,NULL),(1228,31,'A','/EDF-MAPE/trunk',NULL,NULL,NULL,NULL),(1229,32,'A','/EDF-MAPE/trunk/EDF-MAPE.vcproj',NULL,NULL,NULL,NULL),(1230,32,'A','/EDF-MAPE/trunk/MAPE_TYPE.xml',NULL,NULL,NULL,NULL),(1231,32,'A','/EDF-MAPE/trunk/Renardieres.xml',NULL,NULL,NULL,NULL),(1232,33,'D','/EDF-MAPE',NULL,NULL,NULL,NULL),(1233,34,'A','/trunk',NULL,NULL,NULL,NULL),(1234,35,'A','/trunk/MAPE_TYPE.xml',NULL,NULL,NULL,NULL),(1235,35,'A','/trunk/Renardieres.xml',NULL,NULL,NULL,NULL),(1236,35,'A','/trunk/mape.vcproj',NULL,NULL,NULL,NULL),(1237,36,'A','/trunk',NULL,NULL,NULL,NULL),(1238,37,'A','/trunk/ISA95.vcproj',NULL,NULL,NULL,NULL),(1239,37,'A','/trunk/S95_Types.xml',NULL,NULL,NULL,NULL),(1240,38,'A','/trunk',NULL,NULL,NULL,NULL),(1241,39,'A','/trunk/OPCUA_RTE2.xsd',NULL,NULL,NULL,NULL),(1242,39,'A','/trunk/REPERES.XML',NULL,NULL,NULL,NULL),(1243,39,'A','/trunk/RTE.vcproj',NULL,NULL,NULL,NULL),(1244,39,'A','/trunk/RTE_Instance001.xml',NULL,NULL,NULL,NULL),(1245,39,'A','/trunk/RTE_Type.xml',NULL,NULL,NULL,NULL),(1246,40,'A','/trunk',NULL,NULL,NULL,NULL),(1247,41,'A','/trunk/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(1248,41,'A','/trunk/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(1249,41,'A','/trunk/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(1250,41,'A','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(1251,41,'A','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(1252,41,'A','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(1253,41,'A','/trunk/Alias.h',NULL,NULL,NULL,NULL),(1254,41,'A','/trunk/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(1255,41,'A','/trunk/Config',NULL,NULL,NULL,NULL),(1256,41,'A','/trunk/Config/Boiler.NodeSet2.xml',NULL,NULL,NULL,NULL),(1257,41,'A','/trunk/Config/BoilerSimulation.xml',NULL,NULL,NULL,NULL),(1258,41,'A','/trunk/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(1259,41,'A','/trunk/Config/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(1260,41,'A','/trunk/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(1261,41,'A','/trunk/Config/Schema',NULL,NULL,NULL,NULL),(1262,41,'A','/trunk/Config/Schema/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(1263,41,'A','/trunk/Config/Schema/UANodeSet.xsd',NULL,NULL,NULL,NULL),(1264,41,'A','/trunk/Config/Schema/UAVariant.xsd',NULL,NULL,NULL,NULL),(1265,41,'A','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(1266,41,'A','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(1267,41,'A','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(1268,41,'A','/trunk/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(1269,41,'A','/trunk/NamespaceUri.h',NULL,NULL,NULL,NULL),(1270,41,'A','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(1271,41,'A','/trunk/OPCUA_CPP_QuickServer.sln',NULL,NULL,NULL,NULL),(1272,41,'A','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(1273,41,'A','/trunk/QueueRequest.cpp',NULL,NULL,NULL,NULL),(1274,41,'A','/trunk/QueueRequest.h',NULL,NULL,NULL,NULL),(1275,41,'A','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(1276,41,'A','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(1277,41,'A','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(1278,41,'A','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(1279,41,'A','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(1280,41,'A','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(1281,41,'A','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(1282,41,'A','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(1283,41,'A','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(1284,41,'A','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(1285,41,'A','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(1286,41,'A','/trunk/SimulatedGroup.h',NULL,NULL,NULL,NULL),(1287,41,'A','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(1288,41,'A','/trunk/SimulatedNode.h',NULL,NULL,NULL,NULL),(1289,41,'A','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(1290,41,'A','/trunk/StackCallbacks.h',NULL,NULL,NULL,NULL),(1291,41,'A','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(1292,41,'A','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(1293,41,'A','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(1294,41,'A','/trunk/UABase.h',NULL,NULL,NULL,NULL),(1295,41,'A','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(1296,41,'A','/trunk/UABinding.h',NULL,NULL,NULL,NULL),(1297,41,'A','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(1298,41,'A','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(1299,41,'A','/trunk/UADataType.cpp',NULL,NULL,NULL,NULL),(1300,41,'A','/trunk/UADataType.h',NULL,NULL,NULL,NULL),(1301,41,'A','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(1302,41,'A','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(1303,41,'A','/trunk/UAMethod.cpp',NULL,NULL,NULL,NULL),(1304,41,'A','/trunk/UAMethod.h',NULL,NULL,NULL,NULL),(1305,41,'A','/trunk/UAObject.cpp',NULL,NULL,NULL,NULL),(1306,41,'A','/trunk/UAObject.h',NULL,NULL,NULL,NULL),(1307,41,'A','/trunk/UAObjectType.cpp',NULL,NULL,NULL,NULL),(1308,41,'A','/trunk/UAObjectType.h',NULL,NULL,NULL,NULL),(1309,41,'A','/trunk/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(1310,41,'A','/trunk/UAReferenceType.h',NULL,NULL,NULL,NULL),(1311,41,'A','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(1312,41,'A','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(1313,41,'A','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(1314,41,'A','/trunk/UAVariableType.h',NULL,NULL,NULL,NULL),(1315,41,'A','/trunk/UAView.cpp',NULL,NULL,NULL,NULL),(1316,41,'A','/trunk/UAView.h',NULL,NULL,NULL,NULL),(1317,41,'A','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(1318,41,'A','/trunk/VPIScheduler.h',NULL,NULL,NULL,NULL),(1319,41,'A','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(1320,41,'A','/trunk/resource.h',NULL,NULL,NULL,NULL),(1321,41,'A','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(1322,41,'A','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(1323,41,'A','/trunk/targetver.h',NULL,NULL,NULL,NULL),(1324,42,'A','/trunk',NULL,NULL,NULL,NULL),(1325,43,'A','/trunk/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(1326,43,'A','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(1327,43,'A','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(1328,43,'A','/trunk/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(1329,43,'A','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(1330,43,'A','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(1331,43,'A','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(1332,43,'A','/trunk/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(1333,43,'A','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(1334,43,'A','/trunk/MonitoredItemQueue.cpp',NULL,NULL,NULL,NULL),(1335,43,'A','/trunk/NumericRange.cpp',NULL,NULL,NULL,NULL),(1336,43,'A','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(1337,43,'A','/trunk/SessionBase.cpp',NULL,NULL,NULL,NULL),(1338,43,'A','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(1339,43,'A','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(1340,43,'A','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(1341,43,'A','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(1342,43,'A','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(1343,43,'A','/trunk/targetver.h',NULL,NULL,NULL,NULL),(1344,44,'A','/trunk/include',NULL,NULL,NULL,NULL),(1345,44,'A','/trunk/include/AggregateCalculator.h',NULL,NULL,NULL,NULL),(1346,44,'A','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(1347,44,'A','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(1348,44,'A','/trunk/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(1349,44,'A','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(1350,44,'A','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(1351,44,'A','/trunk/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(1352,44,'A','/trunk/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(1353,44,'A','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(1354,44,'A','/trunk/include/MonitoredItemQueue.h',NULL,NULL,NULL,NULL),(1355,44,'A','/trunk/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(1356,44,'A','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(1357,44,'A','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(1358,44,'A','/trunk/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(1359,44,'A','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(1360,44,'A','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(1361,44,'A','/trunk/include/cslock.h',NULL,NULL,NULL,NULL),(1362,44,'A','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(1363,45,'A','/trunk',NULL,NULL,NULL,NULL),(1364,46,'A','/trunk/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(1365,46,'A','/trunk/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(1366,46,'A','/trunk/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(1367,46,'A','/trunk/XMLSAXParser.def',NULL,NULL,NULL,NULL),(1368,46,'A','/trunk/XMLSAXParser.sln',NULL,NULL,NULL,NULL),(1369,46,'A','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(1370,46,'A','/trunk/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(1371,46,'A','/trunk/XmlShared',NULL,NULL,NULL,NULL),(1372,46,'A','/trunk/XmlShared/ascii.h',NULL,NULL,NULL,NULL),(1373,46,'A','/trunk/XmlShared/expat.h',NULL,NULL,NULL,NULL),(1374,46,'A','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(1375,46,'A','/trunk/XmlShared/xmlop.h',NULL,NULL,NULL,NULL),(1376,46,'A','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(1377,46,'A','/trunk/XmlShared/xmlrole.c',NULL,NULL,NULL,NULL),(1378,46,'A','/trunk/XmlShared/xmlrole.h',NULL,NULL,NULL,NULL),(1379,46,'A','/trunk/XmlShared/xmltok.c',NULL,NULL,NULL,NULL),(1380,46,'A','/trunk/XmlShared/xmltok.h',NULL,NULL,NULL,NULL),(1381,46,'A','/trunk/XmlShared/xmltok_impl.h',NULL,NULL,NULL,NULL),(1382,46,'A','/trunk/XmlShared/xmltok_ns.c',NULL,NULL,NULL,NULL),(1383,46,'A','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(1384,46,'A','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(1385,47,'A','/trunk',NULL,NULL,NULL,NULL),(1386,48,'A','/trunk/VPIBinClient',NULL,NULL,NULL,NULL),(1387,48,'A','/trunk/VPIBinClient.sln',NULL,NULL,NULL,NULL),(1388,48,'A','/trunk/VPIBinClient/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(1389,48,'A','/trunk/VPIBinClient/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(1390,48,'A','/trunk/VPIBinClient/EntryPoints.cpp',NULL,NULL,NULL,NULL),(1391,48,'A','/trunk/VPIBinClient/RtSocket.cpp',NULL,NULL,NULL,NULL),(1392,48,'A','/trunk/VPIBinClient/RtSocket.h',NULL,NULL,NULL,NULL),(1393,48,'A','/trunk/VPIBinClient/SourceObject.cpp',NULL,NULL,NULL,NULL),(1394,48,'A','/trunk/VPIBinClient/SourceObject.h',NULL,NULL,NULL,NULL),(1395,48,'A','/trunk/VPIBinClient/TrameBinaireGenerator.cpp',NULL,NULL,NULL,NULL),(1396,48,'A','/trunk/VPIBinClient/TrameBinaireGenerator.h',NULL,NULL,NULL,NULL),(1397,48,'A','/trunk/VPIBinClient/VPIBinClient.cpp',NULL,NULL,NULL,NULL),(1398,48,'A','/trunk/VPIBinClient/VPIBinClient.def',NULL,NULL,NULL,NULL),(1399,48,'A','/trunk/VPIBinClient/VPIBinClient.h',NULL,NULL,NULL,NULL),(1400,48,'A','/trunk/VPIBinClient/VPIBinClient.rc',NULL,NULL,NULL,NULL),(1401,48,'A','/trunk/VPIBinClient/VPIBinClient.vcproj',NULL,NULL,NULL,NULL),(1402,48,'A','/trunk/VPIBinClient/VpiDataTypes.h',NULL,NULL,NULL,NULL),(1403,48,'A','/trunk/VPIBinClient/VpiInternal.cpp',NULL,NULL,NULL,NULL),(1404,48,'A','/trunk/VPIBinClient/VpiInternal.h',NULL,NULL,NULL,NULL),(1405,48,'A','/trunk/VPIBinClient/dllmain.cpp',NULL,NULL,NULL,NULL),(1406,48,'A','/trunk/VPIBinClient/resource.h',NULL,NULL,NULL,NULL),(1407,48,'A','/trunk/VPIBinClient/stdafx.cpp',NULL,NULL,NULL,NULL),(1408,48,'A','/trunk/VPIBinClient/stdafx.h',NULL,NULL,NULL,NULL),(1409,48,'A','/trunk/VPIBinClient/targetver.h',NULL,NULL,NULL,NULL),(1410,49,'M','/trunk/VPIBinClient/VPIBinClient.vcproj',NULL,NULL,NULL,NULL),(1411,50,'M','/trunk/VPIBinClient/VPIBinClient.vcproj',NULL,NULL,NULL,NULL),(1412,51,'A','/trunk/BaseS95Model',NULL,NULL,NULL,NULL),(1413,51,'A','/trunk/BaseS95Model/Yokogawa.B2MML.Types.NodeSet2.xml',NULL,NULL,NULL,NULL),(1414,51,'A','/trunk/Company95Model',NULL,NULL,NULL,NULL),(1415,51,'A','/trunk/Company95Model/Yokogawa.B2MML.Company.NodeSet2.xml',NULL,NULL,NULL,NULL),(1416,52,'A','/trunk',NULL,NULL,NULL,NULL),(1417,53,'A','/trunk/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(1418,53,'A','/trunk/Vpis.sln',NULL,NULL,NULL,NULL),(1419,53,'A','/trunk/include',NULL,NULL,NULL,NULL),(1420,53,'A','/trunk/include/VPI.h',NULL,NULL,NULL,NULL),(1421,53,'A','/trunk/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(1422,53,'A','/trunk/include/cslock.h',NULL,NULL,NULL,NULL),(1423,54,'M','/trunk/VPIBinClient/VPIBinClient.vcproj',NULL,NULL,NULL,NULL),(1424,55,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(1425,56,'A','/trunk/UAStackV1/.cproject',NULL,NULL,NULL,NULL),(1426,56,'A','/trunk/UAStackV1/.project',NULL,NULL,NULL,NULL),(1427,56,'M','/trunk/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(1428,56,'A','/trunk/UAStackV1/build',NULL,NULL,NULL,NULL),(1429,56,'A','/trunk/UAStackV1/build/CMakeCache.txt',NULL,NULL,NULL,NULL),(1430,56,'A','/trunk/UAStackV1/build/CMakeFiles',NULL,NULL,NULL,NULL),(1431,56,'A','/trunk/UAStackV1/build/CMakeFiles/CMakeCCompiler.cmake',NULL,NULL,NULL,NULL),(1432,56,'A','/trunk/UAStackV1/build/CMakeFiles/CMakeCXXCompiler.cmake',NULL,NULL,NULL,NULL),(1433,56,'A','/trunk/UAStackV1/build/CMakeFiles/CMakeDetermineCompilerABI_C.bin',NULL,NULL,NULL,NULL),(1434,56,'A','/trunk/UAStackV1/build/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin',NULL,NULL,NULL,NULL),(1435,56,'A','/trunk/UAStackV1/build/CMakeFiles/CMakeDirectoryInformation.cmake',NULL,NULL,NULL,NULL),(1436,56,'A','/trunk/UAStackV1/build/CMakeFiles/CMakeSystem.cmake',NULL,NULL,NULL,NULL),(1437,56,'A','/trunk/UAStackV1/build/CMakeFiles/CMakeTmp',NULL,NULL,NULL,NULL),(1438,56,'A','/trunk/UAStackV1/build/CMakeFiles/CMakeTmp/CMakeFiles',NULL,NULL,NULL,NULL),(1439,56,'A','/trunk/UAStackV1/build/CMakeFiles/CMakeTmp/CMakeFiles/cmTryCompileExec.dir',NULL,NULL,NULL,NULL),(1440,56,'A','/trunk/UAStackV1/build/CMakeFiles/CompilerIdC',NULL,NULL,NULL,NULL),(1441,56,'A','/trunk/UAStackV1/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c',NULL,NULL,NULL,NULL),(1442,56,'A','/trunk/UAStackV1/build/CMakeFiles/CompilerIdC/a.out',NULL,NULL,NULL,NULL),(1443,56,'A','/trunk/UAStackV1/build/CMakeFiles/CompilerIdCXX',NULL,NULL,NULL,NULL),(1444,56,'A','/trunk/UAStackV1/build/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp',NULL,NULL,NULL,NULL),(1445,56,'A','/trunk/UAStackV1/build/CMakeFiles/CompilerIdCXX/a.out',NULL,NULL,NULL,NULL),(1446,56,'A','/trunk/UAStackV1/build/CMakeFiles/Makefile.cmake',NULL,NULL,NULL,NULL),(1447,56,'A','/trunk/UAStackV1/build/CMakeFiles/Makefile2',NULL,NULL,NULL,NULL),(1448,56,'A','/trunk/UAStackV1/build/CMakeFiles/TargetDirectories.txt',NULL,NULL,NULL,NULL),(1449,56,'A','/trunk/UAStackV1/build/CMakeFiles/cmake.check_cache',NULL,NULL,NULL,NULL),(1450,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir',NULL,NULL,NULL,NULL),(1451,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/C.includecache',NULL,NULL,NULL,NULL),(1452,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/DependInfo.cmake',NULL,NULL,NULL,NULL),(1453,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/build.make',NULL,NULL,NULL,NULL),(1454,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/cmake_clean.cmake',NULL,NULL,NULL,NULL),(1455,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/depend.internal',NULL,NULL,NULL,NULL),(1456,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/depend.make',NULL,NULL,NULL,NULL),(1457,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/flags.make',NULL,NULL,NULL,NULL),(1458,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/link.txt',NULL,NULL,NULL,NULL),(1459,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/progress.make',NULL,NULL,NULL,NULL),(1460,56,'A','/trunk/UAStackV1/build/CMakeFiles/opcua_stack.dir/source',NULL,NULL,NULL,NULL),(1461,56,'A','/trunk/UAStackV1/build/CMakeFiles/progress.marks',NULL,NULL,NULL,NULL),(1462,56,'A','/trunk/UAStackV1/build/Makefile',NULL,NULL,NULL,NULL),(1463,56,'A','/trunk/UAStackV1/build/cmake_install.cmake',NULL,NULL,NULL,NULL),(1464,56,'M','/trunk/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(1465,56,'M','/trunk/UAStackV1/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(1466,56,'M','/trunk/UAStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(1467,56,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(1468,56,'M','/trunk/UAStackV1/source/opcua_memory.c',NULL,NULL,NULL,NULL),(1469,56,'M','/trunk/UAStackV1/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(1470,56,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(1471,56,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(1472,56,'M','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(1473,57,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(1474,58,'M','/trunk',NULL,NULL,NULL,NULL),(1475,58,'D','/trunk/OpcUAStackV1.suo',NULL,NULL,NULL,NULL),(1476,59,'A','/tags/beta1',NULL,NULL,NULL,NULL),(1477,60,'D','/tags/beta1',NULL,NULL,NULL,NULL),(1478,61,'A','/tags/Beta1',NULL,NULL,NULL,NULL),(1479,62,'D','/tags/Beta1',NULL,NULL,NULL,NULL),(1480,63,'A','/trunk/Config/Opc.Ua.CTT.xml',NULL,NULL,NULL,NULL),(1481,64,'A','/tags/beta1','/trunk','35',NULL,NULL),(1482,65,'A','/branches',NULL,NULL,NULL,NULL),(1483,66,'A','/branches/linux','/trunk','5',NULL,NULL),(1484,67,'M','/trunk/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(1485,68,'A','/Bacnet',NULL,NULL,NULL,NULL),(1486,69,'A','/Bacnet/Bacnet.vcproj',NULL,NULL,NULL,NULL),(1487,69,'A','/Bacnet/bacnet.xml',NULL,NULL,NULL,NULL),(1488,70,'M','/InformationModel/trunk/Information Model.sln',NULL,NULL,NULL,NULL),(1489,71,'M','/trunk/RTE.vcproj',NULL,NULL,NULL,NULL),(1490,71,'A','/trunk/VpiBinClient00200.dat',NULL,NULL,NULL,NULL),(1491,72,'A','/trunk/Opc.Ua.RTENodeSet.xml',NULL,NULL,NULL,NULL),(1492,72,'M','/trunk/RTE.vcproj',NULL,NULL,NULL,NULL),(1493,72,'A','/trunk/SubSystemRTE.xml',NULL,NULL,NULL,NULL),(1494,73,'A','/branches',NULL,NULL,NULL,NULL),(1495,74,'A','/branches/linux','/trunk','4',NULL,NULL),(1496,75,'A','/tags',NULL,NULL,NULL,NULL),(1497,76,'M','/trunk',NULL,NULL,NULL,NULL),(1498,77,'M','/trunk/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(1499,77,'M','/trunk/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(1500,77,'M','/trunk/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(1501,77,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(1502,77,'M','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(1503,77,'M','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(1504,77,'M','/trunk/Alias.h',NULL,NULL,NULL,NULL),(1505,77,'M','/trunk/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(1506,77,'A','/trunk/Config/Schema/Opc.Ua.Types.xsd',NULL,NULL,NULL,NULL),(1507,77,'M','/trunk/Config/Schema/UANodeSet.xsd',NULL,NULL,NULL,NULL),(1508,77,'A','/trunk/Definition.cpp',NULL,NULL,NULL,NULL),(1509,77,'A','/trunk/Definition.h',NULL,NULL,NULL,NULL),(1510,77,'A','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(1511,77,'A','/trunk/Field.h',NULL,NULL,NULL,NULL),(1512,77,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(1513,77,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(1514,77,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(1515,77,'M','/trunk/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(1516,77,'M','/trunk/NamespaceUri.h',NULL,NULL,NULL,NULL),(1517,77,'M','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(1518,77,'M','/trunk/OPCUA_CPP_QuickServer.sln',NULL,NULL,NULL,NULL),(1519,77,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(1520,77,'M','/trunk/QueueRequest.cpp',NULL,NULL,NULL,NULL),(1521,77,'M','/trunk/QueueRequest.h',NULL,NULL,NULL,NULL),(1522,77,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(1523,77,'M','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(1524,77,'M','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(1525,77,'M','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(1526,77,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(1527,77,'M','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(1528,77,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(1529,77,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(1530,77,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(1531,77,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(1532,77,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(1533,77,'M','/trunk/SimulatedGroup.h',NULL,NULL,NULL,NULL),(1534,77,'M','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(1535,77,'M','/trunk/SimulatedNode.h',NULL,NULL,NULL,NULL),(1536,77,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(1537,77,'M','/trunk/StackCallbacks.h',NULL,NULL,NULL,NULL),(1538,77,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(1539,77,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(1540,77,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(1541,77,'M','/trunk/UABase.h',NULL,NULL,NULL,NULL),(1542,77,'M','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(1543,77,'M','/trunk/UABinding.h',NULL,NULL,NULL,NULL),(1544,77,'M','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(1545,77,'M','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(1546,77,'M','/trunk/UADataType.cpp',NULL,NULL,NULL,NULL),(1547,77,'M','/trunk/UADataType.h',NULL,NULL,NULL,NULL),(1548,77,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(1549,77,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(1550,77,'M','/trunk/UAMethod.cpp',NULL,NULL,NULL,NULL),(1551,77,'M','/trunk/UAMethod.h',NULL,NULL,NULL,NULL),(1552,77,'M','/trunk/UAObject.cpp',NULL,NULL,NULL,NULL),(1553,77,'M','/trunk/UAObject.h',NULL,NULL,NULL,NULL),(1554,77,'M','/trunk/UAObjectType.cpp',NULL,NULL,NULL,NULL),(1555,77,'M','/trunk/UAObjectType.h',NULL,NULL,NULL,NULL),(1556,77,'M','/trunk/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(1557,77,'M','/trunk/UAReferenceType.h',NULL,NULL,NULL,NULL),(1558,77,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(1559,77,'M','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(1560,77,'M','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(1561,77,'M','/trunk/UAVariableType.h',NULL,NULL,NULL,NULL),(1562,77,'M','/trunk/UAView.cpp',NULL,NULL,NULL,NULL),(1563,77,'M','/trunk/UAView.h',NULL,NULL,NULL,NULL),(1564,77,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(1565,77,'M','/trunk/VPIScheduler.h',NULL,NULL,NULL,NULL),(1566,77,'M','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(1567,77,'M','/trunk/resource.h',NULL,NULL,NULL,NULL),(1568,77,'M','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(1569,77,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(1570,77,'M','/trunk/targetver.h',NULL,NULL,NULL,NULL),(1571,78,'M','/trunk/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(1572,78,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(1573,78,'A','/trunk/BuildInfo.cpp',NULL,NULL,NULL,NULL),(1574,78,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(1575,78,'M','/trunk/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(1576,78,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(1577,78,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(1578,78,'M','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(1579,78,'M','/trunk/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(1580,78,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(1581,78,'M','/trunk/MonitoredItemQueue.cpp',NULL,NULL,NULL,NULL),(1582,78,'M','/trunk/NumericRange.cpp',NULL,NULL,NULL,NULL),(1583,78,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(1584,78,'A','/trunk/ServerStatus.cpp',NULL,NULL,NULL,NULL),(1585,78,'M','/trunk/SessionBase.cpp',NULL,NULL,NULL,NULL),(1586,78,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(1587,78,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(1588,78,'M','/trunk/include/AggregateCalculator.h',NULL,NULL,NULL,NULL),(1589,78,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(1590,78,'A','/trunk/include/BuildInfo.h',NULL,NULL,NULL,NULL),(1591,78,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(1592,78,'M','/trunk/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(1593,78,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(1594,78,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(1595,78,'M','/trunk/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(1596,78,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(1597,78,'M','/trunk/include/MonitoredItemQueue.h',NULL,NULL,NULL,NULL),(1598,78,'M','/trunk/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(1599,78,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(1600,78,'A','/trunk/include/ServerStatus.h',NULL,NULL,NULL,NULL),(1601,78,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(1602,78,'M','/trunk/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(1603,78,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(1604,78,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(1605,78,'M','/trunk/include/cslock.h',NULL,NULL,NULL,NULL),(1606,78,'M','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(1607,78,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(1608,78,'M','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(1609,78,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(1610,78,'M','/trunk/targetver.h',NULL,NULL,NULL,NULL),(1611,79,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(1612,79,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(1613,79,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(1614,79,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(1615,79,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(1616,79,'M','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(1617,80,'M','/trunk/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(1618,80,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(1619,80,'M','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(1620,80,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(1621,80,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(1622,80,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(1623,80,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(1624,80,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(1625,80,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(1626,80,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(1627,81,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(1628,81,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(1629,82,'M','/trunk/UAStackV1/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(1630,82,'M','/trunk/UAStackV1/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(1631,83,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(1632,84,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(1633,85,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(1634,86,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(1635,87,'M','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(1636,88,'M','/trunk/UAVariableType.h',NULL,NULL,NULL,NULL),(1637,89,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(1638,90,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(1639,91,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(1640,92,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(1641,93,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(1642,94,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(1643,95,'M','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(1644,96,'A','/trunk/Doc',NULL,NULL,NULL,NULL),(1645,96,'A','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(1646,97,'A','/trunk/Doc/QuickServer.cd',NULL,NULL,NULL,NULL),(1647,98,'A','/trunk/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(1648,98,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(1649,98,'M','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(1650,98,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(1651,98,'A','/trunk/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(1652,98,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(1653,98,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(1654,98,'A','/trunk/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(1655,98,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(1656,98,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(1657,98,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(1658,99,'A','/trunk/Doc',NULL,NULL,NULL,NULL),(1659,99,'A','/trunk/Doc/Analyse de la SharedLib.docx',NULL,NULL,NULL,NULL),(1660,100,'A','/trunk/UAStackV1/Doc',NULL,NULL,NULL,NULL),(1661,100,'A','/trunk/UAStackV1/Doc/Fonctionnement interne de la Stack AnsiC.docx',NULL,NULL,NULL,NULL),(1662,100,'A','/trunk/UAStackV1/Doc/OPC UA Ansi C Stack - Design Review.doc',NULL,NULL,NULL,NULL),(1663,100,'A','/trunk/UAStackV1/Doc/OPC UA AnsiC Coding Guidelines_Draft_0.9.doc',NULL,NULL,NULL,NULL),(1664,100,'A','/trunk/UAStackV1/Doc/Relations entre la Stack AnsiC et le SDK UA.docx',NULL,NULL,NULL,NULL),(1665,100,'A','/trunk/UAStackV1/Doc/Structure et type de la stack AnsiC.docx',NULL,NULL,NULL,NULL),(1666,100,'A','/trunk/UAStackV1/Doc/UA Stack API.docx',NULL,NULL,NULL,NULL),(1667,101,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(1668,102,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(1669,103,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(1670,104,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(1671,105,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(1672,106,'A','/branches',NULL,NULL,NULL,NULL),(1673,107,'A','/trunk',NULL,NULL,NULL,NULL),(1674,108,'A','/tags',NULL,NULL,NULL,NULL),(1675,109,'A','/trunk/mfcquickclient',NULL,NULL,NULL,NULL),(1676,109,'A','/trunk/mfcquickclient/ClientApplication.cpp',NULL,NULL,NULL,NULL),(1677,109,'A','/trunk/mfcquickclient/ClientApplication.h',NULL,NULL,NULL,NULL),(1678,109,'A','/trunk/mfcquickclient/ClientAttribute.h',NULL,NULL,NULL,NULL),(1679,109,'A','/trunk/mfcquickclient/ClientSession.cpp',NULL,NULL,NULL,NULL),(1680,109,'A','/trunk/mfcquickclient/ClientSession.h',NULL,NULL,NULL,NULL),(1681,109,'A','/trunk/mfcquickclient/Doc',NULL,NULL,NULL,NULL),(1682,109,'A','/trunk/mfcquickclient/Doc/Analyse du client OPC UA.docx',NULL,NULL,NULL,NULL),(1683,109,'A','/trunk/mfcquickclient/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(1684,109,'A','/trunk/mfcquickclient/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(1685,109,'A','/trunk/mfcquickclient/MonitoredItemDetailDlg.cpp',NULL,NULL,NULL,NULL),(1686,109,'A','/trunk/mfcquickclient/MonitoredItemDetailDlg.h',NULL,NULL,NULL,NULL),(1687,109,'A','/trunk/mfcquickclient/MonitoringModeDlg.cpp',NULL,NULL,NULL,NULL),(1688,109,'A','/trunk/mfcquickclient/MonitoringModeDlg.h',NULL,NULL,NULL,NULL),(1689,109,'A','/trunk/mfcquickclient/NodeClass.h',NULL,NULL,NULL,NULL),(1690,109,'A','/trunk/mfcquickclient/OPCUA_CPP_QuickClient.cpp',NULL,NULL,NULL,NULL),(1691,109,'A','/trunk/mfcquickclient/OPCUA_CPP_QuickClient.h',NULL,NULL,NULL,NULL),(1692,109,'A','/trunk/mfcquickclient/OPCUA_CPP_QuickClient.rc',NULL,NULL,NULL,NULL),(1693,109,'A','/trunk/mfcquickclient/OPCUA_CPP_QuickClientDlg.cpp',NULL,NULL,NULL,NULL),(1694,109,'A','/trunk/mfcquickclient/OPCUA_CPP_QuickClientDlg.h',NULL,NULL,NULL,NULL),(1695,109,'A','/trunk/mfcquickclient/ServerDescription.cpp',NULL,NULL,NULL,NULL),(1696,109,'A','/trunk/mfcquickclient/ServerDescription.h',NULL,NULL,NULL,NULL),(1697,109,'A','/trunk/mfcquickclient/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(1698,109,'A','/trunk/mfcquickclient/SubscriptionClient.h',NULL,NULL,NULL,NULL),(1699,109,'A','/trunk/mfcquickclient/SubscriptionParamDlg.cpp',NULL,NULL,NULL,NULL),(1700,109,'A','/trunk/mfcquickclient/SubscriptionParamDlg.h',NULL,NULL,NULL,NULL),(1701,109,'A','/trunk/mfcquickclient/UABrowserDlg.cpp',NULL,NULL,NULL,NULL),(1702,109,'A','/trunk/mfcquickclient/UABrowserDlg.h',NULL,NULL,NULL,NULL),(1703,109,'A','/trunk/mfcquickclient/UABuiltInType.h',NULL,NULL,NULL,NULL),(1704,109,'A','/trunk/mfcquickclient/WriteDlg.cpp',NULL,NULL,NULL,NULL),(1705,109,'A','/trunk/mfcquickclient/WriteDlg.h',NULL,NULL,NULL,NULL),(1706,109,'A','/trunk/mfcquickclient/mfcquickclient.vcproj',NULL,NULL,NULL,NULL),(1707,109,'A','/trunk/mfcquickclient/res',NULL,NULL,NULL,NULL),(1708,109,'A','/trunk/mfcquickclient/res/DataType.ico',NULL,NULL,NULL,NULL),(1709,109,'A','/trunk/mfcquickclient/res/FindSever.ico',NULL,NULL,NULL,NULL),(1710,109,'A','/trunk/mfcquickclient/res/Methode.ico',NULL,NULL,NULL,NULL),(1711,109,'A','/trunk/mfcquickclient/res/OPC.ico',NULL,NULL,NULL,NULL),(1712,109,'A','/trunk/mfcquickclient/res/OPCUA_CPP_QuickClient.ico',NULL,NULL,NULL,NULL),(1713,109,'A','/trunk/mfcquickclient/res/OPCUA_CPP_QuickClient.rc2',NULL,NULL,NULL,NULL),(1714,109,'A','/trunk/mfcquickclient/res/ReferenceType.ico',NULL,NULL,NULL,NULL),(1715,109,'A','/trunk/mfcquickclient/res/View.ico',NULL,NULL,NULL,NULL),(1716,109,'A','/trunk/mfcquickclient/res/object.ico',NULL,NULL,NULL,NULL),(1717,109,'A','/trunk/mfcquickclient/res/objectType.ico',NULL,NULL,NULL,NULL),(1718,109,'A','/trunk/mfcquickclient/res/unspecified.ico',NULL,NULL,NULL,NULL),(1719,109,'A','/trunk/mfcquickclient/res/variableType.ico',NULL,NULL,NULL,NULL),(1720,109,'A','/trunk/mfcquickclient/res/variables.ico',NULL,NULL,NULL,NULL),(1721,109,'A','/trunk/mfcquickclient/resource.h',NULL,NULL,NULL,NULL),(1722,109,'A','/trunk/mfcquickclient/stdafx.cpp',NULL,NULL,NULL,NULL),(1723,109,'A','/trunk/mfcquickclient/stdafx.h',NULL,NULL,NULL,NULL),(1724,109,'A','/trunk/mfcquickclient/targetver.h',NULL,NULL,NULL,NULL),(1725,110,'A','/trunk/mfcquickclient.sln',NULL,NULL,NULL,NULL),(1726,111,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(1727,111,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(1728,111,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(1729,111,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(1730,111,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(1731,112,'M','/trunk/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(1732,112,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(1733,112,'M','/trunk/Field.h',NULL,NULL,NULL,NULL),(1734,112,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(1735,112,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(1736,112,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(1737,112,'M','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(1738,112,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(1739,112,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(1740,112,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(1741,112,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(1742,112,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(1743,112,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(1744,112,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(1745,112,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(1746,112,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(1747,112,'M','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(1748,113,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(1749,113,'M','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(1750,114,'A','/trunk/VPIBinClient/VPIBinClient',NULL,NULL,NULL,NULL),(1751,114,'A','/trunk/VPIBinClient/VPIBinClient.sln',NULL,NULL,NULL,NULL),(1752,114,'A','/trunk/VPIBinClient/VPIBinClient/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(1753,114,'A','/trunk/VPIBinClient/VPIBinClient/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(1754,114,'A','/trunk/VPIBinClient/VPIBinClient/EntryPoints.cpp',NULL,NULL,NULL,NULL),(1755,114,'A','/trunk/VPIBinClient/VPIBinClient/RtSocket.cpp',NULL,NULL,NULL,NULL),(1756,114,'A','/trunk/VPIBinClient/VPIBinClient/RtSocket.h',NULL,NULL,NULL,NULL),(1757,114,'A','/trunk/VPIBinClient/VPIBinClient/SourceObject.cpp',NULL,NULL,NULL,NULL),(1758,114,'A','/trunk/VPIBinClient/VPIBinClient/SourceObject.h',NULL,NULL,NULL,NULL),(1759,114,'A','/trunk/VPIBinClient/VPIBinClient/TrameBinaireGenerator.cpp',NULL,NULL,NULL,NULL),(1760,114,'A','/trunk/VPIBinClient/VPIBinClient/TrameBinaireGenerator.h',NULL,NULL,NULL,NULL),(1761,114,'A','/trunk/VPIBinClient/VPIBinClient/VPIBinClient.cpp',NULL,NULL,NULL,NULL),(1762,114,'A','/trunk/VPIBinClient/VPIBinClient/VPIBinClient.def',NULL,NULL,NULL,NULL),(1763,114,'A','/trunk/VPIBinClient/VPIBinClient/VPIBinClient.h',NULL,NULL,NULL,NULL),(1764,114,'A','/trunk/VPIBinClient/VPIBinClient/VPIBinClient.rc',NULL,NULL,NULL,NULL),(1765,114,'A','/trunk/VPIBinClient/VPIBinClient/VPIBinClient.vcproj',NULL,NULL,NULL,NULL),(1766,114,'A','/trunk/VPIBinClient/VPIBinClient/VpiDataTypes.h',NULL,NULL,NULL,NULL),(1767,114,'A','/trunk/VPIBinClient/VPIBinClient/VpiInternal.cpp',NULL,NULL,NULL,NULL),(1768,114,'A','/trunk/VPIBinClient/VPIBinClient/VpiInternal.h',NULL,NULL,NULL,NULL),(1769,114,'A','/trunk/VPIBinClient/VPIBinClient/dllmain.cpp',NULL,NULL,NULL,NULL),(1770,114,'A','/trunk/VPIBinClient/VPIBinClient/resource.h',NULL,NULL,NULL,NULL),(1771,114,'A','/trunk/VPIBinClient/VPIBinClient/stdafx.cpp',NULL,NULL,NULL,NULL),(1772,114,'A','/trunk/VPIBinClient/VPIBinClient/stdafx.h',NULL,NULL,NULL,NULL),(1773,114,'A','/trunk/VPIBinClient/VPIBinClient/targetver.h',NULL,NULL,NULL,NULL),(1774,115,'A','/trunk',NULL,NULL,NULL,NULL),(1775,116,'A','/branches',NULL,NULL,NULL,NULL),(1776,117,'A','/tags',NULL,NULL,NULL,NULL),(1777,118,'A','/trunk/VPIOperatingSystem',NULL,NULL,NULL,NULL),(1778,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem',NULL,NULL,NULL,NULL),(1779,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(1780,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/EntryPoints.cpp',NULL,NULL,NULL,NULL),(1781,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.cpp',NULL,NULL,NULL,NULL),(1782,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.h',NULL,NULL,NULL,NULL),(1783,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.cpp',NULL,NULL,NULL,NULL),(1784,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.h',NULL,NULL,NULL,NULL),(1785,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(1786,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VpiDataTypes.h',NULL,NULL,NULL,NULL),(1787,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VpiOperatingSystem.def',NULL,NULL,NULL,NULL),(1788,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/dllmain.cpp',NULL,NULL,NULL,NULL),(1789,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/stdafx.cpp',NULL,NULL,NULL,NULL),(1790,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/stdafx.h',NULL,NULL,NULL,NULL),(1791,119,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/targetver.h',NULL,NULL,NULL,NULL),(1792,120,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(1793,121,'A','/trunk/Include',NULL,NULL,NULL,NULL),(1794,122,'A','/trunk/Include/ServerHeader',NULL,NULL,NULL,NULL),(1795,123,'A','/trunk/Include/ServerHeader.sln',NULL,NULL,NULL,NULL),(1796,123,'A','/trunk/Include/ServerHeader.vcproj',NULL,NULL,NULL,NULL),(1797,123,'A','/trunk/Include/VPI.h',NULL,NULL,NULL,NULL),(1798,123,'A','/trunk/Include/VpiDataValue.h',NULL,NULL,NULL,NULL),(1799,123,'A','/trunk/Include/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(1800,124,'A','/tags',NULL,NULL,NULL,NULL),(1801,125,'M','/trunk/XMLSAXParser.sln',NULL,NULL,NULL,NULL),(1802,125,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(1803,125,'A','/trunk/XmlShared/expat_external.h',NULL,NULL,NULL,NULL),(1804,126,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(1805,126,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(1806,126,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(1807,126,'M','/trunk/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(1808,126,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(1809,126,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(1810,126,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(1811,126,'A','/trunk/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(1812,126,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(1813,126,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(1814,126,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(1815,126,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(1816,126,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(1817,126,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(1818,126,'A','/trunk/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(1819,126,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(1820,127,'D','/branches/linux/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(1821,127,'D','/branches/linux/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(1822,127,'D','/branches/linux/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(1823,127,'D','/branches/linux/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(1824,127,'D','/branches/linux/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(1825,127,'D','/branches/linux/Alias.cpp',NULL,NULL,NULL,NULL),(1826,127,'D','/branches/linux/Alias.h',NULL,NULL,NULL,NULL),(1827,127,'D','/branches/linux/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(1828,127,'D','/branches/linux/Config',NULL,NULL,NULL,NULL),(1829,127,'D','/branches/linux/Main.cpp',NULL,NULL,NULL,NULL),(1830,127,'D','/branches/linux/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(1831,127,'D','/branches/linux/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(1832,127,'D','/branches/linux/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(1833,127,'D','/branches/linux/NamespaceUri.h',NULL,NULL,NULL,NULL),(1834,127,'D','/branches/linux/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(1835,127,'D','/branches/linux/OPCUA_CPP_QuickServer.sln',NULL,NULL,NULL,NULL),(1836,127,'D','/branches/linux/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(1837,127,'D','/branches/linux/QueueRequest.cpp',NULL,NULL,NULL,NULL),(1838,127,'D','/branches/linux/QueueRequest.h',NULL,NULL,NULL,NULL),(1839,127,'D','/branches/linux/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(1840,127,'D','/branches/linux/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(1841,127,'D','/branches/linux/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(1842,127,'D','/branches/linux/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(1843,127,'D','/branches/linux/SecureChannel.cpp',NULL,NULL,NULL,NULL),(1844,127,'D','/branches/linux/SecureChannel.h',NULL,NULL,NULL,NULL),(1845,127,'D','/branches/linux/ServerApplication.cpp',NULL,NULL,NULL,NULL),(1846,127,'D','/branches/linux/ServerApplication.h',NULL,NULL,NULL,NULL),(1847,127,'D','/branches/linux/SessionServer.cpp',NULL,NULL,NULL,NULL),(1848,127,'D','/branches/linux/SessionServer.h',NULL,NULL,NULL,NULL),(1849,127,'D','/branches/linux/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(1850,127,'D','/branches/linux/SimulatedGroup.h',NULL,NULL,NULL,NULL),(1851,127,'D','/branches/linux/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(1852,127,'D','/branches/linux/SimulatedNode.h',NULL,NULL,NULL,NULL),(1853,127,'D','/branches/linux/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(1854,127,'D','/branches/linux/StackCallbacks.h',NULL,NULL,NULL,NULL),(1855,127,'D','/branches/linux/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(1856,127,'D','/branches/linux/SubscriptionServer.h',NULL,NULL,NULL,NULL),(1857,127,'D','/branches/linux/UABase.cpp',NULL,NULL,NULL,NULL),(1858,127,'D','/branches/linux/UABase.h',NULL,NULL,NULL,NULL),(1859,127,'D','/branches/linux/UABinding.cpp',NULL,NULL,NULL,NULL),(1860,127,'D','/branches/linux/UABinding.h',NULL,NULL,NULL,NULL),(1861,127,'D','/branches/linux/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(1862,127,'D','/branches/linux/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(1863,127,'D','/branches/linux/UADataType.cpp',NULL,NULL,NULL,NULL),(1864,127,'D','/branches/linux/UADataType.h',NULL,NULL,NULL,NULL),(1865,127,'D','/branches/linux/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(1866,127,'D','/branches/linux/UAInformationModel.h',NULL,NULL,NULL,NULL),(1867,127,'D','/branches/linux/UAMethod.cpp',NULL,NULL,NULL,NULL),(1868,127,'D','/branches/linux/UAMethod.h',NULL,NULL,NULL,NULL),(1869,127,'D','/branches/linux/UAObject.cpp',NULL,NULL,NULL,NULL),(1870,127,'D','/branches/linux/UAObject.h',NULL,NULL,NULL,NULL),(1871,127,'D','/branches/linux/UAObjectType.cpp',NULL,NULL,NULL,NULL),(1872,127,'D','/branches/linux/UAObjectType.h',NULL,NULL,NULL,NULL),(1873,127,'D','/branches/linux/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(1874,127,'D','/branches/linux/UAReferenceType.h',NULL,NULL,NULL,NULL),(1875,127,'D','/branches/linux/UAVariable.cpp',NULL,NULL,NULL,NULL),(1876,127,'D','/branches/linux/UAVariable.h',NULL,NULL,NULL,NULL),(1877,127,'D','/branches/linux/UAVariableType.cpp',NULL,NULL,NULL,NULL),(1878,127,'D','/branches/linux/UAVariableType.h',NULL,NULL,NULL,NULL),(1879,127,'D','/branches/linux/UAView.cpp',NULL,NULL,NULL,NULL),(1880,127,'D','/branches/linux/UAView.h',NULL,NULL,NULL,NULL),(1881,127,'D','/branches/linux/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(1882,127,'D','/branches/linux/VPIScheduler.h',NULL,NULL,NULL,NULL),(1883,127,'D','/branches/linux/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(1884,127,'D','/branches/linux/resource.h',NULL,NULL,NULL,NULL),(1885,127,'D','/branches/linux/stdafx.cpp',NULL,NULL,NULL,NULL),(1886,127,'D','/branches/linux/stdafx.h',NULL,NULL,NULL,NULL),(1887,127,'D','/branches/linux/targetver.h',NULL,NULL,NULL,NULL),(1888,128,'A','/branches/linux/.cproject',NULL,NULL,NULL,NULL),(1889,128,'A','/branches/linux/.project',NULL,NULL,NULL,NULL),(1890,128,'A','/branches/linux/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(1891,128,'A','/branches/linux/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(1892,128,'A','/branches/linux/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(1893,128,'A','/branches/linux/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(1894,128,'A','/branches/linux/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(1895,128,'A','/branches/linux/Alias.cpp',NULL,NULL,NULL,NULL),(1896,128,'A','/branches/linux/Alias.h',NULL,NULL,NULL,NULL),(1897,128,'A','/branches/linux/CMakeLists.txt',NULL,NULL,NULL,NULL),(1898,128,'A','/branches/linux/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(1899,128,'A','/branches/linux/Definition.cpp',NULL,NULL,NULL,NULL),(1900,128,'A','/branches/linux/Definition.h',NULL,NULL,NULL,NULL),(1901,128,'A','/branches/linux/Field.cpp',NULL,NULL,NULL,NULL),(1902,128,'A','/branches/linux/Field.h',NULL,NULL,NULL,NULL),(1903,128,'A','/branches/linux/Main.cpp',NULL,NULL,NULL,NULL),(1904,128,'A','/branches/linux/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(1905,128,'A','/branches/linux/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(1906,128,'A','/branches/linux/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(1907,128,'A','/branches/linux/NamespaceUri.h',NULL,NULL,NULL,NULL),(1908,128,'A','/branches/linux/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(1909,128,'A','/branches/linux/OPCUA_CPP_QuickServer.sln',NULL,NULL,NULL,NULL),(1910,128,'A','/branches/linux/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(1911,128,'A','/branches/linux/OPCUA_CPP_QuickServer.vcxproj',NULL,NULL,NULL,NULL),(1912,128,'A','/branches/linux/OPCUA_CPP_QuickServer.vcxproj.filters',NULL,NULL,NULL,NULL),(1913,128,'A','/branches/linux/OPCUA_CPP_QuickServer.vcxproj.user',NULL,NULL,NULL,NULL),(1914,128,'A','/branches/linux/Opc.Ua.Types.h',NULL,NULL,NULL,NULL),(1915,128,'A','/branches/linux/QueueRequest.cpp',NULL,NULL,NULL,NULL),(1916,128,'A','/branches/linux/QueueRequest.h',NULL,NULL,NULL,NULL),(1917,128,'A','/branches/linux/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(1918,128,'A','/branches/linux/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(1919,128,'A','/branches/linux/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(1920,128,'A','/branches/linux/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(1921,128,'A','/branches/linux/QueuedWriteRequest.cpp',NULL,NULL,NULL,NULL),(1922,128,'A','/branches/linux/QueuedWriteRequest.h',NULL,NULL,NULL,NULL),(1923,128,'A','/branches/linux/SecureChannel.cpp',NULL,NULL,NULL,NULL),(1924,128,'A','/branches/linux/SecureChannel.h',NULL,NULL,NULL,NULL),(1925,128,'A','/branches/linux/ServerApplication.cpp',NULL,NULL,NULL,NULL),(1926,128,'A','/branches/linux/ServerApplication.h',NULL,NULL,NULL,NULL),(1927,128,'A','/branches/linux/SessionServer.cpp',NULL,NULL,NULL,NULL),(1928,128,'A','/branches/linux/SessionServer.h',NULL,NULL,NULL,NULL),(1929,128,'A','/branches/linux/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(1930,128,'A','/branches/linux/SimulatedGroup.h',NULL,NULL,NULL,NULL),(1931,128,'A','/branches/linux/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(1932,128,'A','/branches/linux/SimulatedNode.h',NULL,NULL,NULL,NULL),(1933,128,'A','/branches/linux/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(1934,128,'A','/branches/linux/StackCallbacks.h',NULL,NULL,NULL,NULL),(1935,128,'A','/branches/linux/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(1936,128,'A','/branches/linux/SubscriptionServer.h',NULL,NULL,NULL,NULL),(1937,128,'A','/branches/linux/UABase.cpp',NULL,NULL,NULL,NULL),(1938,128,'A','/branches/linux/UABase.h',NULL,NULL,NULL,NULL),(1939,128,'A','/branches/linux/UABinding.cpp',NULL,NULL,NULL,NULL),(1940,128,'A','/branches/linux/UABinding.h',NULL,NULL,NULL,NULL),(1941,128,'A','/branches/linux/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(1942,128,'A','/branches/linux/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(1943,128,'A','/branches/linux/UADataType.cpp',NULL,NULL,NULL,NULL),(1944,128,'A','/branches/linux/UADataType.h',NULL,NULL,NULL,NULL),(1945,128,'A','/branches/linux/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(1946,128,'A','/branches/linux/UAInformationModel.h',NULL,NULL,NULL,NULL),(1947,128,'A','/branches/linux/UAMethod.cpp',NULL,NULL,NULL,NULL),(1948,128,'A','/branches/linux/UAMethod.h',NULL,NULL,NULL,NULL),(1949,128,'A','/branches/linux/UAObject.cpp',NULL,NULL,NULL,NULL),(1950,128,'A','/branches/linux/UAObject.h',NULL,NULL,NULL,NULL),(1951,128,'A','/branches/linux/UAObjectType.cpp',NULL,NULL,NULL,NULL),(1952,128,'A','/branches/linux/UAObjectType.h',NULL,NULL,NULL,NULL),(1953,128,'A','/branches/linux/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(1954,128,'A','/branches/linux/UAReferenceType.h',NULL,NULL,NULL,NULL),(1955,128,'A','/branches/linux/UAVariable.cpp',NULL,NULL,NULL,NULL),(1956,128,'A','/branches/linux/UAVariable.h',NULL,NULL,NULL,NULL),(1957,128,'A','/branches/linux/UAVariableType.cpp',NULL,NULL,NULL,NULL),(1958,128,'A','/branches/linux/UAVariableType.h',NULL,NULL,NULL,NULL),(1959,128,'A','/branches/linux/UAView.cpp',NULL,NULL,NULL,NULL),(1960,128,'A','/branches/linux/UAView.h',NULL,NULL,NULL,NULL),(1961,128,'A','/branches/linux/VPI.h',NULL,NULL,NULL,NULL),(1962,128,'A','/branches/linux/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(1963,128,'A','/branches/linux/VPIScheduler.h',NULL,NULL,NULL,NULL),(1964,128,'A','/branches/linux/VpiDataValue.h',NULL,NULL,NULL,NULL),(1965,128,'A','/branches/linux/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(1966,128,'A','/branches/linux/resource.h',NULL,NULL,NULL,NULL),(1967,128,'A','/branches/linux/stdafx.cpp',NULL,NULL,NULL,NULL),(1968,128,'A','/branches/linux/stdafx.h',NULL,NULL,NULL,NULL),(1969,128,'A','/branches/linux/targetver.h',NULL,NULL,NULL,NULL),(1970,129,'M','/trunk/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(1971,129,'A','/trunk/Config/Quickstarts.Boiler.NodeSet2.xml',NULL,NULL,NULL,NULL),(1972,129,'M','/trunk/Definition.h',NULL,NULL,NULL,NULL),(1973,129,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(1974,129,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(1975,129,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(1976,129,'M','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(1977,129,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(1978,129,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(1979,129,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(1980,129,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(1981,129,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(1982,129,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(1983,129,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(1984,129,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(1985,129,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(1986,129,'M','/trunk/UABase.h',NULL,NULL,NULL,NULL),(1987,129,'M','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(1988,129,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(1989,129,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(1990,129,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(1991,129,'M','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(1992,129,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(1993,129,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(1994,130,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(1995,130,'M','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(1996,130,'M','/trunk/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(1997,130,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(1998,130,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(1999,130,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(2000,130,'M','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(2001,130,'M','/trunk/QueueRequest.h',NULL,NULL,NULL,NULL),(2002,130,'M','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(2003,130,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(2004,130,'M','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(2005,130,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2006,130,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2007,130,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2008,130,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2009,130,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2010,130,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2011,130,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(2012,130,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2013,130,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(2014,130,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(2015,130,'M','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(2016,130,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2017,131,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2018,131,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2019,131,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2020,132,'D','/branches/linux/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(2021,132,'D','/branches/linux/Application.cpp',NULL,NULL,NULL,NULL),(2022,132,'D','/branches/linux/Channel.cpp',NULL,NULL,NULL,NULL),(2023,132,'D','/branches/linux/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(2024,132,'D','/branches/linux/DataValue.cpp',NULL,NULL,NULL,NULL),(2025,132,'D','/branches/linux/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(2026,132,'D','/branches/linux/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(2027,132,'D','/branches/linux/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(2028,132,'D','/branches/linux/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(2029,132,'D','/branches/linux/MonitoredItemQueue.cpp',NULL,NULL,NULL,NULL),(2030,132,'D','/branches/linux/NumericRange.cpp',NULL,NULL,NULL,NULL),(2031,132,'D','/branches/linux/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(2032,132,'D','/branches/linux/SessionBase.cpp',NULL,NULL,NULL,NULL),(2033,132,'D','/branches/linux/Subscription.cpp',NULL,NULL,NULL,NULL),(2034,132,'D','/branches/linux/Utils.cpp',NULL,NULL,NULL,NULL),(2035,132,'D','/branches/linux/include',NULL,NULL,NULL,NULL),(2036,132,'D','/branches/linux/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(2037,132,'D','/branches/linux/stdafx.cpp',NULL,NULL,NULL,NULL),(2038,132,'D','/branches/linux/stdafx.h',NULL,NULL,NULL,NULL),(2039,132,'D','/branches/linux/targetver.h',NULL,NULL,NULL,NULL),(2040,133,'A','/branches/linux/.cproject',NULL,NULL,NULL,NULL),(2041,133,'A','/branches/linux/.project',NULL,NULL,NULL,NULL),(2042,133,'A','/branches/linux/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(2043,133,'A','/branches/linux/Application.cpp',NULL,NULL,NULL,NULL),(2044,133,'A','/branches/linux/BuildInfo.cpp',NULL,NULL,NULL,NULL),(2045,133,'A','/branches/linux/CMakeLists.txt',NULL,NULL,NULL,NULL),(2046,133,'A','/branches/linux/Channel.cpp',NULL,NULL,NULL,NULL),(2047,133,'A','/branches/linux/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(2048,133,'A','/branches/linux/DataValue.cpp',NULL,NULL,NULL,NULL),(2049,133,'A','/branches/linux/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(2050,133,'A','/branches/linux/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(2051,133,'A','/branches/linux/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(2052,133,'A','/branches/linux/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(2053,133,'A','/branches/linux/MonitoredItemQueue.cpp',NULL,NULL,NULL,NULL),(2054,133,'A','/branches/linux/NumericRange.cpp',NULL,NULL,NULL,NULL),(2055,133,'A','/branches/linux/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(2056,133,'A','/branches/linux/OPCUA_CPP_SharedLib.vcxproj',NULL,NULL,NULL,NULL),(2057,133,'A','/branches/linux/OPCUA_CPP_SharedLib.vcxproj.filters',NULL,NULL,NULL,NULL),(2058,133,'A','/branches/linux/OPCUA_CPP_SharedLib.vcxproj.user',NULL,NULL,NULL,NULL),(2059,133,'A','/branches/linux/ServerStatus.cpp',NULL,NULL,NULL,NULL),(2060,133,'A','/branches/linux/SessionBase.cpp',NULL,NULL,NULL,NULL),(2061,133,'A','/branches/linux/Subscription.cpp',NULL,NULL,NULL,NULL),(2062,133,'A','/branches/linux/Utils.cpp',NULL,NULL,NULL,NULL),(2063,133,'A','/branches/linux/include',NULL,NULL,NULL,NULL),(2064,133,'A','/branches/linux/include/AggregateCalculator.h',NULL,NULL,NULL,NULL),(2065,133,'A','/branches/linux/include/Application.h',NULL,NULL,NULL,NULL),(2066,133,'A','/branches/linux/include/BuildInfo.h',NULL,NULL,NULL,NULL),(2067,133,'A','/branches/linux/include/Channel.h',NULL,NULL,NULL,NULL),(2068,133,'A','/branches/linux/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(2069,133,'A','/branches/linux/include/DataValue.h',NULL,NULL,NULL,NULL),(2070,133,'A','/branches/linux/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(2071,133,'A','/branches/linux/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(2072,133,'A','/branches/linux/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(2073,133,'A','/branches/linux/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(2074,133,'A','/branches/linux/include/MonitoredItemQueue.h',NULL,NULL,NULL,NULL),(2075,133,'A','/branches/linux/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(2076,133,'A','/branches/linux/include/NumericRange.h',NULL,NULL,NULL,NULL),(2077,133,'A','/branches/linux/include/ServerStatus.h',NULL,NULL,NULL,NULL),(2078,133,'A','/branches/linux/include/SessionBase.h',NULL,NULL,NULL,NULL),(2079,133,'A','/branches/linux/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(2080,133,'A','/branches/linux/include/Subscription.h',NULL,NULL,NULL,NULL),(2081,133,'A','/branches/linux/include/UAExceptions.h',NULL,NULL,NULL,NULL),(2082,133,'A','/branches/linux/include/Utils.h',NULL,NULL,NULL,NULL),(2083,133,'A','/branches/linux/include/cslock.h',NULL,NULL,NULL,NULL),(2084,133,'A','/branches/linux/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(2085,133,'A','/branches/linux/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(2086,133,'A','/branches/linux/stdafx.cpp',NULL,NULL,NULL,NULL),(2087,133,'A','/branches/linux/stdafx.h',NULL,NULL,NULL,NULL),(2088,133,'A','/branches/linux/targetver.h',NULL,NULL,NULL,NULL),(2089,134,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2090,134,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(2091,134,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(2092,134,'M','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(2093,134,'M','/trunk/NumericRange.cpp',NULL,NULL,NULL,NULL),(2094,134,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2095,134,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(2096,134,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(2097,134,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(2098,135,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2099,135,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(2100,135,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(2101,135,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(2102,135,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(2103,135,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(2104,136,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2105,136,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2106,136,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2107,136,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2108,136,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2109,136,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2110,137,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(2111,137,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2112,137,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2113,137,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2114,137,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2115,137,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2116,137,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2117,137,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2118,138,'M','/trunk/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(2119,138,'M','/trunk/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(2120,138,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(2121,138,'M','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(2122,138,'M','/trunk/Definition.cpp',NULL,NULL,NULL,NULL),(2123,138,'M','/trunk/Definition.h',NULL,NULL,NULL,NULL),(2124,138,'M','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(2125,138,'M','/trunk/Field.h',NULL,NULL,NULL,NULL),(2126,138,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(2127,138,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(2128,138,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(2129,138,'M','/trunk/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(2130,138,'M','/trunk/QueueRequest.h',NULL,NULL,NULL,NULL),(2131,138,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(2132,138,'M','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(2133,138,'M','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(2134,138,'M','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(2135,138,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(2136,138,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2137,138,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2138,138,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2139,138,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2140,138,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(2141,138,'M','/trunk/SimulatedGroup.h',NULL,NULL,NULL,NULL),(2142,138,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2143,138,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2144,138,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(2145,138,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(2146,138,'M','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(2147,138,'M','/trunk/UADataType.cpp',NULL,NULL,NULL,NULL),(2148,138,'M','/trunk/UADataType.h',NULL,NULL,NULL,NULL),(2149,138,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2150,138,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(2151,138,'M','/trunk/UAMethod.h',NULL,NULL,NULL,NULL),(2152,138,'M','/trunk/UAObject.cpp',NULL,NULL,NULL,NULL),(2153,138,'M','/trunk/UAObject.h',NULL,NULL,NULL,NULL),(2154,138,'M','/trunk/UAObjectType.h',NULL,NULL,NULL,NULL),(2155,138,'M','/trunk/UAReferenceType.h',NULL,NULL,NULL,NULL),(2156,138,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(2157,138,'M','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(2158,138,'M','/trunk/UAVariableType.h',NULL,NULL,NULL,NULL),(2159,138,'M','/trunk/UAView.h',NULL,NULL,NULL,NULL),(2160,138,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(2161,138,'M','/trunk/VPIScheduler.h',NULL,NULL,NULL,NULL),(2162,138,'M','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(2163,138,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2164,139,'M','/trunk/Include/VPI.h',NULL,NULL,NULL,NULL),(2165,140,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2166,140,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(2167,140,'M','/trunk/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(2168,140,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(2169,140,'M','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(2170,140,'M','/trunk/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(2171,140,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(2172,140,'M','/trunk/ServerStatus.cpp',NULL,NULL,NULL,NULL),(2173,140,'M','/trunk/SessionBase.cpp',NULL,NULL,NULL,NULL),(2174,140,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(2175,140,'M','/trunk/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(2176,140,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(2177,140,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(2178,140,'M','/trunk/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(2179,140,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(2180,140,'M','/trunk/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(2181,140,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(2182,140,'M','/trunk/include/MonitoredItemQueue.h',NULL,NULL,NULL,NULL),(2183,140,'M','/trunk/include/ServerStatus.h',NULL,NULL,NULL,NULL),(2184,140,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(2185,140,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(2186,140,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(2187,140,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2188,141,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2189,141,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(2190,141,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2191,142,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(2192,142,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(2193,142,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(2194,142,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(2195,142,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2196,142,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2197,142,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2198,142,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2199,142,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2200,142,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(2201,142,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2202,143,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2203,144,'M','/trunk/UAStackV1/Doc/Fonctionnement interne de la Stack AnsiC.docx',NULL,NULL,NULL,NULL),(2204,144,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(2205,144,'M','/trunk/UAStackV1/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(2206,144,'M','/trunk/UAStackV1/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(2207,144,'M','/trunk/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(2208,144,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(2209,144,'M','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(2210,145,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(2211,145,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(2212,145,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2213,145,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(2214,145,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(2215,145,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(2216,145,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(2217,146,'M','/trunk/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(2218,146,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2219,146,'M','/trunk/BuildInfo.cpp',NULL,NULL,NULL,NULL),(2220,146,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(2221,146,'M','/trunk/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(2222,146,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(2223,146,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(2224,146,'M','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(2225,146,'M','/trunk/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(2226,146,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(2227,146,'M','/trunk/MonitoredItemQueue.cpp',NULL,NULL,NULL,NULL),(2228,146,'M','/trunk/NumericRange.cpp',NULL,NULL,NULL,NULL),(2229,146,'M','/trunk/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(2230,146,'M','/trunk/ServerStatus.cpp',NULL,NULL,NULL,NULL),(2231,146,'M','/trunk/SessionBase.cpp',NULL,NULL,NULL,NULL),(2232,146,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(2233,146,'M','/trunk/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(2234,146,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2235,146,'M','/trunk/include/AggregateCalculator.h',NULL,NULL,NULL,NULL),(2236,146,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(2237,146,'M','/trunk/include/BuildInfo.h',NULL,NULL,NULL,NULL),(2238,146,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(2239,146,'M','/trunk/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(2240,146,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(2241,146,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(2242,146,'M','/trunk/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(2243,146,'M','/trunk/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(2244,146,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(2245,146,'M','/trunk/include/MonitoredItemQueue.h',NULL,NULL,NULL,NULL),(2246,146,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(2247,146,'M','/trunk/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(2248,146,'M','/trunk/include/ServerStatus.h',NULL,NULL,NULL,NULL),(2249,146,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(2250,146,'M','/trunk/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(2251,146,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(2252,146,'M','/trunk/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(2253,146,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(2254,146,'M','/trunk/include/cslock.h',NULL,NULL,NULL,NULL),(2255,146,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(2256,147,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2257,147,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(2258,147,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(2259,147,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2260,147,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(2261,147,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(2262,147,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(2263,147,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(2264,148,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(2265,148,'M','/trunk/OPCUA_CPP_QuickServer.sln',NULL,NULL,NULL,NULL),(2266,148,'M','/trunk/QueueRequest.h',NULL,NULL,NULL,NULL),(2267,148,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(2268,148,'M','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(2269,148,'M','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(2270,148,'M','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(2271,148,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2272,148,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2273,148,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2274,148,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2275,148,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(2276,148,'M','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(2277,148,'M','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(2278,148,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2279,148,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(2280,149,'M','/trunk/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(2281,149,'M','/trunk/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(2282,149,'M','/trunk/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(2283,149,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(2284,149,'M','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(2285,149,'M','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(2286,149,'M','/trunk/Alias.h',NULL,NULL,NULL,NULL),(2287,149,'M','/trunk/Definition.cpp',NULL,NULL,NULL,NULL),(2288,149,'M','/trunk/Definition.h',NULL,NULL,NULL,NULL),(2289,149,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(2290,149,'M','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(2291,149,'M','/trunk/Field.h',NULL,NULL,NULL,NULL),(2292,149,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(2293,149,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(2294,149,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(2295,149,'M','/trunk/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(2296,149,'M','/trunk/NamespaceUri.h',NULL,NULL,NULL,NULL),(2297,149,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(2298,149,'M','/trunk/QueueRequest.cpp',NULL,NULL,NULL,NULL),(2299,149,'M','/trunk/QueueRequest.h',NULL,NULL,NULL,NULL),(2300,149,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(2301,149,'M','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(2302,149,'M','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(2303,149,'M','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(2304,149,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(2305,149,'M','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(2306,149,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2307,149,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2308,149,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2309,149,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2310,149,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(2311,149,'M','/trunk/SimulatedGroup.h',NULL,NULL,NULL,NULL),(2312,149,'M','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(2313,149,'M','/trunk/SimulatedNode.h',NULL,NULL,NULL,NULL),(2314,149,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2315,149,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2316,149,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(2317,149,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(2318,149,'M','/trunk/UABase.h',NULL,NULL,NULL,NULL),(2319,149,'M','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(2320,149,'M','/trunk/UABinding.h',NULL,NULL,NULL,NULL),(2321,149,'M','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(2322,149,'M','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(2323,149,'M','/trunk/UADataType.cpp',NULL,NULL,NULL,NULL),(2324,149,'M','/trunk/UADataType.h',NULL,NULL,NULL,NULL),(2325,149,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2326,149,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(2327,149,'M','/trunk/UAMethod.cpp',NULL,NULL,NULL,NULL),(2328,149,'M','/trunk/UAMethod.h',NULL,NULL,NULL,NULL),(2329,149,'M','/trunk/UAObject.cpp',NULL,NULL,NULL,NULL),(2330,149,'M','/trunk/UAObject.h',NULL,NULL,NULL,NULL),(2331,149,'M','/trunk/UAObjectType.cpp',NULL,NULL,NULL,NULL),(2332,149,'M','/trunk/UAObjectType.h',NULL,NULL,NULL,NULL),(2333,149,'M','/trunk/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(2334,149,'M','/trunk/UAReferenceType.h',NULL,NULL,NULL,NULL),(2335,149,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(2336,149,'M','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(2337,149,'M','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(2338,149,'M','/trunk/UAVariableType.h',NULL,NULL,NULL,NULL),(2339,149,'M','/trunk/UAView.cpp',NULL,NULL,NULL,NULL),(2340,149,'M','/trunk/UAView.h',NULL,NULL,NULL,NULL),(2341,149,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(2342,149,'M','/trunk/VPIScheduler.h',NULL,NULL,NULL,NULL),(2343,149,'M','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(2344,149,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2345,150,'M','/trunk/Include/VpiDataValue.h',NULL,NULL,NULL,NULL),(2346,151,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(2347,151,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(2348,151,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(2349,151,'M','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(2350,151,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2351,151,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2352,151,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2353,151,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2354,151,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2355,151,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2356,151,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(2357,152,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2358,152,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2359,153,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(2360,153,'M','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(2361,153,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2362,153,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2363,153,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(2364,153,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2365,153,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2366,154,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(2367,154,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(2368,154,'M','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(2369,154,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2370,154,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2371,154,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2372,154,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2373,154,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(2374,154,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2375,155,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2376,155,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2377,155,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2378,156,'A','/branches',NULL,NULL,NULL,NULL),(2379,157,'A','/tags',NULL,NULL,NULL,NULL),(2380,158,'A','/VPIMdbMaster',NULL,NULL,NULL,NULL),(2381,159,'A','/VPIMdbMaster/VPIMdbMaster',NULL,NULL,NULL,NULL),(2382,159,'A','/VPIMdbMaster/VPIMdbMaster.sln',NULL,NULL,NULL,NULL),(2383,159,'A','/VPIMdbMaster/VPIMdbMaster/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(2384,159,'A','/VPIMdbMaster/VPIMdbMaster/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(2385,159,'A','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2386,159,'A','/VPIMdbMaster/VPIMdbMaster/RtSocket.cpp',NULL,NULL,NULL,NULL),(2387,159,'A','/VPIMdbMaster/VPIMdbMaster/RtSocket.h',NULL,NULL,NULL,NULL),(2388,159,'A','/VPIMdbMaster/VPIMdbMaster/SourceObject.cpp',NULL,NULL,NULL,NULL),(2389,159,'A','/VPIMdbMaster/VPIMdbMaster/SourceObject.h',NULL,NULL,NULL,NULL),(2390,159,'A','/VPIMdbMaster/VPIMdbMaster/TrameBinaireGenerator.cpp',NULL,NULL,NULL,NULL),(2391,159,'A','/VPIMdbMaster/VPIMdbMaster/TrameBinaireGenerator.h',NULL,NULL,NULL,NULL),(2392,159,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(2393,159,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.def',NULL,NULL,NULL,NULL),(2394,159,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(2395,159,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(2396,159,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(2397,159,'A','/VPIMdbMaster/VPIMdbMaster/VpiDataTypes.h',NULL,NULL,NULL,NULL),(2398,159,'A','/VPIMdbMaster/VPIMdbMaster/VpiInternal.cpp',NULL,NULL,NULL,NULL),(2399,159,'A','/VPIMdbMaster/VPIMdbMaster/VpiInternal.h',NULL,NULL,NULL,NULL),(2400,159,'A','/VPIMdbMaster/VPIMdbMaster/dllmain.cpp',NULL,NULL,NULL,NULL),(2401,159,'A','/VPIMdbMaster/VPIMdbMaster/resource.h',NULL,NULL,NULL,NULL),(2402,159,'A','/VPIMdbMaster/VPIMdbMaster/stdafx.cpp',NULL,NULL,NULL,NULL),(2403,159,'A','/VPIMdbMaster/VPIMdbMaster/stdafx.h',NULL,NULL,NULL,NULL),(2404,159,'A','/VPIMdbMaster/VPIMdbMaster/targetver.h',NULL,NULL,NULL,NULL),(2405,160,'A','/trunk',NULL,NULL,NULL,NULL),(2406,161,'A','/trunk/Doc',NULL,NULL,NULL,NULL),(2407,161,'A','/trunk/Doc/Analyse UAClientLib.docx',NULL,NULL,NULL,NULL),(2408,161,'A','/trunk/UAClientLib',NULL,NULL,NULL,NULL),(2409,161,'A','/trunk/UAClientLib/ReadMe.txt',NULL,NULL,NULL,NULL),(2410,161,'A','/trunk/UAClientLib/UAClientLib.cpp',NULL,NULL,NULL,NULL),(2411,161,'A','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(2412,161,'A','/trunk/UAClientLib/dllmain.cpp',NULL,NULL,NULL,NULL),(2413,161,'A','/trunk/UAClientLib/stdafx.cpp',NULL,NULL,NULL,NULL),(2414,161,'A','/trunk/UAClientLib/stdafx.h',NULL,NULL,NULL,NULL),(2415,161,'A','/trunk/UAClientLib/targetver.h',NULL,NULL,NULL,NULL),(2416,162,'A','/trunk/UAClientLib.sln',NULL,NULL,NULL,NULL),(2417,163,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2418,164,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2419,164,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(2420,164,'M','/trunk/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(2421,164,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(2422,164,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(2423,164,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2424,164,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(2425,164,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(2426,164,'M','/trunk/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(2427,164,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(2428,164,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(2429,164,'M','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(2430,164,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(2431,165,'A','/trunk/Config/Schema/SubSystem.xsd',NULL,NULL,NULL,NULL),(2432,165,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(2433,165,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(2434,165,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(2435,165,'M','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(2436,165,'M','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(2437,165,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2438,165,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2439,165,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2440,165,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2441,165,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2442,165,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2443,165,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(2444,165,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2445,165,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(2446,165,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(2447,166,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(2448,166,'A','/trunk/XmlShared/xmlCanon.h',NULL,NULL,NULL,NULL),(2449,166,'A','/trunk/XmlShared/xmltchar.h',NULL,NULL,NULL,NULL),(2450,167,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(2451,167,'A','/trunk/XmlShared/xmlConfig.h',NULL,NULL,NULL,NULL),(2452,167,'A','/trunk/XmlShared/xmlLib.h',NULL,NULL,NULL,NULL),(2453,168,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(2454,168,'A','/trunk/XmlShared/asciitab.h',NULL,NULL,NULL,NULL),(2455,168,'A','/trunk/XmlShared/iasciitab.h',NULL,NULL,NULL,NULL),(2456,168,'A','/trunk/XmlShared/internal.h',NULL,NULL,NULL,NULL),(2457,168,'A','/trunk/XmlShared/latin1tab.h',NULL,NULL,NULL,NULL),(2458,168,'A','/trunk/XmlShared/nametab.h',NULL,NULL,NULL,NULL),(2459,168,'A','/trunk/XmlShared/utf8tab.h',NULL,NULL,NULL,NULL),(2460,168,'A','/trunk/XmlShared/xmltok_impl.c',NULL,NULL,NULL,NULL),(2461,169,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(2462,170,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2463,171,'M','/trunk/mfcquickclient/ClientApplication.cpp',NULL,NULL,NULL,NULL),(2464,171,'M','/trunk/mfcquickclient/ClientApplication.h',NULL,NULL,NULL,NULL),(2465,171,'M','/trunk/mfcquickclient/ClientSession.cpp',NULL,NULL,NULL,NULL),(2466,171,'M','/trunk/mfcquickclient/ClientSession.h',NULL,NULL,NULL,NULL),(2467,171,'M','/trunk/mfcquickclient/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(2468,171,'M','/trunk/mfcquickclient/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(2469,171,'M','/trunk/mfcquickclient/MonitoredItemDetailDlg.cpp',NULL,NULL,NULL,NULL),(2470,171,'M','/trunk/mfcquickclient/MonitoredItemDetailDlg.h',NULL,NULL,NULL,NULL),(2471,171,'M','/trunk/mfcquickclient/MonitoringModeDlg.cpp',NULL,NULL,NULL,NULL),(2472,171,'M','/trunk/mfcquickclient/MonitoringModeDlg.h',NULL,NULL,NULL,NULL),(2473,171,'M','/trunk/mfcquickclient/OPCUA_CPP_QuickClient.cpp',NULL,NULL,NULL,NULL),(2474,171,'M','/trunk/mfcquickclient/OPCUA_CPP_QuickClientDlg.cpp',NULL,NULL,NULL,NULL),(2475,171,'M','/trunk/mfcquickclient/OPCUA_CPP_QuickClientDlg.h',NULL,NULL,NULL,NULL),(2476,171,'D','/trunk/mfcquickclient/ServerDescription.cpp',NULL,NULL,NULL,NULL),(2477,171,'D','/trunk/mfcquickclient/ServerDescription.h',NULL,NULL,NULL,NULL),(2478,171,'M','/trunk/mfcquickclient/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2479,171,'M','/trunk/mfcquickclient/SubscriptionClient.h',NULL,NULL,NULL,NULL),(2480,171,'M','/trunk/mfcquickclient/SubscriptionParamDlg.h',NULL,NULL,NULL,NULL),(2481,171,'M','/trunk/mfcquickclient/UABrowserDlg.cpp',NULL,NULL,NULL,NULL),(2482,171,'M','/trunk/mfcquickclient/UABrowserDlg.h',NULL,NULL,NULL,NULL),(2483,171,'M','/trunk/mfcquickclient/mfcquickclient.vcproj',NULL,NULL,NULL,NULL),(2484,171,'M','/trunk/mfcquickclient/stdafx.cpp',NULL,NULL,NULL,NULL),(2485,171,'M','/trunk/mfcquickclient/stdafx.h',NULL,NULL,NULL,NULL),(2486,172,'M','/trunk/mfcquickclient/SubscriptionParamDlg.cpp',NULL,NULL,NULL,NULL),(2487,172,'M','/trunk/mfcquickclient/UABrowserDlg.cpp',NULL,NULL,NULL,NULL),(2488,173,'M','/trunk/mfcquickclient/ClientApplication.cpp',NULL,NULL,NULL,NULL),(2489,174,'M','/trunk/mfcquickclient.sln',NULL,NULL,NULL,NULL),(2490,174,'M','/trunk/mfcquickclient/ClientApplication.cpp',NULL,NULL,NULL,NULL),(2491,174,'M','/trunk/mfcquickclient/ClientApplication.h',NULL,NULL,NULL,NULL),(2492,174,'M','/trunk/mfcquickclient/ClientSession.cpp',NULL,NULL,NULL,NULL),(2493,174,'M','/trunk/mfcquickclient/OPCUA_CPP_QuickClientDlg.cpp',NULL,NULL,NULL,NULL),(2494,174,'M','/trunk/mfcquickclient/OPCUA_CPP_QuickClientDlg.h',NULL,NULL,NULL,NULL),(2495,174,'M','/trunk/mfcquickclient/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2496,174,'M','/trunk/mfcquickclient/stdafx.h',NULL,NULL,NULL,NULL),(2497,175,'A','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(2498,175,'A','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(2499,175,'A','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(2500,175,'A','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(2501,175,'A','/trunk/UAClientLib/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(2502,175,'A','/trunk/UAClientLib/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(2503,175,'A','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2504,175,'A','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(2505,175,'A','/trunk/UAClientLib/UABuiltInType.h',NULL,NULL,NULL,NULL),(2506,175,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(2507,176,'M','/trunk/Doc/Analyse UAClientLib.docx',NULL,NULL,NULL,NULL),(2508,176,'M','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(2509,176,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(2510,176,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(2511,176,'M','/trunk/UAClientLib/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(2512,176,'M','/trunk/UAClientLib/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(2513,176,'A','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(2514,176,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2515,176,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(2516,176,'M','/trunk/UAClientLib/UABuiltInType.h',NULL,NULL,NULL,NULL),(2517,176,'M','/trunk/UAClientLib/UAClientLib.cpp',NULL,NULL,NULL,NULL),(2518,176,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(2519,176,'M','/trunk/UAClientLib/dllmain.cpp',NULL,NULL,NULL,NULL),(2520,176,'M','/trunk/UAClientLib/stdafx.cpp',NULL,NULL,NULL,NULL),(2521,176,'M','/trunk/UAClientLib/stdafx.h',NULL,NULL,NULL,NULL),(2522,177,'M','/trunk/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(2523,178,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2524,178,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(2525,179,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2526,179,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(2527,179,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(2528,179,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2529,179,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(2530,179,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(2531,180,'M','/trunk/UAClientLib.sln',NULL,NULL,NULL,NULL),(2532,180,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(2533,180,'M','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(2534,180,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(2535,180,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(2536,180,'A','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2537,180,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(2538,180,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2539,180,'A','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(2540,180,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(2541,180,'A','/trunk/UAClientLibTester',NULL,NULL,NULL,NULL),(2542,180,'A','/trunk/UAClientLibTester/ReadMe.txt',NULL,NULL,NULL,NULL),(2543,180,'A','/trunk/UAClientLibTester/UAClientLibTester.cpp',NULL,NULL,NULL,NULL),(2544,180,'A','/trunk/UAClientLibTester/UAClientLibTester.h',NULL,NULL,NULL,NULL),(2545,180,'A','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(2546,180,'A','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(2547,180,'A','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2548,180,'A','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2549,180,'A','/trunk/UAClientLibTester/res',NULL,NULL,NULL,NULL),(2550,180,'A','/trunk/UAClientLibTester/res/UAClientLibTester.ico',NULL,NULL,NULL,NULL),(2551,180,'A','/trunk/UAClientLibTester/res/UAClientLibTester.rc2',NULL,NULL,NULL,NULL),(2552,180,'A','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(2553,180,'A','/trunk/UAClientLibTester/stdafx.cpp',NULL,NULL,NULL,NULL),(2554,180,'A','/trunk/UAClientLibTester/stdafx.h',NULL,NULL,NULL,NULL),(2555,180,'A','/trunk/UAClientLibTester/targetver.h',NULL,NULL,NULL,NULL),(2556,181,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(2557,181,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2558,181,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2559,181,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(2560,182,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2561,182,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(2562,182,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(2563,183,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(2564,183,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(2565,183,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2566,184,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(2567,184,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2568,184,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2569,185,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(2570,185,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2571,185,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(2572,185,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(2573,185,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(2574,186,'M','/trunk/Doc/Analyse UAClientLib.docx',NULL,NULL,NULL,NULL),(2575,186,'M','/trunk/UAClientLib.sln',NULL,NULL,NULL,NULL),(2576,186,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(2577,186,'M','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(2578,186,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(2579,186,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(2580,186,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2581,186,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(2582,186,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2583,186,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(2584,186,'M','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(2585,186,'M','/trunk/UAClientLib/stdafx.h',NULL,NULL,NULL,NULL),(2586,186,'A','/trunk/UAClientLibTester/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(2587,186,'A','/trunk/UAClientLibTester/NodeIdDlg.cpp',NULL,NULL,NULL,NULL),(2588,186,'A','/trunk/UAClientLibTester/NodeIdDlg.h',NULL,NULL,NULL,NULL),(2589,186,'A','/trunk/UAClientLibTester/SubscriptionParamDlg.cpp',NULL,NULL,NULL,NULL),(2590,186,'A','/trunk/UAClientLibTester/SubscriptionParamDlg.h',NULL,NULL,NULL,NULL),(2591,186,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(2592,186,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(2593,186,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2594,186,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2595,186,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(2596,187,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(2597,187,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(2598,187,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2599,187,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(2600,187,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2601,187,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(2602,187,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(2603,187,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2604,187,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2605,187,'M','/trunk/UAClientLibTester/stdafx.h',NULL,NULL,NULL,NULL),(2606,188,'M','/trunk/Doc/Analyse UAClientLib.docx',NULL,NULL,NULL,NULL),(2607,188,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2608,188,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(2609,188,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2610,188,'M','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(2611,188,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2612,188,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2613,189,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2614,189,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(2615,189,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2616,189,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(2617,189,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2618,189,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2619,190,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(2620,190,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2621,190,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2622,190,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(2623,191,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(2624,191,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2625,191,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2626,192,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2627,192,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2628,193,'M','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(2629,193,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2630,193,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2631,194,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(2632,194,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(2633,194,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2634,194,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(2635,194,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(2636,194,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(2637,194,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(2638,194,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(2639,195,'A','/trunk',NULL,NULL,NULL,NULL),(2640,195,'A','/trunk/Config',NULL,NULL,NULL,NULL),(2641,195,'A','/trunk/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(2642,195,'A','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(2643,195,'A','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(2644,195,'A','/trunk/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(2645,195,'A','/trunk/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(2646,195,'A','/trunk/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(2647,195,'A','/trunk/Config/VPIMca16600200.dat',NULL,NULL,NULL,NULL),(2648,195,'A','/trunk/Doc',NULL,NULL,NULL,NULL),(2649,195,'A','/trunk/Doc/Analyse VPIMca166.docx',NULL,NULL,NULL,NULL),(2650,195,'A','/trunk/VPIMca166',NULL,NULL,NULL,NULL),(2651,195,'A','/trunk/VPIMca166.sln',NULL,NULL,NULL,NULL),(2652,195,'A','/trunk/VPIMca166/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(2653,195,'A','/trunk/VPIMca166/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(2654,195,'A','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2655,195,'A','/trunk/VPIMca166/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(2656,195,'A','/trunk/VPIMca166/ModbusMessage.h',NULL,NULL,NULL,NULL),(2657,195,'A','/trunk/VPIMca166/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(2658,195,'A','/trunk/VPIMca166/ModbusRequest.h',NULL,NULL,NULL,NULL),(2659,195,'A','/trunk/VPIMca166/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(2660,195,'A','/trunk/VPIMca166/ModbusResponse.h',NULL,NULL,NULL,NULL),(2661,195,'A','/trunk/VPIMca166/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(2662,195,'A','/trunk/VPIMca166/ModbusWrapper.h',NULL,NULL,NULL,NULL),(2663,195,'A','/trunk/VPIMca166/RtSocket.cpp',NULL,NULL,NULL,NULL),(2664,195,'A','/trunk/VPIMca166/RtSocket.h',NULL,NULL,NULL,NULL),(2665,195,'A','/trunk/VPIMca166/SourceObject.cpp',NULL,NULL,NULL,NULL),(2666,195,'A','/trunk/VPIMca166/SourceObject.h',NULL,NULL,NULL,NULL),(2667,195,'A','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(2668,195,'A','/trunk/VPIMca166/VPIMca166.def',NULL,NULL,NULL,NULL),(2669,195,'A','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(2670,195,'A','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(2671,195,'A','/trunk/VPIMca166/VpiDataTypes.h',NULL,NULL,NULL,NULL),(2672,195,'A','/trunk/VPIMca166/VpiInternal.cpp',NULL,NULL,NULL,NULL),(2673,195,'A','/trunk/VPIMca166/VpiInternal.h',NULL,NULL,NULL,NULL),(2674,195,'A','/trunk/VPIMca166/dllmain.cpp',NULL,NULL,NULL,NULL),(2675,195,'A','/trunk/VPIMca166/resource.h',NULL,NULL,NULL,NULL),(2676,195,'A','/trunk/VPIMca166/stdafx.cpp',NULL,NULL,NULL,NULL),(2677,195,'A','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(2678,195,'A','/trunk/VPIMca166/targetver.h',NULL,NULL,NULL,NULL),(2679,196,'D','/trunk/VPIMca166/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(2680,196,'D','/trunk/VPIMca166/ModbusMessage.h',NULL,NULL,NULL,NULL),(2681,196,'D','/trunk/VPIMca166/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(2682,196,'D','/trunk/VPIMca166/ModbusRequest.h',NULL,NULL,NULL,NULL),(2683,196,'D','/trunk/VPIMca166/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(2684,196,'D','/trunk/VPIMca166/ModbusResponse.h',NULL,NULL,NULL,NULL),(2685,196,'D','/trunk/VPIMca166/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(2686,196,'D','/trunk/VPIMca166/ModbusWrapper.h',NULL,NULL,NULL,NULL),(2687,196,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(2688,197,'A','/trunk/VPIMca166/MCA166Message.cpp',NULL,NULL,NULL,NULL),(2689,197,'A','/trunk/VPIMca166/MCA166Message.h',NULL,NULL,NULL,NULL),(2690,197,'A','/trunk/VPIMca166/MCA166Request.cpp',NULL,NULL,NULL,NULL),(2691,197,'A','/trunk/VPIMca166/MCA166Request.h',NULL,NULL,NULL,NULL),(2692,197,'A','/trunk/VPIMca166/MCA166Response.cpp',NULL,NULL,NULL,NULL),(2693,197,'A','/trunk/VPIMca166/MCA166Response.h',NULL,NULL,NULL,NULL),(2694,197,'A','/trunk/VPIMca166/MCA166Wrapper.cpp',NULL,NULL,NULL,NULL),(2695,197,'A','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(2696,197,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(2697,198,'M','/trunk/VPIMca166/MCA166Message.cpp',NULL,NULL,NULL,NULL),(2698,198,'M','/trunk/VPIMca166/MCA166Message.h',NULL,NULL,NULL,NULL),(2699,198,'M','/trunk/VPIMca166/MCA166Request.cpp',NULL,NULL,NULL,NULL),(2700,198,'M','/trunk/VPIMca166/MCA166Request.h',NULL,NULL,NULL,NULL),(2701,198,'M','/trunk/VPIMca166/MCA166Response.cpp',NULL,NULL,NULL,NULL),(2702,198,'M','/trunk/VPIMca166/MCA166Response.h',NULL,NULL,NULL,NULL),(2703,198,'M','/trunk/VPIMca166/MCA166Wrapper.cpp',NULL,NULL,NULL,NULL),(2704,198,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(2705,199,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2706,199,'A','/trunk/VPIMca166/SerialPort.cpp',NULL,NULL,NULL,NULL),(2707,199,'A','/trunk/VPIMca166/SerialPort.h',NULL,NULL,NULL,NULL),(2708,199,'M','/trunk/VPIMca166/SourceObject.cpp',NULL,NULL,NULL,NULL),(2709,199,'M','/trunk/VPIMca166/SourceObject.h',NULL,NULL,NULL,NULL),(2710,199,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(2711,199,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(2712,199,'A','/trunk/VPIMca166/VPIMca166.rc',NULL,NULL,NULL,NULL),(2713,199,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(2714,199,'M','/trunk/VPIMca166/VpiInternal.cpp',NULL,NULL,NULL,NULL),(2715,199,'M','/trunk/VPIMca166/VpiInternal.h',NULL,NULL,NULL,NULL),(2716,199,'M','/trunk/VPIMca166/resource.h',NULL,NULL,NULL,NULL),(2717,199,'M','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(2718,200,'A','/trunk/Doc/MCA.xlsx',NULL,NULL,NULL,NULL),(2719,200,'M','/trunk/VPIMca166/SerialPort.cpp',NULL,NULL,NULL,NULL),(2720,200,'M','/trunk/VPIMca166/SerialPort.h',NULL,NULL,NULL,NULL),(2721,200,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(2722,200,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(2723,200,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(2724,200,'M','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(2725,201,'M','/trunk/Config/VPIMca16600200.dat',NULL,NULL,NULL,NULL),(2726,201,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2727,201,'M','/trunk/VPIMca166/SerialPort.cpp',NULL,NULL,NULL,NULL),(2728,201,'M','/trunk/VPIMca166/SerialPort.h',NULL,NULL,NULL,NULL),(2729,201,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(2730,201,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(2731,201,'M','/trunk/VPIMca166/VpiInternal.cpp',NULL,NULL,NULL,NULL),(2732,202,'M','/trunk/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(2733,202,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(2734,203,'M','/trunk/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(2735,203,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(2736,203,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(2737,204,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(2738,205,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2739,206,'M','/trunk/Include/VPI.h',NULL,NULL,NULL,NULL),(2740,207,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(2741,208,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(2742,208,'M','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(2743,208,'M','/trunk/Config/Schema/SubSystem.xsd',NULL,NULL,NULL,NULL),(2744,209,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(2745,210,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2746,210,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(2747,210,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(2748,210,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(2749,210,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2750,210,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(2751,210,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(2752,210,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(2753,211,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(2754,212,'M','/trunk/OpcUAStackV1.sln',NULL,NULL,NULL,NULL),(2755,213,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(2756,213,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(2757,213,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(2758,214,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2759,215,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2760,216,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(2761,216,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(2762,216,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2763,216,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2764,216,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2765,216,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2766,216,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2767,216,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2768,217,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(2769,217,'M','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(2770,217,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(2771,217,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(2772,217,'M','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(2773,217,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2774,217,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(2775,217,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2776,217,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(2777,217,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2778,217,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2779,217,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(2780,218,'M','/trunk/Include/VpiDataValue.h',NULL,NULL,NULL,NULL),(2781,219,'M','/trunk/Include/VpiDataValue.h',NULL,NULL,NULL,NULL),(2782,220,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(2783,221,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(2784,221,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(2785,221,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(2786,221,'M','/trunk/SessionBase.cpp',NULL,NULL,NULL,NULL),(2787,221,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2788,221,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(2789,221,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(2790,221,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(2791,222,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(2792,222,'M','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(2793,222,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(2794,222,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(2795,223,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2796,223,'M','/trunk/VPIMca166/MCA166Message.cpp',NULL,NULL,NULL,NULL),(2797,223,'M','/trunk/VPIMca166/MCA166Message.h',NULL,NULL,NULL,NULL),(2798,223,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(2799,224,'M','/trunk/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(2800,225,'M','/trunk/VPIMca166/MCA166Message.cpp',NULL,NULL,NULL,NULL),(2801,226,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2802,226,'M','/trunk/VPIMca166/MCA166Request.cpp',NULL,NULL,NULL,NULL),(2803,226,'M','/trunk/VPIMca166/MCA166Response.cpp',NULL,NULL,NULL,NULL),(2804,226,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(2805,226,'M','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(2806,227,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(2807,228,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(2808,228,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2809,228,'M','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(2810,229,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(2811,229,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2812,230,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2813,230,'M','/trunk/VPIMca166/MCA166Message.cpp',NULL,NULL,NULL,NULL),(2814,230,'M','/trunk/VPIMca166/MCA166Message.h',NULL,NULL,NULL,NULL),(2815,230,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(2816,230,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(2817,231,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(2818,231,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2819,232,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(2820,233,'M','/trunk/Doc/Analyse VPIMca166.docx',NULL,NULL,NULL,NULL),(2821,234,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(2822,234,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2823,234,'M','/trunk/VPIMca166/MCA166Message.cpp',NULL,NULL,NULL,NULL),(2824,234,'M','/trunk/VPIMca166/MCA166Response.cpp',NULL,NULL,NULL,NULL),(2825,234,'M','/trunk/VPIMca166/MCA166Wrapper.cpp',NULL,NULL,NULL,NULL),(2826,234,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(2827,234,'M','/trunk/VPIMca166/SerialPort.cpp',NULL,NULL,NULL,NULL),(2828,234,'M','/trunk/VPIMca166/SerialPort.h',NULL,NULL,NULL,NULL),(2829,234,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(2830,234,'M','/trunk/VPIMca166/VpiInternal.cpp',NULL,NULL,NULL,NULL),(2831,235,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(2832,235,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(2833,235,'M','/trunk/VPIMca166/MCA166Message.cpp',NULL,NULL,NULL,NULL),(2834,235,'M','/trunk/VPIMca166/SerialPort.cpp',NULL,NULL,NULL,NULL),(2835,235,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(2836,235,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(2837,235,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(2838,235,'M','/trunk/VPIMca166/VpiDataTypes.h',NULL,NULL,NULL,NULL),(2839,235,'M','/trunk/VPIMca166/VpiInternal.cpp',NULL,NULL,NULL,NULL),(2840,235,'M','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(2841,236,'M','/trunk/Include/VpiDataValue.h',NULL,NULL,NULL,NULL),(2842,236,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2843,236,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(2844,236,'M','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(2845,237,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2846,237,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2847,238,'M','/branches/Linux/include/shared/opcua.h',NULL,NULL,NULL,NULL),(2848,238,'M','/branches/Linux/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(2849,238,'M','/branches/Linux/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(2850,238,'M','/branches/Linux/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(2851,238,'M','/branches/Linux/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(2852,238,'M','/branches/Linux/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(2853,238,'M','/branches/Linux/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(2854,238,'M','/branches/Linux/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(2855,238,'M','/branches/Linux/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(2856,238,'M','/branches/Linux/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(2857,238,'M','/branches/Linux/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(2858,238,'M','/branches/Linux/source/opcua_guid.c',NULL,NULL,NULL,NULL),(2859,238,'M','/branches/Linux/source/opcua_memory.c',NULL,NULL,NULL,NULL),(2860,238,'M','/branches/Linux/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(2861,238,'M','/branches/Linux/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(2862,238,'M','/branches/Linux/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(2863,238,'M','/branches/Linux/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(2864,238,'M','/branches/Linux/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(2865,238,'M','/branches/Linux/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(2866,238,'M','/branches/Linux/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(2867,238,'M','/branches/Linux/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(2868,238,'M','/branches/Linux/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(2869,238,'M','/branches/Linux/source/opcua_p_trace.c',NULL,NULL,NULL,NULL),(2870,238,'M','/branches/Linux/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(2871,238,'M','/branches/Linux/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(2872,238,'M','/branches/Linux/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(2873,238,'M','/branches/Linux/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(2874,238,'M','/branches/Linux/source/opcua_string.c',NULL,NULL,NULL,NULL),(2875,238,'M','/branches/Linux/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(2876,238,'M','/branches/Linux/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(2877,238,'M','/branches/Linux/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(2878,238,'M','/branches/Linux/source/opcua_trace.c',NULL,NULL,NULL,NULL),(2879,238,'M','/branches/Linux/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(2880,238,'M','/branches/Linux/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(2881,239,'M','/trunk/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(2882,239,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(2883,239,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(2884,239,'M','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(2885,239,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(2886,240,'M','/branches/linux/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(2887,240,'M','/branches/linux/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(2888,240,'M','/branches/linux/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(2889,240,'M','/branches/linux/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(2890,240,'M','/branches/linux/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(2891,240,'M','/branches/linux/Alias.cpp',NULL,NULL,NULL,NULL),(2892,240,'M','/branches/linux/Alias.h',NULL,NULL,NULL,NULL),(2893,240,'M','/branches/linux/Definition.cpp',NULL,NULL,NULL,NULL),(2894,240,'M','/branches/linux/Definition.h',NULL,NULL,NULL,NULL),(2895,240,'M','/branches/linux/Field.cpp',NULL,NULL,NULL,NULL),(2896,240,'M','/branches/linux/Field.h',NULL,NULL,NULL,NULL),(2897,240,'M','/branches/linux/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(2898,240,'M','/branches/linux/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(2899,240,'M','/branches/linux/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(2900,240,'M','/branches/linux/NamespaceUri.h',NULL,NULL,NULL,NULL),(2901,240,'M','/branches/linux/QueueRequest.cpp',NULL,NULL,NULL,NULL),(2902,240,'M','/branches/linux/QueueRequest.h',NULL,NULL,NULL,NULL),(2903,240,'M','/branches/linux/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(2904,240,'M','/branches/linux/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(2905,240,'M','/branches/linux/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(2906,240,'M','/branches/linux/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(2907,240,'M','/branches/linux/QueuedWriteRequest.cpp',NULL,NULL,NULL,NULL),(2908,240,'M','/branches/linux/QueuedWriteRequest.h',NULL,NULL,NULL,NULL),(2909,240,'M','/branches/linux/SecureChannel.cpp',NULL,NULL,NULL,NULL),(2910,240,'M','/branches/linux/SecureChannel.h',NULL,NULL,NULL,NULL),(2911,240,'M','/branches/linux/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2912,240,'M','/branches/linux/ServerApplication.h',NULL,NULL,NULL,NULL),(2913,240,'M','/branches/linux/SessionServer.cpp',NULL,NULL,NULL,NULL),(2914,240,'M','/branches/linux/SessionServer.h',NULL,NULL,NULL,NULL),(2915,240,'M','/branches/linux/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(2916,240,'M','/branches/linux/SimulatedGroup.h',NULL,NULL,NULL,NULL),(2917,240,'M','/branches/linux/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(2918,240,'M','/branches/linux/SimulatedNode.h',NULL,NULL,NULL,NULL),(2919,240,'M','/branches/linux/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(2920,240,'M','/branches/linux/StackCallbacks.h',NULL,NULL,NULL,NULL),(2921,240,'M','/branches/linux/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(2922,240,'M','/branches/linux/SubscriptionServer.h',NULL,NULL,NULL,NULL),(2923,240,'M','/branches/linux/UABase.cpp',NULL,NULL,NULL,NULL),(2924,240,'M','/branches/linux/UABase.h',NULL,NULL,NULL,NULL),(2925,240,'M','/branches/linux/UABinding.cpp',NULL,NULL,NULL,NULL),(2926,240,'M','/branches/linux/UABinding.h',NULL,NULL,NULL,NULL),(2927,240,'M','/branches/linux/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(2928,240,'M','/branches/linux/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(2929,240,'M','/branches/linux/UADataType.cpp',NULL,NULL,NULL,NULL),(2930,240,'M','/branches/linux/UADataType.h',NULL,NULL,NULL,NULL),(2931,240,'M','/branches/linux/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2932,240,'M','/branches/linux/UAInformationModel.h',NULL,NULL,NULL,NULL),(2933,240,'M','/branches/linux/UAMethod.cpp',NULL,NULL,NULL,NULL),(2934,240,'M','/branches/linux/UAMethod.h',NULL,NULL,NULL,NULL),(2935,240,'M','/branches/linux/UAObject.cpp',NULL,NULL,NULL,NULL),(2936,240,'M','/branches/linux/UAObject.h',NULL,NULL,NULL,NULL),(2937,240,'M','/branches/linux/UAObjectType.cpp',NULL,NULL,NULL,NULL),(2938,240,'M','/branches/linux/UAObjectType.h',NULL,NULL,NULL,NULL),(2939,240,'M','/branches/linux/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(2940,240,'M','/branches/linux/UAReferenceType.h',NULL,NULL,NULL,NULL),(2941,240,'M','/branches/linux/UAVariable.cpp',NULL,NULL,NULL,NULL),(2942,240,'M','/branches/linux/UAVariable.h',NULL,NULL,NULL,NULL),(2943,240,'M','/branches/linux/UAVariableType.cpp',NULL,NULL,NULL,NULL),(2944,240,'M','/branches/linux/UAVariableType.h',NULL,NULL,NULL,NULL),(2945,240,'M','/branches/linux/UAView.cpp',NULL,NULL,NULL,NULL),(2946,240,'M','/branches/linux/UAView.h',NULL,NULL,NULL,NULL),(2947,240,'M','/branches/linux/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(2948,240,'M','/branches/linux/VPIScheduler.h',NULL,NULL,NULL,NULL),(2949,240,'M','/branches/linux/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(2950,240,'M','/branches/linux/stdafx.h',NULL,NULL,NULL,NULL),(2951,241,'A','/branches/linux/HistoricalDataNode.cpp',NULL,NULL,NULL,NULL),(2952,241,'A','/branches/linux/HistoricalDataNode.h',NULL,NULL,NULL,NULL),(2953,241,'A','/branches/linux/HistoringServer.cpp',NULL,NULL,NULL,NULL),(2954,241,'A','/branches/linux/HistoringServer.h',NULL,NULL,NULL,NULL),(2955,241,'A','/branches/linux/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(2956,241,'A','/branches/linux/QueuedHistoryReadRequest.h',NULL,NULL,NULL,NULL),(2957,242,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(2958,242,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2959,242,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2960,242,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2961,242,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(2962,242,'M','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(2963,243,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2964,244,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(2965,244,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2966,244,'M','/trunk/UADataType.h',NULL,NULL,NULL,NULL),(2967,245,'M','/trunk/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(2968,245,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(2969,245,'M','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(2970,245,'M','/trunk/Definition.cpp',NULL,NULL,NULL,NULL),(2971,245,'M','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(2972,245,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(2973,245,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(2974,245,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(2975,245,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(2976,245,'M','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(2977,245,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(2978,245,'M','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(2979,245,'M','/trunk/UADataType.h',NULL,NULL,NULL,NULL),(2980,245,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(2981,245,'M','/trunk/UAObject.h',NULL,NULL,NULL,NULL),(2982,245,'M','/trunk/UAObjectType.h',NULL,NULL,NULL,NULL),(2983,245,'M','/trunk/UAReferenceType.h',NULL,NULL,NULL,NULL),(2984,245,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(2985,245,'M','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(2986,246,'M','/trunk/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(2987,246,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(2988,246,'M','/trunk/UAStackV1/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(2989,246,'M','/trunk/UAStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(2990,246,'M','/trunk/UAStackV1/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(2991,246,'M','/trunk/UAStackV1/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(2992,246,'M','/trunk/UAStackV1/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(2993,246,'M','/trunk/UAStackV1/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(2994,246,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(2995,246,'M','/trunk/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(2996,246,'M','/trunk/UAStackV1/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(2997,246,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(2998,246,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(2999,246,'M','/trunk/UAStackV1/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(3000,246,'M','/trunk/UAStackV1/source/opcua_p_trace.c',NULL,NULL,NULL,NULL),(3001,246,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(3002,247,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3003,248,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3004,249,'M','/branches/linux/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(3005,249,'M','/branches/linux/Application.cpp',NULL,NULL,NULL,NULL),(3006,249,'M','/branches/linux/BuildInfo.cpp',NULL,NULL,NULL,NULL),(3007,249,'M','/branches/linux/Channel.cpp',NULL,NULL,NULL,NULL),(3008,249,'M','/branches/linux/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(3009,249,'M','/branches/linux/DataValue.cpp',NULL,NULL,NULL,NULL),(3010,249,'M','/branches/linux/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(3011,249,'M','/branches/linux/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(3012,249,'M','/branches/linux/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(3013,249,'M','/branches/linux/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(3014,249,'M','/branches/linux/MonitoredItemQueue.cpp',NULL,NULL,NULL,NULL),(3015,249,'M','/branches/linux/NumericRange.cpp',NULL,NULL,NULL,NULL),(3016,249,'M','/branches/linux/ServerStatus.cpp',NULL,NULL,NULL,NULL),(3017,249,'M','/branches/linux/SessionBase.cpp',NULL,NULL,NULL,NULL),(3018,249,'M','/branches/linux/Subscription.cpp',NULL,NULL,NULL,NULL),(3019,249,'M','/branches/linux/Utils.cpp',NULL,NULL,NULL,NULL),(3020,249,'M','/branches/linux/include/AggregateCalculator.h',NULL,NULL,NULL,NULL),(3021,249,'M','/branches/linux/include/Application.h',NULL,NULL,NULL,NULL),(3022,249,'M','/branches/linux/include/BuildInfo.h',NULL,NULL,NULL,NULL),(3023,249,'M','/branches/linux/include/Channel.h',NULL,NULL,NULL,NULL),(3024,249,'M','/branches/linux/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(3025,249,'M','/branches/linux/include/DataValue.h',NULL,NULL,NULL,NULL),(3026,249,'M','/branches/linux/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(3027,249,'M','/branches/linux/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(3028,249,'M','/branches/linux/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(3029,249,'M','/branches/linux/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(3030,249,'M','/branches/linux/include/MonitoredItemQueue.h',NULL,NULL,NULL,NULL),(3031,249,'M','/branches/linux/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(3032,249,'M','/branches/linux/include/NumericRange.h',NULL,NULL,NULL,NULL),(3033,249,'M','/branches/linux/include/ServerStatus.h',NULL,NULL,NULL,NULL),(3034,249,'M','/branches/linux/include/SessionBase.h',NULL,NULL,NULL,NULL),(3035,249,'M','/branches/linux/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(3036,249,'M','/branches/linux/include/Subscription.h',NULL,NULL,NULL,NULL),(3037,249,'M','/branches/linux/include/UAExceptions.h',NULL,NULL,NULL,NULL),(3038,249,'M','/branches/linux/include/Utils.h',NULL,NULL,NULL,NULL),(3039,249,'M','/branches/linux/include/cslock.h',NULL,NULL,NULL,NULL),(3040,249,'M','/branches/linux/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(3041,249,'M','/branches/linux/stdafx.h',NULL,NULL,NULL,NULL),(3042,250,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(3043,250,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(3044,250,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(3045,251,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(3046,251,'M','/trunk/SessionBase.cpp',NULL,NULL,NULL,NULL),(3047,251,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(3048,252,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(3049,252,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(3050,253,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3051,254,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(3052,254,'M','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(3053,254,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3054,254,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3055,254,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3056,254,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(3057,254,'M','/trunk/StackCallbacks.h',NULL,NULL,NULL,NULL),(3058,254,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3059,254,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3060,254,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(3061,254,'A','/trunk/UANamespaceTranslationMap.cpp',NULL,NULL,NULL,NULL),(3062,254,'A','/trunk/UANamespaceTranslationMap.h',NULL,NULL,NULL,NULL),(3063,254,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(3064,254,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(3065,255,'M','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(3066,255,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3067,255,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(3068,255,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(3069,255,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(3070,255,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(3071,255,'M','/trunk/SimulatedGroup.h',NULL,NULL,NULL,NULL),(3072,255,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3073,255,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(3074,255,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3075,255,'M','/trunk/UANamespaceTranslationMap.cpp',NULL,NULL,NULL,NULL),(3076,255,'M','/trunk/UANamespaceTranslationMap.h',NULL,NULL,NULL,NULL),(3077,255,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(3078,255,'M','/trunk/VPIScheduler.h',NULL,NULL,NULL,NULL),(3079,256,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(3080,256,'M','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(3081,257,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(3082,257,'M','/trunk/BuildInfo.cpp',NULL,NULL,NULL,NULL),(3083,257,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(3084,257,'M','/trunk/MonitoredItemQueue.cpp',NULL,NULL,NULL,NULL),(3085,257,'M','/trunk/NumericRange.cpp',NULL,NULL,NULL,NULL),(3086,257,'M','/trunk/ServerStatus.cpp',NULL,NULL,NULL,NULL),(3087,257,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(3088,257,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(3089,257,'M','/trunk/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(3090,257,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(3091,257,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(3092,257,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(3093,257,'M','/trunk/include/cslock.h',NULL,NULL,NULL,NULL),(3094,257,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(3095,258,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3096,258,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(3097,259,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3098,260,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(3099,260,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3100,260,'M','/trunk/UAStackV1/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(3101,260,'M','/trunk/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(3102,261,'M','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(3103,262,'M','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(3104,262,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(3105,263,'A','/trunk/VPIOperatingSystem',NULL,NULL,NULL,NULL),(3106,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem',NULL,NULL,NULL,NULL),(3107,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(3108,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/EntryPoints.cpp',NULL,NULL,NULL,NULL),(3109,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.cpp',NULL,NULL,NULL,NULL),(3110,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.h',NULL,NULL,NULL,NULL),(3111,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.cpp',NULL,NULL,NULL,NULL),(3112,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.h',NULL,NULL,NULL,NULL),(3113,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(3114,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VpiDataTypes.h',NULL,NULL,NULL,NULL),(3115,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VpiOperatingSystem.def',NULL,NULL,NULL,NULL),(3116,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/dllmain.cpp',NULL,NULL,NULL,NULL),(3117,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/stdafx.cpp',NULL,NULL,NULL,NULL),(3118,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/stdafx.h',NULL,NULL,NULL,NULL),(3119,263,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/targetver.h',NULL,NULL,NULL,NULL),(3120,264,'M','/trunk/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(3121,265,'A','/trunk/Vpis',NULL,NULL,NULL,NULL),(3122,265,'A','/trunk/Vpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(3123,265,'A','/trunk/Vpis/Vpis.sln',NULL,NULL,NULL,NULL),(3124,265,'A','/trunk/Vpis/include',NULL,NULL,NULL,NULL),(3125,265,'A','/trunk/Vpis/include/VPI.h',NULL,NULL,NULL,NULL),(3126,265,'A','/trunk/Vpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(3127,265,'A','/trunk/Vpis/include/cslock.h',NULL,NULL,NULL,NULL),(3128,266,'M','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(3129,266,'M','/trunk/Definition.cpp',NULL,NULL,NULL,NULL),(3130,266,'M','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(3131,266,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3132,266,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(3133,266,'M','/trunk/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(3134,266,'M','/trunk/QueueRequest.cpp',NULL,NULL,NULL,NULL),(3135,266,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(3136,266,'M','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(3137,266,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(3138,266,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3139,266,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(3140,266,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(3141,266,'M','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(3142,266,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(3143,266,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3144,266,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(3145,266,'M','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(3146,266,'M','/trunk/UADataType.cpp',NULL,NULL,NULL,NULL),(3147,266,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3148,266,'M','/trunk/UAMethod.cpp',NULL,NULL,NULL,NULL),(3149,266,'M','/trunk/UAObject.cpp',NULL,NULL,NULL,NULL),(3150,266,'M','/trunk/UAObjectType.cpp',NULL,NULL,NULL,NULL),(3151,266,'M','/trunk/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(3152,266,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(3153,266,'M','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(3154,266,'M','/trunk/UAView.cpp',NULL,NULL,NULL,NULL),(3155,266,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(3156,267,'A','/trunk/Config/Schema/UASimulation.xsd',NULL,NULL,NULL,NULL),(3157,267,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3158,267,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(3159,267,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3160,268,'M','/trunk/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(3161,268,'M','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(3162,268,'M','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(3163,268,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(3164,268,'M','/trunk/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(3165,268,'M','/trunk/SessionBase.cpp',NULL,NULL,NULL,NULL),(3166,268,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(3167,268,'M','/trunk/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(3168,268,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(3169,268,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(3170,269,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(3171,269,'D','/trunk/MonitoredItemQueue.cpp',NULL,NULL,NULL,NULL),(3172,269,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(3173,269,'D','/trunk/include/MonitoredItemQueue.h',NULL,NULL,NULL,NULL),(3174,270,'A','/trunk/OPCUA_CPP_SharedLib.sln',NULL,NULL,NULL,NULL),(3175,270,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(3176,270,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(3177,270,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(3178,270,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(3179,271,'M','/trunk/NumericRange.cpp',NULL,NULL,NULL,NULL),(3180,271,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(3181,271,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(3182,271,'M','/trunk/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(3183,271,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(3184,271,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(3185,272,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(3186,273,'A','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(3187,274,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3188,274,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(3189,275,'M','/trunk/Include/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(3190,276,'A','/trunk/Config/Opc.Ua.Di.NodeSet2.xml',NULL,NULL,NULL,NULL),(3191,276,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3192,276,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3193,276,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3194,276,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3195,277,'M','/trunk/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(3196,277,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3197,277,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3198,277,'M','/trunk/UANamespaceTranslationMap.cpp',NULL,NULL,NULL,NULL),(3199,277,'M','/trunk/UANamespaceTranslationMap.h',NULL,NULL,NULL,NULL),(3200,278,'M','/trunk/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(3201,278,'M','/trunk/UAStackV1/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(3202,279,'A','/branches/WinCE',NULL,NULL,NULL,NULL),(3203,280,'A','/branches/WinCE/include',NULL,NULL,NULL,NULL),(3204,281,'A','/branches/WinCE/source',NULL,NULL,NULL,NULL),(3205,282,'A','/branches/WinCE/beckhoff-HMI600',NULL,NULL,NULL,NULL),(3206,283,'M','/trunk/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(3207,283,'M','/trunk/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(3208,283,'M','/trunk/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(3209,283,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(3210,283,'M','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(3211,283,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(3212,284,'A','/branches/WinCE',NULL,NULL,NULL,NULL),(3213,285,'A','/branches/WinCE/include',NULL,NULL,NULL,NULL),(3214,286,'A','/branches/WinCE/source',NULL,NULL,NULL,NULL),(3215,287,'A','/branches/WinCE/beckhoff-HMI600',NULL,NULL,NULL,NULL),(3216,288,'D','/trunk/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(3217,288,'D','/trunk/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(3218,288,'D','/trunk/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(3219,288,'D','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(3220,288,'D','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(3221,288,'D','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(3222,288,'D','/trunk/Alias.h',NULL,NULL,NULL,NULL),(3223,288,'D','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(3224,288,'D','/trunk/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(3225,288,'D','/trunk/Definition.cpp',NULL,NULL,NULL,NULL),(3226,288,'D','/trunk/Definition.h',NULL,NULL,NULL,NULL),(3227,288,'D','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(3228,288,'D','/trunk/Field.h',NULL,NULL,NULL,NULL),(3229,288,'D','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3230,288,'D','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(3231,288,'D','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(3232,288,'D','/trunk/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(3233,288,'D','/trunk/NamespaceUri.h',NULL,NULL,NULL,NULL),(3234,288,'D','/trunk/OPCUA_CPP_QuickServer.sln',NULL,NULL,NULL,NULL),(3235,288,'D','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3236,288,'A','/trunk/OPCUA_CPP_QuickServer_Install',NULL,NULL,NULL,NULL),(3237,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install',NULL,NULL,NULL,NULL),(3238,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install.sln',NULL,NULL,NULL,NULL),(3239,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install.suo',NULL,NULL,NULL,NULL),(3240,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install.vssscc',NULL,NULL,NULL,NULL),(3241,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install/Debug',NULL,NULL,NULL,NULL),(3242,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install/Debug/OPCUA_CPP_QuickServer_Install.tmp',NULL,NULL,NULL,NULL),(3243,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install/Debug/setup.exe',NULL,NULL,NULL,NULL),(3244,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install.vdproj',NULL,NULL,NULL,NULL),(3245,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install.vdproj.vspscc',NULL,NULL,NULL,NULL),(3246,288,'A','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install/Release',NULL,NULL,NULL,NULL),(3247,288,'D','/trunk/QueueRequest.cpp',NULL,NULL,NULL,NULL),(3248,288,'D','/trunk/QueueRequest.h',NULL,NULL,NULL,NULL),(3249,288,'D','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(3250,288,'D','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(3251,288,'D','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(3252,288,'D','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(3253,288,'D','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(3254,288,'D','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(3255,288,'D','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3256,288,'D','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(3257,288,'D','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(3258,288,'D','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(3259,288,'D','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(3260,288,'D','/trunk/SimulatedGroup.h',NULL,NULL,NULL,NULL),(3261,288,'D','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(3262,288,'D','/trunk/SimulatedNode.h',NULL,NULL,NULL,NULL),(3263,288,'D','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(3264,288,'D','/trunk/StackCallbacks.h',NULL,NULL,NULL,NULL),(3265,288,'D','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3266,288,'D','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(3267,288,'D','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(3268,288,'D','/trunk/UABase.h',NULL,NULL,NULL,NULL),(3269,288,'D','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(3270,288,'D','/trunk/UABinding.h',NULL,NULL,NULL,NULL),(3271,288,'D','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(3272,288,'D','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(3273,288,'D','/trunk/UADataType.cpp',NULL,NULL,NULL,NULL),(3274,288,'D','/trunk/UADataType.h',NULL,NULL,NULL,NULL),(3275,288,'D','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3276,288,'D','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(3277,288,'D','/trunk/UAMethod.cpp',NULL,NULL,NULL,NULL),(3278,288,'D','/trunk/UAMethod.h',NULL,NULL,NULL,NULL),(3279,288,'D','/trunk/UANamespaceTranslationMap.cpp',NULL,NULL,NULL,NULL),(3280,288,'D','/trunk/UANamespaceTranslationMap.h',NULL,NULL,NULL,NULL),(3281,288,'D','/trunk/UAObject.cpp',NULL,NULL,NULL,NULL),(3282,288,'D','/trunk/UAObject.h',NULL,NULL,NULL,NULL),(3283,288,'D','/trunk/UAObjectType.cpp',NULL,NULL,NULL,NULL),(3284,288,'D','/trunk/UAObjectType.h',NULL,NULL,NULL,NULL),(3285,288,'D','/trunk/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(3286,288,'D','/trunk/UAReferenceType.h',NULL,NULL,NULL,NULL),(3287,288,'D','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(3288,288,'D','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(3289,288,'D','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(3290,288,'D','/trunk/UAVariableType.h',NULL,NULL,NULL,NULL),(3291,288,'D','/trunk/UAView.cpp',NULL,NULL,NULL,NULL),(3292,288,'D','/trunk/UAView.h',NULL,NULL,NULL,NULL),(3293,288,'D','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(3294,288,'D','/trunk/VPIScheduler.h',NULL,NULL,NULL,NULL),(3295,288,'D','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(3296,288,'D','/trunk/resource.h',NULL,NULL,NULL,NULL),(3297,288,'D','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(3298,288,'D','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(3299,288,'D','/trunk/targetver.h',NULL,NULL,NULL,NULL),(3300,289,'D','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(3301,290,'A','/trunk/OPCUA_CPP_QuickServer.sln',NULL,NULL,NULL,NULL),(3302,291,'A','/trunk/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(3303,292,'A','/trunk/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(3304,293,'A','/trunk/VPIScheduler.h',NULL,NULL,NULL,NULL),(3305,294,'A','/trunk/UAView.cpp',NULL,NULL,NULL,NULL),(3306,294,'A','/trunk/UAView.h',NULL,NULL,NULL,NULL),(3307,294,'A','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(3308,294,'A','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(3309,295,'A','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(3310,295,'A','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(3311,295,'A','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(3312,295,'A','/trunk/UAVariableType.h',NULL,NULL,NULL,NULL),(3313,296,'A','/trunk/UAObjectType.cpp',NULL,NULL,NULL,NULL),(3314,296,'A','/trunk/UAObjectType.h',NULL,NULL,NULL,NULL),(3315,296,'A','/trunk/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(3316,296,'A','/trunk/UAReferenceType.h',NULL,NULL,NULL,NULL),(3317,297,'A','/trunk/UANamespaceTranslationMap.cpp',NULL,NULL,NULL,NULL),(3318,297,'A','/trunk/UANamespaceTranslationMap.h',NULL,NULL,NULL,NULL),(3319,297,'A','/trunk/UAObject.cpp',NULL,NULL,NULL,NULL),(3320,297,'A','/trunk/UAObject.h',NULL,NULL,NULL,NULL),(3321,298,'A','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3322,298,'A','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(3323,298,'A','/trunk/UAMethod.cpp',NULL,NULL,NULL,NULL),(3324,298,'A','/trunk/UAMethod.h',NULL,NULL,NULL,NULL),(3325,299,'A','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(3326,299,'A','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(3327,299,'A','/trunk/UADataType.cpp',NULL,NULL,NULL,NULL),(3328,299,'A','/trunk/UADataType.h',NULL,NULL,NULL,NULL),(3329,300,'A','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(3330,300,'A','/trunk/UABase.h',NULL,NULL,NULL,NULL),(3331,300,'A','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(3332,300,'A','/trunk/UABinding.h',NULL,NULL,NULL,NULL),(3333,301,'A','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3334,301,'A','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(3335,301,'A','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(3336,301,'A','/trunk/targetver.h',NULL,NULL,NULL,NULL),(3337,302,'A','/trunk/QueueRequest.cpp',NULL,NULL,NULL,NULL),(3338,302,'A','/trunk/QueueRequest.h',NULL,NULL,NULL,NULL),(3339,302,'A','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(3340,302,'A','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(3341,302,'A','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(3342,302,'A','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(3343,302,'A','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(3344,302,'A','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(3345,302,'A','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3346,302,'A','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(3347,302,'A','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(3348,302,'A','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(3349,302,'A','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(3350,302,'A','/trunk/SimulatedGroup.h',NULL,NULL,NULL,NULL),(3351,302,'A','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(3352,302,'A','/trunk/SimulatedNode.h',NULL,NULL,NULL,NULL),(3353,302,'A','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(3354,302,'A','/trunk/StackCallbacks.h',NULL,NULL,NULL,NULL),(3355,302,'A','/trunk/resource.h',NULL,NULL,NULL,NULL),(3356,302,'A','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(3357,303,'A','/trunk/Definition.cpp',NULL,NULL,NULL,NULL),(3358,303,'A','/trunk/Definition.h',NULL,NULL,NULL,NULL),(3359,303,'A','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(3360,303,'A','/trunk/Field.h',NULL,NULL,NULL,NULL),(3361,303,'A','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3362,303,'A','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(3363,303,'A','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(3364,303,'A','/trunk/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(3365,303,'A','/trunk/NamespaceUri.h',NULL,NULL,NULL,NULL),(3366,304,'A','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(3367,304,'A','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(3368,304,'A','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(3369,304,'A','/trunk/Alias.h',NULL,NULL,NULL,NULL),(3370,305,'A','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(3371,306,'A','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(3372,307,'A','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3373,308,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3374,309,'A','/trunk/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(3375,309,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3376,310,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3377,310,'M','/trunk/UANamespaceTranslationMap.h',NULL,NULL,NULL,NULL),(3378,311,'A','/branches/WinCE/include/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(3379,311,'A','/branches/WinCE/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(3380,311,'A','/branches/WinCE/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(3381,311,'A','/branches/WinCE/include/Alias.h',NULL,NULL,NULL,NULL),(3382,311,'A','/branches/WinCE/include/BuiltInTypes.h',NULL,NULL,NULL,NULL),(3383,311,'A','/branches/WinCE/include/Definition.h',NULL,NULL,NULL,NULL),(3384,311,'A','/branches/WinCE/include/Field.h',NULL,NULL,NULL,NULL),(3385,311,'A','/branches/WinCE/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(3386,311,'A','/branches/WinCE/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(3387,311,'A','/branches/WinCE/include/QueueRequest.h',NULL,NULL,NULL,NULL),(3388,311,'A','/branches/WinCE/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(3389,311,'A','/branches/WinCE/include/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(3390,311,'A','/branches/WinCE/include/SecureChannel.h',NULL,NULL,NULL,NULL),(3391,311,'A','/branches/WinCE/include/ServerApplication.h',NULL,NULL,NULL,NULL),(3392,311,'A','/branches/WinCE/include/SessionServer.h',NULL,NULL,NULL,NULL),(3393,311,'A','/branches/WinCE/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(3394,311,'A','/branches/WinCE/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(3395,311,'A','/branches/WinCE/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(3396,311,'A','/branches/WinCE/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(3397,311,'A','/branches/WinCE/include/UABase.h',NULL,NULL,NULL,NULL),(3398,311,'A','/branches/WinCE/include/UABinding.h',NULL,NULL,NULL,NULL),(3399,311,'A','/branches/WinCE/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(3400,311,'A','/branches/WinCE/include/UADataType.h',NULL,NULL,NULL,NULL),(3401,311,'A','/branches/WinCE/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(3402,311,'A','/branches/WinCE/include/UAMethod.h',NULL,NULL,NULL,NULL),(3403,311,'A','/branches/WinCE/include/UANamespaceTranslationMap.h',NULL,NULL,NULL,NULL),(3404,311,'A','/branches/WinCE/include/UAObject.h',NULL,NULL,NULL,NULL),(3405,311,'A','/branches/WinCE/include/UAObjectType.h',NULL,NULL,NULL,NULL),(3406,311,'A','/branches/WinCE/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(3407,311,'A','/branches/WinCE/include/UAVariable.h',NULL,NULL,NULL,NULL),(3408,311,'A','/branches/WinCE/include/UAVariableType.h',NULL,NULL,NULL,NULL),(3409,311,'A','/branches/WinCE/include/UAView.h',NULL,NULL,NULL,NULL),(3410,311,'A','/branches/WinCE/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(3411,311,'A','/branches/WinCE/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(3412,311,'A','/branches/WinCE/include/resource.h',NULL,NULL,NULL,NULL),(3413,311,'A','/branches/WinCE/include/stdafx.h',NULL,NULL,NULL,NULL),(3414,311,'A','/branches/WinCE/include/targetver.h',NULL,NULL,NULL,NULL),(3415,311,'A','/branches/WinCE/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(3416,311,'A','/branches/WinCE/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(3417,311,'A','/branches/WinCE/source/Alias.cpp',NULL,NULL,NULL,NULL),(3418,311,'A','/branches/WinCE/source/Definition.cpp',NULL,NULL,NULL,NULL),(3419,311,'A','/branches/WinCE/source/Field.cpp',NULL,NULL,NULL,NULL),(3420,311,'A','/branches/WinCE/source/Main.cpp',NULL,NULL,NULL,NULL),(3421,311,'A','/branches/WinCE/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(3422,311,'A','/branches/WinCE/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(3423,311,'A','/branches/WinCE/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(3424,311,'A','/branches/WinCE/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(3425,311,'A','/branches/WinCE/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(3426,311,'A','/branches/WinCE/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(3427,311,'A','/branches/WinCE/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3428,311,'A','/branches/WinCE/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(3429,311,'A','/branches/WinCE/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(3430,311,'A','/branches/WinCE/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(3431,311,'A','/branches/WinCE/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(3432,311,'A','/branches/WinCE/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3433,311,'A','/branches/WinCE/source/UABase.cpp',NULL,NULL,NULL,NULL),(3434,311,'A','/branches/WinCE/source/UABinding.cpp',NULL,NULL,NULL,NULL),(3435,311,'A','/branches/WinCE/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(3436,311,'A','/branches/WinCE/source/UADataType.cpp',NULL,NULL,NULL,NULL),(3437,311,'A','/branches/WinCE/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3438,311,'A','/branches/WinCE/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(3439,311,'A','/branches/WinCE/source/UANamespaceTranslationMap.cpp',NULL,NULL,NULL,NULL),(3440,311,'A','/branches/WinCE/source/UAObject.cpp',NULL,NULL,NULL,NULL),(3441,311,'A','/branches/WinCE/source/UAObjectType.cpp',NULL,NULL,NULL,NULL),(3442,311,'A','/branches/WinCE/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(3443,311,'A','/branches/WinCE/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(3444,311,'A','/branches/WinCE/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(3445,311,'A','/branches/WinCE/source/UAView.cpp',NULL,NULL,NULL,NULL),(3446,311,'A','/branches/WinCE/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(3447,311,'A','/branches/WinCE/source/stdafx.cpp',NULL,NULL,NULL,NULL),(3448,312,'A','/branches/WinCE/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(3449,313,'A','/branches/WinCE/source/opcua_base64.c',NULL,NULL,NULL,NULL),(3450,313,'A','/branches/WinCE/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(3451,313,'A','/branches/WinCE/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(3452,313,'A','/branches/WinCE/source/opcua_buffer.c',NULL,NULL,NULL,NULL),(3453,313,'A','/branches/WinCE/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(3454,313,'A','/branches/WinCE/source/opcua_channel.c',NULL,NULL,NULL,NULL),(3455,313,'A','/branches/WinCE/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(3456,313,'A','/branches/WinCE/source/opcua_connection.c',NULL,NULL,NULL,NULL),(3457,313,'A','/branches/WinCE/source/opcua_core.c',NULL,NULL,NULL,NULL),(3458,313,'A','/branches/WinCE/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(3459,313,'A','/branches/WinCE/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(3460,313,'A','/branches/WinCE/source/opcua_decoder.c',NULL,NULL,NULL,NULL),(3461,313,'A','/branches/WinCE/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(3462,313,'A','/branches/WinCE/source/opcua_encoder.c',NULL,NULL,NULL,NULL),(3463,313,'A','/branches/WinCE/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(3464,313,'A','/branches/WinCE/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(3465,313,'A','/branches/WinCE/source/opcua_enumeratedtype.c',NULL,NULL,NULL,NULL),(3466,313,'A','/branches/WinCE/source/opcua_extensionobject.c',NULL,NULL,NULL,NULL),(3467,313,'A','/branches/WinCE/source/opcua_guid.c',NULL,NULL,NULL,NULL),(3468,313,'A','/branches/WinCE/source/opcua_http_internal.c',NULL,NULL,NULL,NULL),(3469,313,'A','/branches/WinCE/source/opcua_httpconnection.c',NULL,NULL,NULL,NULL),(3470,313,'A','/branches/WinCE/source/opcua_httpconnection_securityproxy.c',NULL,NULL,NULL,NULL),(3471,313,'A','/branches/WinCE/source/opcua_httplistener.c',NULL,NULL,NULL,NULL),(3472,313,'A','/branches/WinCE/source/opcua_httplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(3473,313,'A','/branches/WinCE/source/opcua_httplistener_securitystub.c',NULL,NULL,NULL,NULL),(3474,313,'A','/branches/WinCE/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(3475,313,'A','/branches/WinCE/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(3476,313,'A','/branches/WinCE/source/opcua_httpstream.c',NULL,NULL,NULL,NULL),(3477,313,'A','/branches/WinCE/source/opcua_list.c',NULL,NULL,NULL,NULL),(3478,313,'A','/branches/WinCE/source/opcua_listener.c',NULL,NULL,NULL,NULL),(3479,313,'A','/branches/WinCE/source/opcua_memory.c',NULL,NULL,NULL,NULL),(3480,313,'A','/branches/WinCE/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(3481,313,'A','/branches/WinCE/source/opcua_messagecontext.c',NULL,NULL,NULL,NULL),(3482,313,'A','/branches/WinCE/source/opcua_p_binary.c',NULL,NULL,NULL,NULL),(3483,313,'A','/branches/WinCE/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(3484,313,'A','/branches/WinCE/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(3485,313,'A','/branches/WinCE/source/opcua_p_guid.c',NULL,NULL,NULL,NULL),(3486,313,'A','/branches/WinCE/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(3487,313,'A','/branches/WinCE/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(3488,313,'A','/branches/WinCE/source/opcua_p_libxml2.c',NULL,NULL,NULL,NULL),(3489,313,'A','/branches/WinCE/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(3490,313,'A','/branches/WinCE/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(3491,313,'A','/branches/WinCE/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(3492,313,'A','/branches/WinCE/source/opcua_p_openssl_3des.c',NULL,NULL,NULL,NULL),(3493,313,'A','/branches/WinCE/source/opcua_p_openssl_aes.c',NULL,NULL,NULL,NULL),(3494,313,'A','/branches/WinCE/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(3495,313,'A','/branches/WinCE/source/opcua_p_openssl_hmac_sha.c',NULL,NULL,NULL,NULL),(3496,313,'A','/branches/WinCE/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(3497,313,'A','/branches/WinCE/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(3498,313,'A','/branches/WinCE/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(3499,313,'A','/branches/WinCE/source/opcua_p_openssl_sha.c',NULL,NULL,NULL,NULL),(3500,313,'A','/branches/WinCE/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(3501,313,'A','/branches/WinCE/source/opcua_p_pki_nosecurity.c',NULL,NULL,NULL,NULL),(3502,313,'A','/branches/WinCE/source/opcua_p_pkifactory.c',NULL,NULL,NULL,NULL),(3503,313,'A','/branches/WinCE/source/opcua_p_securitypolicy_none.c',NULL,NULL,NULL,NULL),(3504,313,'A','/branches/WinCE/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(3505,313,'A','/branches/WinCE/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(3506,313,'A','/branches/WinCE/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(3507,313,'A','/branches/WinCE/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(3508,313,'A','/branches/WinCE/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(3509,313,'A','/branches/WinCE/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(3510,313,'A','/branches/WinCE/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(3511,313,'A','/branches/WinCE/source/opcua_p_trace.c',NULL,NULL,NULL,NULL),(3512,313,'A','/branches/WinCE/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(3513,313,'A','/branches/WinCE/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(3514,313,'A','/branches/WinCE/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(3515,313,'A','/branches/WinCE/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(3516,313,'A','/branches/WinCE/source/opcua_securechannel.c',NULL,NULL,NULL,NULL),(3517,313,'A','/branches/WinCE/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(3518,313,'A','/branches/WinCE/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(3519,313,'A','/branches/WinCE/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(3520,313,'A','/branches/WinCE/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(3521,313,'A','/branches/WinCE/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(3522,313,'A','/branches/WinCE/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(3523,313,'A','/branches/WinCE/source/opcua_servicetable.c',NULL,NULL,NULL,NULL),(3524,313,'A','/branches/WinCE/source/opcua_stream.c',NULL,NULL,NULL,NULL),(3525,313,'A','/branches/WinCE/source/opcua_string.c',NULL,NULL,NULL,NULL),(3526,313,'A','/branches/WinCE/source/opcua_stringtable.c',NULL,NULL,NULL,NULL),(3527,313,'A','/branches/WinCE/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(3528,313,'A','/branches/WinCE/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(3529,313,'A','/branches/WinCE/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(3530,313,'A','/branches/WinCE/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(3531,313,'A','/branches/WinCE/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(3532,313,'A','/branches/WinCE/source/opcua_thread.c',NULL,NULL,NULL,NULL),(3533,313,'A','/branches/WinCE/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(3534,313,'A','/branches/WinCE/source/opcua_timer.c',NULL,NULL,NULL,NULL),(3535,313,'A','/branches/WinCE/source/opcua_trace.c',NULL,NULL,NULL,NULL),(3536,313,'A','/branches/WinCE/source/opcua_types.c',NULL,NULL,NULL,NULL),(3537,313,'A','/branches/WinCE/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(3538,313,'A','/branches/WinCE/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(3539,313,'A','/branches/WinCE/source/opcua_xmlencoder.c',NULL,NULL,NULL,NULL),(3540,313,'A','/branches/WinCE/source/opcua_xmlreader.c',NULL,NULL,NULL,NULL),(3541,313,'A','/branches/WinCE/source/opcua_xmlwriter.c',NULL,NULL,NULL,NULL),(3542,314,'A','/branches/WinCE/include/shared',NULL,NULL,NULL,NULL),(3543,314,'A','/branches/WinCE/include/shared/opcua.h',NULL,NULL,NULL,NULL),(3544,314,'A','/branches/WinCE/include/shared/opcua_asynccallstate.h',NULL,NULL,NULL,NULL),(3545,314,'A','/branches/WinCE/include/shared/opcua_attributes.h',NULL,NULL,NULL,NULL),(3546,314,'A','/branches/WinCE/include/shared/opcua_base64.h',NULL,NULL,NULL,NULL),(3547,314,'A','/branches/WinCE/include/shared/opcua_binaryencoder.h',NULL,NULL,NULL,NULL),(3548,314,'A','/branches/WinCE/include/shared/opcua_binaryencoderinternal.h',NULL,NULL,NULL,NULL),(3549,314,'A','/branches/WinCE/include/shared/opcua_browsenames.h',NULL,NULL,NULL,NULL),(3550,314,'A','/branches/WinCE/include/shared/opcua_buffer.h',NULL,NULL,NULL,NULL),(3551,314,'A','/branches/WinCE/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(3552,314,'A','/branches/WinCE/include/shared/opcua_channel.h',NULL,NULL,NULL,NULL),(3553,314,'A','/branches/WinCE/include/shared/opcua_channel_internal.h',NULL,NULL,NULL,NULL),(3554,314,'A','/branches/WinCE/include/shared/opcua_clientapi.h',NULL,NULL,NULL,NULL),(3555,314,'A','/branches/WinCE/include/shared/opcua_clientproxy.h',NULL,NULL,NULL,NULL),(3556,314,'A','/branches/WinCE/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(3557,314,'A','/branches/WinCE/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(3558,314,'A','/branches/WinCE/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(3559,314,'A','/branches/WinCE/include/shared/opcua_credentials.h',NULL,NULL,NULL,NULL),(3560,314,'A','/branches/WinCE/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(3561,314,'A','/branches/WinCE/include/shared/opcua_cryptofactory.h',NULL,NULL,NULL,NULL),(3562,314,'A','/branches/WinCE/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(3563,314,'A','/branches/WinCE/include/shared/opcua_decoder.h',NULL,NULL,NULL,NULL),(3564,314,'A','/branches/WinCE/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(3565,314,'A','/branches/WinCE/include/shared/opcua_encoder.h',NULL,NULL,NULL,NULL),(3566,314,'A','/branches/WinCE/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(3567,314,'A','/branches/WinCE/include/shared/opcua_endpoint_ex.h',NULL,NULL,NULL,NULL),(3568,314,'A','/branches/WinCE/include/shared/opcua_endpoint_internal.h',NULL,NULL,NULL,NULL),(3569,314,'A','/branches/WinCE/include/shared/opcua_enumeratedtype.h',NULL,NULL,NULL,NULL),(3570,314,'A','/branches/WinCE/include/shared/opcua_errorhandling.h',NULL,NULL,NULL,NULL),(3571,314,'A','/branches/WinCE/include/shared/opcua_exclusions.h',NULL,NULL,NULL,NULL),(3572,314,'A','/branches/WinCE/include/shared/opcua_extensionobject.h',NULL,NULL,NULL,NULL),(3573,314,'A','/branches/WinCE/include/shared/opcua_guid.h',NULL,NULL,NULL,NULL),(3574,314,'A','/branches/WinCE/include/shared/opcua_http_internal.h',NULL,NULL,NULL,NULL),(3575,314,'A','/branches/WinCE/include/shared/opcua_httpconnection.h',NULL,NULL,NULL,NULL),(3576,314,'A','/branches/WinCE/include/shared/opcua_httpconnection_securityproxy.h',NULL,NULL,NULL,NULL),(3577,314,'A','/branches/WinCE/include/shared/opcua_httplistener.h',NULL,NULL,NULL,NULL),(3578,314,'A','/branches/WinCE/include/shared/opcua_httplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(3579,314,'A','/branches/WinCE/include/shared/opcua_httplistener_securitystub.h',NULL,NULL,NULL,NULL),(3580,314,'A','/branches/WinCE/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(3581,314,'A','/branches/WinCE/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(3582,314,'A','/branches/WinCE/include/shared/opcua_httpstream.h',NULL,NULL,NULL,NULL),(3583,314,'A','/branches/WinCE/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(3584,314,'A','/branches/WinCE/include/shared/opcua_list.h',NULL,NULL,NULL,NULL),(3585,314,'A','/branches/WinCE/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(3586,314,'A','/branches/WinCE/include/shared/opcua_memory.h',NULL,NULL,NULL,NULL),(3587,314,'A','/branches/WinCE/include/shared/opcua_memorystream.h',NULL,NULL,NULL,NULL),(3588,314,'A','/branches/WinCE/include/shared/opcua_messagecontext.h',NULL,NULL,NULL,NULL),(3589,314,'A','/branches/WinCE/include/shared/opcua_mutex.h',NULL,NULL,NULL,NULL),(3590,314,'A','/branches/WinCE/include/shared/opcua_p_binary.h',NULL,NULL,NULL,NULL),(3591,314,'A','/branches/WinCE/include/shared/opcua_p_compilerinfo.h',NULL,NULL,NULL,NULL),(3592,314,'A','/branches/WinCE/include/shared/opcua_p_crypto.h',NULL,NULL,NULL,NULL),(3593,314,'A','/branches/WinCE/include/shared/opcua_p_cryptofactory.h',NULL,NULL,NULL,NULL),(3594,314,'A','/branches/WinCE/include/shared/opcua_p_datetime.h',NULL,NULL,NULL,NULL),(3595,314,'A','/branches/WinCE/include/shared/opcua_p_guid.h',NULL,NULL,NULL,NULL),(3596,314,'A','/branches/WinCE/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(3597,314,'A','/branches/WinCE/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(3598,314,'A','/branches/WinCE/include/shared/opcua_p_libxml2.h',NULL,NULL,NULL,NULL),(3599,314,'A','/branches/WinCE/include/shared/opcua_p_memory.h',NULL,NULL,NULL,NULL),(3600,314,'A','/branches/WinCE/include/shared/opcua_p_mutex.h',NULL,NULL,NULL,NULL),(3601,314,'A','/branches/WinCE/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(3602,314,'A','/branches/WinCE/include/shared/opcua_p_openssl_pki.h',NULL,NULL,NULL,NULL),(3603,314,'A','/branches/WinCE/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(3604,314,'A','/branches/WinCE/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(3605,314,'A','/branches/WinCE/include/shared/opcua_p_pki_nosecurity.h',NULL,NULL,NULL,NULL),(3606,314,'A','/branches/WinCE/include/shared/opcua_p_pkifactory.h',NULL,NULL,NULL,NULL),(3607,314,'A','/branches/WinCE/include/shared/opcua_p_securitypolicy_none.h',NULL,NULL,NULL,NULL),(3608,314,'A','/branches/WinCE/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(3609,314,'A','/branches/WinCE/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(3610,314,'A','/branches/WinCE/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(3611,314,'A','/branches/WinCE/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(3612,314,'A','/branches/WinCE/include/shared/opcua_p_string.h',NULL,NULL,NULL,NULL),(3613,314,'A','/branches/WinCE/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(3614,314,'A','/branches/WinCE/include/shared/opcua_p_timer.h',NULL,NULL,NULL,NULL),(3615,314,'A','/branches/WinCE/include/shared/opcua_p_trace.h',NULL,NULL,NULL,NULL),(3616,314,'A','/branches/WinCE/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(3617,314,'A','/branches/WinCE/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(3618,314,'A','/branches/WinCE/include/shared/opcua_p_win32_pki.h',NULL,NULL,NULL,NULL),(3619,314,'A','/branches/WinCE/include/shared/opcua_p_wincrypt.h',NULL,NULL,NULL,NULL),(3620,314,'A','/branches/WinCE/include/shared/opcua_p_xml.h',NULL,NULL,NULL,NULL),(3621,314,'A','/branches/WinCE/include/shared/opcua_pki.h',NULL,NULL,NULL,NULL),(3622,314,'A','/branches/WinCE/include/shared/opcua_pkifactory.h',NULL,NULL,NULL,NULL),(3623,314,'A','/branches/WinCE/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3624,314,'A','/branches/WinCE/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(3625,314,'A','/branches/WinCE/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(3626,314,'A','/branches/WinCE/include/shared/opcua_securechannel_types.h',NULL,NULL,NULL,NULL),(3627,314,'A','/branches/WinCE/include/shared/opcua_secureconnection.h',NULL,NULL,NULL,NULL),(3628,314,'A','/branches/WinCE/include/shared/opcua_securelistener.h',NULL,NULL,NULL,NULL),(3629,314,'A','/branches/WinCE/include/shared/opcua_securelistener_channelmanager.h',NULL,NULL,NULL,NULL),(3630,314,'A','/branches/WinCE/include/shared/opcua_securelistener_policymanager.h',NULL,NULL,NULL,NULL),(3631,314,'A','/branches/WinCE/include/shared/opcua_securestream.h',NULL,NULL,NULL,NULL),(3632,314,'A','/branches/WinCE/include/shared/opcua_semaphore.h',NULL,NULL,NULL,NULL),(3633,314,'A','/branches/WinCE/include/shared/opcua_serverapi.h',NULL,NULL,NULL,NULL),(3634,314,'A','/branches/WinCE/include/shared/opcua_serverstub.h',NULL,NULL,NULL,NULL),(3635,314,'A','/branches/WinCE/include/shared/opcua_servicetable.h',NULL,NULL,NULL,NULL),(3636,314,'A','/branches/WinCE/include/shared/opcua_soapsecurechannel.h',NULL,NULL,NULL,NULL),(3637,314,'A','/branches/WinCE/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(3638,314,'A','/branches/WinCE/include/shared/opcua_stackstatuscodes.h',NULL,NULL,NULL,NULL),(3639,314,'A','/branches/WinCE/include/shared/opcua_statuscodes.h',NULL,NULL,NULL,NULL),(3640,314,'A','/branches/WinCE/include/shared/opcua_stream.h',NULL,NULL,NULL,NULL),(3641,314,'A','/branches/WinCE/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(3642,314,'A','/branches/WinCE/include/shared/opcua_stringtable.h',NULL,NULL,NULL,NULL),(3643,314,'A','/branches/WinCE/include/shared/opcua_tcpconnection.h',NULL,NULL,NULL,NULL),(3644,314,'A','/branches/WinCE/include/shared/opcua_tcplistener.h',NULL,NULL,NULL,NULL),(3645,314,'A','/branches/WinCE/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(3646,314,'A','/branches/WinCE/include/shared/opcua_tcpsecurechannel.h',NULL,NULL,NULL,NULL),(3647,314,'A','/branches/WinCE/include/shared/opcua_tcpstream.h',NULL,NULL,NULL,NULL),(3648,314,'A','/branches/WinCE/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(3649,314,'A','/branches/WinCE/include/shared/opcua_threadpool.h',NULL,NULL,NULL,NULL),(3650,314,'A','/branches/WinCE/include/shared/opcua_timer.h',NULL,NULL,NULL,NULL),(3651,314,'A','/branches/WinCE/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(3652,314,'A','/branches/WinCE/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(3653,314,'A','/branches/WinCE/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(3654,314,'A','/branches/WinCE/include/shared/opcua_xmldefs.h',NULL,NULL,NULL,NULL),(3655,314,'A','/branches/WinCE/include/shared/opcua_xmlencoder.h',NULL,NULL,NULL,NULL),(3656,314,'A','/branches/WinCE/include/shared/opcua_xmlencoderinternal.h',NULL,NULL,NULL,NULL),(3657,314,'A','/branches/WinCE/include/shared/opcua_xmlreader.h',NULL,NULL,NULL,NULL),(3658,314,'A','/branches/WinCE/include/shared/opcua_xmlwriter.h',NULL,NULL,NULL,NULL),(3659,314,'A','/branches/WinCE/include/shared/resource.h',NULL,NULL,NULL,NULL),(3660,314,'A','/branches/WinCE/include/win32',NULL,NULL,NULL,NULL),(3661,314,'A','/branches/WinCE/include/win32/iconv.h',NULL,NULL,NULL,NULL),(3662,314,'A','/branches/WinCE/include/win32/openssl',NULL,NULL,NULL,NULL),(3663,314,'A','/branches/WinCE/include/win32/openssl/aes.h',NULL,NULL,NULL,NULL),(3664,314,'A','/branches/WinCE/include/win32/openssl/asn1.h',NULL,NULL,NULL,NULL),(3665,314,'A','/branches/WinCE/include/win32/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(3666,314,'A','/branches/WinCE/include/win32/openssl/asn1t.h',NULL,NULL,NULL,NULL),(3667,314,'A','/branches/WinCE/include/win32/openssl/bio.h',NULL,NULL,NULL,NULL),(3668,314,'A','/branches/WinCE/include/win32/openssl/blowfish.h',NULL,NULL,NULL,NULL),(3669,314,'A','/branches/WinCE/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(3670,314,'A','/branches/WinCE/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(3671,314,'A','/branches/WinCE/include/win32/openssl/cast.h',NULL,NULL,NULL,NULL),(3672,314,'A','/branches/WinCE/include/win32/openssl/comp.h',NULL,NULL,NULL,NULL),(3673,314,'A','/branches/WinCE/include/win32/openssl/conf.h',NULL,NULL,NULL,NULL),(3674,314,'A','/branches/WinCE/include/win32/openssl/conf_api.h',NULL,NULL,NULL,NULL),(3675,314,'A','/branches/WinCE/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(3676,314,'A','/branches/WinCE/include/win32/openssl/des.h',NULL,NULL,NULL,NULL),(3677,314,'A','/branches/WinCE/include/win32/openssl/des_old.h',NULL,NULL,NULL,NULL),(3678,314,'A','/branches/WinCE/include/win32/openssl/dh.h',NULL,NULL,NULL,NULL),(3679,314,'A','/branches/WinCE/include/win32/openssl/dsa.h',NULL,NULL,NULL,NULL),(3680,314,'A','/branches/WinCE/include/win32/openssl/dso.h',NULL,NULL,NULL,NULL),(3681,314,'A','/branches/WinCE/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(3682,314,'A','/branches/WinCE/include/win32/openssl/e_os2.h',NULL,NULL,NULL,NULL),(3683,314,'A','/branches/WinCE/include/win32/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(3684,314,'A','/branches/WinCE/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(3685,314,'A','/branches/WinCE/include/win32/openssl/ecdh.h',NULL,NULL,NULL,NULL),(3686,314,'A','/branches/WinCE/include/win32/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(3687,314,'A','/branches/WinCE/include/win32/openssl/engine.h',NULL,NULL,NULL,NULL),(3688,314,'A','/branches/WinCE/include/win32/openssl/err.h',NULL,NULL,NULL,NULL),(3689,314,'A','/branches/WinCE/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(3690,314,'A','/branches/WinCE/include/win32/openssl/hmac.h',NULL,NULL,NULL,NULL),(3691,314,'A','/branches/WinCE/include/win32/openssl/idea.h',NULL,NULL,NULL,NULL),(3692,314,'A','/branches/WinCE/include/win32/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(3693,314,'A','/branches/WinCE/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(3694,314,'A','/branches/WinCE/include/win32/openssl/lhash.h',NULL,NULL,NULL,NULL),(3695,314,'A','/branches/WinCE/include/win32/openssl/md2.h',NULL,NULL,NULL,NULL),(3696,314,'A','/branches/WinCE/include/win32/openssl/md4.h',NULL,NULL,NULL,NULL),(3697,314,'A','/branches/WinCE/include/win32/openssl/md5.h',NULL,NULL,NULL,NULL),(3698,314,'A','/branches/WinCE/include/win32/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(3699,314,'A','/branches/WinCE/include/win32/openssl/objects.h',NULL,NULL,NULL,NULL),(3700,314,'A','/branches/WinCE/include/win32/openssl/ocsp.h',NULL,NULL,NULL,NULL),(3701,314,'A','/branches/WinCE/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(3702,314,'A','/branches/WinCE/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(3703,314,'A','/branches/WinCE/include/win32/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(3704,314,'A','/branches/WinCE/include/win32/openssl/pem.h',NULL,NULL,NULL,NULL),(3705,314,'A','/branches/WinCE/include/win32/openssl/pem2.h',NULL,NULL,NULL,NULL),(3706,314,'A','/branches/WinCE/include/win32/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(3707,314,'A','/branches/WinCE/include/win32/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(3708,314,'A','/branches/WinCE/include/win32/openssl/pq_compat.h',NULL,NULL,NULL,NULL),(3709,314,'A','/branches/WinCE/include/win32/openssl/pqueue.h',NULL,NULL,NULL,NULL),(3710,314,'A','/branches/WinCE/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(3711,314,'A','/branches/WinCE/include/win32/openssl/rc2.h',NULL,NULL,NULL,NULL),(3712,314,'A','/branches/WinCE/include/win32/openssl/rc4.h',NULL,NULL,NULL,NULL),(3713,314,'A','/branches/WinCE/include/win32/openssl/ripemd.h',NULL,NULL,NULL,NULL),(3714,314,'A','/branches/WinCE/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(3715,314,'A','/branches/WinCE/include/win32/openssl/safestack.h',NULL,NULL,NULL,NULL),(3716,314,'A','/branches/WinCE/include/win32/openssl/sha.h',NULL,NULL,NULL,NULL),(3717,314,'A','/branches/WinCE/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(3718,314,'A','/branches/WinCE/include/win32/openssl/ssl2.h',NULL,NULL,NULL,NULL),(3719,314,'A','/branches/WinCE/include/win32/openssl/ssl23.h',NULL,NULL,NULL,NULL),(3720,314,'A','/branches/WinCE/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(3721,314,'A','/branches/WinCE/include/win32/openssl/stack.h',NULL,NULL,NULL,NULL),(3722,314,'A','/branches/WinCE/include/win32/openssl/store.h',NULL,NULL,NULL,NULL),(3723,314,'A','/branches/WinCE/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(3724,314,'A','/branches/WinCE/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(3725,314,'A','/branches/WinCE/include/win32/openssl/tmdiff.h',NULL,NULL,NULL,NULL),(3726,314,'A','/branches/WinCE/include/win32/openssl/txt_db.h',NULL,NULL,NULL,NULL),(3727,314,'A','/branches/WinCE/include/win32/openssl/ui.h',NULL,NULL,NULL,NULL),(3728,314,'A','/branches/WinCE/include/win32/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(3729,314,'A','/branches/WinCE/include/win32/openssl/x509.h',NULL,NULL,NULL,NULL),(3730,314,'A','/branches/WinCE/include/win32/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(3731,314,'A','/branches/WinCE/include/win32/openssl/x509v3.h',NULL,NULL,NULL,NULL),(3732,314,'A','/branches/WinCE/include/wince',NULL,NULL,NULL,NULL),(3733,314,'A','/branches/WinCE/include/wince/openssl',NULL,NULL,NULL,NULL),(3734,314,'A','/branches/WinCE/include/wince/openssl/aes.h',NULL,NULL,NULL,NULL),(3735,314,'A','/branches/WinCE/include/wince/openssl/asn1.h',NULL,NULL,NULL,NULL),(3736,314,'A','/branches/WinCE/include/wince/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(3737,314,'A','/branches/WinCE/include/wince/openssl/asn1t.h',NULL,NULL,NULL,NULL),(3738,314,'A','/branches/WinCE/include/wince/openssl/bio.h',NULL,NULL,NULL,NULL),(3739,314,'A','/branches/WinCE/include/wince/openssl/blowfish.h',NULL,NULL,NULL,NULL),(3740,314,'A','/branches/WinCE/include/wince/openssl/bn.h',NULL,NULL,NULL,NULL),(3741,314,'A','/branches/WinCE/include/wince/openssl/buffer.h',NULL,NULL,NULL,NULL),(3742,314,'A','/branches/WinCE/include/wince/openssl/camellia.h',NULL,NULL,NULL,NULL),(3743,314,'A','/branches/WinCE/include/wince/openssl/cast.h',NULL,NULL,NULL,NULL),(3744,314,'A','/branches/WinCE/include/wince/openssl/cms.h',NULL,NULL,NULL,NULL),(3745,314,'A','/branches/WinCE/include/wince/openssl/comp.h',NULL,NULL,NULL,NULL),(3746,314,'A','/branches/WinCE/include/wince/openssl/conf.h',NULL,NULL,NULL,NULL),(3747,314,'A','/branches/WinCE/include/wince/openssl/conf_api.h',NULL,NULL,NULL,NULL),(3748,314,'A','/branches/WinCE/include/wince/openssl/crypto.h',NULL,NULL,NULL,NULL),(3749,314,'A','/branches/WinCE/include/wince/openssl/des.h',NULL,NULL,NULL,NULL),(3750,314,'A','/branches/WinCE/include/wince/openssl/des_old.h',NULL,NULL,NULL,NULL),(3751,314,'A','/branches/WinCE/include/wince/openssl/dh.h',NULL,NULL,NULL,NULL),(3752,314,'A','/branches/WinCE/include/wince/openssl/dsa.h',NULL,NULL,NULL,NULL),(3753,314,'A','/branches/WinCE/include/wince/openssl/dso.h',NULL,NULL,NULL,NULL),(3754,314,'A','/branches/WinCE/include/wince/openssl/dtls1.h',NULL,NULL,NULL,NULL),(3755,314,'A','/branches/WinCE/include/wince/openssl/e_os2.h',NULL,NULL,NULL,NULL),(3756,314,'A','/branches/WinCE/include/wince/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(3757,314,'A','/branches/WinCE/include/wince/openssl/ec.h',NULL,NULL,NULL,NULL),(3758,314,'A','/branches/WinCE/include/wince/openssl/ecdh.h',NULL,NULL,NULL,NULL),(3759,314,'A','/branches/WinCE/include/wince/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(3760,314,'A','/branches/WinCE/include/wince/openssl/engine.h',NULL,NULL,NULL,NULL),(3761,314,'A','/branches/WinCE/include/wince/openssl/err.h',NULL,NULL,NULL,NULL),(3762,314,'A','/branches/WinCE/include/wince/openssl/evp.h',NULL,NULL,NULL,NULL),(3763,314,'A','/branches/WinCE/include/wince/openssl/hmac.h',NULL,NULL,NULL,NULL),(3764,314,'A','/branches/WinCE/include/wince/openssl/idea.h',NULL,NULL,NULL,NULL),(3765,314,'A','/branches/WinCE/include/wince/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(3766,314,'A','/branches/WinCE/include/wince/openssl/kssl.h',NULL,NULL,NULL,NULL),(3767,314,'A','/branches/WinCE/include/wince/openssl/lhash.h',NULL,NULL,NULL,NULL),(3768,314,'A','/branches/WinCE/include/wince/openssl/md4.h',NULL,NULL,NULL,NULL),(3769,314,'A','/branches/WinCE/include/wince/openssl/md5.h',NULL,NULL,NULL,NULL),(3770,314,'A','/branches/WinCE/include/wince/openssl/mdc2.h',NULL,NULL,NULL,NULL),(3771,314,'A','/branches/WinCE/include/wince/openssl/modes.h',NULL,NULL,NULL,NULL),(3772,314,'A','/branches/WinCE/include/wince/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(3773,314,'A','/branches/WinCE/include/wince/openssl/objects.h',NULL,NULL,NULL,NULL),(3774,314,'A','/branches/WinCE/include/wince/openssl/ocsp.h',NULL,NULL,NULL,NULL),(3775,314,'A','/branches/WinCE/include/wince/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(3776,314,'A','/branches/WinCE/include/wince/openssl/opensslv.h',NULL,NULL,NULL,NULL),(3777,314,'A','/branches/WinCE/include/wince/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(3778,314,'A','/branches/WinCE/include/wince/openssl/pem.h',NULL,NULL,NULL,NULL),(3779,314,'A','/branches/WinCE/include/wince/openssl/pem2.h',NULL,NULL,NULL,NULL),(3780,314,'A','/branches/WinCE/include/wince/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(3781,314,'A','/branches/WinCE/include/wince/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(3782,314,'A','/branches/WinCE/include/wince/openssl/pqueue.h',NULL,NULL,NULL,NULL),(3783,314,'A','/branches/WinCE/include/wince/openssl/rand.h',NULL,NULL,NULL,NULL),(3784,314,'A','/branches/WinCE/include/wince/openssl/rc2.h',NULL,NULL,NULL,NULL),(3785,314,'A','/branches/WinCE/include/wince/openssl/rc4.h',NULL,NULL,NULL,NULL),(3786,314,'A','/branches/WinCE/include/wince/openssl/ripemd.h',NULL,NULL,NULL,NULL),(3787,314,'A','/branches/WinCE/include/wince/openssl/rsa.h',NULL,NULL,NULL,NULL),(3788,314,'A','/branches/WinCE/include/wince/openssl/safestack.h',NULL,NULL,NULL,NULL),(3789,314,'A','/branches/WinCE/include/wince/openssl/seed.h',NULL,NULL,NULL,NULL),(3790,314,'A','/branches/WinCE/include/wince/openssl/sha.h',NULL,NULL,NULL,NULL),(3791,314,'A','/branches/WinCE/include/wince/openssl/ssl.h',NULL,NULL,NULL,NULL),(3792,314,'A','/branches/WinCE/include/wince/openssl/ssl2.h',NULL,NULL,NULL,NULL),(3793,314,'A','/branches/WinCE/include/wince/openssl/ssl23.h',NULL,NULL,NULL,NULL),(3794,314,'A','/branches/WinCE/include/wince/openssl/ssl3.h',NULL,NULL,NULL,NULL),(3795,314,'A','/branches/WinCE/include/wince/openssl/stack.h',NULL,NULL,NULL,NULL),(3796,314,'A','/branches/WinCE/include/wince/openssl/symhacks.h',NULL,NULL,NULL,NULL),(3797,314,'A','/branches/WinCE/include/wince/openssl/tls1.h',NULL,NULL,NULL,NULL),(3798,314,'A','/branches/WinCE/include/wince/openssl/ts.h',NULL,NULL,NULL,NULL),(3799,314,'A','/branches/WinCE/include/wince/openssl/txt_db.h',NULL,NULL,NULL,NULL),(3800,314,'A','/branches/WinCE/include/wince/openssl/ui.h',NULL,NULL,NULL,NULL),(3801,314,'A','/branches/WinCE/include/wince/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(3802,314,'A','/branches/WinCE/include/wince/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(3803,314,'A','/branches/WinCE/include/wince/openssl/x509.h',NULL,NULL,NULL,NULL),(3804,314,'A','/branches/WinCE/include/wince/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(3805,314,'A','/branches/WinCE/include/wince/openssl/x509v3.h',NULL,NULL,NULL,NULL),(3806,315,'A','/branches/WinCE/Bin',NULL,NULL,NULL,NULL),(3807,315,'A','/branches/WinCE/Bin/libeay32.dll',NULL,NULL,NULL,NULL),(3808,315,'A','/branches/WinCE/Bin/uastackd.dll',NULL,NULL,NULL,NULL),(3809,315,'A','/branches/WinCE/Lib',NULL,NULL,NULL,NULL),(3810,315,'A','/branches/WinCE/Lib/libeay32.lib',NULL,NULL,NULL,NULL),(3811,315,'A','/branches/WinCE/Lib/uastackd.lib',NULL,NULL,NULL,NULL),(3812,315,'A','/branches/WinCE/beckhoff-HMI600/UAStackV1.sln',NULL,NULL,NULL,NULL),(3813,315,'A','/branches/WinCE/beckhoff-HMI600/UAStackV1.suo',NULL,NULL,NULL,NULL),(3814,315,'A','/branches/WinCE/beckhoff-HMI600/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(3815,315,'A','/branches/WinCE/beckhoff-HMI600/UAStackV1.vcproj.TAMEPBNBK1.bucheph.user',NULL,NULL,NULL,NULL),(3816,315,'M','/branches/WinCE/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(3817,315,'M','/branches/WinCE/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(3818,315,'M','/branches/WinCE/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(3819,315,'M','/branches/WinCE/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3820,315,'M','/branches/WinCE/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(3821,315,'M','/branches/WinCE/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(3822,315,'M','/branches/WinCE/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(3823,315,'M','/branches/WinCE/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(3824,316,'M','/branches/WinCE/beckhoff-HMI600',NULL,NULL,NULL,NULL),(3825,317,'M','/branches/WinCE/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(3826,317,'M','/branches/WinCE/source/Main.cpp',NULL,NULL,NULL,NULL),(3827,317,'M','/branches/WinCE/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3828,317,'M','/branches/WinCE/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3829,317,'M','/branches/WinCE/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3830,318,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3831,318,'M','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(3832,319,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(3833,319,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3834,319,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3835,319,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(3836,319,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(3837,319,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(3838,319,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(3839,319,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3840,319,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3841,319,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(3842,319,'M','/trunk/UANamespaceTranslationMap.cpp',NULL,NULL,NULL,NULL),(3843,319,'M','/trunk/UANamespaceTranslationMap.h',NULL,NULL,NULL,NULL),(3844,319,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(3845,319,'M','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(3846,319,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(3847,319,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(3848,320,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(3849,320,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3850,320,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3851,320,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3852,320,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(3853,320,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(3854,320,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(3855,320,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(3856,320,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(3857,320,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3858,320,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(3859,320,'D','/trunk/UANamespaceTranslationMap.cpp',NULL,NULL,NULL,NULL),(3860,320,'D','/trunk/UANamespaceTranslationMap.h',NULL,NULL,NULL,NULL),(3861,320,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(3862,320,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(3863,320,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(3864,321,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(3865,321,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(3866,321,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3867,321,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(3868,321,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(3869,321,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(3870,322,'M','/branches/WinCE',NULL,NULL,NULL,NULL),(3871,322,'A','/branches/WinCE/beckhoff-HMI600/OPCUA_CPP_QuickServer.sln',NULL,NULL,NULL,NULL),(3872,322,'A','/branches/WinCE/beckhoff-HMI600/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(3873,322,'A','/branches/WinCE/include/VPI.h',NULL,NULL,NULL,NULL),(3874,322,'A','/branches/WinCE/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(3875,322,'A','/branches/WinCE/include/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(3876,323,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(3877,323,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(3878,323,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(3879,324,'A','/tags',NULL,NULL,NULL,NULL),(3880,325,'A','/branches',NULL,NULL,NULL,NULL),(3881,326,'A','/branches/Linux',NULL,NULL,NULL,NULL),(3882,327,'A','/branches/WinCE',NULL,NULL,NULL,NULL),(3883,328,'A','/branches/WinCE/include',NULL,NULL,NULL,NULL),(3884,329,'A','/branches/WinCE/source',NULL,NULL,NULL,NULL),(3885,330,'A','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(3886,331,'M','/trunk/XMLSAXParser.sln',NULL,NULL,NULL,NULL),(3887,332,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(3888,333,'A','/branches/WinCE/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(3889,333,'A','/branches/WinCE/include/iasciitab.h',NULL,NULL,NULL,NULL),(3890,333,'A','/branches/WinCE/include/internal.h',NULL,NULL,NULL,NULL),(3891,333,'A','/branches/WinCE/include/latin1tab.h',NULL,NULL,NULL,NULL),(3892,333,'A','/branches/WinCE/include/nametab.h',NULL,NULL,NULL,NULL),(3893,333,'A','/branches/WinCE/include/stdafx.h',NULL,NULL,NULL,NULL),(3894,333,'A','/branches/WinCE/include/utf8tab.h',NULL,NULL,NULL,NULL),(3895,333,'A','/branches/WinCE/include/xmlCanon.h',NULL,NULL,NULL,NULL),(3896,333,'A','/branches/WinCE/include/xmlConfig.h',NULL,NULL,NULL,NULL),(3897,333,'A','/branches/WinCE/include/xmlLib.h',NULL,NULL,NULL,NULL),(3898,333,'A','/branches/WinCE/include/xmlop.h',NULL,NULL,NULL,NULL),(3899,333,'A','/branches/WinCE/include/xmlrole.h',NULL,NULL,NULL,NULL),(3900,333,'A','/branches/WinCE/include/xmltchar.h',NULL,NULL,NULL,NULL),(3901,333,'A','/branches/WinCE/include/xmltok.h',NULL,NULL,NULL,NULL),(3902,333,'A','/branches/WinCE/include/xmltok_impl.h',NULL,NULL,NULL,NULL),(3903,333,'A','/branches/WinCE/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(3904,333,'A','/branches/WinCE/source/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(3905,333,'A','/branches/WinCE/source/XMLSAXParser.def',NULL,NULL,NULL,NULL),(3906,333,'A','/branches/WinCE/source/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(3907,333,'A','/branches/WinCE/source/stdafx.cpp',NULL,NULL,NULL,NULL),(3908,333,'A','/branches/WinCE/source/xmlop.c',NULL,NULL,NULL,NULL),(3909,333,'A','/branches/WinCE/source/xmlparse.c',NULL,NULL,NULL,NULL),(3910,333,'A','/branches/WinCE/source/xmlrole.c',NULL,NULL,NULL,NULL),(3911,333,'A','/branches/WinCE/source/xmltok.c',NULL,NULL,NULL,NULL),(3912,333,'A','/branches/WinCE/source/xmltok_impl.c',NULL,NULL,NULL,NULL),(3913,333,'A','/branches/WinCE/source/xmltok_ns.c',NULL,NULL,NULL,NULL),(3914,334,'A','/branches/WinCE/Bin',NULL,NULL,NULL,NULL),(3915,334,'A','/branches/WinCE/Lib',NULL,NULL,NULL,NULL),(3916,334,'A','/branches/WinCE/beckhoff-HMI600',NULL,NULL,NULL,NULL),(3917,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)',NULL,NULL,NULL,NULL),(3918,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug',NULL,NULL,NULL,NULL),(3919,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/SAXParser_Helper.obj',NULL,NULL,NULL,NULL),(3920,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/XMLSAXParser.obj',NULL,NULL,NULL,NULL),(3921,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/XMLSAXParser.pdb',NULL,NULL,NULL,NULL),(3922,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/XMLSAXParserd.dll',NULL,NULL,NULL,NULL),(3923,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/XMLSAXParserd.lib',NULL,NULL,NULL,NULL),(3924,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/stdafx.obj',NULL,NULL,NULL,NULL),(3925,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/xmlop.obj',NULL,NULL,NULL,NULL),(3926,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/xmlparse.obj',NULL,NULL,NULL,NULL),(3927,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/xmlrole.obj',NULL,NULL,NULL,NULL),(3928,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/xmltok.obj',NULL,NULL,NULL,NULL),(3929,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug/xmltok_ns.obj',NULL,NULL,NULL,NULL),(3930,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Release',NULL,NULL,NULL,NULL),(3931,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Release/XMLSAXParser.dll',NULL,NULL,NULL,NULL),(3932,334,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Release/XMLSAXParserd.lib',NULL,NULL,NULL,NULL),(3933,334,'M','/branches/WinCE/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(3934,334,'M','/branches/WinCE/source/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(3935,334,'M','/branches/WinCE/source/xmlop.c',NULL,NULL,NULL,NULL),(3936,335,'M','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Release',NULL,NULL,NULL,NULL),(3937,336,'D','/branches/WinCE/source/XMLSAXParser.def',NULL,NULL,NULL,NULL),(3938,336,'D','/branches/WinCE/source/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(3939,337,'A','/branches/WinCE/beckhoff-HMI600/XMLSAXParser.def',NULL,NULL,NULL,NULL),(3940,337,'A','/branches/WinCE/beckhoff-HMI600/XMLSAXParser.sln',NULL,NULL,NULL,NULL),(3941,337,'A','/branches/WinCE/beckhoff-HMI600/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(3942,337,'A','/branches/WinCE/beckhoff-HMI600/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(3943,338,'M','/branches/WinCE/beckhoff-HMI600/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(3944,339,'D','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)',NULL,NULL,NULL,NULL),(3945,340,'M','/branches/WinCE/beckhoff-HMI600',NULL,NULL,NULL,NULL),(3946,341,'A','/branches/WinCE/include/ascii.h',NULL,NULL,NULL,NULL),(3947,341,'A','/branches/WinCE/include/asciitab.h',NULL,NULL,NULL,NULL),(3948,341,'A','/branches/WinCE/include/expat.h',NULL,NULL,NULL,NULL),(3949,341,'A','/branches/WinCE/include/expat_external.h',NULL,NULL,NULL,NULL),(3950,342,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(3951,343,'M','/branches/WinCE/beckhoff-HMI600/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(3952,344,'A','/trunk/UAStackV1/include/wince/errno.h',NULL,NULL,NULL,NULL),(3953,345,'M','/trunk/UAStackV1/include/shared/opcua_binaryencoder.h',NULL,NULL,NULL,NULL),(3954,345,'M','/trunk/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(3955,345,'M','/trunk/UAStackV1/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(3956,345,'M','/trunk/UAStackV1/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(3957,345,'M','/trunk/UAStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(3958,345,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3959,345,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(3960,345,'M','/trunk/UAStackV1/source/opcua_memory.c',NULL,NULL,NULL,NULL),(3961,345,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(3962,345,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(3963,345,'M','/trunk/UAStackV1/source/opcua_p_trace.c',NULL,NULL,NULL,NULL),(3964,345,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(3965,345,'M','/trunk/UAStackV1/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(3966,345,'M','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(3967,346,'M','/branches/WinCE/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(3968,346,'M','/branches/WinCE/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(3969,346,'M','/branches/WinCE/source/opcua_p_trace.c',NULL,NULL,NULL,NULL),(3970,346,'M','/branches/WinCE/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(3971,346,'M','/branches/WinCE/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(3972,347,'M','/branches/WinCE/include/shared/opcua_binaryencoder.h',NULL,NULL,NULL,NULL),(3973,347,'M','/branches/WinCE/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(3974,347,'M','/branches/WinCE/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(3975,347,'M','/branches/WinCE/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(3976,347,'M','/branches/WinCE/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3977,348,'M','/branches/WinCE/beckhoff-HMI600/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(3978,349,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(3979,350,'M','/branches/WinCE/beckhoff-HMI600',NULL,NULL,NULL,NULL),(3980,350,'D','/branches/WinCE/beckhoff-HMI600/UAStackV1.suo',NULL,NULL,NULL,NULL),(3981,350,'D','/branches/WinCE/beckhoff-HMI600/UAStackV1.vcproj.TAMEPBNBK1.bucheph.user',NULL,NULL,NULL,NULL),(3982,351,'M','/branches/WinCE',NULL,NULL,NULL,NULL),(3983,351,'D','/branches/WinCE/Bin',NULL,NULL,NULL,NULL),(3984,351,'D','/branches/WinCE/Lib',NULL,NULL,NULL,NULL),(3985,352,'M','/branches/WinCE/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3986,352,'M','/branches/WinCE/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(3987,352,'M','/branches/WinCE/source/opcua_string.c',NULL,NULL,NULL,NULL),(3988,353,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(3989,353,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3990,354,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3991,354,'M','/trunk/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(3992,354,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(3993,355,'M','/branches/WinCE/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3994,356,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3995,357,'M','/branches/WinCE/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3996,358,'M','/branches/WinCE/beckhoff-HMI600/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(3997,358,'M','/branches/WinCE/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(3998,359,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(3999,359,'M','/trunk/UAStackV1/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(4000,359,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(4001,359,'M','/trunk/UAStackV1/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(4002,359,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(4003,359,'M','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(4004,360,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(4005,360,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(4006,360,'M','/trunk/UAStackV1/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(4007,360,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(4008,360,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(4009,361,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(4010,361,'M','/trunk/UAStackV1/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(4011,361,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(4012,361,'M','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(4013,362,'M','/trunk/UAStackV1/include/wince/errno.h',NULL,NULL,NULL,NULL),(4014,363,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(4015,363,'M','/trunk/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(4016,363,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(4017,364,'A','/branches/WinCE',NULL,NULL,NULL,NULL),(4018,365,'A','/branches/WinCE/include',NULL,NULL,NULL,NULL),(4019,366,'A','/branches/WinCE/source',NULL,NULL,NULL,NULL),(4020,367,'A','/branches/WinCE/beckhoff-HMI600',NULL,NULL,NULL,NULL),(4021,368,'A','/branches/WinCE/include/AggregateCalculator.h',NULL,NULL,NULL,NULL),(4022,368,'A','/branches/WinCE/include/Application.h',NULL,NULL,NULL,NULL),(4023,368,'A','/branches/WinCE/include/BuildInfo.h',NULL,NULL,NULL,NULL),(4024,368,'A','/branches/WinCE/include/Channel.h',NULL,NULL,NULL,NULL),(4025,368,'A','/branches/WinCE/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(4026,368,'A','/branches/WinCE/include/DataValue.h',NULL,NULL,NULL,NULL),(4027,368,'A','/branches/WinCE/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(4028,368,'A','/branches/WinCE/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(4029,368,'A','/branches/WinCE/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(4030,368,'A','/branches/WinCE/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(4031,368,'A','/branches/WinCE/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(4032,368,'A','/branches/WinCE/include/NumericRange.h',NULL,NULL,NULL,NULL),(4033,368,'A','/branches/WinCE/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(4034,368,'A','/branches/WinCE/include/ServerStatus.h',NULL,NULL,NULL,NULL),(4035,368,'A','/branches/WinCE/include/SessionBase.h',NULL,NULL,NULL,NULL),(4036,368,'A','/branches/WinCE/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(4037,368,'A','/branches/WinCE/include/Subscription.h',NULL,NULL,NULL,NULL),(4038,368,'A','/branches/WinCE/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(4039,368,'A','/branches/WinCE/include/Utils.h',NULL,NULL,NULL,NULL),(4040,368,'A','/branches/WinCE/include/cslock.h',NULL,NULL,NULL,NULL),(4041,368,'A','/branches/WinCE/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(4042,368,'A','/branches/WinCE/include/targetver.h',NULL,NULL,NULL,NULL),(4043,368,'A','/branches/WinCE/source/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(4044,368,'A','/branches/WinCE/source/Application.cpp',NULL,NULL,NULL,NULL),(4045,368,'A','/branches/WinCE/source/BuildInfo.cpp',NULL,NULL,NULL,NULL),(4046,368,'A','/branches/WinCE/source/Channel.cpp',NULL,NULL,NULL,NULL),(4047,368,'A','/branches/WinCE/source/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(4048,368,'A','/branches/WinCE/source/DataValue.cpp',NULL,NULL,NULL,NULL),(4049,368,'A','/branches/WinCE/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(4050,368,'A','/branches/WinCE/source/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(4051,368,'A','/branches/WinCE/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(4052,368,'A','/branches/WinCE/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(4053,368,'A','/branches/WinCE/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(4054,368,'A','/branches/WinCE/source/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(4055,368,'A','/branches/WinCE/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(4056,368,'A','/branches/WinCE/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(4057,368,'A','/branches/WinCE/source/Subscription.cpp',NULL,NULL,NULL,NULL),(4058,368,'A','/branches/WinCE/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(4059,368,'A','/branches/WinCE/source/Utils.cpp',NULL,NULL,NULL,NULL),(4060,368,'A','/branches/WinCE/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4061,368,'A','/branches/WinCE/source/stdafx.cpp',NULL,NULL,NULL,NULL),(4062,369,'A','/branches/WinCE/include/stdafx.h',NULL,NULL,NULL,NULL),(4063,370,'M','/branches/WinCE/beckhoff-HMI600',NULL,NULL,NULL,NULL),(4064,370,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)',NULL,NULL,NULL,NULL),(4065,370,'A','/branches/WinCE/beckhoff-HMI600/Beckhoff_HMI_600 (x86)/Debug',NULL,NULL,NULL,NULL),(4066,370,'A','/branches/WinCE/beckhoff-HMI600/OPCUA_CPP_SharedLib.sln',NULL,NULL,NULL,NULL),(4067,370,'A','/branches/WinCE/beckhoff-HMI600/OPCUA_CPP_SharedLib.suo',NULL,NULL,NULL,NULL),(4068,370,'A','/branches/WinCE/beckhoff-HMI600/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4069,371,'M','/branches/WinCE/include/NumericRange.h',NULL,NULL,NULL,NULL),(4070,371,'M','/branches/WinCE/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(4071,371,'M','/branches/WinCE/source/Utils.cpp',NULL,NULL,NULL,NULL),(4072,371,'M','/branches/WinCE/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4073,372,'M','/branches/WinCE/include/DataValue.h',NULL,NULL,NULL,NULL),(4074,373,'M','/branches/WinCE/beckhoff-HMI600/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4075,373,'M','/branches/WinCE/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(4076,373,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4077,374,'M','/trunk/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(4078,374,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(4079,374,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(4080,374,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(4081,375,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4082,376,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4083,377,'M','/trunk/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(4084,377,'M','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(4085,377,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4086,378,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(4087,378,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4088,379,'M','/branches/WinCE/beckhoff-HMI600/OPCUA_CPP_SharedLib.suo',NULL,NULL,NULL,NULL),(4089,380,'M','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(4090,380,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(4091,380,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(4092,381,'M','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(4093,382,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(4094,382,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4095,382,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(4096,382,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(4097,382,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4098,382,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4099,382,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4100,382,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(4101,383,'M','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(4102,383,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4103,383,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4104,383,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(4105,383,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4106,383,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4107,383,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4108,383,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4109,383,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(4110,383,'M','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(4111,383,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4112,383,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4113,383,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4114,383,'M','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(4115,383,'M','/trunk/UABinding.h',NULL,NULL,NULL,NULL),(4116,383,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4117,384,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(4118,384,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(4119,384,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4120,384,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4121,384,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4122,385,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(4123,385,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(4124,385,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4125,385,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4126,385,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4127,385,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4128,385,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4129,385,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(4130,385,'M','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(4131,386,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4132,386,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4133,387,'M','/trunk/Vpis/include/VPI.h',NULL,NULL,NULL,NULL),(4134,388,'M','/trunk/Vpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(4135,389,'M','/trunk/Vpis/include/VPI.h',NULL,NULL,NULL,NULL),(4136,389,'M','/trunk/Vpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(4137,390,'M','/trunk/Vpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(4138,391,'M','/trunk/Vpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(4139,392,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4140,392,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4141,392,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4142,392,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4143,393,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4144,394,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4145,394,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4146,394,'M','/trunk/UABase.h',NULL,NULL,NULL,NULL),(4147,395,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(4148,395,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4149,395,'M','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(4150,395,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4151,395,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4152,395,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4153,395,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4154,395,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4155,395,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4156,395,'M','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(4157,395,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(4158,396,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4159,396,'M','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(4160,396,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4161,396,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4162,396,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4163,396,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4164,396,'M','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(4165,396,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(4166,397,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4167,397,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4168,397,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4169,397,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4170,397,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4171,397,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4172,397,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4173,398,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4174,398,'M','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(4175,398,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4176,398,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4177,398,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4178,398,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4179,398,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4180,398,'M','/trunk/StackCallbacks.h',NULL,NULL,NULL,NULL),(4181,398,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(4182,398,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(4183,399,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(4184,399,'M','/trunk/BuildInfo.cpp',NULL,NULL,NULL,NULL),(4185,399,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(4186,399,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(4187,399,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4188,400,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(4189,400,'M','/trunk/NumericRange.cpp',NULL,NULL,NULL,NULL),(4190,400,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(4191,400,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(4192,400,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(4193,401,'M','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(4194,401,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(4195,401,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(4196,401,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(4197,402,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(4198,402,'M','/trunk/NumericRange.cpp',NULL,NULL,NULL,NULL),(4199,402,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(4200,402,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(4201,403,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(4202,404,'M','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(4203,404,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(4204,404,'M','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(4205,404,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4206,404,'M','/trunk/SessionBase.cpp',NULL,NULL,NULL,NULL),(4207,404,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(4208,404,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(4209,404,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(4210,404,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(4211,404,'M','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4212,405,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(4213,405,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(4214,405,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(4215,406,'A','/trunk/Vpis/include/VpiDataTypes.h',NULL,NULL,NULL,NULL),(4216,407,'M','/trunk/Vpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(4217,407,'M','/trunk/Vpis/include/VpiDataTypes.h',NULL,NULL,NULL,NULL),(4218,407,'M','/trunk/Vpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(4219,408,'M','/trunk/Vpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(4220,408,'M','/trunk/Vpis/include/VPI.h',NULL,NULL,NULL,NULL),(4221,408,'M','/trunk/Vpis/include/VpiDataTypes.h',NULL,NULL,NULL,NULL),(4222,408,'M','/trunk/Vpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(4223,408,'A','/trunk/Vpis/include/VpiUtils.h',NULL,NULL,NULL,NULL),(4224,408,'M','/trunk/Vpis/include/cslock.h',NULL,NULL,NULL,NULL),(4225,409,'M','/trunk/Vpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(4226,409,'M','/trunk/Vpis/include/VpiUtils.h',NULL,NULL,NULL,NULL),(4227,410,'M','/trunk/Vpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(4228,411,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4229,411,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VpiDataTypes.h',NULL,NULL,NULL,NULL),(4230,412,'A','/trunk/VPIOperatingSystem/Demo',NULL,NULL,NULL,NULL),(4231,412,'A','/trunk/VPIOperatingSystem/Demo/Config4CE.xml',NULL,NULL,NULL,NULL),(4232,412,'A','/trunk/VPIOperatingSystem/Demo/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(4233,412,'A','/trunk/VPIOperatingSystem/Demo/StartServer.bat',NULL,NULL,NULL,NULL),(4234,412,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4235,413,'M','/trunk/VPIOperatingSystem/Demo/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(4236,413,'A','/trunk/VPIOperatingSystem/Demo/SubSystem001.xml',NULL,NULL,NULL,NULL),(4237,413,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4238,413,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.cpp',NULL,NULL,NULL,NULL),(4239,413,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.h',NULL,NULL,NULL,NULL),(4240,413,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4241,414,'M','/trunk/VPIOperatingSystem/Demo/SubSystem001.xml',NULL,NULL,NULL,NULL),(4242,414,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4243,414,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.cpp',NULL,NULL,NULL,NULL),(4244,414,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.h',NULL,NULL,NULL,NULL),(4245,415,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4246,416,'A','/trunk/Vpis/VpiAcqCtrl',NULL,NULL,NULL,NULL),(4247,417,'A','/trunk/Vpis/VpiAcqCtrl/Config',NULL,NULL,NULL,NULL),(4248,417,'A','/trunk/Vpis/VpiAcqCtrl/Config/AcqCtrl001.xml',NULL,NULL,NULL,NULL),(4249,417,'A','/trunk/Vpis/VpiAcqCtrl/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(4250,417,'A','/trunk/Vpis/VpiAcqCtrl/Config/Labo-AcqCtrl.xml',NULL,NULL,NULL,NULL),(4251,417,'A','/trunk/Vpis/VpiAcqCtrl/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(4252,417,'A','/trunk/Vpis/VpiAcqCtrl/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(4253,417,'A','/trunk/Vpis/VpiAcqCtrl/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(4254,417,'A','/trunk/Vpis/VpiAcqCtrl/Doc',NULL,NULL,NULL,NULL),(4255,417,'A','/trunk/Vpis/VpiAcqCtrl/Doc/VpiAcqCtrl.docx',NULL,NULL,NULL,NULL),(4256,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl',NULL,NULL,NULL,NULL),(4257,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl.sln',NULL,NULL,NULL,NULL),(4258,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(4259,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4260,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/SourceObject.cpp',NULL,NULL,NULL,NULL),(4261,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/SourceObject.h',NULL,NULL,NULL,NULL),(4262,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.cpp',NULL,NULL,NULL,NULL),(4263,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.def',NULL,NULL,NULL,NULL),(4264,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.h',NULL,NULL,NULL,NULL),(4265,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.rc',NULL,NULL,NULL,NULL),(4266,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcproj',NULL,NULL,NULL,NULL),(4267,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/VpiDataTypes.h',NULL,NULL,NULL,NULL),(4268,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/VpiInternal.cpp',NULL,NULL,NULL,NULL),(4269,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/VpiInternal.h',NULL,NULL,NULL,NULL),(4270,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/dllmain.cpp',NULL,NULL,NULL,NULL),(4271,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/resource.h',NULL,NULL,NULL,NULL),(4272,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/stdafx.cpp',NULL,NULL,NULL,NULL),(4273,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/stdafx.h',NULL,NULL,NULL,NULL),(4274,417,'A','/trunk/Vpis/VpiAcqCtrl/VPIAcqCtrl/targetver.h',NULL,NULL,NULL,NULL),(4275,418,'A','/Demo',NULL,NULL,NULL,NULL),(4276,418,'A','/Demo/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(4277,419,'A','/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(4278,420,'R','/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(4279,421,'D','/Demo',NULL,NULL,NULL,NULL),(4280,422,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(4281,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4282,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.cpp',NULL,NULL,NULL,NULL),(4283,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/SourceObject.h',NULL,NULL,NULL,NULL),(4284,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.cpp',NULL,NULL,NULL,NULL),(4285,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.h',NULL,NULL,NULL,NULL),(4286,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/VpiDataTypes.h',NULL,NULL,NULL,NULL),(4287,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/VpiOperatingSystem.def',NULL,NULL,NULL,NULL),(4288,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/dllmain.cpp',NULL,NULL,NULL,NULL),(4289,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/include',NULL,NULL,NULL,NULL),(4290,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/include/SourceObject.h',NULL,NULL,NULL,NULL),(4291,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/include/VPIOperatingSystem.h',NULL,NULL,NULL,NULL),(4292,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/include/stdafx.h',NULL,NULL,NULL,NULL),(4293,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/include/targetver.h',NULL,NULL,NULL,NULL),(4294,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/source',NULL,NULL,NULL,NULL),(4295,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4296,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(4297,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/source/VPIOperatingSystem.cpp',NULL,NULL,NULL,NULL),(4298,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/source/VpiOperatingSystem.def',NULL,NULL,NULL,NULL),(4299,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/source/dllmain.cpp',NULL,NULL,NULL,NULL),(4300,423,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/source/stdafx.cpp',NULL,NULL,NULL,NULL),(4301,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/stdafx.cpp',NULL,NULL,NULL,NULL),(4302,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/stdafx.h',NULL,NULL,NULL,NULL),(4303,423,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/targetver.h',NULL,NULL,NULL,NULL),(4304,424,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(4305,424,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4306,425,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4307,426,'M','/trunk/VPIBinClient/VPIBinClient/VPIBinClient.vcproj',NULL,NULL,NULL,NULL),(4308,427,'M','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(4309,427,'M','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(4310,427,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(4311,427,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(4312,428,'A','/trunk/source',NULL,NULL,NULL,NULL),(4313,429,'D','/trunk/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(4314,430,'D','/trunk/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(4315,431,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4316,431,'A','/trunk/source/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(4317,432,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4318,433,'D','/trunk/Application.cpp',NULL,NULL,NULL,NULL),(4319,434,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4320,434,'A','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(4321,435,'D','/trunk/BuildInfo.cpp',NULL,NULL,NULL,NULL),(4322,436,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4323,436,'A','/trunk/source/BuildInfo.cpp',NULL,NULL,NULL,NULL),(4324,437,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4325,438,'D','/trunk/Channel.cpp',NULL,NULL,NULL,NULL),(4326,439,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4327,439,'A','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(4328,440,'D','/trunk/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(4329,441,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4330,441,'A','/trunk/source/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(4331,442,'D','/trunk/DataValue.cpp',NULL,NULL,NULL,NULL),(4332,442,'D','/trunk/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(4333,442,'D','/trunk/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(4334,442,'D','/trunk/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(4335,443,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4336,443,'A','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(4337,443,'A','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(4338,443,'A','/trunk/source/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(4339,443,'A','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(4340,444,'D','/trunk/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(4341,444,'D','/trunk/NumericRange.cpp',NULL,NULL,NULL,NULL),(4342,444,'D','/trunk/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4343,445,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4344,445,'A','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(4345,445,'A','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(4346,445,'A','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4347,446,'D','/trunk/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(4348,446,'D','/trunk/ServerStatus.cpp',NULL,NULL,NULL,NULL),(4349,446,'D','/trunk/SessionBase.cpp',NULL,NULL,NULL,NULL),(4350,447,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4351,447,'A','/trunk/source/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(4352,447,'A','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(4353,447,'A','/trunk/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(4354,448,'D','/trunk/Subscription.cpp',NULL,NULL,NULL,NULL),(4355,448,'D','/trunk/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(4356,448,'D','/trunk/Utils.cpp',NULL,NULL,NULL,NULL),(4357,448,'D','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(4358,449,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4359,449,'A','/trunk/source/Subscription.cpp',NULL,NULL,NULL,NULL),(4360,449,'A','/trunk/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(4361,449,'A','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(4362,449,'A','/trunk/source/stdafx.cpp',NULL,NULL,NULL,NULL),(4363,450,'D','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(4364,450,'D','/trunk/targetver.h',NULL,NULL,NULL,NULL),(4365,451,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4366,451,'A','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(4367,451,'A','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(4368,452,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4369,453,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4370,454,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(4371,455,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(4372,456,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(4373,456,'M','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(4374,456,'A','/trunk/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(4375,456,'A','/trunk/ContinuationPoint.h',NULL,NULL,NULL,NULL),(4376,456,'M','/trunk/Definition.cpp',NULL,NULL,NULL,NULL),(4377,456,'M','/trunk/Definition.h',NULL,NULL,NULL,NULL),(4378,456,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(4379,456,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4380,456,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(4381,456,'M','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(4382,456,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(4383,456,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4384,456,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4385,456,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4386,456,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4387,456,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(4388,456,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4389,456,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4390,456,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(4391,456,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4392,456,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(4393,456,'M','/trunk/UAReferenceType.h',NULL,NULL,NULL,NULL),(4394,456,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(4395,456,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(4396,456,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(4397,457,'M','/trunk/Include/VpiDataValue.h',NULL,NULL,NULL,NULL),(4398,458,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(4399,459,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4400,459,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4401,460,'M','/trunk/mfcquickclient/ClientApplication.cpp',NULL,NULL,NULL,NULL),(4402,460,'M','/trunk/mfcquickclient/ClientSession.cpp',NULL,NULL,NULL,NULL),(4403,460,'M','/trunk/mfcquickclient/ClientSession.h',NULL,NULL,NULL,NULL),(4404,460,'M','/trunk/mfcquickclient/OPCUA_CPP_QuickClient.rc',NULL,NULL,NULL,NULL),(4405,460,'M','/trunk/mfcquickclient/OPCUA_CPP_QuickClientDlg.cpp',NULL,NULL,NULL,NULL),(4406,460,'M','/trunk/mfcquickclient/OPCUA_CPP_QuickClientDlg.h',NULL,NULL,NULL,NULL),(4407,460,'M','/trunk/mfcquickclient/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(4408,460,'M','/trunk/mfcquickclient/SubscriptionClient.h',NULL,NULL,NULL,NULL),(4409,460,'M','/trunk/mfcquickclient/UABrowserDlg.cpp',NULL,NULL,NULL,NULL),(4410,461,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(4411,461,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(4412,461,'M','/trunk/UAStackV1/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(4413,462,'M','/trunk/UAStackV1/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(4414,462,'M','/trunk/UAStackV1/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(4415,462,'M','/trunk/UAStackV1/source/opcua_types.c',NULL,NULL,NULL,NULL),(4416,463,'M','/trunk/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(4417,463,'M','/trunk/ContinuationPoint.h',NULL,NULL,NULL,NULL),(4418,463,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4419,463,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4420,463,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(4421,463,'M','/trunk/UABase.h',NULL,NULL,NULL,NULL),(4422,463,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4423,463,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(4424,463,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(4425,464,'A','/trunk/CTT Config',NULL,NULL,NULL,NULL),(4426,464,'A','/trunk/CTT Config/Config4CE.xml',NULL,NULL,NULL,NULL),(4427,465,'A','/trunk/CTT Config/Opc.Ua.CTT.xml',NULL,NULL,NULL,NULL),(4428,466,'A','/trunk/CTT Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(4429,467,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(4430,467,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(4431,467,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4432,467,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4433,468,'M','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(4434,468,'M','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(4435,468,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4436,468,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4437,468,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4438,468,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4439,469,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4440,469,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4441,469,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4442,469,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4443,469,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4444,469,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(4445,470,'M','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(4446,471,'M','/trunk/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(4447,471,'M','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(4448,471,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4449,471,'M','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(4450,471,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4451,471,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4452,471,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4453,471,'M','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(4454,471,'M','/trunk/SimulatedNode.h',NULL,NULL,NULL,NULL),(4455,471,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(4456,471,'M','/trunk/UABase.h',NULL,NULL,NULL,NULL),(4457,471,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4458,471,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(4459,471,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(4460,472,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(4461,472,'M','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(4462,473,'A','/trunk/include',NULL,NULL,NULL,NULL),(4463,474,'A','/trunk/source',NULL,NULL,NULL,NULL),(4464,475,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(4465,476,'A','/trunk/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(4466,476,'A','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(4467,476,'A','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(4468,476,'A','/trunk/source/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(4469,476,'A','/trunk/source/XMLSAXParser.def',NULL,NULL,NULL,NULL),(4470,476,'A','/trunk/source/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(4471,476,'A','/trunk/source/stdafx.cpp',NULL,NULL,NULL,NULL),(4472,477,'D','/trunk/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(4473,478,'D','/trunk/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(4474,479,'D','/trunk/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(4475,480,'D','/trunk/XMLSAXParser.def',NULL,NULL,NULL,NULL),(4476,481,'D','/trunk/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(4477,482,'D','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(4478,483,'D','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(4479,484,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(4480,485,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(4481,486,'M','/trunk/UAStackV1/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(4482,486,'M','/trunk/UAStackV1/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(4483,486,'M','/trunk/UAStackV1/source/opcua_types.c',NULL,NULL,NULL,NULL),(4484,487,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(4485,487,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(4486,488,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(4487,488,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(4488,488,'M','/trunk/source/Subscription.cpp',NULL,NULL,NULL,NULL),(4489,488,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(4490,489,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(4491,489,'M','/trunk/source/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(4492,490,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(4493,490,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(4494,491,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(4495,491,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(4496,491,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(4497,492,'M','/trunk/Definition.h',NULL,NULL,NULL,NULL),(4498,492,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4499,492,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4500,492,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4501,492,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4502,492,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4503,492,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(4504,492,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4505,492,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4506,492,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4507,492,'M','/trunk/UABase.h',NULL,NULL,NULL,NULL),(4508,492,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4509,492,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(4510,492,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(4511,493,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(4512,493,'M','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(4513,493,'M','/trunk/UAStackV1/source/opcua_types.c',NULL,NULL,NULL,NULL),(4514,494,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(4515,494,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(4516,494,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(4517,495,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(4518,496,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(4519,496,'M','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(4520,496,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4521,496,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4522,496,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4523,496,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4524,496,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4525,496,'M','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(4526,496,'M','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(4527,496,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4528,497,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4529,497,'M','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(4530,497,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4531,497,'M','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(4532,498,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(4533,499,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4534,499,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4535,499,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4536,500,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(4537,500,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4538,500,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4539,500,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4540,500,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4541,500,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4542,500,'A','/trunk/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(4543,500,'A','/trunk/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(4544,500,'A','/trunk/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(4545,500,'A','/trunk/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(4546,500,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(4547,501,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(4548,501,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4549,501,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(4550,501,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4551,501,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4552,501,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4553,501,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(4554,501,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4555,501,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4556,501,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4557,501,'M','/trunk/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(4558,501,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4559,501,'M','/trunk/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(4560,501,'M','/trunk/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(4561,501,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(4562,502,'M','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(4563,502,'M','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(4564,502,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4565,502,'M','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(4566,502,'M','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(4567,502,'M','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4568,502,'M','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(4569,502,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4570,502,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4571,502,'M','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4572,502,'M','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(4573,502,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4574,502,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4575,502,'M','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4576,502,'M','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(4577,502,'M','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(4578,502,'M','/trunk/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(4579,502,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4580,502,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(4581,502,'M','/trunk/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(4582,502,'M','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(4583,502,'M','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(4584,502,'M','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(4585,503,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4586,503,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4587,503,'M','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(4588,504,'M','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(4589,504,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4590,504,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4591,504,'M','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4592,504,'M','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4593,504,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4594,505,'M','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(4595,505,'M','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(4596,506,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(4597,506,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(4598,506,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(4599,507,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(4600,508,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(4601,508,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(4602,508,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4603,509,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(4604,509,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(4605,509,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4606,509,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(4607,509,'M','/trunk/VPIMca166/SourceObject.cpp',NULL,NULL,NULL,NULL),(4608,509,'M','/trunk/VPIMca166/SourceObject.h',NULL,NULL,NULL,NULL),(4609,509,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(4610,509,'M','/trunk/VPIMca166/VpiInternal.h',NULL,NULL,NULL,NULL),(4611,510,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(4612,510,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(4613,510,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4614,510,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(4615,511,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(4616,511,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(4617,511,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4618,511,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(4619,512,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(4620,512,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(4621,512,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4622,512,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(4623,512,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(4624,512,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(4625,513,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(4626,513,'A','/trunk/include',NULL,NULL,NULL,NULL),(4627,513,'A','/trunk/include/MCA_COMM.H',NULL,NULL,NULL,NULL),(4628,514,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(4629,514,'A','/trunk/lib',NULL,NULL,NULL,NULL),(4630,514,'A','/trunk/lib/mca32com.lib',NULL,NULL,NULL,NULL),(4631,515,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(4632,515,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(4633,515,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4634,515,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(4635,516,'M','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(4636,516,'M','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(4637,516,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4638,517,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4639,517,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(4640,517,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(4641,517,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(4642,518,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4643,518,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(4644,519,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(4645,520,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(4646,521,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(4647,522,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(4648,523,'M','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4649,523,'M','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(4650,523,'M','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4651,523,'M','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4652,523,'M','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4653,523,'M','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4654,523,'M','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(4655,523,'M','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(4656,524,'M','/trunk/CTT Config/Opc.Ua.CTT.xml',NULL,NULL,NULL,NULL),(4657,525,'M','/trunk/CTT Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(4658,526,'M','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install.suo',NULL,NULL,NULL,NULL),(4659,526,'M','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install/Debug/setup.exe',NULL,NULL,NULL,NULL),(4660,526,'M','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install.vdproj',NULL,NULL,NULL,NULL),(4661,527,'M','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install',NULL,NULL,NULL,NULL),(4662,527,'D','/trunk/OPCUA_CPP_QuickServer_Install/OPCUA_CPP_QuickServer_Install/Debug',NULL,NULL,NULL,NULL),(4663,528,'A','/tags/03-2013',NULL,NULL,NULL,NULL),(4664,529,'A','/tags/03-2013/trunk','/trunk','171',NULL,NULL),(4665,530,'D','/trunk/Include',NULL,NULL,NULL,NULL),(4666,531,'A','/trunk/source',NULL,NULL,NULL,NULL),(4667,532,'A','/trunk/include',NULL,NULL,NULL,NULL),(4668,533,'A','/trunk/ServerShared',NULL,NULL,NULL,NULL),(4669,533,'A','/trunk/ServerShared/ServerHeader',NULL,NULL,NULL,NULL),(4670,533,'A','/trunk/ServerShared/ServerHeader.sln',NULL,NULL,NULL,NULL),(4671,533,'A','/trunk/ServerShared/ServerHeader.vcproj',NULL,NULL,NULL,NULL),(4672,533,'A','/trunk/ServerShared/VPI.h',NULL,NULL,NULL,NULL),(4673,533,'A','/trunk/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(4674,533,'A','/trunk/ServerShared/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(4675,534,'A','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(4676,534,'A','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(4677,534,'A','/trunk/source/Alias.cpp',NULL,NULL,NULL,NULL),(4678,534,'A','/trunk/source/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(4679,534,'A','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(4680,534,'A','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(4681,534,'A','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(4682,534,'A','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(4683,534,'A','/trunk/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(4684,534,'A','/trunk/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(4685,534,'A','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4686,534,'A','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(4687,534,'A','/trunk/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(4688,534,'A','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4689,534,'A','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(4690,534,'A','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(4691,534,'A','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(4692,534,'A','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4693,534,'A','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4694,534,'A','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(4695,534,'A','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(4696,534,'A','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(4697,534,'A','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(4698,534,'A','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(4699,534,'A','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4700,534,'A','/trunk/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(4701,534,'A','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(4702,534,'A','/trunk/source/UAObjectType.cpp',NULL,NULL,NULL,NULL),(4703,534,'A','/trunk/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(4704,534,'A','/trunk/source/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(4705,534,'A','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(4706,534,'A','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(4707,534,'A','/trunk/source/UAView.cpp',NULL,NULL,NULL,NULL),(4708,534,'A','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(4709,534,'A','/trunk/source/stdafx.cpp',NULL,NULL,NULL,NULL),(4710,535,'A','/trunk/include/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(4711,535,'A','/trunk/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(4712,535,'A','/trunk/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(4713,535,'A','/trunk/include/Alias.h',NULL,NULL,NULL,NULL),(4714,535,'A','/trunk/include/ContinuationPoint.h',NULL,NULL,NULL,NULL),(4715,535,'A','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(4716,535,'A','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(4717,535,'A','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(4718,535,'A','/trunk/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(4719,535,'A','/trunk/include/QueueRequest.h',NULL,NULL,NULL,NULL),(4720,535,'A','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(4721,535,'A','/trunk/include/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(4722,535,'A','/trunk/include/SecureChannel.h',NULL,NULL,NULL,NULL),(4723,535,'A','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(4724,535,'A','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(4725,535,'A','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(4726,535,'A','/trunk/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(4727,535,'A','/trunk/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(4728,535,'A','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4729,535,'A','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(4730,535,'A','/trunk/include/UABinding.h',NULL,NULL,NULL,NULL),(4731,535,'A','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(4732,535,'A','/trunk/include/UADataType.h',NULL,NULL,NULL,NULL),(4733,535,'A','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(4734,535,'A','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(4735,535,'A','/trunk/include/UAMethod.h',NULL,NULL,NULL,NULL),(4736,535,'A','/trunk/include/UAObject.h',NULL,NULL,NULL,NULL),(4737,535,'A','/trunk/include/UAObjectType.h',NULL,NULL,NULL,NULL),(4738,535,'A','/trunk/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(4739,535,'A','/trunk/include/UASimulation.h',NULL,NULL,NULL,NULL),(4740,535,'A','/trunk/include/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(4741,535,'A','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(4742,535,'A','/trunk/include/UAVariableType.h',NULL,NULL,NULL,NULL),(4743,535,'A','/trunk/include/UAView.h',NULL,NULL,NULL,NULL),(4744,535,'A','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(4745,535,'A','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(4746,535,'A','/trunk/include/resource.h',NULL,NULL,NULL,NULL),(4747,535,'A','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(4748,535,'A','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(4749,536,'D','/trunk/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(4750,536,'D','/trunk/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(4751,536,'D','/trunk/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(4752,536,'D','/trunk/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(4753,536,'D','/trunk/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(4754,536,'D','/trunk/Alias.cpp',NULL,NULL,NULL,NULL),(4755,536,'D','/trunk/Alias.h',NULL,NULL,NULL,NULL),(4756,536,'D','/trunk/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(4757,536,'D','/trunk/ContinuationPoint.h',NULL,NULL,NULL,NULL),(4758,536,'D','/trunk/Definition.cpp',NULL,NULL,NULL,NULL),(4759,536,'D','/trunk/Definition.h',NULL,NULL,NULL,NULL),(4760,536,'D','/trunk/Field.cpp',NULL,NULL,NULL,NULL),(4761,536,'D','/trunk/Field.h',NULL,NULL,NULL,NULL),(4762,536,'D','/trunk/Main.cpp',NULL,NULL,NULL,NULL),(4763,536,'D','/trunk/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(4764,536,'D','/trunk/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(4765,536,'D','/trunk/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(4766,536,'D','/trunk/NamespaceUri.h',NULL,NULL,NULL,NULL),(4767,536,'D','/trunk/QueueRequest.cpp',NULL,NULL,NULL,NULL),(4768,536,'D','/trunk/QueueRequest.h',NULL,NULL,NULL,NULL),(4769,536,'D','/trunk/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(4770,536,'D','/trunk/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(4771,536,'D','/trunk/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(4772,536,'D','/trunk/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(4773,536,'D','/trunk/SecureChannel.cpp',NULL,NULL,NULL,NULL),(4774,536,'D','/trunk/SecureChannel.h',NULL,NULL,NULL,NULL),(4775,536,'D','/trunk/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4776,536,'D','/trunk/ServerApplication.h',NULL,NULL,NULL,NULL),(4777,536,'D','/trunk/SessionServer.cpp',NULL,NULL,NULL,NULL),(4778,536,'D','/trunk/SessionServer.h',NULL,NULL,NULL,NULL),(4779,536,'D','/trunk/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(4780,536,'D','/trunk/SimulatedGroup.h',NULL,NULL,NULL,NULL),(4781,536,'D','/trunk/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(4782,536,'D','/trunk/SimulatedNode.h',NULL,NULL,NULL,NULL),(4783,536,'D','/trunk/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4784,536,'D','/trunk/StackCallbacks.h',NULL,NULL,NULL,NULL),(4785,536,'D','/trunk/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4786,536,'D','/trunk/SubscriptionServer.h',NULL,NULL,NULL,NULL),(4787,536,'D','/trunk/UABase.cpp',NULL,NULL,NULL,NULL),(4788,536,'D','/trunk/UABase.h',NULL,NULL,NULL,NULL),(4789,536,'D','/trunk/UABinding.cpp',NULL,NULL,NULL,NULL),(4790,536,'D','/trunk/UABinding.h',NULL,NULL,NULL,NULL),(4791,536,'D','/trunk/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(4792,536,'D','/trunk/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(4793,536,'D','/trunk/UADataType.cpp',NULL,NULL,NULL,NULL),(4794,536,'D','/trunk/UADataType.h',NULL,NULL,NULL,NULL),(4795,536,'D','/trunk/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(4796,536,'D','/trunk/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(4797,536,'D','/trunk/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4798,536,'D','/trunk/UAInformationModel.h',NULL,NULL,NULL,NULL),(4799,536,'D','/trunk/UAMethod.cpp',NULL,NULL,NULL,NULL),(4800,536,'D','/trunk/UAMethod.h',NULL,NULL,NULL,NULL),(4801,536,'D','/trunk/UAObject.cpp',NULL,NULL,NULL,NULL),(4802,536,'D','/trunk/UAObject.h',NULL,NULL,NULL,NULL),(4803,536,'D','/trunk/UAObjectType.cpp',NULL,NULL,NULL,NULL),(4804,536,'D','/trunk/UAObjectType.h',NULL,NULL,NULL,NULL),(4805,536,'D','/trunk/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(4806,536,'D','/trunk/UAReferenceType.h',NULL,NULL,NULL,NULL),(4807,536,'D','/trunk/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(4808,536,'D','/trunk/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(4809,536,'D','/trunk/UAVariable.cpp',NULL,NULL,NULL,NULL),(4810,536,'D','/trunk/UAVariable.h',NULL,NULL,NULL,NULL),(4811,536,'D','/trunk/UAVariableType.cpp',NULL,NULL,NULL,NULL),(4812,536,'D','/trunk/UAVariableType.h',NULL,NULL,NULL,NULL),(4813,536,'D','/trunk/UAView.cpp',NULL,NULL,NULL,NULL),(4814,536,'D','/trunk/UAView.h',NULL,NULL,NULL,NULL),(4815,536,'D','/trunk/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(4816,536,'D','/trunk/VPIScheduler.h',NULL,NULL,NULL,NULL),(4817,536,'D','/trunk/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(4818,536,'D','/trunk/resource.h',NULL,NULL,NULL,NULL),(4819,536,'D','/trunk/stdafx.cpp',NULL,NULL,NULL,NULL),(4820,536,'D','/trunk/stdafx.h',NULL,NULL,NULL,NULL),(4821,536,'D','/trunk/targetver.h',NULL,NULL,NULL,NULL),(4822,537,'M','/trunk/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(4823,538,'A','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(4824,538,'A','/trunk/OpenOpcUaCoreServer.sln',NULL,NULL,NULL,NULL),(4825,538,'A','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(4826,539,'M','/trunk/OpenOpcUaCoreServer.sln',NULL,NULL,NULL,NULL),(4827,539,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(4828,540,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4829,540,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(4830,540,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4831,540,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(4832,541,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4833,541,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(4834,541,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(4835,542,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4836,542,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(4837,542,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(4838,542,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(4839,542,'M','/trunk/UAClientLibTester/NodeIdDlg.cpp',NULL,NULL,NULL,NULL),(4840,543,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4841,543,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(4842,543,'M','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(4843,543,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(4844,544,'M','/trunk/Doc/Analyse UAClientLib.docx',NULL,NULL,NULL,NULL),(4845,545,'M','/trunk/Doc/Analyse UAClientLib.docx',NULL,NULL,NULL,NULL),(4846,545,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(4847,546,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4848,546,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(4849,546,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4850,546,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(4851,546,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(4852,546,'M','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(4853,546,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(4854,546,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(4855,546,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(4856,546,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(4857,547,'M','/trunk/Doc/Analyse UAClientLib.docx',NULL,NULL,NULL,NULL),(4858,548,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4859,549,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4860,549,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(4861,549,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4862,549,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(4863,549,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(4864,550,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4865,551,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4866,552,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4867,552,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(4868,552,'M','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(4869,553,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4870,554,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4871,555,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(4872,555,'M','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(4873,555,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4874,555,'A','/trunk/UAClientLib/LoggerMessage.cpp',NULL,NULL,NULL,NULL),(4875,555,'A','/trunk/UAClientLib/LoggerMessage.h',NULL,NULL,NULL,NULL),(4876,555,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4877,555,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(4878,555,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(4879,556,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(4880,556,'M','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(4881,556,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4882,556,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(4883,556,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(4884,556,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(4885,556,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(4886,556,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(4887,557,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(4888,557,'M','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(4889,558,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(4890,558,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4891,558,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(4892,558,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4893,558,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(4894,558,'M','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(4895,558,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(4896,558,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(4897,559,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4898,559,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(4899,559,'M','/trunk/UAClientLib/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(4900,559,'M','/trunk/UAClientLib/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(4901,559,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(4902,559,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(4903,559,'M','/trunk/UAClientLib/stdafx.h',NULL,NULL,NULL,NULL),(4904,560,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4905,561,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4906,561,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(4907,562,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(4908,562,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4909,562,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4910,562,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(4911,562,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(4912,562,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(4913,562,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(4914,563,'M','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(4915,563,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4916,563,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(4917,563,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(4918,564,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(4919,565,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4920,566,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(4921,567,'A','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(4922,568,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4923,569,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4924,570,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(4925,570,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4926,571,'M','/InformationModel/trunk/Information Model.sln',NULL,NULL,NULL,NULL),(4927,572,'A','/trunk/CTT Config/CTT Config.vcproj',NULL,NULL,NULL,NULL),(4928,572,'A','/trunk/CTT Config/StartServerDebug.bat',NULL,NULL,NULL,NULL),(4929,572,'A','/trunk/CTT Config/StartServerRelease.bat',NULL,NULL,NULL,NULL),(4930,573,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(4931,573,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(4932,573,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(4933,573,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(4934,573,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(4935,573,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(4936,573,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(4937,573,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(4938,573,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(4939,573,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(4940,573,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(4941,573,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(4942,573,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(4943,573,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(4944,573,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(4945,573,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(4946,573,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(4947,573,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(4948,573,'M','/trunk/source/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(4949,573,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(4950,573,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(4951,573,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(4952,574,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(4953,575,'A','/trunk/ServerShared/VpiTypes.h',NULL,NULL,NULL,NULL),(4954,576,'M','/trunk/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(4955,577,'M','/trunk/ServerShared/VPI.h',NULL,NULL,NULL,NULL),(4956,578,'M','/trunk/ServerShared/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(4957,579,'M','/trunk/ServerShared/ServerHeader.vcproj',NULL,NULL,NULL,NULL),(4958,580,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4959,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Config',NULL,NULL,NULL,NULL),(4960,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Config/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(4961,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(4962,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(4963,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(4964,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Config/SubSystem001.xml',NULL,NULL,NULL,NULL),(4965,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Demo',NULL,NULL,NULL,NULL),(4966,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Demo/Config4CE.xml',NULL,NULL,NULL,NULL),(4967,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Demo/StartServer.bat',NULL,NULL,NULL,NULL),(4968,581,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/RCLServerConfig.h',NULL,NULL,NULL,NULL),(4969,581,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4970,582,'A','/trunk/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(4971,583,'A','/Demo',NULL,NULL,NULL,NULL),(4972,584,'A','/Demo/StartServer.bat',NULL,NULL,NULL,NULL),(4973,585,'M','/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(4974,586,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/Demo/Config4CE.xml',NULL,NULL,NULL,NULL),(4975,587,'D','/trunk/VPIOperatingSystem/Demo',NULL,NULL,NULL,NULL),(4976,588,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem/RCLServerConfig.h',NULL,NULL,NULL,NULL),(4977,589,'A','/trunk/VPIOperatingSystem/VPIOperatingSystem/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(4978,589,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4979,590,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4980,591,'D','/trunk/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(4981,592,'D','/trunk/VPIOperatingSystem/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(4982,593,'D','/Demo',NULL,NULL,NULL,NULL),(4983,594,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(4984,595,'D','/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(4985,596,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(4986,596,'M','/trunk/VPIOperatingSystem/VPIOperatingSystem/Demo/StartServer.bat',NULL,NULL,NULL,NULL),(4987,597,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(4988,597,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(4989,597,'M','/trunk/ServerShared/VPI.h',NULL,NULL,NULL,NULL),(4990,597,'M','/trunk/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(4991,597,'M','/trunk/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(4992,597,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(4993,597,'M','/trunk/include/SecureChannel.h',NULL,NULL,NULL,NULL),(4994,597,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(4995,597,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(4996,597,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(4997,597,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(4998,597,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(4999,597,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(5000,597,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5001,597,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(5002,597,'M','/trunk/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(5003,597,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5004,597,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5005,597,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(5006,597,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5007,597,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5008,597,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(5009,597,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(5010,598,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(5011,598,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(5012,598,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5013,598,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(5014,598,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5015,599,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5016,599,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5017,600,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5018,601,'A','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(5019,602,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5020,602,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(5021,602,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(5022,602,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5023,602,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5024,603,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(5025,603,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5026,603,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5027,604,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5028,605,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5029,606,'M','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(5030,606,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5031,606,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(5032,606,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5033,607,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5034,608,'A','/trunk/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(5035,608,'M','/trunk/Doc/Analyse de la SharedLib.docx',NULL,NULL,NULL,NULL),(5036,608,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5037,608,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(5038,608,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5039,608,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5040,608,'M','/trunk/source/Subscription.cpp',NULL,NULL,NULL,NULL),(5041,608,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5042,609,'A','/trunk/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(5043,610,'A','/trunk/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(5044,611,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(5045,611,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5046,611,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5047,612,'A','/trunk/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(5048,613,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5049,614,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5050,615,'A','/Config',NULL,NULL,NULL,NULL),(5051,615,'A','/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(5052,615,'A','/Config/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(5053,615,'A','/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(5054,615,'A','/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(5055,615,'A','/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(5056,615,'A','/Config/SubSystem001.xml',NULL,NULL,NULL,NULL),(5057,615,'A','/Demo',NULL,NULL,NULL,NULL),(5058,615,'A','/Demo/StartServer.bat',NULL,NULL,NULL,NULL),(5059,615,'A','/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(5060,615,'A','/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(5061,615,'A','/include',NULL,NULL,NULL,NULL),(5062,615,'A','/include/SourceObject.h',NULL,NULL,NULL,NULL),(5063,615,'A','/include/VPIOperatingSystem.h',NULL,NULL,NULL,NULL),(5064,615,'A','/include/stdafx.h',NULL,NULL,NULL,NULL),(5065,615,'A','/include/targetver.h',NULL,NULL,NULL,NULL),(5066,615,'A','/source',NULL,NULL,NULL,NULL),(5067,615,'A','/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(5068,615,'A','/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(5069,615,'A','/source/VPIOperatingSystem.cpp',NULL,NULL,NULL,NULL),(5070,615,'A','/source/VpiOperatingSystem.def',NULL,NULL,NULL,NULL),(5071,615,'A','/source/dllmain.cpp',NULL,NULL,NULL,NULL),(5072,615,'A','/source/stdafx.cpp',NULL,NULL,NULL,NULL),(5073,616,'D','/branches',NULL,NULL,NULL,NULL),(5074,617,'D','/trunk',NULL,NULL,NULL,NULL),(5075,618,'D','/tags',NULL,NULL,NULL,NULL),(5076,619,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5077,619,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(5078,619,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(5079,619,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(5080,619,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5081,619,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(5082,619,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5083,619,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5084,619,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(5085,619,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(5086,619,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5087,619,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(5088,619,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5089,619,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(5090,619,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(5091,620,'M','/trunk/ServerShared/VPI.h',NULL,NULL,NULL,NULL),(5092,621,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(5093,621,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(5094,621,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(5095,621,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(5096,621,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5097,621,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(5098,621,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5099,621,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5100,621,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(5101,621,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(5102,621,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5103,621,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(5104,621,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(5105,621,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5106,621,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(5107,621,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(5108,622,'M','/trunk/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(5109,622,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5110,622,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(5111,622,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5112,622,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5113,622,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5114,623,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(5115,623,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(5116,623,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5117,623,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(5118,623,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5119,624,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5120,624,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5121,624,'M','/trunk/UAClientLibTester/NodeIdDlg.cpp',NULL,NULL,NULL,NULL),(5122,624,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(5123,624,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(5124,624,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5125,624,'M','/trunk/UAClientLibTester/res/UAClientLibTester.ico',NULL,NULL,NULL,NULL),(5126,624,'A','/trunk/UAClientLibTester/res/icon1.ico',NULL,NULL,NULL,NULL),(5127,624,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(5128,625,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(5129,625,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(5130,625,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5131,625,'A','/trunk/UAClientLibTester/res/OpenOpcUa.ico',NULL,NULL,NULL,NULL),(5132,625,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(5133,626,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(5134,626,'M','/trunk/UAClientLib/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(5135,626,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5136,626,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(5137,626,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(5138,626,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(5139,626,'M','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(5140,626,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5141,626,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(5142,627,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(5143,627,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(5144,628,'M','/trunk/UAClientLib/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(5145,628,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(5146,629,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(5147,629,'M','/trunk/UAClientLib/LoggerMessage.cpp',NULL,NULL,NULL,NULL),(5148,629,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5149,629,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(5150,629,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(5151,629,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(5152,629,'M','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(5153,629,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5154,629,'M','/trunk/UAClientLibTester/UAClientLibTester.cpp',NULL,NULL,NULL,NULL),(5155,629,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(5156,629,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5157,629,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(5158,630,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(5159,630,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(5160,631,'M','/trunk/Doc/Analyse UAClientLib.docx',NULL,NULL,NULL,NULL),(5161,631,'M','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(5162,631,'M','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(5163,631,'M','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(5164,631,'M','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(5165,631,'M','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5166,631,'M','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(5167,631,'M','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(5168,631,'M','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(5169,631,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5170,631,'A','/trunk/UAClientLib/UAClientLibd.def',NULL,NULL,NULL,NULL),(5171,631,'M','/trunk/UAClientLibTester/SubscriptionParamDlg.cpp',NULL,NULL,NULL,NULL),(5172,631,'M','/trunk/UAClientLibTester/UAClientLibTester.cpp',NULL,NULL,NULL,NULL),(5173,631,'M','/trunk/UAClientLibTester/UAClientLibTester.h',NULL,NULL,NULL,NULL),(5174,631,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(5175,631,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5176,631,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(5177,631,'M','/trunk/UAClientLibTester/stdafx.h',NULL,NULL,NULL,NULL),(5178,632,'A','/trunk/UAClientLib/source',NULL,NULL,NULL,NULL),(5179,633,'A','/trunk/UAClientLib/include',NULL,NULL,NULL,NULL),(5180,634,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5181,635,'D','/trunk/UAClientLib/ClientApplication.cpp',NULL,NULL,NULL,NULL),(5182,635,'D','/trunk/UAClientLib/ClientSession.cpp',NULL,NULL,NULL,NULL),(5183,635,'D','/trunk/UAClientLib/LoggerMessage.cpp',NULL,NULL,NULL,NULL),(5184,635,'D','/trunk/UAClientLib/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(5185,635,'D','/trunk/UAClientLib/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5186,635,'D','/trunk/UAClientLib/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(5187,635,'D','/trunk/UAClientLib/UAClientLib.cpp',NULL,NULL,NULL,NULL),(5188,635,'D','/trunk/UAClientLib/UAClientLib.def',NULL,NULL,NULL,NULL),(5189,635,'D','/trunk/UAClientLib/UAClientLibd.def',NULL,NULL,NULL,NULL),(5190,635,'D','/trunk/UAClientLib/dllmain.cpp',NULL,NULL,NULL,NULL),(5191,635,'D','/trunk/UAClientLib/stdafx.cpp',NULL,NULL,NULL,NULL),(5192,636,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5193,637,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5194,638,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5195,639,'A','/trunk/UAClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(5196,639,'A','/trunk/UAClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(5197,639,'A','/trunk/UAClientLib/include/LoggerMessage.h',NULL,NULL,NULL,NULL),(5198,639,'A','/trunk/UAClientLib/include/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(5199,639,'A','/trunk/UAClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(5200,639,'A','/trunk/UAClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(5201,639,'A','/trunk/UAClientLib/include/UABuiltInType.h',NULL,NULL,NULL,NULL),(5202,639,'A','/trunk/UAClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(5203,639,'A','/trunk/UAClientLib/include/targetver.h',NULL,NULL,NULL,NULL),(5204,640,'A','/trunk/UAClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(5205,640,'A','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(5206,640,'A','/trunk/UAClientLib/source/LoggerMessage.cpp',NULL,NULL,NULL,NULL),(5207,640,'A','/trunk/UAClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(5208,640,'A','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5209,640,'A','/trunk/UAClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(5210,640,'A','/trunk/UAClientLib/source/UAClientLib.cpp',NULL,NULL,NULL,NULL),(5211,640,'A','/trunk/UAClientLib/source/UAClientLib.def',NULL,NULL,NULL,NULL),(5212,640,'A','/trunk/UAClientLib/source/UAClientLibd.def',NULL,NULL,NULL,NULL),(5213,640,'A','/trunk/UAClientLib/source/dllmain.cpp',NULL,NULL,NULL,NULL),(5214,640,'A','/trunk/UAClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(5215,641,'D','/trunk/UAClientLib/ClientApplication.h',NULL,NULL,NULL,NULL),(5216,641,'D','/trunk/UAClientLib/ClientSession.h',NULL,NULL,NULL,NULL),(5217,641,'D','/trunk/UAClientLib/LoggerMessage.h',NULL,NULL,NULL,NULL),(5218,641,'D','/trunk/UAClientLib/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(5219,641,'D','/trunk/UAClientLib/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(5220,641,'D','/trunk/UAClientLib/SubscriptionClient.h',NULL,NULL,NULL,NULL),(5221,641,'D','/trunk/UAClientLib/UABuiltInType.h',NULL,NULL,NULL,NULL),(5222,641,'D','/trunk/UAClientLib/stdafx.h',NULL,NULL,NULL,NULL),(5223,641,'D','/trunk/UAClientLib/targetver.h',NULL,NULL,NULL,NULL),(5224,642,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5225,642,'M','/trunk/UAStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(5226,642,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(5227,642,'M','/trunk/UAStackV1/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(5228,642,'M','/trunk/UAStackV1/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(5229,642,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(5230,642,'M','/trunk/UAStackV1/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(5231,642,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(5232,642,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(5233,642,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(5234,642,'M','/trunk/UAStackV1/source/opcua_types.c',NULL,NULL,NULL,NULL),(5235,643,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5236,644,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5237,644,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(5238,645,'M','/trunk/UAStackV1/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(5239,645,'M','/trunk/UAStackV1/include/shared/opcua_clientapi.h',NULL,NULL,NULL,NULL),(5240,645,'M','/trunk/UAStackV1/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(5241,645,'M','/trunk/UAStackV1/include/shared/opcua_guid.h',NULL,NULL,NULL,NULL),(5242,645,'M','/trunk/UAStackV1/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(5243,645,'M','/trunk/UAStackV1/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(5244,645,'M','/trunk/UAStackV1/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(5245,645,'M','/trunk/UAStackV1/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(5246,645,'M','/trunk/UAStackV1/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(5247,645,'M','/trunk/UAStackV1/source/opcua_guid.c',NULL,NULL,NULL,NULL),(5248,646,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(5249,646,'M','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(5250,646,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5251,646,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(5252,646,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(5253,646,'M','/trunk/include/UAObject.h',NULL,NULL,NULL,NULL),(5254,646,'A','/trunk/include/UAReference.h',NULL,NULL,NULL,NULL),(5255,646,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5256,646,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(5257,646,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5258,646,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5259,646,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(5260,646,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5261,646,'A','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(5262,646,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(5263,646,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(5264,647,'M','/trunk/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(5265,647,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(5266,647,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(5267,647,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5268,647,'M','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(5269,648,'R','/trunk/UAStackV1/UAStackV1.rc',NULL,NULL,NULL,NULL),(5270,648,'R','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5271,649,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5272,649,'A','/trunk/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(5273,650,'M','/trunk/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(5274,650,'M','/trunk/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(5275,651,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5276,651,'A','/trunk/include/SessionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(5277,651,'M','/trunk/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(5278,651,'A','/trunk/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(5279,652,'M','/trunk/include/SessionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(5280,652,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5281,652,'M','/trunk/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(5282,652,'M','/trunk/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(5283,653,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(5284,653,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(5285,653,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5286,654,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5287,654,'M','/trunk/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(5288,654,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(5289,654,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5290,654,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5291,654,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5292,655,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5293,656,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(5294,656,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(5295,656,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5296,656,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(5297,656,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(5298,656,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5299,657,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(5300,657,'M','/trunk/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(5301,657,'M','/trunk/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(5302,657,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5303,657,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(5304,657,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5305,657,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5306,658,'M','/trunk/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(5307,658,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5308,659,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(5309,660,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5310,660,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(5311,660,'M','/trunk/UAStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(5312,660,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(5313,660,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(5314,660,'M','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(5315,661,'M','/trunk/UAStackV1/UAStackV1.rc',NULL,NULL,NULL,NULL),(5316,661,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5317,661,'A','/trunk/UAStackV1/resource.h',NULL,NULL,NULL,NULL),(5318,662,'M','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(5319,663,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5320,663,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(5321,663,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(5322,663,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(5323,663,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5324,663,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(5325,663,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5326,663,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(5327,663,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(5328,663,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(5329,663,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5330,663,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5331,664,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5332,664,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(5333,664,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(5334,664,'A','/trunk/include/UserTokenPolicy.h',NULL,NULL,NULL,NULL),(5335,664,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5336,664,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5337,664,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(5338,665,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(5339,665,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(5340,665,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(5341,665,'M','/trunk/include/UserTokenPolicy.h',NULL,NULL,NULL,NULL),(5342,665,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5343,665,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(5344,665,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(5345,665,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5346,666,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5347,666,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(5348,666,'M','/trunk/include/ServerStatus.h',NULL,NULL,NULL,NULL),(5349,666,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(5350,666,'M','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(5351,666,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5352,666,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5353,666,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(5354,666,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5355,666,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(5356,666,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(5357,666,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(5358,666,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5359,666,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5360,667,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(5361,667,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5362,667,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(5363,667,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(5364,667,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5365,667,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5366,667,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5367,667,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5368,667,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(5369,667,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5370,667,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5371,668,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(5372,668,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(5373,668,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5374,668,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5375,668,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5376,668,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5377,669,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5378,669,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(5379,669,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5380,670,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(5381,670,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5382,670,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(5383,670,'M','/trunk/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(5384,670,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(5385,670,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(5386,670,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(5387,670,'M','/trunk/include/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(5388,670,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(5389,670,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5390,670,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(5391,670,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(5392,670,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5393,670,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(5394,670,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(5395,670,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5396,670,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5397,670,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(5398,670,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5399,670,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(5400,670,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5401,670,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(5402,670,'M','/trunk/source/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(5403,670,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(5404,670,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(5405,671,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5406,671,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(5407,672,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5408,672,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5409,673,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(5410,673,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(5411,673,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5412,673,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(5413,673,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(5414,673,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(5415,673,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5416,673,'A','/trunk/resource.h',NULL,NULL,NULL,NULL),(5417,673,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5418,673,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5419,673,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5420,673,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(5421,673,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5422,673,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5423,673,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(5424,674,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5425,675,'M','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(5426,675,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5427,676,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(5428,676,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(5429,676,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(5430,676,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5431,676,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5432,676,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(5433,676,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5434,676,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(5435,676,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5436,676,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5437,677,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(5438,678,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(5439,678,'M','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(5440,678,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(5441,678,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(5442,678,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(5443,678,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5444,678,'M','/trunk/source/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(5445,678,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5446,678,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5447,678,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5448,678,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(5449,678,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5450,678,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(5451,678,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(5452,678,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5453,678,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(5454,679,'A','/trunk/Doc',NULL,NULL,NULL,NULL),(5455,679,'A','/trunk/Doc/Expat .docx',NULL,NULL,NULL,NULL),(5456,679,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(5457,679,'M','/trunk/XmlShared/xmlConfig.h',NULL,NULL,NULL,NULL),(5458,679,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(5459,679,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(5460,680,'M','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(5461,680,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(5462,680,'M','/trunk/XmlShared/xmlrole.c',NULL,NULL,NULL,NULL),(5463,680,'M','/trunk/XmlShared/xmltok.c',NULL,NULL,NULL,NULL),(5464,680,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(5465,681,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(5466,682,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(5467,683,'A','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(5468,683,'A','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.h',NULL,NULL,NULL,NULL),(5469,683,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(5470,683,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.h',NULL,NULL,NULL,NULL),(5471,683,'A','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(5472,683,'A','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.h',NULL,NULL,NULL,NULL),(5473,683,'A','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(5474,683,'A','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.h',NULL,NULL,NULL,NULL),(5475,683,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(5476,683,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(5477,683,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(5478,683,'M','/VPIMdbMaster/VPIMdbMaster/VpiInternal.cpp',NULL,NULL,NULL,NULL),(5479,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiMessage.cpp',NULL,NULL,NULL,NULL),(5480,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiMessage.h',NULL,NULL,NULL,NULL),(5481,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiRequest.cpp',NULL,NULL,NULL,NULL),(5482,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiRequest.h',NULL,NULL,NULL,NULL),(5483,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiResponse.cpp',NULL,NULL,NULL,NULL),(5484,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiResponse.h',NULL,NULL,NULL,NULL),(5485,684,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(5486,684,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.h',NULL,NULL,NULL,NULL),(5487,684,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(5488,684,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.h',NULL,NULL,NULL,NULL),(5489,684,'M','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(5490,684,'M','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.h',NULL,NULL,NULL,NULL),(5491,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRtuMessage.cpp',NULL,NULL,NULL,NULL),(5492,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRtuMessage.h',NULL,NULL,NULL,NULL),(5493,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRtuRequest.cpp',NULL,NULL,NULL,NULL),(5494,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRtuRequest.h',NULL,NULL,NULL,NULL),(5495,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRtuResponse.cpp',NULL,NULL,NULL,NULL),(5496,684,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRtuResponse.h',NULL,NULL,NULL,NULL),(5497,684,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(5498,684,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.h',NULL,NULL,NULL,NULL),(5499,684,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(5500,685,'A','/VPIMdbMaster/Config',NULL,NULL,NULL,NULL),(5501,685,'A','/VPIMdbMaster/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(5502,685,'A','/VPIMdbMaster/Config/Labo-Modbus.xml',NULL,NULL,NULL,NULL),(5503,685,'A','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(5504,685,'A','/VPIMdbMaster/Config/PlcModbus001.xml',NULL,NULL,NULL,NULL),(5505,685,'A','/VPIMdbMaster/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(5506,685,'A','/VPIMdbMaster/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(5507,685,'A','/VPIMdbMaster/Config/VpiMdbMaster00200.dat',NULL,NULL,NULL,NULL),(5508,685,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(5509,685,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRtuMessage.cpp',NULL,NULL,NULL,NULL),(5510,685,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRtuRequest.cpp',NULL,NULL,NULL,NULL),(5511,685,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(5512,685,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.h',NULL,NULL,NULL,NULL),(5513,685,'M','/VPIMdbMaster/VPIMdbMaster/SourceObject.cpp',NULL,NULL,NULL,NULL),(5514,685,'M','/VPIMdbMaster/VPIMdbMaster/SourceObject.h',NULL,NULL,NULL,NULL),(5515,685,'D','/VPIMdbMaster/VPIMdbMaster/TrameBinaireGenerator.cpp',NULL,NULL,NULL,NULL),(5516,685,'D','/VPIMdbMaster/VPIMdbMaster/TrameBinaireGenerator.h',NULL,NULL,NULL,NULL),(5517,685,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(5518,685,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(5519,685,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(5520,685,'M','/VPIMdbMaster/VPIMdbMaster/stdafx.h',NULL,NULL,NULL,NULL),(5521,686,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(5522,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiMessage.cpp',NULL,NULL,NULL,NULL),(5523,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiMessage.h',NULL,NULL,NULL,NULL),(5524,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiRequest.cpp',NULL,NULL,NULL,NULL),(5525,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiRequest.h',NULL,NULL,NULL,NULL),(5526,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiResponse.cpp',NULL,NULL,NULL,NULL),(5527,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusAsciiResponse.h',NULL,NULL,NULL,NULL),(5528,686,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(5529,686,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.h',NULL,NULL,NULL,NULL),(5530,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusRtuMessage.cpp',NULL,NULL,NULL,NULL),(5531,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusRtuMessage.h',NULL,NULL,NULL,NULL),(5532,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusRtuRequest.cpp',NULL,NULL,NULL,NULL),(5533,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusRtuRequest.h',NULL,NULL,NULL,NULL),(5534,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusRtuResponse.cpp',NULL,NULL,NULL,NULL),(5535,686,'D','/VPIMdbMaster/VPIMdbMaster/ModbusRtuResponse.h',NULL,NULL,NULL,NULL),(5536,686,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(5537,686,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.h',NULL,NULL,NULL,NULL),(5538,686,'M','/VPIMdbMaster/VPIMdbMaster/SourceObject.cpp',NULL,NULL,NULL,NULL),(5539,686,'M','/VPIMdbMaster/VPIMdbMaster/SourceObject.h',NULL,NULL,NULL,NULL),(5540,686,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(5541,686,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(5542,687,'M','/VPIMdbMaster/Config/PlcModbus001.xml',NULL,NULL,NULL,NULL),(5543,687,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(5544,687,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(5545,687,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.h',NULL,NULL,NULL,NULL),(5546,687,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(5547,687,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.h',NULL,NULL,NULL,NULL),(5548,687,'M','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(5549,687,'M','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.h',NULL,NULL,NULL,NULL),(5550,687,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(5551,687,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.h',NULL,NULL,NULL,NULL),(5552,687,'M','/VPIMdbMaster/VPIMdbMaster/RtSocket.cpp',NULL,NULL,NULL,NULL),(5553,687,'M','/VPIMdbMaster/VPIMdbMaster/SourceObject.cpp',NULL,NULL,NULL,NULL),(5554,687,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(5555,687,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(5556,688,'M','/VPIMdbMaster/Config/Labo-Modbus.xml',NULL,NULL,NULL,NULL),(5557,688,'M','/VPIMdbMaster/Config/PlcModbus001.xml',NULL,NULL,NULL,NULL),(5558,688,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(5559,689,'A','/VPIMdbMaster/Doc',NULL,NULL,NULL,NULL),(5560,689,'A','/VPIMdbMaster/Doc/Analyse VpiMdbMaster.docx',NULL,NULL,NULL,NULL),(5561,689,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(5562,689,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(5563,689,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.h',NULL,NULL,NULL,NULL),(5564,689,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(5565,689,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.h',NULL,NULL,NULL,NULL),(5566,689,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.h',NULL,NULL,NULL,NULL),(5567,689,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(5568,689,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(5569,689,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(5570,690,'M','/VPIMdbMaster/Doc/Analyse VpiMdbMaster.docx',NULL,NULL,NULL,NULL),(5571,690,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(5572,691,'A','/VPIMdbMaster/Doc/Analyse des trames modbus.xls',NULL,NULL,NULL,NULL),(5573,691,'A','/VPIMdbMaster/Doc/ModbusApplicationProtocol_v1_1.pdf',NULL,NULL,NULL,NULL),(5574,691,'A','/VPIMdbMaster/Doc/Modbus_messaging_on_TCPIP_implementation_guide_V11.pdf',NULL,NULL,NULL,NULL),(5575,691,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(5576,692,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(5577,693,'M','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(5578,693,'M','/VPIMdbMaster/Config/VpiMdbMaster00200.dat',NULL,NULL,NULL,NULL),(5579,693,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(5580,693,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(5581,693,'M','/VPIMdbMaster/VPIMdbMaster/SourceObject.cpp',NULL,NULL,NULL,NULL),(5582,693,'M','/VPIMdbMaster/VPIMdbMaster/SourceObject.h',NULL,NULL,NULL,NULL),(5583,693,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(5584,693,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(5585,693,'D','/VPIMdbMaster/VPIMdbMaster/VpiDataTypes.h',NULL,NULL,NULL,NULL),(5586,694,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(5587,695,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(5588,696,'M','/VPIMdbMaster/VPIMdbMaster/RtSocket.h',NULL,NULL,NULL,NULL),(5589,697,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5590,698,'M','/trunk/UAClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(5591,698,'M','/trunk/UAClientLibTester/UAClientLibTester.h',NULL,NULL,NULL,NULL),(5592,699,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5593,699,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5594,700,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5595,700,'M','/trunk/UAClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(5596,700,'M','/trunk/UAClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(5597,700,'M','/trunk/UAClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(5598,700,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(5599,700,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5600,700,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(5601,700,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5602,701,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5603,701,'M','/trunk/UAClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(5604,701,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(5605,701,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(5606,701,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5607,701,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(5608,701,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(5609,701,'M','/trunk/UAClientLibTester/stdafx.h',NULL,NULL,NULL,NULL),(5610,702,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5611,702,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(5612,702,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5613,702,'M','/trunk/UAClientLibTester/SubscriptionParamDlg.cpp',NULL,NULL,NULL,NULL),(5614,702,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(5615,702,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5616,703,'D','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(5617,704,'A','/trunk/UAClientLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(5618,705,'M','/trunk/UAClientLib.sln',NULL,NULL,NULL,NULL),(5619,705,'A','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(5620,705,'M','/trunk/UAClientLib/UAClientLib.vcproj',NULL,NULL,NULL,NULL),(5621,705,'M','/trunk/UAClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(5622,705,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5623,705,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(5624,706,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(5625,707,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(5626,707,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5627,708,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(5628,708,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5629,708,'M','/trunk/UAClientLib/source/UAClientLib.def',NULL,NULL,NULL,NULL),(5630,708,'M','/trunk/UAClientLib/source/UAClientLibd.def',NULL,NULL,NULL,NULL),(5631,708,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(5632,708,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5633,709,'M','/trunk/UAClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(5634,709,'M','/trunk/UAClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(5635,709,'M','/trunk/UAClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(5636,709,'M','/trunk/UAClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(5637,709,'M','/trunk/UAClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(5638,709,'M','/trunk/UAClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(5639,709,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(5640,709,'M','/trunk/UAClientLib/source/LoggerMessage.cpp',NULL,NULL,NULL,NULL),(5641,709,'M','/trunk/UAClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(5642,709,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5643,709,'M','/trunk/UAClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(5644,709,'M','/trunk/UAClientLib/source/dllmain.cpp',NULL,NULL,NULL,NULL),(5645,709,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(5646,709,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5647,709,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(5648,709,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(5649,710,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5650,710,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(5651,710,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(5652,710,'M','/trunk/UAClientLibTester/stdafx.h',NULL,NULL,NULL,NULL),(5653,711,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(5654,711,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(5655,712,'M','/trunk/UAClientLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(5656,713,'M','/trunk/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(5657,713,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5658,713,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(5659,713,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(5660,713,'M','/trunk/UAStackV1/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(5661,713,'M','/trunk/UAStackV1/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(5662,713,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(5663,713,'M','/trunk/UAStackV1/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(5664,713,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(5665,713,'M','/trunk/UAStackV1/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(5666,713,'M','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(5667,713,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(5668,714,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(5669,714,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(5670,714,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(5671,714,'M','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(5672,714,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5673,714,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5674,714,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(5675,714,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5676,714,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(5677,714,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5678,714,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5679,715,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(5680,715,'D','/trunk/Config/Schema/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(5681,715,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(5682,715,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(5683,715,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5684,715,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(5685,715,'M','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(5686,715,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(5687,715,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(5688,715,'M','/trunk/include/UAObject.h',NULL,NULL,NULL,NULL),(5689,715,'M','/trunk/include/UAReference.h',NULL,NULL,NULL,NULL),(5690,715,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(5691,715,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5692,715,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(5693,715,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(5694,715,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5695,715,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5696,715,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(5697,715,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(5698,715,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(5699,715,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(5700,715,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(5701,715,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(5702,715,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5703,715,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(5704,715,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(5705,715,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(5706,716,'M','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(5707,716,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(5708,716,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5709,716,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(5710,716,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5711,716,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(5712,716,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(5713,716,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5714,716,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5715,716,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5716,716,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(5717,717,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(5718,717,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(5719,717,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(5720,717,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5721,717,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5722,718,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5723,718,'M','/trunk/UAStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(5724,718,'M','/trunk/UAStackV1/include/shared/opcua_mutex.h',NULL,NULL,NULL,NULL),(5725,718,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(5726,718,'M','/trunk/UAStackV1/include/shared/opcua_p_mutex.h',NULL,NULL,NULL,NULL),(5727,718,'M','/trunk/UAStackV1/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(5728,718,'M','/trunk/UAStackV1/include/shared/opcua_p_trace.h',NULL,NULL,NULL,NULL),(5729,718,'M','/trunk/UAStackV1/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(5730,718,'M','/trunk/UAStackV1/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(5731,718,'M','/trunk/UAStackV1/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(5732,718,'M','/trunk/UAStackV1/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(5733,718,'M','/trunk/UAStackV1/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(5734,718,'M','/trunk/UAStackV1/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(5735,718,'M','/trunk/UAStackV1/source/opcua_channel.c',NULL,NULL,NULL,NULL),(5736,718,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(5737,718,'M','/trunk/UAStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(5738,718,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(5739,718,'M','/trunk/UAStackV1/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(5740,718,'M','/trunk/UAStackV1/source/opcua_httpconnection.c',NULL,NULL,NULL,NULL),(5741,718,'M','/trunk/UAStackV1/source/opcua_httplistener.c',NULL,NULL,NULL,NULL),(5742,718,'M','/trunk/UAStackV1/source/opcua_httplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(5743,718,'M','/trunk/UAStackV1/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(5744,718,'M','/trunk/UAStackV1/source/opcua_list.c',NULL,NULL,NULL,NULL),(5745,718,'M','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(5746,718,'M','/trunk/UAStackV1/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(5747,718,'M','/trunk/UAStackV1/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(5748,718,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(5749,718,'M','/trunk/UAStackV1/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(5750,718,'M','/trunk/UAStackV1/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(5751,718,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(5752,718,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(5753,718,'M','/trunk/UAStackV1/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(5754,718,'M','/trunk/UAStackV1/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(5755,718,'M','/trunk/UAStackV1/source/opcua_p_trace.c',NULL,NULL,NULL,NULL),(5756,718,'M','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(5757,718,'M','/trunk/UAStackV1/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(5758,718,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(5759,718,'M','/trunk/UAStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(5760,718,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(5761,718,'M','/trunk/UAStackV1/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(5762,718,'M','/trunk/UAStackV1/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(5763,718,'M','/trunk/UAStackV1/source/opcua_thread.c',NULL,NULL,NULL,NULL),(5764,718,'M','/trunk/UAStackV1/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(5765,718,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(5766,718,'M','/trunk/UAStackV1/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(5767,718,'M','/trunk/UAStackV1/source/opcua_xmlencoder.c',NULL,NULL,NULL,NULL),(5768,719,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5769,719,'D','/trunk/UAStackV1/source/opcua_p_trace.c',NULL,NULL,NULL,NULL),(5770,720,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5771,720,'D','/trunk/UAStackV1/include/shared/opcua_p_trace.h',NULL,NULL,NULL,NULL),(5772,721,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5773,721,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(5774,721,'D','/trunk/UAStackV1/include/shared/opcua_p_mutex.h',NULL,NULL,NULL,NULL),(5775,721,'M','/trunk/UAStackV1/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(5776,721,'M','/trunk/UAStackV1/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(5777,721,'M','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(5778,721,'D','/trunk/UAStackV1/source/opcua_p_mutex.c',NULL,NULL,NULL,NULL),(5779,721,'M','/trunk/UAStackV1/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(5780,721,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(5781,722,'M','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(5782,722,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(5783,722,'M','/trunk/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(5784,722,'M','/trunk/UAStackV1/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(5785,723,'M','/trunk/UAStackV1/Doc/UA Stack API.docx',NULL,NULL,NULL,NULL),(5786,723,'M','/trunk/UAStackV1/UAStackV1.rc',NULL,NULL,NULL,NULL),(5787,723,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5788,723,'M','/trunk/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(5789,723,'M','/trunk/UAStackV1/include/shared/opcua_p_string.h',NULL,NULL,NULL,NULL),(5790,723,'M','/trunk/UAStackV1/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(5791,723,'M','/trunk/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(5792,723,'M','/trunk/UAStackV1/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(5793,723,'M','/trunk/UAStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(5794,723,'M','/trunk/UAStackV1/source/opcua_httplistener.c',NULL,NULL,NULL,NULL),(5795,723,'M','/trunk/UAStackV1/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(5796,723,'M','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(5797,723,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(5798,723,'M','/trunk/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(5799,723,'M','/trunk/UAStackV1/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(5800,723,'M','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(5801,723,'M','/trunk/UAStackV1/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(5802,723,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(5803,723,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(5804,723,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(5805,724,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(5806,724,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(5807,724,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5808,724,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5809,725,'M','/trunk/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(5810,725,'M','/trunk/UAStackV1/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(5811,725,'M','/trunk/UAStackV1/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(5812,725,'M','/trunk/UAStackV1/source/opcua_base64.c',NULL,NULL,NULL,NULL),(5813,725,'M','/trunk/UAStackV1/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(5814,725,'M','/trunk/UAStackV1/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(5815,725,'M','/trunk/UAStackV1/source/opcua_buffer.c',NULL,NULL,NULL,NULL),(5816,725,'M','/trunk/UAStackV1/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(5817,725,'M','/trunk/UAStackV1/source/opcua_channel.c',NULL,NULL,NULL,NULL),(5818,725,'M','/trunk/UAStackV1/source/opcua_connection.c',NULL,NULL,NULL,NULL),(5819,725,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(5820,725,'M','/trunk/UAStackV1/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(5821,725,'M','/trunk/UAStackV1/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(5822,725,'M','/trunk/UAStackV1/source/opcua_decoder.c',NULL,NULL,NULL,NULL),(5823,725,'M','/trunk/UAStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(5824,725,'M','/trunk/UAStackV1/source/opcua_encoder.c',NULL,NULL,NULL,NULL),(5825,725,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(5826,725,'M','/trunk/UAStackV1/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(5827,725,'M','/trunk/UAStackV1/source/opcua_enumeratedtype.c',NULL,NULL,NULL,NULL),(5828,725,'M','/trunk/UAStackV1/source/opcua_extensionobject.c',NULL,NULL,NULL,NULL),(5829,725,'M','/trunk/UAStackV1/source/opcua_guid.c',NULL,NULL,NULL,NULL),(5830,725,'M','/trunk/UAStackV1/source/opcua_http_internal.c',NULL,NULL,NULL,NULL),(5831,725,'M','/trunk/UAStackV1/source/opcua_httpconnection.c',NULL,NULL,NULL,NULL),(5832,725,'M','/trunk/UAStackV1/source/opcua_httpconnection_securityproxy.c',NULL,NULL,NULL,NULL),(5833,725,'M','/trunk/UAStackV1/source/opcua_httplistener.c',NULL,NULL,NULL,NULL),(5834,725,'M','/trunk/UAStackV1/source/opcua_httplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(5835,725,'M','/trunk/UAStackV1/source/opcua_httplistener_securitystub.c',NULL,NULL,NULL,NULL),(5836,725,'M','/trunk/UAStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(5837,725,'M','/trunk/UAStackV1/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(5838,725,'M','/trunk/UAStackV1/source/opcua_httpstream.c',NULL,NULL,NULL,NULL),(5839,725,'M','/trunk/UAStackV1/source/opcua_list.c',NULL,NULL,NULL,NULL),(5840,725,'M','/trunk/UAStackV1/source/opcua_listener.c',NULL,NULL,NULL,NULL),(5841,725,'M','/trunk/UAStackV1/source/opcua_memory.c',NULL,NULL,NULL,NULL),(5842,725,'M','/trunk/UAStackV1/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(5843,725,'M','/trunk/UAStackV1/source/opcua_messagecontext.c',NULL,NULL,NULL,NULL),(5844,725,'M','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(5845,725,'M','/trunk/UAStackV1/source/opcua_p_libxml2.c',NULL,NULL,NULL,NULL),(5846,725,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(5847,725,'M','/trunk/UAStackV1/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(5848,725,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(5849,725,'M','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(5850,725,'M','/trunk/UAStackV1/source/opcua_securechannel.c',NULL,NULL,NULL,NULL),(5851,725,'M','/trunk/UAStackV1/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(5852,725,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(5853,725,'M','/trunk/UAStackV1/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(5854,725,'M','/trunk/UAStackV1/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(5855,725,'M','/trunk/UAStackV1/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(5856,725,'M','/trunk/UAStackV1/source/opcua_servicetable.c',NULL,NULL,NULL,NULL),(5857,725,'M','/trunk/UAStackV1/source/opcua_stream.c',NULL,NULL,NULL,NULL),(5858,725,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(5859,725,'M','/trunk/UAStackV1/source/opcua_stringtable.c',NULL,NULL,NULL,NULL),(5860,725,'M','/trunk/UAStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(5861,725,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(5862,725,'M','/trunk/UAStackV1/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(5863,725,'M','/trunk/UAStackV1/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(5864,725,'M','/trunk/UAStackV1/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(5865,725,'M','/trunk/UAStackV1/source/opcua_thread.c',NULL,NULL,NULL,NULL),(5866,725,'M','/trunk/UAStackV1/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(5867,725,'M','/trunk/UAStackV1/source/opcua_timer.c',NULL,NULL,NULL,NULL),(5868,725,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(5869,725,'M','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(5870,725,'M','/trunk/UAStackV1/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(5871,725,'M','/trunk/UAStackV1/source/opcua_xmlencoder.c',NULL,NULL,NULL,NULL),(5872,725,'M','/trunk/UAStackV1/source/opcua_xmlreader.c',NULL,NULL,NULL,NULL),(5873,725,'M','/trunk/UAStackV1/source/opcua_xmlwriter.c',NULL,NULL,NULL,NULL),(5874,726,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5875,726,'M','/trunk/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(5876,726,'M','/trunk/UAStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(5877,726,'M','/trunk/UAStackV1/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(5878,726,'M','/trunk/UAStackV1/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(5879,726,'A','/trunk/UAStackV1/include/shared/opcua_https_internal.h',NULL,NULL,NULL,NULL),(5880,726,'A','/trunk/UAStackV1/include/shared/opcua_httpsstream.h',NULL,NULL,NULL,NULL),(5881,726,'M','/trunk/UAStackV1/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(5882,726,'M','/trunk/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(5883,726,'M','/trunk/UAStackV1/include/shared/opcua_stackstatuscodes.h',NULL,NULL,NULL,NULL),(5884,726,'M','/trunk/UAStackV1/include/shared/opcua_tcpconnection.h',NULL,NULL,NULL,NULL),(5885,726,'M','/trunk/UAStackV1/include/shared/opcua_tcplistener.h',NULL,NULL,NULL,NULL),(5886,726,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(5887,726,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(5888,726,'M','/trunk/UAStackV1/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(5889,726,'M','/trunk/UAStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(5890,726,'A','/trunk/UAStackV1/source/opcua_https_internal.c',NULL,NULL,NULL,NULL),(5891,726,'A','/trunk/UAStackV1/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(5892,726,'M','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(5893,726,'M','/trunk/UAStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(5894,726,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(5895,726,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(5896,727,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(5897,727,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(5898,727,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(5899,728,'M','/trunk/include/Alias.h',NULL,NULL,NULL,NULL),(5900,728,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(5901,728,'M','/trunk/include/UADataType.h',NULL,NULL,NULL,NULL),(5902,728,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(5903,728,'M','/trunk/include/UAReference.h',NULL,NULL,NULL,NULL),(5904,728,'M','/trunk/source/Alias.cpp',NULL,NULL,NULL,NULL),(5905,728,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(5906,728,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(5907,728,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(5908,728,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(5909,728,'M','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(5910,728,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(5911,728,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(5912,728,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(5913,729,'M','/include/VPIOperatingSystem.h',NULL,NULL,NULL,NULL),(5914,729,'M','/source/dllmain.cpp',NULL,NULL,NULL,NULL),(5915,730,'D','/Demo/StartServer.bat',NULL,NULL,NULL,NULL),(5916,731,'A','/Demo/StartServerDebug.bat',NULL,NULL,NULL,NULL),(5917,731,'A','/Demo/StartServerRelease.bat',NULL,NULL,NULL,NULL),(5918,731,'M','/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(5919,731,'M','/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(5920,731,'M','/include/stdafx.h',NULL,NULL,NULL,NULL),(5921,732,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(5922,732,'M','/trunk/UAStackV1/include/shared/opcua_channel.h',NULL,NULL,NULL,NULL),(5923,732,'M','/trunk/UAStackV1/include/shared/opcua_channel_internal.h',NULL,NULL,NULL,NULL),(5924,732,'M','/trunk/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(5925,732,'M','/trunk/UAStackV1/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(5926,732,'M','/trunk/UAStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(5927,732,'M','/trunk/UAStackV1/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(5928,732,'M','/trunk/UAStackV1/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(5929,732,'A','/trunk/UAStackV1/include/shared/opcua_https_listener.h',NULL,NULL,NULL,NULL),(5930,732,'A','/trunk/UAStackV1/include/shared/opcua_https_listener_connectionmanager.h',NULL,NULL,NULL,NULL),(5931,732,'M','/trunk/UAStackV1/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(5932,732,'M','/trunk/UAStackV1/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(5933,732,'M','/trunk/UAStackV1/include/shared/opcua_memorystream.h',NULL,NULL,NULL,NULL),(5934,732,'M','/trunk/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(5935,732,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(5936,732,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(5937,732,'M','/trunk/UAStackV1/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(5938,732,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(5939,732,'M','/trunk/UAStackV1/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(5940,732,'M','/trunk/UAStackV1/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(5941,732,'M','/trunk/UAStackV1/include/shared/opcua_secureconnection.h',NULL,NULL,NULL,NULL),(5942,732,'M','/trunk/UAStackV1/include/shared/opcua_securelistener.h',NULL,NULL,NULL,NULL),(5943,732,'M','/trunk/UAStackV1/include/shared/opcua_securestream.h',NULL,NULL,NULL,NULL),(5944,732,'M','/trunk/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(5945,732,'M','/trunk/UAStackV1/include/shared/opcua_stringtable.h',NULL,NULL,NULL,NULL),(5946,732,'M','/trunk/UAStackV1/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(5947,732,'M','/trunk/UAStackV1/include/shared/opcua_tcpstream.h',NULL,NULL,NULL,NULL),(5948,732,'M','/trunk/UAStackV1/source/opcua_channel.c',NULL,NULL,NULL,NULL),(5949,732,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(5950,732,'M','/trunk/UAStackV1/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(5951,732,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(5952,732,'M','/trunk/UAStackV1/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(5953,732,'M','/trunk/UAStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(5954,732,'M','/trunk/UAStackV1/source/opcua_https_internal.c',NULL,NULL,NULL,NULL),(5955,732,'A','/trunk/UAStackV1/source/opcua_https_listener.c',NULL,NULL,NULL,NULL),(5956,732,'A','/trunk/UAStackV1/source/opcua_https_listener_connectionmanager.c',NULL,NULL,NULL,NULL),(5957,732,'M','/trunk/UAStackV1/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(5958,732,'M','/trunk/UAStackV1/source/opcua_listener.c',NULL,NULL,NULL,NULL),(5959,732,'M','/trunk/UAStackV1/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(5960,732,'M','/trunk/UAStackV1/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(5961,732,'M','/trunk/UAStackV1/source/opcua_p_libxml2.c',NULL,NULL,NULL,NULL),(5962,732,'M','/trunk/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(5963,732,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(5964,732,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(5965,732,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(5966,732,'M','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(5967,732,'M','/trunk/UAStackV1/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(5968,732,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(5969,732,'M','/trunk/UAStackV1/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(5970,732,'M','/trunk/UAStackV1/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(5971,732,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(5972,732,'M','/trunk/UAStackV1/source/opcua_stringtable.c',NULL,NULL,NULL,NULL),(5973,732,'M','/trunk/UAStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(5974,732,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(5975,732,'M','/trunk/UAStackV1/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(5976,732,'M','/trunk/UAStackV1/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(5977,732,'M','/trunk/UAStackV1/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(5978,732,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(5979,733,'M','/trunk/UAStackV1/UAStackV1.rc',NULL,NULL,NULL,NULL),(5980,734,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(5981,734,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5982,734,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(5983,734,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(5984,734,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(5985,734,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(5986,735,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(5987,735,'A','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(5988,735,'A','/trunk/resource.h',NULL,NULL,NULL,NULL),(5989,736,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(5990,737,'M','/trunk/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(5991,738,'M','/trunk/XmlShared/xmlCanon.h',NULL,NULL,NULL,NULL),(5992,738,'M','/trunk/XmlShared/xmlConfig.h',NULL,NULL,NULL,NULL),(5993,738,'M','/trunk/XmlShared/xmlLib.h',NULL,NULL,NULL,NULL),(5994,738,'M','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(5995,738,'M','/trunk/XmlShared/xmlop.h',NULL,NULL,NULL,NULL),(5996,738,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(5997,738,'M','/trunk/XmlShared/xmlrole.c',NULL,NULL,NULL,NULL),(5998,738,'M','/trunk/XmlShared/xmltchar.h',NULL,NULL,NULL,NULL),(5999,738,'M','/trunk/XmlShared/xmltok.c',NULL,NULL,NULL,NULL),(6000,738,'M','/trunk/XmlShared/xmltok_impl.c',NULL,NULL,NULL,NULL),(6001,738,'M','/trunk/XmlShared/xmltok_ns.c',NULL,NULL,NULL,NULL),(6002,738,'M','/trunk/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(6003,738,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(6004,738,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(6005,738,'M','/trunk/source/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(6006,738,'M','/trunk/source/stdafx.cpp',NULL,NULL,NULL,NULL),(6007,739,'M','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(6008,739,'M','/trunk/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(6009,739,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(6010,739,'M','/trunk/source/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(6011,740,'A','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(6012,740,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(6013,740,'A','/trunk/resource.h',NULL,NULL,NULL,NULL),(6014,741,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(6015,741,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(6016,741,'M','/trunk/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(6017,741,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(6018,741,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(6019,741,'M','/trunk/source/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(6020,741,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(6021,741,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(6022,741,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(6023,741,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(6024,741,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(6025,741,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(6026,742,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(6027,742,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(6028,742,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(6029,742,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(6030,742,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(6031,742,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(6032,742,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(6033,743,'M','/trunk/UAStackV1/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(6034,743,'M','/trunk/UAStackV1/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(6035,743,'M','/trunk/UAStackV1/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(6036,743,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(6037,743,'M','/trunk/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(6038,743,'M','/trunk/UAStackV1/source/opcua_base64.c',NULL,NULL,NULL,NULL),(6039,743,'M','/trunk/UAStackV1/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(6040,743,'M','/trunk/UAStackV1/source/opcua_connection.c',NULL,NULL,NULL,NULL),(6041,743,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(6042,743,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(6043,743,'M','/trunk/UAStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(6044,743,'M','/trunk/UAStackV1/source/opcua_https_internal.c',NULL,NULL,NULL,NULL),(6045,743,'M','/trunk/UAStackV1/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(6046,743,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(6047,743,'M','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(6048,743,'M','/trunk/UAStackV1/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(6049,743,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(6050,743,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(6051,743,'M','/trunk/UAStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(6052,743,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(6053,744,'M','/trunk/UAStackV1/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(6054,744,'M','/trunk/UAStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(6055,744,'M','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(6056,745,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(6057,745,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(6058,746,'M','/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(6059,746,'M','/Config/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(6060,746,'A','/Config/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(6061,746,'A','/Config/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(6062,746,'A','/Config/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(6063,746,'D','/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(6064,746,'A','/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6065,746,'M','/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(6066,747,'A','/trunk',NULL,NULL,NULL,NULL),(6067,748,'A','/branches',NULL,NULL,NULL,NULL),(6068,749,'A','/tags',NULL,NULL,NULL,NULL),(6069,750,'A','/trunk/VpiAcqCtrl',NULL,NULL,NULL,NULL),(6070,751,'A','/trunk/VpiAcqCtrl/VpiAcqCtrl',NULL,NULL,NULL,NULL),(6071,752,'A','/trunk/VPIAcqCtrl',NULL,NULL,NULL,NULL),(6072,752,'A','/trunk/VPIAcqCtrl/Config',NULL,NULL,NULL,NULL),(6073,752,'A','/trunk/VPIAcqCtrl/Config/AcqCtrl001.xml',NULL,NULL,NULL,NULL),(6074,752,'A','/trunk/VPIAcqCtrl/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(6075,752,'A','/trunk/VPIAcqCtrl/Config/Labo-AcqCtrl.xml',NULL,NULL,NULL,NULL),(6076,752,'A','/trunk/VPIAcqCtrl/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6077,752,'A','/trunk/VPIAcqCtrl/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(6078,752,'A','/trunk/VPIAcqCtrl/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6079,752,'A','/trunk/VPIAcqCtrl/Doc',NULL,NULL,NULL,NULL),(6080,752,'A','/trunk/VPIAcqCtrl/Doc/VpiAcqCtrl.docx',NULL,NULL,NULL,NULL),(6081,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl',NULL,NULL,NULL,NULL),(6082,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl.sln',NULL,NULL,NULL,NULL),(6083,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(6084,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6085,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/SourceObject.cpp',NULL,NULL,NULL,NULL),(6086,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/SourceObject.h',NULL,NULL,NULL,NULL),(6087,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.cpp',NULL,NULL,NULL,NULL),(6088,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.def',NULL,NULL,NULL,NULL),(6089,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.h',NULL,NULL,NULL,NULL),(6090,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.rc',NULL,NULL,NULL,NULL),(6091,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcproj',NULL,NULL,NULL,NULL),(6092,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6093,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/VpiInternal.h',NULL,NULL,NULL,NULL),(6094,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/dllmain.cpp',NULL,NULL,NULL,NULL),(6095,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/resource.h',NULL,NULL,NULL,NULL),(6096,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/stdafx.cpp',NULL,NULL,NULL,NULL),(6097,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/stdafx.h',NULL,NULL,NULL,NULL),(6098,752,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/targetver.h',NULL,NULL,NULL,NULL),(6099,753,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl.sln',NULL,NULL,NULL,NULL),(6100,754,'M','/trunk/VPIAcqCtrl/Config/Labo-AcqCtrl.xml',NULL,NULL,NULL,NULL),(6101,754,'M','/trunk/VPIAcqCtrl/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6102,754,'A','/trunk/VPIAcqCtrl/Config/Opc.Ua.Types.xsd',NULL,NULL,NULL,NULL),(6103,754,'M','/trunk/VPIAcqCtrl/Doc/VpiAcqCtrl.docx',NULL,NULL,NULL,NULL),(6104,754,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6105,754,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.cpp',NULL,NULL,NULL,NULL),(6106,754,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.h',NULL,NULL,NULL,NULL),(6107,754,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcproj',NULL,NULL,NULL,NULL),(6108,754,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6109,754,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VpiInternal.h',NULL,NULL,NULL,NULL),(6110,754,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/stdafx.h',NULL,NULL,NULL,NULL),(6111,755,'D','/trunk/VPIAcqCtrl/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(6112,755,'A','/trunk/VPIAcqCtrl/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6113,755,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcproj',NULL,NULL,NULL,NULL),(6114,756,'M','/trunk/VPIAcqCtrl/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6115,757,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/stdafx.h',NULL,NULL,NULL,NULL),(6116,758,'D','/VPIMdbMaster/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(6117,758,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(6118,758,'M','/VPIMdbMaster/VPIMdbMaster/stdafx.h',NULL,NULL,NULL,NULL),(6119,759,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6120,759,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(6121,759,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(6122,759,'M','/VPIMdbMaster/VPIMdbMaster/stdafx.h',NULL,NULL,NULL,NULL),(6123,760,'M','/VPIMdbMaster/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(6124,760,'A','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(6125,760,'A','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(6126,760,'A','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(6127,760,'A','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part8.xml',NULL,NULL,NULL,NULL),(6128,760,'M','/VPIMdbMaster/Config/PlcModbus001.xml',NULL,NULL,NULL,NULL),(6129,760,'A','/VPIMdbMaster/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6130,760,'M','/VPIMdbMaster/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6131,761,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(6132,762,'A','/VPIMdbMaster/DemoModbus',NULL,NULL,NULL,NULL),(6133,762,'A','/VPIMdbMaster/DemoModbus/Config4CE.xml',NULL,NULL,NULL,NULL),(6134,762,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(6135,763,'A','/VPIMca166',NULL,NULL,NULL,NULL),(6136,763,'A','/VPIMca166/Demo',NULL,NULL,NULL,NULL),(6137,763,'A','/VPIMca166/Demo/Config',NULL,NULL,NULL,NULL),(6138,763,'A','/VPIMca166/Demo/Config/ConfigMCA166.xml',NULL,NULL,NULL,NULL),(6139,763,'A','/VPIMca166/Demo/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(6140,763,'A','/VPIMca166/Demo/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6141,763,'A','/VPIMca166/Demo/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6142,763,'A','/VPIMca166/Demo/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6143,763,'A','/VPIMca166/Demo/Config/VPIMca16600200.dat',NULL,NULL,NULL,NULL),(6144,763,'A','/VPIMca166/Doc',NULL,NULL,NULL,NULL),(6145,763,'A','/VPIMca166/Doc/Analyse VPIMca166.docx',NULL,NULL,NULL,NULL),(6146,763,'A','/VPIMca166/Doc/MCA.xlsx',NULL,NULL,NULL,NULL),(6147,763,'A','/VPIMca166/VPIMca166',NULL,NULL,NULL,NULL),(6148,763,'A','/VPIMca166/VPIMca166/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(6149,763,'A','/VPIMca166/VPIMca166/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(6150,763,'A','/VPIMca166/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6151,763,'A','/VPIMca166/VPIMca166/MCA166Message.cpp',NULL,NULL,NULL,NULL),(6152,763,'A','/VPIMca166/VPIMca166/MCA166Message.h',NULL,NULL,NULL,NULL),(6153,763,'A','/VPIMca166/VPIMca166/MCA166Request.cpp',NULL,NULL,NULL,NULL),(6154,763,'A','/VPIMca166/VPIMca166/MCA166Request.h',NULL,NULL,NULL,NULL),(6155,763,'A','/VPIMca166/VPIMca166/MCA166Response.cpp',NULL,NULL,NULL,NULL),(6156,763,'A','/VPIMca166/VPIMca166/MCA166Response.h',NULL,NULL,NULL,NULL),(6157,763,'A','/VPIMca166/VPIMca166/MCA166Wrapper.cpp',NULL,NULL,NULL,NULL),(6158,763,'A','/VPIMca166/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(6159,763,'A','/VPIMca166/VPIMca166/RtSocket.cpp',NULL,NULL,NULL,NULL),(6160,763,'A','/VPIMca166/VPIMca166/RtSocket.h',NULL,NULL,NULL,NULL),(6161,763,'A','/VPIMca166/VPIMca166/SerialPort.cpp',NULL,NULL,NULL,NULL),(6162,763,'A','/VPIMca166/VPIMca166/SerialPort.h',NULL,NULL,NULL,NULL),(6163,763,'A','/VPIMca166/VPIMca166/SourceObject.cpp',NULL,NULL,NULL,NULL),(6164,763,'A','/VPIMca166/VPIMca166/SourceObject.h',NULL,NULL,NULL,NULL),(6165,763,'A','/VPIMca166/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(6166,763,'A','/VPIMca166/VPIMca166/VPIMca166.def',NULL,NULL,NULL,NULL),(6167,763,'A','/VPIMca166/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(6168,763,'A','/VPIMca166/VPIMca166/VPIMca166.rc',NULL,NULL,NULL,NULL),(6169,763,'A','/VPIMca166/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6170,763,'A','/VPIMca166/VPIMca166/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6171,763,'A','/VPIMca166/VPIMca166/VpiInternal.h',NULL,NULL,NULL,NULL),(6172,763,'A','/VPIMca166/VPIMca166/dllmain.cpp',NULL,NULL,NULL,NULL),(6173,763,'A','/VPIMca166/VPIMca166/resource.h',NULL,NULL,NULL,NULL),(6174,763,'A','/VPIMca166/VPIMca166/stdafx.cpp',NULL,NULL,NULL,NULL),(6175,763,'A','/VPIMca166/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(6176,763,'A','/VPIMca166/VPIMca166/targetver.h',NULL,NULL,NULL,NULL),(6177,763,'A','/VPIMca166/include',NULL,NULL,NULL,NULL),(6178,763,'A','/VPIMca166/include/MCA_COMM.H',NULL,NULL,NULL,NULL),(6179,763,'A','/VPIMca166/lib',NULL,NULL,NULL,NULL),(6180,763,'A','/VPIMca166/lib/mca32com.lib',NULL,NULL,NULL,NULL),(6181,763,'A','/VPIMdbMaster',NULL,NULL,NULL,NULL),(6182,763,'A','/VPIMdbMaster/Config',NULL,NULL,NULL,NULL),(6183,763,'A','/VPIMdbMaster/Config/Labo-Modbus.xml',NULL,NULL,NULL,NULL),(6184,763,'A','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(6185,763,'A','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(6186,763,'A','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(6187,763,'A','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part8.xml',NULL,NULL,NULL,NULL),(6188,763,'A','/VPIMdbMaster/Config/PlcModbus001.xml',NULL,NULL,NULL,NULL),(6189,763,'A','/VPIMdbMaster/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6190,763,'A','/VPIMdbMaster/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6191,763,'A','/VPIMdbMaster/Config/VpiMdbMaster00200.dat',NULL,NULL,NULL,NULL),(6192,763,'A','/VPIMdbMaster/DemoModbus',NULL,NULL,NULL,NULL),(6193,763,'A','/VPIMdbMaster/DemoModbus/Config4CE.xml',NULL,NULL,NULL,NULL),(6194,763,'A','/VPIMdbMaster/Doc',NULL,NULL,NULL,NULL),(6195,763,'A','/VPIMdbMaster/Doc/Analyse VpiMdbMaster.docx',NULL,NULL,NULL,NULL),(6196,763,'A','/VPIMdbMaster/Doc/Analyse des trames modbus.xls',NULL,NULL,NULL,NULL),(6197,763,'A','/VPIMdbMaster/Doc/ModbusApplicationProtocol_v1_1.pdf',NULL,NULL,NULL,NULL),(6198,763,'A','/VPIMdbMaster/Doc/Modbus_messaging_on_TCPIP_implementation_guide_V11.pdf',NULL,NULL,NULL,NULL),(6199,763,'A','/VPIMdbMaster/VPIMdbMaster',NULL,NULL,NULL,NULL),(6200,763,'A','/VPIMdbMaster/VPIMdbMaster/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(6201,763,'A','/VPIMdbMaster/VPIMdbMaster/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(6202,763,'A','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6203,763,'A','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(6204,763,'A','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.h',NULL,NULL,NULL,NULL),(6205,763,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(6206,763,'A','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.h',NULL,NULL,NULL,NULL),(6207,763,'A','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(6208,763,'A','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.h',NULL,NULL,NULL,NULL),(6209,763,'A','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(6210,763,'A','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.h',NULL,NULL,NULL,NULL),(6211,763,'A','/VPIMdbMaster/VPIMdbMaster/RtSocket.cpp',NULL,NULL,NULL,NULL),(6212,763,'A','/VPIMdbMaster/VPIMdbMaster/RtSocket.h',NULL,NULL,NULL,NULL),(6213,763,'A','/VPIMdbMaster/VPIMdbMaster/SourceObject.cpp',NULL,NULL,NULL,NULL),(6214,763,'A','/VPIMdbMaster/VPIMdbMaster/SourceObject.h',NULL,NULL,NULL,NULL),(6215,763,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(6216,763,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.def',NULL,NULL,NULL,NULL),(6217,763,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(6218,763,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(6219,763,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(6220,763,'A','/VPIMdbMaster/VPIMdbMaster/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6221,763,'A','/VPIMdbMaster/VPIMdbMaster/VpiInternal.h',NULL,NULL,NULL,NULL),(6222,763,'A','/VPIMdbMaster/VPIMdbMaster/dllmain.cpp',NULL,NULL,NULL,NULL),(6223,763,'A','/VPIMdbMaster/VPIMdbMaster/resource.h',NULL,NULL,NULL,NULL),(6224,763,'A','/VPIMdbMaster/VPIMdbMaster/stdafx.cpp',NULL,NULL,NULL,NULL),(6225,763,'A','/VPIMdbMaster/VPIMdbMaster/stdafx.h',NULL,NULL,NULL,NULL),(6226,763,'A','/VPIMdbMaster/VPIMdbMaster/targetver.h',NULL,NULL,NULL,NULL),(6227,763,'A','/VPINull',NULL,NULL,NULL,NULL),(6228,763,'A','/VPINull/CMakeLists.txt',NULL,NULL,NULL,NULL),(6229,763,'A','/VPINull/Demo',NULL,NULL,NULL,NULL),(6230,763,'A','/VPINull/Demo/Config',NULL,NULL,NULL,NULL),(6231,763,'A','/VPINull/Demo/Config/ConfigNull.xml',NULL,NULL,NULL,NULL),(6232,763,'A','/VPINull/Demo/Config/Labo-Null.xml',NULL,NULL,NULL,NULL),(6233,763,'A','/VPINull/Demo/Config/Null-001.xml',NULL,NULL,NULL,NULL),(6234,763,'A','/VPINull/Demo/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6235,763,'A','/VPINull/Demo/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6236,763,'A','/VPINull/Demo/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6237,763,'A','/VPINull/Demo/StartServer_Debug.bat',NULL,NULL,NULL,NULL),(6238,763,'A','/VPINull/VPINull.vcproj',NULL,NULL,NULL,NULL),(6239,763,'A','/VPINull/include',NULL,NULL,NULL,NULL),(6240,763,'A','/VPINull/include/SourceObject.h',NULL,NULL,NULL,NULL),(6241,763,'A','/VPINull/include/VPINull.h',NULL,NULL,NULL,NULL),(6242,763,'A','/VPINull/include/stdafx.h',NULL,NULL,NULL,NULL),(6243,763,'A','/VPINull/include/targetver.h',NULL,NULL,NULL,NULL),(6244,763,'A','/VPINull/source',NULL,NULL,NULL,NULL),(6245,763,'A','/VPINull/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6246,763,'A','/VPINull/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(6247,763,'A','/VPINull/source/VPINull.cpp',NULL,NULL,NULL,NULL),(6248,763,'A','/VPINull/source/VPINull.def',NULL,NULL,NULL,NULL),(6249,763,'A','/VPINull/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6250,763,'A','/VPINull/source/dllmain.cpp',NULL,NULL,NULL,NULL),(6251,763,'A','/VPINull/source/stdafx.cpp',NULL,NULL,NULL,NULL),(6252,763,'A','/VPIOperatingSystem',NULL,NULL,NULL,NULL),(6253,763,'A','/VPIOperatingSystem/VPIOperatingSystem',NULL,NULL,NULL,NULL),(6254,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Config',NULL,NULL,NULL,NULL),(6255,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(6256,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Config/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(6257,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Config/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(6258,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Config/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(6259,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Config/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(6260,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6261,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6262,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Config/SubSystem001.xml',NULL,NULL,NULL,NULL),(6263,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Demo',NULL,NULL,NULL,NULL),(6264,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Demo/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6265,763,'A','/VPIOperatingSystem/VPIOperatingSystem/Demo/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6266,763,'A','/VPIOperatingSystem/VPIOperatingSystem/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(6267,763,'A','/VPIOperatingSystem/VPIOperatingSystem/include',NULL,NULL,NULL,NULL),(6268,763,'A','/VPIOperatingSystem/VPIOperatingSystem/include/SourceObject.h',NULL,NULL,NULL,NULL),(6269,763,'A','/VPIOperatingSystem/VPIOperatingSystem/include/VPIOperatingSystem.h',NULL,NULL,NULL,NULL),(6270,763,'A','/VPIOperatingSystem/VPIOperatingSystem/include/stdafx.h',NULL,NULL,NULL,NULL),(6271,763,'A','/VPIOperatingSystem/VPIOperatingSystem/include/targetver.h',NULL,NULL,NULL,NULL),(6272,763,'A','/VPIOperatingSystem/VPIOperatingSystem/source',NULL,NULL,NULL,NULL),(6273,763,'A','/VPIOperatingSystem/VPIOperatingSystem/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6274,763,'A','/VPIOperatingSystem/VPIOperatingSystem/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(6275,763,'A','/VPIOperatingSystem/VPIOperatingSystem/source/VPIOperatingSystem.cpp',NULL,NULL,NULL,NULL),(6276,763,'A','/VPIOperatingSystem/VPIOperatingSystem/source/VpiOperatingSystem.def',NULL,NULL,NULL,NULL),(6277,763,'A','/VPIOperatingSystem/VPIOperatingSystem/source/dllmain.cpp',NULL,NULL,NULL,NULL),(6278,763,'A','/VPIOperatingSystem/VPIOperatingSystem/source/stdafx.cpp',NULL,NULL,NULL,NULL),(6279,763,'A','/VpiAcqCtrl',NULL,NULL,NULL,NULL),(6280,763,'A','/VpiAcqCtrl/Config',NULL,NULL,NULL,NULL),(6281,763,'A','/VpiAcqCtrl/Config/AcqCtrl001.xml',NULL,NULL,NULL,NULL),(6282,763,'A','/VpiAcqCtrl/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(6283,763,'A','/VpiAcqCtrl/Config/Labo-AcqCtrl.xml',NULL,NULL,NULL,NULL),(6284,763,'A','/VpiAcqCtrl/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6285,763,'A','/VpiAcqCtrl/Config/Opc.Ua.Types.xsd',NULL,NULL,NULL,NULL),(6286,763,'A','/VpiAcqCtrl/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6287,763,'A','/VpiAcqCtrl/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6288,763,'A','/VpiAcqCtrl/Doc',NULL,NULL,NULL,NULL),(6289,763,'A','/VpiAcqCtrl/Doc/VpiAcqCtrl.docx',NULL,NULL,NULL,NULL),(6290,763,'A','/VpiAcqCtrl/VPIAcqCtrl',NULL,NULL,NULL,NULL),(6291,763,'A','/VpiAcqCtrl/VPIAcqCtrl/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(6292,763,'A','/VpiAcqCtrl/VPIAcqCtrl/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6293,763,'A','/VpiAcqCtrl/VPIAcqCtrl/SourceObject.cpp',NULL,NULL,NULL,NULL),(6294,763,'A','/VpiAcqCtrl/VPIAcqCtrl/SourceObject.h',NULL,NULL,NULL,NULL),(6295,763,'A','/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.cpp',NULL,NULL,NULL,NULL),(6296,763,'A','/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.def',NULL,NULL,NULL,NULL),(6297,763,'A','/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.h',NULL,NULL,NULL,NULL),(6298,763,'A','/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.rc',NULL,NULL,NULL,NULL),(6299,763,'A','/VpiAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcproj',NULL,NULL,NULL,NULL),(6300,763,'A','/VpiAcqCtrl/VPIAcqCtrl/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6301,763,'A','/VpiAcqCtrl/VPIAcqCtrl/VpiInternal.h',NULL,NULL,NULL,NULL),(6302,763,'A','/VpiAcqCtrl/VPIAcqCtrl/dllmain.cpp',NULL,NULL,NULL,NULL),(6303,763,'A','/VpiAcqCtrl/VPIAcqCtrl/resource.h',NULL,NULL,NULL,NULL),(6304,763,'A','/VpiAcqCtrl/VPIAcqCtrl/stdafx.cpp',NULL,NULL,NULL,NULL),(6305,763,'A','/VpiAcqCtrl/VPIAcqCtrl/stdafx.h',NULL,NULL,NULL,NULL),(6306,763,'A','/VpiAcqCtrl/VPIAcqCtrl/targetver.h',NULL,NULL,NULL,NULL),(6307,763,'A','/VpiMca527',NULL,NULL,NULL,NULL),(6308,763,'A','/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(6309,763,'A','/VpiMca527/include',NULL,NULL,NULL,NULL),(6310,763,'A','/VpiMca527/include/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(6311,763,'A','/VpiMca527/include/MCA527Message.h',NULL,NULL,NULL,NULL),(6312,763,'A','/VpiMca527/include/MCA527Request.h',NULL,NULL,NULL,NULL),(6313,763,'A','/VpiMca527/include/MCA527Response.h',NULL,NULL,NULL,NULL),(6314,763,'A','/VpiMca527/include/MCA527Wrapper.h',NULL,NULL,NULL,NULL),(6315,763,'A','/VpiMca527/include/RtSocket.h',NULL,NULL,NULL,NULL),(6316,763,'A','/VpiMca527/include/SerialPort.h',NULL,NULL,NULL,NULL),(6317,763,'A','/VpiMca527/include/SourceObject.h',NULL,NULL,NULL,NULL),(6318,763,'A','/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(6319,763,'A','/VpiMca527/include/VpiInternal.h',NULL,NULL,NULL,NULL),(6320,763,'A','/VpiMca527/include/mca_structures.h',NULL,NULL,NULL,NULL),(6321,763,'A','/VpiMca527/include/resource.h',NULL,NULL,NULL,NULL),(6322,763,'A','/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6323,763,'A','/VpiMca527/include/targetver.h',NULL,NULL,NULL,NULL),(6324,763,'A','/VpiMca527/source',NULL,NULL,NULL,NULL),(6325,763,'A','/VpiMca527/source/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(6326,763,'A','/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6327,763,'A','/VpiMca527/source/MCA527Message.cpp',NULL,NULL,NULL,NULL),(6328,763,'A','/VpiMca527/source/MCA527Request.cpp',NULL,NULL,NULL,NULL),(6329,763,'A','/VpiMca527/source/MCA527Response.cpp',NULL,NULL,NULL,NULL),(6330,763,'A','/VpiMca527/source/MCA527Wrapper.cpp',NULL,NULL,NULL,NULL),(6331,763,'A','/VpiMca527/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(6332,763,'A','/VpiMca527/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(6333,763,'A','/VpiMca527/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(6334,763,'A','/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(6335,763,'A','/VpiMca527/source/VPIMca527.def',NULL,NULL,NULL,NULL),(6336,763,'A','/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6337,763,'A','/VpiMca527/source/dllmain.cpp',NULL,NULL,NULL,NULL),(6338,763,'A','/VpiMca527/source/stdafx.cpp',NULL,NULL,NULL,NULL),(6339,763,'A','/Vpis.sln',NULL,NULL,NULL,NULL),(6340,763,'A','/include',NULL,NULL,NULL,NULL),(6341,763,'A','/include/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(6342,763,'A','/include/VPI.h',NULL,NULL,NULL,NULL),(6343,763,'A','/include/VpiDataTypes.h',NULL,NULL,NULL,NULL),(6344,763,'A','/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(6345,763,'A','/include/VpiTypes.h',NULL,NULL,NULL,NULL),(6346,763,'A','/include/VpiUtils.h',NULL,NULL,NULL,NULL),(6347,763,'A','/include/cslock.h',NULL,NULL,NULL,NULL),(6348,764,'M','/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(6349,764,'M','/Vpis.sln',NULL,NULL,NULL,NULL),(6350,765,'M','/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(6351,766,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6352,766,'M','/trunk/VPIMca166/SerialPort.cpp',NULL,NULL,NULL,NULL),(6353,766,'M','/trunk/VPIMca166/SerialPort.h',NULL,NULL,NULL,NULL),(6354,766,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(6355,766,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(6356,766,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6357,766,'M','/trunk/VPIMca166/VpiDataTypes.h',NULL,NULL,NULL,NULL),(6358,766,'M','/trunk/VPIMca166/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6359,766,'M','/trunk/VPIMca166/VpiInternal.h',NULL,NULL,NULL,NULL),(6360,766,'M','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(6361,767,'D','/trunk/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(6362,767,'D','/trunk/Config/Labo-Mca166.xml',NULL,NULL,NULL,NULL),(6363,767,'D','/trunk/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(6364,767,'D','/trunk/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6365,767,'D','/trunk/Config/RCLServerConfig.xsd',NULL,NULL,NULL,NULL),(6366,767,'D','/trunk/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6367,767,'D','/trunk/Config/VPIMca16600200.dat',NULL,NULL,NULL,NULL),(6368,768,'A','/trunk/Demo',NULL,NULL,NULL,NULL),(6369,768,'A','/trunk/Demo/Config',NULL,NULL,NULL,NULL),(6370,768,'A','/trunk/Demo/Config/ConfigMCA166.xml',NULL,NULL,NULL,NULL),(6371,768,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6372,769,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6373,770,'A','/trunk/Demo/Config/VPIMca16600200.dat',NULL,NULL,NULL,NULL),(6374,770,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6375,771,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6376,772,'A','/trunk/Demo/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6377,772,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6378,773,'A','/trunk/Demo/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6379,773,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6380,774,'A','/trunk/Demo/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6381,774,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6382,775,'A','/trunk/Demo/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(6383,775,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6384,776,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(6385,777,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(6386,778,'A','/SharedVpis',NULL,NULL,NULL,NULL),(6387,778,'A','/SharedVpis/SharedVpis.sln',NULL,NULL,NULL,NULL),(6388,778,'A','/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(6389,778,'A','/SharedVpis/include',NULL,NULL,NULL,NULL),(6390,778,'A','/SharedVpis/include/VPI.h',NULL,NULL,NULL,NULL),(6391,778,'A','/SharedVpis/include/VpiDataTypes.h',NULL,NULL,NULL,NULL),(6392,778,'A','/SharedVpis/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(6393,778,'A','/SharedVpis/include/VpiUtils.h',NULL,NULL,NULL,NULL),(6394,778,'A','/SharedVpis/include/cslock.h',NULL,NULL,NULL,NULL),(6395,779,'M','/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(6396,780,'A','/SharedVpis/SharedVpis',NULL,NULL,NULL,NULL),(6397,780,'A','/SharedVpis/SharedVpis/SharedVpis.sln',NULL,NULL,NULL,NULL),(6398,780,'A','/SharedVpis/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(6399,780,'A','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(6400,780,'A','/SharedVpis/SharedVpis/VpiDataTypes.h',NULL,NULL,NULL,NULL),(6401,780,'A','/SharedVpis/SharedVpis/VpiDataValue.h',NULL,NULL,NULL,NULL),(6402,780,'A','/SharedVpis/SharedVpis/VpiUtils.h',NULL,NULL,NULL,NULL),(6403,780,'A','/SharedVpis/SharedVpis/cslock.h',NULL,NULL,NULL,NULL),(6404,781,'M','/SharedVpis/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(6405,781,'M','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(6406,781,'A','/SharedVpis/SharedVpis/VpiTypes.h',NULL,NULL,NULL,NULL),(6407,781,'M','/SharedVpis/SharedVpis/cslock.h',NULL,NULL,NULL,NULL),(6408,782,'M','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(6409,782,'M','/SharedVpis/SharedVpis/VpiTypes.h',NULL,NULL,NULL,NULL),(6410,782,'M','/SharedVpis/SharedVpis/cslock.h',NULL,NULL,NULL,NULL),(6411,783,'M','/SharedVpis/SharedVpis/VpiTypes.h',NULL,NULL,NULL,NULL),(6412,784,'M','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(6413,784,'M','/SharedVpis/SharedVpis/VpiDataTypes.h',NULL,NULL,NULL,NULL),(6414,784,'M','/SharedVpis/SharedVpis/VpiDataValue.h',NULL,NULL,NULL,NULL),(6415,784,'M','/SharedVpis/SharedVpis/VpiTypes.h',NULL,NULL,NULL,NULL),(6416,784,'M','/SharedVpis/SharedVpis/cslock.h',NULL,NULL,NULL,NULL),(6417,785,'M','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(6418,785,'M','/SharedVpis/SharedVpis/VpiDataValue.h',NULL,NULL,NULL,NULL),(6419,786,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(6420,786,'M','/trunk/UAStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(6421,786,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(6422,786,'M','/trunk/UAStackV1/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(6423,786,'M','/trunk/UAStackV1/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(6424,786,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(6425,786,'M','/trunk/UAStackV1/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(6426,786,'M','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(6427,786,'M','/trunk/UAStackV1/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(6428,786,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(6429,786,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(6430,786,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(6431,786,'M','/trunk/UAStackV1/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(6432,786,'M','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(6433,786,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(6434,786,'M','/trunk/UAStackV1/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(6435,787,'M','/trunk/UAStackV1/UAStackV1.rc',NULL,NULL,NULL,NULL),(6436,787,'M','/trunk/UAStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(6437,787,'M','/trunk/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(6438,787,'M','/trunk/UAStackV1/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(6439,787,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(6440,787,'M','/trunk/UAStackV1/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(6441,787,'M','/trunk/UAStackV1/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(6442,787,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(6443,788,'M','/trunk/UAStackV1/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(6444,788,'M','/trunk/UAStackV1/include/shared/opcua_semaphore.h',NULL,NULL,NULL,NULL),(6445,788,'M','/trunk/UAStackV1/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(6446,788,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(6447,788,'M','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(6448,788,'M','/trunk/UAStackV1/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(6449,788,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(6450,788,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(6451,788,'M','/trunk/UAStackV1/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(6452,788,'M','/trunk/UAStackV1/source/opcua_thread.c',NULL,NULL,NULL,NULL),(6453,788,'M','/trunk/UAStackV1/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(6454,789,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(6455,789,'D','/trunk/UAStackV1/source/opcua_p_semaphore.c',NULL,NULL,NULL,NULL),(6456,790,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(6457,790,'M','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(6458,790,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(6459,791,'M','/trunk/UAStackV1/source/opcua_channel.c',NULL,NULL,NULL,NULL),(6460,791,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(6461,792,'M','/trunk/UAStackV1/UAStackV1.rc',NULL,NULL,NULL,NULL),(6462,792,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(6463,793,'M','/trunk/UAStackV1/UAStackV1.rc',NULL,NULL,NULL,NULL),(6464,794,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(6465,794,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(6466,794,'M','/trunk/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(6467,794,'M','/trunk/include/UABinding.h',NULL,NULL,NULL,NULL),(6468,794,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(6469,794,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(6470,794,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(6471,794,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(6472,794,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(6473,794,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(6474,795,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(6475,795,'D','/trunk/include/resource.h',NULL,NULL,NULL,NULL),(6476,796,'M','/trunk/ServerShared/VPI.h',NULL,NULL,NULL,NULL),(6477,796,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(6478,796,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(6479,796,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(6480,796,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(6481,796,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(6482,796,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(6483,796,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(6484,796,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(6485,796,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(6486,796,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(6487,796,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(6488,796,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(6489,796,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(6490,796,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(6491,796,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(6492,796,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(6493,796,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(6494,796,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(6495,796,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(6496,796,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(6497,796,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(6498,797,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(6499,797,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(6500,797,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(6501,797,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(6502,797,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(6503,797,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(6504,797,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(6505,797,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(6506,797,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(6507,797,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(6508,797,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(6509,797,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(6510,797,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(6511,797,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(6512,797,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(6513,797,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(6514,797,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(6515,797,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(6516,797,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(6517,797,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(6518,797,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(6519,798,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(6520,798,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(6521,798,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(6522,798,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(6523,798,'A','/trunk/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(6524,798,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(6525,798,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(6526,798,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(6527,798,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(6528,798,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(6529,798,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(6530,798,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(6531,798,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(6532,798,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(6533,798,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(6534,798,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(6535,798,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(6536,798,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(6537,798,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(6538,798,'A','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(6539,798,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(6540,799,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(6541,799,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(6542,799,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(6543,799,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(6544,799,'M','/trunk/include/UADataType.h',NULL,NULL,NULL,NULL),(6545,799,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(6546,799,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(6547,799,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(6548,799,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(6549,799,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(6550,799,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(6551,799,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(6552,799,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(6553,799,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(6554,800,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(6555,800,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(6556,800,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(6557,800,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(6558,800,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(6559,800,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(6560,801,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(6561,801,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(6562,801,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(6563,801,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(6564,801,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(6565,801,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(6566,802,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(6567,802,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(6568,802,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(6569,802,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(6570,802,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(6571,802,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(6572,803,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(6573,803,'M','/trunk/include/SecureChannel.h',NULL,NULL,NULL,NULL),(6574,803,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(6575,803,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(6576,803,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(6577,803,'M','/trunk/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(6578,803,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(6579,803,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(6580,803,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(6581,803,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(6582,804,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(6583,804,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(6584,804,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(6585,804,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(6586,804,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(6587,804,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(6588,804,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(6589,804,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(6590,805,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(6591,806,'D','/VpiAcqCtrl',NULL,NULL,NULL,NULL),(6592,807,'D','/VPIMca166',NULL,NULL,NULL,NULL),(6593,808,'D','/VPIMdbMaster',NULL,NULL,NULL,NULL),(6594,809,'D','/VPIOperatingSystem',NULL,NULL,NULL,NULL),(6595,810,'D','/VPINull',NULL,NULL,NULL,NULL),(6596,811,'A','/OpenOpcUaQuickClient',NULL,NULL,NULL,NULL),(6597,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient',NULL,NULL,NULL,NULL),(6598,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient.sln',NULL,NULL,NULL,NULL),(6599,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/OpenOpcUaQuickClient.rc',NULL,NULL,NULL,NULL),(6600,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/OpenOpcUaQuickClient.vcproj',NULL,NULL,NULL,NULL),(6601,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/ReadMe.txt',NULL,NULL,NULL,NULL),(6602,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include',NULL,NULL,NULL,NULL),(6603,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/CSVFile.h',NULL,NULL,NULL,NULL),(6604,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/EndpointUrlDlg.h',NULL,NULL,NULL,NULL),(6605,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/NodeAttributesDlg.h',NULL,NULL,NULL,NULL),(6606,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/SessionParamDlg.h',NULL,NULL,NULL,NULL),(6607,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/SubEdit.h',NULL,NULL,NULL,NULL),(6608,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/SubscriptionParamDlg.h',NULL,NULL,NULL,NULL),(6609,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/UABrowseExportDlg.h',NULL,NULL,NULL,NULL),(6610,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/UABrowseOption.h',NULL,NULL,NULL,NULL),(6611,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/UABrowserDlg.h',NULL,NULL,NULL,NULL),(6612,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/UAQuickClient.h',NULL,NULL,NULL,NULL),(6613,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/UAQuickClientDlg.h',NULL,NULL,NULL,NULL),(6614,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/UAWriteDlg.h',NULL,NULL,NULL,NULL),(6615,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/resource.h',NULL,NULL,NULL,NULL),(6616,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/stdafx.h',NULL,NULL,NULL,NULL),(6617,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/include/targetver.h',NULL,NULL,NULL,NULL),(6618,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res',NULL,NULL,NULL,NULL),(6619,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/Connect.ico',NULL,NULL,NULL,NULL),(6620,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/DataType.ico',NULL,NULL,NULL,NULL),(6621,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/Disconnect.ico',NULL,NULL,NULL,NULL),(6622,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/Methode.ico',NULL,NULL,NULL,NULL),(6623,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/OPC.ico',NULL,NULL,NULL,NULL),(6624,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/OpenOpcUa.ico',NULL,NULL,NULL,NULL),(6625,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/ReferenceType.ico',NULL,NULL,NULL,NULL),(6626,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/Refresh.ico',NULL,NULL,NULL,NULL),(6627,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/SessionActive.ico',NULL,NULL,NULL,NULL),(6628,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/SessionInactive.ico',NULL,NULL,NULL,NULL),(6629,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/SubscriptionActive.ico',NULL,NULL,NULL,NULL),(6630,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/SubscriptionInactive.ico',NULL,NULL,NULL,NULL),(6631,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/UAQuickClient.ico',NULL,NULL,NULL,NULL),(6632,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/UAQuickClient.rc2',NULL,NULL,NULL,NULL),(6633,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/View.ico',NULL,NULL,NULL,NULL),(6634,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/ico00001.ico',NULL,NULL,NULL,NULL),(6635,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/icon1.ico',NULL,NULL,NULL,NULL),(6636,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/object.ico',NULL,NULL,NULL,NULL),(6637,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/objectType.ico',NULL,NULL,NULL,NULL),(6638,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/unspecified.ico',NULL,NULL,NULL,NULL),(6639,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/variableType.ico',NULL,NULL,NULL,NULL),(6640,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/res/variables.ico',NULL,NULL,NULL,NULL),(6641,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/resource.h',NULL,NULL,NULL,NULL),(6642,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source',NULL,NULL,NULL,NULL),(6643,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/CSVFile.cpp',NULL,NULL,NULL,NULL),(6644,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/EndpointUrlDlg.cpp',NULL,NULL,NULL,NULL),(6645,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/NodeAttributesDlg.cpp',NULL,NULL,NULL,NULL),(6646,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/SessionParamDlg.cpp',NULL,NULL,NULL,NULL),(6647,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/SubEdit.cpp',NULL,NULL,NULL,NULL),(6648,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/SubscriptionParamDlg.cpp',NULL,NULL,NULL,NULL),(6649,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/UABrowseExportDlg.cpp',NULL,NULL,NULL,NULL),(6650,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/UABrowseOption.cpp',NULL,NULL,NULL,NULL),(6651,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/UABrowserDlg.cpp',NULL,NULL,NULL,NULL),(6652,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/UAQuickClient.cpp',NULL,NULL,NULL,NULL),(6653,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/UAQuickClientDlg.cpp',NULL,NULL,NULL,NULL),(6654,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/UAWriteDlg.cpp',NULL,NULL,NULL,NULL),(6655,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient/source/stdafx.cpp',NULL,NULL,NULL,NULL),(6656,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient_Setup',NULL,NULL,NULL,NULL),(6657,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient_Setup/OpenOPCUA Logo Banner.bmp',NULL,NULL,NULL,NULL),(6658,811,'A','/OpenOpcUaQuickClient/OpenOpcUaQuickClient_Setup/OpenOpcUaQuickClient_Setup.vdproj',NULL,NULL,NULL,NULL),(6659,811,'A','/OpenOpcUaQuickClient/Release',NULL,NULL,NULL,NULL),(6660,811,'A','/OpenOpcUaQuickClient/Release/libeay32.dll',NULL,NULL,NULL,NULL),(6661,812,'M','/OpenOpcUaQuickClient/OpenOpcUaQuickClient.sln',NULL,NULL,NULL,NULL),(6662,813,'A','/VpiMca527/VpiMca527.sln',NULL,NULL,NULL,NULL),(6663,814,'A','/VpiMca527/VpiMca527',NULL,NULL,NULL,NULL),(6664,814,'A','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(6665,814,'A','/VpiMca527/VpiMca527/include',NULL,NULL,NULL,NULL),(6666,814,'A','/VpiMca527/VpiMca527/include/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(6667,814,'A','/VpiMca527/VpiMca527/include/MCA527Message.h',NULL,NULL,NULL,NULL),(6668,814,'A','/VpiMca527/VpiMca527/include/MCA527Request.h',NULL,NULL,NULL,NULL),(6669,814,'A','/VpiMca527/VpiMca527/include/MCA527Response.h',NULL,NULL,NULL,NULL),(6670,814,'A','/VpiMca527/VpiMca527/include/MCA527Wrapper.h',NULL,NULL,NULL,NULL),(6671,814,'A','/VpiMca527/VpiMca527/include/RtSocket.h',NULL,NULL,NULL,NULL),(6672,814,'A','/VpiMca527/VpiMca527/include/SerialPort.h',NULL,NULL,NULL,NULL),(6673,814,'A','/VpiMca527/VpiMca527/include/SourceObject.h',NULL,NULL,NULL,NULL),(6674,814,'A','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(6675,814,'A','/VpiMca527/VpiMca527/include/VpiInternal.h',NULL,NULL,NULL,NULL),(6676,814,'A','/VpiMca527/VpiMca527/include/mca_structures.h',NULL,NULL,NULL,NULL),(6677,814,'A','/VpiMca527/VpiMca527/include/resource.h',NULL,NULL,NULL,NULL),(6678,814,'A','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6679,814,'A','/VpiMca527/VpiMca527/include/targetver.h',NULL,NULL,NULL,NULL),(6680,814,'A','/VpiMca527/VpiMca527/source',NULL,NULL,NULL,NULL),(6681,814,'A','/VpiMca527/VpiMca527/source/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(6682,814,'A','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6683,814,'A','/VpiMca527/VpiMca527/source/MCA527Message.cpp',NULL,NULL,NULL,NULL),(6684,814,'A','/VpiMca527/VpiMca527/source/MCA527Request.cpp',NULL,NULL,NULL,NULL),(6685,814,'A','/VpiMca527/VpiMca527/source/MCA527Response.cpp',NULL,NULL,NULL,NULL),(6686,814,'A','/VpiMca527/VpiMca527/source/MCA527Wrapper.cpp',NULL,NULL,NULL,NULL),(6687,814,'A','/VpiMca527/VpiMca527/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(6688,814,'A','/VpiMca527/VpiMca527/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(6689,814,'A','/VpiMca527/VpiMca527/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(6690,814,'A','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(6691,814,'A','/VpiMca527/VpiMca527/source/VPIMca527.def',NULL,NULL,NULL,NULL),(6692,814,'A','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6693,814,'A','/VpiMca527/VpiMca527/source/dllmain.cpp',NULL,NULL,NULL,NULL),(6694,814,'A','/VpiMca527/VpiMca527/source/stdafx.cpp',NULL,NULL,NULL,NULL),(6695,815,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6696,816,'D','/VpiMca527/source',NULL,NULL,NULL,NULL),(6697,817,'D','/VpiMca527/include',NULL,NULL,NULL,NULL),(6698,818,'A','/Deliver',NULL,NULL,NULL,NULL),(6699,818,'A','/Deliver/Deliver.sln',NULL,NULL,NULL,NULL),(6700,818,'A','/Deliver/Deliver.vcproj',NULL,NULL,NULL,NULL),(6701,818,'A','/Deliver/StaticFiles',NULL,NULL,NULL,NULL),(6702,818,'A','/Deliver/StaticFiles/OpenOpcUaClientLib',NULL,NULL,NULL,NULL),(6703,818,'A','/Deliver/StaticFiles/OpenOpcUaClientLib/OpenOpcUaClientLib.sln',NULL,NULL,NULL,NULL),(6704,818,'A','/Deliver/StaticFiles/OpenOpcUaClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(6705,818,'A','/Deliver/StaticFiles/OpenOpcUaCoreServer',NULL,NULL,NULL,NULL),(6706,818,'A','/Deliver/StaticFiles/OpenOpcUaCoreServer/CMakeLists.txt',NULL,NULL,NULL,NULL),(6707,818,'A','/Deliver/StaticFiles/OpenOpcUaCoreServer/OpenOpcUaCoreServer.pro',NULL,NULL,NULL,NULL),(6708,818,'A','/Deliver/StaticFiles/OpenOpcUaCoreServer/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(6709,818,'A','/Deliver/StaticFiles/OpenOpcUaCoreServer/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(6710,818,'A','/Deliver/StaticFiles/OpenOpcUaSharedLib',NULL,NULL,NULL,NULL),(6711,818,'A','/Deliver/StaticFiles/OpenOpcUaSharedLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(6712,818,'A','/Deliver/StaticFiles/OpenOpcUaSharedLib/OpenOpcUaSharedLib.pro',NULL,NULL,NULL,NULL),(6713,818,'A','/Deliver/StaticFiles/OpenOpcUaSharedLib/OpenOpcUaSharedLib.vcproj',NULL,NULL,NULL,NULL),(6714,818,'A','/Deliver/StaticFiles/OpenOpcUaStackV1',NULL,NULL,NULL,NULL),(6715,818,'A','/Deliver/StaticFiles/OpenOpcUaStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(6716,818,'A','/Deliver/StaticFiles/OpenOpcUaStackV1/OpenOpcUaStack.pro',NULL,NULL,NULL,NULL),(6717,818,'A','/Deliver/StaticFiles/OpenOpcUaStackV1/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(6718,818,'A','/Deliver/StaticFiles/OpenOpcUaStackV1/OpenOpcUaStackV1.vcproj',NULL,NULL,NULL,NULL),(6719,818,'A','/Deliver/StaticFiles/OpenOpcUa_V1.sln',NULL,NULL,NULL,NULL),(6720,818,'A','/Deliver/StaticFiles/XMLSAXParser',NULL,NULL,NULL,NULL),(6721,818,'A','/Deliver/StaticFiles/XMLSAXParser/CMakeLists.txt',NULL,NULL,NULL,NULL),(6722,818,'A','/Deliver/StaticFiles/XMLSAXParser/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(6723,818,'A','/Deliver/StaticFiles/XMLSAXParser/XMLSaxParser.pro',NULL,NULL,NULL,NULL),(6724,818,'A','/Deliver/StaticFiles/lib',NULL,NULL,NULL,NULL),(6725,818,'A','/Deliver/StaticFiles/lib/win32',NULL,NULL,NULL,NULL),(6726,818,'A','/Deliver/StaticFiles/lib/win32/libeay32.lib',NULL,NULL,NULL,NULL),(6727,818,'A','/Deliver/StaticFiles/lib/win32/libxml2.lib',NULL,NULL,NULL,NULL),(6728,818,'A','/Deliver/UpdateSourceClientLib.bat',NULL,NULL,NULL,NULL),(6729,818,'A','/Deliver/UpdateSourceCoreServer.bat',NULL,NULL,NULL,NULL),(6730,818,'A','/Deliver/UpdateSourceUaClientSdk.bat',NULL,NULL,NULL,NULL),(6731,818,'A','/Deliver/UpdateStaticFiles.bat',NULL,NULL,NULL,NULL),(6732,818,'A','/Deliver/UpdateVpisSdk.bat',NULL,NULL,NULL,NULL),(6733,819,'M','/Deliver/Deliver.sln',NULL,NULL,NULL,NULL),(6734,820,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6735,821,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6736,822,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6737,823,'A','/VpiMca527/VpiMca527/Demo',NULL,NULL,NULL,NULL),(6738,823,'A','/VpiMca527/VpiMca527/Demo/Config',NULL,NULL,NULL,NULL),(6739,823,'A','/VpiMca527/VpiMca527/Demo/Config/ConfigMCA527.xml',NULL,NULL,NULL,NULL),(6740,823,'A','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(6741,823,'A','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(6742,823,'A','/VpiMca527/VpiMca527/Demo/Config/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(6743,823,'A','/VpiMca527/VpiMca527/Demo/Config/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(6744,823,'A','/VpiMca527/VpiMca527/Demo/Config/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(6745,823,'A','/VpiMca527/VpiMca527/Demo/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6746,823,'A','/VpiMca527/VpiMca527/Demo/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(6747,823,'A','/VpiMca527/VpiMca527/Demo/Config/VPIMca52700200.dat',NULL,NULL,NULL,NULL),(6748,823,'A','/VpiMca527/VpiMca527/Demo/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6749,823,'A','/VpiMca527/VpiMca527/Demo/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6750,823,'A','/VpiMca527/VpiMca527/Demo/VPIMca52700200.dat',NULL,NULL,NULL,NULL),(6751,823,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(6752,824,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6753,825,'M','/VpiMca527/VpiMca527/Demo/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6754,825,'M','/VpiMca527/VpiMca527/Demo/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6755,825,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6756,826,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(6757,826,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6758,827,'M','/VpiMca527/VpiMca527',NULL,NULL,NULL,NULL),(6759,827,'M','/VpiMca527/VpiMca527/Demo/Config/ConfigMCA527.xml',NULL,NULL,NULL,NULL),(6760,827,'D','/VpiMca527/VpiMca527/Demo/VPIMca52700200.dat',NULL,NULL,NULL,NULL),(6761,827,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(6762,827,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(6763,827,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6764,827,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6765,827,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(6766,827,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6767,828,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(6768,828,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(6769,828,'M','/VpiMca527/VpiMca527/source/VPIMca527.def',NULL,NULL,NULL,NULL),(6770,828,'A','/VpiMca527/VpiMca527/source/VPIMca527d.def',NULL,NULL,NULL,NULL),(6771,829,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6772,829,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6773,830,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(6774,830,'M','/VpiMca527/VpiMca527/include/VpiInternal.h',NULL,NULL,NULL,NULL),(6775,830,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(6776,830,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6777,831,'M','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(6778,831,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(6779,831,'M','/VpiMca527/VpiMca527/Demo/Config/VPIMca52700200.dat',NULL,NULL,NULL,NULL),(6780,831,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(6781,831,'M','/VpiMca527/VpiMca527/include/MCA527Wrapper.h',NULL,NULL,NULL,NULL),(6782,831,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(6783,831,'M','/VpiMca527/VpiMca527/include/mca_structures.h',NULL,NULL,NULL,NULL),(6784,831,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6785,831,'M','/VpiMca527/VpiMca527/source/MCA527Request.cpp',NULL,NULL,NULL,NULL),(6786,831,'M','/VpiMca527/VpiMca527/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(6787,831,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(6788,831,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(6789,831,'M','/VpiMca527/VpiMca527/source/dllmain.cpp',NULL,NULL,NULL,NULL),(6790,832,'M','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(6791,832,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(6792,832,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6793,832,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(6794,833,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(6795,833,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6796,834,'M','/VpiMca527/VpiMca527/Demo/Config/ConfigMCA527.xml',NULL,NULL,NULL,NULL),(6797,834,'M','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(6798,834,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(6799,834,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(6800,834,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(6801,834,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(6802,835,'M','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(6803,835,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(6804,836,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(6805,837,'R','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(6806,838,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(6807,839,'A','/trunk/UAStackV1/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(6808,839,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(6809,840,'M','/trunk/UAStackV1/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(6810,840,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(6811,840,'M','/trunk/UAStackV1/include/shared/opcua.h',NULL,NULL,NULL,NULL),(6812,840,'M','/trunk/UAStackV1/include/shared/opcua_channel.h',NULL,NULL,NULL,NULL),(6813,840,'M','/trunk/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(6814,840,'M','/trunk/UAStackV1/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(6815,840,'M','/trunk/UAStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(6816,840,'M','/trunk/UAStackV1/include/shared/opcua_credentials.h',NULL,NULL,NULL,NULL),(6817,840,'M','/trunk/UAStackV1/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(6818,840,'M','/trunk/UAStackV1/include/shared/opcua_cryptofactory.h',NULL,NULL,NULL,NULL),(6819,840,'M','/trunk/UAStackV1/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(6820,840,'M','/trunk/UAStackV1/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(6821,840,'M','/trunk/UAStackV1/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(6822,840,'M','/trunk/UAStackV1/include/shared/opcua_errorhandling.h',NULL,NULL,NULL,NULL),(6823,840,'M','/trunk/UAStackV1/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(6824,840,'M','/trunk/UAStackV1/include/shared/opcua_https_listener.h',NULL,NULL,NULL,NULL),(6825,840,'M','/trunk/UAStackV1/include/shared/opcua_https_listener_connectionmanager.h',NULL,NULL,NULL,NULL),(6826,840,'M','/trunk/UAStackV1/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(6827,840,'M','/trunk/UAStackV1/include/shared/opcua_memorystream.h',NULL,NULL,NULL,NULL),(6828,840,'M','/trunk/UAStackV1/include/shared/opcua_p_crypto.h',NULL,NULL,NULL,NULL),(6829,840,'M','/trunk/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(6830,840,'M','/trunk/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(6831,840,'M','/trunk/UAStackV1/include/shared/opcua_p_openssl_pki.h',NULL,NULL,NULL,NULL),(6832,840,'M','/trunk/UAStackV1/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(6833,840,'M','/trunk/UAStackV1/include/shared/opcua_p_pki_nosecurity.h',NULL,NULL,NULL,NULL),(6834,840,'M','/trunk/UAStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(6835,840,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(6836,840,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(6837,840,'M','/trunk/UAStackV1/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(6838,840,'M','/trunk/UAStackV1/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(6839,840,'M','/trunk/UAStackV1/include/shared/opcua_pki.h',NULL,NULL,NULL,NULL),(6840,840,'M','/trunk/UAStackV1/include/shared/opcua_pkifactory.h',NULL,NULL,NULL,NULL),(6841,840,'M','/trunk/UAStackV1/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(6842,840,'M','/trunk/UAStackV1/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(6843,840,'M','/trunk/UAStackV1/include/shared/opcua_securelistener.h',NULL,NULL,NULL,NULL),(6844,840,'M','/trunk/UAStackV1/include/shared/opcua_securestream.h',NULL,NULL,NULL,NULL),(6845,840,'M','/trunk/UAStackV1/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(6846,840,'M','/trunk/UAStackV1/include/shared/opcua_stream.h',NULL,NULL,NULL,NULL),(6847,840,'M','/trunk/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(6848,840,'M','/trunk/UAStackV1/include/shared/opcua_tcpconnection.h',NULL,NULL,NULL,NULL),(6849,840,'M','/trunk/UAStackV1/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(6850,840,'M','/trunk/UAStackV1/include/shared/opcua_tcpstream.h',NULL,NULL,NULL,NULL),(6851,840,'M','/trunk/UAStackV1/include/shared/opcua_timer.h',NULL,NULL,NULL,NULL),(6852,840,'M','/trunk/UAStackV1/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(6853,840,'M','/trunk/UAStackV1/resource.h',NULL,NULL,NULL,NULL),(6854,840,'M','/trunk/UAStackV1/source/opcua_channel.c',NULL,NULL,NULL,NULL),(6855,840,'M','/trunk/UAStackV1/source/opcua_connection.c',NULL,NULL,NULL,NULL),(6856,840,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(6857,840,'M','/trunk/UAStackV1/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(6858,840,'M','/trunk/UAStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(6859,840,'M','/trunk/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(6860,840,'M','/trunk/UAStackV1/source/opcua_guid.c',NULL,NULL,NULL,NULL),(6861,840,'M','/trunk/UAStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(6862,840,'M','/trunk/UAStackV1/source/opcua_https_listener.c',NULL,NULL,NULL,NULL),(6863,840,'M','/trunk/UAStackV1/source/opcua_https_listener_connectionmanager.c',NULL,NULL,NULL,NULL),(6864,840,'M','/trunk/UAStackV1/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(6865,840,'M','/trunk/UAStackV1/source/opcua_listener.c',NULL,NULL,NULL,NULL),(6866,840,'M','/trunk/UAStackV1/source/opcua_memory.c',NULL,NULL,NULL,NULL),(6867,840,'M','/trunk/UAStackV1/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(6868,840,'M','/trunk/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(6869,840,'M','/trunk/UAStackV1/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(6870,840,'M','/trunk/UAStackV1/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(6871,840,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(6872,840,'M','/trunk/UAStackV1/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(6873,840,'M','/trunk/UAStackV1/source/opcua_p_pki_nosecurity.c',NULL,NULL,NULL,NULL),(6874,840,'M','/trunk/UAStackV1/source/opcua_p_pkifactory.c',NULL,NULL,NULL,NULL),(6875,840,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(6876,840,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(6877,840,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(6878,840,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(6879,840,'M','/trunk/UAStackV1/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(6880,840,'M','/trunk/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(6881,840,'M','/trunk/UAStackV1/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(6882,840,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(6883,840,'M','/trunk/UAStackV1/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(6884,840,'M','/trunk/UAStackV1/source/opcua_stream.c',NULL,NULL,NULL,NULL),(6885,840,'M','/trunk/UAStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(6886,840,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(6887,840,'M','/trunk/UAStackV1/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(6888,840,'M','/trunk/UAStackV1/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(6889,840,'M','/trunk/UAStackV1/source/opcua_thread.c',NULL,NULL,NULL,NULL),(6890,840,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(6891,840,'M','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(6892,841,'M','/trunk/UAStackV1/include/shared/opcua_list.h',NULL,NULL,NULL,NULL),(6893,841,'M','/trunk/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(6894,841,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(6895,841,'M','/trunk/UAStackV1/source/opcua_list.c',NULL,NULL,NULL,NULL),(6896,841,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(6897,841,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(6898,842,'M','/trunk/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(6899,842,'M','/trunk/UAStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(6900,842,'M','/trunk/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(6901,842,'M','/trunk/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(6902,842,'M','/trunk/UAStackV1/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(6903,842,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(6904,842,'M','/trunk/UAStackV1/source/opcua_guid.c',NULL,NULL,NULL,NULL),(6905,842,'M','/trunk/UAStackV1/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(6906,842,'M','/trunk/UAStackV1/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(6907,842,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(6908,842,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(6909,842,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(6910,843,'A','/Demos',NULL,NULL,NULL,NULL),(6911,843,'A','/Demos/Demos.sln',NULL,NULL,NULL,NULL),(6912,844,'M','/Demos/Demos.sln',NULL,NULL,NULL,NULL),(6913,845,'A','/61850',NULL,NULL,NULL,NULL),(6914,845,'A','/61850/61850.vcproj',NULL,NULL,NULL,NULL),(6915,845,'A','/61850/Config61850.xml',NULL,NULL,NULL,NULL),(6916,845,'A','/61850/IEC 61850',NULL,NULL,NULL,NULL),(6917,845,'A','/61850/IEC 61850/IEC_61850_CID_UANodeset7.xml',NULL,NULL,NULL,NULL),(6918,845,'A','/61850/IEC 61850/IEC_61850_CID_UANodesetTypes7.xml',NULL,NULL,NULL,NULL),(6919,845,'A','/61850/IEC 61850/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6920,845,'A','/61850/IEC 61850/UANodeSet.xsd',NULL,NULL,NULL,NULL),(6921,845,'A','/61850/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6922,846,'A','/61970',NULL,NULL,NULL,NULL),(6923,846,'A','/61970/61970.vcproj',NULL,NULL,NULL,NULL),(6924,846,'A','/61970/Config61970.xml',NULL,NULL,NULL,NULL),(6925,846,'A','/61970/IEC 61970',NULL,NULL,NULL,NULL),(6926,846,'A','/61970/IEC 61970/IEC_61970_UANodeSetB2.xml',NULL,NULL,NULL,NULL),(6927,846,'A','/61970/IEC 61970/IEC_61970_UANodeSetI2.xml',NULL,NULL,NULL,NULL),(6928,846,'A','/61970/IEC 61970/IEC_61970_UANodeSetTypes2.xml',NULL,NULL,NULL,NULL),(6929,846,'A','/61970/IEC 61970/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6930,846,'A','/61970/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6931,846,'A','/61970/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6932,847,'A','/CTT',NULL,NULL,NULL,NULL),(6933,847,'A','/CTT/CTT.vcproj',NULL,NULL,NULL,NULL),(6934,847,'A','/CTT/Config4CE.xml',NULL,NULL,NULL,NULL),(6935,847,'A','/CTT/Opc.Ua.CTT.xml',NULL,NULL,NULL,NULL),(6936,847,'A','/CTT/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6937,847,'A','/CTT/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6938,847,'A','/CTT/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6939,847,'A','/CTT/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6940,847,'A','/CTT/UANodeSet.xsd',NULL,NULL,NULL,NULL),(6941,848,'A','/ADI',NULL,NULL,NULL,NULL),(6942,848,'A','/ADI/ConfigADI.xml',NULL,NULL,NULL,NULL),(6943,848,'A','/ADI/Demo-ADI.vcproj',NULL,NULL,NULL,NULL),(6944,848,'A','/ADI/Opc.Ua.Adi.NodeSet2.xml',NULL,NULL,NULL,NULL),(6945,848,'A','/ADI/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6946,848,'A','/ADI/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6947,848,'A','/ADI/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6948,849,'A','/Demo-DI',NULL,NULL,NULL,NULL),(6949,849,'A','/Demo-DI/Demo-DI.vcproj',NULL,NULL,NULL,NULL),(6950,850,'A','/DemoB2MML',NULL,NULL,NULL,NULL),(6951,850,'A','/DemoB2MML/Config4CE.xml',NULL,NULL,NULL,NULL),(6952,850,'A','/DemoB2MML/DemoB2MML.vcproj',NULL,NULL,NULL,NULL),(6953,850,'A','/DemoB2MML/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(6954,850,'A','/DemoB2MML/Yokogawa.B2MML.Company.NodeSet2.xml',NULL,NULL,NULL,NULL),(6955,850,'A','/DemoB2MML/Yokogawa.B2MML.Instance.NodeSet2.xml',NULL,NULL,NULL,NULL),(6956,850,'A','/DemoB2MML/Yokogawa.B2MML.Types.NodeSet2.xml',NULL,NULL,NULL,NULL),(6957,851,'A','/LaboNeutron',NULL,NULL,NULL,NULL),(6958,851,'A','/LaboNeutron/Config',NULL,NULL,NULL,NULL),(6959,851,'A','/LaboNeutron/Config/ConfigLaboNeutron.xml',NULL,NULL,NULL,NULL),(6960,851,'A','/LaboNeutron/Config/NEUTRON_COUNTER.xml',NULL,NULL,NULL,NULL),(6961,851,'A','/LaboNeutron/Config/labo-NEUTRON_COUNTER-v1.xml',NULL,NULL,NULL,NULL),(6962,851,'A','/LaboNeutron/Config/labo-NEUTRON_COUNTER.xml',NULL,NULL,NULL,NULL),(6963,851,'A','/LaboNeutron/LaboNeutron.vcproj',NULL,NULL,NULL,NULL),(6964,851,'A','/LaboNeutron/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6965,851,'A','/LaboNeutron/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6966,852,'A','/Minimum',NULL,NULL,NULL,NULL),(6967,852,'A','/Minimum/Config4CE.xml',NULL,NULL,NULL,NULL),(6968,852,'A','/Minimum/Minimum.vcproj',NULL,NULL,NULL,NULL),(6969,852,'A','/Minimum/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(6970,852,'A','/Minimum/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(6971,852,'A','/Minimum/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(6972,852,'A','/Minimum/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6973,852,'A','/Minimum/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6974,852,'A','/Minimum/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6975,852,'A','/Minimum/UANodeSet.xsd',NULL,NULL,NULL,NULL),(6976,853,'A','/Minimum-HTTP',NULL,NULL,NULL,NULL),(6977,853,'A','/Minimum-HTTP/Config4CE.xml',NULL,NULL,NULL,NULL),(6978,853,'A','/Minimum-HTTP/Minimum-HTTP.vcproj',NULL,NULL,NULL,NULL),(6979,853,'A','/Minimum-HTTP/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(6980,853,'A','/Minimum-HTTP/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(6981,853,'A','/Minimum-HTTP/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(6982,853,'A','/Minimum-HTTP/ServerConfig.xsd',NULL,NULL,NULL,NULL),(6983,853,'A','/Minimum-HTTP/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6984,853,'A','/Minimum-HTTP/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6985,853,'A','/Minimum-HTTP/UANodeSet.xsd',NULL,NULL,NULL,NULL),(6986,854,'A','/NewUAType',NULL,NULL,NULL,NULL),(6987,854,'A','/NewUAType/Config4CE.xml',NULL,NULL,NULL,NULL),(6988,854,'A','/NewUAType/NewUAInstances.xml',NULL,NULL,NULL,NULL),(6989,854,'A','/NewUAType/NewUAType.vcproj',NULL,NULL,NULL,NULL),(6990,854,'A','/NewUAType/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(6991,854,'A','/NewUAType/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(6992,854,'A','/NewUAType/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(6993,854,'A','/NewUAType/StartServerDebug.bat',NULL,NULL,NULL,NULL),(6994,854,'A','/NewUAType/StartServerRelease.bat',NULL,NULL,NULL,NULL),(6995,854,'A','/NewUAType/UANewDataType.xml',NULL,NULL,NULL,NULL),(6996,854,'A','/NewUAType/UANodeSet.xsd',NULL,NULL,NULL,NULL),(6997,855,'A','/Simulation',NULL,NULL,NULL,NULL),(6998,855,'A','/Simulation/Config4CE.xml',NULL,NULL,NULL,NULL),(6999,855,'A','/Simulation/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(7000,855,'A','/Simulation/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(7001,855,'A','/Simulation/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(7002,855,'A','/Simulation/Opc.Ua.SimulationNodeSet2.xml',NULL,NULL,NULL,NULL),(7003,855,'A','/Simulation/OpenOpcUa.Simulation.xml',NULL,NULL,NULL,NULL),(7004,855,'A','/Simulation/Simulation.vcproj',NULL,NULL,NULL,NULL),(7005,855,'A','/Simulation/StartServerDebug.bat',NULL,NULL,NULL,NULL),(7006,855,'A','/Simulation/StartServerRelease.bat',NULL,NULL,NULL,NULL),(7007,855,'A','/Simulation/UANodeSet.xsd',NULL,NULL,NULL,NULL),(7008,855,'A','/Simulation/UASimulation.xsd',NULL,NULL,NULL,NULL),(7009,856,'A','/Zcl',NULL,NULL,NULL,NULL),(7010,856,'A','/Zcl/ConfigZcl.xml',NULL,NULL,NULL,NULL),(7011,856,'A','/Zcl/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(7012,856,'A','/Zcl/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(7013,856,'A','/Zcl/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(7014,856,'A','/Zcl/Opc.Ua.NodeSet2.Part8.xml',NULL,NULL,NULL,NULL),(7015,856,'A','/Zcl/Opc.Ua.NodeSet2.Zcl-Instances.xml',NULL,NULL,NULL,NULL),(7016,856,'A','/Zcl/Opc.Ua.NodeSet2.ZclType.xml',NULL,NULL,NULL,NULL),(7017,856,'A','/Zcl/UANodeSet.xsd',NULL,NULL,NULL,NULL),(7018,856,'A','/Zcl/Zcl.vcproj',NULL,NULL,NULL,NULL),(7019,857,'M','/61850/61850.vcproj',NULL,NULL,NULL,NULL),(7020,858,'M','/61970/61970.vcproj',NULL,NULL,NULL,NULL),(7021,859,'M','/CTT/CTT.vcproj',NULL,NULL,NULL,NULL),(7022,860,'M','/ADI/Demo-ADI.vcproj',NULL,NULL,NULL,NULL),(7023,861,'M','/Demo-DI/Demo-DI.vcproj',NULL,NULL,NULL,NULL),(7024,862,'M','/DemoB2MML/DemoB2MML.vcproj',NULL,NULL,NULL,NULL),(7025,863,'M','/LaboNeutron/LaboNeutron.vcproj',NULL,NULL,NULL,NULL),(7026,864,'M','/Minimum/Minimum.vcproj',NULL,NULL,NULL,NULL),(7027,865,'M','/Minimum-HTTP/Minimum-HTTP.vcproj',NULL,NULL,NULL,NULL),(7028,866,'M','/NewUAType/NewUAType.vcproj',NULL,NULL,NULL,NULL),(7029,867,'M','/Simulation/Simulation.vcproj',NULL,NULL,NULL,NULL),(7030,868,'A','/VpiMca527/VpiMca527/VpiMca527.sln',NULL,NULL,NULL,NULL),(7031,869,'D','/VpiMca527/VpiMca527.sln',NULL,NULL,NULL,NULL),(7032,870,'D','/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(7033,871,'A','/VpiMca527/Vpis.sln',NULL,NULL,NULL,NULL),(7034,872,'A','/VpiMca527/OpenOpcUaVpiLibrary',NULL,NULL,NULL,NULL),(7035,872,'A','/VpiMca527/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary',NULL,NULL,NULL,NULL),(7036,872,'A','/VpiMca527/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.sln',NULL,NULL,NULL,NULL),(7037,872,'A','/VpiMca527/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.cpp',NULL,NULL,NULL,NULL),(7038,872,'A','/VpiMca527/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(7039,872,'A','/VpiMca527/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/ReadMe.txt',NULL,NULL,NULL,NULL),(7040,872,'A','/VpiMca527/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/dllmain.cpp',NULL,NULL,NULL,NULL),(7041,872,'A','/VpiMca527/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/stdafx.cpp',NULL,NULL,NULL,NULL),(7042,872,'A','/VpiMca527/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/stdafx.h',NULL,NULL,NULL,NULL),(7043,872,'A','/VpiMca527/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/targetver.h',NULL,NULL,NULL,NULL),(7044,873,'D','/VpiMca527/OpenOpcUaVpiLibrary',NULL,NULL,NULL,NULL),(7045,874,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(7046,875,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(7047,875,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(7048,875,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(7049,875,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(7050,875,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(7051,875,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(7052,875,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(7053,876,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(7054,877,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(7055,878,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(7056,878,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(7057,879,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(7058,879,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7059,879,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(7060,880,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(7061,881,'M','/trunk/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(7062,881,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(7063,882,'M','/trunk/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(7064,883,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(7065,883,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(7066,884,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(7067,885,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7068,885,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(7069,886,'M','/trunk/UAStackV1/include/shared/opcua_p_string.h',NULL,NULL,NULL,NULL),(7070,886,'M','/trunk/UAStackV1/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(7071,886,'M','/trunk/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(7072,886,'M','/trunk/UAStackV1/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(7073,886,'M','/trunk/UAStackV1/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(7074,886,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(7075,886,'M','/trunk/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(7076,887,'M','/trunk/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(7077,888,'M','/trunk/UAStackV1/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(7078,888,'M','/trunk/UAStackV1/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(7079,888,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(7080,889,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(7081,890,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7082,890,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(7083,890,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(7084,890,'M','/trunk/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(7085,890,'M','/trunk/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(7086,891,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(7087,892,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(7088,893,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(7089,894,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(7090,894,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(7091,895,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(7092,896,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(7093,897,'M','/trunk/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(7094,897,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(7095,898,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(7096,898,'M','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(7097,898,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(7098,898,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(7099,898,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(7100,898,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(7101,898,'M','/trunk/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(7102,898,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7103,898,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(7104,898,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(7105,899,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(7106,900,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7107,901,'M','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(7108,901,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(7109,901,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(7110,901,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(7111,901,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(7112,901,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(7113,901,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7114,901,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(7115,901,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(7116,901,'M','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(7117,901,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(7118,901,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(7119,901,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(7120,902,'A','/trunk/HaEngine.cpp',NULL,NULL,NULL,NULL),(7121,902,'A','/trunk/HaEngine.h',NULL,NULL,NULL,NULL),(7122,902,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(7123,902,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(7124,902,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(7125,902,'A','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(7126,903,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(7127,903,'A','/trunk/ServerShared/VfiDataValue.h',NULL,NULL,NULL,NULL),(7128,903,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(7129,903,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(7130,903,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(7131,903,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(7132,903,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(7133,903,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(7134,903,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(7135,903,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7136,903,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(7137,903,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(7138,903,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(7139,903,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(7140,903,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(7141,903,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(7142,903,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(7143,903,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(7144,904,'D','/trunk/HaEngine.cpp',NULL,NULL,NULL,NULL),(7145,904,'D','/trunk/HaEngine.h',NULL,NULL,NULL,NULL),(7146,905,'A','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(7147,905,'A','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(7148,906,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(7149,906,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(7150,906,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(7151,906,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(7152,906,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(7153,906,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(7154,906,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(7155,906,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7156,906,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(7157,906,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(7158,906,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(7159,906,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(7160,906,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(7161,906,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(7162,906,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(7163,907,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(7164,907,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(7165,907,'A','/trunk/include/UAHistorianVariable.h',NULL,NULL,NULL,NULL),(7166,907,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(7167,907,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(7168,907,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(7169,907,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(7170,907,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(7171,907,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(7172,907,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7173,907,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(7174,907,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(7175,907,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(7176,907,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(7177,907,'A','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(7178,907,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(7179,907,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(7180,907,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(7181,908,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(7182,908,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(7183,909,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(7184,909,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(7185,909,'M','/trunk/include/UAHistorianVariable.h',NULL,NULL,NULL,NULL),(7186,909,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(7187,909,'M','/trunk/include/UAReference.h',NULL,NULL,NULL,NULL),(7188,909,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(7189,909,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(7190,909,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(7191,909,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7192,909,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(7193,909,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(7194,909,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(7195,909,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(7196,909,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(7197,909,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(7198,910,'M','/trunk/ServerShared/VfiDataValue.h',NULL,NULL,NULL,NULL),(7199,910,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(7200,910,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(7201,910,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(7202,910,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(7203,910,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7204,911,'M','/SharedVpis/SharedVpis/VpiDataValue.h',NULL,NULL,NULL,NULL),(7205,912,'M','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(7206,913,'A','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(7207,913,'M','/SharedVpis/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(7208,914,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(7209,915,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(7210,916,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(7211,917,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(7212,917,'M','/SharedVpis/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(7213,917,'M','/SharedVpis/SharedVpis/VpiDataValue.h',NULL,NULL,NULL,NULL),(7214,918,'M','/SharedVpis/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(7215,918,'D','/SharedVpis/SharedVpis/cslock.h',NULL,NULL,NULL,NULL),(7216,919,'M','/SharedVpis/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(7217,920,'A','/SharedVpis/SharedVpis/OpcUaVpiMutSem.h',NULL,NULL,NULL,NULL),(7218,920,'M','/SharedVpis/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(7219,921,'M','/SharedVpis/SharedVpis/OpcUaVpiMutSem.h',NULL,NULL,NULL,NULL),(7220,922,'A','/VpiNull',NULL,NULL,NULL,NULL),(7221,922,'A','/VpiNull/CMakeLists.txt',NULL,NULL,NULL,NULL),(7222,922,'A','/VpiNull/Demo',NULL,NULL,NULL,NULL),(7223,922,'A','/VpiNull/Demo/Config',NULL,NULL,NULL,NULL),(7224,922,'A','/VpiNull/Demo/Config/ConfigNull.xml',NULL,NULL,NULL,NULL),(7225,922,'A','/VpiNull/Demo/Config/Labo-Null.xml',NULL,NULL,NULL,NULL),(7226,922,'A','/VpiNull/Demo/Config/Null-001.xml',NULL,NULL,NULL,NULL),(7227,922,'A','/VpiNull/Demo/Config/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(7228,922,'A','/VpiNull/Demo/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(7229,922,'A','/VpiNull/Demo/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(7230,922,'A','/VpiNull/Demo/StartServer_Debug.bat',NULL,NULL,NULL,NULL),(7231,922,'A','/VpiNull/VPINull.sln',NULL,NULL,NULL,NULL),(7232,922,'A','/VpiNull/VPINull.vcproj',NULL,NULL,NULL,NULL),(7233,922,'A','/VpiNull/include',NULL,NULL,NULL,NULL),(7234,922,'A','/VpiNull/include/SourceObject.h',NULL,NULL,NULL,NULL),(7235,922,'A','/VpiNull/include/VPINull.h',NULL,NULL,NULL,NULL),(7236,922,'A','/VpiNull/include/stdafx.h',NULL,NULL,NULL,NULL),(7237,922,'A','/VpiNull/include/targetver.h',NULL,NULL,NULL,NULL),(7238,922,'A','/VpiNull/source',NULL,NULL,NULL,NULL),(7239,922,'A','/VpiNull/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(7240,922,'A','/VpiNull/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(7241,922,'A','/VpiNull/source/VPINull.cpp',NULL,NULL,NULL,NULL),(7242,922,'A','/VpiNull/source/VPINull.def',NULL,NULL,NULL,NULL),(7243,922,'A','/VpiNull/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(7244,922,'A','/VpiNull/source/dllmain.cpp',NULL,NULL,NULL,NULL),(7245,922,'A','/VpiNull/source/stdafx.cpp',NULL,NULL,NULL,NULL),(7246,923,'M','/VpiNull/VPINull.vcproj',NULL,NULL,NULL,NULL),(7247,924,'M','/VpiNull/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(7248,925,'M','/VpiNull/VPINull.vcproj',NULL,NULL,NULL,NULL),(7249,925,'M','/VpiNull/include/stdafx.h',NULL,NULL,NULL,NULL),(7250,925,'M','/VpiNull/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(7251,926,'M','/Zcl/Zcl.vcproj',NULL,NULL,NULL,NULL),(7252,927,'M','/Demos/Demos.sln',NULL,NULL,NULL,NULL),(7253,928,'M','/CTT/CTT.vcproj',NULL,NULL,NULL,NULL),(7254,928,'A','/CTT/Types.xsd',NULL,NULL,NULL,NULL),(7255,929,'M','/61850/Config61850.xml',NULL,NULL,NULL,NULL),(7256,929,'M','/61850/IEC 61850/IEC_61850_CID_UANodeset7.xml',NULL,NULL,NULL,NULL),(7257,929,'M','/61850/IEC 61850/IEC_61850_CID_UANodesetTypes7.xml',NULL,NULL,NULL,NULL),(7258,930,'M','/CTT/Config4CE.xml',NULL,NULL,NULL,NULL),(7259,930,'M','/CTT/Opc.Ua.CTT.xml',NULL,NULL,NULL,NULL),(7260,930,'M','/CTT/Types.xsd',NULL,NULL,NULL,NULL),(7261,931,'M','/Demos/Demos.sln',NULL,NULL,NULL,NULL),(7262,932,'A','/Simulation/ServerConfig.xsd',NULL,NULL,NULL,NULL),(7263,932,'M','/Simulation/Simulation.vcproj',NULL,NULL,NULL,NULL),(7264,933,'M','/Simulation/Opc.Ua.SimulationNodeSet2.xml',NULL,NULL,NULL,NULL),(7265,934,'A','/SharedVfis',NULL,NULL,NULL,NULL),(7266,934,'A','/SharedVfis/SharedVfis.sln',NULL,NULL,NULL,NULL),(7267,934,'A','/SharedVfis/include',NULL,NULL,NULL,NULL),(7268,934,'A','/SharedVfis/include/SharedVfis.vcproj',NULL,NULL,NULL,NULL),(7269,934,'A','/SharedVfis/include/Vfi.h',NULL,NULL,NULL,NULL),(7270,934,'A','/SharedVfis/include/VfiDataTypes.h',NULL,NULL,NULL,NULL),(7271,934,'A','/SharedVfis/include/VfiDataValue.h',NULL,NULL,NULL,NULL),(7272,934,'A','/SharedVfis/include/VfiTypes.h',NULL,NULL,NULL,NULL),(7273,935,'M','/SharedVfis/SharedVfis.sln',NULL,NULL,NULL,NULL),(7274,936,'A','/SharedVfis/VfiCsv',NULL,NULL,NULL,NULL),(7275,936,'A','/SharedVfis/VfiCsv/CSVFile.cpp',NULL,NULL,NULL,NULL),(7276,936,'A','/SharedVfis/VfiCsv/CSVFile.h',NULL,NULL,NULL,NULL),(7277,936,'A','/SharedVfis/VfiCsv/LineHistorian.cpp',NULL,NULL,NULL,NULL),(7278,936,'A','/SharedVfis/VfiCsv/LineHistorian.h',NULL,NULL,NULL,NULL),(7279,936,'A','/SharedVfis/VfiCsv/ReadMe.txt',NULL,NULL,NULL,NULL),(7280,936,'A','/SharedVfis/VfiCsv/VfiCsv.cpp',NULL,NULL,NULL,NULL),(7281,936,'A','/SharedVfis/VfiCsv/VfiCsv.def',NULL,NULL,NULL,NULL),(7282,936,'A','/SharedVfis/VfiCsv/VfiCsv.h',NULL,NULL,NULL,NULL),(7283,936,'A','/SharedVfis/VfiCsv/VfiCsv.sln',NULL,NULL,NULL,NULL),(7284,936,'A','/SharedVfis/VfiCsv/VfiCsv.vcproj',NULL,NULL,NULL,NULL),(7285,936,'A','/SharedVfis/VfiCsv/VfiCsvd.def',NULL,NULL,NULL,NULL),(7286,936,'A','/SharedVfis/VfiCsv/VfiInternal.cpp',NULL,NULL,NULL,NULL),(7287,936,'A','/SharedVfis/VfiCsv/VfiInternal.h',NULL,NULL,NULL,NULL),(7288,936,'A','/SharedVfis/VfiCsv/dllmain.cpp',NULL,NULL,NULL,NULL),(7289,936,'A','/SharedVfis/VfiCsv/stdafx.cpp',NULL,NULL,NULL,NULL),(7290,936,'A','/SharedVfis/VfiCsv/stdafx.h',NULL,NULL,NULL,NULL),(7291,936,'A','/SharedVfis/VfiCsv/targetver.h',NULL,NULL,NULL,NULL),(7292,937,'D','/SharedVfis/VfiCsv',NULL,NULL,NULL,NULL),(7293,938,'D','/SharedVfis',NULL,NULL,NULL,NULL),(7294,939,'A','/Vfis.sln',NULL,NULL,NULL,NULL),(7295,939,'A','/include',NULL,NULL,NULL,NULL),(7296,939,'A','/include/SharedVfis.vcproj',NULL,NULL,NULL,NULL),(7297,939,'A','/include/Vfi.h',NULL,NULL,NULL,NULL),(7298,939,'A','/include/VfiDataTypes.h',NULL,NULL,NULL,NULL),(7299,939,'A','/include/VfiDataValue.h',NULL,NULL,NULL,NULL),(7300,939,'A','/include/VfiTypes.h',NULL,NULL,NULL,NULL),(7301,940,'M','/Vfis.sln',NULL,NULL,NULL,NULL),(7302,941,'A','/VfiCsv',NULL,NULL,NULL,NULL),(7303,942,'A','/VfiCsv/CSVFile.cpp',NULL,NULL,NULL,NULL),(7304,942,'A','/VfiCsv/CSVFile.h',NULL,NULL,NULL,NULL),(7305,942,'A','/VfiCsv/LineHistorian.cpp',NULL,NULL,NULL,NULL),(7306,942,'A','/VfiCsv/LineHistorian.h',NULL,NULL,NULL,NULL),(7307,942,'A','/VfiCsv/ReadMe.txt',NULL,NULL,NULL,NULL),(7308,942,'A','/VfiCsv/VfiCsv.cpp',NULL,NULL,NULL,NULL),(7309,942,'A','/VfiCsv/VfiCsv.def',NULL,NULL,NULL,NULL),(7310,942,'A','/VfiCsv/VfiCsv.h',NULL,NULL,NULL,NULL),(7311,942,'A','/VfiCsv/VfiCsv.sln',NULL,NULL,NULL,NULL),(7312,942,'A','/VfiCsv/VfiCsv.vcproj',NULL,NULL,NULL,NULL),(7313,942,'A','/VfiCsv/VfiCsvd.def',NULL,NULL,NULL,NULL),(7314,942,'A','/VfiCsv/VfiInternal.cpp',NULL,NULL,NULL,NULL),(7315,942,'A','/VfiCsv/VfiInternal.h',NULL,NULL,NULL,NULL),(7316,942,'A','/VfiCsv/dllmain.cpp',NULL,NULL,NULL,NULL),(7317,942,'A','/VfiCsv/stdafx.cpp',NULL,NULL,NULL,NULL),(7318,942,'A','/VfiCsv/stdafx.h',NULL,NULL,NULL,NULL),(7319,942,'A','/VfiCsv/targetver.h',NULL,NULL,NULL,NULL),(7320,943,'A','/SharedHeader',NULL,NULL,NULL,NULL),(7321,943,'A','/SharedHeader/SharedHeader.sln',NULL,NULL,NULL,NULL),(7322,943,'A','/SharedHeader/SharedHeader.vcproj',NULL,NULL,NULL,NULL),(7323,944,'M','/SharedHeader/SharedHeader.sln',NULL,NULL,NULL,NULL),(7324,945,'D','/SharedHeader',NULL,NULL,NULL,NULL),(7325,946,'A','/OpenOpcUaClientsSdk.sln',NULL,NULL,NULL,NULL),(7326,946,'A','/OpenOpcUaClientsSdk.vcproj',NULL,NULL,NULL,NULL),(7327,946,'A','/OpenOpcUaSdkClient.h',NULL,NULL,NULL,NULL),(7328,946,'A','/shared',NULL,NULL,NULL,NULL),(7329,946,'A','/shared/OpenOpcUa_Attributes.h',NULL,NULL,NULL,NULL),(7330,946,'A','/shared/OpenOpcUa_Errors.h',NULL,NULL,NULL,NULL),(7331,946,'A','/shared/OpenOpcUa_Identifiers.h',NULL,NULL,NULL,NULL),(7332,946,'A','/shared/OpenOpcUa_builtintypes.h',NULL,NULL,NULL,NULL),(7333,946,'A','/shared/OpenOpcUa_p_types.h',NULL,NULL,NULL,NULL),(7334,946,'A','/shared/OpenOpcUa_types.h',NULL,NULL,NULL,NULL),(7335,947,'M','/OpenOpcUaClientsSdk.vcproj',NULL,NULL,NULL,NULL),(7336,948,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(7337,949,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(7338,949,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(7339,949,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(7340,949,'M','/trunk/source/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(7341,949,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(7342,949,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(7343,949,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(7344,950,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(7345,950,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(7346,950,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(7347,951,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(7348,951,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(7349,952,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(7350,952,'M','/trunk/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(7351,953,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(7352,954,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(7353,955,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(7354,955,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(7355,956,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(7356,956,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(7357,956,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(7358,956,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(7359,956,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(7360,956,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(7361,957,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(7362,957,'D','/trunk/include/AggregateCalculator.h',NULL,NULL,NULL,NULL),(7363,957,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(7364,957,'D','/trunk/source/AggregateCalculator.cpp',NULL,NULL,NULL,NULL),(7365,957,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(7366,957,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(7367,957,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(7368,957,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(7369,957,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(7370,958,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(7371,958,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(7372,958,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(7373,958,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(7374,958,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(7375,959,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(7376,959,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(7377,959,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(7378,959,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(7379,959,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(7380,960,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(7381,961,'M','/trunk/OPCUA_CPP_SharedLib.sln',NULL,NULL,NULL,NULL),(7382,961,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(7383,962,'A','/Demos/CSV-HA',NULL,NULL,NULL,NULL),(7384,963,'A','/Demos/CSV-HA/Config4CE.xml',NULL,NULL,NULL,NULL),(7385,964,'A','/Demos/CSV-HA/CSV-HA.vcproj',NULL,NULL,NULL,NULL),(7386,965,'A','/Demos/CSV-HA/HAEngineConfig.xsd',NULL,NULL,NULL,NULL),(7387,966,'A','/Demos/CSV-HA/Opc.Ua.HistorianNodeSet2.xml',NULL,NULL,NULL,NULL),(7388,967,'A','/Demos/CSV-HA/Opc.Ua.NodeSet2.Part11.xml',NULL,NULL,NULL,NULL),(7389,968,'A','/Demos/Bacnet',NULL,NULL,NULL,NULL),(7390,968,'A','/Demos/Bacnet/Bacnet.vcproj',NULL,NULL,NULL,NULL),(7391,968,'A','/Demos/Bacnet/ConfigBacnet.xml',NULL,NULL,NULL,NULL),(7392,968,'A','/Demos/Bacnet/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(7393,968,'A','/Demos/Bacnet/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(7394,968,'A','/Demos/Bacnet/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(7395,968,'A','/Demos/Bacnet/Opc.Ua.NodeSet2.Part8.xml',NULL,NULL,NULL,NULL),(7396,968,'A','/Demos/Bacnet/bacnetuamodel.xml',NULL,NULL,NULL,NULL),(7397,969,'A','/Demos/Demos',NULL,NULL,NULL,NULL),(7398,969,'A','/Demos/Demos/Demos.sln',NULL,NULL,NULL,NULL),(7399,970,'M','/Demos/Demos/Demos.sln',NULL,NULL,NULL,NULL),(7400,971,'M','/Demos/Demos/Demos.sln',NULL,NULL,NULL,NULL),(7401,972,'M','/Demos/Demos/Demos.sln',NULL,NULL,NULL,NULL),(7402,973,'M','/trunk/Doc/Analyse UAClientLib.docx',NULL,NULL,NULL,NULL),(7403,973,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7404,973,'A','/trunk/UAClientLib/include/ClientAttribute.h',NULL,NULL,NULL,NULL),(7405,973,'M','/trunk/UAClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(7406,973,'M','/trunk/UAClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(7407,973,'M','/trunk/UAClientLib/include/UABuiltInType.h',NULL,NULL,NULL,NULL),(7408,973,'M','/trunk/UAClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(7409,973,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(7410,973,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(7411,973,'A','/trunk/UAClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(7412,973,'A','/trunk/UAClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(7413,973,'M','/trunk/UAClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(7414,973,'D','/trunk/UAClientLib/source/UAClientLib.def',NULL,NULL,NULL,NULL),(7415,973,'D','/trunk/UAClientLib/source/UAClientLibd.def',NULL,NULL,NULL,NULL),(7416,973,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(7417,973,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(7418,973,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(7419,973,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(7420,973,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(7421,974,'M','/trunk/UAClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(7422,974,'M','/trunk/UAClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(7423,974,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(7424,974,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(7425,974,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(7426,974,'M','/trunk/UAClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(7427,974,'M','/trunk/UAClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(7428,975,'A','/trunk/UAClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(7429,975,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7430,975,'A','/trunk/UAClientLib/include/resource.h',NULL,NULL,NULL,NULL),(7431,975,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(7432,976,'M','/trunk/UAClientLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(7433,976,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7434,976,'M','/trunk/UAClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(7435,976,'M','/trunk/UAClientLib/include/ClientAttribute.h',NULL,NULL,NULL,NULL),(7436,976,'M','/trunk/UAClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(7437,976,'M','/trunk/UAClientLib/include/UABuiltInType.h',NULL,NULL,NULL,NULL),(7438,976,'M','/trunk/UAClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(7439,976,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(7440,976,'M','/trunk/UAClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(7441,976,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(7442,976,'M','/trunk/UAClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(7443,977,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(7444,977,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(7445,978,'M','/trunk/UAClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(7446,978,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7447,978,'D','/trunk/UAClientLib/include/resource.h',NULL,NULL,NULL,NULL),(7448,978,'A','/trunk/UAClientLib/resource.h',NULL,NULL,NULL,NULL),(7449,978,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(7450,979,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7451,980,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(7452,981,'M','/trunk/UAClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(7453,981,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7454,981,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(7455,982,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7456,983,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7457,983,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(7458,984,'D','/trunk/UAClientLib.sln',NULL,NULL,NULL,NULL),(7459,985,'A','/trunk/OpenOpcUaClientLib.sln',NULL,NULL,NULL,NULL),(7460,986,'A','/trunk/OpenOpcUaClientLib_VS2012.sln',NULL,NULL,NULL,NULL),(7461,986,'A','/trunk/UAClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(7462,987,'M','/trunk/UAClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(7463,987,'M','/trunk/UAClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(7464,987,'M','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(7465,987,'M','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(7466,987,'M','/trunk/UAClientLibTester/UAClientLibTester.rc',NULL,NULL,NULL,NULL),(7467,987,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(7468,987,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(7469,987,'M','/trunk/UAClientLibTester/UAClientLibTesterDlg.h',NULL,NULL,NULL,NULL),(7470,987,'M','/trunk/UAClientLibTester/resource.h',NULL,NULL,NULL,NULL),(7471,988,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7472,989,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(7473,990,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(7474,991,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7475,992,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7476,993,'D','/trunk/Lib/win32/libxml2.lib',NULL,NULL,NULL,NULL),(7477,994,'D','/trunk/Lib/win32/libeay32.dll',NULL,NULL,NULL,NULL),(7478,995,'D','/trunk/Lib/win32/uastackd.lib',NULL,NULL,NULL,NULL),(7479,996,'D','/trunk/Lib/win32/OPCUA_CPP_SharedLibd.lib',NULL,NULL,NULL,NULL),(7480,997,'M','/trunk/Lib/win32/libeay32.lib',NULL,NULL,NULL,NULL),(7481,997,'A','/trunk/Lib/win32/ssleay32.lib',NULL,NULL,NULL,NULL),(7482,997,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7483,998,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7484,999,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7485,999,'M','/trunk/UAStackV1/include/win32/openssl/aes.h',NULL,NULL,NULL,NULL),(7486,999,'A','/trunk/UAStackV1/include/win32/openssl/applink.c',NULL,NULL,NULL,NULL),(7487,999,'M','/trunk/UAStackV1/include/win32/openssl/asn1.h',NULL,NULL,NULL,NULL),(7488,999,'M','/trunk/UAStackV1/include/win32/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(7489,999,'M','/trunk/UAStackV1/include/win32/openssl/asn1t.h',NULL,NULL,NULL,NULL),(7490,999,'M','/trunk/UAStackV1/include/win32/openssl/bio.h',NULL,NULL,NULL,NULL),(7491,999,'M','/trunk/UAStackV1/include/win32/openssl/blowfish.h',NULL,NULL,NULL,NULL),(7492,999,'M','/trunk/UAStackV1/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(7493,999,'M','/trunk/UAStackV1/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(7494,999,'A','/trunk/UAStackV1/include/win32/openssl/camellia.h',NULL,NULL,NULL,NULL),(7495,999,'M','/trunk/UAStackV1/include/win32/openssl/cast.h',NULL,NULL,NULL,NULL),(7496,999,'A','/trunk/UAStackV1/include/win32/openssl/cmac.h',NULL,NULL,NULL,NULL),(7497,999,'A','/trunk/UAStackV1/include/win32/openssl/cms.h',NULL,NULL,NULL,NULL),(7498,999,'M','/trunk/UAStackV1/include/win32/openssl/conf.h',NULL,NULL,NULL,NULL),(7499,999,'M','/trunk/UAStackV1/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(7500,999,'M','/trunk/UAStackV1/include/win32/openssl/des.h',NULL,NULL,NULL,NULL),(7501,999,'M','/trunk/UAStackV1/include/win32/openssl/dh.h',NULL,NULL,NULL,NULL),(7502,999,'M','/trunk/UAStackV1/include/win32/openssl/dsa.h',NULL,NULL,NULL,NULL),(7503,999,'M','/trunk/UAStackV1/include/win32/openssl/dso.h',NULL,NULL,NULL,NULL),(7504,999,'M','/trunk/UAStackV1/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(7505,999,'M','/trunk/UAStackV1/include/win32/openssl/e_os2.h',NULL,NULL,NULL,NULL),(7506,999,'M','/trunk/UAStackV1/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(7507,999,'M','/trunk/UAStackV1/include/win32/openssl/ecdh.h',NULL,NULL,NULL,NULL),(7508,999,'M','/trunk/UAStackV1/include/win32/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(7509,999,'M','/trunk/UAStackV1/include/win32/openssl/engine.h',NULL,NULL,NULL,NULL),(7510,999,'M','/trunk/UAStackV1/include/win32/openssl/err.h',NULL,NULL,NULL,NULL),(7511,999,'M','/trunk/UAStackV1/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(7512,999,'M','/trunk/UAStackV1/include/win32/openssl/hmac.h',NULL,NULL,NULL,NULL),(7513,999,'M','/trunk/UAStackV1/include/win32/openssl/idea.h',NULL,NULL,NULL,NULL),(7514,999,'M','/trunk/UAStackV1/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(7515,999,'M','/trunk/UAStackV1/include/win32/openssl/lhash.h',NULL,NULL,NULL,NULL),(7516,999,'M','/trunk/UAStackV1/include/win32/openssl/md4.h',NULL,NULL,NULL,NULL),(7517,999,'M','/trunk/UAStackV1/include/win32/openssl/md5.h',NULL,NULL,NULL,NULL),(7518,999,'A','/trunk/UAStackV1/include/win32/openssl/mdc2.h',NULL,NULL,NULL,NULL),(7519,999,'A','/trunk/UAStackV1/include/win32/openssl/modes.h',NULL,NULL,NULL,NULL),(7520,999,'M','/trunk/UAStackV1/include/win32/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(7521,999,'M','/trunk/UAStackV1/include/win32/openssl/objects.h',NULL,NULL,NULL,NULL),(7522,999,'M','/trunk/UAStackV1/include/win32/openssl/ocsp.h',NULL,NULL,NULL,NULL),(7523,999,'M','/trunk/UAStackV1/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(7524,999,'M','/trunk/UAStackV1/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(7525,999,'M','/trunk/UAStackV1/include/win32/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(7526,999,'M','/trunk/UAStackV1/include/win32/openssl/pem.h',NULL,NULL,NULL,NULL),(7527,999,'M','/trunk/UAStackV1/include/win32/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(7528,999,'M','/trunk/UAStackV1/include/win32/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(7529,999,'M','/trunk/UAStackV1/include/win32/openssl/pqueue.h',NULL,NULL,NULL,NULL),(7530,999,'M','/trunk/UAStackV1/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(7531,999,'M','/trunk/UAStackV1/include/win32/openssl/rc4.h',NULL,NULL,NULL,NULL),(7532,999,'M','/trunk/UAStackV1/include/win32/openssl/ripemd.h',NULL,NULL,NULL,NULL),(7533,999,'M','/trunk/UAStackV1/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(7534,999,'M','/trunk/UAStackV1/include/win32/openssl/safestack.h',NULL,NULL,NULL,NULL),(7535,999,'A','/trunk/UAStackV1/include/win32/openssl/seed.h',NULL,NULL,NULL,NULL),(7536,999,'M','/trunk/UAStackV1/include/win32/openssl/sha.h',NULL,NULL,NULL,NULL),(7537,999,'A','/trunk/UAStackV1/include/win32/openssl/srp.h',NULL,NULL,NULL,NULL),(7538,999,'A','/trunk/UAStackV1/include/win32/openssl/srtp.h',NULL,NULL,NULL,NULL),(7539,999,'M','/trunk/UAStackV1/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(7540,999,'M','/trunk/UAStackV1/include/win32/openssl/ssl2.h',NULL,NULL,NULL,NULL),(7541,999,'M','/trunk/UAStackV1/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(7542,999,'M','/trunk/UAStackV1/include/win32/openssl/stack.h',NULL,NULL,NULL,NULL),(7543,999,'M','/trunk/UAStackV1/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(7544,999,'M','/trunk/UAStackV1/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(7545,999,'A','/trunk/UAStackV1/include/win32/openssl/ts.h',NULL,NULL,NULL,NULL),(7546,999,'M','/trunk/UAStackV1/include/win32/openssl/txt_db.h',NULL,NULL,NULL,NULL),(7547,999,'M','/trunk/UAStackV1/include/win32/openssl/ui.h',NULL,NULL,NULL,NULL),(7548,999,'A','/trunk/UAStackV1/include/win32/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(7549,999,'M','/trunk/UAStackV1/include/win32/openssl/x509.h',NULL,NULL,NULL,NULL),(7550,999,'M','/trunk/UAStackV1/include/win32/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(7551,999,'M','/trunk/UAStackV1/include/win32/openssl/x509v3.h',NULL,NULL,NULL,NULL),(7552,1000,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7553,1000,'R','/trunk/UAStackV1/include/win32/openssl/applink.c',NULL,NULL,NULL,NULL),(7554,1000,'R','/trunk/UAStackV1/include/win32/openssl/camellia.h',NULL,NULL,NULL,NULL),(7555,1000,'R','/trunk/UAStackV1/include/win32/openssl/cmac.h',NULL,NULL,NULL,NULL),(7556,1000,'R','/trunk/UAStackV1/include/win32/openssl/cms.h',NULL,NULL,NULL,NULL),(7557,1000,'R','/trunk/UAStackV1/include/win32/openssl/mdc2.h',NULL,NULL,NULL,NULL),(7558,1000,'R','/trunk/UAStackV1/include/win32/openssl/modes.h',NULL,NULL,NULL,NULL),(7559,1000,'R','/trunk/UAStackV1/include/win32/openssl/seed.h',NULL,NULL,NULL,NULL),(7560,1000,'R','/trunk/UAStackV1/include/win32/openssl/srp.h',NULL,NULL,NULL,NULL),(7561,1000,'R','/trunk/UAStackV1/include/win32/openssl/srtp.h',NULL,NULL,NULL,NULL),(7562,1000,'R','/trunk/UAStackV1/include/win32/openssl/ts.h',NULL,NULL,NULL,NULL),(7563,1000,'R','/trunk/UAStackV1/include/win32/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(7564,1001,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7565,1002,'R','/trunk/Lib/win32/ssleay32.lib',NULL,NULL,NULL,NULL),(7566,1003,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(7567,1003,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(7568,1004,'M','/trunk/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(7569,1005,'D','/trunk/UAStackV1/source/opcua_httpconnection.c',NULL,NULL,NULL,NULL),(7570,1005,'D','/trunk/UAStackV1/source/opcua_httpconnection_securityproxy.c',NULL,NULL,NULL,NULL),(7571,1005,'D','/trunk/UAStackV1/source/opcua_httplistener.c',NULL,NULL,NULL,NULL),(7572,1005,'D','/trunk/UAStackV1/source/opcua_httplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(7573,1005,'D','/trunk/UAStackV1/source/opcua_httplistener_securitystub.c',NULL,NULL,NULL,NULL),(7574,1006,'D','/trunk/UAStackV1/include/shared/opcua_httpconnection.h',NULL,NULL,NULL,NULL),(7575,1006,'D','/trunk/UAStackV1/include/shared/opcua_httpconnection_securityproxy.h',NULL,NULL,NULL,NULL),(7576,1006,'D','/trunk/UAStackV1/include/shared/opcua_httplistener.h',NULL,NULL,NULL,NULL),(7577,1006,'D','/trunk/UAStackV1/include/shared/opcua_httplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(7578,1006,'D','/trunk/UAStackV1/include/shared/opcua_httplistener_securitystub.h',NULL,NULL,NULL,NULL),(7579,1007,'M','/trunk/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(7580,1007,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(7581,1007,'M','/trunk/UAStackV1/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(7582,1007,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(7583,1007,'M','/trunk/UAStackV1/source/opcua_thread.c',NULL,NULL,NULL,NULL),(7584,1008,'M','/trunk/UAStackV1/UAStackV1.vcproj',NULL,NULL,NULL,NULL),(7585,1009,'A','/trunk/UAStackV1/UAStackV1.vcxproj',NULL,NULL,NULL,NULL),(7586,1009,'A','/trunk/UAStackV1/UAStackV1.vcxproj.filters',NULL,NULL,NULL,NULL),(7587,1010,'A','/trunk/OpcUAStackV1_VS2013.sln',NULL,NULL,NULL,NULL),(7588,1011,'A','/OpenOpcUa_VS2013',NULL,NULL,NULL,NULL),(7589,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer',NULL,NULL,NULL,NULL),(7590,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/CMakeLists.txt',NULL,NULL,NULL,NULL),(7591,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/Doc',NULL,NULL,NULL,NULL),(7592,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(7593,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(7594,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(7595,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(7596,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared',NULL,NULL,NULL,NULL),(7597,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared/VfiDataValue.h',NULL,NULL,NULL,NULL),(7598,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(7599,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(7600,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include',NULL,NULL,NULL,NULL),(7601,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(7602,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(7603,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(7604,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/Alias.h',NULL,NULL,NULL,NULL),(7605,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/ContinuationPoint.h',NULL,NULL,NULL,NULL),(7606,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/Definition.h',NULL,NULL,NULL,NULL),(7607,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/Field.h',NULL,NULL,NULL,NULL),(7608,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/HaEngine.h',NULL,NULL,NULL,NULL),(7609,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(7610,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(7611,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/QueueRequest.h',NULL,NULL,NULL,NULL),(7612,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(7613,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(7614,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SecureChannel.h',NULL,NULL,NULL,NULL),(7615,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/ServerApplication.h',NULL,NULL,NULL,NULL),(7616,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SessionServer.h',NULL,NULL,NULL,NULL),(7617,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(7618,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(7619,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(7620,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(7621,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UABase.h',NULL,NULL,NULL,NULL),(7622,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UABinding.h',NULL,NULL,NULL,NULL),(7623,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(7624,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UADataType.h',NULL,NULL,NULL,NULL),(7625,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(7626,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAHistorianVariable.h',NULL,NULL,NULL,NULL),(7627,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(7628,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAMethod.h',NULL,NULL,NULL,NULL),(7629,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(7630,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAObject.h',NULL,NULL,NULL,NULL),(7631,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAObjectType.h',NULL,NULL,NULL,NULL),(7632,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAReference.h',NULL,NULL,NULL,NULL),(7633,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(7634,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(7635,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAVariable.h',NULL,NULL,NULL,NULL),(7636,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAVariableType.h',NULL,NULL,NULL,NULL),(7637,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAView.h',NULL,NULL,NULL,NULL),(7638,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(7639,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(7640,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/VpiWriteObject.h',NULL,NULL,NULL,NULL),(7641,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/stdafx.h',NULL,NULL,NULL,NULL),(7642,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/targetver.h',NULL,NULL,NULL,NULL),(7643,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/resource.h',NULL,NULL,NULL,NULL),(7644,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source',NULL,NULL,NULL,NULL),(7645,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(7646,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(7647,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Alias.cpp',NULL,NULL,NULL,NULL),(7648,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(7649,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Definition.cpp',NULL,NULL,NULL,NULL),(7650,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Field.cpp',NULL,NULL,NULL,NULL),(7651,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(7652,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Main.cpp',NULL,NULL,NULL,NULL),(7653,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(7654,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(7655,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(7656,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(7657,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(7658,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(7659,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(7660,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(7661,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(7662,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(7663,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(7664,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(7665,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UABase.cpp',NULL,NULL,NULL,NULL),(7666,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UABinding.cpp',NULL,NULL,NULL,NULL),(7667,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(7668,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UADataType.cpp',NULL,NULL,NULL,NULL),(7669,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(7670,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(7671,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(7672,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(7673,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(7674,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAObject.cpp',NULL,NULL,NULL,NULL),(7675,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAObjectType.cpp',NULL,NULL,NULL,NULL),(7676,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAReference.cpp',NULL,NULL,NULL,NULL),(7677,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(7678,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(7679,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(7680,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(7681,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAView.cpp',NULL,NULL,NULL,NULL),(7682,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(7683,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(7684,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(7685,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/stdafx.cpp',NULL,NULL,NULL,NULL),(7686,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib',NULL,NULL,NULL,NULL),(7687,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(7688,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(7689,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/Doc',NULL,NULL,NULL,NULL),(7690,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/Doc/Analyse de la SharedLib.docx',NULL,NULL,NULL,NULL),(7691,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(7692,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/OpenOpcUASharedLib.vcxproj.filters',NULL,NULL,NULL,NULL),(7693,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(7694,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include',NULL,NULL,NULL,NULL),(7695,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/Application.h',NULL,NULL,NULL,NULL),(7696,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/BuildInfo.h',NULL,NULL,NULL,NULL),(7697,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/Channel.h',NULL,NULL,NULL,NULL),(7698,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(7699,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/DataValue.h',NULL,NULL,NULL,NULL),(7700,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(7701,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(7702,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(7703,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(7704,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(7705,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/NumericRange.h',NULL,NULL,NULL,NULL),(7706,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(7707,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/ServerStatus.h',NULL,NULL,NULL,NULL),(7708,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/SessionBase.h',NULL,NULL,NULL,NULL),(7709,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/SessionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(7710,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(7711,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(7712,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/Subscription.h',NULL,NULL,NULL,NULL),(7713,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(7714,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/UserTokenPolicy.h',NULL,NULL,NULL,NULL),(7715,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/Utils.h',NULL,NULL,NULL,NULL),(7716,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/cslock.h',NULL,NULL,NULL,NULL),(7717,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(7718,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/stdafx.h',NULL,NULL,NULL,NULL),(7719,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/targetver.h',NULL,NULL,NULL,NULL),(7720,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/resource.h',NULL,NULL,NULL,NULL),(7721,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source',NULL,NULL,NULL,NULL),(7722,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/Application.cpp',NULL,NULL,NULL,NULL),(7723,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/BuildInfo.cpp',NULL,NULL,NULL,NULL),(7724,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/Channel.cpp',NULL,NULL,NULL,NULL),(7725,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(7726,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/DataValue.cpp',NULL,NULL,NULL,NULL),(7727,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(7728,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(7729,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(7730,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(7731,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(7732,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(7733,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(7734,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(7735,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(7736,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(7737,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/Subscription.cpp',NULL,NULL,NULL,NULL),(7738,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(7739,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/Utils.cpp',NULL,NULL,NULL,NULL),(7740,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(7741,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(7742,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1',NULL,NULL,NULL,NULL),(7743,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Lib',NULL,NULL,NULL,NULL),(7744,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Lib/win32',NULL,NULL,NULL,NULL),(7745,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Lib/win32/libeay32.lib',NULL,NULL,NULL,NULL),(7746,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Lib/win32/ssleay32.lib',NULL,NULL,NULL,NULL),(7747,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1',NULL,NULL,NULL,NULL),(7748,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(7749,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc',NULL,NULL,NULL,NULL),(7750,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/Fonctionnement interne de la Stack AnsiC.docx',NULL,NULL,NULL,NULL),(7751,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/OPC UA Ansi C Stack - Design Review.doc',NULL,NULL,NULL,NULL),(7752,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/OPC UA AnsiC Coding Guidelines_Draft_0.9.doc',NULL,NULL,NULL,NULL),(7753,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/Relations entre la Stack AnsiC et le SDK UA.docx',NULL,NULL,NULL,NULL),(7754,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/Structure et type de la stack AnsiC.docx',NULL,NULL,NULL,NULL),(7755,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/UA Stack API.docx',NULL,NULL,NULL,NULL),(7756,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(7757,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/UAStackV1.vcxproj',NULL,NULL,NULL,NULL),(7758,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/UAStackV1.vcxproj.filters',NULL,NULL,NULL,NULL),(7759,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include',NULL,NULL,NULL,NULL),(7760,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared',NULL,NULL,NULL,NULL),(7761,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua.h',NULL,NULL,NULL,NULL),(7762,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_asynccallstate.h',NULL,NULL,NULL,NULL),(7763,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_attributes.h',NULL,NULL,NULL,NULL),(7764,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_base64.h',NULL,NULL,NULL,NULL),(7765,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_binaryencoder.h',NULL,NULL,NULL,NULL),(7766,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_binaryencoderinternal.h',NULL,NULL,NULL,NULL),(7767,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_browsenames.h',NULL,NULL,NULL,NULL),(7768,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_buffer.h',NULL,NULL,NULL,NULL),(7769,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(7770,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_channel.h',NULL,NULL,NULL,NULL),(7771,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_channel_internal.h',NULL,NULL,NULL,NULL),(7772,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_clientapi.h',NULL,NULL,NULL,NULL),(7773,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_clientproxy.h',NULL,NULL,NULL,NULL),(7774,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(7775,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(7776,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(7777,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_credentials.h',NULL,NULL,NULL,NULL),(7778,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(7779,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_cryptofactory.h',NULL,NULL,NULL,NULL),(7780,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(7781,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_decoder.h',NULL,NULL,NULL,NULL),(7782,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(7783,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_encoder.h',NULL,NULL,NULL,NULL),(7784,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(7785,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_endpoint_ex.h',NULL,NULL,NULL,NULL),(7786,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_endpoint_internal.h',NULL,NULL,NULL,NULL),(7787,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_enumeratedtype.h',NULL,NULL,NULL,NULL),(7788,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_errorhandling.h',NULL,NULL,NULL,NULL),(7789,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_exclusions.h',NULL,NULL,NULL,NULL),(7790,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_extensionobject.h',NULL,NULL,NULL,NULL),(7791,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_guid.h',NULL,NULL,NULL,NULL),(7792,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(7793,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_internal.h',NULL,NULL,NULL,NULL),(7794,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_listener.h',NULL,NULL,NULL,NULL),(7795,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_listener_connectionmanager.h',NULL,NULL,NULL,NULL),(7796,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(7797,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_httpsstream.h',NULL,NULL,NULL,NULL),(7798,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(7799,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_list.h',NULL,NULL,NULL,NULL),(7800,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(7801,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_memory.h',NULL,NULL,NULL,NULL),(7802,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_memorystream.h',NULL,NULL,NULL,NULL),(7803,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_messagecontext.h',NULL,NULL,NULL,NULL),(7804,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_mutex.h',NULL,NULL,NULL,NULL),(7805,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_binary.h',NULL,NULL,NULL,NULL),(7806,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_compilerinfo.h',NULL,NULL,NULL,NULL),(7807,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_crypto.h',NULL,NULL,NULL,NULL),(7808,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_cryptofactory.h',NULL,NULL,NULL,NULL),(7809,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_datetime.h',NULL,NULL,NULL,NULL),(7810,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_guid.h',NULL,NULL,NULL,NULL),(7811,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(7812,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(7813,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_memory.h',NULL,NULL,NULL,NULL),(7814,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(7815,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_openssl_pki.h',NULL,NULL,NULL,NULL),(7816,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(7817,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(7818,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_pki_nosecurity.h',NULL,NULL,NULL,NULL),(7819,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_pkifactory.h',NULL,NULL,NULL,NULL),(7820,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_securitypolicy_none.h',NULL,NULL,NULL,NULL),(7821,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(7822,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(7823,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(7824,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(7825,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_string.h',NULL,NULL,NULL,NULL),(7826,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(7827,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_timer.h',NULL,NULL,NULL,NULL),(7828,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(7829,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(7830,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_win32_pki.h',NULL,NULL,NULL,NULL),(7831,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_wincrypt.h',NULL,NULL,NULL,NULL),(7832,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_xml.h',NULL,NULL,NULL,NULL),(7833,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_pki.h',NULL,NULL,NULL,NULL),(7834,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_pkifactory.h',NULL,NULL,NULL,NULL),(7835,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(7836,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(7837,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(7838,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securechannel_types.h',NULL,NULL,NULL,NULL),(7839,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_secureconnection.h',NULL,NULL,NULL,NULL),(7840,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securelistener.h',NULL,NULL,NULL,NULL),(7841,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securelistener_channelmanager.h',NULL,NULL,NULL,NULL),(7842,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securelistener_policymanager.h',NULL,NULL,NULL,NULL),(7843,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securestream.h',NULL,NULL,NULL,NULL),(7844,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_semaphore.h',NULL,NULL,NULL,NULL),(7845,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_serverapi.h',NULL,NULL,NULL,NULL),(7846,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_serverstub.h',NULL,NULL,NULL,NULL),(7847,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_servicetable.h',NULL,NULL,NULL,NULL),(7848,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_soapsecurechannel.h',NULL,NULL,NULL,NULL),(7849,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(7850,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_stackstatuscodes.h',NULL,NULL,NULL,NULL),(7851,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_statuscodes.h',NULL,NULL,NULL,NULL),(7852,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_stream.h',NULL,NULL,NULL,NULL),(7853,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(7854,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_stringtable.h',NULL,NULL,NULL,NULL),(7855,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcpconnection.h',NULL,NULL,NULL,NULL),(7856,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcplistener.h',NULL,NULL,NULL,NULL),(7857,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(7858,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcpsecurechannel.h',NULL,NULL,NULL,NULL),(7859,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcpstream.h',NULL,NULL,NULL,NULL),(7860,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(7861,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_threadpool.h',NULL,NULL,NULL,NULL),(7862,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_timer.h',NULL,NULL,NULL,NULL),(7863,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(7864,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(7865,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(7866,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmldefs.h',NULL,NULL,NULL,NULL),(7867,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmlencoder.h',NULL,NULL,NULL,NULL),(7868,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmlencoderinternal.h',NULL,NULL,NULL,NULL),(7869,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmlreader.h',NULL,NULL,NULL,NULL),(7870,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmlwriter.h',NULL,NULL,NULL,NULL),(7871,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/resource.h',NULL,NULL,NULL,NULL),(7872,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32',NULL,NULL,NULL,NULL),(7873,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl',NULL,NULL,NULL,NULL),(7874,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/aes.h',NULL,NULL,NULL,NULL),(7875,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/applink.c',NULL,NULL,NULL,NULL),(7876,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/asn1.h',NULL,NULL,NULL,NULL),(7877,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(7878,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/asn1t.h',NULL,NULL,NULL,NULL),(7879,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/bio.h',NULL,NULL,NULL,NULL),(7880,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/blowfish.h',NULL,NULL,NULL,NULL),(7881,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(7882,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(7883,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/camellia.h',NULL,NULL,NULL,NULL),(7884,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/cast.h',NULL,NULL,NULL,NULL),(7885,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/cmac.h',NULL,NULL,NULL,NULL),(7886,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/cms.h',NULL,NULL,NULL,NULL),(7887,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/comp.h',NULL,NULL,NULL,NULL),(7888,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/conf.h',NULL,NULL,NULL,NULL),(7889,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/conf_api.h',NULL,NULL,NULL,NULL),(7890,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(7891,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/des.h',NULL,NULL,NULL,NULL),(7892,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/des_old.h',NULL,NULL,NULL,NULL),(7893,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/dh.h',NULL,NULL,NULL,NULL),(7894,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/dsa.h',NULL,NULL,NULL,NULL),(7895,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/dso.h',NULL,NULL,NULL,NULL),(7896,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(7897,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/e_os2.h',NULL,NULL,NULL,NULL),(7898,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(7899,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(7900,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ecdh.h',NULL,NULL,NULL,NULL),(7901,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(7902,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/engine.h',NULL,NULL,NULL,NULL),(7903,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/err.h',NULL,NULL,NULL,NULL),(7904,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(7905,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/hmac.h',NULL,NULL,NULL,NULL),(7906,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/idea.h',NULL,NULL,NULL,NULL),(7907,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(7908,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(7909,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/lhash.h',NULL,NULL,NULL,NULL),(7910,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/md2.h',NULL,NULL,NULL,NULL),(7911,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/md4.h',NULL,NULL,NULL,NULL),(7912,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/md5.h',NULL,NULL,NULL,NULL),(7913,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/mdc2.h',NULL,NULL,NULL,NULL),(7914,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/modes.h',NULL,NULL,NULL,NULL),(7915,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(7916,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/objects.h',NULL,NULL,NULL,NULL),(7917,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ocsp.h',NULL,NULL,NULL,NULL),(7918,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(7919,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(7920,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(7921,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pem.h',NULL,NULL,NULL,NULL),(7922,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pem2.h',NULL,NULL,NULL,NULL),(7923,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(7924,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(7925,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pq_compat.h',NULL,NULL,NULL,NULL),(7926,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pqueue.h',NULL,NULL,NULL,NULL),(7927,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(7928,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/rc2.h',NULL,NULL,NULL,NULL),(7929,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/rc4.h',NULL,NULL,NULL,NULL),(7930,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ripemd.h',NULL,NULL,NULL,NULL),(7931,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(7932,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/safestack.h',NULL,NULL,NULL,NULL),(7933,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/seed.h',NULL,NULL,NULL,NULL),(7934,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/sha.h',NULL,NULL,NULL,NULL),(7935,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/srp.h',NULL,NULL,NULL,NULL),(7936,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/srtp.h',NULL,NULL,NULL,NULL),(7937,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(7938,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ssl2.h',NULL,NULL,NULL,NULL),(7939,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ssl23.h',NULL,NULL,NULL,NULL),(7940,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(7941,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/stack.h',NULL,NULL,NULL,NULL),(7942,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/store.h',NULL,NULL,NULL,NULL),(7943,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(7944,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(7945,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/tmdiff.h',NULL,NULL,NULL,NULL),(7946,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ts.h',NULL,NULL,NULL,NULL),(7947,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/txt_db.h',NULL,NULL,NULL,NULL),(7948,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ui.h',NULL,NULL,NULL,NULL),(7949,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(7950,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(7951,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/x509.h',NULL,NULL,NULL,NULL),(7952,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(7953,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/x509v3.h',NULL,NULL,NULL,NULL),(7954,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/resource.h',NULL,NULL,NULL,NULL),(7955,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source',NULL,NULL,NULL,NULL),(7956,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(7957,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_base64.c',NULL,NULL,NULL,NULL),(7958,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(7959,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(7960,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_buffer.c',NULL,NULL,NULL,NULL),(7961,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(7962,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_channel.c',NULL,NULL,NULL,NULL),(7963,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(7964,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_connection.c',NULL,NULL,NULL,NULL),(7965,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(7966,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(7967,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(7968,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_decoder.c',NULL,NULL,NULL,NULL),(7969,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(7970,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_encoder.c',NULL,NULL,NULL,NULL),(7971,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(7972,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(7973,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_enumeratedtype.c',NULL,NULL,NULL,NULL),(7974,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_extensionobject.c',NULL,NULL,NULL,NULL),(7975,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_guid.c',NULL,NULL,NULL,NULL),(7976,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(7977,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_internal.c',NULL,NULL,NULL,NULL),(7978,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_listener.c',NULL,NULL,NULL,NULL),(7979,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_listener_connectionmanager.c',NULL,NULL,NULL,NULL),(7980,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(7981,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(7982,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_list.c',NULL,NULL,NULL,NULL),(7983,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_listener.c',NULL,NULL,NULL,NULL),(7984,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_memory.c',NULL,NULL,NULL,NULL),(7985,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(7986,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_messagecontext.c',NULL,NULL,NULL,NULL),(7987,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_binary.c',NULL,NULL,NULL,NULL),(7988,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(7989,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(7990,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_guid.c',NULL,NULL,NULL,NULL),(7991,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(7992,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(7993,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_libxml2.c',NULL,NULL,NULL,NULL),(7994,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(7995,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(7996,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_3des.c',NULL,NULL,NULL,NULL),(7997,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_aes.c',NULL,NULL,NULL,NULL),(7998,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(7999,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_hmac_sha.c',NULL,NULL,NULL,NULL),(8000,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(8001,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(8002,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(8003,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_sha.c',NULL,NULL,NULL,NULL),(8004,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(8005,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_pki_nosecurity.c',NULL,NULL,NULL,NULL),(8006,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_pkifactory.c',NULL,NULL,NULL,NULL),(8007,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_securitypolicy_none.c',NULL,NULL,NULL,NULL),(8008,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(8009,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(8010,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(8011,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(8012,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(8013,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(8014,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(8015,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(8016,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(8017,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(8018,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securechannel.c',NULL,NULL,NULL,NULL),(8019,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(8020,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(8021,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(8022,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(8023,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(8024,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(8025,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_servicetable.c',NULL,NULL,NULL,NULL),(8026,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_stream.c',NULL,NULL,NULL,NULL),(8027,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(8028,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_stringtable.c',NULL,NULL,NULL,NULL),(8029,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(8030,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(8031,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(8032,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(8033,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(8034,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_thread.c',NULL,NULL,NULL,NULL),(8035,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(8036,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_timer.c',NULL,NULL,NULL,NULL),(8037,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(8038,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_types.c',NULL,NULL,NULL,NULL),(8039,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(8040,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(8041,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_xmlencoder.c',NULL,NULL,NULL,NULL),(8042,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_xmlreader.c',NULL,NULL,NULL,NULL),(8043,1011,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_xmlwriter.c',NULL,NULL,NULL,NULL),(8044,1011,'A','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(8045,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser',NULL,NULL,NULL,NULL),(8046,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/CMakeLists.txt',NULL,NULL,NULL,NULL),(8047,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/Doc',NULL,NULL,NULL,NULL),(8048,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/Doc/Expat .docx',NULL,NULL,NULL,NULL),(8049,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(8050,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(8051,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XMLSAXParser.vcxproj.filters',NULL,NULL,NULL,NULL),(8052,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared',NULL,NULL,NULL,NULL),(8053,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/ascii.h',NULL,NULL,NULL,NULL),(8054,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/asciitab.h',NULL,NULL,NULL,NULL),(8055,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/expat.h',NULL,NULL,NULL,NULL),(8056,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/expat_external.h',NULL,NULL,NULL,NULL),(8057,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/iasciitab.h',NULL,NULL,NULL,NULL),(8058,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/internal.h',NULL,NULL,NULL,NULL),(8059,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/latin1tab.h',NULL,NULL,NULL,NULL),(8060,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/nametab.h',NULL,NULL,NULL,NULL),(8061,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/utf8tab.h',NULL,NULL,NULL,NULL),(8062,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlCanon.h',NULL,NULL,NULL,NULL),(8063,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlConfig.h',NULL,NULL,NULL,NULL),(8064,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlLib.h',NULL,NULL,NULL,NULL),(8065,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(8066,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlop.h',NULL,NULL,NULL,NULL),(8067,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(8068,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlrole.c',NULL,NULL,NULL,NULL),(8069,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlrole.h',NULL,NULL,NULL,NULL),(8070,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltchar.h',NULL,NULL,NULL,NULL),(8071,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok.c',NULL,NULL,NULL,NULL),(8072,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok.h',NULL,NULL,NULL,NULL),(8073,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok_impl.c',NULL,NULL,NULL,NULL),(8074,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok_impl.h',NULL,NULL,NULL,NULL),(8075,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok_ns.c',NULL,NULL,NULL,NULL),(8076,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/include',NULL,NULL,NULL,NULL),(8077,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(8078,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/include/stdafx.h',NULL,NULL,NULL,NULL),(8079,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/resource.h',NULL,NULL,NULL,NULL),(8080,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/source',NULL,NULL,NULL,NULL),(8081,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(8082,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(8083,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/XMLSAXParser.def',NULL,NULL,NULL,NULL),(8084,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(8085,1011,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/stdafx.cpp',NULL,NULL,NULL,NULL),(8905,1022,'A','/OpenOpcUa_VS2013',NULL,NULL,NULL,NULL),(8906,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib',NULL,NULL,NULL,NULL),(8907,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(8908,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/DeployOpenOpcUaBaseLib.bat',NULL,NULL,NULL,NULL),(8909,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/Doc',NULL,NULL,NULL,NULL),(8910,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/Doc/Analyse de la SharedLib.docx',NULL,NULL,NULL,NULL),(8911,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/OpenOpcUaBaseLib.rc',NULL,NULL,NULL,NULL),(8912,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/OpenOpcUaBaseLib.vcxproj',NULL,NULL,NULL,NULL),(8913,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include',NULL,NULL,NULL,NULL),(8914,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/ApplicationBase.h',NULL,NULL,NULL,NULL),(8915,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/ApplicationDescription.h',NULL,NULL,NULL,NULL),(8916,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/BuildInfo.h',NULL,NULL,NULL,NULL),(8917,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/ClientChannel.h',NULL,NULL,NULL,NULL),(8918,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(8919,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/DataValue.h',NULL,NULL,NULL,NULL),(8920,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(8921,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(8922,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(8923,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(8924,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(8925,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/NumericRange.h',NULL,NULL,NULL,NULL),(8926,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(8927,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/ServerStatus.h',NULL,NULL,NULL,NULL),(8928,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/SessionBase.h',NULL,NULL,NULL,NULL),(8929,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/SessionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(8930,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(8931,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(8932,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/SubscriptionBase.h',NULL,NULL,NULL,NULL),(8933,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(8934,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/UserTokenPolicy.h',NULL,NULL,NULL,NULL),(8935,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/Utils.h',NULL,NULL,NULL,NULL),(8936,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/cslock.h',NULL,NULL,NULL,NULL),(8937,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/stdafx.h',NULL,NULL,NULL,NULL),(8938,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/include/targetver.h',NULL,NULL,NULL,NULL),(8939,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/resource.h',NULL,NULL,NULL,NULL),(8940,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source',NULL,NULL,NULL,NULL),(8941,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/ApplicationBase.cpp',NULL,NULL,NULL,NULL),(8942,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/ApplicationDescription.cpp',NULL,NULL,NULL,NULL),(8943,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/BuildInfo.cpp',NULL,NULL,NULL,NULL),(8944,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/ClientChannel.cpp',NULL,NULL,NULL,NULL),(8945,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(8946,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/DataValue.cpp',NULL,NULL,NULL,NULL),(8947,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(8948,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(8949,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(8950,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(8951,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(8952,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(8953,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(8954,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(8955,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(8956,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(8957,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/StatusCodeException.cpp',NULL,NULL,NULL,NULL),(8958,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/SubscriptionBase.cpp',NULL,NULL,NULL,NULL),(8959,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(8960,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/UserTokenPolicy.cpp',NULL,NULL,NULL,NULL),(8961,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/Utils.cpp',NULL,NULL,NULL,NULL),(8962,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaBaseLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(8963,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib',NULL,NULL,NULL,NULL),(8964,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/OpenOpcUaCertificateMgtLib.def',NULL,NULL,NULL,NULL),(8965,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/OpenOpcUaCertificateMgtLib.vcxproj',NULL,NULL,NULL,NULL),(8966,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/OpenOpcUaCertificateMgtLib.vcxproj.filters',NULL,NULL,NULL,NULL),(8967,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/OpenOpcUaCertificateMgtLibd.def',NULL,NULL,NULL,NULL),(8968,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/include',NULL,NULL,NULL,NULL),(8969,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/include/OpenOpcUaCertificateMgtLib.h',NULL,NULL,NULL,NULL),(8970,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/include/OpenOpcUaCertificates.h',NULL,NULL,NULL,NULL),(8971,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/include/stdafx.h',NULL,NULL,NULL,NULL),(8972,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/include/targetver.h',NULL,NULL,NULL,NULL),(8973,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/source',NULL,NULL,NULL,NULL),(8974,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/source/OpenOpcUaCertficates.cpp',NULL,NULL,NULL,NULL),(8975,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/source/OpenOpcUaCertificateMgtLib.cpp',NULL,NULL,NULL,NULL),(8976,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/source/dllmain.cpp',NULL,NULL,NULL,NULL),(8977,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(8978,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer',NULL,NULL,NULL,NULL),(8979,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/CMakeLists.txt',NULL,NULL,NULL,NULL),(8980,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/Doc',NULL,NULL,NULL,NULL),(8981,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(8982,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(8983,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(8984,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(8985,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared',NULL,NULL,NULL,NULL),(8986,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared/VfiDataValue.h',NULL,NULL,NULL,NULL),(8987,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(8988,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared/xmlsaxparsertlk.h',NULL,NULL,NULL,NULL),(8989,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include',NULL,NULL,NULL,NULL),(8990,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(8991,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(8992,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(8993,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/Alias.h',NULL,NULL,NULL,NULL),(8994,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/ContinuationPoint.h',NULL,NULL,NULL,NULL),(8995,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/Definition.h',NULL,NULL,NULL,NULL),(8996,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/Field.h',NULL,NULL,NULL,NULL),(8997,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/HaEngine.h',NULL,NULL,NULL,NULL),(8998,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(8999,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(9000,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/QueueRequest.h',NULL,NULL,NULL,NULL),(9001,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(9002,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(9003,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SecureChannel.h',NULL,NULL,NULL,NULL),(9004,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/ServerApplication.h',NULL,NULL,NULL,NULL),(9005,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SessionServer.h',NULL,NULL,NULL,NULL),(9006,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(9007,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(9008,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(9009,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(9010,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UABase.h',NULL,NULL,NULL,NULL),(9011,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UABinding.h',NULL,NULL,NULL,NULL),(9012,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(9013,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UADataType.h',NULL,NULL,NULL,NULL),(9014,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(9015,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAHistorianVariable.h',NULL,NULL,NULL,NULL),(9016,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(9017,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAMethod.h',NULL,NULL,NULL,NULL),(9018,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(9019,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAObject.h',NULL,NULL,NULL,NULL),(9020,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAObjectType.h',NULL,NULL,NULL,NULL),(9021,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAReference.h',NULL,NULL,NULL,NULL),(9022,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(9023,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(9024,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAVariable.h',NULL,NULL,NULL,NULL),(9025,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAVariableType.h',NULL,NULL,NULL,NULL),(9026,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAView.h',NULL,NULL,NULL,NULL),(9027,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(9028,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(9029,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/VpiWriteObject.h',NULL,NULL,NULL,NULL),(9030,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/stdafx.h',NULL,NULL,NULL,NULL),(9031,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/targetver.h',NULL,NULL,NULL,NULL),(9032,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/resource.h',NULL,NULL,NULL,NULL),(9033,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source',NULL,NULL,NULL,NULL),(9034,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(9035,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(9036,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Alias.cpp',NULL,NULL,NULL,NULL),(9037,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(9038,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Definition.cpp',NULL,NULL,NULL,NULL),(9039,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Field.cpp',NULL,NULL,NULL,NULL),(9040,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(9041,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Main.cpp',NULL,NULL,NULL,NULL),(9042,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(9043,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(9044,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(9045,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(9046,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(9047,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(9048,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9049,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(9050,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(9051,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(9052,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(9053,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(9054,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UABase.cpp',NULL,NULL,NULL,NULL),(9055,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UABinding.cpp',NULL,NULL,NULL,NULL),(9056,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(9057,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UADataType.cpp',NULL,NULL,NULL,NULL),(9058,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(9059,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(9060,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(9061,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(9062,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(9063,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAObject.cpp',NULL,NULL,NULL,NULL),(9064,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAObjectType.cpp',NULL,NULL,NULL,NULL),(9065,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAReference.cpp',NULL,NULL,NULL,NULL),(9066,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(9067,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(9068,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(9069,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(9070,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAView.cpp',NULL,NULL,NULL,NULL),(9071,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(9072,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(9073,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(9074,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/stdafx.cpp',NULL,NULL,NULL,NULL),(9075,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1',NULL,NULL,NULL,NULL),(9076,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(9077,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc',NULL,NULL,NULL,NULL),(9078,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc/Fonctionnement interne de la Stack AnsiC.docx',NULL,NULL,NULL,NULL),(9079,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc/OPC UA Ansi C Stack - Design Review.doc',NULL,NULL,NULL,NULL),(9080,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc/OPC UA AnsiC Coding Guidelines_Draft_0.9.doc',NULL,NULL,NULL,NULL),(9081,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc/Relations entre la Stack AnsiC et le SDK UA.docx',NULL,NULL,NULL,NULL),(9082,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc/Structure et type de la stack AnsiC.docx',NULL,NULL,NULL,NULL),(9083,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc/UA Stack API.docx',NULL,NULL,NULL,NULL),(9084,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/OpenOpcUAStackV1.vcxproj',NULL,NULL,NULL,NULL),(9085,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(9086,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include',NULL,NULL,NULL,NULL),(9087,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared',NULL,NULL,NULL,NULL),(9088,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua.h',NULL,NULL,NULL,NULL),(9089,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_asynccallstate.h',NULL,NULL,NULL,NULL),(9090,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_attributes.h',NULL,NULL,NULL,NULL),(9091,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_base64.h',NULL,NULL,NULL,NULL),(9092,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_binaryencoder.h',NULL,NULL,NULL,NULL),(9093,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_binaryencoderinternal.h',NULL,NULL,NULL,NULL),(9094,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_browsenames.h',NULL,NULL,NULL,NULL),(9095,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_buffer.h',NULL,NULL,NULL,NULL),(9096,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(9097,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_channel.h',NULL,NULL,NULL,NULL),(9098,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_channel_internal.h',NULL,NULL,NULL,NULL),(9099,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_clientapi.h',NULL,NULL,NULL,NULL),(9100,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_clientproxy.h',NULL,NULL,NULL,NULL),(9101,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(9102,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(9103,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(9104,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_credentials.h',NULL,NULL,NULL,NULL),(9105,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(9106,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_cryptofactory.h',NULL,NULL,NULL,NULL),(9107,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(9108,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_decoder.h',NULL,NULL,NULL,NULL),(9109,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(9110,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_encoder.h',NULL,NULL,NULL,NULL),(9111,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(9112,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_endpoint_ex.h',NULL,NULL,NULL,NULL),(9113,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_endpoint_internal.h',NULL,NULL,NULL,NULL),(9114,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_enumeratedtype.h',NULL,NULL,NULL,NULL),(9115,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_errorhandling.h',NULL,NULL,NULL,NULL),(9116,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_exclusions.h',NULL,NULL,NULL,NULL),(9117,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_extensionobject.h',NULL,NULL,NULL,NULL),(9118,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_guid.h',NULL,NULL,NULL,NULL),(9119,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(9120,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_https_internal.h',NULL,NULL,NULL,NULL),(9121,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_https_listener.h',NULL,NULL,NULL,NULL),(9122,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_https_listener_connectionmanager.h',NULL,NULL,NULL,NULL),(9123,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(9124,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_httpsstream.h',NULL,NULL,NULL,NULL),(9125,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(9126,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_list.h',NULL,NULL,NULL,NULL),(9127,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(9128,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_memory.h',NULL,NULL,NULL,NULL),(9129,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_memorystream.h',NULL,NULL,NULL,NULL),(9130,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_messagecontext.h',NULL,NULL,NULL,NULL),(9131,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_mutex.h',NULL,NULL,NULL,NULL),(9132,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_binary.h',NULL,NULL,NULL,NULL),(9133,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_compilerinfo.h',NULL,NULL,NULL,NULL),(9134,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_crypto.h',NULL,NULL,NULL,NULL),(9135,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_cryptofactory.h',NULL,NULL,NULL,NULL),(9136,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_datetime.h',NULL,NULL,NULL,NULL),(9137,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_guid.h',NULL,NULL,NULL,NULL),(9138,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(9139,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(9140,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_memory.h',NULL,NULL,NULL,NULL),(9141,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(9142,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_openssl_pki.h',NULL,NULL,NULL,NULL),(9143,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(9144,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(9145,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_pki_nosecurity.h',NULL,NULL,NULL,NULL),(9146,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_pkifactory.h',NULL,NULL,NULL,NULL),(9147,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_securitypolicy_none.h',NULL,NULL,NULL,NULL),(9148,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(9149,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(9150,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(9151,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(9152,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_string.h',NULL,NULL,NULL,NULL),(9153,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(9154,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_timer.h',NULL,NULL,NULL,NULL),(9155,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(9156,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(9157,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_win32_pki.h',NULL,NULL,NULL,NULL),(9158,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_wincrypt.h',NULL,NULL,NULL,NULL),(9159,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_p_xml.h',NULL,NULL,NULL,NULL),(9160,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_pki.h',NULL,NULL,NULL,NULL),(9161,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_pkifactory.h',NULL,NULL,NULL,NULL),(9162,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(9163,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(9164,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(9165,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_securechannel_types.h',NULL,NULL,NULL,NULL),(9166,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_secureconnection.h',NULL,NULL,NULL,NULL),(9167,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_securelistener.h',NULL,NULL,NULL,NULL),(9168,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_securelistener_channelmanager.h',NULL,NULL,NULL,NULL),(9169,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_securelistener_policymanager.h',NULL,NULL,NULL,NULL),(9170,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_securestream.h',NULL,NULL,NULL,NULL),(9171,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_semaphore.h',NULL,NULL,NULL,NULL),(9172,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_serverapi.h',NULL,NULL,NULL,NULL),(9173,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_serverstub.h',NULL,NULL,NULL,NULL),(9174,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_servicetable.h',NULL,NULL,NULL,NULL),(9175,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_soapsecurechannel.h',NULL,NULL,NULL,NULL),(9176,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(9177,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_stackstatuscodes.h',NULL,NULL,NULL,NULL),(9178,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_statuscodes.h',NULL,NULL,NULL,NULL),(9179,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_stream.h',NULL,NULL,NULL,NULL),(9180,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(9181,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_stringtable.h',NULL,NULL,NULL,NULL),(9182,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_tcpconnection.h',NULL,NULL,NULL,NULL),(9183,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_tcplistener.h',NULL,NULL,NULL,NULL),(9184,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(9185,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_tcpsecurechannel.h',NULL,NULL,NULL,NULL),(9186,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_tcpstream.h',NULL,NULL,NULL,NULL),(9187,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(9188,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_threadpool.h',NULL,NULL,NULL,NULL),(9189,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_timer.h',NULL,NULL,NULL,NULL),(9190,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(9191,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(9192,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(9193,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_xmldefs.h',NULL,NULL,NULL,NULL),(9194,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_xmlencoder.h',NULL,NULL,NULL,NULL),(9195,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_xmlencoderinternal.h',NULL,NULL,NULL,NULL),(9196,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_xmlreader.h',NULL,NULL,NULL,NULL),(9197,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/opcua_xmlwriter.h',NULL,NULL,NULL,NULL),(9198,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/shared/resource.h',NULL,NULL,NULL,NULL),(9199,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32',NULL,NULL,NULL,NULL),(9200,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl',NULL,NULL,NULL,NULL),(9201,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/aes.h',NULL,NULL,NULL,NULL),(9202,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/applink.c',NULL,NULL,NULL,NULL),(9203,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/asn1.h',NULL,NULL,NULL,NULL),(9204,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(9205,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/asn1t.h',NULL,NULL,NULL,NULL),(9206,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/bio.h',NULL,NULL,NULL,NULL),(9207,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/blowfish.h',NULL,NULL,NULL,NULL),(9208,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(9209,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(9210,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/camellia.h',NULL,NULL,NULL,NULL),(9211,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/cast.h',NULL,NULL,NULL,NULL),(9212,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/cmac.h',NULL,NULL,NULL,NULL),(9213,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/cms.h',NULL,NULL,NULL,NULL),(9214,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/comp.h',NULL,NULL,NULL,NULL),(9215,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/conf.h',NULL,NULL,NULL,NULL),(9216,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/conf_api.h',NULL,NULL,NULL,NULL),(9217,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(9218,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/des.h',NULL,NULL,NULL,NULL),(9219,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/des_old.h',NULL,NULL,NULL,NULL),(9220,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/dh.h',NULL,NULL,NULL,NULL),(9221,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/dsa.h',NULL,NULL,NULL,NULL),(9222,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/dso.h',NULL,NULL,NULL,NULL),(9223,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(9224,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/e_os2.h',NULL,NULL,NULL,NULL),(9225,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(9226,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(9227,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ecdh.h',NULL,NULL,NULL,NULL),(9228,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(9229,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/engine.h',NULL,NULL,NULL,NULL),(9230,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/err.h',NULL,NULL,NULL,NULL),(9231,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(9232,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/hmac.h',NULL,NULL,NULL,NULL),(9233,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/idea.h',NULL,NULL,NULL,NULL),(9234,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(9235,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(9236,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/lhash.h',NULL,NULL,NULL,NULL),(9237,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/md4.h',NULL,NULL,NULL,NULL),(9238,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/md5.h',NULL,NULL,NULL,NULL),(9239,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/mdc2.h',NULL,NULL,NULL,NULL),(9240,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/modes.h',NULL,NULL,NULL,NULL),(9241,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(9242,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/objects.h',NULL,NULL,NULL,NULL),(9243,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ocsp.h',NULL,NULL,NULL,NULL),(9244,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(9245,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(9246,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(9247,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/pem.h',NULL,NULL,NULL,NULL),(9248,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/pem2.h',NULL,NULL,NULL,NULL),(9249,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(9250,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(9251,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/pqueue.h',NULL,NULL,NULL,NULL),(9252,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(9253,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/rc2.h',NULL,NULL,NULL,NULL),(9254,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/rc4.h',NULL,NULL,NULL,NULL),(9255,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ripemd.h',NULL,NULL,NULL,NULL),(9256,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(9257,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/safestack.h',NULL,NULL,NULL,NULL),(9258,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/seed.h',NULL,NULL,NULL,NULL),(9259,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/sha.h',NULL,NULL,NULL,NULL),(9260,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/srp.h',NULL,NULL,NULL,NULL),(9261,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/srtp.h',NULL,NULL,NULL,NULL),(9262,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(9263,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ssl2.h',NULL,NULL,NULL,NULL),(9264,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ssl23.h',NULL,NULL,NULL,NULL),(9265,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(9266,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/stack.h',NULL,NULL,NULL,NULL),(9267,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(9268,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(9269,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ts.h',NULL,NULL,NULL,NULL),(9270,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/txt_db.h',NULL,NULL,NULL,NULL),(9271,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ui.h',NULL,NULL,NULL,NULL),(9272,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(9273,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(9274,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/x509.h',NULL,NULL,NULL,NULL),(9275,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(9276,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include/win32/openssl/x509v3.h',NULL,NULL,NULL,NULL),(9277,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/resource.h',NULL,NULL,NULL,NULL),(9278,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source',NULL,NULL,NULL,NULL),(9279,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(9280,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_base64.c',NULL,NULL,NULL,NULL),(9281,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(9282,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(9283,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_buffer.c',NULL,NULL,NULL,NULL),(9284,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(9285,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_channel.c',NULL,NULL,NULL,NULL),(9286,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(9287,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_connection.c',NULL,NULL,NULL,NULL),(9288,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(9289,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(9290,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(9291,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_decoder.c',NULL,NULL,NULL,NULL),(9292,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(9293,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_encoder.c',NULL,NULL,NULL,NULL),(9294,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(9295,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(9296,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_enumeratedtype.c',NULL,NULL,NULL,NULL),(9297,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_extensionobject.c',NULL,NULL,NULL,NULL),(9298,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_guid.c',NULL,NULL,NULL,NULL),(9299,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(9300,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_https_internal.c',NULL,NULL,NULL,NULL),(9301,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_https_listener.c',NULL,NULL,NULL,NULL),(9302,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_https_listener_connectionmanager.c',NULL,NULL,NULL,NULL),(9303,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(9304,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(9305,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_list.c',NULL,NULL,NULL,NULL),(9306,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_listener.c',NULL,NULL,NULL,NULL),(9307,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_memory.c',NULL,NULL,NULL,NULL),(9308,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(9309,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_messagecontext.c',NULL,NULL,NULL,NULL),(9310,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_binary.c',NULL,NULL,NULL,NULL),(9311,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(9312,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(9313,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_guid.c',NULL,NULL,NULL,NULL),(9314,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(9315,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(9316,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_libxml2.c',NULL,NULL,NULL,NULL),(9317,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(9318,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(9319,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl_3des.c',NULL,NULL,NULL,NULL),(9320,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl_aes.c',NULL,NULL,NULL,NULL),(9321,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(9322,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl_hmac_sha.c',NULL,NULL,NULL,NULL),(9323,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(9324,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(9325,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(9326,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl_sha.c',NULL,NULL,NULL,NULL),(9327,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(9328,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_pki_nosecurity.c',NULL,NULL,NULL,NULL),(9329,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_pkifactory.c',NULL,NULL,NULL,NULL),(9330,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_securitypolicy_none.c',NULL,NULL,NULL,NULL),(9331,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(9332,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(9333,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(9334,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(9335,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(9336,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(9337,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(9338,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(9339,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(9340,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(9341,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_securechannel.c',NULL,NULL,NULL,NULL),(9342,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(9343,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(9344,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(9345,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(9346,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(9347,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(9348,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_servicetable.c',NULL,NULL,NULL,NULL),(9349,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_stream.c',NULL,NULL,NULL,NULL),(9350,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(9351,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_stringtable.c',NULL,NULL,NULL,NULL),(9352,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(9353,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(9354,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(9355,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(9356,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(9357,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_thread.c',NULL,NULL,NULL,NULL),(9358,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(9359,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_timer.c',NULL,NULL,NULL,NULL),(9360,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(9361,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_types.c',NULL,NULL,NULL,NULL),(9362,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(9363,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(9364,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_xmlencoder.c',NULL,NULL,NULL,NULL),(9365,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_xmlreader.c',NULL,NULL,NULL,NULL),(9366,1022,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source/opcua_xmlwriter.c',NULL,NULL,NULL,NULL),(9367,1022,'A','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(9368,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser',NULL,NULL,NULL,NULL),(9369,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/CMakeLists.txt',NULL,NULL,NULL,NULL),(9370,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/Doc',NULL,NULL,NULL,NULL),(9371,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/Doc/Expat .docx',NULL,NULL,NULL,NULL),(9372,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(9373,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(9374,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XMLSAXParser.vcxproj.filters',NULL,NULL,NULL,NULL),(9375,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared',NULL,NULL,NULL,NULL),(9376,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/ascii.h',NULL,NULL,NULL,NULL),(9377,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/asciitab.h',NULL,NULL,NULL,NULL),(9378,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/expat.h',NULL,NULL,NULL,NULL),(9379,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/expat_external.h',NULL,NULL,NULL,NULL),(9380,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/iasciitab.h',NULL,NULL,NULL,NULL),(9381,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/internal.h',NULL,NULL,NULL,NULL),(9382,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/latin1tab.h',NULL,NULL,NULL,NULL),(9383,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/nametab.h',NULL,NULL,NULL,NULL),(9384,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/utf8tab.h',NULL,NULL,NULL,NULL),(9385,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlCanon.h',NULL,NULL,NULL,NULL),(9386,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlConfig.h',NULL,NULL,NULL,NULL),(9387,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlLib.h',NULL,NULL,NULL,NULL),(9388,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(9389,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlop.h',NULL,NULL,NULL,NULL),(9390,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(9391,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlrole.c',NULL,NULL,NULL,NULL),(9392,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlrole.h',NULL,NULL,NULL,NULL),(9393,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltchar.h',NULL,NULL,NULL,NULL),(9394,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok.c',NULL,NULL,NULL,NULL),(9395,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok.h',NULL,NULL,NULL,NULL),(9396,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok_impl.c',NULL,NULL,NULL,NULL),(9397,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok_impl.h',NULL,NULL,NULL,NULL),(9398,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok_ns.c',NULL,NULL,NULL,NULL),(9399,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/include',NULL,NULL,NULL,NULL),(9400,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(9401,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/include/stdafx.h',NULL,NULL,NULL,NULL),(9402,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/resource.h',NULL,NULL,NULL,NULL),(9403,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/source',NULL,NULL,NULL,NULL),(9404,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(9405,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(9406,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/XMLSAXParser.def',NULL,NULL,NULL,NULL),(9407,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(9408,1022,'A','/OpenOpcUa_VS2013/XMLSAXParser/source/stdafx.cpp',NULL,NULL,NULL,NULL),(9409,1022,'A','/OpenOpcUa_VS2013/lib',NULL,NULL,NULL,NULL),(9410,1022,'A','/OpenOpcUa_VS2013/lib/win32',NULL,NULL,NULL,NULL),(9411,1022,'A','/OpenOpcUa_VS2013/lib/win32/libeay32.lib',NULL,NULL,NULL,NULL),(9412,1022,'A','/OpenOpcUa_VS2013/lib/win32/ssleay32.lib',NULL,NULL,NULL,NULL),(9413,1023,'M','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/OpenOpcUaCertificateMgtLib.vcxproj',NULL,NULL,NULL,NULL),(9414,1023,'M','/OpenOpcUa_VS2013/OpenOpcUaStackV1/OpenOpcUAStackV1.vcxproj',NULL,NULL,NULL,NULL),(9415,1024,'A','/OpenOpcUa_VS2013/OpenOpcUa_VS2008.sln',NULL,NULL,NULL,NULL),(9416,1025,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(9417,1026,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(9418,1026,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(9419,1027,'M','/trunk/UAStackV1/UAStackV1.vcxproj',NULL,NULL,NULL,NULL),(9420,1027,'M','/trunk/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(9421,1028,'M','/trunk/UAStackV1/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(9422,1028,'M','/trunk/UAStackV1/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(9423,1028,'M','/trunk/UAStackV1/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(9424,1028,'M','/trunk/UAStackV1/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(9425,1028,'M','/trunk/UAStackV1/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(9426,1028,'M','/trunk/UAStackV1/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(9427,1028,'M','/trunk/UAStackV1/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(9428,1028,'D','/trunk/UAStackV1/include/win32/openssl/md2.h',NULL,NULL,NULL,NULL),(9429,1028,'M','/trunk/UAStackV1/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(9430,1028,'M','/trunk/UAStackV1/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(9431,1028,'D','/trunk/UAStackV1/include/win32/openssl/pq_compat.h',NULL,NULL,NULL,NULL),(9432,1028,'M','/trunk/UAStackV1/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(9433,1028,'M','/trunk/UAStackV1/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(9434,1028,'M','/trunk/UAStackV1/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(9435,1028,'M','/trunk/UAStackV1/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(9436,1028,'D','/trunk/UAStackV1/include/win32/openssl/store.h',NULL,NULL,NULL,NULL),(9437,1028,'M','/trunk/UAStackV1/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(9438,1028,'M','/trunk/UAStackV1/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(9439,1028,'D','/trunk/UAStackV1/include/win32/openssl/tmdiff.h',NULL,NULL,NULL,NULL),(9440,1028,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(9441,1028,'M','/trunk/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(9442,1028,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(9443,1029,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(9444,1030,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9445,1031,'D','/SharedVpis/include',NULL,NULL,NULL,NULL),(9446,1032,'D','/SharedVpis/SharedVpis.sln',NULL,NULL,NULL,NULL),(9447,1033,'D','/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(9448,1034,'M','/SharedVpis/SharedVpis/OpcUaVpiMutSem.h',NULL,NULL,NULL,NULL),(9449,1035,'M','/SharedVpis/SharedVpis/OpcUaVpiMutSem.h',NULL,NULL,NULL,NULL),(9450,1035,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9451,1036,'A','/SharedVpis/SharedVpis/OpenOpcUaVpiOs.h',NULL,NULL,NULL,NULL),(9452,1036,'M','/SharedVpis/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(9453,1037,'M','/SharedVpis/SharedVpis/SharedVpis.vcproj',NULL,NULL,NULL,NULL),(9454,1037,'A','/SharedVpis/SharedVpis/VpiString.h',NULL,NULL,NULL,NULL),(9455,1038,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9456,1039,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9457,1040,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9458,1041,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9459,1042,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9460,1043,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9461,1044,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9462,1045,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9463,1046,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9464,1046,'M','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(9465,1047,'M','/SharedVpis/SharedVpis/OpcUaVpiMutSem.h',NULL,NULL,NULL,NULL),(9466,1047,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9467,1047,'M','/SharedVpis/SharedVpis/VpiTypes.h',NULL,NULL,NULL,NULL),(9468,1048,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9469,1049,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9470,1050,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9471,1051,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9472,1052,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiOs.h',NULL,NULL,NULL,NULL),(9473,1052,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9474,1053,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9475,1054,'M','/SharedVpis/SharedVpis/VpiTypes.h',NULL,NULL,NULL,NULL),(9476,1055,'M','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(9477,1055,'M','/SharedVpis/SharedVpis/VpiTypes.h',NULL,NULL,NULL,NULL),(9478,1056,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9479,1057,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9480,1057,'A','/SharedVpis/SharedVpis/SharedVpis.vcxproj',NULL,NULL,NULL,NULL),(9481,1057,'A','/SharedVpis/SharedVpis/SharedVpis.vcxproj.filters',NULL,NULL,NULL,NULL),(9482,1057,'A','/SharedVpis/SharedVpis/SharedVpis_VS2013.sln',NULL,NULL,NULL,NULL),(9483,1057,'M','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(9484,1057,'M','/SharedVpis/SharedVpis/VpiDataValue.h',NULL,NULL,NULL,NULL),(9485,1058,'M','/trunk/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(9486,1058,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(9487,1059,'M','/trunk/UAStackV1/UAStackV1.vcxproj',NULL,NULL,NULL,NULL),(9488,1060,'M','/trunk/UAStackV1/UAStackV1.vcxproj',NULL,NULL,NULL,NULL),(9489,1060,'M','/trunk/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(9490,1061,'M','/trunk/UAStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(9491,1061,'M','/trunk/UAStackV1/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(9492,1061,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(9493,1062,'M','/trunk/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(9494,1063,'M','/trunk/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(9495,1063,'M','/trunk/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(9496,1063,'M','/trunk/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(9497,1064,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.cpp',NULL,NULL,NULL,NULL),(9498,1064,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VpiInternal.cpp',NULL,NULL,NULL,NULL),(9499,1065,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/EntryPoints.cpp',NULL,NULL,NULL,NULL),(9500,1065,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.cpp',NULL,NULL,NULL,NULL),(9501,1065,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.h',NULL,NULL,NULL,NULL),(9502,1065,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/stdafx.h',NULL,NULL,NULL,NULL),(9503,1066,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(9504,1066,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/EntryPoints.cpp',NULL,NULL,NULL,NULL),(9505,1066,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.cpp',NULL,NULL,NULL,NULL),(9506,1066,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.h',NULL,NULL,NULL,NULL),(9507,1066,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VpiInternal.cpp',NULL,NULL,NULL,NULL),(9508,1066,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VpiInternal.h',NULL,NULL,NULL,NULL),(9509,1066,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/dllmain.cpp',NULL,NULL,NULL,NULL),(9510,1067,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.cpp',NULL,NULL,NULL,NULL),(9511,1067,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VpiInternal.cpp',NULL,NULL,NULL,NULL),(9512,1068,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcproj',NULL,NULL,NULL,NULL),(9513,1068,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/stdafx.h',NULL,NULL,NULL,NULL),(9514,1069,'A','/trunk/Vpis.sln',NULL,NULL,NULL,NULL),(9515,1070,'D','/trunk/VpiAcqCtrl/VpiAcqCtrl',NULL,NULL,NULL,NULL),(9516,1071,'D','/trunk/VpiAcqCtrl',NULL,NULL,NULL,NULL),(9517,1072,'M','/trunk/Vpis.sln',NULL,NULL,NULL,NULL),(9518,1073,'M','/trunk/VPIAcqCtrl/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(9519,1073,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcxproj',NULL,NULL,NULL,NULL),(9520,1073,'A','/trunk/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcxproj.filters',NULL,NULL,NULL,NULL),(9521,1073,'M','/trunk/VPIAcqCtrl/VPIAcqCtrl/VpiInternal.h',NULL,NULL,NULL,NULL),(9522,1073,'A','/trunk/Vpis_VS2013.sln',NULL,NULL,NULL,NULL),(9523,1074,'M','/trunk/Vpis_VS2013.sln',NULL,NULL,NULL,NULL),(9524,1075,'M','/SharedVpis/SharedVpis/VpiDataValue.h',NULL,NULL,NULL,NULL),(9525,1076,'M','/SharedVpis/SharedVpis/OpcUaVpiMutSem.h',NULL,NULL,NULL,NULL),(9526,1076,'M','/SharedVpis/SharedVpis/OpenOpcUaVpiSdk.h',NULL,NULL,NULL,NULL),(9527,1076,'M','/SharedVpis/SharedVpis/SharedVpis.vcxproj',NULL,NULL,NULL,NULL),(9528,1076,'M','/SharedVpis/SharedVpis/VPI.h',NULL,NULL,NULL,NULL),(9529,1076,'M','/SharedVpis/SharedVpis/VpiDataTypes.h',NULL,NULL,NULL,NULL),(9530,1076,'M','/SharedVpis/SharedVpis/VpiDataValue.h',NULL,NULL,NULL,NULL),(9531,1076,'M','/SharedVpis/SharedVpis/VpiTypes.h',NULL,NULL,NULL,NULL),(9532,1077,'M','/trunk/OpenOpcUaCoreServer.sln',NULL,NULL,NULL,NULL),(9533,1077,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(9534,1078,'D','/trunk/OPCUA_CPP_QuickServer.rc',NULL,NULL,NULL,NULL),(9535,1078,'D','/trunk/OPCUA_CPP_QuickServer.sln',NULL,NULL,NULL,NULL),(9536,1078,'D','/trunk/OPCUA_CPP_QuickServer.vcproj',NULL,NULL,NULL,NULL),(9537,1079,'M','/trunk/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(9538,1080,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(9539,1080,'M','/trunk/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(9540,1080,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(9541,1080,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(9542,1080,'A','/trunk/include/VpiWriteObject.h',NULL,NULL,NULL,NULL),(9543,1080,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(9544,1080,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(9545,1080,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(9546,1080,'A','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(9547,1081,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(9548,1081,'M','/trunk/include/VpiWriteObject.h',NULL,NULL,NULL,NULL),(9549,1081,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(9550,1081,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(9551,1081,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(9552,1081,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(9553,1081,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(9554,1081,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(9555,1081,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9556,1081,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(9557,1081,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(9558,1081,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(9559,1081,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(9560,1081,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(9561,1081,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(9562,1081,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(9563,1081,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(9564,1082,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9565,1082,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(9566,1083,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(9567,1084,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(9568,1085,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(9569,1085,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(9570,1085,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(9571,1085,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(9572,1085,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9573,1085,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(9574,1085,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(9575,1085,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(9576,1085,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(9577,1085,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(9578,1086,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(9579,1086,'D','/trunk/ServerShared/VPI.h',NULL,NULL,NULL,NULL),(9580,1086,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(9581,1086,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(9582,1086,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(9583,1087,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(9584,1087,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(9585,1087,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(9586,1087,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(9587,1087,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9588,1087,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(9589,1088,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(9590,1089,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(9591,1089,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(9592,1089,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(9593,1089,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(9594,1089,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(9595,1089,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9596,1089,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(9597,1089,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(9598,1090,'D','/trunk/Doc/QuickServer.cd',NULL,NULL,NULL,NULL),(9599,1090,'M','/trunk/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(9600,1090,'M','/trunk/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(9601,1090,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(9602,1090,'M','/trunk/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(9603,1090,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(9604,1090,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(9605,1090,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(9606,1090,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9607,1090,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(9608,1090,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(9609,1090,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(9610,1090,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(9611,1090,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(9612,1091,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(9613,1091,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(9614,1091,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9615,1092,'A','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(9616,1092,'A','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(9617,1092,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(9618,1092,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(9619,1092,'M','/trunk/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(9620,1092,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(9621,1092,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(9622,1092,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(9623,1092,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(9624,1092,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(9625,1092,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(9626,1092,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9627,1092,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(9628,1092,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(9629,1092,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(9630,1092,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(9631,1092,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(9632,1092,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(9633,1093,'A','/trunk/OpenOpcUa_VS2013',NULL,NULL,NULL,NULL),(9634,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer',NULL,NULL,NULL,NULL),(9635,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/CMakeLists.txt',NULL,NULL,NULL,NULL),(9636,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/Doc',NULL,NULL,NULL,NULL),(9637,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(9638,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(9639,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(9640,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(9641,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared',NULL,NULL,NULL,NULL),(9642,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared/VfiDataValue.h',NULL,NULL,NULL,NULL),(9643,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(9644,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/ServerShared/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(9645,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include',NULL,NULL,NULL,NULL),(9646,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(9647,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(9648,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(9649,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/Alias.h',NULL,NULL,NULL,NULL),(9650,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/ContinuationPoint.h',NULL,NULL,NULL,NULL),(9651,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/Definition.h',NULL,NULL,NULL,NULL),(9652,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/Field.h',NULL,NULL,NULL,NULL),(9653,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/HaEngine.h',NULL,NULL,NULL,NULL),(9654,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(9655,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(9656,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/QueueRequest.h',NULL,NULL,NULL,NULL),(9657,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(9658,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(9659,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SecureChannel.h',NULL,NULL,NULL,NULL),(9660,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/ServerApplication.h',NULL,NULL,NULL,NULL),(9661,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SessionServer.h',NULL,NULL,NULL,NULL),(9662,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(9663,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(9664,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(9665,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(9666,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UABase.h',NULL,NULL,NULL,NULL),(9667,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UABinding.h',NULL,NULL,NULL,NULL),(9668,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(9669,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UADataType.h',NULL,NULL,NULL,NULL),(9670,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(9671,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAHistorianVariable.h',NULL,NULL,NULL,NULL),(9672,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(9673,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAMethod.h',NULL,NULL,NULL,NULL),(9674,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(9675,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAObject.h',NULL,NULL,NULL,NULL),(9676,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAObjectType.h',NULL,NULL,NULL,NULL),(9677,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAReference.h',NULL,NULL,NULL,NULL),(9678,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(9679,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(9680,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAVariable.h',NULL,NULL,NULL,NULL),(9681,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAVariableType.h',NULL,NULL,NULL,NULL),(9682,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/UAView.h',NULL,NULL,NULL,NULL),(9683,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(9684,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(9685,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/VpiWriteObject.h',NULL,NULL,NULL,NULL),(9686,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/stdafx.h',NULL,NULL,NULL,NULL),(9687,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/include/targetver.h',NULL,NULL,NULL,NULL),(9688,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/resource.h',NULL,NULL,NULL,NULL),(9689,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source',NULL,NULL,NULL,NULL),(9690,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(9691,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(9692,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Alias.cpp',NULL,NULL,NULL,NULL),(9693,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(9694,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Definition.cpp',NULL,NULL,NULL,NULL),(9695,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Field.cpp',NULL,NULL,NULL,NULL),(9696,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(9697,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/Main.cpp',NULL,NULL,NULL,NULL),(9698,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(9699,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(9700,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(9701,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(9702,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(9703,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(9704,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(9705,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(9706,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(9707,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(9708,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(9709,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(9710,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UABase.cpp',NULL,NULL,NULL,NULL),(9711,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UABinding.cpp',NULL,NULL,NULL,NULL),(9712,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(9713,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UADataType.cpp',NULL,NULL,NULL,NULL),(9714,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(9715,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(9716,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(9717,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(9718,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(9719,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAObject.cpp',NULL,NULL,NULL,NULL),(9720,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAObjectType.cpp',NULL,NULL,NULL,NULL),(9721,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAReference.cpp',NULL,NULL,NULL,NULL),(9722,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(9723,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(9724,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(9725,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(9726,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/UAView.cpp',NULL,NULL,NULL,NULL),(9727,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(9728,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(9729,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(9730,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaCoreServer/source/stdafx.cpp',NULL,NULL,NULL,NULL),(9731,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib',NULL,NULL,NULL,NULL),(9732,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(9733,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(9734,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/Doc',NULL,NULL,NULL,NULL),(9735,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/Doc/Analyse de la SharedLib.docx',NULL,NULL,NULL,NULL),(9736,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(9737,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/OpenOpcUASharedLib.vcxproj.filters',NULL,NULL,NULL,NULL),(9738,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(9739,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include',NULL,NULL,NULL,NULL),(9740,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/Application.h',NULL,NULL,NULL,NULL),(9741,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/BuildInfo.h',NULL,NULL,NULL,NULL),(9742,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/Channel.h',NULL,NULL,NULL,NULL),(9743,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(9744,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/DataValue.h',NULL,NULL,NULL,NULL),(9745,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(9746,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(9747,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(9748,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(9749,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/NodeIdLookupTable.h',NULL,NULL,NULL,NULL),(9750,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/NumericRange.h',NULL,NULL,NULL,NULL),(9751,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(9752,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/ServerStatus.h',NULL,NULL,NULL,NULL),(9753,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/SessionBase.h',NULL,NULL,NULL,NULL),(9754,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/SessionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(9755,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(9756,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(9757,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/Subscription.h',NULL,NULL,NULL,NULL),(9758,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(9759,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/UserTokenPolicy.h',NULL,NULL,NULL,NULL),(9760,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/Utils.h',NULL,NULL,NULL,NULL),(9761,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/cslock.h',NULL,NULL,NULL,NULL),(9762,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(9763,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/stdafx.h',NULL,NULL,NULL,NULL),(9764,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/include/targetver.h',NULL,NULL,NULL,NULL),(9765,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/resource.h',NULL,NULL,NULL,NULL),(9766,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source',NULL,NULL,NULL,NULL),(9767,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/Application.cpp',NULL,NULL,NULL,NULL),(9768,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/BuildInfo.cpp',NULL,NULL,NULL,NULL),(9769,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/Channel.cpp',NULL,NULL,NULL,NULL),(9770,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(9771,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/DataValue.cpp',NULL,NULL,NULL,NULL),(9772,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(9773,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(9774,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(9775,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(9776,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(9777,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(9778,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(9779,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(9780,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(9781,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(9782,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/Subscription.cpp',NULL,NULL,NULL,NULL),(9783,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(9784,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/Utils.cpp',NULL,NULL,NULL,NULL),(9785,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(9786,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaSharedLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(9787,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1',NULL,NULL,NULL,NULL),(9788,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/Lib',NULL,NULL,NULL,NULL),(9789,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/Lib/win32',NULL,NULL,NULL,NULL),(9790,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/Lib/win32/libeay32.lib',NULL,NULL,NULL,NULL),(9791,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/Lib/win32/ssleay32.lib',NULL,NULL,NULL,NULL),(9792,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1',NULL,NULL,NULL,NULL),(9793,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(9794,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc',NULL,NULL,NULL,NULL),(9795,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/Fonctionnement interne de la Stack AnsiC.docx',NULL,NULL,NULL,NULL),(9796,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/OPC UA Ansi C Stack - Design Review.doc',NULL,NULL,NULL,NULL),(9797,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/OPC UA AnsiC Coding Guidelines_Draft_0.9.doc',NULL,NULL,NULL,NULL),(9798,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/Relations entre la Stack AnsiC et le SDK UA.docx',NULL,NULL,NULL,NULL),(9799,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/Structure et type de la stack AnsiC.docx',NULL,NULL,NULL,NULL),(9800,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/Doc/UA Stack API.docx',NULL,NULL,NULL,NULL),(9801,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(9802,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/UAStackV1.vcxproj',NULL,NULL,NULL,NULL),(9803,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/UAStackV1.vcxproj.filters',NULL,NULL,NULL,NULL),(9804,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include',NULL,NULL,NULL,NULL),(9805,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared',NULL,NULL,NULL,NULL),(9806,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua.h',NULL,NULL,NULL,NULL),(9807,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_asynccallstate.h',NULL,NULL,NULL,NULL),(9808,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_attributes.h',NULL,NULL,NULL,NULL),(9809,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_base64.h',NULL,NULL,NULL,NULL),(9810,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_binaryencoder.h',NULL,NULL,NULL,NULL),(9811,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_binaryencoderinternal.h',NULL,NULL,NULL,NULL),(9812,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_browsenames.h',NULL,NULL,NULL,NULL),(9813,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_buffer.h',NULL,NULL,NULL,NULL),(9814,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(9815,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_channel.h',NULL,NULL,NULL,NULL),(9816,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_channel_internal.h',NULL,NULL,NULL,NULL),(9817,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_clientapi.h',NULL,NULL,NULL,NULL),(9818,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_clientproxy.h',NULL,NULL,NULL,NULL),(9819,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(9820,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(9821,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(9822,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_credentials.h',NULL,NULL,NULL,NULL),(9823,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(9824,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_cryptofactory.h',NULL,NULL,NULL,NULL),(9825,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(9826,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_decoder.h',NULL,NULL,NULL,NULL),(9827,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(9828,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_encoder.h',NULL,NULL,NULL,NULL),(9829,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(9830,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_endpoint_ex.h',NULL,NULL,NULL,NULL),(9831,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_endpoint_internal.h',NULL,NULL,NULL,NULL),(9832,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_enumeratedtype.h',NULL,NULL,NULL,NULL),(9833,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_errorhandling.h',NULL,NULL,NULL,NULL),(9834,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_exclusions.h',NULL,NULL,NULL,NULL),(9835,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_extensionobject.h',NULL,NULL,NULL,NULL),(9836,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_guid.h',NULL,NULL,NULL,NULL),(9837,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(9838,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_internal.h',NULL,NULL,NULL,NULL),(9839,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_listener.h',NULL,NULL,NULL,NULL),(9840,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_listener_connectionmanager.h',NULL,NULL,NULL,NULL),(9841,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(9842,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_httpsstream.h',NULL,NULL,NULL,NULL),(9843,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(9844,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_list.h',NULL,NULL,NULL,NULL),(9845,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(9846,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_memory.h',NULL,NULL,NULL,NULL),(9847,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_memorystream.h',NULL,NULL,NULL,NULL),(9848,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_messagecontext.h',NULL,NULL,NULL,NULL),(9849,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_mutex.h',NULL,NULL,NULL,NULL),(9850,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_binary.h',NULL,NULL,NULL,NULL),(9851,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_compilerinfo.h',NULL,NULL,NULL,NULL),(9852,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_crypto.h',NULL,NULL,NULL,NULL),(9853,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_cryptofactory.h',NULL,NULL,NULL,NULL),(9854,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_datetime.h',NULL,NULL,NULL,NULL),(9855,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_guid.h',NULL,NULL,NULL,NULL),(9856,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(9857,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(9858,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_memory.h',NULL,NULL,NULL,NULL),(9859,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(9860,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_openssl_pki.h',NULL,NULL,NULL,NULL),(9861,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(9862,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(9863,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_pki_nosecurity.h',NULL,NULL,NULL,NULL),(9864,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_pkifactory.h',NULL,NULL,NULL,NULL),(9865,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_securitypolicy_none.h',NULL,NULL,NULL,NULL),(9866,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(9867,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(9868,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(9869,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(9870,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_string.h',NULL,NULL,NULL,NULL),(9871,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(9872,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_timer.h',NULL,NULL,NULL,NULL),(9873,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(9874,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(9875,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_win32_pki.h',NULL,NULL,NULL,NULL),(9876,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_wincrypt.h',NULL,NULL,NULL,NULL),(9877,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_p_xml.h',NULL,NULL,NULL,NULL),(9878,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_pki.h',NULL,NULL,NULL,NULL),(9879,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_pkifactory.h',NULL,NULL,NULL,NULL),(9880,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(9881,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(9882,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(9883,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securechannel_types.h',NULL,NULL,NULL,NULL),(9884,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_secureconnection.h',NULL,NULL,NULL,NULL),(9885,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securelistener.h',NULL,NULL,NULL,NULL),(9886,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securelistener_channelmanager.h',NULL,NULL,NULL,NULL),(9887,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securelistener_policymanager.h',NULL,NULL,NULL,NULL),(9888,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_securestream.h',NULL,NULL,NULL,NULL),(9889,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_semaphore.h',NULL,NULL,NULL,NULL),(9890,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_serverapi.h',NULL,NULL,NULL,NULL),(9891,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_serverstub.h',NULL,NULL,NULL,NULL),(9892,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_servicetable.h',NULL,NULL,NULL,NULL),(9893,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_soapsecurechannel.h',NULL,NULL,NULL,NULL),(9894,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(9895,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_stackstatuscodes.h',NULL,NULL,NULL,NULL),(9896,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_statuscodes.h',NULL,NULL,NULL,NULL),(9897,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_stream.h',NULL,NULL,NULL,NULL),(9898,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(9899,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_stringtable.h',NULL,NULL,NULL,NULL),(9900,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcpconnection.h',NULL,NULL,NULL,NULL),(9901,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcplistener.h',NULL,NULL,NULL,NULL),(9902,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(9903,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcpsecurechannel.h',NULL,NULL,NULL,NULL),(9904,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_tcpstream.h',NULL,NULL,NULL,NULL),(9905,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(9906,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_threadpool.h',NULL,NULL,NULL,NULL),(9907,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_timer.h',NULL,NULL,NULL,NULL),(9908,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(9909,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(9910,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(9911,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmldefs.h',NULL,NULL,NULL,NULL),(9912,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmlencoder.h',NULL,NULL,NULL,NULL),(9913,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmlencoderinternal.h',NULL,NULL,NULL,NULL),(9914,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmlreader.h',NULL,NULL,NULL,NULL),(9915,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/opcua_xmlwriter.h',NULL,NULL,NULL,NULL),(9916,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/shared/resource.h',NULL,NULL,NULL,NULL),(9917,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32',NULL,NULL,NULL,NULL),(9918,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl',NULL,NULL,NULL,NULL),(9919,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/aes.h',NULL,NULL,NULL,NULL),(9920,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/applink.c',NULL,NULL,NULL,NULL),(9921,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/asn1.h',NULL,NULL,NULL,NULL),(9922,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(9923,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/asn1t.h',NULL,NULL,NULL,NULL),(9924,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/bio.h',NULL,NULL,NULL,NULL),(9925,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/blowfish.h',NULL,NULL,NULL,NULL),(9926,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(9927,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(9928,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/camellia.h',NULL,NULL,NULL,NULL),(9929,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/cast.h',NULL,NULL,NULL,NULL),(9930,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/cmac.h',NULL,NULL,NULL,NULL),(9931,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/cms.h',NULL,NULL,NULL,NULL),(9932,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/comp.h',NULL,NULL,NULL,NULL),(9933,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/conf.h',NULL,NULL,NULL,NULL),(9934,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/conf_api.h',NULL,NULL,NULL,NULL),(9935,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(9936,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/des.h',NULL,NULL,NULL,NULL),(9937,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/des_old.h',NULL,NULL,NULL,NULL),(9938,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/dh.h',NULL,NULL,NULL,NULL),(9939,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/dsa.h',NULL,NULL,NULL,NULL),(9940,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/dso.h',NULL,NULL,NULL,NULL),(9941,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(9942,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/e_os2.h',NULL,NULL,NULL,NULL),(9943,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(9944,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(9945,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ecdh.h',NULL,NULL,NULL,NULL),(9946,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(9947,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/engine.h',NULL,NULL,NULL,NULL),(9948,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/err.h',NULL,NULL,NULL,NULL),(9949,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(9950,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/hmac.h',NULL,NULL,NULL,NULL),(9951,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/idea.h',NULL,NULL,NULL,NULL),(9952,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(9953,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(9954,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/lhash.h',NULL,NULL,NULL,NULL),(9955,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/md2.h',NULL,NULL,NULL,NULL),(9956,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/md4.h',NULL,NULL,NULL,NULL),(9957,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/md5.h',NULL,NULL,NULL,NULL),(9958,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/mdc2.h',NULL,NULL,NULL,NULL),(9959,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/modes.h',NULL,NULL,NULL,NULL),(9960,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(9961,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/objects.h',NULL,NULL,NULL,NULL),(9962,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ocsp.h',NULL,NULL,NULL,NULL),(9963,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(9964,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(9965,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(9966,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pem.h',NULL,NULL,NULL,NULL),(9967,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pem2.h',NULL,NULL,NULL,NULL),(9968,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(9969,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(9970,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pq_compat.h',NULL,NULL,NULL,NULL),(9971,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/pqueue.h',NULL,NULL,NULL,NULL),(9972,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(9973,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/rc2.h',NULL,NULL,NULL,NULL),(9974,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/rc4.h',NULL,NULL,NULL,NULL),(9975,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ripemd.h',NULL,NULL,NULL,NULL),(9976,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(9977,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/safestack.h',NULL,NULL,NULL,NULL),(9978,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/seed.h',NULL,NULL,NULL,NULL),(9979,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/sha.h',NULL,NULL,NULL,NULL),(9980,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/srp.h',NULL,NULL,NULL,NULL),(9981,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/srtp.h',NULL,NULL,NULL,NULL),(9982,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(9983,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ssl2.h',NULL,NULL,NULL,NULL),(9984,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ssl23.h',NULL,NULL,NULL,NULL),(9985,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(9986,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/stack.h',NULL,NULL,NULL,NULL),(9987,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/store.h',NULL,NULL,NULL,NULL),(9988,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(9989,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(9990,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/tmdiff.h',NULL,NULL,NULL,NULL),(9991,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ts.h',NULL,NULL,NULL,NULL),(9992,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/txt_db.h',NULL,NULL,NULL,NULL),(9993,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ui.h',NULL,NULL,NULL,NULL),(9994,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(9995,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(9996,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/x509.h',NULL,NULL,NULL,NULL),(9997,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(9998,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/include/win32/openssl/x509v3.h',NULL,NULL,NULL,NULL),(9999,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/resource.h',NULL,NULL,NULL,NULL),(10000,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source',NULL,NULL,NULL,NULL),(10001,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(10002,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_base64.c',NULL,NULL,NULL,NULL),(10003,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(10004,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(10005,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_buffer.c',NULL,NULL,NULL,NULL),(10006,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(10007,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_channel.c',NULL,NULL,NULL,NULL),(10008,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(10009,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_connection.c',NULL,NULL,NULL,NULL),(10010,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_core.c',NULL,NULL,NULL,NULL),(10011,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(10012,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(10013,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_decoder.c',NULL,NULL,NULL,NULL),(10014,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(10015,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_encoder.c',NULL,NULL,NULL,NULL),(10016,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(10017,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(10018,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_enumeratedtype.c',NULL,NULL,NULL,NULL),(10019,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_extensionobject.c',NULL,NULL,NULL,NULL),(10020,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_guid.c',NULL,NULL,NULL,NULL),(10021,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(10022,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_internal.c',NULL,NULL,NULL,NULL),(10023,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_listener.c',NULL,NULL,NULL,NULL),(10024,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_listener_connectionmanager.c',NULL,NULL,NULL,NULL),(10025,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(10026,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(10027,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_list.c',NULL,NULL,NULL,NULL),(10028,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_listener.c',NULL,NULL,NULL,NULL),(10029,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_memory.c',NULL,NULL,NULL,NULL),(10030,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(10031,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_messagecontext.c',NULL,NULL,NULL,NULL),(10032,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_binary.c',NULL,NULL,NULL,NULL),(10033,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(10034,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(10035,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_guid.c',NULL,NULL,NULL,NULL),(10036,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(10037,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(10038,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_libxml2.c',NULL,NULL,NULL,NULL),(10039,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(10040,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(10041,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_3des.c',NULL,NULL,NULL,NULL),(10042,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_aes.c',NULL,NULL,NULL,NULL),(10043,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(10044,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_hmac_sha.c',NULL,NULL,NULL,NULL),(10045,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(10046,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(10047,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(10048,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_sha.c',NULL,NULL,NULL,NULL),(10049,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(10050,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_pki_nosecurity.c',NULL,NULL,NULL,NULL),(10051,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_pkifactory.c',NULL,NULL,NULL,NULL),(10052,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_securitypolicy_none.c',NULL,NULL,NULL,NULL),(10053,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(10054,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(10055,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(10056,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(10057,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(10058,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(10059,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(10060,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(10061,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(10062,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(10063,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securechannel.c',NULL,NULL,NULL,NULL),(10064,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(10065,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(10066,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(10067,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(10068,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(10069,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(10070,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_servicetable.c',NULL,NULL,NULL,NULL),(10071,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_stream.c',NULL,NULL,NULL,NULL),(10072,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_string.c',NULL,NULL,NULL,NULL),(10073,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_stringtable.c',NULL,NULL,NULL,NULL),(10074,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(10075,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(10076,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(10077,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(10078,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(10079,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_thread.c',NULL,NULL,NULL,NULL),(10080,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(10081,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_timer.c',NULL,NULL,NULL,NULL),(10082,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_trace.c',NULL,NULL,NULL,NULL),(10083,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_types.c',NULL,NULL,NULL,NULL),(10084,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(10085,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(10086,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_xmlencoder.c',NULL,NULL,NULL,NULL),(10087,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_xmlreader.c',NULL,NULL,NULL,NULL),(10088,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUaStackV1/UAStackV1/source/opcua_xmlwriter.c',NULL,NULL,NULL,NULL),(10089,1093,'A','/trunk/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(10090,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser',NULL,NULL,NULL,NULL),(10091,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/CMakeLists.txt',NULL,NULL,NULL,NULL),(10092,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/Doc',NULL,NULL,NULL,NULL),(10093,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/Doc/Expat .docx',NULL,NULL,NULL,NULL),(10094,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(10095,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(10096,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XMLSAXParser.vcxproj.filters',NULL,NULL,NULL,NULL),(10097,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared',NULL,NULL,NULL,NULL),(10098,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/ascii.h',NULL,NULL,NULL,NULL),(10099,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/asciitab.h',NULL,NULL,NULL,NULL),(10100,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/expat.h',NULL,NULL,NULL,NULL),(10101,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/expat_external.h',NULL,NULL,NULL,NULL),(10102,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/iasciitab.h',NULL,NULL,NULL,NULL),(10103,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/internal.h',NULL,NULL,NULL,NULL),(10104,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/latin1tab.h',NULL,NULL,NULL,NULL),(10105,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/nametab.h',NULL,NULL,NULL,NULL),(10106,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/utf8tab.h',NULL,NULL,NULL,NULL),(10107,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlCanon.h',NULL,NULL,NULL,NULL),(10108,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlConfig.h',NULL,NULL,NULL,NULL),(10109,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlLib.h',NULL,NULL,NULL,NULL),(10110,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(10111,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlop.h',NULL,NULL,NULL,NULL),(10112,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(10113,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlrole.c',NULL,NULL,NULL,NULL),(10114,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmlrole.h',NULL,NULL,NULL,NULL),(10115,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltchar.h',NULL,NULL,NULL,NULL),(10116,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok.c',NULL,NULL,NULL,NULL),(10117,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok.h',NULL,NULL,NULL,NULL),(10118,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok_impl.c',NULL,NULL,NULL,NULL),(10119,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok_impl.h',NULL,NULL,NULL,NULL),(10120,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/XmlShared/xmltok_ns.c',NULL,NULL,NULL,NULL),(10121,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/include',NULL,NULL,NULL,NULL),(10122,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(10123,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/include/stdafx.h',NULL,NULL,NULL,NULL),(10124,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/resource.h',NULL,NULL,NULL,NULL),(10125,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/source',NULL,NULL,NULL,NULL),(10126,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(10127,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/source/XMLSAXParser.cpp',NULL,NULL,NULL,NULL),(10128,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/source/XMLSAXParser.def',NULL,NULL,NULL,NULL),(10129,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/source/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(10130,1093,'A','/trunk/OpenOpcUa_VS2013/XMLSAXParser/source/stdafx.cpp',NULL,NULL,NULL,NULL),(10131,1094,'M','/trunk/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(10132,1095,'D','/trunk/OpenOpcUa_VS2013',NULL,NULL,NULL,NULL),(10133,1096,'A','/trunk/OpenOpcUaCoreServer_VS2013.sln',NULL,NULL,NULL,NULL),(10134,1097,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(10135,1097,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10136,1097,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10137,1097,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10138,1097,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10139,1097,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10140,1098,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(10141,1098,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10142,1098,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10143,1098,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10144,1098,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10145,1098,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10146,1098,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10147,1099,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10148,1099,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(10149,1099,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(10150,1099,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(10151,1099,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(10152,1099,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(10153,1099,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10154,1099,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(10155,1099,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10156,1099,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10157,1099,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10158,1099,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10159,1099,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10160,1099,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10161,1099,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10162,1099,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10163,1099,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10164,1099,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10165,1099,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10166,1099,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10167,1099,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(10168,1099,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10169,1100,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10170,1100,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10171,1100,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10172,1100,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10173,1100,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10174,1100,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(10175,1100,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10176,1100,'M','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(10177,1100,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10178,1100,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10179,1101,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10180,1101,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10181,1102,'M','/trunk/include/UABinding.h',NULL,NULL,NULL,NULL),(10182,1102,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10183,1102,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10184,1102,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10185,1102,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10186,1102,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(10187,1102,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(10188,1102,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10189,1103,'M','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(10190,1103,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10191,1103,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10192,1103,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10193,1103,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10194,1103,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10195,1104,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(10196,1104,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(10197,1104,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(10198,1104,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(10199,1104,'M','/trunk/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(10200,1104,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10201,1104,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(10202,1104,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10203,1104,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10204,1104,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10205,1104,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10206,1104,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10207,1104,'M','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(10208,1104,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10209,1105,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10210,1105,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10211,1105,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10212,1105,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10213,1105,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10214,1106,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10215,1106,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(10216,1106,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10217,1106,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10218,1106,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10219,1106,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10220,1107,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10221,1107,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10222,1107,'A','/trunk/include/QueuedHistoryReadRequest.h',NULL,NULL,NULL,NULL),(10223,1107,'A','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(10224,1107,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10225,1107,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10226,1107,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10227,1107,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10228,1107,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10229,1108,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10230,1108,'A','/trunk/ServerShared/xmlsaxparsertlk.h',NULL,NULL,NULL,NULL),(10231,1108,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(10232,1108,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(10233,1108,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10234,1108,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10235,1108,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10236,1108,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10237,1108,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10238,1108,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10239,1108,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10240,1108,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10241,1108,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10242,1108,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10243,1108,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10244,1108,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10245,1108,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10246,1108,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10247,1108,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10248,1109,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10249,1109,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10250,1109,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10251,1109,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10252,1110,'M','/trunk/ServerShared/VfiDataValue.h',NULL,NULL,NULL,NULL),(10253,1110,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(10254,1110,'M','/trunk/include/UAHistorianVariable.h',NULL,NULL,NULL,NULL),(10255,1110,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(10256,1110,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10257,1110,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10258,1110,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10259,1110,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10260,1110,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(10261,1110,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10262,1111,'M','/trunk/include/UAMethod.h',NULL,NULL,NULL,NULL),(10263,1111,'M','/trunk/include/UAObject.h',NULL,NULL,NULL,NULL),(10264,1111,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10265,1111,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10266,1111,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10267,1111,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(10268,1111,'M','/trunk/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(10269,1111,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(10270,1111,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10271,1112,'M','/trunk/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(10272,1112,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(10273,1112,'M','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(10274,1112,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10275,1112,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10276,1112,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10277,1112,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10278,1112,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10279,1112,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10280,1112,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10281,1113,'M','/trunk/ServerShared/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(10282,1113,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(10283,1113,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(10284,1113,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(10285,1113,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10286,1113,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10287,1113,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10288,1113,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10289,1113,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10290,1113,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10291,1113,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(10292,1113,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10293,1113,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10294,1113,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10295,1113,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10296,1113,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10297,1113,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10298,1113,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10299,1113,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10300,1113,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10301,1113,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10302,1114,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(10303,1114,'M','/trunk/include/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(10304,1114,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10305,1114,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10306,1114,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10307,1114,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10308,1114,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10309,1114,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10310,1114,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10311,1115,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(10312,1115,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(10313,1115,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10314,1115,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10315,1115,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10316,1116,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10317,1116,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(10318,1116,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10319,1116,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(10320,1116,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10321,1117,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10322,1118,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10323,1118,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10324,1118,'A','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(10325,1119,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10326,1119,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10327,1119,'A','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10328,1120,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10329,1120,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10330,1120,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(10331,1120,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(10332,1120,'A','/trunk/include/QueuedCallRequest.h',NULL,NULL,NULL,NULL),(10333,1120,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(10334,1120,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(10335,1120,'M','/trunk/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(10336,1120,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(10337,1120,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(10338,1120,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(10339,1120,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(10340,1120,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(10341,1120,'M','/trunk/include/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(10342,1120,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10343,1120,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10344,1120,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10345,1120,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10346,1120,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10347,1120,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10348,1120,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10349,1120,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10350,1120,'A','/trunk/source/QueuedCallRequest.cpp',NULL,NULL,NULL,NULL),(10351,1120,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(10352,1120,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10353,1120,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10354,1120,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10355,1120,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10356,1120,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10357,1120,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10358,1120,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10359,1120,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10360,1120,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10361,1120,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10362,1120,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(10363,1121,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10364,1121,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10365,1121,'A','/trunk/include/EventDefintion.h',NULL,NULL,NULL,NULL),(10366,1121,'A','/trunk/source/EventDefintion.cpp',NULL,NULL,NULL,NULL),(10367,1121,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10368,1122,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10369,1122,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10370,1122,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(10371,1122,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(10372,1122,'M','/trunk/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(10373,1122,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10374,1122,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10375,1122,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10376,1122,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(10377,1122,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(10378,1122,'M','/trunk/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(10379,1122,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10380,1123,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(10381,1124,'A','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(10382,1124,'A','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(10383,1125,'M','/trunk/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(10384,1125,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(10385,1125,'M','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(10386,1125,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10387,1125,'M','/trunk/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(10388,1125,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10389,1125,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10390,1125,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(10391,1125,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10392,1125,'M','/trunk/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(10393,1126,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(10394,1126,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(10395,1126,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(10396,1126,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(10397,1126,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(10398,1126,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(10399,1126,'M','/trunk/include/UADataType.h',NULL,NULL,NULL,NULL),(10400,1126,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(10401,1126,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(10402,1126,'M','/trunk/include/UAReference.h',NULL,NULL,NULL,NULL),(10403,1126,'M','/trunk/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(10404,1126,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(10405,1126,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10406,1126,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10407,1126,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10408,1126,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(10409,1126,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10410,1126,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10411,1126,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10412,1126,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10413,1126,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10414,1126,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(10415,1126,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10416,1126,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10417,1126,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10418,1126,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10419,1126,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10420,1126,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10421,1126,'M','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(10422,1126,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10423,1126,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10424,1126,'M','/trunk/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(10425,1126,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10426,1126,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10427,1127,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(10428,1127,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(10429,1127,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(10430,1127,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(10431,1127,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(10432,1127,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10433,1127,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10434,1127,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(10435,1127,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10436,1127,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10437,1127,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10438,1127,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10439,1127,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10440,1127,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(10441,1127,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10442,1127,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10443,1127,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10444,1127,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10445,1127,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10446,1127,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10447,1127,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10448,1127,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10449,1127,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10450,1127,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10451,1128,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(10452,1128,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(10453,1128,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(10454,1128,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10455,1128,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10456,1128,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10457,1128,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10458,1129,'M','/trunk/ServerShared/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(10459,1129,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(10460,1129,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(10461,1129,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(10462,1129,'M','/trunk/include/SecureChannel.h',NULL,NULL,NULL,NULL),(10463,1129,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(10464,1129,'M','/trunk/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(10465,1129,'M','/trunk/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(10466,1129,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(10467,1129,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(10468,1129,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(10469,1129,'M','/trunk/include/UAObject.h',NULL,NULL,NULL,NULL),(10470,1129,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10471,1129,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10472,1129,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(10473,1129,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10474,1129,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10475,1129,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10476,1129,'M','/trunk/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(10477,1129,'M','/trunk/source/QueuedCallRequest.cpp',NULL,NULL,NULL,NULL),(10478,1129,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(10479,1129,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(10480,1129,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10481,1129,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10482,1129,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10483,1129,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10484,1129,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10485,1129,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10486,1130,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(10487,1130,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(10488,1130,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(10489,1130,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(10490,1130,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(10491,1130,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(10492,1130,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10493,1130,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10494,1130,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10495,1130,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10496,1130,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(10497,1131,'M','/trunk/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(10498,1131,'M','/trunk/include/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(10499,1131,'M','/trunk/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(10500,1131,'M','/trunk/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(10501,1131,'M','/trunk/include/Alias.h',NULL,NULL,NULL,NULL),(10502,1131,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(10503,1131,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(10504,1131,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(10505,1131,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(10506,1131,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(10507,1131,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(10508,1131,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(10509,1131,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(10510,1131,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(10511,1131,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(10512,1131,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(10513,1131,'M','/trunk/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(10514,1131,'M','/trunk/include/UAReference.h',NULL,NULL,NULL,NULL),(10515,1131,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(10516,1131,'M','/trunk/include/UAVariableType.h',NULL,NULL,NULL,NULL),(10517,1131,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(10518,1131,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(10519,1131,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(10520,1131,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10521,1131,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(10522,1131,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10523,1131,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10524,1131,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10525,1131,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10526,1131,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10527,1131,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10528,1131,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(10529,1131,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10530,1131,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10531,1131,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(10532,1131,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10533,1131,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10534,1131,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(10535,1131,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10536,1131,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(10537,1131,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10538,1132,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10539,1132,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10540,1132,'D','/trunk/include/AcqCtrlDef.h',NULL,NULL,NULL,NULL),(10541,1133,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(10542,1133,'M','/trunk/include/UAMethod.h',NULL,NULL,NULL,NULL),(10543,1133,'M','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(10544,1133,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10545,1133,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10546,1133,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10547,1133,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10548,1133,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10549,1133,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10550,1133,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10551,1133,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10552,1133,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10553,1133,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10554,1133,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10555,1133,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10556,1133,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10557,1133,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10558,1133,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(10559,1133,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(10560,1133,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10561,1133,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10562,1134,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(10563,1134,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10564,1135,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10565,1135,'D','/trunk/include/AcqCtrlDevice.h',NULL,NULL,NULL,NULL),(10566,1135,'M','/trunk/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(10567,1135,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(10568,1135,'A','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(10569,1135,'D','/trunk/source/AcqCtrlDevice.cpp',NULL,NULL,NULL,NULL),(10570,1135,'M','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10571,1135,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10572,1135,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10573,1135,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10574,1135,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10575,1135,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10576,1135,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10577,1135,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10578,1135,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10579,1135,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10580,1135,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10581,1135,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10582,1135,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10583,1135,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10584,1135,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(10585,1135,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(10586,1135,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10587,1135,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10588,1135,'A','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(10589,1136,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10590,1136,'D','/trunk/include/AcqCtrlSignal.h',NULL,NULL,NULL,NULL),(10591,1136,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(10592,1136,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(10593,1136,'A','/trunk/include/VpiTag.h',NULL,NULL,NULL,NULL),(10594,1136,'D','/trunk/source/AcqCtrlSignal.cpp',NULL,NULL,NULL,NULL),(10595,1136,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(10596,1136,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10597,1136,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10598,1136,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10599,1136,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10600,1136,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10601,1136,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10602,1136,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10603,1136,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10604,1136,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10605,1136,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10606,1136,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10607,1136,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10608,1136,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(10609,1136,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(10610,1136,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10611,1136,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10612,1136,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(10613,1136,'A','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(10614,1137,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(10615,1137,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(10616,1137,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(10617,1137,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(10618,1137,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(10619,1137,'M','/trunk/include/VpiTag.h',NULL,NULL,NULL,NULL),(10620,1137,'M','/trunk/include/VpiWriteObject.h',NULL,NULL,NULL,NULL),(10621,1137,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(10622,1137,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(10623,1137,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(10624,1137,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(10625,1137,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(10626,1137,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(10627,1137,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10628,1137,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10629,1137,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(10630,1137,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(10631,1137,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(10632,1137,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(10633,1137,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(10634,1137,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(10635,1137,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(10636,1137,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(10637,1137,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(10638,1137,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(10639,1137,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(10640,1137,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(10641,1138,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10642,1138,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10643,1138,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10644,1138,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(10645,1138,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(10646,1139,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10647,1139,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10648,1139,'D','/trunk/ServerShared/XMLSAXParserTlk.h',NULL,NULL,NULL,NULL),(10649,1140,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(10650,1140,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(10651,1140,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10652,1141,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(10653,1142,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(10654,1143,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10655,1144,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(10656,1145,'M','/trunk/OPCUA_CPP_SharedLib.vcproj',NULL,NULL,NULL,NULL),(10657,1146,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10658,1147,'M','/trunk/include/ExtensionObject.h',NULL,NULL,NULL,NULL),(10659,1147,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(10660,1147,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10661,1147,'M','/trunk/source/ExtensionObject.cpp',NULL,NULL,NULL,NULL),(10662,1147,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10663,1148,'A','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(10664,1148,'A','/trunk/OpenOpcUASharedLib.vcxproj.filters',NULL,NULL,NULL,NULL),(10665,1148,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(10666,1148,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10667,1148,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(10668,1148,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10669,1149,'A','/trunk/OpenOpcUaSharedLib_VS2013.sln',NULL,NULL,NULL,NULL),(10670,1150,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(10671,1150,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(10672,1150,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10673,1150,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(10674,1151,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(10675,1151,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(10676,1151,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(10677,1151,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(10678,1151,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10679,1151,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(10680,1151,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10681,1151,'M','/trunk/source/stdafx.cpp',NULL,NULL,NULL,NULL),(10682,1152,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10683,1152,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10684,1153,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(10685,1154,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10686,1154,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10687,1155,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10688,1156,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10689,1157,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10690,1158,'M','/trunk/include/BuildInfo.h',NULL,NULL,NULL,NULL),(10691,1158,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(10692,1158,'M','/trunk/source/BuildInfo.cpp',NULL,NULL,NULL,NULL),(10693,1158,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10694,1158,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(10695,1158,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(10696,1159,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10697,1159,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10698,1160,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(10699,1160,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(10700,1160,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(10701,1160,'M','/trunk/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(10702,1160,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10703,1160,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(10704,1161,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(10705,1161,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(10706,1162,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(10707,1162,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10708,1162,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(10709,1163,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10710,1164,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(10711,1165,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(10712,1166,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(10713,1166,'M','/trunk/OpenOpcUASharedLib.vcxproj.filters',NULL,NULL,NULL,NULL),(10714,1166,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(10715,1166,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(10716,1166,'M','/trunk/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(10717,1166,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(10718,1166,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(10719,1166,'M','/trunk/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(10720,1166,'M','/trunk/include/UserTokenPolicy.h',NULL,NULL,NULL,NULL),(10721,1166,'M','/trunk/include/cslock.h',NULL,NULL,NULL,NULL),(10722,1166,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(10723,1166,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(10724,1166,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(10725,1166,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(10726,1166,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(10727,1166,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(10728,1166,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(10729,1166,'M','/trunk/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(10730,1166,'A','/trunk/source/UserTokenPolicy.cpp',NULL,NULL,NULL,NULL),(10731,1166,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(10732,1167,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(10733,1167,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10734,1167,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10735,1168,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(10736,1168,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(10737,1168,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10738,1168,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(10739,1169,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10740,1170,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10741,1171,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(10742,1171,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(10743,1171,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(10744,1171,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(10745,1171,'M','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(10746,1171,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(10747,1171,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(10748,1171,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(10749,1171,'M','/trunk/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(10750,1171,'M','/trunk/source/Subscription.cpp',NULL,NULL,NULL,NULL),(10751,1171,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10752,1171,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(10753,1172,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(10754,1173,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(10755,1173,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10756,1173,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(10757,1174,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10758,1175,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(10759,1175,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(10760,1176,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(10761,1176,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(10762,1176,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(10763,1176,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(10764,1176,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(10765,1176,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(10766,1177,'A','/trunk/Doc',NULL,NULL,NULL,NULL),(10767,1177,'A','/trunk/Doc/Fonctionnement interne de la Stack AnsiC.docx',NULL,NULL,NULL,NULL),(10768,1177,'A','/trunk/Doc/OPC UA Ansi C Stack - Design Review.doc',NULL,NULL,NULL,NULL),(10769,1177,'A','/trunk/Doc/OPC UA AnsiC Coding Guidelines_Draft_0.9.doc',NULL,NULL,NULL,NULL),(10770,1177,'A','/trunk/Doc/Relations entre la Stack AnsiC et le SDK UA.docx',NULL,NULL,NULL,NULL),(10771,1177,'A','/trunk/Doc/Structure et type de la stack AnsiC.docx',NULL,NULL,NULL,NULL),(10772,1177,'A','/trunk/Doc/UA Stack API.docx',NULL,NULL,NULL,NULL),(10773,1178,'A','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(10774,1179,'A','/trunk/include',NULL,NULL,NULL,NULL),(10775,1179,'A','/trunk/include/shared',NULL,NULL,NULL,NULL),(10776,1180,'A','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(10777,1180,'A','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(10778,1180,'A','/trunk/OpenOpcUaStackV1.vcxproj.filters',NULL,NULL,NULL,NULL),(10779,1180,'A','/trunk/include/shared/opcua.h',NULL,NULL,NULL,NULL),(10780,1180,'A','/trunk/include/shared/opcua_asynccallstate.h',NULL,NULL,NULL,NULL),(10781,1180,'A','/trunk/include/shared/opcua_attributes.h',NULL,NULL,NULL,NULL),(10782,1180,'A','/trunk/include/shared/opcua_base64.h',NULL,NULL,NULL,NULL),(10783,1180,'A','/trunk/include/shared/opcua_binaryencoder.h',NULL,NULL,NULL,NULL),(10784,1180,'A','/trunk/include/shared/opcua_binaryencoderinternal.h',NULL,NULL,NULL,NULL),(10785,1180,'A','/trunk/include/shared/opcua_browsenames.h',NULL,NULL,NULL,NULL),(10786,1180,'A','/trunk/include/shared/opcua_buffer.h',NULL,NULL,NULL,NULL),(10787,1180,'A','/trunk/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(10788,1180,'A','/trunk/include/shared/opcua_channel.h',NULL,NULL,NULL,NULL),(10789,1180,'A','/trunk/include/shared/opcua_channel_internal.h',NULL,NULL,NULL,NULL),(10790,1180,'A','/trunk/include/shared/opcua_clientapi.h',NULL,NULL,NULL,NULL),(10791,1180,'A','/trunk/include/shared/opcua_clientproxy.h',NULL,NULL,NULL,NULL),(10792,1180,'A','/trunk/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(10793,1180,'A','/trunk/include/shared/opcua_connection.h',NULL,NULL,NULL,NULL),(10794,1180,'A','/trunk/include/shared/opcua_core.h',NULL,NULL,NULL,NULL),(10795,1180,'A','/trunk/include/shared/opcua_credentials.h',NULL,NULL,NULL,NULL),(10796,1180,'A','/trunk/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(10797,1180,'A','/trunk/include/shared/opcua_cryptofactory.h',NULL,NULL,NULL,NULL),(10798,1180,'A','/trunk/include/shared/opcua_datetime.h',NULL,NULL,NULL,NULL),(10799,1180,'A','/trunk/include/shared/opcua_decoder.h',NULL,NULL,NULL,NULL),(10800,1180,'A','/trunk/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(10801,1180,'A','/trunk/include/shared/opcua_encoder.h',NULL,NULL,NULL,NULL),(10802,1180,'A','/trunk/include/shared/opcua_endpoint.h',NULL,NULL,NULL,NULL),(10803,1180,'A','/trunk/include/shared/opcua_endpoint_ex.h',NULL,NULL,NULL,NULL),(10804,1180,'A','/trunk/include/shared/opcua_endpoint_internal.h',NULL,NULL,NULL,NULL),(10805,1180,'A','/trunk/include/shared/opcua_enumeratedtype.h',NULL,NULL,NULL,NULL),(10806,1180,'A','/trunk/include/shared/opcua_errorhandling.h',NULL,NULL,NULL,NULL),(10807,1180,'A','/trunk/include/shared/opcua_exclusions.h',NULL,NULL,NULL,NULL),(10808,1180,'A','/trunk/include/shared/opcua_extensionobject.h',NULL,NULL,NULL,NULL),(10809,1180,'A','/trunk/include/shared/opcua_guid.h',NULL,NULL,NULL,NULL),(10810,1180,'A','/trunk/include/shared/opcua_https_connection.h',NULL,NULL,NULL,NULL),(10811,1180,'A','/trunk/include/shared/opcua_https_internal.h',NULL,NULL,NULL,NULL),(10812,1180,'A','/trunk/include/shared/opcua_https_listener.h',NULL,NULL,NULL,NULL),(10813,1180,'A','/trunk/include/shared/opcua_https_listener_connectionmanager.h',NULL,NULL,NULL,NULL),(10814,1180,'A','/trunk/include/shared/opcua_https_secureconnection.h',NULL,NULL,NULL,NULL),(10815,1180,'A','/trunk/include/shared/opcua_httpsstream.h',NULL,NULL,NULL,NULL),(10816,1180,'A','/trunk/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(10817,1180,'A','/trunk/include/shared/opcua_list.h',NULL,NULL,NULL,NULL),(10818,1180,'A','/trunk/include/shared/opcua_listener.h',NULL,NULL,NULL,NULL),(10819,1180,'A','/trunk/include/shared/opcua_memory.h',NULL,NULL,NULL,NULL),(10820,1180,'A','/trunk/include/shared/opcua_memorystream.h',NULL,NULL,NULL,NULL),(10821,1180,'A','/trunk/include/shared/opcua_messagecontext.h',NULL,NULL,NULL,NULL),(10822,1180,'A','/trunk/include/shared/opcua_mutex.h',NULL,NULL,NULL,NULL),(10823,1180,'A','/trunk/include/shared/opcua_p_binary.h',NULL,NULL,NULL,NULL),(10824,1180,'A','/trunk/include/shared/opcua_p_compilerinfo.h',NULL,NULL,NULL,NULL),(10825,1180,'A','/trunk/include/shared/opcua_p_crypto.h',NULL,NULL,NULL,NULL),(10826,1180,'A','/trunk/include/shared/opcua_p_cryptofactory.h',NULL,NULL,NULL,NULL),(10827,1180,'A','/trunk/include/shared/opcua_p_datetime.h',NULL,NULL,NULL,NULL),(10828,1180,'A','/trunk/include/shared/opcua_p_guid.h',NULL,NULL,NULL,NULL),(10829,1180,'A','/trunk/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(10830,1180,'A','/trunk/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(10831,1180,'A','/trunk/include/shared/opcua_p_memory.h',NULL,NULL,NULL,NULL),(10832,1180,'A','/trunk/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(10833,1180,'A','/trunk/include/shared/opcua_p_openssl_pki.h',NULL,NULL,NULL,NULL),(10834,1180,'A','/trunk/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(10835,1180,'A','/trunk/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(10836,1180,'A','/trunk/include/shared/opcua_p_pki_nosecurity.h',NULL,NULL,NULL,NULL),(10837,1180,'A','/trunk/include/shared/opcua_p_pkifactory.h',NULL,NULL,NULL,NULL),(10838,1180,'A','/trunk/include/shared/opcua_p_securitypolicy_none.h',NULL,NULL,NULL,NULL),(10839,1180,'A','/trunk/include/shared/opcua_p_semaphore.h',NULL,NULL,NULL,NULL),(10840,1180,'A','/trunk/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(10841,1180,'A','/trunk/include/shared/opcua_p_socket_interface.h',NULL,NULL,NULL,NULL),(10842,1180,'A','/trunk/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(10843,1180,'A','/trunk/include/shared/opcua_p_string.h',NULL,NULL,NULL,NULL),(10844,1180,'A','/trunk/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(10845,1180,'A','/trunk/include/shared/opcua_p_timer.h',NULL,NULL,NULL,NULL),(10846,1180,'A','/trunk/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(10847,1180,'A','/trunk/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(10848,1180,'A','/trunk/include/shared/opcua_p_win32_pki.h',NULL,NULL,NULL,NULL),(10849,1180,'A','/trunk/include/shared/opcua_p_wincrypt.h',NULL,NULL,NULL,NULL),(10850,1180,'A','/trunk/include/shared/opcua_p_xml.h',NULL,NULL,NULL,NULL),(10851,1180,'A','/trunk/include/shared/opcua_pki.h',NULL,NULL,NULL,NULL),(10852,1180,'A','/trunk/include/shared/opcua_pkifactory.h',NULL,NULL,NULL,NULL),(10853,1180,'A','/trunk/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(10854,1180,'A','/trunk/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(10855,1180,'A','/trunk/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(10856,1180,'A','/trunk/include/shared/opcua_securechannel_types.h',NULL,NULL,NULL,NULL),(10857,1180,'A','/trunk/include/shared/opcua_secureconnection.h',NULL,NULL,NULL,NULL),(10858,1180,'A','/trunk/include/shared/opcua_securelistener.h',NULL,NULL,NULL,NULL),(10859,1180,'A','/trunk/include/shared/opcua_securelistener_channelmanager.h',NULL,NULL,NULL,NULL),(10860,1180,'A','/trunk/include/shared/opcua_securelistener_policymanager.h',NULL,NULL,NULL,NULL),(10861,1180,'A','/trunk/include/shared/opcua_securestream.h',NULL,NULL,NULL,NULL),(10862,1180,'A','/trunk/include/shared/opcua_semaphore.h',NULL,NULL,NULL,NULL),(10863,1180,'A','/trunk/include/shared/opcua_serverapi.h',NULL,NULL,NULL,NULL),(10864,1180,'A','/trunk/include/shared/opcua_serverstub.h',NULL,NULL,NULL,NULL),(10865,1180,'A','/trunk/include/shared/opcua_servicetable.h',NULL,NULL,NULL,NULL),(10866,1180,'A','/trunk/include/shared/opcua_soapsecurechannel.h',NULL,NULL,NULL,NULL),(10867,1180,'A','/trunk/include/shared/opcua_socket.h',NULL,NULL,NULL,NULL),(10868,1180,'A','/trunk/include/shared/opcua_stackstatuscodes.h',NULL,NULL,NULL,NULL),(10869,1180,'A','/trunk/include/shared/opcua_statuscodes.h',NULL,NULL,NULL,NULL),(10870,1180,'A','/trunk/include/shared/opcua_stream.h',NULL,NULL,NULL,NULL),(10871,1180,'A','/trunk/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(10872,1180,'A','/trunk/include/shared/opcua_stringtable.h',NULL,NULL,NULL,NULL),(10873,1180,'A','/trunk/include/shared/opcua_tcpconnection.h',NULL,NULL,NULL,NULL),(10874,1180,'A','/trunk/include/shared/opcua_tcplistener.h',NULL,NULL,NULL,NULL),(10875,1180,'A','/trunk/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(10876,1180,'A','/trunk/include/shared/opcua_tcpsecurechannel.h',NULL,NULL,NULL,NULL),(10877,1180,'A','/trunk/include/shared/opcua_tcpstream.h',NULL,NULL,NULL,NULL),(10878,1180,'A','/trunk/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(10879,1180,'A','/trunk/include/shared/opcua_threadpool.h',NULL,NULL,NULL,NULL),(10880,1180,'A','/trunk/include/shared/opcua_timer.h',NULL,NULL,NULL,NULL),(10881,1180,'A','/trunk/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(10882,1180,'A','/trunk/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(10883,1180,'A','/trunk/include/shared/opcua_utilities.h',NULL,NULL,NULL,NULL),(10884,1180,'A','/trunk/include/shared/opcua_xmldefs.h',NULL,NULL,NULL,NULL),(10885,1180,'A','/trunk/include/shared/opcua_xmlencoder.h',NULL,NULL,NULL,NULL),(10886,1180,'A','/trunk/include/shared/opcua_xmlencoderinternal.h',NULL,NULL,NULL,NULL),(10887,1180,'A','/trunk/include/shared/opcua_xmlreader.h',NULL,NULL,NULL,NULL),(10888,1180,'A','/trunk/include/shared/opcua_xmlwriter.h',NULL,NULL,NULL,NULL),(10889,1180,'A','/trunk/include/shared/resource.h',NULL,NULL,NULL,NULL),(10890,1180,'A','/trunk/include/win32',NULL,NULL,NULL,NULL),(10891,1180,'A','/trunk/include/win32/openssl',NULL,NULL,NULL,NULL),(10892,1180,'A','/trunk/include/win32/openssl/aes.h',NULL,NULL,NULL,NULL),(10893,1180,'A','/trunk/include/win32/openssl/applink.c',NULL,NULL,NULL,NULL),(10894,1180,'A','/trunk/include/win32/openssl/asn1.h',NULL,NULL,NULL,NULL),(10895,1180,'A','/trunk/include/win32/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(10896,1180,'A','/trunk/include/win32/openssl/asn1t.h',NULL,NULL,NULL,NULL),(10897,1180,'A','/trunk/include/win32/openssl/bio.h',NULL,NULL,NULL,NULL),(10898,1180,'A','/trunk/include/win32/openssl/blowfish.h',NULL,NULL,NULL,NULL),(10899,1180,'A','/trunk/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(10900,1180,'A','/trunk/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(10901,1180,'A','/trunk/include/win32/openssl/camellia.h',NULL,NULL,NULL,NULL),(10902,1180,'A','/trunk/include/win32/openssl/cast.h',NULL,NULL,NULL,NULL),(10903,1180,'A','/trunk/include/win32/openssl/cmac.h',NULL,NULL,NULL,NULL),(10904,1180,'A','/trunk/include/win32/openssl/cms.h',NULL,NULL,NULL,NULL),(10905,1180,'A','/trunk/include/win32/openssl/comp.h',NULL,NULL,NULL,NULL),(10906,1180,'A','/trunk/include/win32/openssl/conf.h',NULL,NULL,NULL,NULL),(10907,1180,'A','/trunk/include/win32/openssl/conf_api.h',NULL,NULL,NULL,NULL),(10908,1180,'A','/trunk/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(10909,1180,'A','/trunk/include/win32/openssl/des.h',NULL,NULL,NULL,NULL),(10910,1180,'A','/trunk/include/win32/openssl/des_old.h',NULL,NULL,NULL,NULL),(10911,1180,'A','/trunk/include/win32/openssl/dh.h',NULL,NULL,NULL,NULL),(10912,1180,'A','/trunk/include/win32/openssl/dsa.h',NULL,NULL,NULL,NULL),(10913,1180,'A','/trunk/include/win32/openssl/dso.h',NULL,NULL,NULL,NULL),(10914,1180,'A','/trunk/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(10915,1180,'A','/trunk/include/win32/openssl/e_os2.h',NULL,NULL,NULL,NULL),(10916,1180,'A','/trunk/include/win32/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(10917,1180,'A','/trunk/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(10918,1180,'A','/trunk/include/win32/openssl/ecdh.h',NULL,NULL,NULL,NULL),(10919,1180,'A','/trunk/include/win32/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(10920,1180,'A','/trunk/include/win32/openssl/engine.h',NULL,NULL,NULL,NULL),(10921,1180,'A','/trunk/include/win32/openssl/err.h',NULL,NULL,NULL,NULL),(10922,1180,'A','/trunk/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(10923,1180,'A','/trunk/include/win32/openssl/hmac.h',NULL,NULL,NULL,NULL),(10924,1180,'A','/trunk/include/win32/openssl/idea.h',NULL,NULL,NULL,NULL),(10925,1180,'A','/trunk/include/win32/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(10926,1180,'A','/trunk/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(10927,1180,'A','/trunk/include/win32/openssl/lhash.h',NULL,NULL,NULL,NULL),(10928,1180,'A','/trunk/include/win32/openssl/md4.h',NULL,NULL,NULL,NULL),(10929,1180,'A','/trunk/include/win32/openssl/md5.h',NULL,NULL,NULL,NULL),(10930,1180,'A','/trunk/include/win32/openssl/mdc2.h',NULL,NULL,NULL,NULL),(10931,1180,'A','/trunk/include/win32/openssl/modes.h',NULL,NULL,NULL,NULL),(10932,1180,'A','/trunk/include/win32/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(10933,1180,'A','/trunk/include/win32/openssl/objects.h',NULL,NULL,NULL,NULL),(10934,1180,'A','/trunk/include/win32/openssl/ocsp.h',NULL,NULL,NULL,NULL),(10935,1180,'A','/trunk/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(10936,1180,'A','/trunk/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(10937,1180,'A','/trunk/include/win32/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(10938,1180,'A','/trunk/include/win32/openssl/pem.h',NULL,NULL,NULL,NULL),(10939,1180,'A','/trunk/include/win32/openssl/pem2.h',NULL,NULL,NULL,NULL),(10940,1180,'A','/trunk/include/win32/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(10941,1180,'A','/trunk/include/win32/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(10942,1180,'A','/trunk/include/win32/openssl/pqueue.h',NULL,NULL,NULL,NULL),(10943,1180,'A','/trunk/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(10944,1180,'A','/trunk/include/win32/openssl/rc2.h',NULL,NULL,NULL,NULL),(10945,1180,'A','/trunk/include/win32/openssl/rc4.h',NULL,NULL,NULL,NULL),(10946,1180,'A','/trunk/include/win32/openssl/ripemd.h',NULL,NULL,NULL,NULL),(10947,1180,'A','/trunk/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(10948,1180,'A','/trunk/include/win32/openssl/safestack.h',NULL,NULL,NULL,NULL),(10949,1180,'A','/trunk/include/win32/openssl/seed.h',NULL,NULL,NULL,NULL),(10950,1180,'A','/trunk/include/win32/openssl/sha.h',NULL,NULL,NULL,NULL),(10951,1180,'A','/trunk/include/win32/openssl/srp.h',NULL,NULL,NULL,NULL),(10952,1180,'A','/trunk/include/win32/openssl/srtp.h',NULL,NULL,NULL,NULL),(10953,1180,'A','/trunk/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(10954,1180,'A','/trunk/include/win32/openssl/ssl2.h',NULL,NULL,NULL,NULL),(10955,1180,'A','/trunk/include/win32/openssl/ssl23.h',NULL,NULL,NULL,NULL),(10956,1180,'A','/trunk/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(10957,1180,'A','/trunk/include/win32/openssl/stack.h',NULL,NULL,NULL,NULL),(10958,1180,'A','/trunk/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(10959,1180,'A','/trunk/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(10960,1180,'A','/trunk/include/win32/openssl/ts.h',NULL,NULL,NULL,NULL),(10961,1180,'A','/trunk/include/win32/openssl/txt_db.h',NULL,NULL,NULL,NULL),(10962,1180,'A','/trunk/include/win32/openssl/ui.h',NULL,NULL,NULL,NULL),(10963,1180,'A','/trunk/include/win32/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(10964,1180,'A','/trunk/include/win32/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(10965,1180,'A','/trunk/include/win32/openssl/x509.h',NULL,NULL,NULL,NULL),(10966,1180,'A','/trunk/include/win32/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(10967,1180,'A','/trunk/include/win32/openssl/x509v3.h',NULL,NULL,NULL,NULL),(10968,1180,'A','/trunk/resource.h',NULL,NULL,NULL,NULL),(10969,1180,'A','/trunk/source',NULL,NULL,NULL,NULL),(10970,1180,'A','/trunk/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(10971,1180,'A','/trunk/source/opcua_base64.c',NULL,NULL,NULL,NULL),(10972,1180,'A','/trunk/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(10973,1180,'A','/trunk/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(10974,1180,'A','/trunk/source/opcua_buffer.c',NULL,NULL,NULL,NULL),(10975,1180,'A','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(10976,1180,'A','/trunk/source/opcua_channel.c',NULL,NULL,NULL,NULL),(10977,1180,'A','/trunk/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(10978,1180,'A','/trunk/source/opcua_connection.c',NULL,NULL,NULL,NULL),(10979,1180,'A','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(10980,1180,'A','/trunk/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(10981,1180,'A','/trunk/source/opcua_datetime.c',NULL,NULL,NULL,NULL),(10982,1180,'A','/trunk/source/opcua_decoder.c',NULL,NULL,NULL,NULL),(10983,1180,'A','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(10984,1180,'A','/trunk/source/opcua_encoder.c',NULL,NULL,NULL,NULL),(10985,1180,'A','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(10986,1180,'A','/trunk/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(10987,1180,'A','/trunk/source/opcua_enumeratedtype.c',NULL,NULL,NULL,NULL),(10988,1180,'A','/trunk/source/opcua_extensionobject.c',NULL,NULL,NULL,NULL),(10989,1180,'A','/trunk/source/opcua_guid.c',NULL,NULL,NULL,NULL),(10990,1180,'A','/trunk/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(10991,1180,'A','/trunk/source/opcua_https_internal.c',NULL,NULL,NULL,NULL),(10992,1180,'A','/trunk/source/opcua_https_listener.c',NULL,NULL,NULL,NULL),(10993,1180,'A','/trunk/source/opcua_https_listener_connectionmanager.c',NULL,NULL,NULL,NULL),(10994,1180,'A','/trunk/source/opcua_https_secureconnection.c',NULL,NULL,NULL,NULL),(10995,1180,'A','/trunk/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(10996,1180,'A','/trunk/source/opcua_list.c',NULL,NULL,NULL,NULL),(10997,1180,'A','/trunk/source/opcua_listener.c',NULL,NULL,NULL,NULL),(10998,1180,'A','/trunk/source/opcua_memory.c',NULL,NULL,NULL,NULL),(10999,1180,'A','/trunk/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(11000,1180,'A','/trunk/source/opcua_messagecontext.c',NULL,NULL,NULL,NULL),(11001,1180,'A','/trunk/source/opcua_p_binary.c',NULL,NULL,NULL,NULL),(11002,1180,'A','/trunk/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(11003,1180,'A','/trunk/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(11004,1180,'A','/trunk/source/opcua_p_guid.c',NULL,NULL,NULL,NULL),(11005,1180,'A','/trunk/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(11006,1180,'A','/trunk/source/opcua_p_internal.c',NULL,NULL,NULL,NULL),(11007,1180,'A','/trunk/source/opcua_p_libxml2.c',NULL,NULL,NULL,NULL),(11008,1180,'A','/trunk/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(11009,1180,'A','/trunk/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(11010,1180,'A','/trunk/source/opcua_p_openssl_3des.c',NULL,NULL,NULL,NULL),(11011,1180,'A','/trunk/source/opcua_p_openssl_aes.c',NULL,NULL,NULL,NULL),(11012,1180,'A','/trunk/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(11013,1180,'A','/trunk/source/opcua_p_openssl_hmac_sha.c',NULL,NULL,NULL,NULL),(11014,1180,'A','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(11015,1180,'A','/trunk/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(11016,1180,'A','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(11017,1180,'A','/trunk/source/opcua_p_openssl_sha.c',NULL,NULL,NULL,NULL),(11018,1180,'A','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(11019,1180,'A','/trunk/source/opcua_p_pki_nosecurity.c',NULL,NULL,NULL,NULL),(11020,1180,'A','/trunk/source/opcua_p_pkifactory.c',NULL,NULL,NULL,NULL),(11021,1180,'A','/trunk/source/opcua_p_securitypolicy_none.c',NULL,NULL,NULL,NULL),(11022,1180,'A','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(11023,1180,'A','/trunk/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(11024,1180,'A','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(11025,1180,'A','/trunk/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(11026,1180,'A','/trunk/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(11027,1180,'A','/trunk/source/opcua_p_timer.c',NULL,NULL,NULL,NULL),(11028,1180,'A','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(11029,1180,'A','/trunk/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(11030,1180,'A','/trunk/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(11031,1180,'A','/trunk/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(11032,1180,'A','/trunk/source/opcua_securechannel.c',NULL,NULL,NULL,NULL),(11033,1180,'A','/trunk/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(11034,1180,'A','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(11035,1180,'A','/trunk/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(11036,1180,'A','/trunk/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(11037,1180,'A','/trunk/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(11038,1180,'A','/trunk/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(11039,1180,'A','/trunk/source/opcua_servicetable.c',NULL,NULL,NULL,NULL),(11040,1180,'A','/trunk/source/opcua_stream.c',NULL,NULL,NULL,NULL),(11041,1180,'A','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(11042,1180,'A','/trunk/source/opcua_stringtable.c',NULL,NULL,NULL,NULL),(11043,1180,'A','/trunk/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(11044,1180,'A','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(11045,1180,'A','/trunk/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(11046,1180,'A','/trunk/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(11047,1180,'A','/trunk/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(11048,1180,'A','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(11049,1180,'A','/trunk/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(11050,1180,'A','/trunk/source/opcua_timer.c',NULL,NULL,NULL,NULL),(11051,1180,'A','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(11052,1180,'A','/trunk/source/opcua_types.c',NULL,NULL,NULL,NULL),(11053,1180,'A','/trunk/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(11054,1180,'A','/trunk/source/opcua_xmldecoder.c',NULL,NULL,NULL,NULL),(11055,1180,'A','/trunk/source/opcua_xmlencoder.c',NULL,NULL,NULL,NULL),(11056,1180,'A','/trunk/source/opcua_xmlreader.c',NULL,NULL,NULL,NULL),(11057,1180,'A','/trunk/source/opcua_xmlwriter.c',NULL,NULL,NULL,NULL),(11058,1181,'D','/trunk/UAStackV1/UAStackV1.vcxproj',NULL,NULL,NULL,NULL),(11059,1182,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(11060,1183,'M','/trunk/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(11061,1183,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(11062,1183,'M','/trunk/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(11063,1183,'M','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(11064,1183,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(11065,1183,'M','/trunk/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(11066,1183,'M','/trunk/source/opcua_memory.c',NULL,NULL,NULL,NULL),(11067,1183,'M','/trunk/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(11068,1183,'M','/trunk/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(11069,1183,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(11070,1183,'M','/trunk/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(11071,1183,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(11072,1183,'M','/trunk/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(11073,1183,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(11074,1183,'M','/trunk/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(11075,1184,'M','/trunk/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(11076,1184,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(11077,1184,'M','/trunk/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(11078,1185,'M','/trunk/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(11079,1185,'M','/trunk/source/opcua_guid.c',NULL,NULL,NULL,NULL),(11080,1186,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(11081,1186,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(11082,1186,'M','/trunk/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(11083,1186,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(11084,1186,'M','/trunk/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(11085,1186,'M','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(11086,1187,'A','/Deliver_vs2013',NULL,NULL,NULL,NULL),(11087,1187,'A','/Deliver_vs2013/CreateFoldersAndFill-It.bat',NULL,NULL,NULL,NULL),(11088,1187,'A','/Deliver_vs2013/Deliver.vcxproj',NULL,NULL,NULL,NULL),(11089,1187,'A','/Deliver_vs2013/Deliver.vcxproj.filters',NULL,NULL,NULL,NULL),(11090,1187,'A','/Deliver_vs2013/Deliver_vs2013.sln',NULL,NULL,NULL,NULL),(11091,1187,'A','/Deliver_vs2013/GenerateOpenOpcUaClientSdk.bat',NULL,NULL,NULL,NULL),(11092,1187,'A','/Deliver_vs2013/GenerateOpenOpcUaCoreServerDeliverable.bat',NULL,NULL,NULL,NULL),(11093,1187,'A','/Deliver_vs2013/StaticFiles',NULL,NULL,NULL,NULL),(11094,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaClientLib',NULL,NULL,NULL,NULL),(11095,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaClientLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(11096,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaClientLib/OpenOpcUaClientLib.sln',NULL,NULL,NULL,NULL),(11097,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaClientLib/OpenOpcUaClientLib.vcproj',NULL,NULL,NULL,NULL),(11098,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaCoreServer',NULL,NULL,NULL,NULL),(11099,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaCoreServer/CMakeLists.txt',NULL,NULL,NULL,NULL),(11100,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaCoreServer/OpenOpcUaCoreServer.pro',NULL,NULL,NULL,NULL),(11101,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaCoreServer/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(11102,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaCoreServer/OpenOpcUaCoreServer.vcproj',NULL,NULL,NULL,NULL),(11103,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaSharedLib',NULL,NULL,NULL,NULL),(11104,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaSharedLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(11105,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaSharedLib/OpenOpcUaSharedLib.pro',NULL,NULL,NULL,NULL),(11106,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaSharedLib/OpenOpcUaSharedLib.vcproj',NULL,NULL,NULL,NULL),(11107,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaStackV1',NULL,NULL,NULL,NULL),(11108,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaStackV1/CMakeLists.txt',NULL,NULL,NULL,NULL),(11109,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaStackV1/OpenOpcUaStack.pro',NULL,NULL,NULL,NULL),(11110,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaStackV1/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(11111,1187,'A','/Deliver_vs2013/StaticFiles/OpenOpcUaStackV1/OpenOpcUaStackV1.vcproj',NULL,NULL,NULL,NULL),(11112,1187,'A','/Deliver_vs2013/StaticFiles/XMLSAXParser',NULL,NULL,NULL,NULL),(11113,1187,'A','/Deliver_vs2013/StaticFiles/XMLSAXParser/CMakeLists.txt',NULL,NULL,NULL,NULL),(11114,1187,'A','/Deliver_vs2013/StaticFiles/XMLSAXParser/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(11115,1187,'A','/Deliver_vs2013/StaticFiles/XMLSAXParser/XMLSaxParser.pro',NULL,NULL,NULL,NULL),(11116,1187,'A','/Deliver_vs2013/StaticFiles/lib',NULL,NULL,NULL,NULL),(11117,1187,'A','/Deliver_vs2013/StaticFiles/lib/win32',NULL,NULL,NULL,NULL),(11118,1187,'A','/Deliver_vs2013/StaticFiles/lib/win32/libeay32.lib',NULL,NULL,NULL,NULL),(11119,1187,'A','/Deliver_vs2013/UpdateOpenOpcUaQuickClient.bat',NULL,NULL,NULL,NULL),(11120,1187,'A','/Deliver_vs2013/UpdateSourceOpenOpcUaClientLib.bat',NULL,NULL,NULL,NULL),(11121,1187,'A','/Deliver_vs2013/UpdateSourceOpenOpcUaCoreServer.bat',NULL,NULL,NULL,NULL),(11122,1187,'A','/Deliver_vs2013/UpdateSourceOpenOpcUaSharedLib.bat',NULL,NULL,NULL,NULL),(11123,1187,'A','/Deliver_vs2013/UpdateSourceOpenOpcUaStackV1.bat',NULL,NULL,NULL,NULL),(11124,1187,'A','/Deliver_vs2013/UpdateSourceUaClientSdk.bat',NULL,NULL,NULL,NULL),(11125,1187,'A','/Deliver_vs2013/UpdateSourceXMLSAXParser.bat',NULL,NULL,NULL,NULL),(11126,1187,'A','/Deliver_vs2013/UpdateStaticFiles.bat',NULL,NULL,NULL,NULL),(11127,1187,'A','/Deliver_vs2013/UpdateVpisOperatingSystem.bat',NULL,NULL,NULL,NULL),(11128,1187,'A','/Deliver_vs2013/UpdateVpisSdk.bat',NULL,NULL,NULL,NULL),(11129,1188,'M','/VpiNull/VPINull.vcproj',NULL,NULL,NULL,NULL),(11130,1188,'A','/VpiNull/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11131,1189,'M','/VpiNull/CMakeLists.txt',NULL,NULL,NULL,NULL),(11132,1190,'A','/VpiNull/VPINull.vcxproj',NULL,NULL,NULL,NULL),(11133,1190,'A','/VpiNull/VPINull.vcxproj.filters',NULL,NULL,NULL,NULL),(11134,1190,'A','/VpiNull/VPINull_VS2013.sln',NULL,NULL,NULL,NULL),(11135,1190,'M','/VpiNull/include/SourceObject.h',NULL,NULL,NULL,NULL),(11136,1190,'M','/VpiNull/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11137,1190,'M','/VpiNull/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(11138,1190,'M','/VpiNull/source/VPINull.def',NULL,NULL,NULL,NULL),(11139,1190,'M','/VpiNull/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(11140,1191,'M','/VpiNull/VPINull.vcxproj',NULL,NULL,NULL,NULL),(11141,1191,'M','/VpiNull/include/SourceObject.h',NULL,NULL,NULL,NULL),(11142,1191,'M','/VpiNull/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11143,1191,'M','/VpiNull/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(11144,1191,'M','/VpiNull/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(11145,1192,'A','/VpiComDa',NULL,NULL,NULL,NULL),(11146,1193,'A','/VPIComDa_VS2013',NULL,NULL,NULL,NULL),(11147,1193,'A','/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(11148,1193,'A','/VPIComDa_VS2013/VPIComDa_VS2013.sln',NULL,NULL,NULL,NULL),(11149,1193,'A','/VPIComDa_VS2013/include',NULL,NULL,NULL,NULL),(11150,1193,'A','/VPIComDa_VS2013/include/OPCCallback.h',NULL,NULL,NULL,NULL),(11151,1193,'A','/VPIComDa_VS2013/include/OPCShutdown.h',NULL,NULL,NULL,NULL),(11152,1193,'A','/VPIComDa_VS2013/include/OpcDaConnection.h',NULL,NULL,NULL,NULL),(11153,1193,'A','/VPIComDa_VS2013/include/OpcDaGroup.h',NULL,NULL,NULL,NULL),(11154,1193,'A','/VPIComDa_VS2013/include/OpcDaItem.h',NULL,NULL,NULL,NULL),(11155,1193,'A','/VPIComDa_VS2013/include/SourceObject.h',NULL,NULL,NULL,NULL),(11156,1193,'A','/VPIComDa_VS2013/include/VPIComDa.h',NULL,NULL,NULL,NULL),(11157,1193,'A','/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11158,1193,'A','/VPIComDa_VS2013/include/stdafx.h',NULL,NULL,NULL,NULL),(11159,1193,'A','/VPIComDa_VS2013/include/targetver.h',NULL,NULL,NULL,NULL),(11160,1193,'A','/VPIComDa_VS2013/source',NULL,NULL,NULL,NULL),(11161,1193,'A','/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(11162,1193,'A','/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(11163,1193,'A','/VPIComDa_VS2013/source/OPCShutdown.cpp',NULL,NULL,NULL,NULL),(11164,1193,'A','/VPIComDa_VS2013/source/OpcDaConnection.cpp',NULL,NULL,NULL,NULL),(11165,1193,'A','/VPIComDa_VS2013/source/OpcDaGroup.cpp',NULL,NULL,NULL,NULL),(11166,1193,'A','/VPIComDa_VS2013/source/OpcDaItem.cpp',NULL,NULL,NULL,NULL),(11167,1193,'A','/VPIComDa_VS2013/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(11168,1193,'A','/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(11169,1193,'A','/VPIComDa_VS2013/source/VPIComDa.def',NULL,NULL,NULL,NULL),(11170,1193,'A','/VPIComDa_VS2013/source/VPIComDad.def',NULL,NULL,NULL,NULL),(11171,1193,'A','/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(11172,1193,'A','/VPIComDa_VS2013/source/dllmain.cpp',NULL,NULL,NULL,NULL),(11173,1193,'A','/VPIComDa_VS2013/source/stdafx.cpp',NULL,NULL,NULL,NULL),(11174,1194,'M','/VPIComDa_VS2013/VPIComDa_VS2013.sln',NULL,NULL,NULL,NULL),(11175,1195,'D','/VpiComDa',NULL,NULL,NULL,NULL),(11176,1196,'A','/VPIComDa_VS2013/Include_COM',NULL,NULL,NULL,NULL),(11177,1196,'A','/VPIComDa_VS2013/Include_COM/Common',NULL,NULL,NULL,NULL),(11178,1196,'A','/VPIComDa_VS2013/Include_COM/Common/OpcEnum_i.c',NULL,NULL,NULL,NULL),(11179,1196,'A','/VPIComDa_VS2013/Include_COM/Common/opccomn.h',NULL,NULL,NULL,NULL),(11180,1196,'A','/VPIComDa_VS2013/Include_COM/Common/opccomn_i.c',NULL,NULL,NULL,NULL),(11181,1196,'A','/VPIComDa_VS2013/Include_COM/DA',NULL,NULL,NULL,NULL),(11182,1196,'A','/VPIComDa_VS2013/Include_COM/DA/opcda.h',NULL,NULL,NULL,NULL),(11183,1196,'A','/VPIComDa_VS2013/Include_COM/DA/opcda_i.c',NULL,NULL,NULL,NULL),(11184,1196,'A','/VPIComDa_VS2013/Include_COM/Error',NULL,NULL,NULL,NULL),(11185,1196,'A','/VPIComDa_VS2013/Include_COM/Error/opcerror.h',NULL,NULL,NULL,NULL),(11186,1196,'A','/VPIComDa_VS2013/Include_COM/HelperTlk4CE.h',NULL,NULL,NULL,NULL),(11187,1196,'A','/VPIComDa_VS2013/Include_COM/tlkdaclient.h',NULL,NULL,NULL,NULL),(11188,1196,'M','/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(11189,1197,'A','/VPIComDa_VS2013/VPIComDa.vcxproj.filters',NULL,NULL,NULL,NULL),(11190,1198,'A','/OpenOpcUaVpiLibrary',NULL,NULL,NULL,NULL),(11191,1198,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.sln',NULL,NULL,NULL,NULL),(11192,1199,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary',NULL,NULL,NULL,NULL),(11193,1199,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11194,1199,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include',NULL,NULL,NULL,NULL),(11195,1199,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/stdafx.h',NULL,NULL,NULL,NULL),(11196,1199,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/targetver.h',NULL,NULL,NULL,NULL),(11197,1199,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source',NULL,NULL,NULL,NULL),(11198,1199,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/OpenOpcUaVpiLibrary.cpp',NULL,NULL,NULL,NULL),(11199,1199,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/dllmain.cpp',NULL,NULL,NULL,NULL),(11200,1199,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/stdafx.cpp',NULL,NULL,NULL,NULL),(11201,1200,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.def',NULL,NULL,NULL,NULL),(11202,1200,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11203,1200,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibraryd.def',NULL,NULL,NULL,NULL),(11204,1201,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11205,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11206,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11207,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiConfig.h',NULL,NULL,NULL,NULL),(11208,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11209,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiOs.h',NULL,NULL,NULL,NULL),(11210,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSocket.h',NULL,NULL,NULL,NULL),(11211,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiThread.h',NULL,NULL,NULL,NULL),(11212,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiTrace.h',NULL,NULL,NULL,NULL),(11213,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiTypes.h',NULL,NULL,NULL,NULL),(11214,1201,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/stdafx.h',NULL,NULL,NULL,NULL),(11215,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11216,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11217,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSocket.cpp',NULL,NULL,NULL,NULL),(11218,1201,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiThread.cpp',NULL,NULL,NULL,NULL),(11219,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11220,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11221,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiConfig.h',NULL,NULL,NULL,NULL),(11222,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiDatetime.h',NULL,NULL,NULL,NULL),(11223,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11224,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternalSocket.h',NULL,NULL,NULL,NULL),(11225,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternalThread.h',NULL,NULL,NULL,NULL),(11226,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiMutex.h',NULL,NULL,NULL,NULL),(11227,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiOs.h',NULL,NULL,NULL,NULL),(11228,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiPlatformdefs.h',NULL,NULL,NULL,NULL),(11229,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiProxyStub.h',NULL,NULL,NULL,NULL),(11230,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSemaphore.h',NULL,NULL,NULL,NULL),(11231,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSocket.h',NULL,NULL,NULL,NULL),(11232,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiString.h',NULL,NULL,NULL,NULL),(11233,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiTrace.h',NULL,NULL,NULL,NULL),(11234,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiTypes.h',NULL,NULL,NULL,NULL),(11235,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/stdafx.h',NULL,NULL,NULL,NULL),(11236,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11237,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11238,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiDatetime.cpp',NULL,NULL,NULL,NULL),(11239,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiInternalThread.cpp',NULL,NULL,NULL,NULL),(11240,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiMutex.cpp',NULL,NULL,NULL,NULL),(11241,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSemaphore.cpp',NULL,NULL,NULL,NULL),(11242,1202,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSocket.cpp',NULL,NULL,NULL,NULL),(11243,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11244,1202,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiTrace.cpp',NULL,NULL,NULL,NULL),(11245,1203,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.sln',NULL,NULL,NULL,NULL),(11246,1203,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11247,1203,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiPlatformdefs.h',NULL,NULL,NULL,NULL),(11248,1203,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiString.h',NULL,NULL,NULL,NULL),(11249,1203,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11250,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester',NULL,NULL,NULL,NULL),(11251,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/ReadMe.txt',NULL,NULL,NULL,NULL),(11252,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/Resource.h',NULL,NULL,NULL,NULL),(11253,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.cpp',NULL,NULL,NULL,NULL),(11254,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.h',NULL,NULL,NULL,NULL),(11255,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.rc',NULL,NULL,NULL,NULL),(11256,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.vcproj',NULL,NULL,NULL,NULL),(11257,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.cpp',NULL,NULL,NULL,NULL),(11258,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.h',NULL,NULL,NULL,NULL),(11259,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/res',NULL,NULL,NULL,NULL),(11260,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/res/VpiLibraryTester.ico',NULL,NULL,NULL,NULL),(11261,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/res/VpiLibraryTester.rc2',NULL,NULL,NULL,NULL),(11262,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/stdafx.cpp',NULL,NULL,NULL,NULL),(11263,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/stdafx.h',NULL,NULL,NULL,NULL),(11264,1203,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/targetver.h',NULL,NULL,NULL,NULL),(11265,1204,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.rc',NULL,NULL,NULL,NULL),(11266,1205,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiString.h',NULL,NULL,NULL,NULL),(11267,1205,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11268,1205,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.rc',NULL,NULL,NULL,NULL),(11269,1205,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.vcproj',NULL,NULL,NULL,NULL),(11270,1205,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.cpp',NULL,NULL,NULL,NULL),(11271,1205,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.h',NULL,NULL,NULL,NULL),(11272,1205,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/stdafx.h',NULL,NULL,NULL,NULL),(11273,1206,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.sln',NULL,NULL,NULL,NULL),(11274,1206,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiDatetime.h',NULL,NULL,NULL,NULL),(11275,1206,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiDatetime.cpp',NULL,NULL,NULL,NULL),(11276,1206,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11277,1206,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiTrace.cpp',NULL,NULL,NULL,NULL),(11278,1206,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.rc',NULL,NULL,NULL,NULL),(11279,1206,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.cpp',NULL,NULL,NULL,NULL),(11280,1206,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.h',NULL,NULL,NULL,NULL),(11281,1207,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiDatetime.h',NULL,NULL,NULL,NULL),(11282,1207,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiDatetime.cpp',NULL,NULL,NULL,NULL),(11283,1207,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.rc',NULL,NULL,NULL,NULL),(11284,1207,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.cpp',NULL,NULL,NULL,NULL),(11285,1207,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.h',NULL,NULL,NULL,NULL),(11286,1208,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternalThread.h',NULL,NULL,NULL,NULL),(11287,1208,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiTypes.h',NULL,NULL,NULL,NULL),(11288,1208,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiInternalThread.cpp',NULL,NULL,NULL,NULL),(11289,1208,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiTrace.cpp',NULL,NULL,NULL,NULL),(11290,1208,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.rc',NULL,NULL,NULL,NULL),(11291,1208,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.cpp',NULL,NULL,NULL,NULL),(11292,1208,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.h',NULL,NULL,NULL,NULL),(11293,1209,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11294,1209,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/stdafx.h',NULL,NULL,NULL,NULL),(11295,1209,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11296,1209,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/Resource.h',NULL,NULL,NULL,NULL),(11297,1210,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11298,1210,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.vcproj',NULL,NULL,NULL,NULL),(11299,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11300,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiDatetime.h',NULL,NULL,NULL,NULL),(11301,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternalThread.h',NULL,NULL,NULL,NULL),(11302,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiMutex.h',NULL,NULL,NULL,NULL),(11303,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSemaphore.h',NULL,NULL,NULL,NULL),(11304,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiString.h',NULL,NULL,NULL,NULL),(11305,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11306,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11307,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiDatetime.cpp',NULL,NULL,NULL,NULL),(11308,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiInternalThread.cpp',NULL,NULL,NULL,NULL),(11309,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiMutex.cpp',NULL,NULL,NULL,NULL),(11310,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSemaphore.cpp',NULL,NULL,NULL,NULL),(11311,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSocket.cpp',NULL,NULL,NULL,NULL),(11312,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11313,1211,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiTrace.cpp',NULL,NULL,NULL,NULL),(11314,1211,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.cpp',NULL,NULL,NULL,NULL),(11315,1212,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11316,1212,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11317,1212,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtThread.h',NULL,NULL,NULL,NULL),(11318,1212,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtThread.cpp',NULL,NULL,NULL,NULL),(11319,1213,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11320,1213,'D','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtThread.h',NULL,NULL,NULL,NULL),(11321,1213,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiThread.h',NULL,NULL,NULL,NULL),(11322,1213,'D','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtThread.cpp',NULL,NULL,NULL,NULL),(11323,1213,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiThread.cpp',NULL,NULL,NULL,NULL),(11324,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11325,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11326,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11327,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiDatetime.h',NULL,NULL,NULL,NULL),(11328,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiMutex.h',NULL,NULL,NULL,NULL),(11329,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSemaphore.h',NULL,NULL,NULL,NULL),(11330,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSocket.h',NULL,NULL,NULL,NULL),(11331,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiString.h',NULL,NULL,NULL,NULL),(11332,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiThread.h',NULL,NULL,NULL,NULL),(11333,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11334,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiDatetime.cpp',NULL,NULL,NULL,NULL),(11335,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSemaphore.cpp',NULL,NULL,NULL,NULL),(11336,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSocket.cpp',NULL,NULL,NULL,NULL),(11337,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11338,1214,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiThread.cpp',NULL,NULL,NULL,NULL),(11339,1214,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.vcproj',NULL,NULL,NULL,NULL),(11340,1214,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.cpp',NULL,NULL,NULL,NULL),(11341,1214,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTesterDlg.h',NULL,NULL,NULL,NULL),(11342,1215,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11343,1216,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiMutex.cpp',NULL,NULL,NULL,NULL),(11344,1217,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11345,1217,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11346,1218,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11347,1219,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11348,1219,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11349,1220,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/CMakeLists.txt',NULL,NULL,NULL,NULL),(11350,1220,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11351,1221,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/CMakeLists.txt',NULL,NULL,NULL,NULL),(11352,1222,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11353,1222,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiOs.h',NULL,NULL,NULL,NULL),(11354,1222,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiThread.h',NULL,NULL,NULL,NULL),(11355,1222,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/stdafx.h',NULL,NULL,NULL,NULL),(11356,1222,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11357,1222,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiThread.cpp',NULL,NULL,NULL,NULL),(11358,1223,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11359,1223,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiOs.h',NULL,NULL,NULL,NULL),(11360,1224,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11361,1224,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11362,1224,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiOs.h',NULL,NULL,NULL,NULL),(11363,1224,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11364,1224,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11365,1224,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiMutex.cpp',NULL,NULL,NULL,NULL),(11366,1224,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSemaphore.cpp',NULL,NULL,NULL,NULL),(11367,1224,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiTrace.cpp',NULL,NULL,NULL,NULL),(11368,1224,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/dllmain.cpp',NULL,NULL,NULL,NULL),(11369,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11370,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11371,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSocket.h',NULL,NULL,NULL,NULL),(11372,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiThread.h',NULL,NULL,NULL,NULL),(11373,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11374,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiDatetime.cpp',NULL,NULL,NULL,NULL),(11375,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiInternalThread.cpp',NULL,NULL,NULL,NULL),(11376,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiMutex.cpp',NULL,NULL,NULL,NULL),(11377,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSocket.cpp',NULL,NULL,NULL,NULL),(11378,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiThread.cpp',NULL,NULL,NULL,NULL),(11379,1225,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/stdafx.cpp',NULL,NULL,NULL,NULL),(11380,1226,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11381,1227,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/CMakeLists.txt',NULL,NULL,NULL,NULL),(11382,1227,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiInternalThread.cpp',NULL,NULL,NULL,NULL),(11383,1228,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/CMakeLists.txt',NULL,NULL,NULL,NULL),(11384,1228,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSocket.cpp',NULL,NULL,NULL,NULL),(11385,1229,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/CMakeLists.txt',NULL,NULL,NULL,NULL),(11386,1229,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11387,1229,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11388,1230,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/CMakeLists.txt',NULL,NULL,NULL,NULL),(11389,1230,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11390,1230,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11391,1231,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11392,1231,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11393,1231,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiInternalThread.cpp',NULL,NULL,NULL,NULL),(11394,1231,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.vcproj',NULL,NULL,NULL,NULL),(11395,1232,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11396,1233,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcproj',NULL,NULL,NULL,NULL),(11397,1233,'M','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.vcproj',NULL,NULL,NULL,NULL),(11398,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11399,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11400,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiConfig.h',NULL,NULL,NULL,NULL),(11401,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiDatetime.h',NULL,NULL,NULL,NULL),(11402,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11403,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternalSocket.h',NULL,NULL,NULL,NULL),(11404,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternalThread.h',NULL,NULL,NULL,NULL),(11405,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiMutex.h',NULL,NULL,NULL,NULL),(11406,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiOs.h',NULL,NULL,NULL,NULL),(11407,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiPlatformdefs.h',NULL,NULL,NULL,NULL),(11408,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiProxyStub.h',NULL,NULL,NULL,NULL),(11409,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSemaphore.h',NULL,NULL,NULL,NULL),(11410,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSocket.h',NULL,NULL,NULL,NULL),(11411,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiString.h',NULL,NULL,NULL,NULL),(11412,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiThread.h',NULL,NULL,NULL,NULL),(11413,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiTrace.h',NULL,NULL,NULL,NULL),(11414,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiTypes.h',NULL,NULL,NULL,NULL),(11415,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/stdafx.h',NULL,NULL,NULL,NULL),(11416,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/targetver.h',NULL,NULL,NULL,NULL),(11417,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/OpenOpcUaVpiLibrary.cpp',NULL,NULL,NULL,NULL),(11418,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11419,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11420,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiDatetime.cpp',NULL,NULL,NULL,NULL),(11421,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiInternalThread.cpp',NULL,NULL,NULL,NULL),(11422,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiMutex.cpp',NULL,NULL,NULL,NULL),(11423,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSemaphore.cpp',NULL,NULL,NULL,NULL),(11424,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSocket.cpp',NULL,NULL,NULL,NULL),(11425,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11426,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiThread.cpp',NULL,NULL,NULL,NULL),(11427,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiTrace.cpp',NULL,NULL,NULL,NULL),(11428,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/dllmain.cpp',NULL,NULL,NULL,NULL),(11429,1234,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/stdafx.cpp',NULL,NULL,NULL,NULL),(11430,1235,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcxproj',NULL,NULL,NULL,NULL),(11431,1235,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(11432,1235,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11433,1235,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiOs.h',NULL,NULL,NULL,NULL),(11434,1235,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11435,1235,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary_VS2013.sln',NULL,NULL,NULL,NULL),(11436,1235,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.vcxproj',NULL,NULL,NULL,NULL),(11437,1235,'A','/OpenOpcUaVpiLibrary/VpiLibraryTester/VpiLibraryTester.vcxproj.filters',NULL,NULL,NULL,NULL),(11438,1236,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcxproj',NULL,NULL,NULL,NULL),(11439,1236,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11440,1236,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11441,1236,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11442,1236,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiDatetime.cpp',NULL,NULL,NULL,NULL),(11443,1236,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiMutex.cpp',NULL,NULL,NULL,NULL),(11444,1236,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11445,1237,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcxproj',NULL,NULL,NULL,NULL),(11446,1237,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11447,1237,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11448,1237,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternalSocket.h',NULL,NULL,NULL,NULL),(11449,1237,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiThread.h',NULL,NULL,NULL,NULL),(11450,1237,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11451,1237,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSocket.cpp',NULL,NULL,NULL,NULL),(11452,1237,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11453,1238,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiOs.h',NULL,NULL,NULL,NULL),(11454,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcxproj',NULL,NULL,NULL,NULL),(11455,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(11456,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/RtSocket.h',NULL,NULL,NULL,NULL),(11457,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/SerialPort.h',NULL,NULL,NULL,NULL),(11458,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiByteString.h',NULL,NULL,NULL,NULL),(11459,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiConfig.h',NULL,NULL,NULL,NULL),(11460,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(11461,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiDatetime.h',NULL,NULL,NULL,NULL),(11462,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiExpandedNodeId.h',NULL,NULL,NULL,NULL),(11463,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiGuid.h',NULL,NULL,NULL,NULL),(11464,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11465,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternalSocket.h',NULL,NULL,NULL,NULL),(11466,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiInternalThread.h',NULL,NULL,NULL,NULL),(11467,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiLocalizedText.h',NULL,NULL,NULL,NULL),(11468,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiMacroDef.h',NULL,NULL,NULL,NULL),(11469,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiMemory.h',NULL,NULL,NULL,NULL),(11470,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiMutex.h',NULL,NULL,NULL,NULL),(11471,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiNodeId.h',NULL,NULL,NULL,NULL),(11472,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiPlatformdefs.h',NULL,NULL,NULL,NULL),(11473,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiQualifiedName.h',NULL,NULL,NULL,NULL),(11474,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiSemaphore.h',NULL,NULL,NULL,NULL),(11475,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiString.h',NULL,NULL,NULL,NULL),(11476,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiTypes.h',NULL,NULL,NULL,NULL),(11477,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiVariant.h',NULL,NULL,NULL,NULL),(11478,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/VpiXmlElement.h',NULL,NULL,NULL,NULL),(11479,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/stdafx.h',NULL,NULL,NULL,NULL),(11480,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/include/targetver.h',NULL,NULL,NULL,NULL),(11481,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(11482,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(11483,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiByteString.cpp',NULL,NULL,NULL,NULL),(11484,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(11485,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiExpandedNodeId.cpp',NULL,NULL,NULL,NULL),(11486,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiGuid.cpp',NULL,NULL,NULL,NULL),(11487,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiLocalizedText.cpp',NULL,NULL,NULL,NULL),(11488,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiMemory.cpp',NULL,NULL,NULL,NULL),(11489,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiNodeId.cpp',NULL,NULL,NULL,NULL),(11490,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiQualifiedName.cpp',NULL,NULL,NULL,NULL),(11491,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSemaphore.cpp',NULL,NULL,NULL,NULL),(11492,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiSocket.cpp',NULL,NULL,NULL,NULL),(11493,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiString.cpp',NULL,NULL,NULL,NULL),(11494,1239,'M','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiThread.cpp',NULL,NULL,NULL,NULL),(11495,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiVariant.cpp',NULL,NULL,NULL,NULL),(11496,1239,'A','/OpenOpcUaVpiLibrary/OpenOpcUaVpiLibrary/source/VpiXmlElement.cpp',NULL,NULL,NULL,NULL),(11497,1240,'M','/OpenOpcUa_VS2013/OpenOpcUaStackV1/OpenOpcUAStackV1.vcxproj',NULL,NULL,NULL,NULL),(11498,1241,'A','/OpenOpcUa_VS2013/OpenOpcUaCertificateMgtLib/OpenOpcUaCertificateMgtLib_VS2013.sln',NULL,NULL,NULL,NULL),(11499,1242,'A','/OpenOpcUa_VS2013/Tools',NULL,NULL,NULL,NULL),(11500,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester',NULL,NULL,NULL,NULL),(11501,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester',NULL,NULL,NULL,NULL),(11502,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester.sln',NULL,NULL,NULL,NULL),(11503,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester.cpp',NULL,NULL,NULL,NULL),(11504,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester.h',NULL,NULL,NULL,NULL),(11505,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester.rc',NULL,NULL,NULL,NULL),(11506,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester.vcxproj',NULL,NULL,NULL,NULL),(11507,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester.vcxproj.filters',NULL,NULL,NULL,NULL),(11508,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTesterDlg.cpp',NULL,NULL,NULL,NULL),(11509,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTesterDlg.h',NULL,NULL,NULL,NULL),(11510,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/ReadMe.txt',NULL,NULL,NULL,NULL),(11511,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/res',NULL,NULL,NULL,NULL),(11512,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/res/OpenOpcUaCertificateMgtLibTester.ico',NULL,NULL,NULL,NULL),(11513,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/res/OpenOpcUaCertificateMgtLibTester.rc2',NULL,NULL,NULL,NULL),(11514,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/stdafx.cpp',NULL,NULL,NULL,NULL),(11515,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/stdafx.h',NULL,NULL,NULL,NULL),(11516,1242,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaCertificateMgtLibTester/OpenOpcUaCertificateMgtLibTester/targetver.h',NULL,NULL,NULL,NULL),(11517,1243,'A','/trunk/VPIComDa_VS2013',NULL,NULL,NULL,NULL),(11518,1243,'A','/trunk/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(11519,1243,'A','/trunk/VPIComDa_VS2013/VPIComDa_VS2013.sln',NULL,NULL,NULL,NULL),(11520,1243,'A','/trunk/VPIComDa_VS2013/include',NULL,NULL,NULL,NULL),(11521,1243,'A','/trunk/VPIComDa_VS2013/include/OPCCallback.h',NULL,NULL,NULL,NULL),(11522,1243,'A','/trunk/VPIComDa_VS2013/include/OPCShutdown.h',NULL,NULL,NULL,NULL),(11523,1243,'A','/trunk/VPIComDa_VS2013/include/OpcDaConnection.h',NULL,NULL,NULL,NULL),(11524,1243,'A','/trunk/VPIComDa_VS2013/include/OpcDaGroup.h',NULL,NULL,NULL,NULL),(11525,1243,'A','/trunk/VPIComDa_VS2013/include/OpcDaItem.h',NULL,NULL,NULL,NULL),(11526,1243,'A','/trunk/VPIComDa_VS2013/include/SourceObject.h',NULL,NULL,NULL,NULL),(11527,1243,'A','/trunk/VPIComDa_VS2013/include/VPIComDa.h',NULL,NULL,NULL,NULL),(11528,1243,'A','/trunk/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11529,1243,'A','/trunk/VPIComDa_VS2013/include/stdafx.h',NULL,NULL,NULL,NULL),(11530,1243,'A','/trunk/VPIComDa_VS2013/include/targetver.h',NULL,NULL,NULL,NULL),(11531,1243,'A','/trunk/VPIComDa_VS2013/source',NULL,NULL,NULL,NULL),(11532,1243,'A','/trunk/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(11533,1243,'A','/trunk/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(11534,1243,'A','/trunk/VPIComDa_VS2013/source/OPCShutdown.cpp',NULL,NULL,NULL,NULL),(11535,1243,'A','/trunk/VPIComDa_VS2013/source/OpcDaConnection.cpp',NULL,NULL,NULL,NULL),(11536,1243,'A','/trunk/VPIComDa_VS2013/source/OpcDaGroup.cpp',NULL,NULL,NULL,NULL),(11537,1243,'A','/trunk/VPIComDa_VS2013/source/OpcDaItem.cpp',NULL,NULL,NULL,NULL),(11538,1243,'A','/trunk/VPIComDa_VS2013/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(11539,1243,'A','/trunk/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(11540,1243,'A','/trunk/VPIComDa_VS2013/source/VPIComDa.def',NULL,NULL,NULL,NULL),(11541,1243,'A','/trunk/VPIComDa_VS2013/source/VPIComDad.def',NULL,NULL,NULL,NULL),(11542,1243,'A','/trunk/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(11543,1243,'A','/trunk/VPIComDa_VS2013/source/dllmain.cpp',NULL,NULL,NULL,NULL),(11544,1243,'A','/trunk/VPIComDa_VS2013/source/stdafx.cpp',NULL,NULL,NULL,NULL),(11545,1244,'A','/trunk/VPIComDa_VS2013/Include_COM',NULL,NULL,NULL,NULL),(11546,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/Common',NULL,NULL,NULL,NULL),(11547,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/Common/OpcEnum_i.c',NULL,NULL,NULL,NULL),(11548,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/Common/opccomn.h',NULL,NULL,NULL,NULL),(11549,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/Common/opccomn_i.c',NULL,NULL,NULL,NULL),(11550,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/DA',NULL,NULL,NULL,NULL),(11551,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/DA/opcda.h',NULL,NULL,NULL,NULL),(11552,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/DA/opcda_i.c',NULL,NULL,NULL,NULL),(11553,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/Error',NULL,NULL,NULL,NULL),(11554,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/Error/opcerror.h',NULL,NULL,NULL,NULL),(11555,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/HelperTlk4CE.h',NULL,NULL,NULL,NULL),(11556,1244,'A','/trunk/VPIComDa_VS2013/Include_COM/tlkdaclient.h',NULL,NULL,NULL,NULL),(11557,1244,'M','/trunk/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(11558,1244,'A','/trunk/VPIComDa_VS2013/VPIComDa.vcxproj.filters',NULL,NULL,NULL,NULL),(11559,1245,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(11560,1245,'M','/trunk/ServerShared/xmlsaxparsertlk.h',NULL,NULL,NULL,NULL),(11561,1245,'M','/trunk/include/SecureChannel.h',NULL,NULL,NULL,NULL),(11562,1245,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(11563,1245,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(11564,1245,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(11565,1245,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(11566,1245,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11567,1245,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(11568,1245,'M','/trunk/source/QueuedCallRequest.cpp',NULL,NULL,NULL,NULL),(11569,1245,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(11570,1245,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(11571,1245,'M','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(11572,1245,'M','/trunk/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(11573,1245,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11574,1245,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11575,1245,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(11576,1245,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11577,1245,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11578,1245,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(11579,1245,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(11580,1245,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(11581,1245,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(11582,1246,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(11583,1247,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(11584,1247,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(11585,1248,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(11586,1248,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(11587,1248,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(11588,1248,'M','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(11589,1248,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(11590,1248,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(11591,1248,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11592,1248,'M','/trunk/source/QueuedCallRequest.cpp',NULL,NULL,NULL,NULL),(11593,1248,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(11594,1248,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(11595,1248,'M','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(11596,1248,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11597,1248,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11598,1248,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(11599,1248,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11600,1248,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(11601,1248,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11602,1248,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(11603,1248,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(11604,1249,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(11605,1249,'M','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(11606,1250,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(11607,1250,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(11608,1250,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(11609,1250,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11610,1250,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11611,1250,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(11612,1250,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11613,1250,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11614,1250,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(11615,1251,'M','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(11616,1251,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(11617,1252,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(11618,1252,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(11619,1252,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(11620,1253,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11621,1254,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(11622,1255,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(11623,1256,'A','/OpenOpcUa_VS2013/lib',NULL,NULL,NULL,NULL),(11624,1256,'A','/OpenOpcUa_VS2013/lib/win32',NULL,NULL,NULL,NULL),(11625,1256,'A','/OpenOpcUa_VS2013/lib/win32/libeay32.lib',NULL,NULL,NULL,NULL),(11626,1256,'A','/OpenOpcUa_VS2013/lib/win32/ssleay32.lib',NULL,NULL,NULL,NULL),(11627,1257,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(11628,1258,'A','/OpenOpcUa_VS2013/bin',NULL,NULL,NULL,NULL),(11629,1258,'A','/OpenOpcUa_VS2013/bin/win32',NULL,NULL,NULL,NULL),(11630,1258,'A','/OpenOpcUa_VS2013/bin/win32/ssleay32.dll',NULL,NULL,NULL,NULL),(11631,1259,'A','/OpenOpcUa_VS2013/bin/win32/libeay32.dll',NULL,NULL,NULL,NULL),(11632,1260,'A','/OpenOpcUa_VS2013/bin/win32/vs2013',NULL,NULL,NULL,NULL),(11633,1260,'A','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaClientLib.dll',NULL,NULL,NULL,NULL),(11634,1260,'A','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaStackV1.dll',NULL,NULL,NULL,NULL),(11635,1260,'A','/OpenOpcUa_VS2013/bin/win32/vs2013/XMLSAXParser.dll',NULL,NULL,NULL,NULL),(11636,1261,'A','/OpenOpcUa_VS2013/Vpis',NULL,NULL,NULL,NULL),(11637,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013',NULL,NULL,NULL,NULL),(11638,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM',NULL,NULL,NULL,NULL),(11639,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/Common',NULL,NULL,NULL,NULL),(11640,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/Common/OpcEnum_i.c',NULL,NULL,NULL,NULL),(11641,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/Common/opccomn.h',NULL,NULL,NULL,NULL),(11642,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/Common/opccomn_i.c',NULL,NULL,NULL,NULL),(11643,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/DA',NULL,NULL,NULL,NULL),(11644,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/DA/opcda.h',NULL,NULL,NULL,NULL),(11645,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/DA/opcda_i.c',NULL,NULL,NULL,NULL),(11646,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/Error',NULL,NULL,NULL,NULL),(11647,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/Error/opcerror.h',NULL,NULL,NULL,NULL),(11648,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/HelperTlk4CE.h',NULL,NULL,NULL,NULL),(11649,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/Include_COM/tlkdaclient.h',NULL,NULL,NULL,NULL),(11650,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(11651,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj.filters',NULL,NULL,NULL,NULL),(11652,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa_VS2013.sln',NULL,NULL,NULL,NULL),(11653,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include',NULL,NULL,NULL,NULL),(11654,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OPCCallback.h',NULL,NULL,NULL,NULL),(11655,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OPCShutdown.h',NULL,NULL,NULL,NULL),(11656,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OpcDaConnection.h',NULL,NULL,NULL,NULL),(11657,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OpcDaGroup.h',NULL,NULL,NULL,NULL),(11658,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OpcDaItem.h',NULL,NULL,NULL,NULL),(11659,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/SourceObject.h',NULL,NULL,NULL,NULL),(11660,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VPIComDa.h',NULL,NULL,NULL,NULL),(11661,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11662,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/stdafx.h',NULL,NULL,NULL,NULL),(11663,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/targetver.h',NULL,NULL,NULL,NULL),(11664,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source',NULL,NULL,NULL,NULL),(11665,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(11666,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(11667,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCShutdown.cpp',NULL,NULL,NULL,NULL),(11668,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaConnection.cpp',NULL,NULL,NULL,NULL),(11669,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaGroup.cpp',NULL,NULL,NULL,NULL),(11670,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaItem.cpp',NULL,NULL,NULL,NULL),(11671,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(11672,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(11673,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.def',NULL,NULL,NULL,NULL),(11674,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDad.def',NULL,NULL,NULL,NULL),(11675,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(11676,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/dllmain.cpp',NULL,NULL,NULL,NULL),(11677,1261,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/stdafx.cpp',NULL,NULL,NULL,NULL),(11678,1262,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(11679,1263,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(11680,1264,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(11681,1265,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaClientLib.dll',NULL,NULL,NULL,NULL),(11682,1265,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaStackV1.dll',NULL,NULL,NULL,NULL),(11683,1265,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/XMLSAXParser.dll',NULL,NULL,NULL,NULL),(11684,1266,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaStackV1.dll',NULL,NULL,NULL,NULL),(11685,1266,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/XMLSAXParser.dll',NULL,NULL,NULL,NULL),(11686,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl',NULL,NULL,NULL,NULL),(11687,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/Config',NULL,NULL,NULL,NULL),(11688,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/Config/AcqCtrl001.xml',NULL,NULL,NULL,NULL),(11689,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(11690,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/Config/Labo-AcqCtrl.xml',NULL,NULL,NULL,NULL),(11691,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/Config/Opc.Ua.Types.xsd',NULL,NULL,NULL,NULL),(11692,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(11693,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(11694,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/Doc',NULL,NULL,NULL,NULL),(11695,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/Doc/VpiAcqCtrl.docx',NULL,NULL,NULL,NULL),(11696,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl',NULL,NULL,NULL,NULL),(11697,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.rc',NULL,NULL,NULL,NULL),(11698,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcxproj',NULL,NULL,NULL,NULL),(11699,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcxproj.filters',NULL,NULL,NULL,NULL),(11700,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/include',NULL,NULL,NULL,NULL),(11701,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/include/DataSegMutex.h',NULL,NULL,NULL,NULL),(11702,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/include/SourceObject.h',NULL,NULL,NULL,NULL),(11703,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/include/VPIAcqCtrl.h',NULL,NULL,NULL,NULL),(11704,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/include/VpiInternal.h',NULL,NULL,NULL,NULL),(11705,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/include/stdafx.h',NULL,NULL,NULL,NULL),(11706,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/include/targetver.h',NULL,NULL,NULL,NULL),(11707,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/resource.h',NULL,NULL,NULL,NULL),(11708,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source',NULL,NULL,NULL,NULL),(11709,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source/DataSegMutex.cpp',NULL,NULL,NULL,NULL),(11710,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(11711,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(11712,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source/VPIAcqCtrl.cpp',NULL,NULL,NULL,NULL),(11713,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source/VPIAcqCtrl.def',NULL,NULL,NULL,NULL),(11714,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source/VPIAcqCtrld.def',NULL,NULL,NULL,NULL),(11715,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(11716,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source/dllmain.cpp',NULL,NULL,NULL,NULL),(11717,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/source/stdafx.cpp',NULL,NULL,NULL,NULL),(11718,1267,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl_VS2013.sln',NULL,NULL,NULL,NULL),(11719,1268,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(11720,1268,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(11721,1268,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(11722,1268,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(11723,1268,'M','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(11724,1269,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(11725,1269,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(11726,1270,'M','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(11727,1271,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(11728,1272,'M','/trunk/source/opcua_memory.c',NULL,NULL,NULL,NULL),(11729,1272,'M','/trunk/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(11730,1273,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(11731,1273,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(11732,1274,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(11733,1274,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(11734,1275,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(11735,1276,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(11736,1277,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(11737,1277,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(11738,1277,'M','/trunk/include/ServerStatus.h',NULL,NULL,NULL,NULL),(11739,1277,'M','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(11740,1277,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(11741,1277,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(11742,1277,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(11743,1277,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(11744,1277,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(11745,1278,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(11746,1278,'M','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(11747,1279,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(11748,1280,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(11749,1280,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(11750,1280,'M','/trunk/include/ServerStatus.h',NULL,NULL,NULL,NULL),(11751,1280,'M','/trunk/include/SessionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(11752,1280,'M','/trunk/include/UserTokenPolicy.h',NULL,NULL,NULL,NULL),(11753,1280,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(11754,1280,'M','/trunk/source/BuildInfo.cpp',NULL,NULL,NULL,NULL),(11755,1280,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(11756,1280,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(11757,1280,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(11758,1280,'M','/trunk/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(11759,1280,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(11760,1281,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(11761,1281,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(11762,1281,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(11763,1282,'M','/trunk/include/ServerStatus.h',NULL,NULL,NULL,NULL),(11764,1283,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(11765,1284,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(11766,1285,'A','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/CMakeLists.txt',NULL,NULL,NULL,NULL),(11767,1285,'M','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcxproj',NULL,NULL,NULL,NULL),(11768,1285,'M','/OpenOpcUa_VS2013/Vpis/VPIAcqCtrl/VPIAcqCtrl/VPIAcqCtrl.vcxproj.filters',NULL,NULL,NULL,NULL),(11769,1286,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(11770,1286,'A','/OpenOpcUa_VS2013/include',NULL,NULL,NULL,NULL),(11771,1286,'A','/OpenOpcUa_VS2013/include/UpdateHeaderFiles.bat',NULL,NULL,NULL,NULL),(11772,1287,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(11773,1287,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(11774,1287,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(11775,1287,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(11776,1287,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(11777,1287,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11778,1287,'M','/trunk/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(11779,1287,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11780,1287,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11781,1287,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(11782,1287,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11783,1287,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(11784,1287,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11785,1287,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(11786,1287,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(11787,1288,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11788,1288,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11789,1288,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11790,1289,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(11791,1290,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(11792,1290,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(11793,1290,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(11794,1291,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(11795,1291,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(11796,1291,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11797,1291,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11798,1291,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(11799,1291,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11800,1292,'M','/trunk/include/QueueRequest.h',NULL,NULL,NULL,NULL),(11801,1292,'M','/trunk/include/QueuedCallRequest.h',NULL,NULL,NULL,NULL),(11802,1292,'M','/trunk/include/QueuedHistoryReadRequest.h',NULL,NULL,NULL,NULL),(11803,1292,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(11804,1292,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(11805,1292,'M','/trunk/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(11806,1292,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(11807,1292,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11808,1292,'M','/trunk/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(11809,1292,'M','/trunk/source/QueuedCallRequest.cpp',NULL,NULL,NULL,NULL),(11810,1292,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(11811,1292,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(11812,1292,'M','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(11813,1292,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11814,1292,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11815,1292,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(11816,1292,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(11817,1292,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11818,1292,'M','/trunk/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(11819,1293,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(11820,1293,'M','/trunk/ServerShared/xmlsaxparsertlk.h',NULL,NULL,NULL,NULL),(11821,1293,'M','/trunk/include/ContinuationPoint.h',NULL,NULL,NULL,NULL),(11822,1293,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(11823,1293,'M','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(11824,1293,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(11825,1293,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(11826,1293,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(11827,1293,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11828,1293,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11829,1293,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11830,1293,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(11831,1293,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(11832,1293,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11833,1293,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(11834,1293,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11835,1293,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(11836,1293,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(11837,1293,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(11838,1294,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(11839,1294,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(11840,1294,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(11841,1294,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11842,1294,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(11843,1294,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11844,1294,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11845,1294,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11846,1294,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(11847,1295,'M','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(11848,1295,'M','/trunk/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(11849,1295,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(11850,1295,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(11851,1295,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(11852,1295,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(11853,1295,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(11854,1295,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11855,1295,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(11856,1295,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(11857,1295,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11858,1295,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11859,1295,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(11860,1295,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(11861,1295,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(11862,1295,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11863,1295,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(11864,1295,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11865,1295,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(11866,1296,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(11867,1296,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(11868,1296,'M','/trunk/include/UAHistorianVariable.h',NULL,NULL,NULL,NULL),(11869,1296,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(11870,1296,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(11871,1296,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11872,1296,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(11873,1296,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11874,1296,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11875,1296,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(11876,1296,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(11877,1296,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11878,1296,'M','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(11879,1297,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(11880,1297,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(11881,1297,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(11882,1297,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(11883,1297,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(11884,1297,'M','/trunk/source/Alias.cpp',NULL,NULL,NULL,NULL),(11885,1297,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(11886,1297,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(11887,1297,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(11888,1297,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11889,1297,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(11890,1297,'M','/trunk/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(11891,1297,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(11892,1297,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(11893,1297,'M','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(11894,1297,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11895,1297,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11896,1297,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(11897,1297,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11898,1297,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(11899,1297,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11900,1297,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(11901,1298,'M','/trunk/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(11902,1299,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(11903,1299,'M','/trunk/OpenOpcUaStackV1.vcxproj.filters',NULL,NULL,NULL,NULL),(11904,1299,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(11905,1300,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(11906,1300,'M','/trunk/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(11907,1300,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(11908,1300,'M','/trunk/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(11909,1300,'M','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(11910,1300,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(11911,1300,'M','/trunk/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(11912,1301,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(11913,1302,'M','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(11914,1302,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(11915,1302,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(11916,1303,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(11917,1304,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(11918,1304,'M','/trunk/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(11919,1304,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(11920,1304,'M','/trunk/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(11921,1304,'M','/trunk/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(11922,1305,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(11923,1305,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(11924,1305,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11925,1305,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11926,1305,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11927,1305,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11928,1305,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(11929,1306,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(11930,1306,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(11931,1306,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(11932,1306,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(11933,1306,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(11934,1306,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(11935,1306,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(11936,1306,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(11937,1306,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11938,1307,'D','/OpenOpcUa_VS2013/bin/win32/libeay32.dll',NULL,NULL,NULL,NULL),(11939,1307,'D','/OpenOpcUa_VS2013/bin/win32/ssleay32.dll',NULL,NULL,NULL,NULL),(11940,1307,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaClientLib.dll',NULL,NULL,NULL,NULL),(11941,1307,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaStackV1.dll',NULL,NULL,NULL,NULL),(11942,1307,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/XMLSAXParser.dll',NULL,NULL,NULL,NULL),(11943,1307,'A','/OpenOpcUa_VS2013/bin/win32/vs2013/libeay32.dll',NULL,NULL,NULL,NULL),(11944,1307,'A','/OpenOpcUa_VS2013/bin/win32/vs2013/ssleay32.dll',NULL,NULL,NULL,NULL),(11945,1308,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(11946,1308,'M','/OpenOpcUa_VS2013/include/UpdateHeaderFiles.bat',NULL,NULL,NULL,NULL),(11947,1309,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(11948,1310,'A','/OpenOpcUa_VS2013/UANodeManager',NULL,NULL,NULL,NULL),(11949,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester',NULL,NULL,NULL,NULL),(11950,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.cpp',NULL,NULL,NULL,NULL),(11951,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.h',NULL,NULL,NULL,NULL),(11952,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.rc',NULL,NULL,NULL,NULL),(11953,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.vcxproj',NULL,NULL,NULL,NULL),(11954,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.vcxproj.filters',NULL,NULL,NULL,NULL),(11955,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.cpp',NULL,NULL,NULL,NULL),(11956,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.h',NULL,NULL,NULL,NULL),(11957,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/ReadMe.txt',NULL,NULL,NULL,NULL),(11958,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/res',NULL,NULL,NULL,NULL),(11959,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/res/NmTester.ico',NULL,NULL,NULL,NULL),(11960,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/res/NmTester.rc2',NULL,NULL,NULL,NULL),(11961,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/resource.h',NULL,NULL,NULL,NULL),(11962,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/stdafx.cpp',NULL,NULL,NULL,NULL),(11963,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/stdafx.h',NULL,NULL,NULL,NULL),(11964,1310,'A','/OpenOpcUa_VS2013/UANodeManager/NmTester/targetver.h',NULL,NULL,NULL,NULL),(11965,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager',NULL,NULL,NULL,NULL),(11966,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(11967,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/ReadMe.txt',NULL,NULL,NULL,NULL),(11968,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(11969,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj.filters',NULL,NULL,NULL,NULL),(11970,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include',NULL,NULL,NULL,NULL),(11971,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Alias.h',NULL,NULL,NULL,NULL),(11972,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/BuildInfo.h',NULL,NULL,NULL,NULL),(11973,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/ContinuationPoint.h',NULL,NULL,NULL,NULL),(11974,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/DataValue.h',NULL,NULL,NULL,NULL),(11975,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Definition.h',NULL,NULL,NULL,NULL),(11976,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/EventDefinition.h',NULL,NULL,NULL,NULL),(11977,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/EventsEngine.h',NULL,NULL,NULL,NULL),(11978,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Field.h',NULL,NULL,NULL,NULL),(11979,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(11980,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(11981,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(11982,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/NmStatusCode.h',NULL,NULL,NULL,NULL),(11983,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/NumericRange.h',NULL,NULL,NULL,NULL),(11984,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(11985,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/ServerStatus.h',NULL,NULL,NULL,NULL),(11986,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/SessionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(11987,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(11988,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(11989,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(11990,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/StatusCodeException.h',NULL,NULL,NULL,NULL),(11991,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(11992,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UABase.h',NULL,NULL,NULL,NULL),(11993,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UABinding.h',NULL,NULL,NULL,NULL),(11994,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UADataType.h',NULL,NULL,NULL,NULL),(11995,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(11996,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAMethod.h',NULL,NULL,NULL,NULL),(11997,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAObject.h',NULL,NULL,NULL,NULL),(11998,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAObjectType.h',NULL,NULL,NULL,NULL),(11999,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAReference.h',NULL,NULL,NULL,NULL),(12000,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(12001,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAVariable.h',NULL,NULL,NULL,NULL),(12002,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAVariableType.h',NULL,NULL,NULL,NULL),(12003,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAView.h',NULL,NULL,NULL,NULL),(12004,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(12005,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerStructure.h',NULL,NULL,NULL,NULL),(12006,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(12007,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/VpiDataValue.h',NULL,NULL,NULL,NULL),(12008,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/VpiDevice.h',NULL,NULL,NULL,NULL),(12009,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(12010,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/VpiTag.h',NULL,NULL,NULL,NULL),(12011,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/VpiTypes.h',NULL,NULL,NULL,NULL),(12012,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/VpiWriteObject.h',NULL,NULL,NULL,NULL),(12013,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/resource.h',NULL,NULL,NULL,NULL),(12014,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/stdafx.h',NULL,NULL,NULL,NULL),(12015,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/targetver.h',NULL,NULL,NULL,NULL),(12016,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source',NULL,NULL,NULL,NULL),(12017,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Alias.cpp',NULL,NULL,NULL,NULL),(12018,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/BuildInfo.cpp',NULL,NULL,NULL,NULL),(12019,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(12020,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12021,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Definition.cpp',NULL,NULL,NULL,NULL),(12022,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(12023,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(12024,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Field.cpp',NULL,NULL,NULL,NULL),(12025,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(12026,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(12027,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(12028,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(12029,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(12030,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(12031,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(12032,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(12033,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(12034,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(12035,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(12036,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(12037,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(12038,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(12039,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABinding.cpp',NULL,NULL,NULL,NULL),(12040,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UADataType.cpp',NULL,NULL,NULL,NULL),(12041,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12042,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(12043,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(12044,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.rc',NULL,NULL,NULL,NULL),(12045,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAObject.cpp',NULL,NULL,NULL,NULL),(12046,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAObjectType.cpp',NULL,NULL,NULL,NULL),(12047,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAReference.cpp',NULL,NULL,NULL,NULL),(12048,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(12049,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12050,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(12051,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAView.cpp',NULL,NULL,NULL,NULL),(12052,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(12053,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(12054,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(12055,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(12056,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(12057,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(12058,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(12059,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/stdafx.cpp',NULL,NULL,NULL,NULL),(12060,1310,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager_VS2013.sln',NULL,NULL,NULL,NULL),(12061,1311,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(12062,1312,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(12063,1312,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(12064,1312,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(12065,1312,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(12066,1313,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(12067,1313,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(12068,1313,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12069,1313,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12070,1314,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(12071,1314,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(12072,1314,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12073,1315,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(12074,1315,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(12075,1315,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12076,1315,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(12077,1315,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12078,1316,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(12079,1316,'M','/trunk/OpenOpcUASharedLib.vcxproj.filters',NULL,NULL,NULL,NULL),(12080,1316,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(12081,1316,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(12082,1316,'M','/trunk/include/BuildInfo.h',NULL,NULL,NULL,NULL),(12083,1316,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(12084,1316,'M','/trunk/include/CryptoUtils.h',NULL,NULL,NULL,NULL),(12085,1316,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(12086,1316,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(12087,1316,'M','/trunk/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(12088,1316,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(12089,1316,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(12090,1316,'M','/trunk/include/OpenOpcUa.h',NULL,NULL,NULL,NULL),(12091,1316,'M','/trunk/include/ServerStatus.h',NULL,NULL,NULL,NULL),(12092,1316,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(12093,1316,'M','/trunk/include/SessionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(12094,1316,'M','/trunk/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(12095,1316,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(12096,1316,'M','/trunk/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(12097,1316,'M','/trunk/include/UserTokenPolicy.h',NULL,NULL,NULL,NULL),(12098,1316,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(12099,1316,'M','/trunk/include/cslock.h',NULL,NULL,NULL,NULL),(12100,1316,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(12101,1316,'A','/trunk/source/OpenOpcUaSharedLib.def',NULL,NULL,NULL,NULL),(12102,1316,'A','/trunk/source/OpenOpcUaSharedLibd.def',NULL,NULL,NULL,NULL),(12103,1316,'M','/trunk/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(12104,1316,'M','/trunk/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(12105,1317,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(12106,1317,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(12107,1317,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(12108,1317,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12109,1318,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12110,1319,'M','/trunk/include/EndpointDescription.h',NULL,NULL,NULL,NULL),(12111,1319,'M','/trunk/include/SessionBase.h',NULL,NULL,NULL,NULL),(12112,1319,'M','/trunk/include/SessionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(12113,1319,'M','/trunk/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(12114,1319,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12115,1319,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(12116,1319,'M','/trunk/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(12117,1319,'M','/trunk/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(12118,1319,'M','/trunk/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(12119,1319,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12120,1320,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(12121,1320,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12122,1321,'M','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(12123,1322,'A','/trunk/OpenOpcUaStackV1_VS2013.sln',NULL,NULL,NULL,NULL),(12124,1323,'A','/OpenOpcUaConfigManager.pro',NULL,NULL,NULL,NULL),(12125,1323,'A','/OpenOpcUaConfigManager.pro.user',NULL,NULL,NULL,NULL),(12126,1323,'A','/OpenOpcUaConfigManager.pro.user.3.2-pre1',NULL,NULL,NULL,NULL),(12127,1323,'A','/OpenOpcUaConfigManager.pro.user.548b146',NULL,NULL,NULL,NULL),(12128,1323,'A','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(12129,1323,'A','/UABinding.cpp',NULL,NULL,NULL,NULL),(12130,1323,'A','/carchiveserverconfig.cpp',NULL,NULL,NULL,NULL),(12131,1323,'A','/carchiveserverconfig.h',NULL,NULL,NULL,NULL),(12132,1323,'A','/ccomboboxitemdelegate.cpp',NULL,NULL,NULL,NULL),(12133,1323,'A','/ccomboboxitemdelegate.h',NULL,NULL,NULL,NULL),(12134,1323,'A','/cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(12135,1323,'A','/cgeneralserverconfig.h',NULL,NULL,NULL,NULL),(12136,1323,'A','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(12137,1323,'A','/cnodeidselectorwidget.h',NULL,NULL,NULL,NULL),(12138,1323,'A','/cnodeset.cpp',NULL,NULL,NULL,NULL),(12139,1323,'A','/cnodeset.h',NULL,NULL,NULL,NULL),(12140,1323,'A','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(12141,1323,'A','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(12142,1323,'A','/cnodesetdiagramitemtext.cpp',NULL,NULL,NULL,NULL),(12143,1323,'A','/cnodesetdiagramitemtext.h',NULL,NULL,NULL,NULL),(12144,1323,'A','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(12145,1323,'A','/cnodesetgraphicslineitem.h',NULL,NULL,NULL,NULL),(12146,1323,'A','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(12147,1323,'A','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(12148,1323,'A','/cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(12149,1323,'A','/cnodesetmeshview.h',NULL,NULL,NULL,NULL),(12150,1323,'A','/cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(12151,1323,'A','/cnodesetserverconfig.h',NULL,NULL,NULL,NULL),(12152,1323,'A','/copenopcuaconfigmenagecombobox.cpp',NULL,NULL,NULL,NULL),(12153,1323,'A','/copenopcuaconfigmenagecombobox.h',NULL,NULL,NULL,NULL),(12154,1323,'A','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(12155,1323,'A','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(12156,1323,'A','/creferencetypeidtoolbox.cpp',NULL,NULL,NULL,NULL),(12157,1323,'A','/creferencetypeidtoolbox.h',NULL,NULL,NULL,NULL),(12158,1323,'A','/creferencetypeidtoolbox.ui',NULL,NULL,NULL,NULL),(12159,1323,'A','/csimulationserverconfig.cpp',NULL,NULL,NULL,NULL),(12160,1323,'A','/csimulationserverconfig.h',NULL,NULL,NULL,NULL),(12161,1323,'A','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(12162,1323,'A','/csubsystemconfig.h',NULL,NULL,NULL,NULL),(12163,1323,'A','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(12164,1323,'A','/csubsystemserverconfig.h',NULL,NULL,NULL,NULL),(12165,1323,'A','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(12166,1323,'A','/csubsystemtag.h',NULL,NULL,NULL,NULL),(12167,1323,'A','/images',NULL,NULL,NULL,NULL),(12168,1323,'A','/images/ADD_16.ICO',NULL,NULL,NULL,NULL),(12169,1323,'A','/images/ADD_32.ICO',NULL,NULL,NULL,NULL),(12170,1323,'A','/images/Binding.ico',NULL,NULL,NULL,NULL),(12171,1323,'A','/images/Computer_16.ico',NULL,NULL,NULL,NULL),(12172,1323,'A','/images/Exit.gif',NULL,NULL,NULL,NULL),(12173,1323,'A','/images/GeneralConfig_16.ico',NULL,NULL,NULL,NULL),(12174,1323,'A','/images/HasComponent.ico',NULL,NULL,NULL,NULL),(12175,1323,'A','/images/HasEventSource.ico',NULL,NULL,NULL,NULL),(12176,1323,'A','/images/HasProperty.ico',NULL,NULL,NULL,NULL),(12177,1323,'A','/images/HasSubType.ico',NULL,NULL,NULL,NULL),(12178,1323,'A','/images/HasTypeDefinition.ico',NULL,NULL,NULL,NULL),(12179,1323,'A','/images/HierachicalReference.ico',NULL,NULL,NULL,NULL),(12180,1323,'A','/images/Mesh02.png',NULL,NULL,NULL,NULL),(12181,1323,'A','/images/MeshDoc.png',NULL,NULL,NULL,NULL),(12182,1323,'A','/images/Node.ico',NULL,NULL,NULL,NULL),(12183,1323,'A','/images/OpenOpcUa.ico',NULL,NULL,NULL,NULL),(12184,1323,'A','/images/PRINT_16.ICO',NULL,NULL,NULL,NULL),(12185,1323,'A','/images/Root_16.PNG',NULL,NULL,NULL,NULL),(12186,1323,'A','/images/ServerConfig.ico',NULL,NULL,NULL,NULL),(12187,1323,'A','/images/Simulation.ico',NULL,NULL,NULL,NULL),(12188,1323,'A','/images/Subsystem.ico',NULL,NULL,NULL,NULL),(12189,1323,'A','/images/TRASH_16.ICO',NULL,NULL,NULL,NULL),(12190,1323,'A','/images/delete.ico',NULL,NULL,NULL,NULL),(12191,1323,'A','/images/delete.png',NULL,NULL,NULL,NULL),(12192,1323,'A','/images/delete_16.ico',NULL,NULL,NULL,NULL),(12193,1323,'A','/images/delete_32.ico',NULL,NULL,NULL,NULL),(12194,1323,'A','/images/edit_add.ico',NULL,NULL,NULL,NULL),(12195,1323,'A','/images/find.ico',NULL,NULL,NULL,NULL),(12196,1323,'A','/images/folder-open_16.ico',NULL,NULL,NULL,NULL),(12197,1323,'A','/images/greenrefresh.ico',NULL,NULL,NULL,NULL),(12198,1323,'A','/images/instanciate.ico',NULL,NULL,NULL,NULL),(12199,1323,'A','/images/lc_new.ico',NULL,NULL,NULL,NULL),(12200,1323,'A','/images/lc_open.png',NULL,NULL,NULL,NULL),(12201,1323,'A','/images/lc_save.png',NULL,NULL,NULL,NULL),(12202,1323,'A','/images/lc_saveas.png',NULL,NULL,NULL,NULL),(12203,1323,'A','/images/level_error.ICO',NULL,NULL,NULL,NULL),(12204,1323,'A','/images/level_info.ICO',NULL,NULL,NULL,NULL),(12205,1323,'A','/images/level_warning.ico',NULL,NULL,NULL,NULL),(12206,1323,'A','/images/symbol_check.ico',NULL,NULL,NULL,NULL),(12207,1323,'A','/main.cpp',NULL,NULL,NULL,NULL),(12208,1323,'A','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(12209,1323,'A','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(12210,1323,'A','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(12211,1323,'A','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(12212,1323,'A','/uaBinding.h',NULL,NULL,NULL,NULL),(12213,1324,'M','/trunk/include/MCA_COMM.H',NULL,NULL,NULL,NULL),(12214,1325,'M','/trunk/lib/mca32com.lib',NULL,NULL,NULL,NULL),(12215,1326,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12216,1326,'M','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(12217,1327,'M','/trunk/Demo/Config/ConfigMCA166.xml',NULL,NULL,NULL,NULL),(12218,1327,'M','/trunk/Demo/Config/Mca166-001.xml',NULL,NULL,NULL,NULL),(12219,1328,'M','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(12220,1329,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(12221,1329,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(12222,1329,'M','/trunk/VPIMca166/stdafx.h',NULL,NULL,NULL,NULL),(12223,1330,'M','/trunk/VPIMca166/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12224,1330,'M','/trunk/VPIMca166/MCA166Wrapper.h',NULL,NULL,NULL,NULL),(12225,1330,'M','/trunk/VPIMca166/SerialPort.cpp',NULL,NULL,NULL,NULL),(12226,1330,'M','/trunk/VPIMca166/VPIMca166.cpp',NULL,NULL,NULL,NULL),(12227,1330,'M','/trunk/VPIMca166/VPIMca166.h',NULL,NULL,NULL,NULL),(12228,1330,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(12229,1330,'M','/trunk/VPIMca166/VpiInternal.cpp',NULL,NULL,NULL,NULL),(12230,1330,'M','/trunk/VPIMca166/VpiInternal.h',NULL,NULL,NULL,NULL),(12231,1331,'M','/trunk/VPIMca166.sln',NULL,NULL,NULL,NULL),(12232,1331,'M','/trunk/VPIMca166/VPIMca166.vcproj',NULL,NULL,NULL,NULL),(12233,1332,'M','/trunk/Demo/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(12234,1332,'M','/trunk/VPIMca166/RtSocket.cpp',NULL,NULL,NULL,NULL),(12235,1332,'M','/trunk/VPIMca166/RtSocket.h',NULL,NULL,NULL,NULL),(12236,1332,'A','/trunk/VPIMca166/VPIMca166.vcxproj',NULL,NULL,NULL,NULL),(12237,1332,'A','/trunk/VPIMca166/VPIMca166.vcxproj.filters',NULL,NULL,NULL,NULL),(12238,1333,'M','/OpenOpcUaConfigManager.pro',NULL,NULL,NULL,NULL),(12239,1333,'M','/OpenOpcUaConfigManager.pro.user',NULL,NULL,NULL,NULL),(12240,1333,'A','/cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(12241,1333,'A','/cnewprojectwizard.h',NULL,NULL,NULL,NULL),(12242,1333,'A','/cnewprojectwizard.ui',NULL,NULL,NULL,NULL),(12243,1333,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(12244,1333,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(12245,1333,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(12246,1333,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(12247,1333,'M','/main.cpp',NULL,NULL,NULL,NULL),(12248,1333,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(12249,1333,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(12250,1333,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(12251,1334,'M','/OpenOpcUaConfigManager.pro',NULL,NULL,NULL,NULL),(12252,1334,'M','/OpenOpcUaConfigManager.pro.user',NULL,NULL,NULL,NULL),(12253,1334,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(12254,1334,'M','/carchiveserverconfig.cpp',NULL,NULL,NULL,NULL),(12255,1334,'M','/carchiveserverconfig.h',NULL,NULL,NULL,NULL),(12256,1334,'M','/cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(12257,1334,'M','/cgeneralserverconfig.h',NULL,NULL,NULL,NULL),(12258,1334,'M','/cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(12259,1334,'M','/cnewprojectwizard.ui',NULL,NULL,NULL,NULL),(12260,1334,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(12261,1334,'M','/cnodeidselectorwidget.h',NULL,NULL,NULL,NULL),(12262,1334,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(12263,1334,'M','/cnodeset.h',NULL,NULL,NULL,NULL),(12264,1334,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(12265,1334,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(12266,1334,'M','/cnodesetdiagramitemtext.cpp',NULL,NULL,NULL,NULL),(12267,1334,'M','/cnodesetdiagramitemtext.h',NULL,NULL,NULL,NULL),(12268,1334,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(12269,1334,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(12270,1334,'M','/cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(12271,1334,'M','/cnodesetserverconfig.h',NULL,NULL,NULL,NULL),(12272,1334,'M','/copenopcuaconfigmenagecombobox.cpp',NULL,NULL,NULL,NULL),(12273,1334,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(12274,1334,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(12275,1334,'M','/creferencetypeidtoolbox.ui',NULL,NULL,NULL,NULL),(12276,1334,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(12277,1334,'M','/csubsystemconfig.h',NULL,NULL,NULL,NULL),(12278,1334,'M','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(12279,1334,'M','/csubsystemserverconfig.h',NULL,NULL,NULL,NULL),(12280,1334,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(12281,1334,'M','/main.cpp',NULL,NULL,NULL,NULL),(12282,1334,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(12283,1334,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(12284,1334,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(12285,1335,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.rc',NULL,NULL,NULL,NULL),(12286,1335,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.vcxproj',NULL,NULL,NULL,NULL),(12287,1335,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.cpp',NULL,NULL,NULL,NULL),(12288,1335,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.h',NULL,NULL,NULL,NULL),(12289,1335,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/resource.h',NULL,NULL,NULL,NULL),(12290,1335,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(12291,1335,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerStructure.h',NULL,NULL,NULL,NULL),(12292,1335,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/stdafx.h',NULL,NULL,NULL,NULL),(12293,1335,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(12294,1335,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(12295,1335,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(12296,1335,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(12297,1335,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(12298,1336,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.rc',NULL,NULL,NULL,NULL),(12299,1336,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.cpp',NULL,NULL,NULL,NULL),(12300,1336,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.h',NULL,NULL,NULL,NULL),(12301,1336,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/resource.h',NULL,NULL,NULL,NULL),(12302,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UABase.h',NULL,NULL,NULL,NULL),(12303,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(12304,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(12305,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(12306,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(12307,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(12308,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12309,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(12310,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12311,1336,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(12312,1337,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc',NULL,NULL,NULL,NULL),(12313,1338,'D','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc',NULL,NULL,NULL,NULL),(12314,1339,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/Doc',NULL,NULL,NULL,NULL),(12315,1340,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/include',NULL,NULL,NULL,NULL),(12316,1341,'A','/OpenOpcUa_VS2013/OpenOpcUaStackV1/source',NULL,NULL,NULL,NULL),(12317,1342,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.vcxproj',NULL,NULL,NULL,NULL),(12318,1342,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(12319,1342,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(12320,1342,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(12321,1342,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(12322,1342,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(12323,1342,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(12324,1343,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(12325,1343,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(12326,1343,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(12327,1343,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12328,1343,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(12329,1343,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(12330,1344,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(12331,1345,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(12332,1345,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(12333,1345,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(12334,1345,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(12335,1345,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12336,1345,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(12337,1346,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.cpp',NULL,NULL,NULL,NULL),(12338,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(12339,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(12340,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(12341,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(12342,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerStructure.h',NULL,NULL,NULL,NULL),(12343,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/stdafx.h',NULL,NULL,NULL,NULL),(12344,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Field.cpp',NULL,NULL,NULL,NULL),(12345,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(12346,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(12347,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(12348,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(12349,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(12350,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(12351,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12352,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(12353,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAReference.cpp',NULL,NULL,NULL,NULL),(12354,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12355,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(12356,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(12357,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(12358,1346,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(12359,1347,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(12360,1347,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj.filters',NULL,NULL,NULL,NULL),(12361,1347,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(12362,1347,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(12363,1347,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12364,1347,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(12365,1347,'D','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.rc',NULL,NULL,NULL,NULL),(12366,1347,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(12367,1348,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.rc',NULL,NULL,NULL,NULL),(12368,1348,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(12369,1349,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj.filters',NULL,NULL,NULL,NULL),(12370,1350,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaClientLib.dll',NULL,NULL,NULL,NULL),(12371,1350,'A','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaSharedLib.dll',NULL,NULL,NULL,NULL),(12372,1350,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/OpenOpcUaStackV1.dll',NULL,NULL,NULL,NULL),(12373,1350,'M','/OpenOpcUa_VS2013/bin/win32/vs2013/XMLSAXParser.dll',NULL,NULL,NULL,NULL),(12374,1351,'M','/trunk/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(12375,1351,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12376,1351,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12377,1352,'M','/trunk/ServerShared/xmlsaxparsertlk.h',NULL,NULL,NULL,NULL),(12378,1352,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(12379,1352,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(12380,1352,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(12381,1352,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(12382,1352,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12383,1352,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(12384,1353,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12385,1353,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12386,1353,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12387,1353,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12388,1353,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12389,1354,'M','/trunk/include/Alias.h',NULL,NULL,NULL,NULL),(12390,1355,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12391,1356,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(12392,1356,'M','/trunk/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(12393,1356,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(12394,1356,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(12395,1356,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12396,1356,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12397,1356,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12398,1356,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12399,1357,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(12400,1357,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(12401,1357,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(12402,1357,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12403,1357,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12404,1357,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(12405,1357,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(12406,1358,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(12407,1358,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(12408,1358,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(12409,1358,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(12410,1358,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(12411,1358,'A','/trunk/include/ServiceMessages.h',NULL,NULL,NULL,NULL),(12412,1358,'A','/trunk/include/ServiceModule.h',NULL,NULL,NULL,NULL),(12413,1358,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(12414,1358,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(12415,1358,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(12416,1358,'M','/trunk/resource.h',NULL,NULL,NULL,NULL),(12417,1358,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(12418,1358,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(12419,1358,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(12420,1358,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(12421,1358,'M','/trunk/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(12422,1358,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12423,1358,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12424,1358,'A','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(12425,1358,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12426,1358,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12427,1358,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12428,1358,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12429,1358,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12430,1358,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(12431,1359,'D','/trunk/Doc/Analyse du serveur OPC UA.docx',NULL,NULL,NULL,NULL),(12432,1359,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(12433,1359,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(12434,1359,'M','/trunk/include/QueuedHistoryReadRequest.h',NULL,NULL,NULL,NULL),(12435,1359,'M','/trunk/include/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(12436,1359,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(12437,1359,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(12438,1359,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(12439,1359,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(12440,1359,'M','/trunk/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(12441,1359,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(12442,1359,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(12443,1359,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(12444,1359,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(12445,1359,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(12446,1359,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(12447,1359,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(12448,1359,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(12449,1359,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12450,1359,'M','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(12451,1359,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12452,1359,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(12453,1359,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12454,1359,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12455,1359,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12456,1359,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(12457,1359,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(12458,1359,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(12459,1359,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(12460,1359,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12461,1359,'M','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(12462,1359,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12463,1359,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(12464,1359,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(12465,1360,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(12466,1360,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(12467,1360,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12468,1360,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12469,1360,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12470,1360,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12471,1360,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(12472,1360,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12473,1361,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(12474,1361,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(12475,1361,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(12476,1361,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(12477,1361,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(12478,1361,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12479,1361,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12480,1361,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12481,1361,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(12482,1361,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12483,1361,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12484,1361,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(12485,1361,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12486,1361,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12487,1362,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(12488,1362,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12489,1362,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12490,1362,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12491,1362,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(12492,1362,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12493,1363,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(12494,1363,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(12495,1363,'A','/trunk/include/LuaDebugger.h',NULL,NULL,NULL,NULL),(12496,1363,'A','/trunk/include/LuaRestoreStack.h',NULL,NULL,NULL,NULL),(12497,1363,'A','/trunk/include/LuaScript.h',NULL,NULL,NULL,NULL),(12498,1363,'A','/trunk/include/LuaThis.h',NULL,NULL,NULL,NULL),(12499,1363,'A','/trunk/include/LuaVirtualMachine.h',NULL,NULL,NULL,NULL),(12500,1363,'A','/trunk/include/MurmurHash3.h',NULL,NULL,NULL,NULL),(12501,1363,'A','/trunk/include/OpenOpcUaScript.h',NULL,NULL,NULL,NULL),(12502,1363,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(12503,1363,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(12504,1363,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(12505,1363,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(12506,1363,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(12507,1363,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(12508,1363,'A','/trunk/source/LuaDebugger.cpp',NULL,NULL,NULL,NULL),(12509,1363,'A','/trunk/source/LuaRestoreStack.cpp',NULL,NULL,NULL,NULL),(12510,1363,'A','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(12511,1363,'A','/trunk/source/LuaThis.cpp',NULL,NULL,NULL,NULL),(12512,1363,'A','/trunk/source/LuaVirtualMachine.cpp',NULL,NULL,NULL,NULL),(12513,1363,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(12514,1363,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(12515,1363,'A','/trunk/source/MurmurHash3.cpp',NULL,NULL,NULL,NULL),(12516,1363,'A','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(12517,1363,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12518,1363,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12519,1363,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(12520,1363,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12521,1363,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12522,1363,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(12523,1363,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12524,1363,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12525,1363,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(12526,1363,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(12527,1364,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(12528,1364,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12529,1364,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12530,1365,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(12531,1365,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(12532,1365,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(12533,1365,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(12534,1365,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(12535,1365,'A','/trunk/include/QueuedQueryFirstRequest.h',NULL,NULL,NULL,NULL),(12536,1365,'A','/trunk/include/QueuedQueryNextRequest.h',NULL,NULL,NULL,NULL),(12537,1365,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(12538,1365,'M','/trunk/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(12539,1365,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(12540,1365,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(12541,1365,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(12542,1365,'M','/trunk/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(12543,1365,'M','/trunk/include/UAStatusChangeNotification.h',NULL,NULL,NULL,NULL),(12544,1365,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(12545,1365,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(12546,1365,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(12547,1365,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(12548,1365,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(12549,1365,'M','/trunk/source/LuaDebugger.cpp',NULL,NULL,NULL,NULL),(12550,1365,'M','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(12551,1365,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(12552,1365,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(12553,1365,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12554,1365,'A','/trunk/source/QueuedQueryFirstRequest.cpp',NULL,NULL,NULL,NULL),(12555,1365,'A','/trunk/source/QueuedQueryNextRequest.cpp',NULL,NULL,NULL,NULL),(12556,1365,'M','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(12557,1365,'M','/trunk/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(12558,1365,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12559,1365,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(12560,1365,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12561,1365,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(12562,1365,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(12563,1365,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12564,1365,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12565,1365,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(12566,1365,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(12567,1365,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(12568,1365,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12569,1365,'M','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(12570,1365,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(12571,1365,'M','/trunk/source/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(12572,1365,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12573,1365,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(12574,1365,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(12575,1365,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(12576,1365,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(12577,1365,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(12578,1366,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(12579,1366,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12580,1366,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12581,1366,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(12582,1367,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12583,1368,'M','/trunk/include/Utils.h',NULL,NULL,NULL,NULL),(12584,1368,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12585,1369,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(12586,1370,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12587,1371,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(12588,1372,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(12589,1372,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(12590,1372,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(12591,1372,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(12592,1372,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(12593,1372,'M','/trunk/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(12594,1372,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12595,1373,'M','/trunk/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(12596,1373,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(12597,1373,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(12598,1373,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(12599,1373,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(12600,1373,'M','/trunk/source/UserTokenPolicy.cpp',NULL,NULL,NULL,NULL),(12601,1373,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12602,1373,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(12603,1374,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12604,1374,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12605,1375,'D','/trunk/Doc/Analyse de la SharedLib.docx',NULL,NULL,NULL,NULL),(12606,1375,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(12607,1375,'M','/trunk/include/ServerStatus.h',NULL,NULL,NULL,NULL),(12608,1375,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(12609,1375,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12610,1375,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(12611,1375,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(12612,1375,'M','/trunk/source/ServerStatus.cpp',NULL,NULL,NULL,NULL),(12613,1375,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(12614,1376,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(12615,1376,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(12616,1376,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(12617,1376,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12618,1376,'M','/trunk/source/OpenOpcUa.cpp',NULL,NULL,NULL,NULL),(12619,1376,'M','/trunk/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(12620,1376,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12621,1376,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(12622,1377,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(12623,1377,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(12624,1377,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12625,1378,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(12626,1378,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(12627,1378,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(12628,1378,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(12629,1378,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(12630,1378,'M','/trunk/source/CryptoUtils.cpp',NULL,NULL,NULL,NULL),(12631,1378,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(12632,1378,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(12633,1378,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(12634,1378,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(12635,1378,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(12636,1379,'M','/trunk/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(12637,1380,'M','/trunk/Doc/Fonctionnement interne de la Stack AnsiC.docx',NULL,NULL,NULL,NULL),(12638,1381,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(12639,1382,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(12640,1382,'M','/trunk/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(12641,1382,'M','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(12642,1382,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(12643,1382,'M','/trunk/source/opcua_memory.c',NULL,NULL,NULL,NULL),(12644,1382,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(12645,1383,'M','/trunk/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(12646,1383,'M','/trunk/include/win32/openssl/aes.h',NULL,NULL,NULL,NULL),(12647,1383,'M','/trunk/include/win32/openssl/applink.c',NULL,NULL,NULL,NULL),(12648,1383,'M','/trunk/include/win32/openssl/asn1.h',NULL,NULL,NULL,NULL),(12649,1383,'M','/trunk/include/win32/openssl/asn1_mac.h',NULL,NULL,NULL,NULL),(12650,1383,'M','/trunk/include/win32/openssl/asn1t.h',NULL,NULL,NULL,NULL),(12651,1383,'M','/trunk/include/win32/openssl/bio.h',NULL,NULL,NULL,NULL),(12652,1383,'M','/trunk/include/win32/openssl/blowfish.h',NULL,NULL,NULL,NULL),(12653,1383,'M','/trunk/include/win32/openssl/bn.h',NULL,NULL,NULL,NULL),(12654,1383,'M','/trunk/include/win32/openssl/buffer.h',NULL,NULL,NULL,NULL),(12655,1383,'M','/trunk/include/win32/openssl/camellia.h',NULL,NULL,NULL,NULL),(12656,1383,'M','/trunk/include/win32/openssl/cast.h',NULL,NULL,NULL,NULL),(12657,1383,'M','/trunk/include/win32/openssl/cmac.h',NULL,NULL,NULL,NULL),(12658,1383,'M','/trunk/include/win32/openssl/cms.h',NULL,NULL,NULL,NULL),(12659,1383,'M','/trunk/include/win32/openssl/comp.h',NULL,NULL,NULL,NULL),(12660,1383,'M','/trunk/include/win32/openssl/conf.h',NULL,NULL,NULL,NULL),(12661,1383,'M','/trunk/include/win32/openssl/conf_api.h',NULL,NULL,NULL,NULL),(12662,1383,'M','/trunk/include/win32/openssl/crypto.h',NULL,NULL,NULL,NULL),(12663,1383,'M','/trunk/include/win32/openssl/des.h',NULL,NULL,NULL,NULL),(12664,1383,'M','/trunk/include/win32/openssl/des_old.h',NULL,NULL,NULL,NULL),(12665,1383,'M','/trunk/include/win32/openssl/dh.h',NULL,NULL,NULL,NULL),(12666,1383,'M','/trunk/include/win32/openssl/dsa.h',NULL,NULL,NULL,NULL),(12667,1383,'M','/trunk/include/win32/openssl/dso.h',NULL,NULL,NULL,NULL),(12668,1383,'M','/trunk/include/win32/openssl/dtls1.h',NULL,NULL,NULL,NULL),(12669,1383,'M','/trunk/include/win32/openssl/e_os2.h',NULL,NULL,NULL,NULL),(12670,1383,'M','/trunk/include/win32/openssl/ebcdic.h',NULL,NULL,NULL,NULL),(12671,1383,'M','/trunk/include/win32/openssl/ec.h',NULL,NULL,NULL,NULL),(12672,1383,'M','/trunk/include/win32/openssl/ecdh.h',NULL,NULL,NULL,NULL),(12673,1383,'M','/trunk/include/win32/openssl/ecdsa.h',NULL,NULL,NULL,NULL),(12674,1383,'M','/trunk/include/win32/openssl/engine.h',NULL,NULL,NULL,NULL),(12675,1383,'M','/trunk/include/win32/openssl/err.h',NULL,NULL,NULL,NULL),(12676,1383,'M','/trunk/include/win32/openssl/evp.h',NULL,NULL,NULL,NULL),(12677,1383,'M','/trunk/include/win32/openssl/hmac.h',NULL,NULL,NULL,NULL),(12678,1383,'M','/trunk/include/win32/openssl/idea.h',NULL,NULL,NULL,NULL),(12679,1383,'M','/trunk/include/win32/openssl/krb5_asn.h',NULL,NULL,NULL,NULL),(12680,1383,'M','/trunk/include/win32/openssl/kssl.h',NULL,NULL,NULL,NULL),(12681,1383,'M','/trunk/include/win32/openssl/lhash.h',NULL,NULL,NULL,NULL),(12682,1383,'M','/trunk/include/win32/openssl/md4.h',NULL,NULL,NULL,NULL),(12683,1383,'M','/trunk/include/win32/openssl/md5.h',NULL,NULL,NULL,NULL),(12684,1383,'M','/trunk/include/win32/openssl/mdc2.h',NULL,NULL,NULL,NULL),(12685,1383,'M','/trunk/include/win32/openssl/modes.h',NULL,NULL,NULL,NULL),(12686,1383,'M','/trunk/include/win32/openssl/obj_mac.h',NULL,NULL,NULL,NULL),(12687,1383,'M','/trunk/include/win32/openssl/objects.h',NULL,NULL,NULL,NULL),(12688,1383,'M','/trunk/include/win32/openssl/ocsp.h',NULL,NULL,NULL,NULL),(12689,1383,'M','/trunk/include/win32/openssl/opensslconf.h',NULL,NULL,NULL,NULL),(12690,1383,'M','/trunk/include/win32/openssl/opensslv.h',NULL,NULL,NULL,NULL),(12691,1383,'M','/trunk/include/win32/openssl/ossl_typ.h',NULL,NULL,NULL,NULL),(12692,1383,'M','/trunk/include/win32/openssl/pem.h',NULL,NULL,NULL,NULL),(12693,1383,'M','/trunk/include/win32/openssl/pem2.h',NULL,NULL,NULL,NULL),(12694,1383,'M','/trunk/include/win32/openssl/pkcs12.h',NULL,NULL,NULL,NULL),(12695,1383,'M','/trunk/include/win32/openssl/pkcs7.h',NULL,NULL,NULL,NULL),(12696,1383,'M','/trunk/include/win32/openssl/pqueue.h',NULL,NULL,NULL,NULL),(12697,1383,'M','/trunk/include/win32/openssl/rand.h',NULL,NULL,NULL,NULL),(12698,1383,'M','/trunk/include/win32/openssl/rc2.h',NULL,NULL,NULL,NULL),(12699,1383,'M','/trunk/include/win32/openssl/rc4.h',NULL,NULL,NULL,NULL),(12700,1383,'M','/trunk/include/win32/openssl/ripemd.h',NULL,NULL,NULL,NULL),(12701,1383,'M','/trunk/include/win32/openssl/rsa.h',NULL,NULL,NULL,NULL),(12702,1383,'M','/trunk/include/win32/openssl/safestack.h',NULL,NULL,NULL,NULL),(12703,1383,'M','/trunk/include/win32/openssl/seed.h',NULL,NULL,NULL,NULL),(12704,1383,'M','/trunk/include/win32/openssl/sha.h',NULL,NULL,NULL,NULL),(12705,1383,'M','/trunk/include/win32/openssl/srp.h',NULL,NULL,NULL,NULL),(12706,1383,'M','/trunk/include/win32/openssl/srtp.h',NULL,NULL,NULL,NULL),(12707,1383,'M','/trunk/include/win32/openssl/ssl.h',NULL,NULL,NULL,NULL),(12708,1383,'M','/trunk/include/win32/openssl/ssl2.h',NULL,NULL,NULL,NULL),(12709,1383,'M','/trunk/include/win32/openssl/ssl23.h',NULL,NULL,NULL,NULL),(12710,1383,'M','/trunk/include/win32/openssl/ssl3.h',NULL,NULL,NULL,NULL),(12711,1383,'M','/trunk/include/win32/openssl/stack.h',NULL,NULL,NULL,NULL),(12712,1383,'M','/trunk/include/win32/openssl/symhacks.h',NULL,NULL,NULL,NULL),(12713,1383,'M','/trunk/include/win32/openssl/tls1.h',NULL,NULL,NULL,NULL),(12714,1383,'M','/trunk/include/win32/openssl/ts.h',NULL,NULL,NULL,NULL),(12715,1383,'M','/trunk/include/win32/openssl/txt_db.h',NULL,NULL,NULL,NULL),(12716,1383,'M','/trunk/include/win32/openssl/ui.h',NULL,NULL,NULL,NULL),(12717,1383,'M','/trunk/include/win32/openssl/ui_compat.h',NULL,NULL,NULL,NULL),(12718,1383,'M','/trunk/include/win32/openssl/whrlpool.h',NULL,NULL,NULL,NULL),(12719,1383,'M','/trunk/include/win32/openssl/x509.h',NULL,NULL,NULL,NULL),(12720,1383,'M','/trunk/include/win32/openssl/x509_vfy.h',NULL,NULL,NULL,NULL),(12721,1383,'M','/trunk/include/win32/openssl/x509v3.h',NULL,NULL,NULL,NULL),(12722,1383,'M','/trunk/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(12723,1383,'M','/trunk/source/opcua_channel.c',NULL,NULL,NULL,NULL),(12724,1383,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(12725,1383,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(12726,1383,'M','/trunk/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(12727,1383,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(12728,1383,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(12729,1383,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(12730,1383,'M','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(12731,1384,'D','/trunk/Doc/Fonctionnement interne de la Stack AnsiC.docx',NULL,NULL,NULL,NULL),(12732,1384,'D','/trunk/Doc/OPC UA Ansi C Stack - Design Review.doc',NULL,NULL,NULL,NULL),(12733,1384,'D','/trunk/Doc/OPC UA AnsiC Coding Guidelines_Draft_0.9.doc',NULL,NULL,NULL,NULL),(12734,1384,'D','/trunk/Doc/Relations entre la Stack AnsiC et le SDK UA.docx',NULL,NULL,NULL,NULL),(12735,1384,'D','/trunk/Doc/Structure et type de la stack AnsiC.docx',NULL,NULL,NULL,NULL),(12736,1384,'D','/trunk/Doc/UA Stack API.docx',NULL,NULL,NULL,NULL),(12737,1384,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(12738,1384,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(12739,1384,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(12740,1385,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(12741,1386,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(12742,1387,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(12743,1387,'M','/trunk/include/shared/opcua_exclusions.h',NULL,NULL,NULL,NULL),(12744,1387,'M','/trunk/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(12745,1387,'M','/trunk/include/shared/opcua_securechannel.h',NULL,NULL,NULL,NULL),(12746,1387,'M','/trunk/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(12747,1387,'M','/trunk/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(12748,1387,'M','/trunk/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(12749,1387,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(12750,1387,'M','/trunk/source/opcua_channel.c',NULL,NULL,NULL,NULL),(12751,1387,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(12752,1387,'M','/trunk/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(12753,1387,'M','/trunk/source/opcua_https_internal.c',NULL,NULL,NULL,NULL),(12754,1387,'M','/trunk/source/opcua_https_listener.c',NULL,NULL,NULL,NULL),(12755,1387,'M','/trunk/source/opcua_https_listener_connectionmanager.c',NULL,NULL,NULL,NULL),(12756,1387,'M','/trunk/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(12757,1387,'M','/trunk/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(12758,1387,'M','/trunk/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(12759,1387,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(12760,1387,'M','/trunk/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(12761,1387,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(12762,1387,'M','/trunk/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(12763,1387,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(12764,1387,'M','/trunk/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(12765,1387,'M','/trunk/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(12766,1387,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(12767,1387,'M','/trunk/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(12768,1387,'M','/trunk/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(12769,1387,'M','/trunk/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(12770,1387,'M','/trunk/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(12771,1387,'M','/trunk/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(12772,1387,'M','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(12773,1387,'M','/trunk/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(12774,1387,'M','/trunk/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(12775,1387,'M','/trunk/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(12776,1387,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(12777,1387,'M','/trunk/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(12778,1388,'M','/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(12779,1388,'M','/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(12780,1388,'M','/include/stdafx.h',NULL,NULL,NULL,NULL),(12781,1388,'M','/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12782,1389,'M','/VPIOperatingSystem.sln',NULL,NULL,NULL,NULL),(12783,1390,'M','/VPIOperatingSystem.vcproj',NULL,NULL,NULL,NULL),(12784,1391,'A','/Demo/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(12785,1391,'A','/Demo/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(12786,1391,'A','/Demo/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(12787,1391,'A','/Demo/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(12788,1391,'A','/Demo/Opc.Ua.NodeSet2.xml',NULL,NULL,NULL,NULL),(12789,1391,'M','/Demo/StartServerDebug.bat',NULL,NULL,NULL,NULL),(12790,1391,'M','/Demo/StartServerRelease.bat',NULL,NULL,NULL,NULL),(12791,1391,'A','/Demo/SubSystem001.xml',NULL,NULL,NULL,NULL),(12792,1391,'A','/VPIOperatingSystem.vcxproj',NULL,NULL,NULL,NULL),(12793,1391,'A','/VPIOperatingSystem.vcxproj.filters',NULL,NULL,NULL,NULL),(12794,1391,'A','/VPIOperatingSystem_VS2013.sln',NULL,NULL,NULL,NULL),(12795,1391,'M','/include/SourceObject.h',NULL,NULL,NULL,NULL),(12796,1391,'M','/include/VPIOperatingSystem.h',NULL,NULL,NULL,NULL),(12797,1391,'M','/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12798,1391,'M','/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(12799,1391,'M','/source/VpiOperatingSystem.def',NULL,NULL,NULL,NULL),(12800,1391,'M','/source/dllmain.cpp',NULL,NULL,NULL,NULL),(12801,1392,'D','/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(12802,1392,'D','/Config/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(12803,1392,'D','/Config/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(12804,1392,'D','/Config/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(12805,1392,'D','/Config/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(12806,1392,'D','/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(12807,1392,'D','/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(12808,1392,'D','/Config/SubSystem001.xml',NULL,NULL,NULL,NULL),(12809,1392,'M','/VPIOperatingSystem.vcxproj',NULL,NULL,NULL,NULL),(12810,1392,'M','/VPIOperatingSystem.vcxproj.filters',NULL,NULL,NULL,NULL),(12811,1393,'A','/Demo/ConfigOpenOpcUa_Debug.xml',NULL,NULL,NULL,NULL),(12812,1393,'A','/Demo/ConfigOpenOpcUa_Release.xml',NULL,NULL,NULL,NULL),(12813,1393,'M','/Demo/Opc.Ua.4CENodeSet.xml',NULL,NULL,NULL,NULL),(12814,1393,'M','/Demo/StartServerDebug.bat',NULL,NULL,NULL,NULL),(12815,1393,'M','/Demo/StartServerRelease.bat',NULL,NULL,NULL,NULL),(12816,1393,'D','/Demo/SubSystem001.xml',NULL,NULL,NULL,NULL),(12817,1393,'A','/Demo/SubSystem001_Debug.xml',NULL,NULL,NULL,NULL),(12818,1393,'A','/Demo/SubSystem001_Release.xml',NULL,NULL,NULL,NULL),(12819,1393,'M','/VPIOperatingSystem.vcxproj',NULL,NULL,NULL,NULL),(12820,1393,'M','/VPIOperatingSystem.vcxproj.filters',NULL,NULL,NULL,NULL),(12821,1393,'M','/include/VPIOperatingSystem.h',NULL,NULL,NULL,NULL),(12822,1393,'M','/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12823,1393,'M','/source/VPIOperatingSystem.cpp',NULL,NULL,NULL,NULL),(12824,1393,'A','/source/VpiOperatingSystemd.def',NULL,NULL,NULL,NULL),(12825,1394,'M','/VPIOperatingSystem.vcxproj',NULL,NULL,NULL,NULL),(12826,1394,'M','/VPIOperatingSystem_VS2013.sln',NULL,NULL,NULL,NULL),(12827,1395,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(12828,1396,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(12829,1397,'M','/trunk/XMLSAXParser.vcproj',NULL,NULL,NULL,NULL),(12830,1398,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12831,1399,'A','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12832,1399,'A','/trunk/XMLSAXParser.vcxproj.filters',NULL,NULL,NULL,NULL),(12833,1399,'M','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(12834,1399,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(12835,1399,'M','/trunk/XmlShared/xmltok.c',NULL,NULL,NULL,NULL),(12836,1399,'M','/trunk/XmlShared/xmltok_ns.c',NULL,NULL,NULL,NULL),(12837,1399,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12838,1400,'A','/trunk/XMLSAXParser_VS2013.sln',NULL,NULL,NULL,NULL),(12839,1401,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12840,1402,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12841,1403,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12842,1403,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(12843,1403,'M','/trunk/XmlShared/xmltok_impl.c',NULL,NULL,NULL,NULL),(12844,1404,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(12845,1405,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(12846,1405,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12847,1406,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12848,1406,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(12849,1407,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12850,1408,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12851,1409,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(12852,1410,'M','/trunk/XmlShared/xmlCanon.h',NULL,NULL,NULL,NULL),(12853,1410,'M','/trunk/XmlShared/xmlConfig.h',NULL,NULL,NULL,NULL),(12854,1410,'M','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(12855,1410,'M','/trunk/XmlShared/xmlop.h',NULL,NULL,NULL,NULL),(12856,1410,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(12857,1410,'M','/trunk/XmlShared/xmltok.c',NULL,NULL,NULL,NULL),(12858,1410,'M','/trunk/XmlShared/xmltok_ns.c',NULL,NULL,NULL,NULL),(12859,1410,'M','/trunk/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(12860,1410,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12861,1411,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(12862,1412,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12863,1412,'M','/trunk/XmlShared/xmlparse.c',NULL,NULL,NULL,NULL),(12864,1413,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12865,1414,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(12866,1415,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12867,1416,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12868,1417,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(12869,1418,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12870,1419,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(12871,1419,'M','/trunk/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(12872,1419,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12873,1419,'M','/trunk/source/XMLSAXParser.def',NULL,NULL,NULL,NULL),(12874,1419,'M','/trunk/source/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(12875,1420,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(12876,1421,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(12877,1422,'M','/trunk/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(12878,1422,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12879,1422,'M','/trunk/source/XMLSAXParser.def',NULL,NULL,NULL,NULL),(12880,1422,'M','/trunk/source/XMLSAXParserd.def',NULL,NULL,NULL,NULL),(12881,1423,'M','/trunk/include/SAXParser_Helper.h',NULL,NULL,NULL,NULL),(12882,1423,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12883,1424,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(12884,1424,'M','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(12885,1424,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12886,1425,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12887,1426,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(12888,1427,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(12889,1427,'M','/trunk/XmlShared/expat.h',NULL,NULL,NULL,NULL),(12890,1428,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(12891,1429,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(12892,1430,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(12893,1430,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(12894,1430,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(12895,1430,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(12896,1430,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(12897,1430,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12898,1430,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12899,1430,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12900,1430,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12901,1430,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12902,1430,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(12903,1430,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(12904,1430,'M','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(12905,1431,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(12906,1431,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(12907,1431,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(12908,1431,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(12909,1431,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(12910,1431,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(12911,1431,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12912,1431,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12913,1431,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12914,1431,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12915,1431,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12916,1431,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(12917,1431,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12918,1431,'M','/trunk/source/UAStatusChangeNotification.cpp',NULL,NULL,NULL,NULL),(12919,1431,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12920,1432,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(12921,1433,'M','/trunk/include/OpenOpcUaScript.h',NULL,NULL,NULL,NULL),(12922,1433,'M','/trunk/include/QueueRequest.h',NULL,NULL,NULL,NULL),(12923,1433,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(12924,1433,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(12925,1433,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(12926,1433,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(12927,1433,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(12928,1433,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(12929,1433,'M','/trunk/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(12930,1433,'M','/trunk/include/VpiTag.h',NULL,NULL,NULL,NULL),(12931,1433,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(12932,1433,'M','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(12933,1433,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(12934,1433,'M','/trunk/source/QueueRequest.cpp',NULL,NULL,NULL,NULL),(12935,1433,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12936,1433,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12937,1433,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12938,1433,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12939,1433,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12940,1433,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(12941,1433,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12942,1433,'M','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(12943,1433,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(12944,1433,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(12945,1433,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(12946,1434,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(12947,1434,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(12948,1434,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12949,1434,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12950,1435,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(12951,1435,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12952,1435,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12953,1435,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12954,1435,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(12955,1436,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(12956,1436,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(12957,1436,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(12958,1436,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(12959,1436,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(12960,1436,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(12961,1436,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(12962,1436,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(12963,1436,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(12964,1436,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(12965,1436,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(12966,1437,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(12967,1438,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12968,1439,'R','/VpiMca527/VpiMca527/VpiMca527.sln',NULL,NULL,NULL,NULL),(12969,1440,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(12970,1440,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(12971,1440,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12972,1440,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(12973,1441,'M','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(12974,1441,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(12975,1441,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(12976,1441,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12977,1441,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(12978,1442,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(12979,1442,'A','/VpiMca527/VpiMca527/include/MCA_COMM.H',NULL,NULL,NULL,NULL),(12980,1443,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(12981,1443,'A','/VpiMca527/VpiMca527/lib',NULL,NULL,NULL,NULL),(12982,1443,'A','/VpiMca527/VpiMca527/lib/mca32com.lib',NULL,NULL,NULL,NULL),(12983,1444,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(12984,1444,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(12985,1445,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(12986,1445,'M','/VpiMca527/VpiMca527/include/VpiInternal.h',NULL,NULL,NULL,NULL),(12987,1445,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12988,1445,'M','/VpiMca527/VpiMca527/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(12989,1445,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(12990,1445,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(12991,1446,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(12992,1447,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(12993,1447,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(12994,1447,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(12995,1447,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(12996,1448,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(12997,1449,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(12998,1449,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(12999,1450,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13000,1451,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13001,1451,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13002,1452,'M','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(13003,1452,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(13004,1452,'A','/VpiMca527/VpiMca527/Doc',NULL,NULL,NULL,NULL),(13005,1452,'A','/VpiMca527/VpiMca527/Doc/MCA527_Firmware_Commands_2013_12_13.pdf',NULL,NULL,NULL,NULL),(13006,1452,'A','/VpiMca527/VpiMca527/Doc/MCA_Communication_DLL_2013_12_13.pdf',NULL,NULL,NULL,NULL),(13007,1452,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13008,1452,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13009,1452,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13010,1453,'M','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(13011,1453,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13012,1454,'M','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(13013,1454,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(13014,1454,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13015,1455,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13016,1456,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13017,1456,'M','/VpiMca527/VpiMca527/include/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(13018,1456,'M','/VpiMca527/VpiMca527/include/MCA527Message.h',NULL,NULL,NULL,NULL),(13019,1456,'M','/VpiMca527/VpiMca527/include/MCA527Wrapper.h',NULL,NULL,NULL,NULL),(13020,1456,'M','/VpiMca527/VpiMca527/include/MCA_COMM.H',NULL,NULL,NULL,NULL),(13021,1456,'M','/VpiMca527/VpiMca527/include/RtSocket.h',NULL,NULL,NULL,NULL),(13022,1456,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(13023,1456,'M','/VpiMca527/VpiMca527/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13024,1456,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(13025,1456,'M','/VpiMca527/VpiMca527/source/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(13026,1456,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13027,1456,'M','/VpiMca527/VpiMca527/source/MCA527Message.cpp',NULL,NULL,NULL,NULL),(13028,1456,'M','/VpiMca527/VpiMca527/source/MCA527Wrapper.cpp',NULL,NULL,NULL,NULL),(13029,1456,'M','/VpiMca527/VpiMca527/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(13030,1456,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13031,1456,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13032,1457,'M','/VpiMca527/VpiMca527/include/MCA_COMM.H',NULL,NULL,NULL,NULL),(13033,1457,'M','/VpiMca527/VpiMca527/include/RtSocket.h',NULL,NULL,NULL,NULL),(13034,1457,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(13035,1457,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13036,1457,'M','/VpiMca527/VpiMca527/source/MCA527Message.cpp',NULL,NULL,NULL,NULL),(13037,1457,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13038,1458,'M','/VpiMca527/VpiMca527/include/SerialPort.h',NULL,NULL,NULL,NULL),(13039,1459,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13040,1459,'D','/VpiMca527/VpiMca527/include/SerialPort.h',NULL,NULL,NULL,NULL),(13041,1460,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(13042,1460,'M','/VpiMca527/VpiMca527/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(13043,1460,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13044,1461,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13045,1461,'D','/VpiMca527/VpiMca527/source/RtSocket.cpp',NULL,NULL,NULL,NULL),(13046,1462,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13047,1462,'D','/VpiMca527/VpiMca527/source/SerialPort.cpp',NULL,NULL,NULL,NULL),(13048,1463,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13049,1463,'D','/VpiMca527/VpiMca527/include/RtSocket.h',NULL,NULL,NULL,NULL),(13050,1464,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(13051,1465,'M','/VpiMca527/VpiMca527/Demo/Config/VPIMca52700200.dat',NULL,NULL,NULL,NULL),(13052,1466,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13053,1467,'M','/VpiMca527/VpiMca527/Demo/Config/Labo-Mca527.xml',NULL,NULL,NULL,NULL),(13054,1467,'M','/VpiMca527/VpiMca527/Demo/Config/Mca527-001.xml',NULL,NULL,NULL,NULL),(13055,1467,'M','/VpiMca527/VpiMca527/Demo/Config/VPIMca52700200.dat',NULL,NULL,NULL,NULL),(13056,1467,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13057,1467,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(13058,1467,'A','/VpiMca527/VpiMca527/include/ftd2xx.h',NULL,NULL,NULL,NULL),(13059,1467,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(13060,1467,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13061,1467,'M','/VpiMca527/VpiMca527/source/MCA527Message.cpp',NULL,NULL,NULL,NULL),(13062,1467,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13063,1467,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13064,1468,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13065,1468,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13066,1468,'M','/VpiMca527/VpiMca527/source/VPIMca527.def',NULL,NULL,NULL,NULL),(13067,1468,'M','/VpiMca527/VpiMca527/source/VPIMca527d.def',NULL,NULL,NULL,NULL),(13068,1468,'M','/VpiMca527/VpiMca527/source/dllmain.cpp',NULL,NULL,NULL,NULL),(13069,1469,'A','/VpiMca527/VpiMca527/CMakeLists.txt',NULL,NULL,NULL,NULL),(13070,1469,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13071,1470,'M','/VpiMca527/VpiMca527/CMakeLists.txt',NULL,NULL,NULL,NULL),(13072,1471,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13073,1471,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(13074,1471,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13075,1472,'D','/VpiMca527/VpiMca527/include/ftd2xx.h',NULL,NULL,NULL,NULL),(13076,1472,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13077,1473,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13078,1474,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13079,1474,'A','/VpiMca527/VpiMca527/include/windows',NULL,NULL,NULL,NULL),(13080,1474,'A','/VpiMca527/VpiMca527/include/windows/ftd2xx.h',NULL,NULL,NULL,NULL),(13081,1475,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13082,1476,'M','/VpiMca527/VpiMca527/CMakeLists.txt',NULL,NULL,NULL,NULL),(13083,1476,'A','/VpiMca527/VpiMca527/Doc/D2XX_Programmer\'s_Guide(FT_000071).docx',NULL,NULL,NULL,NULL),(13084,1476,'A','/VpiMca527/VpiMca527/Doc/Manuel Utilisateur VpiMca527.docx',NULL,NULL,NULL,NULL),(13085,1476,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13086,1476,'M','/VpiMca527/VpiMca527/include/SourceObject.h',NULL,NULL,NULL,NULL),(13087,1476,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(13088,1476,'M','/VpiMca527/VpiMca527/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13089,1476,'M','/VpiMca527/VpiMca527/include/stdafx.h',NULL,NULL,NULL,NULL),(13090,1476,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13091,1477,'M','/VpiMca527/VpiMca527/include/MCA527Response.h',NULL,NULL,NULL,NULL),(13092,1477,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(13093,1477,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13094,1477,'M','/VpiMca527/VpiMca527/source/MCA527Message.cpp',NULL,NULL,NULL,NULL),(13095,1477,'M','/VpiMca527/VpiMca527/source/MCA527Response.cpp',NULL,NULL,NULL,NULL),(13096,1477,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13097,1477,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13098,1477,'M','/VpiMca527/VpiMca527/source/dllmain.cpp',NULL,NULL,NULL,NULL),(13099,1478,'M','/VpiMca527/VpiMca527/source/MCA527Message.cpp',NULL,NULL,NULL,NULL),(13100,1478,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13101,1478,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13102,1479,'M','/VpiMca527/VpiMca527/CMakeLists.txt',NULL,NULL,NULL,NULL),(13103,1479,'M','/VpiMca527/VpiMca527/Demo/Config/VPIMca52700200.dat',NULL,NULL,NULL,NULL),(13104,1479,'M','/VpiMca527/VpiMca527/include/VPIMca527.h',NULL,NULL,NULL,NULL),(13105,1479,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13106,1479,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13107,1479,'M','/VpiMca527/VpiMca527/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13108,1480,'M','/VpiMca527/VpiMca527/CMakeLists.txt',NULL,NULL,NULL,NULL),(13109,1480,'M','/VpiMca527/VpiMca527/source/MCA527Message.cpp',NULL,NULL,NULL,NULL),(13110,1480,'M','/VpiMca527/VpiMca527/source/MCA527Response.cpp',NULL,NULL,NULL,NULL),(13111,1480,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13112,1481,'M','/VpiMca527/VpiMca527/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13113,1481,'M','/VpiMca527/VpiMca527/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13114,1481,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13115,1482,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13116,1483,'M','/VpiMca527/VpiMca527/VpiMca527.vcproj',NULL,NULL,NULL,NULL),(13117,1484,'M','/VpiMca527/VpiMca527/Demo/Config/ConfigMCA527.xml',NULL,NULL,NULL,NULL),(13118,1484,'M','/VpiMca527/VpiMca527/Doc/Manuel Utilisateur VpiMca527.docx',NULL,NULL,NULL,NULL),(13119,1485,'A','/VpiMca527/VpiMca527/VpiMca527.vcxproj',NULL,NULL,NULL,NULL),(13120,1485,'A','/VpiMca527/VpiMca527/VpiMca527.vcxproj.filters',NULL,NULL,NULL,NULL),(13121,1485,'A','/VpiMca527/VpiMca527/VpiMca527_VS2013.sln',NULL,NULL,NULL,NULL),(13122,1485,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13123,1486,'M','/VpiMca527/VpiMca527/Demo/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(13124,1486,'M','/VpiMca527/VpiMca527/source/MCA527Message.cpp',NULL,NULL,NULL,NULL),(13125,1486,'M','/VpiMca527/VpiMca527/source/VPIMca527.cpp',NULL,NULL,NULL,NULL),(13126,1487,'M','/trunk/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(13127,1487,'M','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(13128,1487,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(13129,1488,'M','/trunk/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(13130,1489,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(13131,1490,'M','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(13132,1490,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(13133,1490,'M','/trunk/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(13134,1490,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(13135,1491,'M','/trunk/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(13136,1491,'M','/trunk/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(13137,1492,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(13138,1492,'M','/trunk/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(13139,1493,'M','/trunk/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(13140,1494,'M','/trunk/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(13141,1494,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(13142,1495,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(13143,1496,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Definition.h',NULL,NULL,NULL,NULL),(13144,1496,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Field.h',NULL,NULL,NULL,NULL),(13145,1496,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerStructure.h',NULL,NULL,NULL,NULL),(13146,1496,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Definition.cpp',NULL,NULL,NULL,NULL),(13147,1496,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Field.cpp',NULL,NULL,NULL,NULL),(13148,1496,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(13149,1496,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(13150,1497,'A','/OpenOpcUa_VS2013/LuaLib',NULL,NULL,NULL,NULL),(13151,1497,'A','/OpenOpcUa_VS2013/LuaLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(13152,1497,'A','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(13153,1497,'A','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj.filters',NULL,NULL,NULL,NULL),(13154,1497,'A','/OpenOpcUa_VS2013/LuaLib/include',NULL,NULL,NULL,NULL),(13155,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lapi.h',NULL,NULL,NULL,NULL),(13156,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lauxlib.h',NULL,NULL,NULL,NULL),(13157,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lcode.h',NULL,NULL,NULL,NULL),(13158,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/ldebug.h',NULL,NULL,NULL,NULL),(13159,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/ldo.h',NULL,NULL,NULL,NULL),(13160,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lfunc.h',NULL,NULL,NULL,NULL),(13161,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lgc.h',NULL,NULL,NULL,NULL),(13162,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/llex.h',NULL,NULL,NULL,NULL),(13163,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/llimits.h',NULL,NULL,NULL,NULL),(13164,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lmem.h',NULL,NULL,NULL,NULL),(13165,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lobject.h',NULL,NULL,NULL,NULL),(13166,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lopcodes.h',NULL,NULL,NULL,NULL),(13167,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lparser.h',NULL,NULL,NULL,NULL),(13168,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lstate.h',NULL,NULL,NULL,NULL),(13169,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lstring.h',NULL,NULL,NULL,NULL),(13170,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/ltable.h',NULL,NULL,NULL,NULL),(13171,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/ltm.h',NULL,NULL,NULL,NULL),(13172,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lua.h',NULL,NULL,NULL,NULL),(13173,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/luainc.h',NULL,NULL,NULL,NULL),(13174,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lualib.h',NULL,NULL,NULL,NULL),(13175,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lundump.h',NULL,NULL,NULL,NULL),(13176,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lvm.h',NULL,NULL,NULL,NULL),(13177,1497,'A','/OpenOpcUa_VS2013/LuaLib/include/lzio.h',NULL,NULL,NULL,NULL),(13178,1497,'A','/OpenOpcUa_VS2013/LuaLib/source',NULL,NULL,NULL,NULL),(13179,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lapi.c',NULL,NULL,NULL,NULL),(13180,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lauxlib.c',NULL,NULL,NULL,NULL),(13181,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lbaselib.c',NULL,NULL,NULL,NULL),(13182,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lcode.c',NULL,NULL,NULL,NULL),(13183,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/ldblib.c',NULL,NULL,NULL,NULL),(13184,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/ldebug.c',NULL,NULL,NULL,NULL),(13185,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/ldo.c',NULL,NULL,NULL,NULL),(13186,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/ldump.c',NULL,NULL,NULL,NULL),(13187,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lfunc.c',NULL,NULL,NULL,NULL),(13188,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lgc.c',NULL,NULL,NULL,NULL),(13189,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/liolib.c',NULL,NULL,NULL,NULL),(13190,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/llex.c',NULL,NULL,NULL,NULL),(13191,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lmathlib.c',NULL,NULL,NULL,NULL),(13192,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lmem.c',NULL,NULL,NULL,NULL),(13193,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/loadlib.c',NULL,NULL,NULL,NULL),(13194,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lobject.c',NULL,NULL,NULL,NULL),(13195,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lopcodes.c',NULL,NULL,NULL,NULL),(13196,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lparser.c',NULL,NULL,NULL,NULL),(13197,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lstate.c',NULL,NULL,NULL,NULL),(13198,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lstring.c',NULL,NULL,NULL,NULL),(13199,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lstrlib.c',NULL,NULL,NULL,NULL),(13200,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/ltable.c',NULL,NULL,NULL,NULL),(13201,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/ltablib.c',NULL,NULL,NULL,NULL),(13202,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/ltests.c',NULL,NULL,NULL,NULL),(13203,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/ltm.c',NULL,NULL,NULL,NULL),(13204,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lundump.c',NULL,NULL,NULL,NULL),(13205,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lvm.c',NULL,NULL,NULL,NULL),(13206,1497,'A','/OpenOpcUa_VS2013/LuaLib/source/lzio.c',NULL,NULL,NULL,NULL),(13207,1497,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(13208,1497,'M','/OpenOpcUa_VS2013/include/UpdateHeaderFiles.bat',NULL,NULL,NULL,NULL),(13209,1498,'M','/OpenOpcUa_VS2013/LuaLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(13210,1499,'M','/OpenOpcUa_VS2013/LuaLib/include/luainc.h',NULL,NULL,NULL,NULL),(13211,1499,'M','/OpenOpcUa_VS2013/include/UpdateHeaderFiles.bat',NULL,NULL,NULL,NULL),(13212,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx',NULL,NULL,NULL,NULL),(13213,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/CMakeLists.txt',NULL,NULL,NULL,NULL),(13214,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/VPIUdpEx.vcxproj',NULL,NULL,NULL,NULL),(13215,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/VPIUdpEx_VS2013.sln',NULL,NULL,NULL,NULL),(13216,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/include',NULL,NULL,NULL,NULL),(13217,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(13218,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/include/VPIUdpEx.h',NULL,NULL,NULL,NULL),(13219,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13220,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/include/stdafx.h',NULL,NULL,NULL,NULL),(13221,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/include/targetver.h',NULL,NULL,NULL,NULL),(13222,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source',NULL,NULL,NULL,NULL),(13223,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13224,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(13225,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/VPIUdpEx.cpp',NULL,NULL,NULL,NULL),(13226,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/VPIUdpEx.def',NULL,NULL,NULL,NULL),(13227,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/VPIUdpExd.def',NULL,NULL,NULL,NULL),(13228,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13229,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/dllmain.cpp',NULL,NULL,NULL,NULL),(13230,1500,'A','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/stdafx.cpp',NULL,NULL,NULL,NULL),(13231,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7',NULL,NULL,NULL,NULL),(13232,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/CMakeLists.txt',NULL,NULL,NULL,NULL),(13233,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.vcxproj',NULL,NULL,NULL,NULL),(13234,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7_VS2013.sln',NULL,NULL,NULL,NULL),(13235,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/include',NULL,NULL,NULL,NULL),(13236,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/include/S7Block.h',NULL,NULL,NULL,NULL),(13237,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/include/SourceObject.h',NULL,NULL,NULL,NULL),(13238,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(13239,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13240,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/include/snap7.h',NULL,NULL,NULL,NULL),(13241,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/include/stdafx.h',NULL,NULL,NULL,NULL),(13242,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/include/targetver.h',NULL,NULL,NULL,NULL),(13243,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source',NULL,NULL,NULL,NULL),(13244,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13245,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(13246,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(13247,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(13248,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.def',NULL,NULL,NULL,NULL),(13249,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7d.def',NULL,NULL,NULL,NULL),(13250,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13251,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/dllmain.cpp',NULL,NULL,NULL,NULL),(13252,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/snap7.cpp',NULL,NULL,NULL,NULL),(13253,1501,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/source/stdafx.cpp',NULL,NULL,NULL,NULL),(13254,1502,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/S7Block.h',NULL,NULL,NULL,NULL),(13255,1502,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(13256,1502,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13257,1502,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/stdafx.h',NULL,NULL,NULL,NULL),(13258,1502,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13259,1502,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(13260,1502,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13261,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir',NULL,NULL,NULL,NULL),(13262,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/VpiSafir.vcxproj',NULL,NULL,NULL,NULL),(13263,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/VpiSafir_VS2013.sln',NULL,NULL,NULL,NULL),(13264,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/include',NULL,NULL,NULL,NULL),(13265,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/include/MsMqConfig.h',NULL,NULL,NULL,NULL),(13266,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/include/SourceObject.h',NULL,NULL,NULL,NULL),(13267,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13268,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/include/VpiSafir.h',NULL,NULL,NULL,NULL),(13269,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/include/stdafx.h',NULL,NULL,NULL,NULL),(13270,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/include/targetver.h',NULL,NULL,NULL,NULL),(13271,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/source',NULL,NULL,NULL,NULL),(13272,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13273,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/MsMqConfig.cpp',NULL,NULL,NULL,NULL),(13274,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(13275,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13276,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/VpiSafir.cpp',NULL,NULL,NULL,NULL),(13277,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/VpiSafir.def',NULL,NULL,NULL,NULL),(13278,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/VpiSafird.def',NULL,NULL,NULL,NULL),(13279,1503,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/stdafx.cpp',NULL,NULL,NULL,NULL),(13280,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/AssemblyInfoCommune.cs',NULL,NULL,NULL,NULL),(13281,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/CVersionUtil.cs',NULL,NULL,NULL,NULL),(13282,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer',NULL,NULL,NULL,NULL),(13283,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GException',NULL,NULL,NULL,NULL),(13284,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GException/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(13285,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GException/BoiteException.cs',NULL,NULL,NULL,NULL),(13286,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GException/BoiteException.resx',NULL,NULL,NULL,NULL),(13287,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GException/GException.cs',NULL,NULL,NULL,NULL),(13288,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GException/GException.csproj',NULL,NULL,NULL,NULL),(13289,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GSerialisation',NULL,NULL,NULL,NULL),(13290,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GSerialisation/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(13291,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GSerialisation/GSerialisation.cs',NULL,NULL,NULL,NULL),(13292,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GSerialisation/GSerialisation.csproj',NULL,NULL,NULL,NULL),(13293,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces',NULL,NULL,NULL,NULL),(13294,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(13295,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces/CSurveillanceNiveaux.cs',NULL,NULL,NULL,NULL),(13296,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces/GTraces.csproj',NULL,NULL,NULL,NULL),(13297,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces/ITypeTrace.cs',NULL,NULL,NULL,NULL),(13298,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces/LogDistant.cs',NULL,NULL,NULL,NULL),(13299,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces/LogServeur.cs',NULL,NULL,NULL,NULL),(13300,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces/Niveaux.cs',NULL,NULL,NULL,NULL),(13301,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces/Traces.cs',NULL,NULL,NULL,NULL),(13302,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/GTraces/TypeTrace.cs',NULL,NULL,NULL,NULL),(13303,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente',NULL,NULL,NULL,NULL),(13304,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/AdresseIP.cs',NULL,NULL,NULL,NULL),(13305,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(13306,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/AssemblyInfoCommune.cs',NULL,NULL,NULL,NULL),(13307,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/CArgumentsEvenementMessageRecu.cs',NULL,NULL,NULL,NULL),(13308,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/CChaine.cs',NULL,NULL,NULL,NULL),(13309,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/CFileAttente.cs',NULL,NULL,NULL,NULL),(13310,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/CFileAttenteMulticast.cs',NULL,NULL,NULL,NULL),(13311,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/CMessage.cs',NULL,NULL,NULL,NULL),(13312,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/CMessageConstant.cs',NULL,NULL,NULL,NULL),(13313,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/CMessageQueueSITB.cs',NULL,NULL,NULL,NULL),(13314,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/CThreadEnvoiMessages.cs',NULL,NULL,NULL,NULL),(13315,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(13316,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/IFileAttente.csproj',NULL,NULL,NULL,NULL),(13317,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/IFileAttenteMulticast.cs',NULL,NULL,NULL,NULL),(13318,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/Parametrage',NULL,NULL,NULL,NULL),(13319,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/Parametrage/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(13320,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/Parametrage/CChiffrement.cs',NULL,NULL,NULL,NULL),(13321,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/Parametrage/CParametrageAbstract.cs',NULL,NULL,NULL,NULL),(13322,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/Parametrage/CParametresCommuns.cs',NULL,NULL,NULL,NULL),(13323,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/Parametrage/Parametrage.csproj',NULL,NULL,NULL,NULL),(13324,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/Parametrage/ParametresCommuns.resX',NULL,NULL,NULL,NULL),(13325,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer',NULL,NULL,NULL,NULL),(13326,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/Class1.cs',NULL,NULL,NULL,NULL),(13327,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/Properties',NULL,NULL,NULL,NULL),(13328,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(13329,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/RawMessageFromMsMq.cs',NULL,NULL,NULL,NULL),(13330,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/RawMessageToMsMq.cs',NULL,NULL,NULL,NULL),(13331,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/SafirLayer.cs',NULL,NULL,NULL,NULL),(13332,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/SafirLayer.csproj',NULL,NULL,NULL,NULL),(13333,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/SafirLayer.sln',NULL,NULL,NULL,NULL),(13334,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC',NULL,NULL,NULL,NULL),(13335,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(13336,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC/AssemblyInfoCommune.cs',NULL,NULL,NULL,NULL),(13337,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC/CDemandeReinit.cs',NULL,NULL,NULL,NULL),(13338,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC/CEtatPoint.cs',NULL,NULL,NULL,NULL),(13339,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC/CMQIhm.cs',NULL,NULL,NULL,NULL),(13340,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC/CMessageDepuisSupervision.cs',NULL,NULL,NULL,NULL),(13341,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC/CMessagePourSupervision.cs',NULL,NULL,NULL,NULL),(13342,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC/PointIhm.cs',NULL,NULL,NULL,NULL),(13343,1504,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/TypesCommunicationClientOPC/TypesCommunicationClientOPC.csproj',NULL,NULL,NULL,NULL),(13344,1505,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/include/SourceObject.h',NULL,NULL,NULL,NULL),(13345,1505,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13346,1505,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13347,1505,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(13348,1505,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13349,1505,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/source/VpiSafir.cpp',NULL,NULL,NULL,NULL),(13350,1506,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/IFileAttente/CFileAttente.cs',NULL,NULL,NULL,NULL),(13351,1506,'D','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/Class1.cs',NULL,NULL,NULL,NULL),(13352,1506,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/RawMessageToMsMq.cs',NULL,NULL,NULL,NULL),(13353,1506,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/SafirLayer.cs',NULL,NULL,NULL,NULL),(13354,1506,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/SafirLayer.csproj',NULL,NULL,NULL,NULL),(13355,1506,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/SafirLayerEventArgs.cs',NULL,NULL,NULL,NULL),(13356,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(13357,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13358,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(13359,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Field.cpp',NULL,NULL,NULL,NULL),(13360,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(13361,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(13362,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(13363,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(13364,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(13365,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(13366,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(13367,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13368,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(13369,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAReference.cpp',NULL,NULL,NULL,NULL),(13370,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13371,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(13372,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(13373,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13374,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(13375,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(13376,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(13377,1507,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(13378,1508,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(13379,1508,'M','/trunk/include/UADataType.h',NULL,NULL,NULL,NULL),(13380,1508,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13381,1508,'M','/trunk/include/UAObject.h',NULL,NULL,NULL,NULL),(13382,1508,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(13383,1508,'M','/trunk/source/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(13384,1508,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(13385,1508,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(13386,1508,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(13387,1508,'M','/trunk/source/LuaRestoreStack.cpp',NULL,NULL,NULL,NULL),(13388,1508,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13389,1508,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13390,1508,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13391,1508,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13392,1508,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13393,1508,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(13394,1508,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(13395,1508,'M','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(13396,1508,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(13397,1508,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13398,1508,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(13399,1508,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(13400,1509,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13401,1509,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(13402,1509,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13403,1509,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13404,1509,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13405,1509,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13406,1509,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13407,1510,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13408,1510,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(13409,1510,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13410,1510,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13411,1510,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13412,1510,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13413,1510,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(13414,1511,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(13415,1511,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(13416,1511,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(13417,1511,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(13418,1511,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(13419,1511,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13420,1511,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13421,1511,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13422,1511,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13423,1511,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13424,1512,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(13425,1512,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13426,1512,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13427,1512,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(13428,1512,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13429,1512,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13430,1512,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13431,1512,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13432,1512,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13433,1512,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13434,1513,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(13435,1513,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13436,1513,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(13437,1513,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(13438,1513,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13439,1513,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13440,1513,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13441,1513,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13442,1513,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13443,1513,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(13444,1513,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13445,1513,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13446,1514,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13447,1514,'M','/trunk/include/UAObject.h',NULL,NULL,NULL,NULL),(13448,1514,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13449,1514,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13450,1514,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13451,1514,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(13452,1514,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13453,1514,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13454,1515,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(13455,1515,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(13456,1515,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(13457,1515,'M','/trunk/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(13458,1515,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13459,1515,'M','/trunk/include/ServiceModule.h',NULL,NULL,NULL,NULL),(13460,1515,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13461,1515,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(13462,1515,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(13463,1515,'M','/trunk/include/VpiTag.h',NULL,NULL,NULL,NULL),(13464,1515,'M','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(13465,1515,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13466,1515,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13467,1515,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(13468,1515,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13469,1515,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13470,1515,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13471,1515,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13472,1515,'A','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(13473,1515,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(13474,1515,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(13475,1515,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(13476,1516,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(13477,1516,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(13478,1516,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13479,1516,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(13480,1516,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(13481,1516,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13482,1516,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(13483,1516,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(13484,1516,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(13485,1516,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(13486,1516,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(13487,1516,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(13488,1516,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13489,1516,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(13490,1516,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(13491,1516,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13492,1516,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13493,1516,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13494,1516,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(13495,1516,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(13496,1516,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13497,1516,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13498,1516,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13499,1516,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(13500,1516,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(13501,1516,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(13502,1517,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13503,1518,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(13504,1518,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13505,1519,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(13506,1519,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(13507,1519,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(13508,1519,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(13509,1519,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13510,1519,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(13511,1519,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(13512,1519,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(13513,1519,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(13514,1519,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(13515,1519,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13516,1519,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(13517,1519,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(13518,1519,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(13519,1519,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13520,1519,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13521,1519,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(13522,1519,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13523,1519,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13524,1519,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(13525,1519,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13526,1519,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13527,1519,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13528,1519,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(13529,1520,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(13530,1520,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(13531,1520,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(13532,1520,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13533,1520,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(13534,1520,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(13535,1520,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13536,1520,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(13537,1520,'M','/trunk/source/QueuedCallRequest.cpp',NULL,NULL,NULL,NULL),(13538,1520,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(13539,1520,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13540,1520,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13541,1520,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13542,1520,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13543,1520,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(13544,1520,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(13545,1520,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13546,1520,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13547,1521,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13548,1522,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(13549,1522,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13550,1522,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13551,1523,'M','/trunk/include/OpenOpcUaScript.h',NULL,NULL,NULL,NULL),(13552,1523,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(13553,1523,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13554,1524,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(13555,1524,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(13556,1524,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(13557,1524,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13558,1524,'M','/trunk/include/ServiceModule.h',NULL,NULL,NULL,NULL),(13559,1524,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(13560,1524,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(13561,1524,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13562,1524,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(13563,1524,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(13564,1524,'M','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(13565,1524,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13566,1524,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(13567,1524,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13568,1524,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(13569,1524,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13570,1524,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13571,1524,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13572,1524,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(13573,1524,'M','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(13574,1524,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13575,1524,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(13576,1524,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(13577,1525,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(13578,1525,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(13579,1525,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13580,1525,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13581,1525,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(13582,1525,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13583,1526,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13584,1526,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13585,1526,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(13586,1527,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(13587,1527,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(13588,1527,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13589,1527,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(13590,1527,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13591,1527,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(13592,1527,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13593,1527,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13594,1527,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13595,1527,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(13596,1527,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13597,1528,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(13598,1528,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(13599,1528,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13600,1528,'M','/trunk/include/ServiceModule.h',NULL,NULL,NULL,NULL),(13601,1528,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13602,1528,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(13603,1528,'M','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(13604,1528,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13605,1528,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13606,1528,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(13607,1528,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13608,1529,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(13609,1529,'M','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(13610,1529,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(13611,1529,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(13612,1529,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(13613,1529,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13614,1529,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13615,1529,'M','/trunk/include/UAReference.h',NULL,NULL,NULL,NULL),(13616,1529,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(13617,1529,'M','/trunk/include/UAVariableType.h',NULL,NULL,NULL,NULL),(13618,1529,'M','/trunk/include/VpiTag.h',NULL,NULL,NULL,NULL),(13619,1529,'M','/trunk/include/targetver.h',NULL,NULL,NULL,NULL),(13620,1529,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(13621,1529,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(13622,1529,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13623,1529,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(13624,1529,'M','/trunk/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(13625,1529,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13626,1529,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(13627,1529,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13628,1529,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13629,1529,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13630,1529,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(13631,1529,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13632,1529,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(13633,1529,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13634,1529,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(13635,1529,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13636,1529,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(13637,1530,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(13638,1530,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(13639,1530,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13640,1530,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13641,1530,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(13642,1530,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(13643,1530,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(13644,1530,'M','/trunk/include/VpiTag.h',NULL,NULL,NULL,NULL),(13645,1530,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(13646,1530,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13647,1530,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13648,1530,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13649,1530,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13650,1530,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(13651,1530,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13652,1530,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13653,1530,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(13654,1530,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(13655,1530,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(13656,1531,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(13657,1531,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(13658,1531,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(13659,1531,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13660,1531,'A','/trunk/include/SubscribedTagDetail.h',NULL,NULL,NULL,NULL),(13661,1531,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13662,1531,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(13663,1531,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(13664,1531,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(13665,1531,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(13666,1531,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(13667,1531,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(13668,1531,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13669,1531,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(13670,1531,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(13671,1531,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13672,1531,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13673,1531,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(13674,1531,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13675,1531,'A','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(13676,1531,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(13677,1531,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(13678,1531,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13679,1531,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(13680,1531,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(13681,1531,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13682,1531,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13683,1531,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(13684,1531,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(13685,1531,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(13686,1532,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13687,1533,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(13688,1534,'A','/trunk/ClassDiagram.cd',NULL,NULL,NULL,NULL),(13689,1534,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(13690,1534,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(13691,1534,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(13692,1534,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13693,1534,'M','/trunk/include/UAHistorianVariable.h',NULL,NULL,NULL,NULL),(13694,1534,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13695,1534,'M','/trunk/include/UAVariableType.h',NULL,NULL,NULL,NULL),(13696,1534,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(13697,1534,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(13698,1534,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(13699,1534,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13700,1534,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13701,1534,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13702,1534,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(13703,1534,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(13704,1534,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13705,1534,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(13706,1534,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(13707,1535,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(13708,1535,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(13709,1535,'A','/trunk/include/RefCountedNodeId.h',NULL,NULL,NULL,NULL),(13710,1535,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(13711,1535,'M','/trunk/include/SubscribedTagDetail.h',NULL,NULL,NULL,NULL),(13712,1535,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(13713,1535,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(13714,1535,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(13715,1535,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(13716,1535,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(13717,1535,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(13718,1535,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13719,1535,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(13720,1535,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(13721,1535,'A','/trunk/source/RefCountedNodeId.cpp',NULL,NULL,NULL,NULL),(13722,1535,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13723,1535,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(13724,1535,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(13725,1535,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(13726,1535,'M','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(13727,1535,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL);
INSERT INTO `changes` VALUES (13728,1535,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(13729,1535,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13730,1535,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(13731,1535,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(13732,1535,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(13733,1535,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(13734,1535,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(13735,1535,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(13736,1535,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(13737,1536,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(13738,1537,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(13739,1538,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(13740,1538,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(13741,1539,'M','/trunk/XMLSAXParser.rc',NULL,NULL,NULL,NULL),(13742,1539,'M','/trunk/XmlShared/xmlop.c',NULL,NULL,NULL,NULL),(13743,1539,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(13744,1540,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(13745,1540,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(13746,1541,'M','/trunk/XMLSAXParser.vcxproj',NULL,NULL,NULL,NULL),(13747,1541,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(13748,1542,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(13749,1543,'M','/trunk/source/SAXParser_Helper.cpp',NULL,NULL,NULL,NULL),(13750,1544,'M','/trunk/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(13751,1544,'M','/trunk/source/opcua_guid.c',NULL,NULL,NULL,NULL),(13752,1544,'M','/trunk/source/opcua_p_guid.c',NULL,NULL,NULL,NULL),(13753,1544,'M','/trunk/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(13754,1544,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(13755,1545,'M','/trunk/source/opcua_types.c',NULL,NULL,NULL,NULL),(13756,1546,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(13757,1547,'M','/trunk/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(13758,1548,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(13759,1548,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(13760,1548,'M','/trunk/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(13761,1548,'M','/trunk/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(13762,1548,'M','/trunk/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(13763,1548,'M','/trunk/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(13764,1548,'M','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(13765,1548,'M','/trunk/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(13766,1548,'M','/trunk/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(13767,1548,'M','/trunk/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(13768,1548,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(13769,1548,'M','/trunk/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(13770,1548,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(13771,1548,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(13772,1548,'M','/trunk/source/opcua_p_string.c',NULL,NULL,NULL,NULL),(13773,1548,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(13774,1548,'M','/trunk/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(13775,1548,'M','/trunk/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(13776,1548,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(13777,1548,'M','/trunk/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(13778,1549,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(13779,1549,'M','/trunk/OpenOpcUaStackV1.vcxproj.filters',NULL,NULL,NULL,NULL),(13780,1550,'M','/trunk/include/shared/opcua_base64.h',NULL,NULL,NULL,NULL),(13781,1551,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(13782,1551,'M','/trunk/include/shared/opcua_p_interface.h',NULL,NULL,NULL,NULL),(13783,1551,'M','/trunk/include/shared/opcua_p_os.h',NULL,NULL,NULL,NULL),(13784,1551,'M','/trunk/include/shared/opcua_p_socket.h',NULL,NULL,NULL,NULL),(13785,1551,'M','/trunk/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(13786,1551,'M','/trunk/include/shared/opcua_string.h',NULL,NULL,NULL,NULL),(13787,1551,'M','/trunk/source/opcua_channel.c',NULL,NULL,NULL,NULL),(13788,1551,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(13789,1551,'M','/trunk/source/opcua_endpoint_ex.c',NULL,NULL,NULL,NULL),(13790,1551,'M','/trunk/source/opcua_guid.c',NULL,NULL,NULL,NULL),(13791,1551,'M','/trunk/source/opcua_p_datetime.c',NULL,NULL,NULL,NULL),(13792,1551,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(13793,1551,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(13794,1551,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(13795,1551,'M','/trunk/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(13796,1551,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(13797,1551,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(13798,1551,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(13799,1551,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(13800,1551,'M','/trunk/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(13801,1552,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(13802,1552,'M','/trunk/include/shared/opcua_mutex.h',NULL,NULL,NULL,NULL),(13803,1552,'M','/trunk/include/shared/opcua_p_pki.h',NULL,NULL,NULL,NULL),(13804,1553,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(13805,1553,'M','/trunk/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(13806,1553,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(13807,1553,'M','/trunk/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(13808,1553,'M','/trunk/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(13809,1553,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(13810,1553,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(13811,1554,'M','/trunk/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(13812,1554,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(13813,1554,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(13814,1554,'M','/trunk/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(13815,1555,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(13816,1556,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(13817,1556,'M','/trunk/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(13818,1556,'M','/trunk/include/shared/opcua_p_utilities.h',NULL,NULL,NULL,NULL),(13819,1556,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(13820,1556,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(13821,1556,'M','/trunk/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(13822,1556,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(13823,1556,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(13824,1557,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(13825,1557,'M','/trunk/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(13826,1557,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(13827,1558,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(13828,1558,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13829,1559,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(13830,1559,'M','/trunk/include/NumericRange.h',NULL,NULL,NULL,NULL),(13831,1559,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13832,1559,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(13833,1559,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(13834,1559,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13835,1559,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13836,1560,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(13837,1560,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(13838,1561,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13839,1561,'M','/trunk/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(13840,1562,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(13841,1562,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(13842,1562,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13843,1563,'M','/trunk/include/Subscription.h',NULL,NULL,NULL,NULL),(13844,1563,'M','/trunk/source/Subscription.cpp',NULL,NULL,NULL,NULL),(13845,1563,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13846,1564,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(13847,1565,'M','/trunk/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(13848,1565,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13849,1565,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13850,1566,'M','/trunk/source/EndpointDescription.cpp',NULL,NULL,NULL,NULL),(13851,1566,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13852,1567,'M','/trunk/include/SessionSecurityDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(13853,1567,'M','/trunk/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(13854,1567,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13855,1567,'M','/trunk/source/SessionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(13856,1567,'M','/trunk/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(13857,1567,'M','/trunk/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(13858,1567,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13859,1567,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13860,1568,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(13861,1568,'M','/trunk/include/opcua_certificates.h',NULL,NULL,NULL,NULL),(13862,1568,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(13863,1568,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13864,1568,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13865,1569,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(13866,1569,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(13867,1569,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13868,1570,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(13869,1570,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(13870,1570,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(13871,1570,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13872,1571,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(13873,1571,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13874,1571,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13875,1572,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13876,1573,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(13877,1574,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(13878,1574,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(13879,1574,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13880,1575,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(13881,1575,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(13882,1575,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(13883,1575,'M','/trunk/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(13884,1575,'M','/trunk/include/MonitoredItemBase.h',NULL,NULL,NULL,NULL),(13885,1575,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(13886,1575,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13887,1575,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(13888,1575,'M','/trunk/source/MonitoredItemBase.cpp',NULL,NULL,NULL,NULL),(13889,1575,'M','/trunk/source/Subscription.cpp',NULL,NULL,NULL,NULL),(13890,1575,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13891,1576,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13892,1577,'M','/trunk/include/Application.h',NULL,NULL,NULL,NULL),(13893,1577,'M','/trunk/include/Channel.h',NULL,NULL,NULL,NULL),(13894,1577,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(13895,1577,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(13896,1577,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13897,1577,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13898,1578,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(13899,1578,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(13900,1578,'M','/trunk/source/Application.cpp',NULL,NULL,NULL,NULL),(13901,1578,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(13902,1579,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(13903,1579,'M','/trunk/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(13904,1579,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13905,1580,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(13906,1580,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(13907,1580,'M','/trunk/include/SubscriptionDiagnosticsDataType.h',NULL,NULL,NULL,NULL),(13908,1580,'M','/trunk/source/SessionBase.cpp',NULL,NULL,NULL,NULL),(13909,1580,'M','/trunk/source/SessionSecurityDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(13910,1580,'M','/trunk/source/SubscriptionDiagnosticsDataType.cpp',NULL,NULL,NULL,NULL),(13911,1580,'M','/trunk/source/Utils.cpp',NULL,NULL,NULL,NULL),(13912,1581,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(13913,1582,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13914,1583,'M','/trunk/OpenOpcUaSharedLib.rc',NULL,NULL,NULL,NULL),(13915,1584,'M','/trunk/include/DataValue.h',NULL,NULL,NULL,NULL),(13916,1584,'M','/trunk/source/Channel.cpp',NULL,NULL,NULL,NULL),(13917,1584,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13918,1584,'M','/trunk/source/opcua_certficates.cpp',NULL,NULL,NULL,NULL),(13919,1585,'M','/trunk/OpenOpcUASharedLib.vcxproj',NULL,NULL,NULL,NULL),(13920,1585,'M','/trunk/source/DataValue.cpp',NULL,NULL,NULL,NULL),(13921,1586,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(13922,1586,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(13923,1586,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(13924,1587,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.rc',NULL,NULL,NULL,NULL),(13925,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(13926,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj.filters',NULL,NULL,NULL,NULL),(13927,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OPCShutdown.h',NULL,NULL,NULL,NULL),(13928,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OpcDaConnection.h',NULL,NULL,NULL,NULL),(13929,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OpcDaGroup.h',NULL,NULL,NULL,NULL),(13930,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OpcDaItem.h',NULL,NULL,NULL,NULL),(13931,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/SourceObject.h',NULL,NULL,NULL,NULL),(13932,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VPIComDa.h',NULL,NULL,NULL,NULL),(13933,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13934,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/stdafx.h',NULL,NULL,NULL,NULL),(13935,1587,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/resource.h',NULL,NULL,NULL,NULL),(13936,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13937,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(13938,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaConnection.cpp',NULL,NULL,NULL,NULL),(13939,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaGroup.cpp',NULL,NULL,NULL,NULL),(13940,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaItem.cpp',NULL,NULL,NULL,NULL),(13941,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(13942,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(13943,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13944,1587,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/dllmain.cpp',NULL,NULL,NULL,NULL),(13945,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl',NULL,NULL,NULL,NULL),(13946,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl.rc',NULL,NULL,NULL,NULL),(13947,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl.vcxproj',NULL,NULL,NULL,NULL),(13948,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl_VS2013.sln',NULL,NULL,NULL,NULL),(13949,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include',NULL,NULL,NULL,NULL),(13950,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/SourceObject.h',NULL,NULL,NULL,NULL),(13951,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/TcpClient.h',NULL,NULL,NULL,NULL),(13952,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/VpiCooperl.h',NULL,NULL,NULL,NULL),(13953,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13954,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/stdafx.h',NULL,NULL,NULL,NULL),(13955,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/targetver.h',NULL,NULL,NULL,NULL),(13956,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/typedefs.h',NULL,NULL,NULL,NULL),(13957,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/resource.h',NULL,NULL,NULL,NULL),(13958,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source',NULL,NULL,NULL,NULL),(13959,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13960,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(13961,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(13962,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiCooperl.cpp',NULL,NULL,NULL,NULL),(13963,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiCooperl.def',NULL,NULL,NULL,NULL),(13964,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiCooperld.def',NULL,NULL,NULL,NULL),(13965,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(13966,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/dllmain.cpp',NULL,NULL,NULL,NULL),(13967,1588,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/stdafx.cpp',NULL,NULL,NULL,NULL),(13968,1589,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl.rc',NULL,NULL,NULL,NULL),(13969,1589,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/TcpClient.h',NULL,NULL,NULL,NULL),(13970,1589,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(13971,1589,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiCooperl.cpp',NULL,NULL,NULL,NULL),(13972,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp',NULL,NULL,NULL,NULL),(13973,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.vcxproj',NULL,NULL,NULL,NULL),(13974,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp_VS2013.sln',NULL,NULL,NULL,NULL),(13975,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include',NULL,NULL,NULL,NULL),(13976,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/CommonPacket.h',NULL,NULL,NULL,NULL),(13977,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/ConnectionManager.h',NULL,NULL,NULL,NULL),(13978,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/EncapsulationData.h',NULL,NULL,NULL,NULL),(13979,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/Identity.h',NULL,NULL,NULL,NULL),(13980,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SessionInfo.h',NULL,NULL,NULL,NULL),(13981,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SessionManager.h',NULL,NULL,NULL,NULL),(13982,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SourceObject.h',NULL,NULL,NULL,NULL),(13983,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/VpiEthIp.h',NULL,NULL,NULL,NULL),(13984,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/VpiInternal.h',NULL,NULL,NULL,NULL),(13985,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/ciptypes.h',NULL,NULL,NULL,NULL),(13986,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/cpf.h',NULL,NULL,NULL,NULL),(13987,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/encap.h',NULL,NULL,NULL,NULL),(13988,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/stdafx.h',NULL,NULL,NULL,NULL),(13989,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/targetver.h',NULL,NULL,NULL,NULL),(13990,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/typedefs.h',NULL,NULL,NULL,NULL),(13991,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source',NULL,NULL,NULL,NULL),(13992,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/ConnectionManager.cpp',NULL,NULL,NULL,NULL),(13993,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/EncapsulationData.cpp',NULL,NULL,NULL,NULL),(13994,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(13995,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/Identity.cpp',NULL,NULL,NULL,NULL),(13996,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionInfo.cpp',NULL,NULL,NULL,NULL),(13997,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(13998,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(13999,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.cpp',NULL,NULL,NULL,NULL),(14000,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.def',NULL,NULL,NULL,NULL),(14001,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIpd.def',NULL,NULL,NULL,NULL),(14002,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14003,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14004,1590,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14005,1591,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.vcxproj',NULL,NULL,NULL,NULL),(14006,1591,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/CommandSpecificRRData.h',NULL,NULL,NULL,NULL),(14007,1591,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/CommandSpecificUnitData.h',NULL,NULL,NULL,NULL),(14008,1591,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SenderContext.h',NULL,NULL,NULL,NULL),(14009,1591,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommandSpecificRRData.cpp',NULL,NULL,NULL,NULL),(14010,1591,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommandSpecificUnitData.cpp',NULL,NULL,NULL,NULL),(14011,1591,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SenderContext.cpp',NULL,NULL,NULL,NULL),(14012,1592,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/VpiEthIp.h',NULL,NULL,NULL,NULL),(14013,1592,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14014,1592,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(14015,1592,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.cpp',NULL,NULL,NULL,NULL),(14016,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/CMakeLists.txt',NULL,NULL,NULL,NULL),(14017,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.vcxproj',NULL,NULL,NULL,NULL),(14018,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/S7Block.h',NULL,NULL,NULL,NULL),(14019,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/SourceObject.h',NULL,NULL,NULL,NULL),(14020,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(14021,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14022,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/stdafx.h',NULL,NULL,NULL,NULL),(14023,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14024,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(14025,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14026,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(14027,1593,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14028,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016',NULL,NULL,NULL,NULL),(14029,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer',NULL,NULL,NULL,NULL),(14030,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GException',NULL,NULL,NULL,NULL),(14031,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GException/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(14032,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GException/BoiteException.cs',NULL,NULL,NULL,NULL),(14033,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GException/BoiteException.resx',NULL,NULL,NULL,NULL),(14034,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GException/CSTBException.cs',NULL,NULL,NULL,NULL),(14035,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GException/GException.csproj',NULL,NULL,NULL,NULL),(14036,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GSerialisation',NULL,NULL,NULL,NULL),(14037,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GSerialisation/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(14038,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GSerialisation/GSerialisation.cs',NULL,NULL,NULL,NULL),(14039,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GSerialisation/GSerialisation.csproj',NULL,NULL,NULL,NULL),(14040,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GSerialisation/SerialisationType.cs',NULL,NULL,NULL,NULL),(14041,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces',NULL,NULL,NULL,NULL),(14042,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(14043,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/CSurveillanceNiveaux.cs',NULL,NULL,NULL,NULL),(14044,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/GTraces.csproj',NULL,NULL,NULL,NULL),(14045,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/ITypeTrace.cs',NULL,NULL,NULL,NULL),(14046,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/LogDistant.cs',NULL,NULL,NULL,NULL),(14047,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/LogServeur.cs',NULL,NULL,NULL,NULL),(14048,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/Niveaux.cs',NULL,NULL,NULL,NULL),(14049,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/Traces.cs',NULL,NULL,NULL,NULL),(14050,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/TypeTrace.cs',NULL,NULL,NULL,NULL),(14051,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente',NULL,NULL,NULL,NULL),(14052,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/AdresseIP.cs',NULL,NULL,NULL,NULL),(14053,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(14054,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/CChaine.cs',NULL,NULL,NULL,NULL),(14055,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/CFileAttente.cs',NULL,NULL,NULL,NULL),(14056,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/CFileAttenteMulticast.cs',NULL,NULL,NULL,NULL),(14057,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/CMessage.cs',NULL,NULL,NULL,NULL),(14058,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/CMessageConstant.cs',NULL,NULL,NULL,NULL),(14059,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/CMessageEventArgs.cs',NULL,NULL,NULL,NULL),(14060,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/CMessageQueueSITB.cs',NULL,NULL,NULL,NULL),(14061,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/CThreadEnvoiMessages.cs',NULL,NULL,NULL,NULL),(14062,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/IFileAttente.csproj',NULL,NULL,NULL,NULL),(14063,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/IFileAttenteMulticast.cs',NULL,NULL,NULL,NULL),(14064,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/Parametrage',NULL,NULL,NULL,NULL),(14065,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/Parametrage/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(14066,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/Parametrage/CChiffrement.cs',NULL,NULL,NULL,NULL),(14067,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/Parametrage/CParametrageAbstract.cs',NULL,NULL,NULL,NULL),(14068,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/Parametrage/CParametresCommuns.cs',NULL,NULL,NULL,NULL),(14069,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/Parametrage/Parametrage.csproj',NULL,NULL,NULL,NULL),(14070,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/Parametrage/ParametresCommuns.resX',NULL,NULL,NULL,NULL),(14071,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer',NULL,NULL,NULL,NULL),(14072,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(14073,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/Properties',NULL,NULL,NULL,NULL),(14074,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(14075,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/RawMessageFromMsMq.cs',NULL,NULL,NULL,NULL),(14076,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/RawMessageToMsMq.cs',NULL,NULL,NULL,NULL),(14077,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/SafirLayer.cs',NULL,NULL,NULL,NULL),(14078,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/SafirLayer.csproj',NULL,NULL,NULL,NULL),(14079,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/SafirLayer.sln',NULL,NULL,NULL,NULL),(14080,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/SafirLayerEventArgs.cs',NULL,NULL,NULL,NULL),(14081,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/TypesCommunicationClientOPC',NULL,NULL,NULL,NULL),(14082,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/TypesCommunicationClientOPC/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(14083,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/TypesCommunicationClientOPC/CDemandeReinit.cs',NULL,NULL,NULL,NULL),(14084,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/TypesCommunicationClientOPC/CEtatPoint.cs',NULL,NULL,NULL,NULL),(14085,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/TypesCommunicationClientOPC/CMQIhm.cs',NULL,NULL,NULL,NULL),(14086,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/TypesCommunicationClientOPC/CMessageDepuisSupervision.cs',NULL,NULL,NULL,NULL),(14087,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/TypesCommunicationClientOPC/CMessagePourSupervision.cs',NULL,NULL,NULL,NULL),(14088,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/TypesCommunicationClientOPC/PointIhm.cs',NULL,NULL,NULL,NULL),(14089,1594,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/TypesCommunicationClientOPC/TypesCommunicationClientOPC.csproj',NULL,NULL,NULL,NULL),(14090,1594,'D','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/SafirLayer.cs',NULL,NULL,NULL,NULL),(14091,1594,'D','/OpenOpcUa_VS2013/Vpis/VpiSafir/SafirLayer/SafirLayer/SafirLayer.csproj',NULL,NULL,NULL,NULL),(14092,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/VpiSafir.rc',NULL,NULL,NULL,NULL),(14093,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/VpiSafir.vcxproj',NULL,NULL,NULL,NULL),(14094,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/VpiSafir_VS2013.sln',NULL,NULL,NULL,NULL),(14095,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/include',NULL,NULL,NULL,NULL),(14096,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/include/MsMqConfig.h',NULL,NULL,NULL,NULL),(14097,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/include/SourceObject.h',NULL,NULL,NULL,NULL),(14098,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14099,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/include/VpiSafir.h',NULL,NULL,NULL,NULL),(14100,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/include/stdafx.h',NULL,NULL,NULL,NULL),(14101,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/include/targetver.h',NULL,NULL,NULL,NULL),(14102,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/resource.h',NULL,NULL,NULL,NULL),(14103,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source',NULL,NULL,NULL,NULL),(14104,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14105,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/MsMqConfig.cpp',NULL,NULL,NULL,NULL),(14106,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14107,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14108,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/VpiSafir.cpp',NULL,NULL,NULL,NULL),(14109,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/VpiSafir.def',NULL,NULL,NULL,NULL),(14110,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/VpiSafird.def',NULL,NULL,NULL,NULL),(14111,1595,'A','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14112,1596,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(14113,1596,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14114,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt',NULL,NULL,NULL,NULL),(14115,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/CMakeLists.txt',NULL,NULL,NULL,NULL),(14116,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(14117,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt_VS2013.sln',NULL,NULL,NULL,NULL),(14118,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include',NULL,NULL,NULL,NULL),(14119,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(14120,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14121,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(14122,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(14123,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(14124,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csubscriptionconfiguration.h',NULL,NULL,NULL,NULL),(14125,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/stdafx.h',NULL,NULL,NULL,NULL),(14126,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/targetver.h',NULL,NULL,NULL,NULL),(14127,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source',NULL,NULL,NULL,NULL),(14128,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14129,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14130,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14131,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14132,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(14133,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntd.def',NULL,NULL,NULL,NULL),(14134,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(14135,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(14136,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(14137,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14138,1597,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14139,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(14140,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(14141,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(14142,1598,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClntObject.h',NULL,NULL,NULL,NULL),(14143,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csubscriptionconfiguration.h',NULL,NULL,NULL,NULL),(14144,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14145,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14146,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14147,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14148,1598,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntObject.cpp',NULL,NULL,NULL,NULL),(14149,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(14150,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(14151,1598,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14152,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(14153,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14154,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(14155,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(14156,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14157,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14158,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14159,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(14160,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntd.def',NULL,NULL,NULL,NULL),(14161,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(14162,1599,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(14163,1600,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(14164,1600,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.vcxproj',NULL,NULL,NULL,NULL),(14165,1600,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/S7Block.h',NULL,NULL,NULL,NULL),(14166,1600,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(14167,1600,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/stdafx.h',NULL,NULL,NULL,NULL),(14168,1600,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/resource.h',NULL,NULL,NULL,NULL),(14169,1600,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14170,1600,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(14171,1600,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(14172,1601,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl.rc',NULL,NULL,NULL,NULL),(14173,1601,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/TcpClient.h',NULL,NULL,NULL,NULL),(14174,1601,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(14175,1602,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(14176,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.vcxproj',NULL,NULL,NULL,NULL),(14177,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/CipAttributeList.h',NULL,NULL,NULL,NULL),(14178,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/CommandSpecificRRData.h',NULL,NULL,NULL,NULL),(14179,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/CommandSpecificUnitData.h',NULL,NULL,NULL,NULL),(14180,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/CommonIndustrialPacket.h',NULL,NULL,NULL,NULL),(14181,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/EncapsulationData.h',NULL,NULL,NULL,NULL),(14182,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/ForwardOpenRequest.h',NULL,NULL,NULL,NULL),(14183,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/ForwardOpenResponse.h',NULL,NULL,NULL,NULL),(14184,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SessionInfo.h',NULL,NULL,NULL,NULL),(14185,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SessionManager.h',NULL,NULL,NULL,NULL),(14186,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SourceObject.h',NULL,NULL,NULL,NULL),(14187,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/StructureDefinition.h',NULL,NULL,NULL,NULL),(14188,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SymbolResponse.h',NULL,NULL,NULL,NULL),(14189,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/VpiEthIp.h',NULL,NULL,NULL,NULL),(14190,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14191,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/encap.h',NULL,NULL,NULL,NULL),(14192,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/stdafx.h',NULL,NULL,NULL,NULL),(14193,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CipAttributeList.cpp',NULL,NULL,NULL,NULL),(14194,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommandSpecificRRData.cpp',NULL,NULL,NULL,NULL),(14195,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommandSpecificUnitData.cpp',NULL,NULL,NULL,NULL),(14196,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommonIndustrialPacket.cpp',NULL,NULL,NULL,NULL),(14197,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/EncapsulationData.cpp',NULL,NULL,NULL,NULL),(14198,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14199,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/ForwardOpenRequest.cpp',NULL,NULL,NULL,NULL),(14200,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/ForwardOpenResponse.cpp',NULL,NULL,NULL,NULL),(14201,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionInfo.cpp',NULL,NULL,NULL,NULL),(14202,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(14203,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14204,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/StructureDefinition.cpp',NULL,NULL,NULL,NULL),(14205,1603,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SymbolResponse.cpp',NULL,NULL,NULL,NULL),(14206,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.cpp',NULL,NULL,NULL,NULL),(14207,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14208,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14209,1603,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14210,1604,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.rc',NULL,NULL,NULL,NULL),(14211,1604,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.vcxproj',NULL,NULL,NULL,NULL),(14212,1604,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/StructureDefinition.h',NULL,NULL,NULL,NULL),(14213,1604,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/resource.h',NULL,NULL,NULL,NULL),(14214,1604,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(14215,1604,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/StructureDefinition.cpp',NULL,NULL,NULL,NULL),(14216,1604,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.cpp',NULL,NULL,NULL,NULL),(14217,1605,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(14218,1605,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(14219,1606,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/S7Block.h',NULL,NULL,NULL,NULL),(14220,1606,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(14221,1606,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14222,1606,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/stdafx.h',NULL,NULL,NULL,NULL),(14223,1606,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14224,1606,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(14225,1606,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14226,1606,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14227,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.rc',NULL,NULL,NULL,NULL),(14228,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.vcxproj',NULL,NULL,NULL,NULL),(14229,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SessionManager.h',NULL,NULL,NULL,NULL),(14230,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/StructureDefinition.h',NULL,NULL,NULL,NULL),(14231,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/VpiEthIp.h',NULL,NULL,NULL,NULL),(14232,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14233,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/stdafx.h',NULL,NULL,NULL,NULL),(14234,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CipAttributeList.cpp',NULL,NULL,NULL,NULL),(14235,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommandSpecificRRData.cpp',NULL,NULL,NULL,NULL),(14236,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommandSpecificUnitData.cpp',NULL,NULL,NULL,NULL),(14237,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommonIndustrialPacket.cpp',NULL,NULL,NULL,NULL),(14238,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/EncapsulationData.cpp',NULL,NULL,NULL,NULL),(14239,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14240,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/ForwardOpenRequest.cpp',NULL,NULL,NULL,NULL),(14241,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/ForwardOpenResponse.cpp',NULL,NULL,NULL,NULL),(14242,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(14243,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14244,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/StructureDefinition.cpp',NULL,NULL,NULL,NULL),(14245,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SymbolResponse.cpp',NULL,NULL,NULL,NULL),(14246,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.cpp',NULL,NULL,NULL,NULL),(14247,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14248,1607,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14249,1608,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.rc',NULL,NULL,NULL,NULL),(14250,1608,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/VpiEthIp.h',NULL,NULL,NULL,NULL),(14251,1608,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.cpp',NULL,NULL,NULL,NULL),(14252,1608,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14253,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SessionManager.h',NULL,NULL,NULL,NULL),(14254,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommandSpecificRRData.cpp',NULL,NULL,NULL,NULL),(14255,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommandSpecificUnitData.cpp',NULL,NULL,NULL,NULL),(14256,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/CommonIndustrialPacket.cpp',NULL,NULL,NULL,NULL),(14257,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14258,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(14259,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14260,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/StructureDefinition.cpp',NULL,NULL,NULL,NULL),(14261,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SymbolResponse.cpp',NULL,NULL,NULL,NULL),(14262,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.cpp',NULL,NULL,NULL,NULL),(14263,1609,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14264,1610,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/VpiSafir.vcxproj',NULL,NULL,NULL,NULL),(14265,1610,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/include/VpiSafir.h',NULL,NULL,NULL,NULL),(14266,1610,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14267,1610,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14268,1610,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/VpiSafir.cpp',NULL,NULL,NULL,NULL),(14269,1611,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/GTraces/Traces.cs',NULL,NULL,NULL,NULL),(14270,1611,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/IFileAttente/CFileAttente.cs',NULL,NULL,NULL,NULL),(14271,1611,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/SafirLayer/SafirLayer/SafirLayer.cs',NULL,NULL,NULL,NULL),(14272,1612,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(14273,1613,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.rc',NULL,NULL,NULL,NULL),(14274,1613,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(14275,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl.rc',NULL,NULL,NULL,NULL),(14276,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/TcpClient.h',NULL,NULL,NULL,NULL),(14277,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/VpiCooperl.h',NULL,NULL,NULL,NULL),(14278,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14279,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/stdafx.h',NULL,NULL,NULL,NULL),(14280,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14281,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(14282,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiCooperl.cpp',NULL,NULL,NULL,NULL),(14283,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14284,1614,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14285,1615,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(14286,1616,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(14287,1616,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj.filters',NULL,NULL,NULL,NULL),(14288,1616,'A','/OpenOpcUa_VS2013/LuaLib/include/crt.h',NULL,NULL,NULL,NULL),(14289,1616,'M','/OpenOpcUa_VS2013/LuaLib/include/lua.h',NULL,NULL,NULL,NULL),(14290,1616,'A','/OpenOpcUa_VS2013/LuaLib/include/signal.h',NULL,NULL,NULL,NULL),(14291,1616,'A','/OpenOpcUa_VS2013/LuaLib/source/crt.c',NULL,NULL,NULL,NULL),(14292,1616,'A','/OpenOpcUa_VS2013/LuaLib/source/locale.c',NULL,NULL,NULL,NULL),(14293,1617,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(14294,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/DataValue.h',NULL,NULL,NULL,NULL),(14295,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/EventDefinition.h',NULL,NULL,NULL,NULL),(14296,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UABase.h',NULL,NULL,NULL,NULL),(14297,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(14298,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAObject.h',NULL,NULL,NULL,NULL),(14299,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAVariable.h',NULL,NULL,NULL,NULL),(14300,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/stdafx.h',NULL,NULL,NULL,NULL),(14301,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/DataValue.cpp',NULL,NULL,NULL,NULL),(14302,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(14303,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(14304,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(14305,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UADataType.cpp',NULL,NULL,NULL,NULL),(14306,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(14307,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(14308,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(14309,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(14310,1618,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14311,1619,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14312,1619,'M','/OpenOpcUa_VS2013/Vpis/VpiSafir-07-2016/source/VpiSafir.cpp',NULL,NULL,NULL,NULL),(14313,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(14314,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Alias.h',NULL,NULL,NULL,NULL),(14315,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/DataValue.h',NULL,NULL,NULL,NULL),(14316,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/EventDefinition.h',NULL,NULL,NULL,NULL),(14317,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/EventsEngine.h',NULL,NULL,NULL,NULL),(14318,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/FileVersionInfo.h',NULL,NULL,NULL,NULL),(14319,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/NamespaceUri.h',NULL,NULL,NULL,NULL),(14320,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(14321,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(14322,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(14323,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/VpiTag.h',NULL,NULL,NULL,NULL),(14324,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(14325,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(14326,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(14327,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(14328,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/NamespaceUri.cpp',NULL,NULL,NULL,NULL),(14329,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(14330,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(14331,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(14332,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(14333,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(14334,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(14335,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(14336,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(14337,1620,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14338,1621,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/CMakeLists.txt',NULL,NULL,NULL,NULL),(14339,1621,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/SourceObject.h',NULL,NULL,NULL,NULL),(14340,1621,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/TcpClient.h',NULL,NULL,NULL,NULL),(14341,1621,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14342,1621,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(14343,1622,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl.vcxproj',NULL,NULL,NULL,NULL),(14344,1622,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/CooperlRequest.h',NULL,NULL,NULL,NULL),(14345,1622,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/CooperlResponse.h',NULL,NULL,NULL,NULL),(14346,1622,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/RequestNodeId.h',NULL,NULL,NULL,NULL),(14347,1622,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/ResponseDataValue.h',NULL,NULL,NULL,NULL),(14348,1622,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/TcpClient.h',NULL,NULL,NULL,NULL),(14349,1622,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/VpiCooperl.h',NULL,NULL,NULL,NULL),(14350,1622,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/CooperlRequest.cpp',NULL,NULL,NULL,NULL),(14351,1622,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/CooperlResponse.cpp',NULL,NULL,NULL,NULL),(14352,1622,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/RequestNodeId.cpp',NULL,NULL,NULL,NULL),(14353,1622,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/ResponseDataValue.cpp',NULL,NULL,NULL,NULL),(14354,1622,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(14355,1623,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl.rc',NULL,NULL,NULL,NULL),(14356,1623,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/CooperlRequest.h',NULL,NULL,NULL,NULL),(14357,1623,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/CooperlResponse.h',NULL,NULL,NULL,NULL),(14358,1623,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/TcpClient.h',NULL,NULL,NULL,NULL),(14359,1623,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/CooperlRequest.cpp',NULL,NULL,NULL,NULL),(14360,1623,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/CooperlResponse.cpp',NULL,NULL,NULL,NULL),(14361,1623,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(14362,1624,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(14363,1624,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(14364,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.rc',NULL,NULL,NULL,NULL),(14365,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(14366,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa_VS2013.sln',NULL,NULL,NULL,NULL),(14367,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VPIComDa.h',NULL,NULL,NULL,NULL),(14368,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14369,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/stdafx.h',NULL,NULL,NULL,NULL),(14370,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14371,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(14372,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaConnection.cpp',NULL,NULL,NULL,NULL),(14373,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaGroup.cpp',NULL,NULL,NULL,NULL),(14374,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaItem.cpp',NULL,NULL,NULL,NULL),(14375,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14376,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(14377,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14378,1625,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14379,1626,'D','/OpenOpcUa_VS2013/Vpis/VpiCooperl/CMakeLists.txt',NULL,NULL,NULL,NULL),(14380,1626,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/CMakeLists_Debian.txt',NULL,NULL,NULL,NULL),(14381,1626,'A','/OpenOpcUa_VS2013/Vpis/VpiCooperl/CMakeLists_Moxa.txt',NULL,NULL,NULL,NULL),(14382,1626,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl.rc',NULL,NULL,NULL,NULL),(14383,1626,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/VpiCooperl.vcxproj',NULL,NULL,NULL,NULL),(14384,1626,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/TcpClient.h',NULL,NULL,NULL,NULL),(14385,1626,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/stdafx.h',NULL,NULL,NULL,NULL),(14386,1626,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/include/targetver.h',NULL,NULL,NULL,NULL),(14387,1626,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(14388,1626,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiCooperl.cpp',NULL,NULL,NULL,NULL),(14389,1626,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14390,1627,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(14391,1627,'M','/OpenOpcUa_VS2013/Vpis/VpiCooperl/source/VpiCooperl.cpp',NULL,NULL,NULL,NULL),(14392,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SessionManager.h',NULL,NULL,NULL,NULL),(14393,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/StructureDefinition.h',NULL,NULL,NULL,NULL),(14394,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/SymbolResponse.h',NULL,NULL,NULL,NULL),(14395,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/include/cpf.h',NULL,NULL,NULL,NULL),(14396,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14397,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(14398,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/StructureDefinition.cpp',NULL,NULL,NULL,NULL),(14399,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SymbolResponse.cpp',NULL,NULL,NULL,NULL),(14400,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.cpp',NULL,NULL,NULL,NULL),(14401,1628,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14402,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(14403,1629,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/BrowseElt.h',NULL,NULL,NULL,NULL),(14404,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(14405,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14406,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(14407,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(14408,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(14409,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csubscriptionconfiguration.h',NULL,NULL,NULL,NULL),(14410,1629,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(14411,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14412,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14413,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14414,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14415,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(14416,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntd.def',NULL,NULL,NULL,NULL),(14417,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(14418,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(14419,1629,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(14420,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(14421,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/BrowseElt.h',NULL,NULL,NULL,NULL),(14422,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(14423,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14424,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(14425,1630,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/WrappedRoot.h',NULL,NULL,NULL,NULL),(14426,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(14427,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/stdafx.h',NULL,NULL,NULL,NULL),(14428,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(14429,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14430,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14431,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14432,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14433,1630,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(14434,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(14435,1630,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(14436,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess',NULL,NULL,NULL,NULL),(14437,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/Config',NULL,NULL,NULL,NULL),(14438,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/Config/Config4CE.xml',NULL,NULL,NULL,NULL),(14439,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/Config/DirectAccess001.xml',NULL,NULL,NULL,NULL),(14440,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/Config/Labo-DirectAccess.xml',NULL,NULL,NULL,NULL),(14441,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/Config/Opc.Ua.Types.xsd',NULL,NULL,NULL,NULL),(14442,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(14443,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(14444,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess',NULL,NULL,NULL,NULL),(14445,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/CMakeLists.txt',NULL,NULL,NULL,NULL),(14446,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/VPIDirectAccess.rc',NULL,NULL,NULL,NULL),(14447,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/VPIDirectAccess.vcxproj',NULL,NULL,NULL,NULL),(14448,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/VPIDirectAccess.vcxproj.filters',NULL,NULL,NULL,NULL),(14449,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include',NULL,NULL,NULL,NULL),(14450,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/DataSegMutex.h',NULL,NULL,NULL,NULL),(14451,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/DirectAccessType.h',NULL,NULL,NULL,NULL),(14452,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/SourceObject.h',NULL,NULL,NULL,NULL),(14453,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/VPIDirectAccess.h',NULL,NULL,NULL,NULL),(14454,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14455,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/stdafx.h',NULL,NULL,NULL,NULL),(14456,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/targetver.h',NULL,NULL,NULL,NULL),(14457,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/resource.h',NULL,NULL,NULL,NULL),(14458,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source',NULL,NULL,NULL,NULL),(14459,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/DataSegMutex.cpp',NULL,NULL,NULL,NULL),(14460,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14461,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14462,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccess.cpp',NULL,NULL,NULL,NULL),(14463,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccess.def',NULL,NULL,NULL,NULL),(14464,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccessd.def',NULL,NULL,NULL,NULL),(14465,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14466,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14467,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14468,1631,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess_VS2013.sln',NULL,NULL,NULL,NULL),(14469,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/BrowseElt.h',NULL,NULL,NULL,NULL),(14470,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14471,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(14472,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/WrappedRoot.h',NULL,NULL,NULL,NULL),(14473,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(14474,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/stdafx.h',NULL,NULL,NULL,NULL),(14475,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(14476,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14477,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14478,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14479,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(14480,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(14481,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(14482,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(14483,1632,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14484,1633,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14485,1633,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14486,1633,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14487,1633,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14488,1633,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(14489,1633,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntd.def',NULL,NULL,NULL,NULL),(14490,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(14491,1634,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(14492,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/BrowseElt.h',NULL,NULL,NULL,NULL),(14493,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(14494,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14495,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(14496,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClntObject.h',NULL,NULL,NULL,NULL),(14497,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/WrappedRoot.h',NULL,NULL,NULL,NULL),(14498,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(14499,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csubscriptionconfiguration.h',NULL,NULL,NULL,NULL),(14500,1634,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/resource.h',NULL,NULL,NULL,NULL),(14501,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(14502,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14503,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14504,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14505,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(14506,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntObject.cpp',NULL,NULL,NULL,NULL),(14507,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntd.def',NULL,NULL,NULL,NULL),(14508,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(14509,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(14510,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(14511,1634,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(14512,1635,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14513,1635,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(14514,1635,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/WrappedRoot.h',NULL,NULL,NULL,NULL),(14515,1635,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(14516,1635,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14517,1635,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14518,1635,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14519,1635,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(14520,1635,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14521,1636,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/BrowseElt.h',NULL,NULL,NULL,NULL),(14522,1636,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(14523,1636,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14524,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(14525,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/BrowseElt.h',NULL,NULL,NULL,NULL),(14526,1637,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/UAVariable.h',NULL,NULL,NULL,NULL),(14527,1637,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/UAVariableType.h',NULL,NULL,NULL,NULL),(14528,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14529,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(14530,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/WrappedRoot.h',NULL,NULL,NULL,NULL),(14531,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(14532,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14533,1637,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(14534,1637,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(14535,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14536,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(14537,1637,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(14538,1638,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14539,1639,'M','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.h',NULL,NULL,NULL,NULL),(14540,1640,'M','/VPIMdbMaster/VPIMdbMaster/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(14541,1641,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.h',NULL,NULL,NULL,NULL),(14542,1642,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.h',NULL,NULL,NULL,NULL),(14543,1642,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.h',NULL,NULL,NULL,NULL),(14544,1642,'M','/VPIMdbMaster/VPIMdbMaster/RtSocket.h',NULL,NULL,NULL,NULL),(14545,1642,'M','/VPIMdbMaster/VPIMdbMaster/SourceObject.h',NULL,NULL,NULL,NULL),(14546,1642,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14547,1642,'M','/VPIMdbMaster/VPIMdbMaster/VpiInternal.h',NULL,NULL,NULL,NULL),(14548,1642,'M','/VPIMdbMaster/VPIMdbMaster/stdafx.h',NULL,NULL,NULL,NULL),(14549,1642,'M','/VPIMdbMaster/VPIMdbMaster/targetver.h',NULL,NULL,NULL,NULL),(14550,1643,'M','/VPIMdbMaster/VPIMdbMaster/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(14551,1643,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14552,1643,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14553,1643,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14554,1643,'M','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14555,1643,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(14556,1643,'M','/VPIMdbMaster/VPIMdbMaster/RtSocket.cpp',NULL,NULL,NULL,NULL),(14557,1643,'M','/VPIMdbMaster/VPIMdbMaster/SourceObject.cpp',NULL,NULL,NULL,NULL),(14558,1643,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14559,1643,'M','/VPIMdbMaster/VPIMdbMaster/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14560,1643,'M','/VPIMdbMaster/VPIMdbMaster/dllmain.cpp',NULL,NULL,NULL,NULL),(14561,1643,'M','/VPIMdbMaster/VPIMdbMaster/stdafx.cpp',NULL,NULL,NULL,NULL),(14562,1644,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14563,1644,'M','/VPIMdbMaster/VPIMdbMaster/stdafx.h',NULL,NULL,NULL,NULL),(14564,1645,'M','/VPIMdbMaster/VPIMdbMaster/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(14565,1645,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14566,1645,'M','/VPIMdbMaster/VPIMdbMaster/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(14567,1645,'M','/VPIMdbMaster/VPIMdbMaster/RtSocket.cpp',NULL,NULL,NULL,NULL),(14568,1645,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14569,1645,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14570,1645,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(14571,1645,'M','/VPIMdbMaster/VPIMdbMaster/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14572,1645,'M','/VPIMdbMaster/VPIMdbMaster/dllmain.cpp',NULL,NULL,NULL,NULL),(14573,1645,'M','/VPIMdbMaster/VPIMdbMaster/stdafx.h',NULL,NULL,NULL,NULL),(14574,1646,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14575,1646,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14576,1646,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14577,1646,'M','/VPIMdbMaster/VPIMdbMaster/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14578,1646,'M','/VPIMdbMaster/VPIMdbMaster/VpiInternal.h',NULL,NULL,NULL,NULL),(14579,1647,'M','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14580,1647,'M','/VPIMdbMaster/VPIMdbMaster/ModbusResponse.h',NULL,NULL,NULL,NULL),(14581,1647,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14582,1647,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(14583,1648,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(14584,1649,'D','/VPIMdbMaster/VPIMdbMaster/AcqCtrlThread.cpp',NULL,NULL,NULL,NULL),(14585,1649,'D','/VPIMdbMaster/VPIMdbMaster/AcqCtrlThread.h',NULL,NULL,NULL,NULL),(14586,1649,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14587,1649,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj',NULL,NULL,NULL,NULL),(14588,1649,'M','/VPIMdbMaster/VPIMdbMaster/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14589,1649,'M','/VPIMdbMaster/VPIMdbMaster/VpiInternal.h',NULL,NULL,NULL,NULL),(14590,1649,'M','/VPIMdbMaster/VPIMdbMaster/stdafx.h',NULL,NULL,NULL,NULL),(14591,1650,'M','/VPIMdbMaster/VPIMdbMaster/RtSocket.h',NULL,NULL,NULL,NULL),(14592,1651,'M','/VPIMdbMaster/Config/PlcModbus001.xml',NULL,NULL,NULL,NULL),(14593,1651,'M','/VPIMdbMaster/DemoModbus/Config4CE.xml',NULL,NULL,NULL,NULL),(14594,1651,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14595,1651,'M','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14596,1651,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14597,1651,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.def',NULL,NULL,NULL,NULL),(14598,1651,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14599,1651,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(14600,1651,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj.filters',NULL,NULL,NULL,NULL),(14601,1651,'A','/VPIMdbMaster/VPIMdbMaster/VPIMdbMasterd.def',NULL,NULL,NULL,NULL),(14602,1651,'M','/VPIMdbMaster/VPIMdbMaster/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14603,1651,'A','/VPIMdbMaster/VPIMdbMaster_VS2013.sln',NULL,NULL,NULL,NULL),(14604,1652,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(14605,1653,'D','/VPIMdbMaster/Config/Labo-Modbus.xml',NULL,NULL,NULL,NULL),(14606,1653,'D','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part3.xml',NULL,NULL,NULL,NULL),(14607,1653,'D','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part4.xml',NULL,NULL,NULL,NULL),(14608,1653,'D','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part5.xml',NULL,NULL,NULL,NULL),(14609,1653,'D','/VPIMdbMaster/Config/Opc.Ua.NodeSet2.Part8.xml',NULL,NULL,NULL,NULL),(14610,1653,'D','/VPIMdbMaster/Config/PlcModbus001.xml',NULL,NULL,NULL,NULL),(14611,1653,'D','/VPIMdbMaster/Config/ServerConfig.xsd',NULL,NULL,NULL,NULL),(14612,1653,'D','/VPIMdbMaster/Config/SubSystem.xsd',NULL,NULL,NULL,NULL),(14613,1653,'D','/VPIMdbMaster/Config/VpiMdbMaster00200.dat',NULL,NULL,NULL,NULL),(14614,1653,'D','/VPIMdbMaster/DemoModbus/Config4CE.xml',NULL,NULL,NULL,NULL),(14615,1653,'M','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14616,1653,'M','/VPIMdbMaster/VPIMdbMaster/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14617,1653,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(14618,1654,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(14619,1654,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj.filters',NULL,NULL,NULL,NULL),(14620,1655,'A','/VPIMdbMaster/VPIMdbMaster/CMakeLists.txt',NULL,NULL,NULL,NULL),(14621,1655,'D','/VPIMdbMaster/VPIMdbMaster/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14622,1655,'D','/VPIMdbMaster/VPIMdbMaster/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14623,1655,'D','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14624,1655,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(14625,1655,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj.filters',NULL,NULL,NULL,NULL),(14626,1655,'A','/VPIMdbMaster/VPIMdbMaster/include',NULL,NULL,NULL,NULL),(14627,1655,'A','/VPIMdbMaster/VPIMdbMaster/include/ModbusMessage.h',NULL,NULL,NULL,NULL),(14628,1655,'A','/VPIMdbMaster/VPIMdbMaster/include/ModbusRequest.h',NULL,NULL,NULL,NULL),(14629,1655,'A','/VPIMdbMaster/VPIMdbMaster/include/ModbusResponse.h',NULL,NULL,NULL,NULL),(14630,1655,'A','/VPIMdbMaster/VPIMdbMaster/include/ModbusWrapper.h',NULL,NULL,NULL,NULL),(14631,1655,'A','/VPIMdbMaster/VPIMdbMaster/include/SourceObject.h',NULL,NULL,NULL,NULL),(14632,1655,'A','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14633,1655,'A','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14634,1655,'A','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14635,1655,'A','/VPIMdbMaster/VPIMdbMaster/include/targetver.h',NULL,NULL,NULL,NULL),(14636,1655,'A','/VPIMdbMaster/VPIMdbMaster/source',NULL,NULL,NULL,NULL),(14637,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14638,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14639,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14640,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14641,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(14642,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14643,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14644,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.def',NULL,NULL,NULL,NULL),(14645,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMasterd.def',NULL,NULL,NULL,NULL),(14646,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14647,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14648,1655,'A','/VPIMdbMaster/VPIMdbMaster/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14649,1656,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(14650,1656,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14651,1656,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14652,1656,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14653,1656,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14654,1656,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14655,1656,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14656,1656,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14657,1656,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(14658,1656,'M','/VPIMdbMaster/VPIMdbMaster/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14659,1656,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14660,1656,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14661,1656,'M','/VPIMdbMaster/VPIMdbMaster/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14662,1657,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusMessage.h',NULL,NULL,NULL,NULL),(14663,1657,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusRequest.h',NULL,NULL,NULL,NULL),(14664,1657,'M','/VPIMdbMaster/VPIMdbMaster/include/SourceObject.h',NULL,NULL,NULL,NULL),(14665,1657,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14666,1657,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14667,1657,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14668,1657,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14669,1657,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14670,1657,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(14671,1657,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14672,1657,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14673,1657,'M','/VPIMdbMaster/VPIMdbMaster/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14674,1658,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusMessage.h',NULL,NULL,NULL,NULL),(14675,1658,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14676,1658,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14677,1659,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(14678,1659,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj.filters',NULL,NULL,NULL,NULL),(14679,1659,'A','/VPIMdbMaster/VPIMdbMaster/include/ModbusBlock.h',NULL,NULL,NULL,NULL),(14680,1659,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusMessage.h',NULL,NULL,NULL,NULL),(14681,1659,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusRequest.h',NULL,NULL,NULL,NULL),(14682,1659,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusResponse.h',NULL,NULL,NULL,NULL),(14683,1659,'M','/VPIMdbMaster/VPIMdbMaster/include/SourceObject.h',NULL,NULL,NULL,NULL),(14684,1659,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14685,1659,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14686,1659,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14687,1659,'A','/VPIMdbMaster/VPIMdbMaster/source/ModbusBlock.cpp',NULL,NULL,NULL,NULL),(14688,1659,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14689,1659,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14690,1659,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14691,1659,'M','/VPIMdbMaster/VPIMdbMaster/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14692,1659,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14693,1659,'M','/VPIMdbMaster/VPIMdbMaster/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14694,1659,'M','/VPIMdbMaster/VPIMdbMaster_VS2013.sln',NULL,NULL,NULL,NULL),(14695,1660,'M','/VPIMdbMaster/Doc/Analyse VpiMdbMaster.docx',NULL,NULL,NULL,NULL),(14696,1660,'M','/VPIMdbMaster/VPIMdbMaster/CMakeLists.txt',NULL,NULL,NULL,NULL),(14697,1660,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14698,1660,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusBlock.h',NULL,NULL,NULL,NULL),(14699,1660,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusWrapper.h',NULL,NULL,NULL,NULL),(14700,1660,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14701,1660,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14702,1660,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14703,1660,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14704,1660,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14705,1660,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(14706,1660,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14707,1660,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14708,1661,'M','/VPIMdbMaster/VPIMdbMaster/CMakeLists.txt',NULL,NULL,NULL,NULL),(14709,1661,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14710,1661,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusBlock.h',NULL,NULL,NULL,NULL),(14711,1661,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusRequest.h',NULL,NULL,NULL,NULL),(14712,1661,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusResponse.h',NULL,NULL,NULL,NULL),(14713,1661,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusWrapper.h',NULL,NULL,NULL,NULL),(14714,1661,'M','/VPIMdbMaster/VPIMdbMaster/include/SourceObject.h',NULL,NULL,NULL,NULL),(14715,1661,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14716,1661,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14717,1661,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14718,1661,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14719,1661,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusBlock.cpp',NULL,NULL,NULL,NULL),(14720,1661,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14721,1661,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14722,1661,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14723,1661,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(14724,1661,'M','/VPIMdbMaster/VPIMdbMaster/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14725,1661,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14726,1661,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14727,1662,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusBlock.h',NULL,NULL,NULL,NULL),(14728,1662,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusMessage.h',NULL,NULL,NULL,NULL),(14729,1662,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusRequest.h',NULL,NULL,NULL,NULL),(14730,1662,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusResponse.h',NULL,NULL,NULL,NULL),(14731,1662,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusWrapper.h',NULL,NULL,NULL,NULL),(14732,1662,'M','/VPIMdbMaster/VPIMdbMaster/include/SourceObject.h',NULL,NULL,NULL,NULL),(14733,1662,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14734,1662,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14735,1662,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14736,1662,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14737,1662,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusBlock.cpp',NULL,NULL,NULL,NULL),(14738,1662,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14739,1662,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14740,1662,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14741,1662,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(14742,1662,'M','/VPIMdbMaster/VPIMdbMaster/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14743,1662,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14744,1662,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14745,1663,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14746,1663,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusRequest.h',NULL,NULL,NULL,NULL),(14747,1663,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusWrapper.h',NULL,NULL,NULL,NULL),(14748,1663,'M','/VPIMdbMaster/VPIMdbMaster/include/SourceObject.h',NULL,NULL,NULL,NULL),(14749,1663,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14750,1663,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14751,1663,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14752,1663,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14753,1663,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14754,1663,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14755,1663,'M','/VPIMdbMaster/VPIMdbMaster/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14756,1664,'M','/VPIMdbMaster/VPIMdbMaster/include/SourceObject.h',NULL,NULL,NULL,NULL),(14757,1664,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14758,1665,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14759,1665,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14760,1665,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14761,1665,'M','/VPIMdbMaster/VPIMdbMaster/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14762,1666,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14763,1666,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14764,1667,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14765,1667,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14766,1667,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14767,1667,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14768,1667,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14769,1667,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(14770,1667,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14771,1667,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14772,1667,'M','/VPIMdbMaster/VPIMdbMaster/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14773,1668,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14774,1669,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14775,1669,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14776,1670,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14777,1670,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusRequest.h',NULL,NULL,NULL,NULL),(14778,1670,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14779,1670,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14780,1670,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14781,1670,'M','/VPIMdbMaster/VPIMdbMaster_VS2013.sln',NULL,NULL,NULL,NULL),(14782,1671,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14783,1671,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(14784,1671,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusBlock.h',NULL,NULL,NULL,NULL),(14785,1671,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14786,1671,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14787,1671,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14788,1671,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14789,1671,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusBlock.cpp',NULL,NULL,NULL,NULL),(14790,1671,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14791,1671,'M','/VPIMdbMaster/VPIMdbMaster/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14792,1671,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14793,1671,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14794,1671,'M','/VPIMdbMaster/VPIMdbMaster_VS2013.sln',NULL,NULL,NULL,NULL),(14795,1672,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14796,1672,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(14797,1672,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj.filters',NULL,NULL,NULL,NULL),(14798,1672,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusRequest.h',NULL,NULL,NULL,NULL),(14799,1672,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusResponse.h',NULL,NULL,NULL,NULL),(14800,1672,'M','/VPIMdbMaster/VPIMdbMaster/include/SourceObject.h',NULL,NULL,NULL,NULL),(14801,1672,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14802,1672,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14803,1672,'A','/VPIMdbMaster/VPIMdbMaster/include/WriteObject.h',NULL,NULL,NULL,NULL),(14804,1672,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(14805,1672,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14806,1672,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14807,1672,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(14808,1672,'M','/VPIMdbMaster/VPIMdbMaster/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14809,1672,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14810,1672,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.def',NULL,NULL,NULL,NULL),(14811,1672,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMasterd.def',NULL,NULL,NULL,NULL),(14812,1672,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14813,1672,'A','/VPIMdbMaster/VPIMdbMaster/source/WriteObject.cpp',NULL,NULL,NULL,NULL),(14814,1673,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusMessage.h',NULL,NULL,NULL,NULL),(14815,1673,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusRequest.h',NULL,NULL,NULL,NULL),(14816,1673,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14817,1673,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(14818,1673,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14819,1673,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14820,1673,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14821,1673,'M','/VPIMdbMaster/VPIMdbMaster/source/WriteObject.cpp',NULL,NULL,NULL,NULL),(14822,1674,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(14823,1674,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(14824,1674,'M','/VPIMdbMaster/VPIMdbMaster/include/WriteObject.h',NULL,NULL,NULL,NULL),(14825,1674,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14826,1674,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(14827,1674,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(14828,1674,'M','/VPIMdbMaster/VPIMdbMaster/source/WriteObject.cpp',NULL,NULL,NULL,NULL),(14829,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco',NULL,NULL,NULL,NULL),(14830,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.sln',NULL,NULL,NULL,NULL),(14831,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.vcxproj',NULL,NULL,NULL,NULL),(14832,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include',NULL,NULL,NULL,NULL),(14833,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakFrame.h',NULL,NULL,NULL,NULL),(14834,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(14835,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakResponse.h',NULL,NULL,NULL,NULL),(14836,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(14837,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/SourceObject.h',NULL,NULL,NULL,NULL),(14838,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiInternal.h',NULL,NULL,NULL,NULL),(14839,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(14840,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/stdafx.h',NULL,NULL,NULL,NULL),(14841,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/targetver.h',NULL,NULL,NULL,NULL),(14842,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source',NULL,NULL,NULL,NULL),(14843,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(14844,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(14845,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(14846,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakResponse.cpp',NULL,NULL,NULL,NULL),(14847,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(14848,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(14849,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(14850,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.def',NULL,NULL,NULL,NULL),(14851,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTycod.def',NULL,NULL,NULL,NULL),(14852,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/dllmain.cpp',NULL,NULL,NULL,NULL),(14853,1675,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/stdafx.cpp',NULL,NULL,NULL,NULL),(14854,1676,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(14855,1676,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(14856,1676,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(14857,1676,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(14858,1676,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(14859,1676,'M','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(14860,1676,'M','/trunk/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(14861,1676,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(14862,1676,'M','/trunk/include/UAHistorianVariable.h',NULL,NULL,NULL,NULL),(14863,1676,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(14864,1676,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(14865,1676,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(14866,1676,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(14867,1676,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(14868,1676,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(14869,1676,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(14870,1676,'M','/trunk/source/LuaDebugger.cpp',NULL,NULL,NULL,NULL),(14871,1676,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(14872,1676,'M','/trunk/source/QueuedCallRequest.cpp',NULL,NULL,NULL,NULL),(14873,1676,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(14874,1676,'M','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(14875,1676,'M','/trunk/source/SecureChannel.cpp',NULL,NULL,NULL,NULL),(14876,1676,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14877,1676,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(14878,1676,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(14879,1676,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(14880,1676,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(14881,1676,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(14882,1676,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(14883,1676,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(14884,1676,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(14885,1676,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(14886,1676,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(14887,1676,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(14888,1676,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(14889,1676,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(14890,1676,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(14891,1676,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(14892,1676,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(14893,1676,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(14894,1676,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(14895,1677,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(14896,1677,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(14897,1677,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(14898,1677,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(14899,1677,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(14900,1677,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(14901,1677,'M','/trunk/include/UAMethod.h',NULL,NULL,NULL,NULL),(14902,1677,'M','/trunk/include/UAMonitoredItemNotification.h',NULL,NULL,NULL,NULL),(14903,1677,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(14904,1677,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(14905,1677,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(14906,1677,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(14907,1677,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14908,1677,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(14909,1677,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(14910,1677,'M','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(14911,1677,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(14912,1677,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(14913,1677,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(14914,1677,'M','/trunk/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(14915,1677,'M','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(14916,1677,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(14917,1678,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(14918,1678,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14919,1678,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(14920,1678,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(14921,1678,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(14922,1678,'M','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(14923,1678,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(14924,1678,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(14925,1678,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(14926,1679,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(14927,1679,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(14928,1679,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(14929,1679,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(14930,1679,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14931,1679,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(14932,1679,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(14933,1680,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(14934,1680,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(14935,1680,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(14936,1680,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(14937,1680,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(14938,1680,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(14939,1680,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(14940,1680,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(14941,1680,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(14942,1680,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(14943,1680,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(14944,1680,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(14945,1680,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14946,1680,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(14947,1680,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(14948,1680,'M','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(14949,1680,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(14950,1680,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(14951,1680,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(14952,1680,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(14953,1680,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(14954,1681,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(14955,1681,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14956,1681,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(14957,1681,'M','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(14958,1681,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(14959,1681,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(14960,1681,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(14961,1681,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(14962,1682,'M','/trunk/include/ServiceModule.h',NULL,NULL,NULL,NULL),(14963,1682,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(14964,1682,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14965,1682,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(14966,1683,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(14967,1683,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(14968,1683,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(14969,1683,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(14970,1683,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(14971,1683,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(14972,1683,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(14973,1683,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14974,1683,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(14975,1683,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(14976,1683,'M','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(14977,1683,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(14978,1683,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(14979,1683,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(14980,1683,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(14981,1684,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(14982,1684,'M','/trunk/include/SubscribedTagDetail.h',NULL,NULL,NULL,NULL),(14983,1684,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(14984,1684,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(14985,1684,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14986,1684,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(14987,1684,'M','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(14988,1684,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(14989,1684,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(14990,1684,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(14991,1685,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(14992,1685,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(14993,1685,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(14994,1685,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(14995,1685,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(14996,1685,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(14997,1685,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(14998,1685,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(14999,1685,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(15000,1685,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15001,1685,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15002,1685,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(15003,1686,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(15004,1686,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15005,1686,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(15006,1686,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15007,1686,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(15008,1686,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(15009,1686,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(15010,1686,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(15011,1686,'M','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(15012,1687,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(15013,1687,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(15014,1687,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(15015,1687,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(15016,1687,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15017,1687,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(15018,1687,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(15019,1687,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(15020,1687,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15021,1687,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15022,1687,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(15023,1687,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(15024,1687,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(15025,1687,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(15026,1688,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(15027,1688,'M','/trunk/include/UAMethod.h',NULL,NULL,NULL,NULL),(15028,1688,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(15029,1688,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15030,1688,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(15031,1688,'M','/trunk/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(15032,1688,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15033,1688,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(15034,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.vcxproj',NULL,NULL,NULL,NULL),(15035,1689,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEvent.h',NULL,NULL,NULL,NULL),(15036,1689,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEventLogData.h',NULL,NULL,NULL,NULL),(15037,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakFrame.h',NULL,NULL,NULL,NULL),(15038,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakResponse.h',NULL,NULL,NULL,NULL),(15039,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15040,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15041,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/stdafx.h',NULL,NULL,NULL,NULL),(15042,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15043,1689,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15044,1689,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15045,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(15046,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakResponse.cpp',NULL,NULL,NULL,NULL),(15047,1689,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15048,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet',NULL,NULL,NULL,NULL),(15049,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/App.config',NULL,NULL,NULL,NULL),(15050,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/Program.cs',NULL,NULL,NULL,NULL),(15051,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties',NULL,NULL,NULL,NULL),(15052,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15053,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/Resources.Designer.cs',NULL,NULL,NULL,NULL),(15054,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/Resources.resx',NULL,NULL,NULL,NULL),(15055,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/Settings.Designer.cs',NULL,NULL,NULL,NULL),(15056,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/Settings.settings',NULL,NULL,NULL,NULL),(15057,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.Designer.cs',NULL,NULL,NULL,NULL),(15058,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15059,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.csproj',NULL,NULL,NULL,NULL),(15060,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.resx',NULL,NULL,NULL,NULL),(15061,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.sln',NULL,NULL,NULL,NULL),(15062,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/folder-open_16.gif',NULL,NULL,NULL,NULL),(15063,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary',NULL,NULL,NULL,NULL),(15064,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(15065,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(15066,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties',NULL,NULL,NULL,NULL),(15067,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15068,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(15069,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToNodeSetEventArgs.cs',NULL,NULL,NULL,NULL),(15070,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15071,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSetLibrary.csproj',NULL,NULL,NULL,NULL),(15072,1690,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(15073,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15074,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.vcxproj',NULL,NULL,NULL,NULL),(15075,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEvent.h',NULL,NULL,NULL,NULL),(15076,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEventLogData.h',NULL,NULL,NULL,NULL),(15077,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXPointInformation.h',NULL,NULL,NULL,NULL),(15078,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXPointStatusMap.h',NULL,NULL,NULL,NULL),(15079,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakBase.h',NULL,NULL,NULL,NULL),(15080,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakFrame.h',NULL,NULL,NULL,NULL),(15081,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(15082,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakResponse.h',NULL,NULL,NULL,NULL),(15083,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15084,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXStateInformation.h',NULL,NULL,NULL,NULL),(15085,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15086,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/stdafx.h',NULL,NULL,NULL,NULL),(15087,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/resource.h',NULL,NULL,NULL,NULL),(15088,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15089,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15090,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15091,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15092,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15093,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15094,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(15095,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15096,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakResponse.cpp',NULL,NULL,NULL,NULL),(15097,1691,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15098,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15099,1691,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15100,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(15101,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15102,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(15103,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/WrappedRoot.h',NULL,NULL,NULL,NULL),(15104,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csubscriptionconfiguration.h',NULL,NULL,NULL,NULL),(15105,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15106,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15107,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15108,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(15109,1692,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(15110,1693,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(15111,1693,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(15112,1694,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15113,1695,'D','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(15114,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.rc',NULL,NULL,NULL,NULL),(15115,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(15116,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj.filters',NULL,NULL,NULL,NULL),(15117,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Field.h',NULL,NULL,NULL,NULL),(15118,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(15119,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(15120,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAReference.h',NULL,NULL,NULL,NULL),(15121,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(15122,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/stdafx.h',NULL,NULL,NULL,NULL),(15123,1695,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/resource.h',NULL,NULL,NULL,NULL),(15124,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/DataValue.cpp',NULL,NULL,NULL,NULL),(15125,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(15126,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(15127,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Field.cpp',NULL,NULL,NULL,NULL),(15128,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(15129,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(15130,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/NumericRange.cpp',NULL,NULL,NULL,NULL),(15131,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(15132,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(15133,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(15134,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(15135,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(15136,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15137,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(15138,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAReference.cpp',NULL,NULL,NULL,NULL),(15139,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15140,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(15141,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(15142,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(15143,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(15144,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(15145,1695,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(15146,1696,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15147,1696,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.csproj',NULL,NULL,NULL,NULL),(15148,1696,'A','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.ico',NULL,NULL,NULL,NULL),(15149,1696,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(15150,1696,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(15151,1696,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15152,1696,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(15153,1696,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15154,1696,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSetLibrary.csproj',NULL,NULL,NULL,NULL),(15155,1696,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(15156,1696,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(15157,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/VPIDirectAccess.rc',NULL,NULL,NULL,NULL),(15158,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/VPIDirectAccess.vcxproj',NULL,NULL,NULL,NULL),(15159,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/DirectAccessType.h',NULL,NULL,NULL,NULL),(15160,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/SourceObject.h',NULL,NULL,NULL,NULL),(15161,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/stdafx.h',NULL,NULL,NULL,NULL),(15162,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/resource.h',NULL,NULL,NULL,NULL),(15163,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15164,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15165,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccess.cpp',NULL,NULL,NULL,NULL),(15166,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/dllmain.cpp',NULL,NULL,NULL,NULL),(15167,1697,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/stdafx.cpp',NULL,NULL,NULL,NULL),(15168,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15169,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.vcxproj',NULL,NULL,NULL,NULL),(15170,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEvent.h',NULL,NULL,NULL,NULL),(15171,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEventLogData.h',NULL,NULL,NULL,NULL),(15172,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXPointInformation.h',NULL,NULL,NULL,NULL),(15173,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXPointStatusMap.h',NULL,NULL,NULL,NULL),(15174,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakBase.h',NULL,NULL,NULL,NULL),(15175,1698,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakPointStatusUpdate.h',NULL,NULL,NULL,NULL),(15176,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(15177,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakResponse.h',NULL,NULL,NULL,NULL),(15178,1698,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTextString.h',NULL,NULL,NULL,NULL),(15179,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15180,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXStateInformation.h',NULL,NULL,NULL,NULL),(15181,1698,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXZoneStatusMap.h',NULL,NULL,NULL,NULL),(15182,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/SourceObject.h',NULL,NULL,NULL,NULL),(15183,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15184,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15185,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/stdafx.h',NULL,NULL,NULL,NULL),(15186,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15187,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15188,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15189,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15190,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15191,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15192,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(15193,1698,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakPointStatusUpdate.cpp',NULL,NULL,NULL,NULL),(15194,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15195,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakResponse.cpp',NULL,NULL,NULL,NULL),(15196,1698,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakTextString.cpp',NULL,NULL,NULL,NULL),(15197,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15198,1698,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXZoneStatusMap.cpp',NULL,NULL,NULL,NULL),(15199,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15200,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15201,1698,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15202,1699,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15203,1699,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15204,1699,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15205,1699,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakTextString.cpp',NULL,NULL,NULL,NULL),(15206,1699,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15207,1700,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(15208,1700,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(15209,1700,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15210,1700,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15211,1700,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15212,1700,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(15213,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess',NULL,NULL,NULL,NULL),(15214,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess',NULL,NULL,NULL,NULL),(15215,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess.sln',NULL,NULL,NULL,NULL),(15216,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess.cpp',NULL,NULL,NULL,NULL),(15217,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess.h',NULL,NULL,NULL,NULL),(15218,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess.rc',NULL,NULL,NULL,NULL),(15219,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess.vcxproj',NULL,NULL,NULL,NULL),(15220,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess.vcxproj.filters',NULL,NULL,NULL,NULL),(15221,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccessDlg.cpp',NULL,NULL,NULL,NULL),(15222,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccessDlg.h',NULL,NULL,NULL,NULL),(15223,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/ReadMe.txt',NULL,NULL,NULL,NULL),(15224,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/res',NULL,NULL,NULL,NULL),(15225,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/res/OpenOpcUa_DirectAccess.ico',NULL,NULL,NULL,NULL),(15226,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/res/OpenOpcUa_DirectAccess.rc2',NULL,NULL,NULL,NULL),(15227,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/resource.h',NULL,NULL,NULL,NULL),(15228,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/stdafx.cpp',NULL,NULL,NULL,NULL),(15229,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/stdafx.h',NULL,NULL,NULL,NULL),(15230,1701,'A','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/targetver.h',NULL,NULL,NULL,NULL),(15231,1702,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(15232,1702,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt_VS2013.sln',NULL,NULL,NULL,NULL),(15233,1702,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15234,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakBase.h',NULL,NULL,NULL,NULL),(15235,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(15236,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXStateInformation.h',NULL,NULL,NULL,NULL),(15237,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/SourceObject.h',NULL,NULL,NULL,NULL),(15238,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15239,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15240,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15241,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15242,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15243,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(15244,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15245,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15246,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXZoneStatusMap.cpp',NULL,NULL,NULL,NULL),(15247,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15248,1703,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15249,1704,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(15250,1704,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(15251,1704,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15252,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15253,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(15254,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXStateInformation.h',NULL,NULL,NULL,NULL),(15255,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/SourceObject.h',NULL,NULL,NULL,NULL),(15256,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15257,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/stdafx.h',NULL,NULL,NULL,NULL),(15258,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15259,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15260,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15261,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15262,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15263,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15264,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15265,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15266,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15267,1705,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.def',NULL,NULL,NULL,NULL),(15268,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(15269,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(15270,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15271,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/stdafx.h',NULL,NULL,NULL,NULL),(15272,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15273,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15274,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15275,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(15276,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntd.def',NULL,NULL,NULL,NULL),(15277,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(15278,1706,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(15279,1707,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(15280,1707,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15281,1707,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15282,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15283,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakBase.h',NULL,NULL,NULL,NULL),(15284,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15285,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXStateInformation.h',NULL,NULL,NULL,NULL),(15286,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15287,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15288,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15289,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15290,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15291,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15292,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15293,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15294,1708,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15295,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15296,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.vcxproj',NULL,NULL,NULL,NULL),(15297,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(15298,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTextString.h',NULL,NULL,NULL,NULL),(15299,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15300,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15301,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15302,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15303,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15304,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15305,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15306,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15307,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(15308,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakPointStatusUpdate.cpp',NULL,NULL,NULL,NULL),(15309,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15310,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakTextString.cpp',NULL,NULL,NULL,NULL),(15311,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15312,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15313,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15314,1709,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15315,1710,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(15316,1710,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15317,1710,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15318,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15319,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.vcxproj',NULL,NULL,NULL,NULL),(15320,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEventLogData.h',NULL,NULL,NULL,NULL),(15321,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakBase.h',NULL,NULL,NULL,NULL),(15322,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(15323,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakResponse.h',NULL,NULL,NULL,NULL),(15324,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15325,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXZoneStatusMap.h',NULL,NULL,NULL,NULL),(15326,1711,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(15327,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/SourceObject.h',NULL,NULL,NULL,NULL),(15328,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15329,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15330,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15331,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15332,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15333,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15334,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15335,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15336,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(15337,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakPointStatusUpdate.cpp',NULL,NULL,NULL,NULL),(15338,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15339,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakResponse.cpp',NULL,NULL,NULL,NULL),(15340,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakTextString.cpp',NULL,NULL,NULL,NULL),(15341,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15342,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXZoneStatusMap.cpp',NULL,NULL,NULL,NULL),(15343,1711,'A','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15344,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15345,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15346,1711,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15347,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(15348,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15349,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(15350,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(15351,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csubscriptionconfiguration.h',NULL,NULL,NULL,NULL),(15352,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(15353,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15354,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15355,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15356,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(15357,1712,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(15358,1713,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(15359,1714,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15360,1714,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15361,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15362,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(15363,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/SourceObject.h',NULL,NULL,NULL,NULL),(15364,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15365,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15366,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15367,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15368,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15369,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15370,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15371,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15372,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15373,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15374,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.def',NULL,NULL,NULL,NULL),(15375,1715,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTycod.def',NULL,NULL,NULL,NULL),(15376,1716,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(15377,1716,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(15378,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15379,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakResponse.h',NULL,NULL,NULL,NULL),(15380,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15381,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(15382,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15383,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15384,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/stdafx.h',NULL,NULL,NULL,NULL),(15385,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15386,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15387,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15388,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15389,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakResponse.cpp',NULL,NULL,NULL,NULL),(15390,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15391,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15392,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15393,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15394,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15395,1717,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/stdafx.cpp',NULL,NULL,NULL,NULL),(15396,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx',NULL,NULL,NULL,NULL),(15397,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/CMakeLists.txt',NULL,NULL,NULL,NULL),(15398,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.rc',NULL,NULL,NULL,NULL),(15399,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.vcxproj',NULL,NULL,NULL,NULL),(15400,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx_VS2013.sln',NULL,NULL,NULL,NULL),(15401,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/include',NULL,NULL,NULL,NULL),(15402,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(15403,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VPINullEx.h',NULL,NULL,NULL,NULL),(15404,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15405,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/stdafx.h',NULL,NULL,NULL,NULL),(15406,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/targetver.h',NULL,NULL,NULL,NULL),(15407,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/resource.h',NULL,NULL,NULL,NULL),(15408,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/source',NULL,NULL,NULL,NULL),(15409,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15410,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15411,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(15412,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.def',NULL,NULL,NULL,NULL),(15413,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullExd.def',NULL,NULL,NULL,NULL),(15414,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15415,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/dllmain.cpp',NULL,NULL,NULL,NULL),(15416,1718,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/stdafx.cpp',NULL,NULL,NULL,NULL),(15417,1719,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.rc',NULL,NULL,NULL,NULL),(15418,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(15419,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(15420,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(15421,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/stdafx.h',NULL,NULL,NULL,NULL),(15422,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15423,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15424,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15425,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(15426,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(15427,1720,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/stdafx.cpp',NULL,NULL,NULL,NULL),(15428,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15429,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEventLogData.h',NULL,NULL,NULL,NULL),(15430,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(15431,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/SourceObject.h',NULL,NULL,NULL,NULL),(15432,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15433,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15434,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15435,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15436,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15437,1721,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15438,1722,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.rc',NULL,NULL,NULL,NULL),(15439,1722,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.cpp',NULL,NULL,NULL,NULL),(15440,1722,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.h',NULL,NULL,NULL,NULL),(15441,1722,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/resource.h',NULL,NULL,NULL,NULL),(15442,1722,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(15443,1722,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(15444,1722,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(15445,1722,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(15446,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15447,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.vcxproj',NULL,NULL,NULL,NULL),(15448,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEvent.h',NULL,NULL,NULL,NULL),(15449,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEventLogData.h',NULL,NULL,NULL,NULL),(15450,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXPointInformation.h',NULL,NULL,NULL,NULL),(15451,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXPointStatusMap.h',NULL,NULL,NULL,NULL),(15452,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakPointStatusUpdate.h',NULL,NULL,NULL,NULL),(15453,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakResponse.h',NULL,NULL,NULL,NULL),(15454,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXSpeakTextString.h',NULL,NULL,NULL,NULL),(15455,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXStateInformation.h',NULL,NULL,NULL,NULL),(15456,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXZoneStatusMap.h',NULL,NULL,NULL,NULL),(15457,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15458,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15459,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15460,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15461,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15462,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15463,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15464,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(15465,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakPointStatusUpdate.cpp',NULL,NULL,NULL,NULL),(15466,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15467,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakResponse.cpp',NULL,NULL,NULL,NULL),(15468,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakTextString.cpp',NULL,NULL,NULL,NULL),(15469,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15470,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXZoneStatusMap.cpp',NULL,NULL,NULL,NULL),(15471,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15472,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15473,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15474,1723,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15475,1724,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccess.cpp',NULL,NULL,NULL,NULL),(15476,1725,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15477,1725,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15478,1725,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15479,1725,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakTextString.cpp',NULL,NULL,NULL,NULL),(15480,1725,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15481,1725,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15482,1726,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15483,1726,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15484,1727,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15485,1727,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15486,1727,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15487,1727,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15488,1728,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15489,1728,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15490,1728,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15491,1728,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15492,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15493,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.Designer.cs',NULL,NULL,NULL,NULL),(15494,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15495,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.csproj',NULL,NULL,NULL,NULL),(15496,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.resx',NULL,NULL,NULL,NULL),(15497,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(15498,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(15499,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15500,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(15501,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToNodeSetEventArgs.cs',NULL,NULL,NULL,NULL),(15502,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15503,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSetLibrary.csproj',NULL,NULL,NULL,NULL),(15504,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(15505,1729,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(15506,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15507,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.Designer.cs',NULL,NULL,NULL,NULL),(15508,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15509,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.resx',NULL,NULL,NULL,NULL),(15510,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(15511,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(15512,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15513,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(15514,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15515,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(15516,1730,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(15517,1731,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15518,1731,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(15519,1731,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15520,1731,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15521,1731,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15522,1731,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15523,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod',NULL,NULL,NULL,NULL),(15524,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/VPIMethod.rc',NULL,NULL,NULL,NULL),(15525,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/VpiMethod.sln',NULL,NULL,NULL,NULL),(15526,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/VpiMethod.vcxproj',NULL,NULL,NULL,NULL),(15527,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/include',NULL,NULL,NULL,NULL),(15528,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/include/SourceObject.h',NULL,NULL,NULL,NULL),(15529,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/include/VPIMethod.h',NULL,NULL,NULL,NULL),(15530,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15531,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/include/stdafx.h',NULL,NULL,NULL,NULL),(15532,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/include/targetver.h',NULL,NULL,NULL,NULL),(15533,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/resource.h',NULL,NULL,NULL,NULL),(15534,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/source',NULL,NULL,NULL,NULL),(15535,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15536,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15537,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/VPIMethod.cpp',NULL,NULL,NULL,NULL),(15538,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/VPIMethod.def',NULL,NULL,NULL,NULL),(15539,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/VPIMethodd.def',NULL,NULL,NULL,NULL),(15540,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15541,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/dllmain.cpp',NULL,NULL,NULL,NULL),(15542,1732,'A','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/stdafx.cpp',NULL,NULL,NULL,NULL),(15543,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15544,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MXEvent.h',NULL,NULL,NULL,NULL),(15545,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(15546,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15547,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15548,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15549,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15550,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15551,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15552,1733,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15553,1734,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15554,1734,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.Designer.cs',NULL,NULL,NULL,NULL),(15555,1734,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(15556,1734,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15557,1734,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(15558,1735,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(15559,1736,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15560,1736,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15561,1736,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15562,1736,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15563,1736,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15564,1737,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(15565,1737,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(15566,1737,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15567,1737,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15568,1737,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15569,1738,'M','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15570,1738,'M','/OpenOpcUa_VS2013/Vpis/VPIUdpEx/source/VPIUdpEx.cpp',NULL,NULL,NULL,NULL),(15571,1739,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.rc',NULL,NULL,NULL,NULL),(15572,1739,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.vcxproj',NULL,NULL,NULL,NULL),(15573,1739,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx_VS2013.sln',NULL,NULL,NULL,NULL),(15574,1739,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15575,1739,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.def',NULL,NULL,NULL,NULL),(15576,1739,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullExd.def',NULL,NULL,NULL,NULL),(15577,1739,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15578,1740,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(15579,1740,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt_VS2013.sln',NULL,NULL,NULL,NULL),(15580,1740,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15581,1740,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15582,1740,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(15583,1740,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntd.def',NULL,NULL,NULL,NULL),(15584,1741,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(15585,1741,'M','/OpenOpcUa_VS2013/include/UpdateHeaderFiles.bat',NULL,NULL,NULL,NULL),(15586,1742,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(15587,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15588,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(15589,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15590,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15591,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15592,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15593,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15594,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15595,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakPointStatusUpdate.cpp',NULL,NULL,NULL,NULL),(15596,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakTextString.cpp',NULL,NULL,NULL,NULL),(15597,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15598,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15599,1743,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15600,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.rc',NULL,NULL,NULL,NULL),(15601,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(15602,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OpcDaItem.h',NULL,NULL,NULL,NULL),(15603,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/SourceObject.h',NULL,NULL,NULL,NULL),(15604,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VPIComDa.h',NULL,NULL,NULL,NULL),(15605,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15606,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15607,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(15608,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaItem.cpp',NULL,NULL,NULL,NULL),(15609,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15610,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(15611,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.def',NULL,NULL,NULL,NULL),(15612,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDad.def',NULL,NULL,NULL,NULL),(15613,1744,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15614,1745,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(15615,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx',NULL,NULL,NULL,NULL),(15616,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(15617,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.sln',NULL,NULL,NULL,NULL),(15618,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.vcxproj',NULL,NULL,NULL,NULL),(15619,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include',NULL,NULL,NULL,NULL),(15620,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgBase.h',NULL,NULL,NULL,NULL),(15621,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgCtrlGroup.h',NULL,NULL,NULL,NULL),(15622,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgEvent.h',NULL,NULL,NULL,NULL),(15623,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgNode.h',NULL,NULL,NULL,NULL),(15624,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgPoint.h',NULL,NULL,NULL,NULL),(15625,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgSector.h',NULL,NULL,NULL,NULL),(15626,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgZone.h',NULL,NULL,NULL,NULL),(15627,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXEvent.h',NULL,NULL,NULL,NULL),(15628,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXEventLogData.h',NULL,NULL,NULL,NULL),(15629,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXPointInformation.h',NULL,NULL,NULL,NULL),(15630,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXPointStatusMap.h',NULL,NULL,NULL,NULL),(15631,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXProject.h',NULL,NULL,NULL,NULL),(15632,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakBase.h',NULL,NULL,NULL,NULL),(15633,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakFrame.h',NULL,NULL,NULL,NULL),(15634,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakPointStatusUpdate.h',NULL,NULL,NULL,NULL),(15635,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(15636,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakResponse.h',NULL,NULL,NULL,NULL),(15637,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakTextString.h',NULL,NULL,NULL,NULL),(15638,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15639,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXStateInformation.h',NULL,NULL,NULL,NULL),(15640,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXZoneStatusMap.h',NULL,NULL,NULL,NULL),(15641,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(15642,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(15643,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15644,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiTycoEx.h',NULL,NULL,NULL,NULL),(15645,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/stdafx.h',NULL,NULL,NULL,NULL),(15646,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/targetver.h',NULL,NULL,NULL,NULL),(15647,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/resource.h',NULL,NULL,NULL,NULL),(15648,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source',NULL,NULL,NULL,NULL),(15649,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15650,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgBase.cpp',NULL,NULL,NULL,NULL),(15651,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgCtrlGroup.cpp',NULL,NULL,NULL,NULL),(15652,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgEvent.cpp',NULL,NULL,NULL,NULL),(15653,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgNode.cpp',NULL,NULL,NULL,NULL),(15654,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgPoint.cpp',NULL,NULL,NULL,NULL),(15655,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgSector.cpp',NULL,NULL,NULL,NULL),(15656,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgZone.cpp',NULL,NULL,NULL,NULL),(15657,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15658,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15659,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15660,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointStatusMap.cpp',NULL,NULL,NULL,NULL),(15661,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(15662,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15663,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(15664,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakPointStatusUpdate.cpp',NULL,NULL,NULL,NULL),(15665,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15666,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakResponse.cpp',NULL,NULL,NULL,NULL),(15667,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakTextString.cpp',NULL,NULL,NULL,NULL),(15668,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(15669,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXZoneStatusMap.cpp',NULL,NULL,NULL,NULL),(15670,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15671,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15672,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15673,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(15674,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.def',NULL,NULL,NULL,NULL),(15675,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoExd.def',NULL,NULL,NULL,NULL),(15676,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/XmlTxgParsing.cpp',NULL,NULL,NULL,NULL),(15677,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/dllmain.cpp',NULL,NULL,NULL,NULL),(15678,1746,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/stdafx.cpp',NULL,NULL,NULL,NULL),(15679,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.vcxproj',NULL,NULL,NULL,NULL),(15680,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgPoint.h',NULL,NULL,NULL,NULL),(15681,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgSector.h',NULL,NULL,NULL,NULL),(15682,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgZone.h',NULL,NULL,NULL,NULL),(15683,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXProject.h',NULL,NULL,NULL,NULL),(15684,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(15685,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(15686,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiTycoEx.h',NULL,NULL,NULL,NULL),(15687,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/stdafx.h',NULL,NULL,NULL,NULL),(15688,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15689,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgCtrlGroup.cpp',NULL,NULL,NULL,NULL),(15690,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgEvent.cpp',NULL,NULL,NULL,NULL),(15691,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgNode.cpp',NULL,NULL,NULL,NULL),(15692,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgPoint.cpp',NULL,NULL,NULL,NULL),(15693,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgSector.cpp',NULL,NULL,NULL,NULL),(15694,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgZone.cpp',NULL,NULL,NULL,NULL),(15695,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(15696,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15697,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15698,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(15699,1747,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/stdafx.cpp',NULL,NULL,NULL,NULL),(15700,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(15701,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/BrowseElt.h',NULL,NULL,NULL,NULL),(15702,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15703,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(15704,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/WrappedRoot.h',NULL,NULL,NULL,NULL),(15705,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(15706,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15707,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15708,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15709,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(15710,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntd.def',NULL,NULL,NULL,NULL),(15711,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(15712,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(15713,1748,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(15714,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(15715,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgPoint.h',NULL,NULL,NULL,NULL),(15716,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15717,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiTycoEx.h',NULL,NULL,NULL,NULL),(15718,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15719,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgBase.cpp',NULL,NULL,NULL,NULL),(15720,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgPoint.cpp',NULL,NULL,NULL,NULL),(15721,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15722,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15723,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(15724,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15725,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15726,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(15727,1749,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/XmlTxgParsing.cpp',NULL,NULL,NULL,NULL),(15728,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(15729,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(15730,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(15731,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(15732,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(15733,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15734,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15735,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(15736,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15737,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15738,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(15739,1750,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(15740,1751,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(15741,1751,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(15742,1752,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.cpp',NULL,NULL,NULL,NULL),(15743,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.rc',NULL,NULL,NULL,NULL),(15744,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(15745,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(15746,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(15747,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/DataValue.cpp',NULL,NULL,NULL,NULL),(15748,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(15749,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(15750,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15751,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(15752,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15753,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(15754,1752,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(15755,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15756,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(15757,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(15758,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(15759,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csubscriptionconfiguration.h',NULL,NULL,NULL,NULL),(15760,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15761,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15762,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15763,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(15764,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(15765,1753,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(15766,1754,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15767,1754,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(15768,1754,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15769,1754,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15770,1754,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15771,1755,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15772,1755,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15773,1755,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15774,1755,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(15775,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.vcxproj',NULL,NULL,NULL,NULL),(15776,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgNode.h',NULL,NULL,NULL,NULL),(15777,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgPoint.h',NULL,NULL,NULL,NULL),(15778,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgZone.h',NULL,NULL,NULL,NULL),(15779,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXPointInformation.h',NULL,NULL,NULL,NULL),(15780,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXProject.h',NULL,NULL,NULL,NULL),(15781,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakTypeDefinition.h',NULL,NULL,NULL,NULL),(15782,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiTycoEx.h',NULL,NULL,NULL,NULL),(15783,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15784,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgNode.cpp',NULL,NULL,NULL,NULL),(15785,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgPoint.cpp',NULL,NULL,NULL,NULL),(15786,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgZone.cpp',NULL,NULL,NULL,NULL),(15787,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(15788,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(15789,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15790,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakFrame.cpp',NULL,NULL,NULL,NULL),(15791,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(15792,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakResponse.cpp',NULL,NULL,NULL,NULL),(15793,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15794,1756,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(15795,1757,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(15796,1757,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj.filters',NULL,NULL,NULL,NULL),(15797,1757,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(15798,1757,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(15799,1757,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(15800,1757,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15801,1757,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(15802,1757,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(15803,1758,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15804,1758,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(15805,1758,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(15806,1758,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15807,1758,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15808,1758,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15809,1758,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(15810,1759,'A','/OpenOpcUa_VS2013/Tools',NULL,NULL,NULL,NULL),(15811,1759,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaConfigManager',NULL,NULL,NULL,NULL),(15812,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(15813,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj.filters',NULL,NULL,NULL,NULL),(15814,1760,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OPCServerInfo.h',NULL,NULL,NULL,NULL),(15815,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/SourceObject.h',NULL,NULL,NULL,NULL),(15816,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VPIComDa.h',NULL,NULL,NULL,NULL),(15817,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15818,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/stdafx.h',NULL,NULL,NULL,NULL),(15819,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15820,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(15821,1760,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCServerInfo.cpp',NULL,NULL,NULL,NULL),(15822,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCShutdown.cpp',NULL,NULL,NULL,NULL),(15823,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaConnection.cpp',NULL,NULL,NULL,NULL),(15824,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaGroup.cpp',NULL,NULL,NULL,NULL),(15825,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaItem.cpp',NULL,NULL,NULL,NULL),(15826,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(15827,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(15828,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.def',NULL,NULL,NULL,NULL),(15829,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDad.def',NULL,NULL,NULL,NULL),(15830,1760,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15831,1761,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(15832,1761,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(15833,1761,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15834,1761,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(15835,1762,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(15836,1762,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(15837,1762,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(15838,1763,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(15839,1763,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.vcxproj',NULL,NULL,NULL,NULL),(15840,1763,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiTyco.h',NULL,NULL,NULL,NULL),(15841,1763,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(15842,1763,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(15843,1763,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(15844,1763,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(15845,1763,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(15846,1763,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15847,1764,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(15848,1765,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(15849,1765,'M','/trunk/include/UADataType.h',NULL,NULL,NULL,NULL),(15850,1765,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(15851,1765,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(15852,1765,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(15853,1765,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15854,1765,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15855,1765,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(15856,1765,'M','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(15857,1765,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15858,1765,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(15859,1766,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(15860,1766,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(15861,1766,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(15862,1766,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(15863,1766,'M','/trunk/include/VpiTag.h',NULL,NULL,NULL,NULL),(15864,1766,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(15865,1766,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(15866,1766,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(15867,1766,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(15868,1766,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15869,1766,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(15870,1766,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15871,1766,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(15872,1766,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(15873,1766,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(15874,1766,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(15875,1766,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(15876,1766,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(15877,1766,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15878,1766,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(15879,1766,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(15880,1766,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15881,1766,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(15882,1766,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(15883,1766,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(15884,1767,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15885,1767,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(15886,1768,'M','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(15887,1769,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(15888,1769,'M','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(15889,1769,'M','/trunk/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(15890,1769,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(15891,1769,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(15892,1769,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(15893,1769,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(15894,1769,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(15895,1769,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15896,1769,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15897,1769,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(15898,1769,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(15899,1769,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(15900,1769,'M','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(15901,1769,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15902,1769,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15903,1769,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(15904,1769,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(15905,1770,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(15906,1770,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(15907,1770,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15908,1770,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15909,1770,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15910,1771,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(15911,1771,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(15912,1771,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15913,1771,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15914,1771,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(15915,1771,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15916,1771,'M','/trunk/source/UAObject.cpp',NULL,NULL,NULL,NULL),(15917,1771,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15918,1771,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(15919,1772,'A','/trunk/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(15920,1772,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(15921,1772,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(15922,1772,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(15923,1772,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(15924,1772,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(15925,1772,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(15926,1772,'M','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(15927,1772,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15928,1772,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(15929,1772,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15930,1772,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(15931,1772,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(15932,1772,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(15933,1772,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(15934,1772,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(15935,1772,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15936,1772,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15937,1772,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(15938,1772,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(15939,1773,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(15940,1773,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15941,1773,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15942,1773,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15943,1774,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(15944,1774,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(15945,1774,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15946,1774,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15947,1774,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(15948,1774,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(15949,1774,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15950,1774,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(15951,1775,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(15952,1775,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(15953,1775,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(15954,1775,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(15955,1775,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(15956,1776,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(15957,1776,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(15958,1776,'M','/trunk/include/shared/opcua.h',NULL,NULL,NULL,NULL),(15959,1776,'M','/trunk/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(15960,1776,'M','/trunk/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(15961,1776,'M','/trunk/include/shared/opcua_serverapi.h',NULL,NULL,NULL,NULL),(15962,1776,'M','/trunk/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(15963,1776,'M','/trunk/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(15964,1776,'M','/trunk/source/opcua_asynccallstate.c',NULL,NULL,NULL,NULL),(15965,1776,'M','/trunk/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(15966,1776,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(15967,1776,'M','/trunk/source/opcua_channel.c',NULL,NULL,NULL,NULL),(15968,1776,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(15969,1776,'M','/trunk/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(15970,1776,'M','/trunk/source/opcua_https_listener.c',NULL,NULL,NULL,NULL),(15971,1776,'M','/trunk/source/opcua_https_listener_connectionmanager.c',NULL,NULL,NULL,NULL),(15972,1776,'M','/trunk/source/opcua_httpsstream.c',NULL,NULL,NULL,NULL),(15973,1776,'M','/trunk/source/opcua_memorystream.c',NULL,NULL,NULL,NULL),(15974,1776,'M','/trunk/source/opcua_messagecontext.c',NULL,NULL,NULL,NULL),(15975,1776,'M','/trunk/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(15976,1776,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(15977,1776,'M','/trunk/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(15978,1776,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(15979,1776,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(15980,1776,'M','/trunk/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(15981,1776,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(15982,1776,'M','/trunk/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(15983,1776,'M','/trunk/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(15984,1776,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(15985,1776,'M','/trunk/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(15986,1776,'M','/trunk/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(15987,1776,'M','/trunk/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(15988,1776,'M','/trunk/source/opcua_serverapi.c',NULL,NULL,NULL,NULL),(15989,1776,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(15990,1776,'M','/trunk/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(15991,1776,'M','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(15992,1776,'M','/trunk/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(15993,1776,'M','/trunk/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(15994,1776,'M','/trunk/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(15995,1776,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(15996,1776,'M','/trunk/source/opcua_threadpool.c',NULL,NULL,NULL,NULL),(15997,1776,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(15998,1776,'M','/trunk/source/opcua_types.c',NULL,NULL,NULL,NULL),(15999,1777,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(16000,1777,'M','/trunk/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(16001,1777,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(16002,1777,'M','/trunk/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(16003,1777,'M','/trunk/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(16004,1777,'M','/trunk/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(16005,1777,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(16006,1778,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(16007,1779,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(16008,1779,'M','/trunk/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(16009,1779,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(16010,1780,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(16011,1780,'M','/trunk/source/opcua_p_memory.c',NULL,NULL,NULL,NULL),(16012,1780,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(16013,1781,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(16014,1781,'M','/trunk/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(16015,1781,'M','/trunk/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(16016,1781,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(16017,1781,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(16018,1781,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(16019,1782,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(16020,1782,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(16021,1782,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(16022,1783,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(16023,1784,'M','/trunk/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(16024,1784,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(16025,1784,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(16026,1784,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(16027,1785,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(16028,1785,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(16029,1785,'M','/trunk/include/shared/opcua_p_socket_internal.h',NULL,NULL,NULL,NULL),(16030,1785,'M','/trunk/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(16031,1785,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(16032,1785,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(16033,1785,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(16034,1786,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(16035,1787,'M','/trunk/include/shared/opcua_encodeableobject.h',NULL,NULL,NULL,NULL),(16036,1787,'M','/trunk/include/shared/opcua_proxystub.h',NULL,NULL,NULL,NULL),(16037,1787,'M','/trunk/source/opcua_base64.c',NULL,NULL,NULL,NULL),(16038,1787,'M','/trunk/source/opcua_binaryencoder.c',NULL,NULL,NULL,NULL),(16039,1787,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(16040,1787,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(16041,1787,'M','/trunk/source/opcua_proxystub.c',NULL,NULL,NULL,NULL),(16042,1787,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(16043,1788,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(16044,1789,'M','/trunk/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(16045,1789,'M','/trunk/include/shared/opcua_p_compilerinfo.h',NULL,NULL,NULL,NULL),(16046,1789,'M','/trunk/include/shared/opcua_p_internal.h',NULL,NULL,NULL,NULL),(16047,1789,'M','/trunk/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(16048,1789,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(16049,1789,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(16050,1790,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(16051,1790,'M','/trunk/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(16052,1790,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(16053,1790,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(16054,1791,'M','/trunk/include/shared/opcua_p_thread.h',NULL,NULL,NULL,NULL),(16055,1791,'M','/trunk/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(16056,1791,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(16057,1791,'M','/trunk/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(16058,1791,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(16059,1792,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(16060,1792,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(16061,1792,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(16062,1792,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(16063,1792,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(16064,1792,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(16065,1792,'A','/trunk/include/VpiDispatchedTag.h',NULL,NULL,NULL,NULL),(16066,1792,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16067,1792,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(16068,1792,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(16069,1792,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(16070,1792,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16071,1792,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(16072,1792,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(16073,1792,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16074,1792,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16075,1792,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(16076,1792,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16077,1792,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16078,1792,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(16079,1792,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16080,1792,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16081,1792,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16082,1792,'M','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(16083,1792,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16084,1792,'A','/trunk/source/VpiDispatchedTag.cpp',NULL,NULL,NULL,NULL),(16085,1792,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(16086,1793,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(16087,1793,'M','/trunk/source/LuaVirtualMachine.cpp',NULL,NULL,NULL,NULL),(16088,1793,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16089,1793,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16090,1793,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(16091,1793,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16092,1793,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(16093,1793,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16094,1793,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(16095,1793,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16096,1793,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16097,1794,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16098,1795,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16099,1795,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16100,1795,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(16101,1795,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16102,1795,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16103,1795,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16104,1796,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(16105,1796,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(16106,1796,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(16107,1796,'A','/trunk/icon1.ico',NULL,NULL,NULL,NULL),(16108,1796,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(16109,1796,'M','/trunk/resource.h',NULL,NULL,NULL,NULL),(16110,1796,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(16111,1796,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16112,1796,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16113,1796,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16114,1796,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16115,1796,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16116,1796,'M','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(16117,1797,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(16118,1798,'M','/trunk/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(16119,1798,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16120,1798,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(16121,1798,'M','/trunk/include/VpiDispatchedTag.h',NULL,NULL,NULL,NULL),(16122,1798,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(16123,1798,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(16124,1798,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(16125,1798,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16126,1798,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16127,1798,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16128,1798,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(16129,1798,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16130,1798,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16131,1798,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16132,1798,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16133,1798,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16134,1798,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16135,1798,'M','/trunk/source/VpiDispatchedTag.cpp',NULL,NULL,NULL,NULL),(16136,1798,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(16137,1799,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(16138,1799,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(16139,1799,'M','/trunk/include/VpiTag.h',NULL,NULL,NULL,NULL),(16140,1799,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(16141,1799,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16142,1799,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16143,1799,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16144,1799,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16145,1799,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16146,1799,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(16147,1799,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(16148,1800,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(16149,1800,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(16150,1800,'M','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(16151,1800,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(16152,1800,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16153,1800,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(16154,1800,'M','/trunk/include/UAVariableType.h',NULL,NULL,NULL,NULL),(16155,1800,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16156,1800,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(16157,1800,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(16158,1800,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16159,1800,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(16160,1800,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(16161,1800,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16162,1800,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(16163,1800,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16164,1800,'M','/trunk/source/SubscribedTagDetail.cpp',NULL,NULL,NULL,NULL),(16165,1800,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16166,1800,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(16167,1800,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(16168,1800,'M','/trunk/source/UADataType.cpp',NULL,NULL,NULL,NULL),(16169,1800,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16170,1800,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(16171,1800,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16172,1800,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16173,1801,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(16174,1801,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(16175,1801,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(16176,1801,'D','/trunk/ServerShared/xmlsaxparsertlk.h',NULL,NULL,NULL,NULL),(16177,1801,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(16178,1801,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16179,1801,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(16180,1801,'M','/trunk/include/VpiDispatchedTag.h',NULL,NULL,NULL,NULL),(16181,1801,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(16182,1801,'M','/trunk/include/VpiTag.h',NULL,NULL,NULL,NULL),(16183,1801,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(16184,1801,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(16185,1801,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(16186,1801,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(16187,1801,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(16188,1801,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16189,1801,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(16190,1801,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16191,1801,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16192,1801,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16193,1801,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16194,1801,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(16195,1801,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16196,1801,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16197,1801,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16198,1801,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16199,1801,'M','/trunk/source/VpiDispatchedTag.cpp',NULL,NULL,NULL,NULL),(16200,1801,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(16201,1801,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(16202,1802,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16203,1802,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(16204,1802,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(16205,1802,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16206,1802,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16207,1802,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16208,1802,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16209,1802,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16210,1802,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16211,1802,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16212,1802,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(16213,1803,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16214,1803,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(16215,1804,'M','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(16216,1804,'M','/trunk/include/SimulatedNode.h',NULL,NULL,NULL,NULL),(16217,1804,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16218,1804,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(16219,1804,'M','/trunk/source/SimulatedNode.cpp',NULL,NULL,NULL,NULL),(16220,1804,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(16221,1805,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(16222,1805,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16223,1805,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16224,1805,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16225,1805,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16226,1806,'D','/trunk/ClassDiagram.cd',NULL,NULL,NULL,NULL),(16227,1806,'D','/trunk/ClassDiagram1.cd',NULL,NULL,NULL,NULL),(16228,1806,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(16229,1806,'M','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(16230,1806,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16231,1806,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(16232,1806,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(16233,1806,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(16234,1806,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(16235,1806,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(16236,1806,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(16237,1806,'M','/trunk/include/VpiWriteObject.h',NULL,NULL,NULL,NULL),(16238,1806,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(16239,1806,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16240,1806,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16241,1806,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(16242,1806,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(16243,1806,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16244,1806,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16245,1806,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16246,1806,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16247,1806,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(16248,1806,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16249,1806,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16250,1806,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16251,1806,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(16252,1806,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(16253,1806,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(16254,1807,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(16255,1807,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(16256,1807,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(16257,1807,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(16258,1807,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(16259,1807,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(16260,1807,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(16261,1807,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16262,1807,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16263,1807,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16264,1807,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(16265,1807,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16266,1807,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16267,1807,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16268,1807,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(16269,1808,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(16270,1808,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(16271,1808,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16272,1808,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(16273,1808,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(16274,1808,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16275,1808,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16276,1808,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16277,1809,'M','/trunk/include/ContinuationPoint.h',NULL,NULL,NULL,NULL),(16278,1809,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(16279,1809,'M','/trunk/source/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(16280,1809,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16281,1809,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16282,1809,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16283,1809,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16284,1809,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16285,1809,'M','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(16286,1809,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(16287,1810,'M','/trunk/include/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(16288,1810,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16289,1810,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(16290,1810,'M','/trunk/include/StackCallbacks.h',NULL,NULL,NULL,NULL),(16291,1810,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(16292,1810,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(16293,1810,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(16294,1810,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(16295,1810,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(16296,1810,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16297,1810,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(16298,1810,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(16299,1810,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16300,1810,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(16301,1810,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(16302,1810,'M','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(16303,1810,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16304,1810,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16305,1810,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16306,1810,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16307,1810,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(16308,1810,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16309,1810,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16310,1810,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16311,1811,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(16312,1811,'M','/trunk/include/QueuedReadRequest.h',NULL,NULL,NULL,NULL),(16313,1811,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(16314,1811,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16315,1811,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(16316,1811,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16317,1811,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16318,1811,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16319,1811,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16320,1811,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16321,1811,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16322,1811,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16323,1812,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(16324,1812,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16325,1812,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16326,1812,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16327,1812,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16328,1812,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16329,1812,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16330,1813,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16331,1813,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(16332,1813,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(16333,1813,'M','/trunk/include/UABinding.h',NULL,NULL,NULL,NULL),(16334,1813,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(16335,1813,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(16336,1813,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16337,1813,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(16338,1813,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(16339,1813,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(16340,1813,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16341,1813,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(16342,1813,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(16343,1813,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(16344,1813,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16345,1813,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16346,1813,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(16347,1813,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16348,1813,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16349,1813,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(16350,1813,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(16351,1813,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16352,1813,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(16353,1813,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16354,1813,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16355,1813,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16356,1813,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(16357,1814,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(16358,1814,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(16359,1815,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(16360,1815,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(16361,1816,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(16362,1817,'D','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj.filters',NULL,NULL,NULL,NULL),(16363,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OpcDaGroup.h',NULL,NULL,NULL,NULL),(16364,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/OpcDaItem.h',NULL,NULL,NULL,NULL),(16365,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VPIComDa.h',NULL,NULL,NULL,NULL),(16366,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16367,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16368,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(16369,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaGroup.cpp',NULL,NULL,NULL,NULL),(16370,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaItem.cpp',NULL,NULL,NULL,NULL),(16371,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16372,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(16373,1818,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16374,1819,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/CMakeLists.txt',NULL,NULL,NULL,NULL),(16375,1819,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(16376,1820,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(16377,1820,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(16378,1820,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16379,1820,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(16380,1821,'M','/OpenOpcUa_VS2013/LuaLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(16381,1822,'M','/OpenOpcUa_VS2013/LuaLib/source/lapi.c',NULL,NULL,NULL,NULL),(16382,1822,'M','/OpenOpcUa_VS2013/LuaLib/source/ldebug.c',NULL,NULL,NULL,NULL),(16383,1822,'M','/OpenOpcUa_VS2013/LuaLib/source/ldo.c',NULL,NULL,NULL,NULL),(16384,1822,'M','/OpenOpcUa_VS2013/LuaLib/source/lgc.c',NULL,NULL,NULL,NULL),(16385,1822,'M','/OpenOpcUa_VS2013/LuaLib/source/lobject.c',NULL,NULL,NULL,NULL),(16386,1822,'M','/OpenOpcUa_VS2013/LuaLib/source/lstrlib.c',NULL,NULL,NULL,NULL),(16387,1822,'M','/OpenOpcUa_VS2013/LuaLib/source/lundump.c',NULL,NULL,NULL,NULL),(16388,1822,'M','/OpenOpcUa_VS2013/LuaLib/source/lvm.c',NULL,NULL,NULL,NULL),(16389,1823,'A','/OpenOpcUa_VS2013/Tools/OpenOpcUaConfigManager/AQtimeOOUAConfigManager',NULL,NULL,NULL,NULL),(16390,1824,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.rc',NULL,NULL,NULL,NULL),(16391,1824,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16392,1824,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16393,1824,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(16394,1824,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCShutdown.cpp',NULL,NULL,NULL,NULL),(16395,1824,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaGroup.cpp',NULL,NULL,NULL,NULL),(16396,1824,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(16397,1824,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16398,1824,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/stdafx.cpp',NULL,NULL,NULL,NULL),(16399,1825,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16400,1825,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16401,1826,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(16402,1826,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16403,1826,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(16404,1826,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(16405,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(16406,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(16407,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16408,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(16409,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(16410,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16411,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16412,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(16413,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16414,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(16415,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntObject.cpp',NULL,NULL,NULL,NULL),(16416,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(16417,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(16418,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(16419,1827,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(16420,1827,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/stdafx.cpp',NULL,NULL,NULL,NULL),(16421,1828,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/VpiTyco.rc',NULL,NULL,NULL,NULL),(16422,1828,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(16423,1828,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16424,1828,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16425,1828,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(16426,1828,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16427,1828,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(16428,1829,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.vcxproj',NULL,NULL,NULL,NULL),(16429,1829,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXPointInformation.h',NULL,NULL,NULL,NULL),(16430,1829,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16431,1829,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(16432,1829,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(16433,1829,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16434,1829,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(16435,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16436,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgNode.h',NULL,NULL,NULL,NULL),(16437,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgPoint.h',NULL,NULL,NULL,NULL),(16438,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgZone.h',NULL,NULL,NULL,NULL),(16439,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXEventLogData.h',NULL,NULL,NULL,NULL),(16440,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXPointInformation.h',NULL,NULL,NULL,NULL),(16441,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXProject.h',NULL,NULL,NULL,NULL),(16442,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16443,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiTycoEx.h',NULL,NULL,NULL,NULL),(16444,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16445,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgNode.cpp',NULL,NULL,NULL,NULL),(16446,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgPoint.cpp',NULL,NULL,NULL,NULL),(16447,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgZone.cpp',NULL,NULL,NULL,NULL),(16448,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(16449,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(16450,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(16451,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(16452,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(16453,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16454,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(16455,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.def',NULL,NULL,NULL,NULL),(16456,1830,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoExd.def',NULL,NULL,NULL,NULL),(16457,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv',NULL,NULL,NULL,NULL),(16458,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/VpiTcpSrv.rc',NULL,NULL,NULL,NULL),(16459,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/VpiTcpSrv.vcxproj',NULL,NULL,NULL,NULL),(16460,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/VpiTcpSrv_VS2013.sln',NULL,NULL,NULL,NULL),(16461,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include',NULL,NULL,NULL,NULL),(16462,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/RequestNodeId.h',NULL,NULL,NULL,NULL),(16463,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/ResponseDataValue.h',NULL,NULL,NULL,NULL),(16464,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/SourceObject.h',NULL,NULL,NULL,NULL),(16465,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/TcpClient.h',NULL,NULL,NULL,NULL),(16466,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/TcpSrvRequest.h',NULL,NULL,NULL,NULL),(16467,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/TcpSrvResponse.h',NULL,NULL,NULL,NULL),(16468,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16469,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/VpiTcpSrv.h',NULL,NULL,NULL,NULL),(16470,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/stdafx.h',NULL,NULL,NULL,NULL),(16471,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/targetver.h',NULL,NULL,NULL,NULL),(16472,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/resource.h',NULL,NULL,NULL,NULL),(16473,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source',NULL,NULL,NULL,NULL),(16474,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16475,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/RequestNodeId.cpp',NULL,NULL,NULL,NULL),(16476,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/ResponseDataValue.cpp',NULL,NULL,NULL,NULL),(16477,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16478,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(16479,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/TcpSrvRequest.cpp',NULL,NULL,NULL,NULL),(16480,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/TcpSrvResponse.cpp',NULL,NULL,NULL,NULL),(16481,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16482,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/VpiTcpSrv.cpp',NULL,NULL,NULL,NULL),(16483,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/VpiTcpSrv.def',NULL,NULL,NULL,NULL),(16484,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/VpiTcpSrvd.def',NULL,NULL,NULL,NULL),(16485,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/dllmain.cpp',NULL,NULL,NULL,NULL),(16486,1831,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/stdafx.cpp',NULL,NULL,NULL,NULL),(16487,1832,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16488,1832,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiTycoEx.h',NULL,NULL,NULL,NULL),(16489,1832,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16490,1832,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(16491,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16492,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.sln',NULL,NULL,NULL,NULL),(16493,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.vcxproj',NULL,NULL,NULL,NULL),(16494,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXProject.h',NULL,NULL,NULL,NULL),(16495,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16496,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgZone.cpp',NULL,NULL,NULL,NULL),(16497,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(16498,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(16499,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(16500,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXZoneStatusMap.cpp',NULL,NULL,NULL,NULL),(16501,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(16502,1833,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoExFtdi.def',NULL,NULL,NULL,NULL),(16503,1833,'A','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoExFtdid.def',NULL,NULL,NULL,NULL),(16504,1833,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/XmlTxgParsing.cpp',NULL,NULL,NULL,NULL),(16505,1834,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16506,1834,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgZone.h',NULL,NULL,NULL,NULL),(16507,1834,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgNode.cpp',NULL,NULL,NULL,NULL),(16508,1834,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgPoint.cpp',NULL,NULL,NULL,NULL),(16509,1834,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgZone.cpp',NULL,NULL,NULL,NULL),(16510,1834,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(16511,1834,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(16512,1834,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(16513,1834,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/XmlTxgParsing.cpp',NULL,NULL,NULL,NULL),(16514,1835,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16515,1835,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16516,1835,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(16517,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/CMakeLists.txt',NULL,NULL,NULL,NULL),(16518,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.vcxproj',NULL,NULL,NULL,NULL),(16519,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(16520,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VPINullEx.h',NULL,NULL,NULL,NULL),(16521,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16522,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16523,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16524,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(16525,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.def',NULL,NULL,NULL,NULL),(16526,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullExd.def',NULL,NULL,NULL,NULL),(16527,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16528,1836,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/stdafx.cpp',NULL,NULL,NULL,NULL),(16529,1837,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/TcpSrvRequest.h',NULL,NULL,NULL,NULL),(16530,1837,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/TcpSrvResponse.h',NULL,NULL,NULL,NULL),(16531,1837,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(16532,1837,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/TcpSrvRequest.cpp',NULL,NULL,NULL,NULL),(16533,1837,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/TcpSrvResponse.cpp',NULL,NULL,NULL,NULL),(16534,1838,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16535,1838,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(16536,1838,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(16537,1838,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16538,1838,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(16539,1838,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(16540,1838,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(16541,1838,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16542,1838,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(16543,1839,'M','/OpenOpcUa_VS2013/Vpis/VpiTyco/source/VpiTyco.cpp',NULL,NULL,NULL,NULL),(16544,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/CMakeLists.txt',NULL,NULL,NULL,NULL),(16545,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(16546,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.vcxproj',NULL,NULL,NULL,NULL),(16547,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/S7Block.h',NULL,NULL,NULL,NULL),(16548,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/SourceObject.h',NULL,NULL,NULL,NULL),(16549,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(16550,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16551,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/stdafx.h',NULL,NULL,NULL,NULL),(16552,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16553,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(16554,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16555,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(16556,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.def',NULL,NULL,NULL,NULL),(16557,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7d.def',NULL,NULL,NULL,NULL),(16558,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16559,1840,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/stdafx.cpp',NULL,NULL,NULL,NULL),(16560,1841,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.rc',NULL,NULL,NULL,NULL),(16561,1841,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.vcxproj',NULL,NULL,NULL,NULL),(16562,1841,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx_VS2013.sln',NULL,NULL,NULL,NULL),(16563,1841,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VPINullEx.h',NULL,NULL,NULL,NULL),(16564,1841,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16565,1841,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16566,1841,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(16567,1841,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16568,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet',NULL,NULL,NULL,NULL),(16569,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/VpiNet.rc',NULL,NULL,NULL,NULL),(16570,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/VpiNet.vcxproj',NULL,NULL,NULL,NULL),(16571,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/VpiNet_VS2013.sln',NULL,NULL,NULL,NULL),(16572,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/include',NULL,NULL,NULL,NULL),(16573,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/include/MsMqConfig.h',NULL,NULL,NULL,NULL),(16574,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/include/SourceObject.h',NULL,NULL,NULL,NULL),(16575,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16576,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/include/VpiNet.h',NULL,NULL,NULL,NULL),(16577,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/include/stdafx.h',NULL,NULL,NULL,NULL),(16578,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/include/targetver.h',NULL,NULL,NULL,NULL),(16579,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/resource.h',NULL,NULL,NULL,NULL),(16580,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/source',NULL,NULL,NULL,NULL),(16581,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16582,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/source/MsMqConfig.cpp',NULL,NULL,NULL,NULL),(16583,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16584,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16585,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/source/VpiNet.cpp',NULL,NULL,NULL,NULL),(16586,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/source/VpiNet.def',NULL,NULL,NULL,NULL),(16587,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/source/VpiNetd.def',NULL,NULL,NULL,NULL),(16588,1842,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/source/stdafx.cpp',NULL,NULL,NULL,NULL),(16589,1843,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(16590,1843,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16591,1843,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16592,1843,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(16593,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient',NULL,NULL,NULL,NULL),(16594,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/CMakeLists.txt',NULL,NULL,NULL,NULL),(16595,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/VpiRestClient.rc',NULL,NULL,NULL,NULL),(16596,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/VpiRestClient.vcxproj',NULL,NULL,NULL,NULL),(16597,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/VpiRestClient_VS2013.sln',NULL,NULL,NULL,NULL),(16598,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include',NULL,NULL,NULL,NULL),(16599,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/SourceObject.h',NULL,NULL,NULL,NULL),(16600,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/VpiInternal.h',NULL,NULL,NULL,NULL),(16601,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/VpiRestClient.h',NULL,NULL,NULL,NULL),(16602,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/openweathermap.h',NULL,NULL,NULL,NULL),(16603,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/stdafx.h',NULL,NULL,NULL,NULL),(16604,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/targetver.h',NULL,NULL,NULL,NULL),(16605,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/resource.h',NULL,NULL,NULL,NULL),(16606,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source',NULL,NULL,NULL,NULL),(16607,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16608,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16609,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16610,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiRestClient.cpp',NULL,NULL,NULL,NULL),(16611,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiRestClient.def',NULL,NULL,NULL,NULL),(16612,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiRestClientd.def',NULL,NULL,NULL,NULL),(16613,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/dllmain.cpp',NULL,NULL,NULL,NULL),(16614,1844,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/stdafx.cpp',NULL,NULL,NULL,NULL),(16615,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16616,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgNode.h',NULL,NULL,NULL,NULL),(16617,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgZone.h',NULL,NULL,NULL,NULL),(16618,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(16619,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiTycoEx.h',NULL,NULL,NULL,NULL),(16620,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16621,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgNode.cpp',NULL,NULL,NULL,NULL),(16622,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgZone.cpp',NULL,NULL,NULL,NULL),(16623,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(16624,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(16625,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(16626,1845,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(16627,1846,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.vcxproj',NULL,NULL,NULL,NULL),(16628,1846,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(16629,1846,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16630,1846,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(16631,1846,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(16632,1847,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.sln',NULL,NULL,NULL,NULL),(16633,1847,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.vcxproj',NULL,NULL,NULL,NULL),(16634,1847,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(16635,1848,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16636,1848,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.vcxproj',NULL,NULL,NULL,NULL),(16637,1848,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16638,1849,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16639,1849,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXCfgZone.h',NULL,NULL,NULL,NULL),(16640,1849,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgZone.cpp',NULL,NULL,NULL,NULL),(16641,1849,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(16642,1850,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(16643,1851,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(16644,1851,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16645,1851,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(16646,1851,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(16647,1851,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(16648,1852,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(16649,1852,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(16650,1852,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(16651,1852,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(16652,1852,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(16653,1853,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(16654,1853,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXEvent.h',NULL,NULL,NULL,NULL),(16655,1853,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiTycoEx.h',NULL,NULL,NULL,NULL),(16656,1853,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(16657,1853,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(16658,1853,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(16659,1854,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccessDlg.cpp',NULL,NULL,NULL,NULL),(16660,1854,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/VPIDirectAccess.rc',NULL,NULL,NULL,NULL),(16661,1854,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/VPIDirectAccess.vcxproj',NULL,NULL,NULL,NULL),(16662,1854,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(16663,1854,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccess.cpp',NULL,NULL,NULL,NULL),(16664,1854,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccess.def',NULL,NULL,NULL,NULL),(16665,1854,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccessd.def',NULL,NULL,NULL,NULL),(16666,1854,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess_VS2013.sln',NULL,NULL,NULL,NULL),(16667,1855,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(16668,1856,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(16669,1856,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16670,1856,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(16671,1856,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(16672,1856,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(16673,1856,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(16674,1856,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16675,1856,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(16676,1856,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16677,1856,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(16678,1856,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16679,1856,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16680,1856,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16681,1856,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16682,1856,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16683,1856,'M','/trunk/source/UAMethod.cpp',NULL,NULL,NULL,NULL),(16684,1856,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16685,1856,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16686,1857,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(16687,1857,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(16688,1857,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16689,1857,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16690,1858,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16691,1858,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(16692,1858,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(16693,1858,'M','/trunk/include/UABinding.h',NULL,NULL,NULL,NULL),(16694,1858,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(16695,1858,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(16696,1858,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(16697,1858,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(16698,1858,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16699,1858,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(16700,1858,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16701,1858,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(16702,1858,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(16703,1858,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16704,1858,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(16705,1858,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(16706,1858,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16707,1858,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16708,1858,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16709,1858,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16710,1858,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(16711,1859,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16712,1859,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(16713,1859,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(16714,1860,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(16715,1860,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(16716,1860,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(16717,1860,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(16718,1860,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(16719,1860,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(16720,1860,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(16721,1861,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(16722,1861,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(16723,1862,'A','/OpenOpcUaClientsSdk.vcxproj',NULL,NULL,NULL,NULL),(16724,1862,'A','/OpenOpcUaClientsSdk.vcxproj.filters',NULL,NULL,NULL,NULL),(16725,1862,'A','/OpenOpcUaClientsSdk_VS2013.sln',NULL,NULL,NULL,NULL),(16726,1862,'D','/OpenOpcUaSdkClient.h',NULL,NULL,NULL,NULL),(16727,1863,'M','/OpenOpcUaClientsSdk.vcxproj',NULL,NULL,NULL,NULL),(16728,1863,'A','/shared/OpenOpcUaSdkClient.h',NULL,NULL,NULL,NULL),(16729,1864,'M','/OpenOpcUaClientsSdk.vcxproj',NULL,NULL,NULL,NULL),(16730,1864,'M','/OpenOpcUaClientsSdk.vcxproj.filters',NULL,NULL,NULL,NULL),(16731,1864,'M','/shared/OpenOpcUaSdkClient.h',NULL,NULL,NULL,NULL),(16732,1864,'M','/shared/OpenOpcUa_builtintypes.h',NULL,NULL,NULL,NULL),(16733,1864,'M','/shared/OpenOpcUa_p_types.h',NULL,NULL,NULL,NULL),(16734,1865,'M','/shared/OpenOpcUaSdkClient.h',NULL,NULL,NULL,NULL),(16735,1865,'M','/shared/OpenOpcUa_Errors.h',NULL,NULL,NULL,NULL),(16736,1866,'M','/shared/OpenOpcUaSdkClient.h',NULL,NULL,NULL,NULL),(16737,1867,'A','/OpenOpcUaQtClient',NULL,NULL,NULL,NULL),(16738,1867,'A','/OpenOpcUaQtClient/OpenOpcUaClient.qrc',NULL,NULL,NULL,NULL),(16739,1867,'A','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(16740,1867,'A','/OpenOpcUaQtClient/cbrowserelt.h',NULL,NULL,NULL,NULL),(16741,1867,'A','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(16742,1867,'A','/OpenOpcUaQtClient/cbrowsertreewidget.h',NULL,NULL,NULL,NULL),(16743,1867,'A','/OpenOpcUaQtClient/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(16744,1867,'A','/OpenOpcUaQtClient/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(16745,1867,'A','/OpenOpcUaQtClient/cmonitoreditemtablewidget.h',NULL,NULL,NULL,NULL),(16746,1867,'A','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16747,1867,'A','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.h',NULL,NULL,NULL,NULL),(16748,1867,'A','/OpenOpcUaQtClient/cprojectconfiguration.cpp',NULL,NULL,NULL,NULL),(16749,1867,'A','/OpenOpcUaQtClient/cprojectconfiguration.h',NULL,NULL,NULL,NULL),(16750,1867,'A','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(16751,1867,'A','/OpenOpcUaQtClient/cprojecttreewidget.h',NULL,NULL,NULL,NULL),(16752,1867,'A','/OpenOpcUaQtClient/creferencestablewidget.cpp',NULL,NULL,NULL,NULL),(16753,1867,'A','/OpenOpcUaQtClient/creferencestablewidget.h',NULL,NULL,NULL,NULL),(16754,1867,'A','/OpenOpcUaQtClient/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(16755,1867,'A','/OpenOpcUaQtClient/csessionconfiguration.h',NULL,NULL,NULL,NULL),(16756,1867,'A','/OpenOpcUaQtClient/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(16757,1867,'A','/OpenOpcUaQtClient/csubscriptionconfiguration.h',NULL,NULL,NULL,NULL),(16758,1867,'A','/OpenOpcUaQtClient/csubscriptionconfigurationdlg.cpp',NULL,NULL,NULL,NULL),(16759,1867,'A','/OpenOpcUaQtClient/csubscriptionconfigurationdlg.h',NULL,NULL,NULL,NULL),(16760,1867,'A','/OpenOpcUaQtClient/cuaclienttoolbar.cpp',NULL,NULL,NULL,NULL),(16761,1867,'A','/OpenOpcUaQtClient/cuaclienttoolbar.h',NULL,NULL,NULL,NULL),(16762,1867,'A','/OpenOpcUaQtClient/monitoreditemparameterdlg.cpp',NULL,NULL,NULL,NULL),(16763,1867,'A','/OpenOpcUaQtClient/monitoreditemparameterdlg.h',NULL,NULL,NULL,NULL),(16764,1867,'A','/OpenOpcUaQtClient/monitoreditemparameterdlg.ui',NULL,NULL,NULL,NULL),(16765,1867,'A','/OpenOpcUaQtClient/opcuaqthelperfunctions.h',NULL,NULL,NULL,NULL),(16766,1867,'A','/OpenOpcUaQtClient/projectparameterdlg.cpp',NULL,NULL,NULL,NULL),(16767,1867,'A','/OpenOpcUaQtClient/projectparameterdlg.h',NULL,NULL,NULL,NULL),(16768,1867,'A','/OpenOpcUaQtClient/projectparameterdlg.ui',NULL,NULL,NULL,NULL),(16769,1867,'A','/OpenOpcUaQtClient/sessionparameterdlg.cpp',NULL,NULL,NULL,NULL),(16770,1867,'A','/OpenOpcUaQtClient/sessionparameterdlg.h',NULL,NULL,NULL,NULL),(16771,1867,'A','/OpenOpcUaQtClient/sessionparameterdlg.ui',NULL,NULL,NULL,NULL),(16772,1867,'A','/OpenOpcUaQtClient/subscriptionconfigurationdlg.ui',NULL,NULL,NULL,NULL),(16773,1868,'A','/OpenOpcUaQtClient/GeneratedFiles',NULL,NULL,NULL,NULL),(16774,1868,'A','/OpenOpcUaQtClient/GeneratedFiles/qrc_OpenOpcUaClient.cpp',NULL,NULL,NULL,NULL),(16775,1868,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_OpenOpcUaClient.h',NULL,NULL,NULL,NULL),(16776,1868,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_cuserpassword.h',NULL,NULL,NULL,NULL),(16777,1868,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_monitoreditemparameterdlg.h',NULL,NULL,NULL,NULL),(16778,1868,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_projectparameterdlg.h',NULL,NULL,NULL,NULL),(16779,1868,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_sessionparameterdlg.h',NULL,NULL,NULL,NULL),(16780,1868,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_subscriptionconfigurationdlg.h',NULL,NULL,NULL,NULL),(16781,1868,'M','/OpenOpcUaQtClient/OpenOpcUaClient.qrc',NULL,NULL,NULL,NULL),(16782,1868,'A','/OpenOpcUaQtClient/OpenOpcUaClient.ui',NULL,NULL,NULL,NULL),(16783,1868,'A','/OpenOpcUaQtClient/OpenOpcUaFlexClient.rc',NULL,NULL,NULL,NULL),(16784,1868,'A','/OpenOpcUaQtClient/OpenOpcUaFlexClient.sln',NULL,NULL,NULL,NULL),(16785,1868,'A','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(16786,1868,'A','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj.filters',NULL,NULL,NULL,NULL),(16787,1868,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(16788,1868,'M','/OpenOpcUaQtClient/cbrowserelt.h',NULL,NULL,NULL,NULL),(16789,1868,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(16790,1868,'M','/OpenOpcUaQtClient/cbrowsertreewidget.h',NULL,NULL,NULL,NULL),(16791,1868,'M','/OpenOpcUaQtClient/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(16792,1868,'M','/OpenOpcUaQtClient/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(16793,1868,'A','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(16794,1868,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.h',NULL,NULL,NULL,NULL),(16795,1868,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16796,1868,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.h',NULL,NULL,NULL,NULL),(16797,1868,'A','/OpenOpcUaQtClient/cparameterlogdlg.cpp',NULL,NULL,NULL,NULL),(16798,1868,'A','/OpenOpcUaQtClient/cparameterlogdlg.h',NULL,NULL,NULL,NULL),(16799,1868,'A','/OpenOpcUaQtClient/cparameterlogdlg.ui',NULL,NULL,NULL,NULL),(16800,1868,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(16801,1868,'M','/OpenOpcUaQtClient/cprojecttreewidget.h',NULL,NULL,NULL,NULL),(16802,1868,'M','/OpenOpcUaQtClient/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(16803,1868,'M','/OpenOpcUaQtClient/csessionconfiguration.h',NULL,NULL,NULL,NULL),(16804,1868,'M','/OpenOpcUaQtClient/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(16805,1868,'M','/OpenOpcUaQtClient/csubscriptionconfigurationdlg.cpp',NULL,NULL,NULL,NULL),(16806,1868,'M','/OpenOpcUaQtClient/cuaclienttoolbar.cpp',NULL,NULL,NULL,NULL),(16807,1868,'M','/OpenOpcUaQtClient/cuaclienttoolbar.h',NULL,NULL,NULL,NULL),(16808,1868,'A','/OpenOpcUaQtClient/cuserpassword.cpp',NULL,NULL,NULL,NULL),(16809,1868,'A','/OpenOpcUaQtClient/cuserpassword.h',NULL,NULL,NULL,NULL),(16810,1868,'A','/OpenOpcUaQtClient/cuserpassword.ui',NULL,NULL,NULL,NULL),(16811,1868,'A','/OpenOpcUaQtClient/images',NULL,NULL,NULL,NULL),(16812,1868,'A','/OpenOpcUaQtClient/images/Binding.ico',NULL,NULL,NULL,NULL),(16813,1868,'A','/OpenOpcUaQtClient/images/Call_16.ico',NULL,NULL,NULL,NULL),(16814,1868,'A','/OpenOpcUaQtClient/images/Computer_16.ico',NULL,NULL,NULL,NULL),(16815,1868,'A','/OpenOpcUaQtClient/images/Connected.ico',NULL,NULL,NULL,NULL),(16816,1868,'A','/OpenOpcUaQtClient/images/DataType.ico',NULL,NULL,NULL,NULL),(16817,1868,'A','/OpenOpcUaQtClient/images/DeleteBinding.ico',NULL,NULL,NULL,NULL),(16818,1868,'A','/OpenOpcUaQtClient/images/Disconnected.ico',NULL,NULL,NULL,NULL),(16819,1868,'A','/OpenOpcUaQtClient/images/Exit.gif',NULL,NULL,NULL,NULL),(16820,1868,'A','/OpenOpcUaQtClient/images/Folder.ico',NULL,NULL,NULL,NULL),(16821,1868,'A','/OpenOpcUaQtClient/images/Method.ico',NULL,NULL,NULL,NULL),(16822,1868,'A','/OpenOpcUaQtClient/images/Object.ico',NULL,NULL,NULL,NULL),(16823,1868,'A','/OpenOpcUaQtClient/images/ObjectType.ico',NULL,NULL,NULL,NULL),(16824,1868,'A','/OpenOpcUaQtClient/images/Objects.ico',NULL,NULL,NULL,NULL),(16825,1868,'A','/OpenOpcUaQtClient/images/OpenOpcUa.ico',NULL,NULL,NULL,NULL),(16826,1868,'A','/OpenOpcUaQtClient/images/Parameter.ico',NULL,NULL,NULL,NULL),(16827,1868,'A','/OpenOpcUaQtClient/images/ReferenceType.ico',NULL,NULL,NULL,NULL),(16828,1868,'A','/OpenOpcUaQtClient/images/Root_16.PNG',NULL,NULL,NULL,NULL),(16829,1868,'A','/OpenOpcUaQtClient/images/ServerLost.ico',NULL,NULL,NULL,NULL),(16830,1868,'A','/OpenOpcUaQtClient/images/Splash.png',NULL,NULL,NULL,NULL),(16831,1868,'A','/OpenOpcUaQtClient/images/SubscriptionDisable.ico',NULL,NULL,NULL,NULL),(16832,1868,'A','/OpenOpcUaQtClient/images/SubscriptionEnable.ico',NULL,NULL,NULL,NULL),(16833,1868,'A','/OpenOpcUaQtClient/images/TRASH_16.ICO',NULL,NULL,NULL,NULL),(16834,1868,'A','/OpenOpcUaQtClient/images/Variable.ico',NULL,NULL,NULL,NULL),(16835,1868,'A','/OpenOpcUaQtClient/images/VariableType.ico',NULL,NULL,NULL,NULL),(16836,1868,'A','/OpenOpcUaQtClient/images/View.ico',NULL,NULL,NULL,NULL),(16837,1868,'A','/OpenOpcUaQtClient/images/delete.ico',NULL,NULL,NULL,NULL),(16838,1868,'A','/OpenOpcUaQtClient/images/edit_add.ico',NULL,NULL,NULL,NULL),(16839,1868,'A','/OpenOpcUaQtClient/images/find.ico',NULL,NULL,NULL,NULL),(16840,1868,'A','/OpenOpcUaQtClient/images/greenrefresh.ico',NULL,NULL,NULL,NULL),(16841,1868,'A','/OpenOpcUaQtClient/images/lc_new.ico',NULL,NULL,NULL,NULL),(16842,1868,'A','/OpenOpcUaQtClient/images/lc_open.png',NULL,NULL,NULL,NULL),(16843,1868,'A','/OpenOpcUaQtClient/images/lc_save.png',NULL,NULL,NULL,NULL),(16844,1868,'A','/OpenOpcUaQtClient/images/lc_saveas.png',NULL,NULL,NULL,NULL),(16845,1868,'A','/OpenOpcUaQtClient/images/level_error.ICO',NULL,NULL,NULL,NULL),(16846,1868,'A','/OpenOpcUaQtClient/images/level_info.ICO',NULL,NULL,NULL,NULL),(16847,1868,'A','/OpenOpcUaQtClient/images/level_warning.ico',NULL,NULL,NULL,NULL),(16848,1868,'A','/OpenOpcUaQtClient/images/logic.ico',NULL,NULL,NULL,NULL),(16849,1868,'A','/OpenOpcUaQtClient/images/numeric.ico',NULL,NULL,NULL,NULL),(16850,1868,'A','/OpenOpcUaQtClient/images/project.ico',NULL,NULL,NULL,NULL),(16851,1868,'A','/OpenOpcUaQtClient/images/string.ico',NULL,NULL,NULL,NULL),(16852,1868,'A','/OpenOpcUaQtClient/main.cpp',NULL,NULL,NULL,NULL),(16853,1868,'A','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(16854,1868,'A','/OpenOpcUaQtClient/mainwindow.h',NULL,NULL,NULL,NULL),(16855,1868,'M','/OpenOpcUaQtClient/opcuaqthelperfunctions.h',NULL,NULL,NULL,NULL),(16856,1868,'A','/OpenOpcUaQtClient/resource.h',NULL,NULL,NULL,NULL),(16857,1868,'M','/OpenOpcUaQtClient/sessionparameterdlg.cpp',NULL,NULL,NULL,NULL),(16858,1868,'M','/OpenOpcUaQtClient/sessionparameterdlg.h',NULL,NULL,NULL,NULL),(16859,1868,'M','/OpenOpcUaQtClient/sessionparameterdlg.ui',NULL,NULL,NULL,NULL),(16860,1869,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_cmethodcalldlg.h',NULL,NULL,NULL,NULL),(16861,1869,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(16862,1869,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj.filters',NULL,NULL,NULL,NULL),(16863,1869,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(16864,1869,'A','/OpenOpcUaQtClient/cmethodcalldlg.cpp',NULL,NULL,NULL,NULL),(16865,1869,'A','/OpenOpcUaQtClient/cmethodcalldlg.h',NULL,NULL,NULL,NULL),(16866,1869,'A','/OpenOpcUaQtClient/cmethodcalldlg.ui',NULL,NULL,NULL,NULL),(16867,1869,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(16868,1869,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16869,1869,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(16870,1869,'M','/OpenOpcUaQtClient/cprojecttreewidget.h',NULL,NULL,NULL,NULL),(16871,1869,'M','/OpenOpcUaQtClient/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(16872,1869,'M','/OpenOpcUaQtClient/csessionconfiguration.h',NULL,NULL,NULL,NULL),(16873,1869,'M','/OpenOpcUaQtClient/cuaclienttoolbar.cpp',NULL,NULL,NULL,NULL),(16874,1869,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(16875,1869,'M','/OpenOpcUaQtClient/mainwindow.h',NULL,NULL,NULL,NULL),(16876,1870,'A','/OpenOpcUaQtClient/CAboutDlg.cpp',NULL,NULL,NULL,NULL),(16877,1870,'A','/OpenOpcUaQtClient/CAboutDlg.h',NULL,NULL,NULL,NULL),(16878,1870,'A','/OpenOpcUaQtClient/CAboutDlg.ui',NULL,NULL,NULL,NULL),(16879,1870,'M','/OpenOpcUaQtClient/GeneratedFiles/qrc_OpenOpcUaClient.cpp',NULL,NULL,NULL,NULL),(16880,1870,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_OpenOpcUaClient.h',NULL,NULL,NULL,NULL),(16881,1870,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_cdiscoverydlg.h',NULL,NULL,NULL,NULL),(16882,1870,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_cparameterlogdlg.h',NULL,NULL,NULL,NULL),(16883,1870,'M','/OpenOpcUaQtClient/OpenOpcUaClient.qrc',NULL,NULL,NULL,NULL),(16884,1870,'M','/OpenOpcUaQtClient/OpenOpcUaClient.ui',NULL,NULL,NULL,NULL),(16885,1870,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(16886,1870,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj.filters',NULL,NULL,NULL,NULL),(16887,1870,'A','/OpenOpcUaQtClient/QEndPointDescription.cpp',NULL,NULL,NULL,NULL),(16888,1870,'A','/OpenOpcUaQtClient/QEndPointDescription.h',NULL,NULL,NULL,NULL),(16889,1870,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(16890,1870,'A','/OpenOpcUaQtClient/cdiscoverydlg.cpp',NULL,NULL,NULL,NULL),(16891,1870,'A','/OpenOpcUaQtClient/cdiscoverydlg.h',NULL,NULL,NULL,NULL),(16892,1870,'A','/OpenOpcUaQtClient/cdiscoverydlg.ui',NULL,NULL,NULL,NULL),(16893,1870,'M','/OpenOpcUaQtClient/cmethodcalldlg.cpp',NULL,NULL,NULL,NULL),(16894,1870,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(16895,1870,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.h',NULL,NULL,NULL,NULL),(16896,1870,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16897,1870,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(16898,1870,'M','/OpenOpcUaQtClient/creferencestablewidget.cpp',NULL,NULL,NULL,NULL),(16899,1870,'M','/OpenOpcUaQtClient/cuaclienttoolbar.cpp',NULL,NULL,NULL,NULL),(16900,1870,'M','/OpenOpcUaQtClient/cuaclienttoolbar.h',NULL,NULL,NULL,NULL),(16901,1870,'A','/OpenOpcUaQtClient/images/OPC.ico',NULL,NULL,NULL,NULL),(16902,1870,'A','/OpenOpcUaQtClient/images/findSrv.ico',NULL,NULL,NULL,NULL),(16903,1870,'M','/OpenOpcUaQtClient/main.cpp',NULL,NULL,NULL,NULL),(16904,1870,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(16905,1870,'M','/OpenOpcUaQtClient/mainwindow.h',NULL,NULL,NULL,NULL),(16906,1870,'M','/OpenOpcUaQtClient/sessionparameterdlg.cpp',NULL,NULL,NULL,NULL),(16907,1870,'M','/OpenOpcUaQtClient/sessionparameterdlg.h',NULL,NULL,NULL,NULL),(16908,1871,'A','/OpenOpcUaQtClient/GeneratedFiles/ui_CAboutDlg.h',NULL,NULL,NULL,NULL),(16909,1871,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16910,1872,'A','/OpenOpcUaQtClient/DocumentWindow.cpp',NULL,NULL,NULL,NULL),(16911,1872,'A','/OpenOpcUaQtClient/DocumentWindow.h',NULL,NULL,NULL,NULL),(16912,1872,'M','/OpenOpcUaQtClient/OpenOpcUaFlexClient.rc',NULL,NULL,NULL,NULL),(16913,1872,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(16914,1872,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj.filters',NULL,NULL,NULL,NULL),(16915,1872,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(16916,1872,'M','/OpenOpcUaQtClient/cbrowserelt.h',NULL,NULL,NULL,NULL),(16917,1872,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(16918,1872,'M','/OpenOpcUaQtClient/cbrowsertreewidget.h',NULL,NULL,NULL,NULL),(16919,1872,'M','/OpenOpcUaQtClient/cmethodcalldlg.cpp',NULL,NULL,NULL,NULL),(16920,1872,'M','/OpenOpcUaQtClient/cmethodcalldlg.h',NULL,NULL,NULL,NULL),(16921,1872,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(16922,1872,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.h',NULL,NULL,NULL,NULL),(16923,1872,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16924,1872,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.h',NULL,NULL,NULL,NULL),(16925,1872,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(16926,1872,'M','/OpenOpcUaQtClient/creferencestablewidget.cpp',NULL,NULL,NULL,NULL),(16927,1872,'M','/OpenOpcUaQtClient/creferencestablewidget.h',NULL,NULL,NULL,NULL),(16928,1872,'M','/OpenOpcUaQtClient/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(16929,1872,'M','/OpenOpcUaQtClient/csessionconfiguration.h',NULL,NULL,NULL,NULL),(16930,1872,'M','/OpenOpcUaQtClient/cuserpassword.cpp',NULL,NULL,NULL,NULL),(16931,1872,'M','/OpenOpcUaQtClient/cuserpassword.h',NULL,NULL,NULL,NULL),(16932,1872,'A','/OpenOpcUaQtClient/icon1.ico',NULL,NULL,NULL,NULL),(16933,1872,'A','/OpenOpcUaQtClient/icon2.ico',NULL,NULL,NULL,NULL),(16934,1872,'M','/OpenOpcUaQtClient/main.cpp',NULL,NULL,NULL,NULL),(16935,1872,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(16936,1872,'M','/OpenOpcUaQtClient/mainwindow.h',NULL,NULL,NULL,NULL),(16937,1872,'M','/OpenOpcUaQtClient/resource.h',NULL,NULL,NULL,NULL),(16938,1872,'M','/OpenOpcUaQtClient/sessionparameterdlg.cpp',NULL,NULL,NULL,NULL),(16939,1872,'M','/OpenOpcUaQtClient/sessionparameterdlg.h',NULL,NULL,NULL,NULL),(16940,1873,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(16941,1873,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16942,1873,'M','/OpenOpcUaQtClient/creferencestablewidget.cpp',NULL,NULL,NULL,NULL),(16943,1874,'M','/OpenOpcUaQtClient/DocumentWindow.cpp',NULL,NULL,NULL,NULL),(16944,1874,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16945,1874,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(16946,1875,'M','/OpenOpcUaQtClient/DocumentWindow.cpp',NULL,NULL,NULL,NULL),(16947,1875,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(16948,1875,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(16949,1875,'M','/OpenOpcUaQtClient/cbrowsertreewidget.h',NULL,NULL,NULL,NULL),(16950,1875,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16951,1875,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.h',NULL,NULL,NULL,NULL),(16952,1875,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(16953,1875,'M','/OpenOpcUaQtClient/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(16954,1875,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(16955,1875,'M','/OpenOpcUaQtClient/mainwindow.h',NULL,NULL,NULL,NULL),(16956,1876,'M','/OpenOpcUaQtClient/DocumentWindow.h',NULL,NULL,NULL,NULL),(16957,1876,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_sessionparameterdlg.h',NULL,NULL,NULL,NULL),(16958,1876,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(16959,1876,'M','/OpenOpcUaQtClient/cbrowserelt.h',NULL,NULL,NULL,NULL),(16960,1876,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(16961,1876,'M','/OpenOpcUaQtClient/cbrowsertreewidget.h',NULL,NULL,NULL,NULL),(16962,1876,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(16963,1876,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.h',NULL,NULL,NULL,NULL),(16964,1876,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(16965,1876,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(16966,1876,'M','/OpenOpcUaQtClient/cprojecttreewidget.h',NULL,NULL,NULL,NULL),(16967,1876,'M','/OpenOpcUaQtClient/creferencestablewidget.cpp',NULL,NULL,NULL,NULL),(16968,1876,'M','/OpenOpcUaQtClient/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(16969,1876,'M','/OpenOpcUaQtClient/cuaclienttoolbar.cpp',NULL,NULL,NULL,NULL),(16970,1876,'M','/OpenOpcUaQtClient/cuaclienttoolbar.h',NULL,NULL,NULL,NULL),(16971,1876,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(16972,1876,'M','/OpenOpcUaQtClient/mainwindow.h',NULL,NULL,NULL,NULL),(16973,1876,'M','/OpenOpcUaQtClient/sessionparameterdlg.cpp',NULL,NULL,NULL,NULL),(16974,1876,'M','/OpenOpcUaQtClient/sessionparameterdlg.h',NULL,NULL,NULL,NULL),(16975,1876,'M','/OpenOpcUaQtClient/sessionparameterdlg.ui',NULL,NULL,NULL,NULL),(16976,1877,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(16977,1877,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(16978,1878,'A','/OpenOpcUaLinuxClient',NULL,NULL,NULL,NULL),(16979,1878,'A','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient',NULL,NULL,NULL,NULL),(16980,1878,'A','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/CMakeLists.txt',NULL,NULL,NULL,NULL),(16981,1878,'A','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/OpenOpcUaTerminalClient.sln',NULL,NULL,NULL,NULL),(16982,1878,'A','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/OpenOpcUaTerminalClient.vcxproj',NULL,NULL,NULL,NULL),(16983,1878,'A','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/OpenOpcUaTerminalClient.vcxproj.filters',NULL,NULL,NULL,NULL),(16984,1878,'A','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/include',NULL,NULL,NULL,NULL),(16985,1878,'A','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/include/stdafx.h',NULL,NULL,NULL,NULL),(16986,1878,'A','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/source',NULL,NULL,NULL,NULL),(16987,1878,'A','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/source/main.cpp',NULL,NULL,NULL,NULL),(16988,1879,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_projectparameterdlg.h',NULL,NULL,NULL,NULL),(16989,1879,'M','/OpenOpcUaQtClient/OpenOpcUaFlexClient.rc',NULL,NULL,NULL,NULL),(16990,1879,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(16991,1879,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(16992,1879,'M','/OpenOpcUaQtClient/cprojectconfiguration.cpp',NULL,NULL,NULL,NULL),(16993,1879,'M','/OpenOpcUaQtClient/cprojectconfiguration.h',NULL,NULL,NULL,NULL),(16994,1879,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(16995,1879,'M','/OpenOpcUaQtClient/cprojecttreewidget.h',NULL,NULL,NULL,NULL),(16996,1879,'M','/OpenOpcUaQtClient/creferencestablewidget.cpp',NULL,NULL,NULL,NULL),(16997,1879,'M','/OpenOpcUaQtClient/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(16998,1879,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(16999,1879,'M','/OpenOpcUaQtClient/mainwindow.h',NULL,NULL,NULL,NULL),(17000,1879,'M','/OpenOpcUaQtClient/projectparameterdlg.cpp',NULL,NULL,NULL,NULL),(17001,1879,'M','/OpenOpcUaQtClient/projectparameterdlg.h',NULL,NULL,NULL,NULL),(17002,1879,'M','/OpenOpcUaQtClient/projectparameterdlg.ui',NULL,NULL,NULL,NULL),(17003,1880,'M','/OpenOpcUaQtClient/GeneratedFiles/qrc_OpenOpcUaClient.cpp',NULL,NULL,NULL,NULL),(17004,1880,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_OpenOpcUaClient.h',NULL,NULL,NULL,NULL),(17005,1880,'M','/OpenOpcUaQtClient/OpenOpcUaClient.ui',NULL,NULL,NULL,NULL),(17006,1880,'M','/OpenOpcUaQtClient/OpenOpcUaFlexClient.sln',NULL,NULL,NULL,NULL),(17007,1880,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(17008,1880,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(17009,1880,'M','/OpenOpcUaQtClient/cmethodcalldlg.cpp',NULL,NULL,NULL,NULL),(17010,1880,'M','/OpenOpcUaQtClient/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(17011,1880,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(17012,1880,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(17013,1880,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(17014,1880,'M','/OpenOpcUaQtClient/cuaclienttoolbar.cpp',NULL,NULL,NULL,NULL),(17015,1880,'M','/OpenOpcUaQtClient/images/OpenOpcUa.ico',NULL,NULL,NULL,NULL),(17016,1880,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(17017,1881,'M','/OpenOpcUaQtClient/OpenOpcUaFlexClient.rc',NULL,NULL,NULL,NULL),(17018,1881,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(17019,1881,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(17020,1881,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(17021,1881,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(17022,1882,'A','/OpenOpcUaQtClient/OOUAMimeData.cpp',NULL,NULL,NULL,NULL),(17023,1882,'A','/OpenOpcUaQtClient/OOUAMimeData.h',NULL,NULL,NULL,NULL),(17024,1882,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(17025,1882,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj.filters',NULL,NULL,NULL,NULL),(17026,1882,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(17027,1882,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(17028,1882,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(17029,1882,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.h',NULL,NULL,NULL,NULL),(17030,1882,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(17031,1882,'M','/OpenOpcUaQtClient/opcuaqthelperfunctions.h',NULL,NULL,NULL,NULL),(17032,1883,'M','/trunk/UAClientLibTester/UAClientLibTester.vcproj',NULL,NULL,NULL,NULL),(17033,1884,'A','/trunk/OpenOpcUaClientLib_VS2013.sln',NULL,NULL,NULL,NULL),(17034,1884,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17035,1885,'M','/trunk/UAClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17036,1885,'M','/trunk/UAClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17037,1886,'A','/trunk/OpenOpcUaClientLib',NULL,NULL,NULL,NULL),(17038,1886,'A','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17039,1886,'A','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17040,1886,'A','/trunk/OpenOpcUaClientLib/include',NULL,NULL,NULL,NULL),(17041,1886,'A','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(17042,1886,'A','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17043,1886,'A','/trunk/OpenOpcUaClientLib/include/LoggerMessage.h',NULL,NULL,NULL,NULL),(17044,1886,'A','/trunk/OpenOpcUaClientLib/include/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(17045,1886,'A','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17046,1886,'A','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17047,1886,'A','/trunk/OpenOpcUaClientLib/include/UABuiltInType.h',NULL,NULL,NULL,NULL),(17048,1886,'A','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17049,1886,'A','/trunk/OpenOpcUaClientLib/include/targetver.h',NULL,NULL,NULL,NULL),(17050,1886,'A','/trunk/OpenOpcUaClientLib/source',NULL,NULL,NULL,NULL),(17051,1886,'A','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17052,1886,'A','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17053,1886,'A','/trunk/OpenOpcUaClientLib/source/LoggerMessage.cpp',NULL,NULL,NULL,NULL),(17054,1886,'A','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17055,1886,'A','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17056,1886,'A','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17057,1886,'A','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17058,1886,'A','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17059,1886,'A','/trunk/OpenOpcUaClientLib/source/dllmain.cpp',NULL,NULL,NULL,NULL),(17060,1886,'A','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17061,1886,'M','/trunk/OpenOpcUaClientLib_VS2013.sln',NULL,NULL,NULL,NULL),(17062,1886,'D','/trunk/UAClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17063,1886,'D','/trunk/UAClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17064,1886,'D','/trunk/UAClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17065,1886,'D','/trunk/UAClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17066,1886,'D','/trunk/UAClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17067,1886,'D','/trunk/UAClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17068,1886,'D','/trunk/UAClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17069,1887,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17070,1887,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17071,1887,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17072,1887,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17073,1887,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17074,1888,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17075,1888,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17076,1888,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17077,1889,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17078,1889,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(17079,1889,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17080,1889,'A','/trunk/OpenOpcUaClientLib/include/MonitoredItemsNotification.h',NULL,NULL,NULL,NULL),(17081,1889,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17082,1889,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17083,1889,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17084,1889,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17085,1889,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17086,1889,'A','/trunk/OpenOpcUaClientLib/source/MonitoredItemsNotification.cpp',NULL,NULL,NULL,NULL),(17087,1889,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17088,1889,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17089,1890,'A','/trunk/OpenOpcUaClientLib/OpenOpcUaClientConfig.xsd',NULL,NULL,NULL,NULL),(17090,1890,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17091,1890,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17092,1890,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17093,1890,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17094,1890,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17095,1890,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17096,1890,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17097,1890,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17098,1890,'M','/trunk/OpenOpcUaClientLib_VS2013.sln',NULL,NULL,NULL,NULL),(17099,1891,'A','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17100,1891,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientConfig.xsd',NULL,NULL,NULL,NULL),(17101,1891,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17102,1891,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(17103,1891,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17104,1891,'M','/trunk/OpenOpcUaClientLib/include/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(17105,1891,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17106,1891,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17107,1891,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17108,1891,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17109,1891,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17110,1891,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17111,1891,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17112,1891,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17113,1891,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17114,1891,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17115,1892,'A','/trunk/OpenOpcUaClientLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(17116,1892,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17117,1892,'M','/trunk/OpenOpcUaClientLib/include/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(17118,1892,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17119,1892,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17120,1892,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17121,1893,'M','/trunk/OpenOpcUaClientLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(17122,1893,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17123,1893,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17124,1894,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17125,1894,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17126,1894,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17127,1894,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17128,1894,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17129,1894,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17130,1894,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17131,1894,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17132,1894,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17133,1894,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17134,1894,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17135,1895,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17136,1895,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17137,1895,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17138,1896,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17139,1896,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17140,1897,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17141,1897,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17142,1897,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17143,1897,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17144,1898,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17145,1898,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17146,1898,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17147,1898,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17148,1898,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17149,1898,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17150,1898,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17151,1898,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17152,1898,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17153,1899,'M','/trunk/OpenOpcUaClientLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(17154,1899,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17155,1899,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17156,1899,'A','/trunk/OpenOpcUaClientLib/include/MurmurHash3.h',NULL,NULL,NULL,NULL),(17157,1899,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17158,1899,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17159,1899,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17160,1899,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17161,1899,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17162,1899,'A','/trunk/OpenOpcUaClientLib/source/MurmurHash3.cpp',NULL,NULL,NULL,NULL),(17163,1899,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17164,1899,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17165,1899,'M','/trunk/OpenOpcUaClientLib_VS2013.sln',NULL,NULL,NULL,NULL),(17166,1900,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17167,1900,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17168,1900,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17169,1900,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17170,1900,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17171,1900,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17172,1900,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17173,1900,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17174,1900,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17175,1900,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17176,1900,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17177,1901,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(17178,1901,'M','/trunk/OpenOpcUaClientLib/include/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(17179,1901,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17180,1901,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17181,1901,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17182,1901,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17183,1901,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17184,1902,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17185,1902,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17186,1902,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(17187,1902,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17188,1902,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17189,1902,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17190,1902,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17191,1902,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17192,1902,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17193,1902,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17194,1902,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17195,1903,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17196,1903,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17197,1903,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17198,1903,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17199,1903,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17200,1903,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17201,1903,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17202,1903,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17203,1904,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17204,1904,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientConfig.xsd',NULL,NULL,NULL,NULL),(17205,1904,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17206,1904,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17207,1904,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17208,1904,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17209,1904,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17210,1904,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17211,1904,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17212,1904,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17213,1905,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17214,1905,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17215,1905,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17216,1905,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17217,1905,'A','/trunk/OpenOpcUaClientLib/include/XmlAttribute.h',NULL,NULL,NULL,NULL),(17218,1905,'A','/trunk/OpenOpcUaClientLib/include/XmlElement.h',NULL,NULL,NULL,NULL),(17219,1905,'A','/trunk/OpenOpcUaClientLib/include/XmlParser.h',NULL,NULL,NULL,NULL),(17220,1905,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17221,1905,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17222,1905,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17223,1905,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17224,1905,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17225,1905,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17226,1905,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17227,1905,'A','/trunk/OpenOpcUaClientLib/source/XmlAttribute.cpp',NULL,NULL,NULL,NULL),(17228,1905,'A','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17229,1905,'A','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17230,1905,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17231,1906,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17232,1906,'M','/trunk/OpenOpcUaClientLib/include/XmlParser.h',NULL,NULL,NULL,NULL),(17233,1906,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17234,1906,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17235,1906,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17236,1906,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17237,1906,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17238,1906,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17239,1907,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17240,1907,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17241,1907,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17242,1907,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17243,1907,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17244,1907,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17245,1908,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17246,1908,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17247,1908,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17248,1908,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17249,1908,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17250,1908,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17251,1908,'M','/trunk/OpenOpcUaClientLib/source/XmlAttribute.cpp',NULL,NULL,NULL,NULL),(17252,1908,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17253,1908,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17254,1908,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17255,1909,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17256,1909,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientConfig.xsd',NULL,NULL,NULL,NULL),(17257,1909,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17258,1909,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17259,1909,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(17260,1909,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17261,1909,'D','/trunk/OpenOpcUaClientLib/include/MurmurHash3.h',NULL,NULL,NULL,NULL),(17262,1909,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17263,1909,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17264,1909,'M','/trunk/OpenOpcUaClientLib/include/XmlAttribute.h',NULL,NULL,NULL,NULL),(17265,1909,'M','/trunk/OpenOpcUaClientLib/include/XmlElement.h',NULL,NULL,NULL,NULL),(17266,1909,'M','/trunk/OpenOpcUaClientLib/include/XmlParser.h',NULL,NULL,NULL,NULL),(17267,1909,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17268,1909,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17269,1909,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17270,1909,'D','/trunk/OpenOpcUaClientLib/source/MurmurHash3.cpp',NULL,NULL,NULL,NULL),(17271,1909,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17272,1909,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17273,1909,'M','/trunk/OpenOpcUaClientLib/source/XmlAttribute.cpp',NULL,NULL,NULL,NULL),(17274,1909,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17275,1909,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17276,1909,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17277,1910,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17278,1910,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17279,1910,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17280,1910,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17281,1910,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17282,1911,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17283,1911,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17284,1911,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17285,1911,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17286,1911,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17287,1911,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17288,1911,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17289,1912,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17290,1912,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17291,1912,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17292,1912,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17293,1912,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17294,1912,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17295,1912,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17296,1912,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17297,1912,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17298,1913,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17299,1913,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17300,1913,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17301,1913,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17302,1913,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17303,1913,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17304,1913,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17305,1913,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17306,1914,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17307,1914,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17308,1914,'M','/trunk/OpenOpcUaClientLib_VS2013.sln',NULL,NULL,NULL,NULL),(17309,1915,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17310,1915,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17311,1915,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17312,1915,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17313,1915,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17314,1915,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17315,1915,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17316,1915,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17317,1916,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17318,1916,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17319,1916,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17320,1916,'M','/trunk/OpenOpcUaClientLib/include/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(17321,1916,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17322,1916,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17323,1916,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17324,1916,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17325,1916,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17326,1916,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17327,1916,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17328,1916,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17329,1916,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17330,1916,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17331,1917,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17332,1917,'M','/trunk/OpenOpcUaClientLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(17333,1917,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17334,1917,'M','/trunk/OpenOpcUaClientLib/include/XmlAttribute.h',NULL,NULL,NULL,NULL),(17335,1917,'M','/trunk/OpenOpcUaClientLib/include/XmlElement.h',NULL,NULL,NULL,NULL),(17336,1917,'M','/trunk/OpenOpcUaClientLib/include/XmlParser.h',NULL,NULL,NULL,NULL),(17337,1917,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17338,1917,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17339,1917,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17340,1917,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17341,1917,'M','/trunk/OpenOpcUaClientLib/source/XmlAttribute.cpp',NULL,NULL,NULL,NULL),(17342,1917,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17343,1917,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17344,1918,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17345,1918,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17346,1918,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17347,1918,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17348,1918,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17349,1918,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17350,1918,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17351,1918,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17352,1918,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17353,1918,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17354,1918,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17355,1918,'M','/trunk/OpenOpcUaClientLib/source/XmlAttribute.cpp',NULL,NULL,NULL,NULL),(17356,1918,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17357,1918,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17358,1919,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17359,1919,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17360,1919,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17361,1919,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17362,1919,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17363,1920,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17364,1921,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17365,1921,'M','/trunk/OpenOpcUaClientLib/include/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(17366,1921,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17367,1921,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17368,1921,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17369,1921,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17370,1921,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemsNotification.cpp',NULL,NULL,NULL,NULL),(17371,1921,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17372,1921,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17373,1921,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17374,1922,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17375,1922,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17376,1922,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17377,1922,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17378,1922,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17379,1922,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17380,1923,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17381,1923,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17382,1923,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17383,1923,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17384,1923,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17385,1923,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17386,1923,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17387,1923,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17388,1924,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17389,1924,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17390,1925,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17391,1926,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17392,1927,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17393,1927,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17394,1927,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17395,1927,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17396,1928,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17397,1928,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(17398,1928,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17399,1928,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17400,1928,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17401,1928,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17402,1928,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17403,1928,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(17404,1928,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(17405,1928,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17406,1929,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(17407,1929,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17408,1929,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17409,1930,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17410,1931,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17411,1931,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17412,1931,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17413,1931,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17414,1931,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17415,1931,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17416,1932,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17417,1932,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(17418,1932,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17419,1932,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17420,1932,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17421,1932,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(17422,1932,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17423,1932,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17424,1932,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17425,1932,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17426,1932,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17427,1932,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17428,1932,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17429,1932,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17430,1933,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17431,1933,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17432,1933,'A','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(17433,1933,'A','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(17434,1934,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17435,1934,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17436,1935,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17437,1935,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17438,1936,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(17439,1936,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(17440,1936,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(17441,1936,'M','/trunk/OpenOpcUaClientLib/include/LoggerMessage.h',NULL,NULL,NULL,NULL),(17442,1936,'M','/trunk/OpenOpcUaClientLib/include/MonitoredItemClient.h',NULL,NULL,NULL,NULL),(17443,1936,'M','/trunk/OpenOpcUaClientLib/include/MonitoredItemsNotification.h',NULL,NULL,NULL,NULL),(17444,1936,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(17445,1936,'M','/trunk/OpenOpcUaClientLib/include/SubscriptionClient.h',NULL,NULL,NULL,NULL),(17446,1936,'M','/trunk/OpenOpcUaClientLib/include/UABuiltInType.h',NULL,NULL,NULL,NULL),(17447,1936,'M','/trunk/OpenOpcUaClientLib/include/XmlAttribute.h',NULL,NULL,NULL,NULL),(17448,1936,'M','/trunk/OpenOpcUaClientLib/include/XmlElement.h',NULL,NULL,NULL,NULL),(17449,1936,'M','/trunk/OpenOpcUaClientLib/include/XmlParser.h',NULL,NULL,NULL,NULL),(17450,1936,'M','/trunk/OpenOpcUaClientLib/include/targetver.h',NULL,NULL,NULL,NULL),(17451,1936,'M','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17452,1936,'M','/trunk/OpenOpcUaClientLib/source/ClientSession.cpp',NULL,NULL,NULL,NULL),(17453,1936,'M','/trunk/OpenOpcUaClientLib/source/LoggerMessage.cpp',NULL,NULL,NULL,NULL),(17454,1936,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(17455,1936,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemsNotification.cpp',NULL,NULL,NULL,NULL),(17456,1936,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(17457,1936,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(17458,1936,'M','/trunk/OpenOpcUaClientLib/source/XmlAttribute.cpp',NULL,NULL,NULL,NULL),(17459,1936,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(17460,1936,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(17461,1936,'M','/trunk/OpenOpcUaClientLib/source/dllmain.cpp',NULL,NULL,NULL,NULL),(17462,1937,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(17463,1938,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17464,1938,'D','/trunk/OpenOpcUaClientLib/source/ClientApplication.cpp',NULL,NULL,NULL,NULL),(17465,1939,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17466,1940,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17467,1941,'D','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(17468,1942,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17469,1943,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17470,1944,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17471,1945,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(17472,1946,'D','/shared/OpenOpcUaSdkClient.h',NULL,NULL,NULL,NULL),(17473,1947,'M','/OpenOpcUaQtClient/OpenOpcUaFlexClient.sln',NULL,NULL,NULL,NULL),(17474,1948,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(17475,1949,'M','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/CMakeLists.txt',NULL,NULL,NULL,NULL),(17476,1949,'M','/OpenOpcUaLinuxClient/OpenOpcUaTerminalClient/source/main.cpp',NULL,NULL,NULL,NULL),(17477,1950,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(17478,1950,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.Designer.cs',NULL,NULL,NULL,NULL),(17479,1950,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17480,1950,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.csproj',NULL,NULL,NULL,NULL),(17481,1950,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(17482,1950,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17483,1950,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSetLibrary.csproj',NULL,NULL,NULL,NULL),(17484,1950,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(17485,1950,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(17486,1951,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(17487,1951,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17488,1951,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(17489,1952,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(17490,1952,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17491,1952,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(17492,1953,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(17493,1953,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17494,1954,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(17495,1954,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17496,1954,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(17497,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk',NULL,NULL,NULL,NULL),(17498,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi',NULL,NULL,NULL,NULL),(17499,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi',NULL,NULL,NULL,NULL),(17500,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi.sln',NULL,NULL,NULL,NULL),(17501,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/CMakeLists.txt',NULL,NULL,NULL,NULL),(17502,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.def',NULL,NULL,NULL,NULL),(17503,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.rc',NULL,NULL,NULL,NULL),(17504,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.vcxproj',NULL,NULL,NULL,NULL),(17505,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.vcxproj.filters',NULL,NULL,NULL,NULL),(17506,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApid.def',NULL,NULL,NULL,NULL),(17507,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include',NULL,NULL,NULL,NULL),(17508,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/CallerInformation.h',NULL,NULL,NULL,NULL),(17509,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/ComponentDataType.h',NULL,NULL,NULL,NULL),(17510,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/DataProcessDataType.h',NULL,NULL,NULL,NULL),(17511,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/DataSegMutex.h',NULL,NULL,NULL,NULL),(17512,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/DirectAccess.h',NULL,NULL,NULL,NULL),(17513,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/DirectAccessType.h',NULL,NULL,NULL,NULL),(17514,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/FlushStepDataType.h',NULL,NULL,NULL,NULL),(17515,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/IdErrorEnum.h',NULL,NULL,NULL,NULL),(17516,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/IdFlushStateEnum.h',NULL,NULL,NULL,NULL),(17517,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/IdGunEnum.h',NULL,NULL,NULL,NULL),(17518,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/IdStateEnum.h',NULL,NULL,NULL,NULL),(17519,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/IdStatusEnum.h',NULL,NULL,NULL,NULL),(17520,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/IdStepEnum.h',NULL,NULL,NULL,NULL),(17521,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/InternalKrnlApi.h',NULL,NULL,NULL,NULL),(17522,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/PeriphIdEnum.h',NULL,NULL,NULL,NULL),(17523,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/PeriphTypeEnum.h',NULL,NULL,NULL,NULL),(17524,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/RecipeDataType.h',NULL,NULL,NULL,NULL),(17525,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/RecipeEltDataType.h',NULL,NULL,NULL,NULL),(17526,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/stdafx.h',NULL,NULL,NULL,NULL),(17527,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/targetver.h',NULL,NULL,NULL,NULL),(17528,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/resource.h',NULL,NULL,NULL,NULL),(17529,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources',NULL,NULL,NULL,NULL),(17530,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/CallerInformation.cpp',NULL,NULL,NULL,NULL),(17531,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/ComponentDataType.cpp',NULL,NULL,NULL,NULL),(17532,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/DataProcessDataType.cpp',NULL,NULL,NULL,NULL),(17533,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/DataSegMutex.cpp',NULL,NULL,NULL,NULL),(17534,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/FlushStepDataType.cpp',NULL,NULL,NULL,NULL),(17535,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(17536,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/RecipeDataType.cpp',NULL,NULL,NULL,NULL),(17537,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/RecipeEltDataType.cpp',NULL,NULL,NULL,NULL),(17538,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/stdafx.cpp',NULL,NULL,NULL,NULL),(17539,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester',NULL,NULL,NULL,NULL),(17540,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/CMakeLists.txt',NULL,NULL,NULL,NULL),(17541,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.cpp',NULL,NULL,NULL,NULL),(17542,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.vcxproj',NULL,NULL,NULL,NULL),(17543,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.vcxproj.filters',NULL,NULL,NULL,NULL),(17544,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/ReadMe.txt',NULL,NULL,NULL,NULL),(17545,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/stdafx.cpp',NULL,NULL,NULL,NULL),(17546,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/stdafx.h',NULL,NULL,NULL,NULL),(17547,1955,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/targetver.h',NULL,NULL,NULL,NULL),(17548,1956,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/CMakeLists.txt',NULL,NULL,NULL,NULL),(17549,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/CMakeLists.txt',NULL,NULL,NULL,NULL),(17550,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/VpiSk.rc',NULL,NULL,NULL,NULL),(17551,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/VpiSk.sln',NULL,NULL,NULL,NULL),(17552,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/VpiSk.vcxproj',NULL,NULL,NULL,NULL),(17553,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/include',NULL,NULL,NULL,NULL),(17554,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/include/DataProcessDataType.h',NULL,NULL,NULL,NULL),(17555,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/include/RecipeDataType.h',NULL,NULL,NULL,NULL),(17556,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/include/RecipeEltDataType.h',NULL,NULL,NULL,NULL),(17557,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/include/SourceObject.h',NULL,NULL,NULL,NULL),(17558,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17559,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/include/VpiSk.h',NULL,NULL,NULL,NULL),(17560,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/include/stdafx.h',NULL,NULL,NULL,NULL),(17561,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/include/targetver.h',NULL,NULL,NULL,NULL),(17562,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/resource.h',NULL,NULL,NULL,NULL),(17563,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/source',NULL,NULL,NULL,NULL),(17564,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17565,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17566,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17567,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.cpp',NULL,NULL,NULL,NULL),(17568,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.def',NULL,NULL,NULL,NULL),(17569,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSkd.def',NULL,NULL,NULL,NULL),(17570,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/source/dllmain.cpp',NULL,NULL,NULL,NULL),(17571,1957,'A','/OpenOpcUa_VS2013/Vpis/VpiSk/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17572,1958,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/include/SourceObject.h',NULL,NULL,NULL,NULL),(17573,1958,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/include/VpiSk.h',NULL,NULL,NULL,NULL),(17574,1958,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17575,1958,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17576,1958,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.cpp',NULL,NULL,NULL,NULL),(17577,1959,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.cpp',NULL,NULL,NULL,NULL),(17578,1960,'M','/OpenOpcUa_VS2013/include/UpdateHeaderFiles.bat',NULL,NULL,NULL,NULL),(17579,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.Designer.cs',NULL,NULL,NULL,NULL),(17580,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17581,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.resx',NULL,NULL,NULL,NULL),(17582,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(17583,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(17584,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(17585,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToNodeSetEventArgs.cs',NULL,NULL,NULL,NULL),(17586,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17587,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(17588,1961,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(17589,1962,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Definition.h',NULL,NULL,NULL,NULL),(17590,1962,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(17591,1962,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Definition.cpp',NULL,NULL,NULL,NULL),(17592,1962,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(17593,1962,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(17594,1962,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(17595,1962,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(17596,1962,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(17597,1963,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.sln',NULL,NULL,NULL,NULL),(17598,1964,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSetLibrary.csproj',NULL,NULL,NULL,NULL),(17599,1965,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.csproj',NULL,NULL,NULL,NULL),(17600,1966,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/CMakeLists.txt',NULL,NULL,NULL,NULL),(17601,1967,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(17602,1967,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17603,1967,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17604,1967,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(17605,1968,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/DirectAccessType.h',NULL,NULL,NULL,NULL),(17606,1968,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/include/stdafx.h',NULL,NULL,NULL,NULL),(17607,1968,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccess.cpp',NULL,NULL,NULL,NULL),(17608,1969,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(17609,1969,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VPINullEx.h',NULL,NULL,NULL,NULL),(17610,1969,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17611,1969,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17612,1969,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17613,1969,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(17614,1969,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17615,1970,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17616,1970,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(17617,1971,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VPINullEx.h',NULL,NULL,NULL,NULL),(17618,1971,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(17619,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP',NULL,NULL,NULL,NULL),(17620,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/CMakeLists.txt',NULL,NULL,NULL,NULL),(17621,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.rc',NULL,NULL,NULL,NULL),(17622,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.vcxproj',NULL,NULL,NULL,NULL),(17623,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP_VS2013.sln',NULL,NULL,NULL,NULL),(17624,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include',NULL,NULL,NULL,NULL),(17625,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/SourceObject.h',NULL,NULL,NULL,NULL),(17626,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17627,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/VpiTP.h',NULL,NULL,NULL,NULL),(17628,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/stdafx.h',NULL,NULL,NULL,NULL),(17629,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/targetver.h',NULL,NULL,NULL,NULL),(17630,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/resource.h',NULL,NULL,NULL,NULL),(17631,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source',NULL,NULL,NULL,NULL),(17632,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17633,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17634,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17635,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(17636,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.def',NULL,NULL,NULL,NULL),(17637,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTPd.def',NULL,NULL,NULL,NULL),(17638,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/dllmain.cpp',NULL,NULL,NULL,NULL),(17639,1972,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17640,1973,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.def',NULL,NULL,NULL,NULL),(17641,1973,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApid.def',NULL,NULL,NULL,NULL),(17642,1973,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/CallerInformation.h',NULL,NULL,NULL,NULL),(17643,1973,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/InternalKrnlApi.h',NULL,NULL,NULL,NULL),(17644,1973,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/CallerInformation.cpp',NULL,NULL,NULL,NULL),(17645,1973,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(17646,1973,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.cpp',NULL,NULL,NULL,NULL),(17647,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.vcxproj',NULL,NULL,NULL,NULL),(17648,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/SourceObject.h',NULL,NULL,NULL,NULL),(17649,1974,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/TPDataFileReader.h',NULL,NULL,NULL,NULL),(17650,1974,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/TechPapElement.h',NULL,NULL,NULL,NULL),(17651,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17652,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/VpiTP.h',NULL,NULL,NULL,NULL),(17653,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/stdafx.h',NULL,NULL,NULL,NULL),(17654,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17655,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17656,1974,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(17657,1974,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TechPapElement.cpp',NULL,NULL,NULL,NULL),(17658,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17659,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(17660,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.def',NULL,NULL,NULL,NULL),(17661,1974,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTPd.def',NULL,NULL,NULL,NULL),(17662,1975,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.vcxproj',NULL,NULL,NULL,NULL),(17663,1975,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/TechPapRoot.h',NULL,NULL,NULL,NULL),(17664,1975,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/VpiTP.h',NULL,NULL,NULL,NULL),(17665,1975,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/stdafx.h',NULL,NULL,NULL,NULL),(17666,1975,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(17667,1975,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TechPapElement.cpp',NULL,NULL,NULL,NULL),(17668,1975,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TechPapRoot.cpp',NULL,NULL,NULL,NULL),(17669,1975,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(17670,1976,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/VpiTP.h',NULL,NULL,NULL,NULL),(17671,1976,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(17672,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.vcxproj',NULL,NULL,NULL,NULL),(17673,1977,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/DataSegMutex.h',NULL,NULL,NULL,NULL),(17674,1977,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/include/DirectAccessType.h',NULL,NULL,NULL,NULL),(17675,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/TPDataFileReader.h',NULL,NULL,NULL,NULL),(17676,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/stdafx.h',NULL,NULL,NULL,NULL),(17677,1977,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/source/DataSegMutex.cpp',NULL,NULL,NULL,NULL),(17678,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17679,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(17680,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TechPapElement.cpp',NULL,NULL,NULL,NULL),(17681,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(17682,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.def',NULL,NULL,NULL,NULL),(17683,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTPd.def',NULL,NULL,NULL,NULL),(17684,1977,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17685,1978,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/TPDataFileReader.h',NULL,NULL,NULL,NULL),(17686,1978,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/TechPapElement.h',NULL,NULL,NULL,NULL),(17687,1978,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17688,1978,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(17689,1978,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TechPapElement.cpp',NULL,NULL,NULL,NULL),(17690,1978,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17691,1978,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(17692,1979,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess/source/VPIDirectAccess.cpp',NULL,NULL,NULL,NULL),(17693,1980,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.rc',NULL,NULL,NULL,NULL),(17694,1980,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/resource.h',NULL,NULL,NULL,NULL),(17695,1980,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(17696,1980,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17697,1980,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(17698,1981,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.rc',NULL,NULL,NULL,NULL),(17699,1981,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/TPDataFileReader.h',NULL,NULL,NULL,NULL),(17700,1981,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17701,1981,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17702,1981,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(17703,1981,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TechPapElement.cpp',NULL,NULL,NULL,NULL),(17704,1982,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17705,1982,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(17706,1982,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TechPapElement.cpp',NULL,NULL,NULL,NULL),(17707,1982,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(17708,1983,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess/OpenOpcUa_DirectAccess.vcxproj',NULL,NULL,NULL,NULL),(17709,1983,'M','/OpenOpcUa_VS2013/Vpis/VPIDirectAccess/VPIDirectAccess_VS2013.sln',NULL,NULL,NULL,NULL),(17710,1984,'M','/OpenOpcUa_VS2013/XmiToUANodeSet/XmiToUANodeSet.Designer.cs',NULL,NULL,NULL,NULL),(17711,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient',NULL,NULL,NULL,NULL),(17712,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/CMakeLists.txt',NULL,NULL,NULL,NULL),(17713,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/VpiTcpClient.def',NULL,NULL,NULL,NULL),(17714,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/VpiTcpClient.rc',NULL,NULL,NULL,NULL),(17715,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/VpiTcpClient.sln',NULL,NULL,NULL,NULL),(17716,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/VpiTcpClient.vcxproj',NULL,NULL,NULL,NULL),(17717,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/VpiTcpClientd.def',NULL,NULL,NULL,NULL),(17718,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/include',NULL,NULL,NULL,NULL),(17719,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/include/SourceObject.h',NULL,NULL,NULL,NULL),(17720,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17721,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/include/VpiTcpClient.h',NULL,NULL,NULL,NULL),(17722,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/include/stdafx.h',NULL,NULL,NULL,NULL),(17723,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/include/targetver.h',NULL,NULL,NULL,NULL),(17724,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/resource.h',NULL,NULL,NULL,NULL),(17725,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/source',NULL,NULL,NULL,NULL),(17726,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17727,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17728,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17729,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/source/VpiTcpClient.cpp',NULL,NULL,NULL,NULL),(17730,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/source/dllmain.cpp',NULL,NULL,NULL,NULL),(17731,1985,'A','/OpenOpcUa_VS2013/Vpis/VpiTcpClient/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17732,1986,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17733,1986,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/include/VpiSk.h',NULL,NULL,NULL,NULL),(17734,1986,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17735,1986,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17736,1986,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.cpp',NULL,NULL,NULL,NULL),(17737,1987,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/CallerInformation.cpp',NULL,NULL,NULL,NULL),(17738,1987,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(17739,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp',NULL,NULL,NULL,NULL),(17740,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/CMakeLists.txt',NULL,NULL,NULL,NULL),(17741,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/VpiUadp.sln',NULL,NULL,NULL,NULL),(17742,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/VpiUadp.vcxproj',NULL,NULL,NULL,NULL),(17743,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/VpiUadp.vcxproj.filters',NULL,NULL,NULL,NULL),(17744,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/include',NULL,NULL,NULL,NULL),(17745,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/include/SourceObject.h',NULL,NULL,NULL,NULL),(17746,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17747,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/include/VpiUadp.h',NULL,NULL,NULL,NULL),(17748,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/include/opcua_pubsub_connection.h',NULL,NULL,NULL,NULL),(17749,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/include/opcua_uadp_networkmessage.h',NULL,NULL,NULL,NULL),(17750,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/include/stdafx.h',NULL,NULL,NULL,NULL),(17751,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/include/targetver.h',NULL,NULL,NULL,NULL),(17752,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source',NULL,NULL,NULL,NULL),(17753,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17754,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17755,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17756,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source/VpiUadp.cpp',NULL,NULL,NULL,NULL),(17757,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source/VpiUadp.def',NULL,NULL,NULL,NULL),(17758,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source/VpiUadpd.def',NULL,NULL,NULL,NULL),(17759,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source/dllmain.cpp',NULL,NULL,NULL,NULL),(17760,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source/opcua_uadp_binarydecoder.c',NULL,NULL,NULL,NULL),(17761,1988,'A','/OpenOpcUa_VS2013/Vpis/VpiUadp/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17762,1989,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(17763,1989,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(17764,1989,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(17765,1990,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(17766,1990,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(17767,1990,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(17768,1991,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17769,1991,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17770,1991,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(17771,1991,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/TcpSrvRequest.cpp',NULL,NULL,NULL,NULL),(17772,1991,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17773,1991,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/VpiTcpSrv.def',NULL,NULL,NULL,NULL),(17774,1991,'M','/OpenOpcUa_VS2013/Vpis/VpiTcpSrv/source/VpiTcpSrvd.def',NULL,NULL,NULL,NULL),(17775,1992,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.rc',NULL,NULL,NULL,NULL),(17776,1992,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17777,1992,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(17778,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer',NULL,NULL,NULL,NULL),(17779,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/VpiMdbServer.sln',NULL,NULL,NULL,NULL),(17780,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/VpiMdbServer.vcxproj',NULL,NULL,NULL,NULL),(17781,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include',NULL,NULL,NULL,NULL),(17782,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/RequestNodeId.h',NULL,NULL,NULL,NULL),(17783,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/ResponseDataValue.h',NULL,NULL,NULL,NULL),(17784,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/SourceObject.h',NULL,NULL,NULL,NULL),(17785,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpClient.h',NULL,NULL,NULL,NULL),(17786,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpSrvRequest.h',NULL,NULL,NULL,NULL),(17787,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpSrvResponse.h',NULL,NULL,NULL,NULL),(17788,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17789,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/VpiMdbServer.h',NULL,NULL,NULL,NULL),(17790,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/stdafx.h',NULL,NULL,NULL,NULL),(17791,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/targetver.h',NULL,NULL,NULL,NULL),(17792,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source',NULL,NULL,NULL,NULL),(17793,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17794,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/RequestNodeId.cpp',NULL,NULL,NULL,NULL),(17795,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/ResponseDataValue.cpp',NULL,NULL,NULL,NULL),(17796,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17797,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(17798,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvRequest.cpp',NULL,NULL,NULL,NULL),(17799,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvResponse.cpp',NULL,NULL,NULL,NULL),(17800,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17801,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.cpp',NULL,NULL,NULL,NULL),(17802,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.def',NULL,NULL,NULL,NULL),(17803,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServerd.def',NULL,NULL,NULL,NULL),(17804,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/dllmain.cpp',NULL,NULL,NULL,NULL),(17805,1993,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17806,1994,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(17807,1994,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(17808,1995,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/VpiMdbServer.rc',NULL,NULL,NULL,NULL),(17809,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpClient.h',NULL,NULL,NULL,NULL),(17810,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpSrvRequest.h',NULL,NULL,NULL,NULL),(17811,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpSrvResponse.h',NULL,NULL,NULL,NULL),(17812,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/VpiMdbServer.h',NULL,NULL,NULL,NULL),(17813,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/stdafx.h',NULL,NULL,NULL,NULL),(17814,1995,'A','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/resource.h',NULL,NULL,NULL,NULL),(17815,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17816,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(17817,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvRequest.cpp',NULL,NULL,NULL,NULL),(17818,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvResponse.cpp',NULL,NULL,NULL,NULL),(17819,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17820,1995,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.cpp',NULL,NULL,NULL,NULL),(17821,1996,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpSrvResponse.h',NULL,NULL,NULL,NULL),(17822,1996,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/VpiMdbServer.h',NULL,NULL,NULL,NULL),(17823,1996,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(17824,1996,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvRequest.cpp',NULL,NULL,NULL,NULL),(17825,1996,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvResponse.cpp',NULL,NULL,NULL,NULL),(17826,1996,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17827,1996,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.cpp',NULL,NULL,NULL,NULL),(17828,1997,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpSrvRequest.h',NULL,NULL,NULL,NULL),(17829,1997,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpSrvResponse.h',NULL,NULL,NULL,NULL),(17830,1997,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(17831,1997,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvRequest.cpp',NULL,NULL,NULL,NULL),(17832,1997,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvResponse.cpp',NULL,NULL,NULL,NULL),(17833,1998,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17834,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/VpiMdbServer.vcxproj',NULL,NULL,NULL,NULL),(17835,1999,'D','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/RequestNodeId.h',NULL,NULL,NULL,NULL),(17836,1999,'D','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/ResponseDataValue.h',NULL,NULL,NULL,NULL),(17837,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/SourceObject.h',NULL,NULL,NULL,NULL),(17838,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpClient.h',NULL,NULL,NULL,NULL),(17839,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/TcpSrvRequest.h',NULL,NULL,NULL,NULL),(17840,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/VpiMdbServer.h',NULL,NULL,NULL,NULL),(17841,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/stdafx.h',NULL,NULL,NULL,NULL),(17842,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17843,1999,'D','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/RequestNodeId.cpp',NULL,NULL,NULL,NULL),(17844,1999,'D','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/ResponseDataValue.cpp',NULL,NULL,NULL,NULL),(17845,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17846,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(17847,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvRequest.cpp',NULL,NULL,NULL,NULL),(17848,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvResponse.cpp',NULL,NULL,NULL,NULL),(17849,1999,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.cpp',NULL,NULL,NULL,NULL),(17850,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/SourceObject.h',NULL,NULL,NULL,NULL),(17851,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/VpiInternal.h',NULL,NULL,NULL,NULL),(17852,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/VpiMdbServer.h',NULL,NULL,NULL,NULL),(17853,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17854,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17855,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(17856,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvRequest.cpp',NULL,NULL,NULL,NULL),(17857,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpSrvResponse.cpp',NULL,NULL,NULL,NULL),(17858,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17859,2000,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.cpp',NULL,NULL,NULL,NULL),(17860,2001,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(17861,2002,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/VpiMdbServer.rc',NULL,NULL,NULL,NULL),(17862,2002,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/resource.h',NULL,NULL,NULL,NULL),(17863,2002,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(17864,2002,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17865,2002,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.cpp',NULL,NULL,NULL,NULL),(17866,2003,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/VpiMdbServer.rc',NULL,NULL,NULL,NULL),(17867,2003,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17868,2004,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(17869,2004,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(17870,2005,'A','/OpenOpcUa_VS2013/XiMulator',NULL,NULL,NULL,NULL),(17871,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator',NULL,NULL,NULL,NULL),(17872,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator.sln',NULL,NULL,NULL,NULL),(17873,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/58px-Loupe.svg.png',NULL,NULL,NULL,NULL),(17874,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/App.config',NULL,NULL,NULL,NULL),(17875,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.Designer.cs',NULL,NULL,NULL,NULL),(17876,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.cs',NULL,NULL,NULL,NULL),(17877,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.resx',NULL,NULL,NULL,NULL),(17878,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/Program.cs',NULL,NULL,NULL,NULL),(17879,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectNameForm.Designer.cs',NULL,NULL,NULL,NULL),(17880,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectNameForm.cs',NULL,NULL,NULL,NULL),(17881,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectNameForm.resx',NULL,NULL,NULL,NULL),(17882,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties',NULL,NULL,NULL,NULL),(17883,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(17884,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/Resources.Designer.cs',NULL,NULL,NULL,NULL),(17885,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/Resources.resx',NULL,NULL,NULL,NULL),(17886,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/Settings.Designer.cs',NULL,NULL,NULL,NULL),(17887,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/Settings.settings',NULL,NULL,NULL,NULL),(17888,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.Designer.cs',NULL,NULL,NULL,NULL),(17889,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(17890,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.csproj',NULL,NULL,NULL,NULL),(17891,2005,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.resx',NULL,NULL,NULL,NULL),(17892,2005,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(17893,2005,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(17894,2005,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17895,2005,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(17896,2006,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(17897,2006,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(17898,2007,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(17899,2007,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(17900,2008,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(17901,2008,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(17902,2008,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(17903,2008,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(17904,2008,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(17905,2009,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.rc',NULL,NULL,NULL,NULL),(17906,2009,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/DirectAccessType.h',NULL,NULL,NULL,NULL),(17907,2009,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(17908,2010,'A','/Vfis_VS2013.sln',NULL,NULL,NULL,NULL),(17909,2010,'A','/include/SharedVfis.vcxproj',NULL,NULL,NULL,NULL),(17910,2010,'A','/include/SharedVfis.vcxproj.filters',NULL,NULL,NULL,NULL),(17911,2011,'A','/VfiCsv/VfiCsv.vcxproj',NULL,NULL,NULL,NULL),(17912,2011,'A','/VfiCsv/VfiCsv.vcxproj.filters',NULL,NULL,NULL,NULL),(17913,2011,'A','/VfiCsv/VfiCsv_VS2013.sln',NULL,NULL,NULL,NULL),(17914,2012,'M','/VfiCsv/CSVFile.cpp',NULL,NULL,NULL,NULL),(17915,2012,'M','/VfiCsv/CSVFile.h',NULL,NULL,NULL,NULL),(17916,2012,'A','/VfiCsv/InternalVfiRecord.cpp',NULL,NULL,NULL,NULL),(17917,2012,'A','/VfiCsv/InternalVfiRecord.h',NULL,NULL,NULL,NULL),(17918,2012,'M','/VfiCsv/LineHistorian.cpp',NULL,NULL,NULL,NULL),(17919,2012,'M','/VfiCsv/LineHistorian.h',NULL,NULL,NULL,NULL),(17920,2012,'M','/VfiCsv/VfiCsv.cpp',NULL,NULL,NULL,NULL),(17921,2012,'M','/VfiCsv/VfiCsv.vcxproj',NULL,NULL,NULL,NULL),(17922,2012,'M','/VfiCsv/VfiCsv.vcxproj.filters',NULL,NULL,NULL,NULL),(17923,2012,'M','/VfiCsv/dllmain.cpp',NULL,NULL,NULL,NULL),(17924,2012,'M','/VfiCsv/stdafx.cpp',NULL,NULL,NULL,NULL),(17925,2012,'M','/VfiCsv/stdafx.h',NULL,NULL,NULL,NULL),(17926,2013,'M','/VfiCsv/CSVFile.cpp',NULL,NULL,NULL,NULL),(17927,2013,'M','/VfiCsv/CSVFile.h',NULL,NULL,NULL,NULL),(17928,2013,'M','/VfiCsv/InternalVfiRecord.cpp',NULL,NULL,NULL,NULL),(17929,2013,'M','/VfiCsv/InternalVfiRecord.h',NULL,NULL,NULL,NULL),(17930,2013,'M','/VfiCsv/LineHistorian.cpp',NULL,NULL,NULL,NULL),(17931,2013,'M','/VfiCsv/LineHistorian.h',NULL,NULL,NULL,NULL),(17932,2013,'M','/VfiCsv/VfiCsv.cpp',NULL,NULL,NULL,NULL),(17933,2013,'M','/VfiCsv/VfiCsv.vcxproj',NULL,NULL,NULL,NULL),(17934,2013,'M','/VfiCsv/VfiInternal.cpp',NULL,NULL,NULL,NULL),(17935,2013,'M','/VfiCsv/VfiInternal.h',NULL,NULL,NULL,NULL),(17936,2013,'M','/VfiCsv/stdafx.cpp',NULL,NULL,NULL,NULL),(17937,2013,'M','/VfiCsv/stdafx.h',NULL,NULL,NULL,NULL),(17938,2014,'A','/OpenOpcUaVfiLibrary',NULL,NULL,NULL,NULL),(17939,2014,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary',NULL,NULL,NULL,NULL),(17940,2014,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.sln',NULL,NULL,NULL,NULL),(17941,2014,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.cpp',NULL,NULL,NULL,NULL),(17942,2014,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj',NULL,NULL,NULL,NULL),(17943,2014,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(17944,2014,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/dllmain.cpp',NULL,NULL,NULL,NULL),(17945,2014,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/stdafx.cpp',NULL,NULL,NULL,NULL),(17946,2014,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/stdafx.h',NULL,NULL,NULL,NULL),(17947,2014,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/targetver.h',NULL,NULL,NULL,NULL),(17948,2015,'D','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.cpp',NULL,NULL,NULL,NULL),(17949,2015,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj',NULL,NULL,NULL,NULL),(17950,2015,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(17951,2016,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj',NULL,NULL,NULL,NULL),(17952,2016,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source',NULL,NULL,NULL,NULL),(17953,2016,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/OpenOpcUaVfiLibrary.cpp',NULL,NULL,NULL,NULL),(17954,2017,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(17955,2018,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj',NULL,NULL,NULL,NULL),(17956,2018,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(17957,2018,'D','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/dllmain.cpp',NULL,NULL,NULL,NULL),(17958,2018,'D','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/stdafx.cpp',NULL,NULL,NULL,NULL),(17959,2019,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj',NULL,NULL,NULL,NULL),(17960,2019,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/dllmain.cpp',NULL,NULL,NULL,NULL),(17961,2019,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17962,2020,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(17963,2021,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj',NULL,NULL,NULL,NULL),(17964,2021,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(17965,2021,'D','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/stdafx.h',NULL,NULL,NULL,NULL),(17966,2021,'D','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/targetver.h',NULL,NULL,NULL,NULL),(17967,2022,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj',NULL,NULL,NULL,NULL),(17968,2022,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(17969,2022,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include',NULL,NULL,NULL,NULL),(17970,2022,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/stdafx.h',NULL,NULL,NULL,NULL),(17971,2022,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/targetver.h',NULL,NULL,NULL,NULL),(17972,2023,'A','/VfiSql',NULL,NULL,NULL,NULL),(17973,2023,'A','/VfiSql/CMakeLists.txt',NULL,NULL,NULL,NULL),(17974,2023,'A','/VfiSql/VfiSql.rc',NULL,NULL,NULL,NULL),(17975,2023,'A','/VfiSql/VfiSql.vcxproj',NULL,NULL,NULL,NULL),(17976,2023,'A','/VfiSql/include',NULL,NULL,NULL,NULL),(17977,2023,'A','/VfiSql/include/InternalVfiRecord.h',NULL,NULL,NULL,NULL),(17978,2023,'A','/VfiSql/include/VfiInternal.h',NULL,NULL,NULL,NULL),(17979,2023,'A','/VfiSql/include/VfiSql.h',NULL,NULL,NULL,NULL),(17980,2023,'A','/VfiSql/include/stdafx.h',NULL,NULL,NULL,NULL),(17981,2023,'A','/VfiSql/include/targetver.h',NULL,NULL,NULL,NULL),(17982,2023,'A','/VfiSql/resource.h',NULL,NULL,NULL,NULL),(17983,2023,'A','/VfiSql/source',NULL,NULL,NULL,NULL),(17984,2023,'A','/VfiSql/source/InternalVfiRecord.cpp',NULL,NULL,NULL,NULL),(17985,2023,'A','/VfiSql/source/VfiInternal.cpp',NULL,NULL,NULL,NULL),(17986,2023,'A','/VfiSql/source/VfiSql.cpp',NULL,NULL,NULL,NULL),(17987,2023,'A','/VfiSql/source/VfiSql.def',NULL,NULL,NULL,NULL),(17988,2023,'A','/VfiSql/source/VfiSqld.def',NULL,NULL,NULL,NULL),(17989,2023,'A','/VfiSql/source/dllmain.cpp',NULL,NULL,NULL,NULL),(17990,2023,'A','/VfiSql/source/stdafx.cpp',NULL,NULL,NULL,NULL),(17991,2024,'A','/VfiSql/VfiSql_VS2013.sln',NULL,NULL,NULL,NULL),(17992,2024,'M','/VfiSql/include/InternalVfiRecord.h',NULL,NULL,NULL,NULL),(17993,2024,'M','/VfiSql/include/VfiInternal.h',NULL,NULL,NULL,NULL),(17994,2024,'M','/VfiSql/include/VfiSql.h',NULL,NULL,NULL,NULL),(17995,2024,'M','/VfiSql/source/InternalVfiRecord.cpp',NULL,NULL,NULL,NULL),(17996,2024,'M','/VfiSql/source/VfiInternal.cpp',NULL,NULL,NULL,NULL),(17997,2024,'M','/VfiSql/source/VfiSql.cpp',NULL,NULL,NULL,NULL),(17998,2025,'M','/VfiCsv/VfiCsv.vcxproj',NULL,NULL,NULL,NULL),(17999,2025,'M','/VfiCsv/VfiCsv.vcxproj.filters',NULL,NULL,NULL,NULL),(18000,2025,'A','/VfiCsv/include',NULL,NULL,NULL,NULL),(18001,2025,'A','/VfiCsv/include/CSVFile.h',NULL,NULL,NULL,NULL),(18002,2025,'A','/VfiCsv/include/InternalVfiRecord.h',NULL,NULL,NULL,NULL),(18003,2025,'A','/VfiCsv/include/LineHistorian.h',NULL,NULL,NULL,NULL),(18004,2025,'A','/VfiCsv/include/VfiCsv.h',NULL,NULL,NULL,NULL),(18005,2025,'A','/VfiCsv/include/VfiInternal.h',NULL,NULL,NULL,NULL),(18006,2025,'A','/VfiCsv/include/stdafx.h',NULL,NULL,NULL,NULL),(18007,2025,'A','/VfiCsv/include/targetver.h',NULL,NULL,NULL,NULL),(18008,2025,'A','/VfiCsv/source',NULL,NULL,NULL,NULL),(18009,2025,'A','/VfiCsv/source/CSVFile.cpp',NULL,NULL,NULL,NULL),(18010,2025,'A','/VfiCsv/source/InternalVfiRecord.cpp',NULL,NULL,NULL,NULL),(18011,2025,'A','/VfiCsv/source/LineHistorian.cpp',NULL,NULL,NULL,NULL),(18012,2025,'A','/VfiCsv/source/VfiCsv.cpp',NULL,NULL,NULL,NULL),(18013,2025,'A','/VfiCsv/source/VfiCsv.def',NULL,NULL,NULL,NULL),(18014,2025,'A','/VfiCsv/source/VfiCsvd.def',NULL,NULL,NULL,NULL),(18015,2025,'A','/VfiCsv/source/VfiInternal.cpp',NULL,NULL,NULL,NULL),(18016,2025,'A','/VfiCsv/source/dllmain.cpp',NULL,NULL,NULL,NULL),(18017,2025,'A','/VfiCsv/source/stdafx.cpp',NULL,NULL,NULL,NULL),(18018,2026,'M','/VfiSql/include/InternalVfiRecord.h',NULL,NULL,NULL,NULL),(18019,2026,'M','/VfiSql/source/InternalVfiRecord.cpp',NULL,NULL,NULL,NULL),(18020,2026,'M','/VfiSql/source/VfiInternal.cpp',NULL,NULL,NULL,NULL),(18021,2026,'M','/VfiSql/source/VfiSql.cpp',NULL,NULL,NULL,NULL),(18022,2027,'M','/VfiSql/include/VfiSql.h',NULL,NULL,NULL,NULL),(18023,2027,'M','/VfiSql/source/VfiInternal.cpp',NULL,NULL,NULL,NULL),(18024,2027,'M','/VfiSql/source/VfiSql.cpp',NULL,NULL,NULL,NULL),(18025,2027,'M','/VfiSql/source/VfiSql.def',NULL,NULL,NULL,NULL),(18026,2027,'M','/VfiSql/source/VfiSqld.def',NULL,NULL,NULL,NULL),(18027,2028,'M','/VfiSql/include/VfiSql.h',NULL,NULL,NULL,NULL),(18028,2028,'M','/VfiSql/source/VfiSql.cpp',NULL,NULL,NULL,NULL),(18029,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/CMakeLists.txt',NULL,NULL,NULL,NULL),(18030,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.rc',NULL,NULL,NULL,NULL),(18031,2029,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj',NULL,NULL,NULL,NULL),(18032,2029,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj.filters',NULL,NULL,NULL,NULL),(18033,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiByteString.h',NULL,NULL,NULL,NULL),(18034,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiConfig.h',NULL,NULL,NULL,NULL),(18035,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiDataValue.h',NULL,NULL,NULL,NULL),(18036,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiDatetime.h',NULL,NULL,NULL,NULL),(18037,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiExpandedNodeId.h',NULL,NULL,NULL,NULL),(18038,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiGuid.h',NULL,NULL,NULL,NULL),(18039,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiInternalThread.h',NULL,NULL,NULL,NULL),(18040,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiLocalizedText.h',NULL,NULL,NULL,NULL),(18041,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiMacroDef.h',NULL,NULL,NULL,NULL),(18042,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiMemory.h',NULL,NULL,NULL,NULL),(18043,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiMutex.h',NULL,NULL,NULL,NULL),(18044,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiNodeId.h',NULL,NULL,NULL,NULL),(18045,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiOs.h',NULL,NULL,NULL,NULL),(18046,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiPlatformdefs.h',NULL,NULL,NULL,NULL),(18047,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiProxyStub.h',NULL,NULL,NULL,NULL),(18048,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiQualifiedName.h',NULL,NULL,NULL,NULL),(18049,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiSemaphore.h',NULL,NULL,NULL,NULL),(18050,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiString.h',NULL,NULL,NULL,NULL),(18051,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiThread.h',NULL,NULL,NULL,NULL),(18052,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiTrace.h',NULL,NULL,NULL,NULL),(18053,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiTypes.h',NULL,NULL,NULL,NULL),(18054,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiVariant.h',NULL,NULL,NULL,NULL),(18055,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiXmlElement.h',NULL,NULL,NULL,NULL),(18056,2029,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/stdafx.h',NULL,NULL,NULL,NULL),(18057,2029,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/targetver.h',NULL,NULL,NULL,NULL),(18058,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/resource.h',NULL,NULL,NULL,NULL),(18059,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiByteString.cpp',NULL,NULL,NULL,NULL),(18060,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiDataValue.cpp',NULL,NULL,NULL,NULL),(18061,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiDatetime.cpp',NULL,NULL,NULL,NULL),(18062,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiExpandedNodeId.cpp',NULL,NULL,NULL,NULL),(18063,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiGuid.cpp',NULL,NULL,NULL,NULL),(18064,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiInternalThread.cpp',NULL,NULL,NULL,NULL),(18065,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiLocalizedText.cpp',NULL,NULL,NULL,NULL),(18066,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiMemory.cpp',NULL,NULL,NULL,NULL),(18067,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiMutex.cpp',NULL,NULL,NULL,NULL),(18068,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiNodeId.cpp',NULL,NULL,NULL,NULL),(18069,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiQualifiedName.cpp',NULL,NULL,NULL,NULL),(18070,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiSemaphore.cpp',NULL,NULL,NULL,NULL),(18071,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiString.cpp',NULL,NULL,NULL,NULL),(18072,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiThread.cpp',NULL,NULL,NULL,NULL),(18073,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiTrace.cpp',NULL,NULL,NULL,NULL),(18074,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiVariant.cpp',NULL,NULL,NULL,NULL),(18075,2029,'A','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiXmlElement.cpp',NULL,NULL,NULL,NULL),(18076,2029,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/stdafx.cpp',NULL,NULL,NULL,NULL),(18077,2030,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/source/VfiNodeId.cpp',NULL,NULL,NULL,NULL),(18078,2031,'M','/VfiCsv/VfiCsv.vcxproj',NULL,NULL,NULL,NULL),(18079,2031,'M','/VfiCsv/VfiCsv_VS2013.sln',NULL,NULL,NULL,NULL),(18080,2031,'M','/VfiCsv/source/VfiCsv.cpp',NULL,NULL,NULL,NULL),(18081,2031,'M','/VfiCsv/source/VfiCsv.def',NULL,NULL,NULL,NULL),(18082,2031,'M','/VfiCsv/source/VfiCsvd.def',NULL,NULL,NULL,NULL),(18083,2032,'M','/VfiSql/VfiSql.rc',NULL,NULL,NULL,NULL),(18084,2032,'M','/VfiSql/VfiSql.vcxproj',NULL,NULL,NULL,NULL),(18085,2032,'M','/VfiSql/include/VfiInternal.h',NULL,NULL,NULL,NULL),(18086,2032,'M','/VfiSql/include/VfiSql.h',NULL,NULL,NULL,NULL),(18087,2032,'M','/VfiSql/source/VfiInternal.cpp',NULL,NULL,NULL,NULL),(18088,2032,'M','/VfiSql/source/VfiSql.cpp',NULL,NULL,NULL,NULL),(18089,2033,'A','/VfiXxx',NULL,NULL,NULL,NULL),(18090,2033,'A','/VfiXxx/CMakeLists.txt',NULL,NULL,NULL,NULL),(18091,2033,'A','/VfiXxx/VfiXxx.vcxproj',NULL,NULL,NULL,NULL),(18092,2033,'A','/VfiXxx/VfiXxx_VS2013.sln',NULL,NULL,NULL,NULL),(18093,2033,'A','/VfiXxx/include',NULL,NULL,NULL,NULL),(18094,2033,'A','/VfiXxx/include/InternalVfiRecord.h',NULL,NULL,NULL,NULL),(18095,2033,'A','/VfiXxx/include/VfiInternal.h',NULL,NULL,NULL,NULL),(18096,2033,'A','/VfiXxx/include/VfiXxx.h',NULL,NULL,NULL,NULL),(18097,2033,'A','/VfiXxx/include/stdafx.h',NULL,NULL,NULL,NULL),(18098,2033,'A','/VfiXxx/include/targetver.h',NULL,NULL,NULL,NULL),(18099,2033,'A','/VfiXxx/source',NULL,NULL,NULL,NULL),(18100,2033,'A','/VfiXxx/source/InternalVfiRecord.cpp',NULL,NULL,NULL,NULL),(18101,2033,'A','/VfiXxx/source/VfiInternal.cpp',NULL,NULL,NULL,NULL),(18102,2033,'A','/VfiXxx/source/VfiXxx.cpp',NULL,NULL,NULL,NULL),(18103,2033,'A','/VfiXxx/source/VfiXxx.def',NULL,NULL,NULL,NULL),(18104,2033,'A','/VfiXxx/source/VfiXxxd.def',NULL,NULL,NULL,NULL),(18105,2033,'A','/VfiXxx/source/dllmain.cpp',NULL,NULL,NULL,NULL),(18106,2033,'A','/VfiXxx/source/stdafx.cpp',NULL,NULL,NULL,NULL),(18107,2034,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.sln',NULL,NULL,NULL,NULL),(18108,2034,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary.vcxproj',NULL,NULL,NULL,NULL),(18109,2034,'M','/OpenOpcUaVfiLibrary/OpenOpcUaVfiLibrary/include/VfiOs.h',NULL,NULL,NULL,NULL),(18110,2035,'M','/VfiXxx/VfiXxx_VS2013.sln',NULL,NULL,NULL,NULL),(18111,2036,'M','/VfiSql/VfiSql.rc',NULL,NULL,NULL,NULL),(18112,2036,'M','/VfiSql/VfiSql.vcxproj',NULL,NULL,NULL,NULL),(18113,2036,'M','/VfiSql/VfiSql_VS2013.sln',NULL,NULL,NULL,NULL),(18114,2036,'M','/VfiSql/include/stdafx.h',NULL,NULL,NULL,NULL),(18115,2036,'M','/VfiSql/source/VfiInternal.cpp',NULL,NULL,NULL,NULL),(18116,2036,'M','/VfiSql/source/VfiSql.cpp',NULL,NULL,NULL,NULL),(18117,2036,'M','/VfiSql/source/VfiSql.def',NULL,NULL,NULL,NULL),(18118,2036,'M','/VfiSql/source/VfiSqld.def',NULL,NULL,NULL,NULL),(18119,2037,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.rc',NULL,NULL,NULL,NULL),(18120,2037,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.vcxproj',NULL,NULL,NULL,NULL),(18121,2037,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/SourceObject.h',NULL,NULL,NULL,NULL),(18122,2037,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/include/VpiTP.h',NULL,NULL,NULL,NULL),(18123,2037,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18124,2037,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(18125,2037,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(18126,2037,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/stdafx.cpp',NULL,NULL,NULL,NULL),(18127,2038,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18128,2038,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(18129,2038,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(18130,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess',NULL,NULL,NULL,NULL),(18131,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess',NULL,NULL,NULL,NULL),(18132,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess.sln',NULL,NULL,NULL,NULL),(18133,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess.cpp',NULL,NULL,NULL,NULL),(18134,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess.h',NULL,NULL,NULL,NULL),(18135,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess.rc',NULL,NULL,NULL,NULL),(18136,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess.vcxproj',NULL,NULL,NULL,NULL),(18137,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccessDlg.cpp',NULL,NULL,NULL,NULL),(18138,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccessDlg.h',NULL,NULL,NULL,NULL),(18139,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/res',NULL,NULL,NULL,NULL),(18140,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/res/OpenOpcUa_TP_DirectAccess.ico',NULL,NULL,NULL,NULL),(18141,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/res/OpenOpcUa_TP_DirectAccess.rc2',NULL,NULL,NULL,NULL),(18142,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/resource.h',NULL,NULL,NULL,NULL),(18143,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/stdafx.cpp',NULL,NULL,NULL,NULL),(18144,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/stdafx.h',NULL,NULL,NULL,NULL),(18145,2039,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/OpenOpcUa_TP_DirectAccess/OpenOpcUa_TP_DirectAccess/targetver.h',NULL,NULL,NULL,NULL),(18146,2040,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(18147,2041,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.rc',NULL,NULL,NULL,NULL),(18148,2041,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(18149,2041,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/VpiTP.cpp',NULL,NULL,NULL,NULL),(18150,2042,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(18151,2042,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXSpeakRequest.h',NULL,NULL,NULL,NULL),(18152,2042,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(18153,2042,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(18154,2042,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(18155,2042,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(18156,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer',NULL,NULL,NULL,NULL),(18157,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer/NetLayer',NULL,NULL,NULL,NULL),(18158,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer/NetLayer/NetLayer.cs',NULL,NULL,NULL,NULL),(18159,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer/NetLayer/NetLayer.csproj',NULL,NULL,NULL,NULL),(18160,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer/NetLayer/NetLayer.sln',NULL,NULL,NULL,NULL),(18161,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer/NetLayer/NetLayerEventArgs.cs',NULL,NULL,NULL,NULL),(18162,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer/NetLayer/Properties',NULL,NULL,NULL,NULL),(18163,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer/NetLayer/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(18164,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer/NetLayer/RawMessageFromMsMq.cs',NULL,NULL,NULL,NULL),(18165,2043,'A','/OpenOpcUa_VS2013/Vpis/VpiNet/NetLayer/NetLayer/RawMessageToMsMq.cs',NULL,NULL,NULL,NULL),(18166,2044,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(18167,2044,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(18168,2044,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(18169,2045,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(18170,2045,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(18171,2046,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.rc',NULL,NULL,NULL,NULL),(18172,2046,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/DirectAccess.h',NULL,NULL,NULL,NULL),(18173,2046,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/DirectAccessType.h',NULL,NULL,NULL,NULL),(18174,2046,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/DataSegMutex.cpp',NULL,NULL,NULL,NULL),(18175,2046,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(18176,2046,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.cpp',NULL,NULL,NULL,NULL),(18177,2046,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.vcxproj',NULL,NULL,NULL,NULL),(18178,2046,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/stdafx.h',NULL,NULL,NULL,NULL),(18179,2047,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/CMakeLists.txt',NULL,NULL,NULL,NULL),(18180,2047,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(18181,2047,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/CMakeLists.txt',NULL,NULL,NULL,NULL),(18182,2048,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/CMakeLists.txt',NULL,NULL,NULL,NULL),(18183,2048,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/VpiSk.rc',NULL,NULL,NULL,NULL),(18184,2048,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18185,2048,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.cpp',NULL,NULL,NULL,NULL),(18186,2049,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/CMakeLists.txt',NULL,NULL,NULL,NULL),(18187,2049,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/CMakeLists.txt',NULL,NULL,NULL,NULL),(18188,2050,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18189,2050,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(18190,2050,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(18191,2051,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.Designer.cs',NULL,NULL,NULL,NULL),(18192,2051,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(18193,2051,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.csproj',NULL,NULL,NULL,NULL),(18194,2051,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.resx',NULL,NULL,NULL,NULL),(18195,2051,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(18196,2051,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(18197,2052,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/AboutBox1.Designer.cs',NULL,NULL,NULL,NULL),(18198,2052,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/AboutBox1.cs',NULL,NULL,NULL,NULL),(18199,2052,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/AboutBox1.resx',NULL,NULL,NULL,NULL),(18200,2052,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.Designer.cs',NULL,NULL,NULL,NULL),(18201,2052,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.resx',NULL,NULL,NULL,NULL),(18202,2052,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(18203,2052,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.Designer.cs',NULL,NULL,NULL,NULL),(18204,2052,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(18205,2052,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.csproj',NULL,NULL,NULL,NULL),(18206,2052,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.resx',NULL,NULL,NULL,NULL),(18207,2052,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(18208,2053,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(18209,2053,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.vcxproj',NULL,NULL,NULL,NULL),(18210,2053,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18211,2053,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(18212,2053,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(18213,2053,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(18214,2053,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/stdafx.cpp',NULL,NULL,NULL,NULL),(18215,2054,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.rc',NULL,NULL,NULL,NULL),(18216,2054,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/DirectAccessType.h',NULL,NULL,NULL,NULL),(18217,2054,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(18218,2054,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.cpp',NULL,NULL,NULL,NULL),(18219,2054,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/stdafx.h',NULL,NULL,NULL,NULL),(18220,2055,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/VpiSk.rc',NULL,NULL,NULL,NULL),(18221,2055,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/include/RecipeDataType.h',NULL,NULL,NULL,NULL),(18222,2055,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/include/RecipeEltDataType.h',NULL,NULL,NULL,NULL),(18223,2055,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18224,2055,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.cpp',NULL,NULL,NULL,NULL),(18225,2056,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(18226,2057,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18227,2057,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.cpp',NULL,NULL,NULL,NULL),(18228,2058,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.cpp',NULL,NULL,NULL,NULL),(18229,2059,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.cpp',NULL,NULL,NULL,NULL),(18230,2060,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.vcxproj',NULL,NULL,NULL,NULL),(18231,2060,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7_VS2013.sln',NULL,NULL,NULL,NULL),(18232,2060,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(18233,2061,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18234,2061,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(18235,2061,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(18236,2061,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/dllmain.cpp',NULL,NULL,NULL,NULL),(18237,2062,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(18238,2062,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(18239,2063,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18240,2063,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(18241,2063,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(18242,2064,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18243,2064,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(18244,2064,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(18245,2065,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.rc',NULL,NULL,NULL,NULL),(18246,2065,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Field.h',NULL,NULL,NULL,NULL),(18247,2065,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18248,2065,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerStructure.h',NULL,NULL,NULL,NULL),(18249,2065,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Definition.cpp',NULL,NULL,NULL,NULL),(18250,2065,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Field.cpp',NULL,NULL,NULL,NULL),(18251,2065,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(18252,2065,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18253,2065,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(18254,2066,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(18255,2066,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.Designer.cs',NULL,NULL,NULL,NULL),(18256,2066,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(18257,2066,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.resx',NULL,NULL,NULL,NULL),(18258,2066,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(18259,2066,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(18260,2066,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToNodeSetEventArgs.cs',NULL,NULL,NULL,NULL),(18261,2066,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(18262,2067,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(18263,2067,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXStateInformation.cpp',NULL,NULL,NULL,NULL),(18264,2067,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(18265,2068,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18266,2069,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(18267,2070,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(18268,2070,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18269,2071,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18270,2072,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18271,2073,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(18272,2074,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(18273,2075,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18274,2076,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(18275,2076,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(18276,2076,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(18277,2076,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18278,2076,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18279,2076,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18280,2076,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18281,2077,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18282,2077,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18283,2077,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18284,2077,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18285,2078,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(18286,2078,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18287,2078,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18288,2078,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18289,2078,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18290,2078,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18291,2079,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(18292,2079,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(18293,2079,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18294,2079,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18295,2079,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18296,2079,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18297,2079,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18298,2079,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18299,2080,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(18300,2080,'M','/trunk/include/UABinding.h',NULL,NULL,NULL,NULL),(18301,2080,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(18302,2080,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(18303,2080,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18304,2080,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18305,2080,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18306,2080,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(18307,2080,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18308,2081,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18309,2082,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(18310,2082,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(18311,2082,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(18312,2082,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(18313,2082,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18314,2082,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(18315,2082,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(18316,2082,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(18317,2082,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18318,2082,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18319,2082,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(18320,2082,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18321,2082,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18322,2082,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(18323,2082,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18324,2082,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(18325,2083,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(18326,2083,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18327,2083,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18328,2083,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18329,2083,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(18330,2083,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18331,2084,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(18332,2084,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(18333,2084,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18334,2084,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(18335,2084,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(18336,2084,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18337,2084,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18338,2084,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(18339,2084,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18340,2085,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18341,2085,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18342,2086,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18343,2086,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18344,2086,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18345,2087,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18346,2087,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18347,2087,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18348,2088,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18349,2089,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18350,2089,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18351,2089,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18352,2089,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18353,2089,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18354,2089,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18355,2090,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18356,2090,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18357,2091,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18358,2091,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18359,2091,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18360,2091,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18361,2092,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18362,2092,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18363,2092,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18364,2093,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18365,2093,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18366,2093,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18367,2094,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18368,2094,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18369,2095,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18370,2095,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18371,2096,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(18372,2096,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18373,2096,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18374,2096,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18375,2097,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(18376,2097,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18377,2097,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(18378,2097,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18379,2097,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18380,2097,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18381,2098,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(18382,2098,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18383,2098,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18384,2098,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18385,2098,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18386,2098,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18387,2099,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(18388,2099,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18389,2099,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(18390,2099,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(18391,2099,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18392,2099,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18393,2099,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18394,2099,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18395,2100,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18396,2100,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18397,2100,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(18398,2100,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18399,2100,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(18400,2101,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(18401,2101,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(18402,2101,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(18403,2101,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18404,2101,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18405,2101,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18406,2101,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(18407,2101,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18408,2101,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(18409,2101,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(18410,2102,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(18411,2102,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(18412,2102,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(18413,2102,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(18414,2102,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(18415,2102,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18416,2102,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18417,2102,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18418,2102,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18419,2102,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18420,2102,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18421,2102,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(18422,2103,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18423,2103,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(18424,2104,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(18425,2105,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(18426,2106,'M','/trunk/include/Field.h',NULL,NULL,NULL,NULL),(18427,2106,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(18428,2106,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(18429,2106,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18430,2106,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18431,2106,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(18432,2106,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(18433,2107,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(18434,2107,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(18435,2107,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(18436,2107,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(18437,2107,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(18438,2107,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(18439,2107,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18440,2107,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18441,2107,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18442,2107,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18443,2107,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18444,2107,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(18445,2107,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(18446,2108,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(18447,2108,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18448,2108,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18449,2108,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18450,2108,'M','/trunk/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(18451,2109,'M','/trunk/source/Alias.cpp',NULL,NULL,NULL,NULL),(18452,2109,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18453,2109,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18454,2109,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18455,2109,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18456,2110,'M','/trunk/source/Alias.cpp',NULL,NULL,NULL,NULL),(18457,2111,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(18458,2111,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(18459,2111,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18460,2111,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18461,2111,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18462,2111,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18463,2112,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(18464,2112,'M','/trunk/include/Definition.h',NULL,NULL,NULL,NULL),(18465,2112,'M','/trunk/include/LuaScript.h',NULL,NULL,NULL,NULL),(18466,2112,'M','/trunk/include/LuaVirtualMachine.h',NULL,NULL,NULL,NULL),(18467,2112,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(18468,2112,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(18469,2112,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(18470,2112,'M','/trunk/source/LuaDebugger.cpp',NULL,NULL,NULL,NULL),(18471,2112,'M','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(18472,2112,'M','/trunk/source/LuaVirtualMachine.cpp',NULL,NULL,NULL,NULL),(18473,2112,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(18474,2112,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(18475,2112,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(18476,2112,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(18477,2112,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(18478,2112,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18479,2112,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18480,2113,'M','/trunk/include/LuaVirtualMachine.h',NULL,NULL,NULL,NULL),(18481,2113,'M','/trunk/source/LuaDebugger.cpp',NULL,NULL,NULL,NULL),(18482,2113,'M','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(18483,2113,'M','/trunk/source/LuaVirtualMachine.cpp',NULL,NULL,NULL,NULL),(18484,2113,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(18485,2114,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(18486,2115,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(18487,2116,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(18488,2116,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/XmlTxgParsing.cpp',NULL,NULL,NULL,NULL),(18489,2117,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(18490,2118,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAVariable.h',NULL,NULL,NULL,NULL),(18491,2118,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAVariableType.h',NULL,NULL,NULL,NULL),(18492,2118,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerStructure.h',NULL,NULL,NULL,NULL),(18493,2118,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(18494,2118,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(18495,2118,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(18496,2118,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(18497,2119,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(18498,2119,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(18499,2119,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(18500,2119,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(18501,2120,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18502,2120,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(18503,2121,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2013.sln',NULL,NULL,NULL,NULL),(18504,2122,'A','/OpenOpcUa_VS2013/AQtimeProject_OOUA_DEBUG',NULL,NULL,NULL,NULL),(18505,2122,'M','/OpenOpcUa_VS2013/LuaLib/include/lua.h',NULL,NULL,NULL,NULL),(18506,2122,'M','/OpenOpcUa_VS2013/LuaLib/source/lapi.c',NULL,NULL,NULL,NULL),(18507,2122,'M','/OpenOpcUa_VS2013/LuaLib/source/liolib.c',NULL,NULL,NULL,NULL),(18508,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lapi.h',NULL,NULL,NULL,NULL),(18509,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lauxlib.h',NULL,NULL,NULL,NULL),(18510,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lcode.h',NULL,NULL,NULL,NULL),(18511,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/ldebug.h',NULL,NULL,NULL,NULL),(18512,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/ldo.h',NULL,NULL,NULL,NULL),(18513,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lfunc.h',NULL,NULL,NULL,NULL),(18514,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lgc.h',NULL,NULL,NULL,NULL),(18515,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/llex.h',NULL,NULL,NULL,NULL),(18516,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/llimits.h',NULL,NULL,NULL,NULL),(18517,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lmem.h',NULL,NULL,NULL,NULL),(18518,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lobject.h',NULL,NULL,NULL,NULL),(18519,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lopcodes.h',NULL,NULL,NULL,NULL),(18520,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lparser.h',NULL,NULL,NULL,NULL),(18521,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lstate.h',NULL,NULL,NULL,NULL),(18522,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lstring.h',NULL,NULL,NULL,NULL),(18523,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/ltable.h',NULL,NULL,NULL,NULL),(18524,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/ltm.h',NULL,NULL,NULL,NULL),(18525,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lua.h',NULL,NULL,NULL,NULL),(18526,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lualib.h',NULL,NULL,NULL,NULL),(18527,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lundump.h',NULL,NULL,NULL,NULL),(18528,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lvm.h',NULL,NULL,NULL,NULL),(18529,2123,'M','/OpenOpcUa_VS2013/LuaLib/include/lzio.h',NULL,NULL,NULL,NULL),(18530,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lapi.c',NULL,NULL,NULL,NULL),(18531,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lauxlib.c',NULL,NULL,NULL,NULL),(18532,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lbaselib.c',NULL,NULL,NULL,NULL),(18533,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lcode.c',NULL,NULL,NULL,NULL),(18534,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/ldblib.c',NULL,NULL,NULL,NULL),(18535,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/ldebug.c',NULL,NULL,NULL,NULL),(18536,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/ldo.c',NULL,NULL,NULL,NULL),(18537,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/ldump.c',NULL,NULL,NULL,NULL),(18538,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lfunc.c',NULL,NULL,NULL,NULL),(18539,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lgc.c',NULL,NULL,NULL,NULL),(18540,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/liolib.c',NULL,NULL,NULL,NULL),(18541,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/llex.c',NULL,NULL,NULL,NULL),(18542,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lmathlib.c',NULL,NULL,NULL,NULL),(18543,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lmem.c',NULL,NULL,NULL,NULL),(18544,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/loadlib.c',NULL,NULL,NULL,NULL),(18545,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lobject.c',NULL,NULL,NULL,NULL),(18546,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lopcodes.c',NULL,NULL,NULL,NULL),(18547,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lparser.c',NULL,NULL,NULL,NULL),(18548,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lstate.c',NULL,NULL,NULL,NULL),(18549,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lstring.c',NULL,NULL,NULL,NULL),(18550,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lstrlib.c',NULL,NULL,NULL,NULL),(18551,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/ltable.c',NULL,NULL,NULL,NULL),(18552,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/ltablib.c',NULL,NULL,NULL,NULL),(18553,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/ltm.c',NULL,NULL,NULL,NULL),(18554,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lundump.c',NULL,NULL,NULL,NULL),(18555,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lvm.c',NULL,NULL,NULL,NULL),(18556,2123,'M','/OpenOpcUa_VS2013/LuaLib/source/lzio.c',NULL,NULL,NULL,NULL),(18557,2124,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(18558,2124,'A','/OpenOpcUa_VS2013/LuaLib/include/lctype.h',NULL,NULL,NULL,NULL),(18559,2124,'A','/OpenOpcUa_VS2013/LuaLib/include/luaconf.h',NULL,NULL,NULL,NULL),(18560,2124,'D','/OpenOpcUa_VS2013/LuaLib/include/signal.h',NULL,NULL,NULL,NULL),(18561,2124,'A','/OpenOpcUa_VS2013/LuaLib/source/lcorolib.c',NULL,NULL,NULL,NULL),(18562,2124,'A','/OpenOpcUa_VS2013/LuaLib/source/lctype.c',NULL,NULL,NULL,NULL),(18563,2124,'A','/OpenOpcUa_VS2013/LuaLib/source/linit.c',NULL,NULL,NULL,NULL),(18564,2124,'A','/OpenOpcUa_VS2013/LuaLib/source/loslib.c',NULL,NULL,NULL,NULL),(18565,2124,'A','/OpenOpcUa_VS2013/LuaLib/source/lutf8lib.c',NULL,NULL,NULL,NULL),(18566,2125,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(18567,2125,'A','/OpenOpcUa_VS2013/OpenOpcUa_VS2017.sln',NULL,NULL,NULL,NULL),(18568,2126,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.vcxproj',NULL,NULL,NULL,NULL),(18569,2126,'A','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx_VS2017.sln',NULL,NULL,NULL,NULL),(18570,2126,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(18571,2126,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(18572,2127,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.vcxproj',NULL,NULL,NULL,NULL),(18573,2128,'M','/OpenOpcUaQtClient/OpenOpcUaClient.qrc',NULL,NULL,NULL,NULL),(18574,2128,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(18575,2128,'M','/OpenOpcUaQtClient/cprojecttreewidget.h',NULL,NULL,NULL,NULL),(18576,2128,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(18577,2129,'A','/GeneratedFiles',NULL,NULL,NULL,NULL),(18578,2129,'A','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18579,2129,'A','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(18580,2129,'A','/GeneratedFiles/ui_ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(18581,2129,'A','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18582,2129,'A','/GeneratedFiles/ui_cnewprojectwizard.h',NULL,NULL,NULL,NULL),(18583,2129,'A','/GeneratedFiles/ui_creferencetypeidtoolbox.h',NULL,NULL,NULL,NULL),(18584,2129,'A','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18585,2129,'A','/OpenOpcUaConfigManager.sln',NULL,NULL,NULL,NULL),(18586,2129,'A','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(18587,2129,'A','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(18588,2129,'A','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(18589,2129,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(18590,2129,'A','/ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(18591,2129,'A','/ccsvexportattributetable.h',NULL,NULL,NULL,NULL),(18592,2129,'A','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(18593,2129,'A','/ccsvexportdialog.h',NULL,NULL,NULL,NULL),(18594,2129,'A','/ccsvexportdialog.ui',NULL,NULL,NULL,NULL),(18595,2129,'A','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(18596,2129,'A','/ccsvexportnodelisttable.h',NULL,NULL,NULL,NULL),(18597,2129,'A','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(18598,2129,'A','/ccsvfiletable.h',NULL,NULL,NULL,NULL),(18599,2129,'A','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(18600,2129,'A','/ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(18601,2129,'A','/ccsvimporttosubsystemdialog.ui',NULL,NULL,NULL,NULL),(18602,2129,'A','/ccsvnodesettable.cpp',NULL,NULL,NULL,NULL),(18603,2129,'A','/ccsvnodesettable.h',NULL,NULL,NULL,NULL),(18604,2129,'A','/ccsvrecord.cpp',NULL,NULL,NULL,NULL),(18605,2129,'A','/ccsvrecord.h',NULL,NULL,NULL,NULL),(18606,2129,'A','/ccsvsubsystemtable.cpp',NULL,NULL,NULL,NULL),(18607,2129,'A','/ccsvsubsystemtable.h',NULL,NULL,NULL,NULL),(18608,2129,'A','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18609,2129,'A','/cdetailextraviewtablewidget.h',NULL,NULL,NULL,NULL),(18610,2129,'A','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18611,2129,'A','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(18612,2129,'M','/cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(18613,2129,'A','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(18614,2129,'A','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(18615,2129,'A','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18616,2129,'A','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18617,2129,'A','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(18618,2129,'M','/cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(18619,2129,'M','/cnewprojectwizard.ui',NULL,NULL,NULL,NULL),(18620,2129,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(18621,2129,'M','/cnodeidselectorwidget.h',NULL,NULL,NULL,NULL),(18622,2129,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(18623,2129,'M','/cnodeset.h',NULL,NULL,NULL,NULL),(18624,2129,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(18625,2129,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(18626,2129,'M','/cnodesetdiagramitemtext.cpp',NULL,NULL,NULL,NULL),(18627,2129,'M','/cnodesetdiagramitemtext.h',NULL,NULL,NULL,NULL),(18628,2129,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(18629,2129,'M','/cnodesetgraphicslineitem.h',NULL,NULL,NULL,NULL),(18630,2129,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18631,2129,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(18632,2129,'M','/cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(18633,2129,'M','/cnodesetmeshview.h',NULL,NULL,NULL,NULL),(18634,2129,'M','/cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(18635,2129,'M','/cnodesetserverconfig.h',NULL,NULL,NULL,NULL),(18636,2129,'A','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(18637,2129,'A','/cnodesettree.h',NULL,NULL,NULL,NULL),(18638,2129,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(18639,2129,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(18640,2129,'M','/creferencetypeidtoolbox.cpp',NULL,NULL,NULL,NULL),(18641,2129,'M','/creferencetypeidtoolbox.h',NULL,NULL,NULL,NULL),(18642,2129,'M','/creferencetypeidtoolbox.ui',NULL,NULL,NULL,NULL),(18643,2129,'A','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18644,2129,'A','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(18645,2129,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(18646,2129,'M','/csubsystemconfig.h',NULL,NULL,NULL,NULL),(18647,2129,'M','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(18648,2129,'M','/csubsystemserverconfig.h',NULL,NULL,NULL,NULL),(18649,2129,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(18650,2129,'A','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(18651,2129,'A','/csubsystemtree.h',NULL,NULL,NULL,NULL),(18652,2129,'M','/images/OpenOpcUa.ico',NULL,NULL,NULL,NULL),(18653,2129,'A','/images/export.jpg',NULL,NULL,NULL,NULL),(18654,2129,'A','/images/import.jpg',NULL,NULL,NULL,NULL),(18655,2129,'M','/main.cpp',NULL,NULL,NULL,NULL),(18656,2129,'A','/oouaconfigmanagerinternal.h',NULL,NULL,NULL,NULL),(18657,2129,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18658,2129,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18659,2129,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(18660,2129,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(18661,2130,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18662,2130,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18663,2130,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(18664,2130,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(18665,2130,'A','/ValueRankCombo.cpp',NULL,NULL,NULL,NULL),(18666,2130,'A','/ValueRankCombo.h',NULL,NULL,NULL,NULL),(18667,2130,'M','/ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(18668,2130,'M','/ccsvexportattributetable.h',NULL,NULL,NULL,NULL),(18669,2130,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(18670,2130,'M','/ccsvexportdialog.h',NULL,NULL,NULL,NULL),(18671,2130,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(18672,2130,'M','/ccsvexportnodelisttable.h',NULL,NULL,NULL,NULL),(18673,2130,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(18674,2130,'M','/ccsvfiletable.h',NULL,NULL,NULL,NULL),(18675,2130,'M','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(18676,2130,'M','/ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(18677,2130,'M','/ccsvnodesettable.cpp',NULL,NULL,NULL,NULL),(18678,2130,'M','/ccsvnodesettable.h',NULL,NULL,NULL,NULL),(18679,2130,'M','/ccsvrecord.cpp',NULL,NULL,NULL,NULL),(18680,2130,'M','/ccsvrecord.h',NULL,NULL,NULL,NULL),(18681,2130,'M','/ccsvsubsystemtable.cpp',NULL,NULL,NULL,NULL),(18682,2130,'M','/ccsvsubsystemtable.h',NULL,NULL,NULL,NULL),(18683,2130,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18684,2130,'M','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(18685,2130,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18686,2130,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18687,2130,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(18688,2130,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(18689,2130,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(18690,2130,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(18691,2130,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(18692,2130,'M','/cnodesetgraphicslineitem.h',NULL,NULL,NULL,NULL),(18693,2130,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18694,2130,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(18695,2130,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18696,2130,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(18697,2130,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18698,2130,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(18699,2131,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18700,2131,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18701,2131,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(18702,2131,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(18703,2131,'M','/ccsvfiletable.h',NULL,NULL,NULL,NULL),(18704,2131,'M','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(18705,2131,'M','/ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(18706,2131,'M','/ccsvnodesettable.cpp',NULL,NULL,NULL,NULL),(18707,2131,'M','/ccsvnodesettable.h',NULL,NULL,NULL,NULL),(18708,2131,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18709,2131,'M','/cdetailextraviewtablewidget.h',NULL,NULL,NULL,NULL),(18710,2131,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18711,2131,'M','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(18712,2131,'M','/cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(18713,2131,'M','/cgeneralserverconfig.h',NULL,NULL,NULL,NULL),(18714,2131,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(18715,2131,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(18716,2131,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18717,2131,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18718,2131,'M','/cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(18719,2131,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(18720,2131,'M','/cnodeidselectorwidget.h',NULL,NULL,NULL,NULL),(18721,2131,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(18722,2131,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(18723,2131,'M','/cnodesetdiagramitemtext.cpp',NULL,NULL,NULL,NULL),(18724,2131,'M','/cnodesetdiagramitemtext.h',NULL,NULL,NULL,NULL),(18725,2131,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(18726,2131,'M','/cnodesetgraphicslineitem.h',NULL,NULL,NULL,NULL),(18727,2131,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18728,2131,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(18729,2131,'M','/cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(18730,2131,'M','/cnodesetmeshview.h',NULL,NULL,NULL,NULL),(18731,2131,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(18732,2131,'M','/cnodesettree.h',NULL,NULL,NULL,NULL),(18733,2131,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18734,2131,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(18735,2131,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(18736,2131,'M','/csubsystemconfig.h',NULL,NULL,NULL,NULL),(18737,2131,'M','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(18738,2131,'M','/csubsystemserverconfig.h',NULL,NULL,NULL,NULL),(18739,2131,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(18740,2131,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(18741,2131,'M','/csubsystemtree.h',NULL,NULL,NULL,NULL),(18742,2131,'M','/main.cpp',NULL,NULL,NULL,NULL),(18743,2131,'M','/oouaconfigmanagerinternal.h',NULL,NULL,NULL,NULL),(18744,2131,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18745,2131,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18746,2131,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(18747,2131,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(18748,2132,'A','/COpenOpcUaConfigManagerToolbar.cpp',NULL,NULL,NULL,NULL),(18749,2132,'A','/COpenOpcUaConfigManagerToolbar.h',NULL,NULL,NULL,NULL),(18750,2132,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18751,2132,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(18752,2132,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(18753,2132,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(18754,2132,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18755,2132,'M','/cdetailextraviewtablewidget.h',NULL,NULL,NULL,NULL),(18756,2132,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18757,2132,'M','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(18758,2132,'M','/cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(18759,2132,'M','/cgeneralserverconfig.h',NULL,NULL,NULL,NULL),(18760,2132,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(18761,2132,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(18762,2132,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(18763,2132,'M','/cnodesetdiagramitemtext.cpp',NULL,NULL,NULL,NULL),(18764,2132,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(18765,2132,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18766,2132,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(18767,2132,'M','/cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(18768,2132,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(18769,2132,'M','/cnodesettree.h',NULL,NULL,NULL,NULL),(18770,2132,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18771,2132,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(18772,2132,'M','/csubsystemtree.h',NULL,NULL,NULL,NULL),(18773,2132,'M','/oouaconfigmanagerinternal.h',NULL,NULL,NULL,NULL),(18774,2132,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18775,2132,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18776,2132,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(18777,2133,'A','/CAboutDlg.cpp',NULL,NULL,NULL,NULL),(18778,2133,'A','/CAboutDlg.h',NULL,NULL,NULL,NULL),(18779,2133,'A','/CAboutDlg.ui',NULL,NULL,NULL,NULL),(18780,2133,'M','/COpenOpcUaConfigManagerToolbar.cpp',NULL,NULL,NULL,NULL),(18781,2133,'M','/COpenOpcUaConfigManagerToolbar.h',NULL,NULL,NULL,NULL),(18782,2133,'A','/CVpiExtraConfigurationDialog.ui',NULL,NULL,NULL,NULL),(18783,2133,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18784,2133,'A','/GeneratedFiles/ui_CAboutDlg.h',NULL,NULL,NULL,NULL),(18785,2133,'A','/GeneratedFiles/ui_CVpiExtraConfigurationDialog.h',NULL,NULL,NULL,NULL),(18786,2133,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18787,2133,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18788,2133,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(18789,2133,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(18790,2133,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(18791,2133,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(18792,2133,'A','/VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(18793,2133,'A','/VpiConfigurationDialog.h',NULL,NULL,NULL,NULL),(18794,2133,'M','/ccsvnodesettable.cpp',NULL,NULL,NULL,NULL),(18795,2133,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18796,2133,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18797,2133,'M','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(18798,2133,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18799,2133,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18800,2133,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(18801,2133,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(18802,2133,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18803,2133,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(18804,2133,'M','/cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(18805,2133,'M','/cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(18806,2133,'M','/cnodesetserverconfig.h',NULL,NULL,NULL,NULL),(18807,2133,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(18808,2133,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18809,2133,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(18810,2133,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(18811,2133,'M','/csubsystemtree.h',NULL,NULL,NULL,NULL),(18812,2133,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18813,2133,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18814,2133,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(18815,2133,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(18816,2133,'A','/resource.h',NULL,NULL,NULL,NULL),(18817,2134,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18818,2134,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18819,2134,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18820,2134,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(18821,2134,'M','/cnodeset.h',NULL,NULL,NULL,NULL),(18822,2134,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18823,2134,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(18824,2134,'M','/copenopcuaconfigmenagecombobox.cpp',NULL,NULL,NULL,NULL),(18825,2134,'M','/copenopcuaconfigmenagecombobox.h',NULL,NULL,NULL,NULL),(18826,2134,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18827,2134,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(18828,2135,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18829,2135,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(18830,2135,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(18831,2135,'M','/VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(18832,2135,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(18833,2135,'M','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(18834,2135,'M','/ccsvnodesettable.cpp',NULL,NULL,NULL,NULL),(18835,2135,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18836,2135,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18837,2135,'M','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(18838,2135,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18839,2135,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18840,2135,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(18841,2135,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18842,2135,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(18843,2135,'M','/copenopcuaconfigmenagecombobox.cpp',NULL,NULL,NULL,NULL),(18844,2135,'M','/copenopcuaconfigmenagecombobox.h',NULL,NULL,NULL,NULL),(18845,2135,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18846,2135,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(18847,2136,'A','/GeneratedFiles/ui_LogParameterDialog.h',NULL,NULL,NULL,NULL),(18848,2136,'M','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(18849,2136,'A','/LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(18850,2136,'A','/LogParameterDialog.h',NULL,NULL,NULL,NULL),(18851,2136,'A','/LogParameterDialog.ui',NULL,NULL,NULL,NULL),(18852,2136,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(18853,2136,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(18854,2136,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(18855,2136,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(18856,2136,'A','/Simulation.cpp',NULL,NULL,NULL,NULL),(18857,2136,'A','/Simulation.h',NULL,NULL,NULL,NULL),(18858,2136,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(18859,2136,'M','/ccsvexportdialog.h',NULL,NULL,NULL,NULL),(18860,2136,'M','/ccsvexportdialog.ui',NULL,NULL,NULL,NULL),(18861,2136,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(18862,2136,'M','/ccsvexportnodelisttable.h',NULL,NULL,NULL,NULL),(18863,2136,'M','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(18864,2136,'M','/ccsvnodesettable.h',NULL,NULL,NULL,NULL),(18865,2136,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18866,2136,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18867,2136,'M','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(18868,2136,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(18869,2136,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(18870,2136,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18871,2136,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(18872,2136,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(18873,2136,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(18874,2136,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18875,2136,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(18876,2136,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(18877,2136,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18878,2136,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(18879,2136,'M','/csimulationserverconfig.cpp',NULL,NULL,NULL,NULL),(18880,2136,'M','/csimulationserverconfig.h',NULL,NULL,NULL,NULL),(18881,2136,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(18882,2136,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(18883,2136,'M','/csubsystemtag.h',NULL,NULL,NULL,NULL),(18884,2136,'M','/oouaconfigmanagerinternal.h',NULL,NULL,NULL,NULL),(18885,2136,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18886,2136,'M','/resource.h',NULL,NULL,NULL,NULL),(18887,2137,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(18888,2137,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(18889,2137,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(18890,2137,'M','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(18891,2137,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18892,2137,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18893,2137,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(18894,2137,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18895,2137,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18896,2137,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(18897,2137,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(18898,2137,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18899,2137,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(18900,2137,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18901,2138,'M','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(18902,2138,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(18903,2138,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(18904,2138,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(18905,2138,'M','/ccsvexportattributetable.h',NULL,NULL,NULL,NULL),(18906,2138,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(18907,2138,'M','/ccsvexportdialog.h',NULL,NULL,NULL,NULL),(18908,2138,'M','/ccsvexportdialog.ui',NULL,NULL,NULL,NULL),(18909,2138,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(18910,2138,'M','/ccsvexportnodelisttable.h',NULL,NULL,NULL,NULL),(18911,2138,'M','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(18912,2138,'M','/ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(18913,2138,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18914,2138,'M','/cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(18915,2138,'M','/cgeneralserverconfig.h',NULL,NULL,NULL,NULL),(18916,2138,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(18917,2138,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(18918,2138,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18919,2138,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(18920,2138,'M','/csubsystemconfig.h',NULL,NULL,NULL,NULL),(18921,2138,'M','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(18922,2138,'M','/csubsystemserverconfig.h',NULL,NULL,NULL,NULL),(18923,2138,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(18924,2138,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(18925,2138,'M','/csubsystemtree.h',NULL,NULL,NULL,NULL),(18926,2138,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18927,2138,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18928,2139,'M','/COpenOpcUaConfigManagerToolbar.h',NULL,NULL,NULL,NULL),(18929,2139,'A','/CParentSelectorDlg.cpp',NULL,NULL,NULL,NULL),(18930,2139,'A','/CParentSelectorDlg.h',NULL,NULL,NULL,NULL),(18931,2139,'A','/CParentSelectorDlg.ui',NULL,NULL,NULL,NULL),(18932,2139,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18933,2139,'A','/GeneratedFiles/ui_CParentSelectorDlg.h',NULL,NULL,NULL,NULL),(18934,2139,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18935,2139,'M','/GeneratedFiles/ui_cnewprojectwizard.h',NULL,NULL,NULL,NULL),(18936,2139,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18937,2139,'M','/OpenOpcUaConfigManager.sln',NULL,NULL,NULL,NULL),(18938,2139,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(18939,2139,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(18940,2139,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(18941,2139,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(18942,2139,'M','/Simulation.cpp',NULL,NULL,NULL,NULL),(18943,2139,'M','/VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(18944,2139,'M','/ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(18945,2139,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(18946,2139,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(18947,2139,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(18948,2139,'M','/ccsvnodesettable.cpp',NULL,NULL,NULL,NULL),(18949,2139,'M','/ccsvsubsystemtable.cpp',NULL,NULL,NULL,NULL),(18950,2139,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18951,2139,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(18952,2139,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(18953,2139,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18954,2139,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18955,2139,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(18956,2139,'M','/cnewprojectwizard.ui',NULL,NULL,NULL,NULL),(18957,2139,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(18958,2139,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(18959,2139,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(18960,2139,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(18961,2139,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(18962,2139,'M','/cnodesettree.h',NULL,NULL,NULL,NULL),(18963,2139,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(18964,2139,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(18965,2139,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18966,2139,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(18967,2139,'M','/csimulationserverconfig.cpp',NULL,NULL,NULL,NULL),(18968,2139,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(18969,2139,'M','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(18970,2139,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(18971,2139,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(18972,2139,'M','/images/GeneralConfig_16.ico',NULL,NULL,NULL,NULL),(18973,2139,'M','/images/Simulation.ico',NULL,NULL,NULL,NULL),(18974,2139,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18975,2139,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18976,2139,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(18977,2139,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(18978,2140,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(18979,2140,'M','/ccsvfiletable.h',NULL,NULL,NULL,NULL),(18980,2140,'M','/ccsvnodesettable.cpp',NULL,NULL,NULL,NULL),(18981,2140,'M','/ccsvnodesettable.h',NULL,NULL,NULL,NULL),(18982,2140,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18983,2140,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(18984,2140,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(18985,2140,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(18986,2140,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(18987,2140,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18988,2140,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(18989,2141,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(18990,2141,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18991,2141,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(18992,2142,'M','/GeneratedFiles/ui_ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(18993,2142,'M','/GeneratedFiles/ui_cnewprojectwizard.h',NULL,NULL,NULL,NULL),(18994,2142,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(18995,2142,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(18996,2142,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(18997,2142,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(18998,2142,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(18999,2142,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(19000,2142,'M','/ccsvfiletable.h',NULL,NULL,NULL,NULL),(19001,2142,'M','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(19002,2142,'M','/ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(19003,2142,'M','/ccsvimporttosubsystemdialog.ui',NULL,NULL,NULL,NULL),(19004,2142,'M','/ccsvsubsystemtable.h',NULL,NULL,NULL,NULL),(19005,2142,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19006,2142,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19007,2142,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(19008,2142,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(19009,2142,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(19010,2142,'M','/cnewprojectwizard.ui',NULL,NULL,NULL,NULL),(19011,2142,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(19012,2142,'M','/cnodeset.h',NULL,NULL,NULL,NULL),(19013,2142,'M','/cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(19014,2142,'M','/cnodesetserverconfig.h',NULL,NULL,NULL,NULL),(19015,2142,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(19016,2142,'M','/cnodesettree.h',NULL,NULL,NULL,NULL),(19017,2142,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19018,2142,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(19019,2142,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19020,2142,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19021,2142,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(19022,2143,'M','/CParentSelectorDlg.cpp',NULL,NULL,NULL,NULL),(19023,2143,'M','/CParentSelectorDlg.h',NULL,NULL,NULL,NULL),(19024,2143,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19025,2143,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(19026,2143,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(19027,2143,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19028,2143,'M','/cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(19029,2143,'A','/debug',NULL,NULL,NULL,NULL),(19030,2143,'A','/debug/moc_ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(19031,2144,'M','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(19032,2144,'M','/GeneratedFiles/ui_cnewprojectwizard.h',NULL,NULL,NULL,NULL),(19033,2144,'A','/GeneratedFiles/ui_csvexportsubsystem.h',NULL,NULL,NULL,NULL),(19034,2144,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(19035,2144,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(19036,2144,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(19037,2144,'M','/VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(19038,2144,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(19039,2144,'M','/ccsvexportdialog.h',NULL,NULL,NULL,NULL),(19040,2144,'M','/ccsvexportdialog.ui',NULL,NULL,NULL,NULL),(19041,2144,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(19042,2144,'M','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(19043,2144,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19044,2144,'M','/cdetailextraviewtablewidget.h',NULL,NULL,NULL,NULL),(19045,2144,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19046,2144,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19047,2144,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(19048,2144,'M','/cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(19049,2144,'M','/cnewprojectwizard.ui',NULL,NULL,NULL,NULL),(19050,2144,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(19051,2144,'M','/cnodeset.h',NULL,NULL,NULL,NULL),(19052,2144,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19053,2144,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(19054,2144,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19055,2144,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(19056,2144,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(19057,2144,'M','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(19058,2144,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(19059,2144,'M','/csubsystemtree.h',NULL,NULL,NULL,NULL),(19060,2144,'A','/csvexportsubsystem.cpp',NULL,NULL,NULL,NULL),(19061,2144,'A','/csvexportsubsystem.h',NULL,NULL,NULL,NULL),(19062,2144,'A','/csvexportsubsystem.ui',NULL,NULL,NULL,NULL),(19063,2144,'M','/main.cpp',NULL,NULL,NULL,NULL),(19064,2144,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19065,2144,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19066,2145,'M','/OpenOpcUaConfigManager.sln',NULL,NULL,NULL,NULL),(19067,2146,'A','/CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(19068,2146,'A','/CImportvaluetonode.h',NULL,NULL,NULL,NULL),(19069,2146,'A','/CImportvaluetonode.ui',NULL,NULL,NULL,NULL),(19070,2146,'A','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(19071,2146,'M','/GeneratedFiles/ui_ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(19072,2146,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(19073,2146,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(19074,2146,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(19075,2146,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(19076,2146,'M','/ccsvexportdialog.h',NULL,NULL,NULL,NULL),(19077,2146,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(19078,2146,'M','/ccsvexportnodelisttable.h',NULL,NULL,NULL,NULL),(19079,2146,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(19080,2146,'M','/ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(19081,2146,'M','/ccsvimporttosubsystemdialog.ui',NULL,NULL,NULL,NULL),(19082,2146,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(19083,2146,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(19084,2146,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(19085,2146,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(19086,2146,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19087,2146,'A','/cuanodetable.cpp',NULL,NULL,NULL,NULL),(19088,2146,'A','/cuanodetable.h',NULL,NULL,NULL,NULL),(19089,2146,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19090,2147,'M','/GeneratedFiles/ui_csvexportsubsystem.h',NULL,NULL,NULL,NULL),(19091,2147,'M','/csvexportsubsystem.ui',NULL,NULL,NULL,NULL),(19092,2148,'M','/CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(19093,2148,'M','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(19094,2148,'M','/GeneratedFiles/ui_ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(19095,2148,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(19096,2148,'M','/ccsvexportdialog.h',NULL,NULL,NULL,NULL),(19097,2148,'M','/ccsvexportdialog.ui',NULL,NULL,NULL,NULL),(19098,2148,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(19099,2148,'M','/ccsvexportnodelisttable.h',NULL,NULL,NULL,NULL),(19100,2148,'M','/ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(19101,2148,'M','/ccsvimporttosubsystemdialog.ui',NULL,NULL,NULL,NULL),(19102,2148,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19103,2148,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(19104,2148,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(19105,2148,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(19106,2148,'M','/csubsystemconfig.h',NULL,NULL,NULL,NULL),(19107,2148,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19108,2148,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19109,2149,'M','/CImportvaluetonode.ui',NULL,NULL,NULL,NULL),(19110,2149,'M','/CVpiExtraConfigurationDialog.ui',NULL,NULL,NULL,NULL),(19111,2149,'M','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(19112,2149,'M','/GeneratedFiles/ui_CVpiExtraConfigurationDialog.h',NULL,NULL,NULL,NULL),(19113,2149,'M','/GeneratedFiles/ui_ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(19114,2149,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(19115,2149,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19116,2149,'A','/GraphicItemNavigator.cpp',NULL,NULL,NULL,NULL),(19117,2149,'A','/GraphicItemNavigator.h',NULL,NULL,NULL,NULL),(19118,2149,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(19119,2149,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(19120,2149,'M','/VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(19121,2149,'M','/VpiConfigurationDialog.h',NULL,NULL,NULL,NULL),(19122,2149,'M','/ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(19123,2149,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(19124,2149,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(19125,2149,'M','/ccsvimporttosubsystemdialog.ui',NULL,NULL,NULL,NULL),(19126,2149,'M','/cdetailextraviewtablewidget.h',NULL,NULL,NULL,NULL),(19127,2149,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19128,2149,'M','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(19129,2149,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19130,2149,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(19131,2149,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(19132,2149,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19133,2149,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(19134,2149,'M','/cnodesetdiagramitemtext.cpp',NULL,NULL,NULL,NULL),(19135,2149,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(19136,2149,'M','/cnodesetgraphicslineitem.h',NULL,NULL,NULL,NULL),(19137,2149,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19138,2149,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(19139,2149,'M','/cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(19140,2149,'M','/cnodesetmeshview.h',NULL,NULL,NULL,NULL),(19141,2149,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(19142,2149,'M','/images/OpenOpcUa.ico',NULL,NULL,NULL,NULL),(19143,2149,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19144,2149,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19145,2149,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(19146,2150,'M','/CImportvaluetonode.ui',NULL,NULL,NULL,NULL),(19147,2150,'M','/CParentSelectorDlg.ui',NULL,NULL,NULL,NULL),(19148,2150,'A','/CSecurityParamDialog.cpp',NULL,NULL,NULL,NULL),(19149,2150,'A','/CSecurityParamDialog.h',NULL,NULL,NULL,NULL),(19150,2150,'A','/CSecurityParamDialog.ui',NULL,NULL,NULL,NULL),(19151,2150,'M','/CVpiExtraConfigurationDialog.ui',NULL,NULL,NULL,NULL),(19152,2150,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19153,2150,'M','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(19154,2150,'M','/GeneratedFiles/ui_CParentSelectorDlg.h',NULL,NULL,NULL,NULL),(19155,2150,'A','/GeneratedFiles/ui_CSecurityParamDialog.h',NULL,NULL,NULL,NULL),(19156,2150,'M','/GeneratedFiles/ui_CVpiExtraConfigurationDialog.h',NULL,NULL,NULL,NULL),(19157,2150,'M','/GeneratedFiles/ui_LogParameterDialog.h',NULL,NULL,NULL,NULL),(19158,2150,'M','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(19159,2150,'M','/GeneratedFiles/ui_ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(19160,2150,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(19161,2150,'M','/GeneratedFiles/ui_cnewprojectwizard.h',NULL,NULL,NULL,NULL),(19162,2150,'M','/GeneratedFiles/ui_csvexportsubsystem.h',NULL,NULL,NULL,NULL),(19163,2150,'M','/LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(19164,2150,'M','/LogParameterDialog.h',NULL,NULL,NULL,NULL),(19165,2150,'M','/LogParameterDialog.ui',NULL,NULL,NULL,NULL),(19166,2150,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(19167,2150,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(19168,2150,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(19169,2150,'A','/Release',NULL,NULL,NULL,NULL),(19170,2150,'A','/Release/moc_CAboutDlg.cpp',NULL,NULL,NULL,NULL),(19171,2150,'A','/Release/moc_COpenOpcUaConfigManagerToolbar.cpp',NULL,NULL,NULL,NULL),(19172,2150,'A','/Release/moc_CParentSelectorDlg.cpp',NULL,NULL,NULL,NULL),(19173,2150,'A','/Release/moc_LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(19174,2150,'A','/Release/moc_Simulation.cpp',NULL,NULL,NULL,NULL),(19175,2150,'A','/Release/moc_VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(19176,2150,'A','/Release/moc_carchiveserverconfig.cpp',NULL,NULL,NULL,NULL),(19177,2150,'A','/Release/moc_ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(19178,2150,'A','/Release/moc_ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(19179,2150,'A','/Release/moc_ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(19180,2150,'A','/Release/moc_ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(19181,2150,'A','/Release/moc_ccsvrecord.cpp',NULL,NULL,NULL,NULL),(19182,2150,'A','/Release/moc_cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19183,2150,'A','/Release/moc_cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19184,2150,'A','/Release/moc_cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(19185,2150,'A','/Release/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19186,2150,'A','/Release/moc_cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(19187,2150,'A','/Release/moc_cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(19188,2150,'A','/Release/moc_cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(19189,2150,'A','/Release/moc_cnodeset.cpp',NULL,NULL,NULL,NULL),(19190,2150,'A','/Release/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19191,2150,'A','/Release/moc_cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(19192,2150,'A','/Release/moc_cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(19193,2150,'A','/Release/moc_cnodesettree.cpp',NULL,NULL,NULL,NULL),(19194,2150,'A','/Release/moc_copenopcuaconfigmenagecombobox.cpp',NULL,NULL,NULL,NULL),(19195,2150,'A','/Release/moc_copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(19196,2150,'A','/Release/moc_creferencetypeidtoolbox.cpp',NULL,NULL,NULL,NULL),(19197,2150,'A','/Release/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19198,2150,'A','/Release/moc_csimulationserverconfig.cpp',NULL,NULL,NULL,NULL),(19199,2150,'A','/Release/moc_csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(19200,2150,'A','/Release/moc_csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(19201,2150,'A','/Release/moc_csubsystemtag.cpp',NULL,NULL,NULL,NULL),(19202,2150,'A','/Release/moc_csubsystemtree.cpp',NULL,NULL,NULL,NULL),(19203,2150,'A','/Release/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19204,2150,'A','/Release/moc_uaBinding.cpp',NULL,NULL,NULL,NULL),(19205,2150,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(19206,2150,'M','/UABinding.cpp',NULL,NULL,NULL,NULL),(19207,2150,'M','/ccsvexportdialog.ui',NULL,NULL,NULL,NULL),(19208,2150,'M','/ccsvimporttosubsystemdialog.ui',NULL,NULL,NULL,NULL),(19209,2150,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19210,2150,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19211,2150,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(19212,2150,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(19213,2150,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(19214,2150,'M','/cnewprojectwizard.ui',NULL,NULL,NULL,NULL),(19215,2150,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(19216,2150,'M','/cnodeidselectorwidget.h',NULL,NULL,NULL,NULL),(19217,2150,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19218,2150,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(19219,2150,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(19220,2150,'M','/cnodesetgraphicslineitem.h',NULL,NULL,NULL,NULL),(19221,2150,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19222,2150,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(19223,2150,'M','/cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(19224,2150,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(19225,2150,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(19226,2150,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19227,2150,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(19228,2150,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(19229,2150,'M','/csubsystemconfig.h',NULL,NULL,NULL,NULL),(19230,2150,'M','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(19231,2150,'M','/csubsystemserverconfig.h',NULL,NULL,NULL,NULL),(19232,2150,'M','/csvexportsubsystem.ui',NULL,NULL,NULL,NULL),(19233,2150,'A','/debug/moc_CAboutDlg.cpp',NULL,NULL,NULL,NULL),(19234,2150,'A','/debug/moc_CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(19235,2150,'A','/debug/moc_COpenOpcUaConfigManagerToolbar.cpp',NULL,NULL,NULL,NULL),(19236,2150,'A','/debug/moc_CParentSelectorDlg.cpp',NULL,NULL,NULL,NULL),(19237,2150,'A','/debug/moc_CSecurityParamDialog.cpp',NULL,NULL,NULL,NULL),(19238,2150,'A','/debug/moc_GraphicItemNavigator.cpp',NULL,NULL,NULL,NULL),(19239,2150,'A','/debug/moc_LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(19240,2150,'A','/debug/moc_Simulation.cpp',NULL,NULL,NULL,NULL),(19241,2150,'A','/debug/moc_VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(19242,2150,'A','/debug/moc_carchiveserverconfig.cpp',NULL,NULL,NULL,NULL),(19243,2150,'A','/debug/moc_ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(19244,2150,'A','/debug/moc_ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(19245,2150,'A','/debug/moc_ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(19246,2150,'A','/debug/moc_ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(19247,2150,'A','/debug/moc_ccsvrecord.cpp',NULL,NULL,NULL,NULL),(19248,2150,'A','/debug/moc_cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19249,2150,'A','/debug/moc_cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19250,2150,'A','/debug/moc_cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(19251,2150,'A','/debug/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19252,2150,'A','/debug/moc_cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(19253,2150,'A','/debug/moc_cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(19254,2150,'A','/debug/moc_cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(19255,2150,'A','/debug/moc_cnodeset.cpp',NULL,NULL,NULL,NULL),(19256,2150,'A','/debug/moc_cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19257,2150,'A','/debug/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19258,2150,'A','/debug/moc_cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(19259,2150,'A','/debug/moc_cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(19260,2150,'A','/debug/moc_cnodesettree.cpp',NULL,NULL,NULL,NULL),(19261,2150,'A','/debug/moc_copenopcuaconfigmenagecombobox.cpp',NULL,NULL,NULL,NULL),(19262,2150,'A','/debug/moc_copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(19263,2150,'A','/debug/moc_creferencetypeidtoolbox.cpp',NULL,NULL,NULL,NULL),(19264,2150,'A','/debug/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19265,2150,'A','/debug/moc_csimulationserverconfig.cpp',NULL,NULL,NULL,NULL),(19266,2150,'A','/debug/moc_csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(19267,2150,'A','/debug/moc_csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(19268,2150,'A','/debug/moc_csubsystemtag.cpp',NULL,NULL,NULL,NULL),(19269,2150,'A','/debug/moc_csubsystemtree.cpp',NULL,NULL,NULL,NULL),(19270,2150,'A','/debug/moc_csvexportsubsystem.cpp',NULL,NULL,NULL,NULL),(19271,2150,'A','/debug/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19272,2150,'A','/debug/moc_uaBinding.cpp',NULL,NULL,NULL,NULL),(19273,2150,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19274,2150,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19275,2150,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(19276,2150,'M','/uaBinding.h',NULL,NULL,NULL,NULL),(19277,2151,'A','/CInstanciationDialog.cpp',NULL,NULL,NULL,NULL),(19278,2151,'A','/CInstanciationDialog.h',NULL,NULL,NULL,NULL),(19279,2151,'A','/CInstanciationDialog.ui',NULL,NULL,NULL,NULL),(19280,2151,'M','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(19281,2151,'A','/GeneratedFiles/ui_CInstanciationDialog.h',NULL,NULL,NULL,NULL),(19282,2151,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(19283,2151,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(19284,2151,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19285,2152,'M','/CInstanciationDialog.cpp',NULL,NULL,NULL,NULL),(19286,2152,'M','/CInstanciationDialog.h',NULL,NULL,NULL,NULL),(19287,2152,'M','/CInstanciationDialog.ui',NULL,NULL,NULL,NULL),(19288,2152,'M','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(19289,2152,'M','/GeneratedFiles/ui_CInstanciationDialog.h',NULL,NULL,NULL,NULL),(19290,2152,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(19291,2152,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(19292,2152,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(19293,2152,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19294,2152,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(19295,2152,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19296,2152,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(19297,2152,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(19298,2152,'M','/cnodesettree.h',NULL,NULL,NULL,NULL),(19299,2152,'M','/debug/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19300,2152,'M','/debug/moc_cnodesettree.cpp',NULL,NULL,NULL,NULL),(19301,2152,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19302,2153,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19303,2153,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(19304,2153,'M','/cnodesetgraphicslineitem.h',NULL,NULL,NULL,NULL),(19305,2153,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19306,2153,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(19307,2154,'M','/CInstanciationDialog.ui',NULL,NULL,NULL,NULL),(19308,2154,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(19309,2155,'M','/GeneratedFiles/ui_CInstanciationDialog.h',NULL,NULL,NULL,NULL),(19310,2155,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19311,2155,'M','/GraphicItemNavigator.cpp',NULL,NULL,NULL,NULL),(19312,2155,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(19313,2155,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(19314,2155,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19315,2155,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(19316,2155,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19317,2155,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(19318,2155,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19319,2155,'M','/debug/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19320,2156,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(19321,2156,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19322,2156,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(19323,2156,'M','/cnodeset.h',NULL,NULL,NULL,NULL),(19324,2156,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(19325,2156,'M','/cnodesettree.h',NULL,NULL,NULL,NULL),(19326,2156,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19327,2156,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(19328,2156,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(19329,2157,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19330,2157,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19331,2157,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(19332,2157,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19333,2157,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19334,2157,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(19335,2157,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19336,2157,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(19337,2157,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19338,2157,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(19339,2157,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(19340,2157,'M','/debug/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19341,2157,'M','/debug/moc_cnodesettree.cpp',NULL,NULL,NULL,NULL),(19342,2157,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19343,2157,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(19344,2158,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19345,2159,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(19346,2160,'M','/GraphicItemNavigator.cpp',NULL,NULL,NULL,NULL),(19347,2160,'M','/GraphicItemNavigator.h',NULL,NULL,NULL,NULL),(19348,2160,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19349,2160,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(19350,2161,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(19351,2161,'M','/cnodeset.h',NULL,NULL,NULL,NULL),(19352,2161,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19353,2161,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19354,2162,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19355,2162,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19356,2162,'M','/debug/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19357,2163,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(19358,2163,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19359,2163,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19360,2164,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19361,2164,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(19362,2164,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19363,2164,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(19364,2164,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(19365,2164,'M','/csubsystemtree.h',NULL,NULL,NULL,NULL),(19366,2164,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19367,2164,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19368,2165,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19369,2165,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(19370,2165,'M','/debug/moc_csubsystemtree.cpp',NULL,NULL,NULL,NULL),(19371,2165,'M','/debug/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19372,2165,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19373,2166,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19374,2167,'M','/CSecurityParamDialog.cpp',NULL,NULL,NULL,NULL),(19375,2167,'M','/CSecurityParamDialog.h',NULL,NULL,NULL,NULL),(19376,2167,'M','/CSecurityParamDialog.ui',NULL,NULL,NULL,NULL),(19377,2167,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19378,2167,'M','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(19379,2167,'M','/GeneratedFiles/ui_CSecurityParamDialog.h',NULL,NULL,NULL,NULL),(19380,2167,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(19381,2167,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19382,2167,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(19383,2167,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19384,2167,'M','/debug/moc_CSecurityParamDialog.cpp',NULL,NULL,NULL,NULL),(19385,2167,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(19386,2168,'M','/CSecurityParamDialog.cpp',NULL,NULL,NULL,NULL),(19387,2168,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19388,2168,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(19389,2168,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(19390,2168,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(19391,2168,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19392,2168,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(19393,2168,'M','/csimulationserverconfig.cpp',NULL,NULL,NULL,NULL),(19394,2168,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19395,2168,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19396,2169,'M','/debug/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19397,2169,'M','/debug/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19398,2169,'M','/debug/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19399,2170,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(19400,2170,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(19401,2171,'M','/CImportvaluetonode.ui',NULL,NULL,NULL,NULL),(19402,2171,'M','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(19403,2171,'M','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(19404,2171,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(19405,2171,'M','/ccsvexportdialog.ui',NULL,NULL,NULL,NULL),(19406,2171,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(19407,2172,'A','/ClassDiagram.cd',NULL,NULL,NULL,NULL),(19408,2172,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(19409,2172,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(19410,2172,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(19411,2172,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19412,2173,'M','/CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(19413,2173,'M','/CImportvaluetonode.ui',NULL,NULL,NULL,NULL),(19414,2173,'A','/CSubSystemTagDlg.ui',NULL,NULL,NULL,NULL),(19415,2173,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19416,2173,'M','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(19417,2173,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19418,2173,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(19419,2173,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(19420,2173,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(19421,2173,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(19422,2173,'A','/SubSystemTagDlg.cpp',NULL,NULL,NULL,NULL),(19423,2173,'A','/SubSystemTagDlg.h',NULL,NULL,NULL,NULL),(19424,2173,'M','/VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(19425,2173,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19426,2173,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19427,2173,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19428,2173,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(19429,2173,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(19430,2173,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(19431,2173,'M','/cnodeidselectorwidget.h',NULL,NULL,NULL,NULL),(19432,2173,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19433,2173,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(19434,2173,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(19435,2173,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19436,2173,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(19437,2173,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(19438,2173,'M','/csubsystemconfig.h',NULL,NULL,NULL,NULL),(19439,2173,'M','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(19440,2173,'M','/csubsystemserverconfig.h',NULL,NULL,NULL,NULL),(19441,2173,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(19442,2173,'M','/csubsystemtag.h',NULL,NULL,NULL,NULL),(19443,2173,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(19444,2173,'M','/debug/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19445,2173,'M','/debug/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19446,2173,'M','/images/lc_new.ico',NULL,NULL,NULL,NULL),(19447,2173,'M','/main.cpp',NULL,NULL,NULL,NULL),(19448,2173,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19449,2173,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(19450,2173,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(19451,2173,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(19452,2173,'M','/resource.h',NULL,NULL,NULL,NULL),(19453,2174,'A','/GeneratedFiles/ui_CSubSystemTagDlg.h',NULL,NULL,NULL,NULL),(19454,2174,'M','/debug/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19455,2175,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19456,2175,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(19457,2175,'A','/Release/moc_CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(19458,2175,'M','/Release/moc_CParentSelectorDlg.cpp',NULL,NULL,NULL,NULL),(19459,2175,'A','/Release/moc_CSecurityParamDialog.cpp',NULL,NULL,NULL,NULL),(19460,2175,'A','/Release/moc_GraphicItemNavigator.cpp',NULL,NULL,NULL,NULL),(19461,2175,'M','/Release/moc_LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(19462,2175,'M','/Release/moc_VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(19463,2175,'M','/Release/moc_ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(19464,2175,'M','/Release/moc_ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(19465,2175,'A','/Release/moc_ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(19466,2175,'M','/Release/moc_ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(19467,2175,'M','/Release/moc_cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19468,2175,'M','/Release/moc_cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19469,2175,'M','/Release/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(19470,2175,'M','/Release/moc_cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(19471,2175,'A','/Release/moc_cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19472,2175,'M','/Release/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(19473,2175,'M','/Release/moc_cnodesettree.cpp',NULL,NULL,NULL,NULL),(19474,2175,'M','/Release/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19475,2175,'M','/Release/moc_csubsystemtree.cpp',NULL,NULL,NULL,NULL),(19476,2175,'A','/Release/moc_csvexportsubsystem.cpp',NULL,NULL,NULL,NULL),(19477,2175,'M','/Release/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19478,2175,'M','/cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(19479,2175,'M','/cnewprojectwizard.h',NULL,NULL,NULL,NULL),(19480,2175,'M','/cnewprojectwizard.ui',NULL,NULL,NULL,NULL),(19481,2175,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(19482,2175,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(19483,2175,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19484,2175,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(19485,2175,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(19486,2175,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(19487,2176,'M','/GeneratedFiles/ui_cnewprojectwizard.h',NULL,NULL,NULL,NULL),(19488,2176,'M','/Release/moc_cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(19489,2177,'M','/debug/moc_cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(19490,2177,'M','/debug/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(19491,2178,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(19492,2179,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.vcxproj',NULL,NULL,NULL,NULL),(19493,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(19494,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/NumericRange.h',NULL,NULL,NULL,NULL),(19495,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UABase.h',NULL,NULL,NULL,NULL),(19496,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/stdafx.h',NULL,NULL,NULL,NULL),(19497,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/targetver.h',NULL,NULL,NULL,NULL),(19498,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(19499,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(19500,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(19501,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAReference.cpp',NULL,NULL,NULL,NULL),(19502,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(19503,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(19504,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(19505,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(19506,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(19507,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(19508,2179,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(19509,2179,'A','/OpenOpcUa_VS2013/UANodeManager/UANodeManager_VS2017.sln',NULL,NULL,NULL,NULL),(19510,2180,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(19511,2180,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(19512,2181,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.vcxproj',NULL,NULL,NULL,NULL),(19513,2181,'A','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7_VS2017.sln',NULL,NULL,NULL,NULL),(19514,2182,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(19515,2182,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.vcxproj',NULL,NULL,NULL,NULL),(19516,2182,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19517,2182,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(19518,2182,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19519,2182,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(19520,2182,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19521,2182,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/stdafx.cpp',NULL,NULL,NULL,NULL),(19522,2183,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/S7Block.h',NULL,NULL,NULL,NULL),(19523,2183,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(19524,2183,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(19525,2183,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(19526,2184,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(19527,2184,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt_VS2017.sln',NULL,NULL,NULL,NULL),(19528,2184,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/WrappedRoot.h',NULL,NULL,NULL,NULL),(19529,2184,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19530,2184,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19531,2184,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(19532,2184,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(19533,2184,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(19534,2184,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/dllmain.cpp',NULL,NULL,NULL,NULL),(19535,2185,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/VpiMdbServer.vcxproj',NULL,NULL,NULL,NULL),(19536,2185,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.cpp',NULL,NULL,NULL,NULL),(19537,2186,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTycoEx.vcxproj',NULL,NULL,NULL,NULL),(19538,2187,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(19539,2187,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/SourceObject.h',NULL,NULL,NULL,NULL),(19540,2187,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19541,2187,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19542,2187,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(19543,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(19544,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/NumericRange.h',NULL,NULL,NULL,NULL),(19545,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UADataType.h',NULL,NULL,NULL,NULL),(19546,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAVariable.h',NULL,NULL,NULL,NULL),(19547,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAVariableType.h',NULL,NULL,NULL,NULL),(19548,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(19549,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UADataType.cpp',NULL,NULL,NULL,NULL),(19550,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(19551,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(19552,2188,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(19553,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(19554,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(19555,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19556,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(19557,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(19558,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19559,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(19560,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntObject.cpp',NULL,NULL,NULL,NULL),(19561,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(19562,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(19563,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(19564,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(19565,2189,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/stdafx.cpp',NULL,NULL,NULL,NULL),(19566,2190,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2017.sln',NULL,NULL,NULL,NULL),(19567,2191,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19568,2191,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.Designer.cs',NULL,NULL,NULL,NULL),(19569,2191,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19570,2191,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19571,2191,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(19572,2191,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(19573,2192,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(19574,2192,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(19575,2193,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19576,2193,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(19577,2193,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(19578,2193,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19579,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv',NULL,NULL,NULL,NULL),(19580,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/CMakeLists.txt',NULL,NULL,NULL,NULL),(19581,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/VpiRestSrv.vcxproj',NULL,NULL,NULL,NULL),(19582,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/VpiRestSrv.vcxproj.filters',NULL,NULL,NULL,NULL),(19583,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/VpiRestSrv_VS2017.sln',NULL,NULL,NULL,NULL),(19584,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/include',NULL,NULL,NULL,NULL),(19585,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/include/SourceObject.h',NULL,NULL,NULL,NULL),(19586,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/include/UAVpiRestTable.h',NULL,NULL,NULL,NULL),(19587,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/include/VpiInternal.h',NULL,NULL,NULL,NULL),(19588,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/include/VpiRestMessagesTypes.h',NULL,NULL,NULL,NULL),(19589,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/include/VpiRestSrv.h',NULL,NULL,NULL,NULL),(19590,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/include/stdafx.h',NULL,NULL,NULL,NULL),(19591,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/include/targetver.h',NULL,NULL,NULL,NULL),(19592,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source',NULL,NULL,NULL,NULL),(19593,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19594,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19595,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source/UAVpiRestTable.cpp',NULL,NULL,NULL,NULL),(19596,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19597,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source/VpiRestSrv.cpp',NULL,NULL,NULL,NULL),(19598,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source/VpiRestSrv.def',NULL,NULL,NULL,NULL),(19599,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source/VpiRestSrvd.def',NULL,NULL,NULL,NULL),(19600,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source/dllmain.cpp',NULL,NULL,NULL,NULL),(19601,2194,'A','/OpenOpcUa_VS2013/Vpis/VpiRestSrv/source/stdafx.cpp',NULL,NULL,NULL,NULL),(19602,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/120px-Running_icon_-_Noun_Project_17825.svg.png',NULL,NULL,NULL,NULL),(19603,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/AboutBox1.Designer.cs',NULL,NULL,NULL,NULL),(19604,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/AboutBox1.resx',NULL,NULL,NULL,NULL),(19605,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/AddUri.jpg',NULL,NULL,NULL,NULL),(19606,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/Copy_16x.png',NULL,NULL,NULL,NULL),(19607,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.Designer.cs',NULL,NULL,NULL,NULL),(19608,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.resx',NULL,NULL,NULL,NULL),(19609,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/GeneralSetting.png',NULL,NULL,NULL,NULL),(19610,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Program.cs',NULL,NULL,NULL,NULL),(19611,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(19612,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.cs',NULL,NULL,NULL,NULL),(19613,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.resx',NULL,NULL,NULL,NULL),(19614,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19615,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/Resources.Designer.cs',NULL,NULL,NULL,NULL),(19616,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/Resources.resx',NULL,NULL,NULL,NULL),(19617,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/StopSign.png',NULL,NULL,NULL,NULL),(19618,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/Trash.ico',NULL,NULL,NULL,NULL),(19619,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.Designer.cs',NULL,NULL,NULL,NULL),(19620,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19621,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.csproj',NULL,NULL,NULL,NULL),(19622,2195,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.resx',NULL,NULL,NULL,NULL),(19623,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/delete_16.ico',NULL,NULL,NULL,NULL),(19624,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/delete_32.ico',NULL,NULL,NULL,NULL),(19625,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/edit_add.ico',NULL,NULL,NULL,NULL),(19626,2195,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/noun_Waiting_3352311.png',NULL,NULL,NULL,NULL),(19627,2195,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(19628,2195,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToNodeSetEventArgs.cs',NULL,NULL,NULL,NULL),(19629,2195,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19630,2196,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19631,2196,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(19632,2196,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(19633,2196,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(19634,2196,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19635,2196,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(19636,2197,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/120px-Folder-open_Gion.svg.png',NULL,NULL,NULL,NULL),(19637,2197,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.Designer.cs',NULL,NULL,NULL,NULL),(19638,2197,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.resx',NULL,NULL,NULL,NULL),(19639,2197,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19640,2197,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/Resources.Designer.cs',NULL,NULL,NULL,NULL),(19641,2197,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/Resources.resx',NULL,NULL,NULL,NULL),(19642,2197,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.Designer.cs',NULL,NULL,NULL,NULL),(19643,2197,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19644,2197,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.csproj',NULL,NULL,NULL,NULL),(19645,2197,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.resx',NULL,NULL,NULL,NULL),(19646,2197,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(19647,2197,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19648,2197,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(19649,2197,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19650,2198,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(19651,2198,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(19652,2198,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(19653,2198,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(19654,2199,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19655,2200,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(19656,2200,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(19657,2200,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(19658,2201,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(19659,2201,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(19660,2201,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(19661,2202,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(19662,2202,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(19663,2202,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(19664,2202,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(19665,2203,'A','/OpenOpcUa_VS2013/Tools/Base64EncodeDecode',NULL,NULL,NULL,NULL),(19666,2203,'A','/OpenOpcUa_VS2013/Tools/Base64EncodeDecode/Base64EncodeDecode',NULL,NULL,NULL,NULL),(19667,2203,'A','/OpenOpcUa_VS2013/Tools/Base64EncodeDecode/Base64EncodeDecode.sln',NULL,NULL,NULL,NULL),(19668,2203,'A','/OpenOpcUa_VS2013/Tools/Base64EncodeDecode/Base64EncodeDecode/Base64EncodeDecode.vcxproj',NULL,NULL,NULL,NULL),(19669,2203,'A','/OpenOpcUa_VS2013/Tools/Base64EncodeDecode/Base64EncodeDecode/Base64EncodeDecode.vcxproj.filters',NULL,NULL,NULL,NULL),(19670,2204,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(19671,2204,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXPointInformation.cpp',NULL,NULL,NULL,NULL),(19672,2204,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(19673,2205,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(19674,2205,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(19675,2206,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj',NULL,NULL,NULL,NULL),(19676,2206,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(19677,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(19678,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXEvent.h',NULL,NULL,NULL,NULL),(19679,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MXEventLogData.h',NULL,NULL,NULL,NULL),(19680,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/MonitoringSSINode.h',NULL,NULL,NULL,NULL),(19681,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/include/VpiTycoEx.h',NULL,NULL,NULL,NULL),(19682,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19683,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(19684,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEventLogData.cpp',NULL,NULL,NULL,NULL),(19685,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(19686,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MonitoringSSINode.cpp',NULL,NULL,NULL,NULL),(19687,2207,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.cpp',NULL,NULL,NULL,NULL),(19688,2208,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(19689,2208,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19690,2208,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(19691,2209,'D','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTester.vcxproj.filters',NULL,NULL,NULL,NULL),(19692,2209,'D','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.vcxproj.filters',NULL,NULL,NULL,NULL),(19693,2210,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(19694,2210,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19695,2210,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXProject.cpp',NULL,NULL,NULL,NULL),(19696,2210,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakRequest.cpp',NULL,NULL,NULL,NULL),(19697,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx',NULL,NULL,NULL,NULL),(19698,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/CMakeLists.txt',NULL,NULL,NULL,NULL),(19699,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/Resource.rc',NULL,NULL,NULL,NULL),(19700,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/VPIRauUdpEx.vcxproj',NULL,NULL,NULL,NULL),(19701,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/VPIRauUdpEx_VS2017.sln',NULL,NULL,NULL,NULL),(19702,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/include',NULL,NULL,NULL,NULL),(19703,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(19704,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/include/VPIRauUdpEx.h',NULL,NULL,NULL,NULL),(19705,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(19706,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/include/stdafx.h',NULL,NULL,NULL,NULL),(19707,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/include/targetver.h',NULL,NULL,NULL,NULL),(19708,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/resource.h',NULL,NULL,NULL,NULL),(19709,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/source',NULL,NULL,NULL,NULL),(19710,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19711,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19712,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/source/VPIRauUdpEx.cpp',NULL,NULL,NULL,NULL),(19713,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/source/VPIRauUdpEx.def',NULL,NULL,NULL,NULL),(19714,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/source/VPIRauUdpExd.def',NULL,NULL,NULL,NULL),(19715,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19716,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/source/dllmain.cpp',NULL,NULL,NULL,NULL),(19717,2211,'A','/OpenOpcUa_VS2013/Vpis/VPIRauUdpEx/source/stdafx.cpp',NULL,NULL,NULL,NULL),(19718,2212,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(19719,2212,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/stdafx.h',NULL,NULL,NULL,NULL),(19720,2212,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(19721,2212,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(19722,2213,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(19723,2214,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19724,2214,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19725,2214,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(19726,2214,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(19727,2214,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19728,2214,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(19729,2215,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19730,2215,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.Designer.cs',NULL,NULL,NULL,NULL),(19731,2215,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19732,2215,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.resx',NULL,NULL,NULL,NULL),(19733,2215,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19734,2216,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UABase.h',NULL,NULL,NULL,NULL),(19735,2216,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(19736,2216,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(19737,2216,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(19738,2217,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(19739,2218,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2017.sln',NULL,NULL,NULL,NULL),(19740,2219,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.rc',NULL,NULL,NULL,NULL),(19741,2219,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(19742,2220,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19743,2220,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19744,2220,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(19745,2220,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19746,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub',NULL,NULL,NULL,NULL),(19747,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/CMakeLists.txt',NULL,NULL,NULL,NULL),(19748,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.def',NULL,NULL,NULL,NULL),(19749,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.rc',NULL,NULL,NULL,NULL),(19750,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.vcxproj',NULL,NULL,NULL,NULL),(19751,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub_VS2017.sln',NULL,NULL,NULL,NULL),(19752,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPubd.def',NULL,NULL,NULL,NULL),(19753,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include',NULL,NULL,NULL,NULL),(19754,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/BaseControlPacket.h',NULL,NULL,NULL,NULL),(19755,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/ConnAckControlPacket.h',NULL,NULL,NULL,NULL),(19756,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/ConnectControlPacket.h',NULL,NULL,NULL,NULL),(19757,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/DataSetMessage.h',NULL,NULL,NULL,NULL),(19758,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/DisconnectControlPacket.h',NULL,NULL,NULL,NULL),(19759,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/JsonObject.h',NULL,NULL,NULL,NULL),(19760,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/PingRequestControlPacket.h',NULL,NULL,NULL,NULL),(19761,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/PingResponseControlPacket.h',NULL,NULL,NULL,NULL),(19762,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/PubAckControlPacket.h',NULL,NULL,NULL,NULL),(19763,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/PublishControlPacket.h',NULL,NULL,NULL,NULL),(19764,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/SourceObject.h',NULL,NULL,NULL,NULL),(19765,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiInternal.h',NULL,NULL,NULL,NULL),(19766,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(19767,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/stdafx.h',NULL,NULL,NULL,NULL),(19768,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/targetver.h',NULL,NULL,NULL,NULL),(19769,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/resource.h',NULL,NULL,NULL,NULL),(19770,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source',NULL,NULL,NULL,NULL),(19771,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/BaseControlPacket.cpp',NULL,NULL,NULL,NULL),(19772,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/ConnAckControlPacket.cpp',NULL,NULL,NULL,NULL),(19773,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/ConnectControlPacket.cpp',NULL,NULL,NULL,NULL),(19774,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/DisconnectControlPacket.cpp',NULL,NULL,NULL,NULL),(19775,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19776,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(19777,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PingRequestControlPacket.cpp',NULL,NULL,NULL,NULL),(19778,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PingResponseControlPacket.cpp',NULL,NULL,NULL,NULL),(19779,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PubAckControlPacket.cpp',NULL,NULL,NULL,NULL),(19780,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(19781,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19782,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19783,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(19784,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/dllmain.cpp',NULL,NULL,NULL,NULL),(19785,2221,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(19786,2222,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.rc',NULL,NULL,NULL,NULL),(19787,2222,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP.vcxproj',NULL,NULL,NULL,NULL),(19788,2222,'A','/OpenOpcUa_VS2013/Vpis/VpiTP/VpiTP_VS2017.sln',NULL,NULL,NULL,NULL),(19789,2222,'M','/OpenOpcUa_VS2013/Vpis/VpiTP/source/TPDataFileReader.cpp',NULL,NULL,NULL,NULL),(19790,2223,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/VpiSk.vcxproj',NULL,NULL,NULL,NULL),(19791,2224,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19792,2224,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19793,2224,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19794,2225,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(19795,2226,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.Designer.cs',NULL,NULL,NULL,NULL),(19796,2226,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.cs',NULL,NULL,NULL,NULL),(19797,2226,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(19798,2226,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.cs',NULL,NULL,NULL,NULL),(19799,2226,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.resx',NULL,NULL,NULL,NULL),(19800,2226,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19801,2226,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.Designer.cs',NULL,NULL,NULL,NULL),(19802,2226,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19803,2226,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.resx',NULL,NULL,NULL,NULL),(19804,2226,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19805,2226,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(19806,2226,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19807,2226,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(19808,2227,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(19809,2227,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(19810,2227,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19811,2227,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19812,2227,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(19813,2228,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(19814,2228,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt_VS2017.sln',NULL,NULL,NULL,NULL),(19815,2228,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(19816,2228,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19817,2229,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(19818,2229,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19819,2229,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19820,2229,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(19821,2229,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19822,2229,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(19823,2229,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(19824,2230,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19825,2230,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19826,2230,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(19827,2230,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetElement.cs',NULL,NULL,NULL,NULL),(19828,2230,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(19829,2230,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19830,2230,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19831,2230,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSetLibrary.csproj',NULL,NULL,NULL,NULL),(19832,2230,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(19833,2231,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.rc',NULL,NULL,NULL,NULL),(19834,2231,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(19835,2232,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.rc',NULL,NULL,NULL,NULL),(19836,2232,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(19837,2233,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(19838,2233,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.cs',NULL,NULL,NULL,NULL),(19839,2233,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19840,2233,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(19841,2233,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetElement.cs',NULL,NULL,NULL,NULL),(19842,2233,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(19843,2233,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19844,2233,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19845,2233,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(19846,2233,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(19847,2234,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19848,2234,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19849,2234,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19850,2235,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(19851,2235,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(19852,2235,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(19853,2236,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(19854,2236,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(19855,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/CMakeLists.txt',NULL,NULL,NULL,NULL),(19856,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/BaseControlPacket.h',NULL,NULL,NULL,NULL),(19857,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/ConnectControlPacket.h',NULL,NULL,NULL,NULL),(19858,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/DataSetMessage.h',NULL,NULL,NULL,NULL),(19859,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/JsonObject.h',NULL,NULL,NULL,NULL),(19860,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/PubAckControlPacket.h',NULL,NULL,NULL,NULL),(19861,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/PublishControlPacket.h',NULL,NULL,NULL,NULL),(19862,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/SourceObject.h',NULL,NULL,NULL,NULL),(19863,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(19864,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/stdafx.h',NULL,NULL,NULL,NULL),(19865,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/ConnectControlPacket.cpp',NULL,NULL,NULL,NULL),(19866,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19867,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(19868,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PubAckControlPacket.cpp',NULL,NULL,NULL,NULL),(19869,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(19870,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19871,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19872,2237,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(19873,2238,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.vcxproj',NULL,NULL,NULL,NULL),(19874,2238,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.vcxproj',NULL,NULL,NULL,NULL),(19875,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(19876,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(19877,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(19878,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(19879,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(19880,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19881,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19882,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(19883,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19884,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(19885,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(19886,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(19887,2239,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(19888,2240,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(19889,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit',NULL,NULL,NULL,NULL),(19890,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/CMakeLists.txt',NULL,NULL,NULL,NULL),(19891,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(19892,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.vcxproj',NULL,NULL,NULL,NULL),(19893,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit_VS2017.sln',NULL,NULL,NULL,NULL),(19894,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include',NULL,NULL,NULL,NULL),(19895,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/SourceObject.h',NULL,NULL,NULL,NULL),(19896,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/VpiInternal.h',NULL,NULL,NULL,NULL),(19897,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/VpiValuesInit.h',NULL,NULL,NULL,NULL),(19898,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/stdafx.h',NULL,NULL,NULL,NULL),(19899,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/targetver.h',NULL,NULL,NULL,NULL),(19900,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/resource.h',NULL,NULL,NULL,NULL),(19901,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source',NULL,NULL,NULL,NULL),(19902,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19903,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19904,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19905,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(19906,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.def',NULL,NULL,NULL,NULL),(19907,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInitd.def',NULL,NULL,NULL,NULL),(19908,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/dllmain.cpp',NULL,NULL,NULL,NULL),(19909,2241,'A','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/stdafx.cpp',NULL,NULL,NULL,NULL),(19910,2242,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(19911,2242,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/VpiValuesInit.h',NULL,NULL,NULL,NULL),(19912,2242,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/resource.h',NULL,NULL,NULL,NULL),(19913,2242,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(19914,2243,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.cpp',NULL,NULL,NULL,NULL),(19915,2244,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/VpiSk.vcxproj',NULL,NULL,NULL,NULL),(19916,2244,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/include/VpiInternal.h',NULL,NULL,NULL,NULL),(19917,2244,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19918,2244,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19919,2245,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(19920,2246,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(19921,2246,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(19922,2247,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(19923,2247,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.vcxproj',NULL,NULL,NULL,NULL),(19924,2247,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(19925,2248,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.vcxproj',NULL,NULL,NULL,NULL),(19926,2248,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/ConnectControlPacket.h',NULL,NULL,NULL,NULL),(19927,2248,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiCrypto.h',NULL,NULL,NULL,NULL),(19928,2248,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(19929,2248,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/Vpi_openssl_b128rsa15.h',NULL,NULL,NULL,NULL),(19930,2248,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/Vpi_securitypolicy_none.h',NULL,NULL,NULL,NULL),(19931,2248,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/stdafx.h',NULL,NULL,NULL,NULL),(19932,2248,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/ConnectControlPacket.cpp',NULL,NULL,NULL,NULL),(19933,2248,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19934,2248,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiCrypto.cpp',NULL,NULL,NULL,NULL),(19935,2248,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19936,2248,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(19937,2248,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/Vpi_openssl_b128rsa15.cpp',NULL,NULL,NULL,NULL),(19938,2248,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/Vpi_openssl_x509.cpp',NULL,NULL,NULL,NULL),(19939,2248,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/Vpi_securitypolicy_none.cpp',NULL,NULL,NULL,NULL),(19940,2248,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(19941,2249,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(19942,2249,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/stdafx.h',NULL,NULL,NULL,NULL),(19943,2249,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(19944,2250,'M','/OpenOpcUa_VS2013/include/UpdateHeaderFiles.bat',NULL,NULL,NULL,NULL),(19945,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.vcxproj',NULL,NULL,NULL,NULL),(19946,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiCrypto.h',NULL,NULL,NULL,NULL),(19947,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(19948,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/stdafx.h',NULL,NULL,NULL,NULL),(19949,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/ConnectControlPacket.cpp',NULL,NULL,NULL,NULL),(19950,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19951,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(19952,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(19953,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiCrypto.cpp',NULL,NULL,NULL,NULL),(19954,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19955,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(19956,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/Vpi_openssl_b128rsa15.cpp',NULL,NULL,NULL,NULL),(19957,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/Vpi_openssl_x509.cpp',NULL,NULL,NULL,NULL),(19958,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/Vpi_securitypolicy_none.cpp',NULL,NULL,NULL,NULL),(19959,2251,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(19960,2252,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(19961,2252,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19962,2252,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19963,2253,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(19964,2253,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19965,2253,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(19966,2254,'M','/OpenOpcUa_VS2013/Vpis/VpiMethod/VpiMethod.sln',NULL,NULL,NULL,NULL),(19967,2254,'M','/OpenOpcUa_VS2013/Vpis/VpiMethod/VpiMethod.vcxproj',NULL,NULL,NULL,NULL),(19968,2254,'M','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19969,2254,'M','/OpenOpcUa_VS2013/Vpis/VpiMethod/source/VPIMethod.cpp',NULL,NULL,NULL,NULL),(19970,2255,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/ConnectControlPacket.cpp',NULL,NULL,NULL,NULL),(19971,2255,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(19972,2256,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(19973,2256,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/ConnectControlPacket.cpp',NULL,NULL,NULL,NULL),(19974,2256,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(19975,2256,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(19976,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/CMakeLists.txt',NULL,NULL,NULL,NULL),(19977,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/JsonObject.h',NULL,NULL,NULL,NULL),(19978,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/PubAckControlPacket.h',NULL,NULL,NULL,NULL),(19979,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/PublishControlPacket.h',NULL,NULL,NULL,NULL),(19980,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiInternal.h',NULL,NULL,NULL,NULL),(19981,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(19982,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/stdafx.h',NULL,NULL,NULL,NULL),(19983,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19984,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(19985,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PubAckControlPacket.cpp',NULL,NULL,NULL,NULL),(19986,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(19987,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(19988,2257,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(19989,2258,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(19990,2258,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(19991,2258,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(19992,2259,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(19993,2259,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/VpiValuesInit.h',NULL,NULL,NULL,NULL),(19994,2259,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(19995,2259,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(19996,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(19997,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/S7Block.h',NULL,NULL,NULL,NULL),(19998,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/SourceObject.h',NULL,NULL,NULL,NULL),(19999,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(20000,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/snap7.h',NULL,NULL,NULL,NULL),(20001,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/stdafx.h',NULL,NULL,NULL,NULL),(20002,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20003,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(20004,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(20005,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(20006,2260,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20007,2261,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20008,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(20009,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(20010,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(20011,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/WrappedRoot.h',NULL,NULL,NULL,NULL),(20012,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(20013,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20014,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(20015,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20016,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(20017,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntObject.cpp',NULL,NULL,NULL,NULL),(20018,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/WrappedRoot.cpp',NULL,NULL,NULL,NULL),(20019,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(20020,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(20021,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(20022,2262,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/stdafx.cpp',NULL,NULL,NULL,NULL),(20023,2263,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(20024,2263,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(20025,2264,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20026,2265,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(20027,2265,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20028,2265,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20029,2265,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20030,2265,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20031,2266,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(20032,2266,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20033,2267,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(20034,2267,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20035,2267,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20036,2267,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(20037,2267,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(20038,2268,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(20039,2268,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20040,2268,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20041,2269,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(20042,2269,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20043,2270,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(20044,2270,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20045,2270,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(20046,2271,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20047,2271,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(20048,2271,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(20049,2271,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20050,2271,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(20051,2271,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20052,2271,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSetLibrary.csproj',NULL,NULL,NULL,NULL),(20053,2271,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(20054,2271,'A','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedParameter.cs',NULL,NULL,NULL,NULL),(20055,2272,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(20056,2272,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(20057,2273,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(20058,2273,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(20059,2273,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20060,2273,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20061,2273,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(20062,2274,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20063,2274,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20064,2274,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(20065,2274,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedParameter.cs',NULL,NULL,NULL,NULL),(20066,2275,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.rc',NULL,NULL,NULL,NULL),(20067,2275,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(20068,2275,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/stdafx.h',NULL,NULL,NULL,NULL),(20069,2275,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20070,2275,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20071,2275,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(20072,2275,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20073,2276,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(20074,2276,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(20075,2277,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(20076,2277,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(20077,2277,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(20078,2277,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20079,2277,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20080,2277,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20081,2277,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20082,2277,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20083,2277,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(20084,2277,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(20085,2277,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(20086,2277,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20087,2277,'M','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(20088,2278,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(20089,2278,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20090,2278,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20091,2279,'D','/trunk/OpenOpcUaCoreServer.vcxproj.filters',NULL,NULL,NULL,NULL),(20092,2279,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(20093,2279,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(20094,2279,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20095,2279,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20096,2279,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20097,2279,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20098,2279,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20099,2280,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20100,2281,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(20101,2281,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(20102,2281,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(20103,2281,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(20104,2281,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20105,2281,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20106,2281,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20107,2281,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20108,2281,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20109,2281,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20110,2282,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(20111,2282,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(20112,2282,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20113,2282,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20114,2282,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20115,2282,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20116,2283,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(20117,2283,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(20118,2283,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(20119,2283,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20120,2283,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20121,2283,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20122,2283,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20123,2284,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(20124,2284,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20125,2284,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20126,2284,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20127,2284,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20128,2284,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20129,2284,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(20130,2285,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20131,2286,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(20132,2286,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20133,2286,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20134,2286,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20135,2286,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(20136,2287,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(20137,2287,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(20138,2287,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20139,2287,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(20140,2287,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20141,2287,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20142,2287,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20143,2287,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20144,2287,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(20145,2287,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(20146,2287,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(20147,2287,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20148,2288,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20149,2289,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20150,2289,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(20151,2290,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20152,2290,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20153,2290,'M','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(20154,2291,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(20155,2291,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(20156,2291,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(20157,2291,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20158,2291,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(20159,2291,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20160,2291,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20161,2291,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20162,2291,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(20163,2291,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20164,2291,'M','/trunk/source/UAReference.cpp',NULL,NULL,NULL,NULL),(20165,2291,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20166,2292,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(20167,2292,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(20168,2292,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(20169,2292,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(20170,2292,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(20171,2292,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(20172,2292,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(20173,2292,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(20174,2292,'M','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(20175,2292,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(20176,2292,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20177,2292,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20178,2292,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20179,2292,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20180,2292,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(20181,2292,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(20182,2292,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20183,2292,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20184,2293,'M','/trunk/include/HaEngine.h',NULL,NULL,NULL,NULL),(20185,2293,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(20186,2293,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(20187,2293,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(20188,2293,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(20189,2293,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(20190,2293,'M','/trunk/source/LuaDebugger.cpp',NULL,NULL,NULL,NULL),(20191,2293,'M','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(20192,2293,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20193,2293,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(20194,2293,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(20195,2293,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20196,2293,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20197,2293,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20198,2293,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(20199,2293,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20200,2293,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20201,2293,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(20202,2293,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(20203,2293,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20204,2293,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20205,2293,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(20206,2293,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(20207,2293,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(20208,2294,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20209,2294,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20210,2295,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(20211,2295,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(20212,2295,'M','/trunk/source/ContinuationPoint.cpp',NULL,NULL,NULL,NULL),(20213,2295,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(20214,2295,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20215,2295,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20216,2295,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20217,2295,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(20218,2295,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20219,2295,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20220,2295,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(20221,2295,'M','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(20222,2295,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(20223,2295,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(20224,2296,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(20225,2296,'M','/trunk/include/SimulatedGroup.h',NULL,NULL,NULL,NULL),(20226,2296,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20227,2296,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(20228,2296,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20229,2296,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20230,2296,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20231,2296,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(20232,2296,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(20233,2297,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20234,2298,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(20235,2298,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20236,2299,'D','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(20237,2300,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(20238,2301,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(20239,2302,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(20240,2302,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20241,2302,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20242,2302,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20243,2303,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(20244,2303,'M','/trunk/include/VpiFuncCaller.h',NULL,NULL,NULL,NULL),(20245,2303,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20246,2303,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20247,2303,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20248,2303,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20249,2303,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20250,2303,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(20251,2304,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(20252,2304,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20253,2304,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20254,2305,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(20255,2305,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(20256,2305,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20257,2306,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20258,2306,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20259,2306,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20260,2306,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20261,2306,'M','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(20262,2307,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(20263,2307,'M','/trunk/ServerShared/VpiDataValue.h',NULL,NULL,NULL,NULL),(20264,2307,'M','/trunk/include/LuaScript.h',NULL,NULL,NULL,NULL),(20265,2307,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(20266,2307,'M','/trunk/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(20267,2307,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(20268,2307,'M','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(20269,2307,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20270,2307,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(20271,2307,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20272,2307,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20273,2307,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20274,2307,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20275,2307,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(20276,2307,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(20277,2307,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20278,2307,'M','/trunk/source/UAMonitoredItemNotification.cpp',NULL,NULL,NULL,NULL),(20279,2307,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20280,2307,'M','/trunk/source/VpiDataValue.cpp',NULL,NULL,NULL,NULL),(20281,2307,'M','/trunk/source/VpiWriteObject.cpp',NULL,NULL,NULL,NULL),(20282,2308,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(20283,2308,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(20284,2308,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20285,2308,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20286,2308,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20287,2308,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20288,2308,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20289,2309,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(20290,2310,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(20291,2310,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(20292,2310,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20293,2310,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20294,2311,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20295,2312,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(20296,2312,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(20297,2312,'M','/trunk/source/LuaScript.cpp',NULL,NULL,NULL,NULL),(20298,2312,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20299,2312,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20300,2312,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20301,2312,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20302,2312,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20303,2312,'M','/trunk/source/UABinding.cpp',NULL,NULL,NULL,NULL),(20304,2312,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(20305,2312,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20306,2312,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20307,2313,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(20308,2313,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(20309,2313,'M','/trunk/include/MonitoredItemServer.h',NULL,NULL,NULL,NULL),(20310,2313,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(20311,2313,'M','/trunk/include/UADataChangeNotification.h',NULL,NULL,NULL,NULL),(20312,2313,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(20313,2313,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(20314,2313,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(20315,2313,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(20316,2313,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(20317,2313,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20318,2313,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(20319,2313,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(20320,2313,'M','/trunk/source/QueuedCallRequest.cpp',NULL,NULL,NULL,NULL),(20321,2313,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20322,2313,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20323,2313,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20324,2313,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20325,2313,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20326,2313,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(20327,2313,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(20328,2313,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20329,2313,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(20330,2313,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(20331,2314,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(20332,2314,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(20333,2314,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(20334,2314,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(20335,2314,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(20336,2314,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(20337,2314,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20338,2314,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20339,2314,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20340,2314,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20341,2314,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(20342,2314,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20343,2315,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/VpiInternal.h',NULL,NULL,NULL,NULL),(20344,2315,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20345,2315,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20346,2315,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(20347,2315,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.def',NULL,NULL,NULL,NULL),(20348,2315,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInitd.def',NULL,NULL,NULL,NULL),(20349,2316,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(20350,2316,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20351,2316,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20352,2316,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(20353,2316,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.def',NULL,NULL,NULL,NULL),(20354,2316,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClntd.def',NULL,NULL,NULL,NULL),(20355,2316,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(20356,2317,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20357,2317,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20358,2317,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.def',NULL,NULL,NULL,NULL),(20359,2317,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServerd.def',NULL,NULL,NULL,NULL),(20360,2318,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VpiInternal.h',NULL,NULL,NULL,NULL),(20361,2318,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20362,2318,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.def',NULL,NULL,NULL,NULL),(20363,2318,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7d.def',NULL,NULL,NULL,NULL),(20364,2318,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20365,2319,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/VpiSk.vcxproj',NULL,NULL,NULL,NULL),(20366,2319,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20367,2319,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(20368,2319,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20369,2319,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.cpp',NULL,NULL,NULL,NULL),(20370,2319,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.def',NULL,NULL,NULL,NULL),(20371,2319,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSkd.def',NULL,NULL,NULL,NULL),(20372,2320,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/InternalKrnlApi.vcxproj',NULL,NULL,NULL,NULL),(20373,2320,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/include/stdafx.h',NULL,NULL,NULL,NULL),(20374,2320,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/CallerInformation.cpp',NULL,NULL,NULL,NULL),(20375,2320,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/DataSegMutex.cpp',NULL,NULL,NULL,NULL),(20376,2320,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(20377,2320,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/KrnlApiTester.vcxproj',NULL,NULL,NULL,NULL),(20378,2320,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/KrnlApiTester/stdafx.h',NULL,NULL,NULL,NULL),(20379,2321,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.def',NULL,NULL,NULL,NULL),(20380,2321,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPubd.def',NULL,NULL,NULL,NULL),(20381,2321,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20382,2321,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(20383,2321,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20384,2321,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20385,2322,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20386,2322,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(20387,2322,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20388,2322,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(20389,2322,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20390,2322,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(20391,2323,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(20392,2323,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(20393,2323,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20394,2323,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(20395,2323,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20396,2323,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(20397,2324,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/include/SourceObject.h',NULL,NULL,NULL,NULL),(20398,2324,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20399,2324,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(20400,2324,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/source/VpiSk.cpp',NULL,NULL,NULL,NULL),(20401,2325,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.def',NULL,NULL,NULL,NULL),(20402,2325,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPubd.def',NULL,NULL,NULL,NULL),(20403,2325,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20404,2325,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20405,2326,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(20406,2326,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20407,2326,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoEx.def',NULL,NULL,NULL,NULL),(20408,2326,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoExFtdi.def',NULL,NULL,NULL,NULL),(20409,2326,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoExFtdid.def',NULL,NULL,NULL,NULL),(20410,2326,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/VpiTycoExd.def',NULL,NULL,NULL,NULL),(20411,2327,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20412,2328,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(20413,2328,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20414,2329,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(20415,2329,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.cs',NULL,NULL,NULL,NULL),(20416,2329,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20417,2329,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(20418,2329,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(20419,2329,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(20420,2329,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20421,2329,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(20422,2329,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20423,2329,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(20424,2330,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20425,2330,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20426,2331,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20427,2332,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.vcxproj',NULL,NULL,NULL,NULL),(20428,2332,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20429,2332,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20430,2332,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(20431,2332,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20432,2332,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20433,2333,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20434,2333,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20435,2333,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20436,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub',NULL,NULL,NULL,NULL),(20437,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/CMakeLists.txt',NULL,NULL,NULL,NULL),(20438,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub.def',NULL,NULL,NULL,NULL),(20439,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub.rc',NULL,NULL,NULL,NULL),(20440,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub.vcxproj',NULL,NULL,NULL,NULL),(20441,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub_VS2017.sln',NULL,NULL,NULL,NULL),(20442,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSubd.def',NULL,NULL,NULL,NULL),(20443,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include',NULL,NULL,NULL,NULL),(20444,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/BaseControlPacket.h',NULL,NULL,NULL,NULL),(20445,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/ConnAckControlPacket.h',NULL,NULL,NULL,NULL),(20446,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/ConnectControlPacket.h',NULL,NULL,NULL,NULL),(20447,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/DataSetMessage.h',NULL,NULL,NULL,NULL),(20448,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/DisconnectControlPacket.h',NULL,NULL,NULL,NULL),(20449,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/JsonObject.h',NULL,NULL,NULL,NULL),(20450,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/PingRequestControlPacket.h',NULL,NULL,NULL,NULL),(20451,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/PingResponseControlPacket.h',NULL,NULL,NULL,NULL),(20452,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/PubAckControlPacket.h',NULL,NULL,NULL,NULL),(20453,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/PublishControlPacket.h',NULL,NULL,NULL,NULL),(20454,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/SourceObject.h',NULL,NULL,NULL,NULL),(20455,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/SubAckControlPacket.h',NULL,NULL,NULL,NULL),(20456,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/SubscribeControlPacket.h',NULL,NULL,NULL,NULL),(20457,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/VpiCrypto.h',NULL,NULL,NULL,NULL),(20458,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/VpiInternal.h',NULL,NULL,NULL,NULL),(20459,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/VpiUaSub.h',NULL,NULL,NULL,NULL),(20460,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/Vpi_openssl_b128rsa15.h',NULL,NULL,NULL,NULL),(20461,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/Vpi_securitypolicy_none.h',NULL,NULL,NULL,NULL),(20462,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/stdafx.h',NULL,NULL,NULL,NULL),(20463,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/targetver.h',NULL,NULL,NULL,NULL),(20464,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/resource.h',NULL,NULL,NULL,NULL),(20465,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source',NULL,NULL,NULL,NULL),(20466,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/BaseControlPacket.cpp',NULL,NULL,NULL,NULL),(20467,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/ConnAckControlPacket.cpp',NULL,NULL,NULL,NULL),(20468,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/ConnectControlPacket.cpp',NULL,NULL,NULL,NULL),(20469,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/DisconnectControlPacket.cpp',NULL,NULL,NULL,NULL),(20470,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20471,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20472,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/PingRequestControlPacket.cpp',NULL,NULL,NULL,NULL),(20473,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/PingResponseControlPacket.cpp',NULL,NULL,NULL,NULL),(20474,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/PubAckControlPacket.cpp',NULL,NULL,NULL,NULL),(20475,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(20476,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(20477,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/SubAckControlPacket.cpp',NULL,NULL,NULL,NULL),(20478,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/SubscribeControlPacket.cpp',NULL,NULL,NULL,NULL),(20479,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiCrypto.cpp',NULL,NULL,NULL,NULL),(20480,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20481,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiUaSub.cpp',NULL,NULL,NULL,NULL),(20482,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/Vpi_openssl_b128rsa15.cpp',NULL,NULL,NULL,NULL),(20483,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/Vpi_openssl_x509.cpp',NULL,NULL,NULL,NULL),(20484,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/Vpi_securitypolicy_none.cpp',NULL,NULL,NULL,NULL),(20485,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/dllmain.cpp',NULL,NULL,NULL,NULL),(20486,2334,'A','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(20487,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/BaseControlPacket.h',NULL,NULL,NULL,NULL),(20488,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/JsonObject.h',NULL,NULL,NULL,NULL),(20489,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/PubAckControlPacket.h',NULL,NULL,NULL,NULL),(20490,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/PublishControlPacket.h',NULL,NULL,NULL,NULL),(20491,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/VpiUaSub.h',NULL,NULL,NULL,NULL),(20492,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/BaseControlPacket.cpp',NULL,NULL,NULL,NULL),(20493,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20494,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20495,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(20496,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/SubAckControlPacket.cpp',NULL,NULL,NULL,NULL),(20497,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/SubscribeControlPacket.cpp',NULL,NULL,NULL,NULL),(20498,2335,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiUaSub.cpp',NULL,NULL,NULL,NULL),(20499,2336,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/BaseControlPacket.cpp',NULL,NULL,NULL,NULL),(20500,2336,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/ConnectControlPacket.cpp',NULL,NULL,NULL,NULL),(20501,2336,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(20502,2336,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20503,2337,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(20504,2337,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20505,2337,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(20506,2338,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(20507,2338,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(20508,2338,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20509,2338,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(20510,2339,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/JsonObject.h',NULL,NULL,NULL,NULL),(20511,2339,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20512,2339,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(20513,2339,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiUaSub.cpp',NULL,NULL,NULL,NULL),(20514,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/CMakeLists.txt',NULL,NULL,NULL,NULL),(20515,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub.rc',NULL,NULL,NULL,NULL),(20516,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub.vcxproj',NULL,NULL,NULL,NULL),(20517,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/PublishControlPacket.h',NULL,NULL,NULL,NULL),(20518,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/VpiUaSub.h',NULL,NULL,NULL,NULL),(20519,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/resource.h',NULL,NULL,NULL,NULL),(20520,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20521,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20522,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(20523,2340,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiUaSub.cpp',NULL,NULL,NULL,NULL),(20524,2341,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20525,2341,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20526,2342,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.csproj',NULL,NULL,NULL,NULL),(20527,2342,'A','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulatorSignature.pfx',NULL,NULL,NULL,NULL),(20528,2342,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20529,2342,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20530,2343,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20531,2343,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20532,2344,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20533,2345,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(20534,2345,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.cs',NULL,NULL,NULL,NULL),(20535,2345,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20536,2345,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(20537,2345,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(20538,2345,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(20539,2345,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20540,2345,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(20541,2345,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20542,2345,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(20543,2346,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(20544,2346,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(20545,2346,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20546,2346,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20547,2347,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(20548,2347,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/S7Block.h',NULL,NULL,NULL,NULL),(20549,2347,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(20550,2347,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VpiInternal.h',NULL,NULL,NULL,NULL),(20551,2347,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20552,2347,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(20553,2347,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(20554,2347,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20555,2348,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/SourceObject.h',NULL,NULL,NULL,NULL),(20556,2348,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/stdafx.h',NULL,NULL,NULL,NULL),(20557,2348,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20558,2348,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(20559,2348,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(20560,2348,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.def',NULL,NULL,NULL,NULL),(20561,2348,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullExd.def',NULL,NULL,NULL,NULL),(20562,2348,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20563,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu',NULL,NULL,NULL,NULL),(20564,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/CMakeLists.txt',NULL,NULL,NULL,NULL),(20565,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/VpiOptimu.rc',NULL,NULL,NULL,NULL),(20566,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/VpiOptimu.sln',NULL,NULL,NULL,NULL),(20567,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/VpiOptimu.vcxproj',NULL,NULL,NULL,NULL),(20568,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include',NULL,NULL,NULL,NULL),(20569,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/BuiltInType.h',NULL,NULL,NULL,NULL),(20570,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/SharedData.h',NULL,NULL,NULL,NULL),(20571,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/SourceObject.h',NULL,NULL,NULL,NULL),(20572,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/VpiInternal.h',NULL,NULL,NULL,NULL),(20573,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/VpiOptimu.h',NULL,NULL,NULL,NULL),(20574,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/stdafx.h',NULL,NULL,NULL,NULL),(20575,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/targetver.h',NULL,NULL,NULL,NULL),(20576,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/resource.h',NULL,NULL,NULL,NULL),(20577,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source',NULL,NULL,NULL,NULL),(20578,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/BuiltInType.cpp',NULL,NULL,NULL,NULL),(20579,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20580,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/SharedData.cpp',NULL,NULL,NULL,NULL),(20581,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(20582,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20583,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.cpp',NULL,NULL,NULL,NULL),(20584,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.def',NULL,NULL,NULL,NULL),(20585,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimud.def',NULL,NULL,NULL,NULL),(20586,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/dllmain.cpp',NULL,NULL,NULL,NULL),(20587,2349,'A','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/stdafx.cpp',NULL,NULL,NULL,NULL),(20588,2350,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(20589,2350,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(20590,2350,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(20591,2350,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(20592,2350,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20593,2350,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(20594,2351,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiCrypto.h',NULL,NULL,NULL,NULL),(20595,2351,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(20596,2351,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/stdafx.h',NULL,NULL,NULL,NULL),(20597,2351,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20598,2351,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20599,2351,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20600,2351,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(20601,2351,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(20602,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub.rc',NULL,NULL,NULL,NULL),(20603,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/JsonObject.h',NULL,NULL,NULL,NULL),(20604,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/stdafx.h',NULL,NULL,NULL,NULL),(20605,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20606,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(20607,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(20608,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/SubscribeControlPacket.cpp',NULL,NULL,NULL,NULL),(20609,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20610,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiUaSub.cpp',NULL,NULL,NULL,NULL),(20611,2352,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(20612,2353,'M','/OpenOpcUaConfigManager.sln',NULL,NULL,NULL,NULL),(20613,2353,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(20614,2353,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(20615,2353,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(20616,2353,'M','/UABinding.cpp',NULL,NULL,NULL,NULL),(20617,2353,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(20618,2353,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(20619,2353,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(20620,2354,'M','/CAboutDlg.ui',NULL,NULL,NULL,NULL),(20621,2354,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20622,2354,'M','/GeneratedFiles/ui_CAboutDlg.h',NULL,NULL,NULL,NULL),(20623,2354,'M','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(20624,2354,'M','/GeneratedFiles/ui_CInstanciationDialog.h',NULL,NULL,NULL,NULL),(20625,2354,'M','/GeneratedFiles/ui_CParentSelectorDlg.h',NULL,NULL,NULL,NULL),(20626,2354,'M','/GeneratedFiles/ui_CSecurityParamDialog.h',NULL,NULL,NULL,NULL),(20627,2354,'M','/GeneratedFiles/ui_CSubSystemTagDlg.h',NULL,NULL,NULL,NULL),(20628,2354,'M','/GeneratedFiles/ui_CVpiExtraConfigurationDialog.h',NULL,NULL,NULL,NULL),(20629,2354,'M','/GeneratedFiles/ui_LogParameterDialog.h',NULL,NULL,NULL,NULL),(20630,2354,'M','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(20631,2354,'M','/GeneratedFiles/ui_ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(20632,2354,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(20633,2354,'M','/GeneratedFiles/ui_cnewprojectwizard.h',NULL,NULL,NULL,NULL),(20634,2354,'M','/GeneratedFiles/ui_creferencetypeidtoolbox.h',NULL,NULL,NULL,NULL),(20635,2354,'M','/GeneratedFiles/ui_csvexportsubsystem.h',NULL,NULL,NULL,NULL),(20636,2354,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(20637,2354,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(20638,2354,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(20639,2354,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(20640,2354,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(20641,2354,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20642,2354,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(20643,2354,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(20644,2354,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(20645,2354,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(20646,2354,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(20647,2354,'M','/debug/moc_CAboutDlg.cpp',NULL,NULL,NULL,NULL),(20648,2354,'M','/debug/moc_CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(20649,2354,'M','/debug/moc_COpenOpcUaConfigManagerToolbar.cpp',NULL,NULL,NULL,NULL),(20650,2354,'M','/debug/moc_CParentSelectorDlg.cpp',NULL,NULL,NULL,NULL),(20651,2354,'M','/debug/moc_CSecurityParamDialog.cpp',NULL,NULL,NULL,NULL),(20652,2354,'M','/debug/moc_GraphicItemNavigator.cpp',NULL,NULL,NULL,NULL),(20653,2354,'M','/debug/moc_LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(20654,2354,'M','/debug/moc_Simulation.cpp',NULL,NULL,NULL,NULL),(20655,2354,'M','/debug/moc_VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(20656,2354,'M','/debug/moc_carchiveserverconfig.cpp',NULL,NULL,NULL,NULL),(20657,2354,'M','/debug/moc_ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(20658,2354,'M','/debug/moc_ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(20659,2354,'M','/debug/moc_ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(20660,2354,'M','/debug/moc_ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(20661,2354,'M','/debug/moc_ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(20662,2354,'M','/debug/moc_ccsvrecord.cpp',NULL,NULL,NULL,NULL),(20663,2354,'M','/debug/moc_cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20664,2354,'M','/debug/moc_cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20665,2354,'M','/debug/moc_cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(20666,2354,'M','/debug/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(20667,2354,'M','/debug/moc_cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(20668,2354,'M','/debug/moc_cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(20669,2354,'M','/debug/moc_cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(20670,2354,'M','/debug/moc_cnodeset.cpp',NULL,NULL,NULL,NULL),(20671,2354,'M','/debug/moc_cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(20672,2354,'M','/debug/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20673,2354,'M','/debug/moc_cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(20674,2354,'M','/debug/moc_cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(20675,2354,'M','/debug/moc_cnodesettree.cpp',NULL,NULL,NULL,NULL),(20676,2354,'M','/debug/moc_copenopcuaconfigmenagecombobox.cpp',NULL,NULL,NULL,NULL),(20677,2354,'M','/debug/moc_copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(20678,2354,'M','/debug/moc_creferencetypeidtoolbox.cpp',NULL,NULL,NULL,NULL),(20679,2354,'M','/debug/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(20680,2354,'M','/debug/moc_csimulationserverconfig.cpp',NULL,NULL,NULL,NULL),(20681,2354,'M','/debug/moc_csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(20682,2354,'M','/debug/moc_csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(20683,2354,'M','/debug/moc_csubsystemtag.cpp',NULL,NULL,NULL,NULL),(20684,2354,'M','/debug/moc_csubsystemtree.cpp',NULL,NULL,NULL,NULL),(20685,2354,'M','/debug/moc_csvexportsubsystem.cpp',NULL,NULL,NULL,NULL),(20686,2354,'M','/debug/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20687,2354,'M','/debug/moc_uaBinding.cpp',NULL,NULL,NULL,NULL),(20688,2354,'A','/images/GeneralSetting.png',NULL,NULL,NULL,NULL),(20689,2354,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(20690,2355,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20691,2355,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(20692,2355,'M','/debug/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20693,2356,'M','/main.cpp',NULL,NULL,NULL,NULL),(20694,2357,'M','/GeneratedFiles/ui_LogParameterDialog.h',NULL,NULL,NULL,NULL),(20695,2357,'M','/LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(20696,2357,'M','/LogParameterDialog.h',NULL,NULL,NULL,NULL),(20697,2357,'M','/LogParameterDialog.ui',NULL,NULL,NULL,NULL),(20698,2357,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(20699,2357,'M','/ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(20700,2357,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(20701,2357,'M','/ccsvexportdialog.ui',NULL,NULL,NULL,NULL),(20702,2357,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(20703,2357,'M','/ccsvexportnodelisttable.h',NULL,NULL,NULL,NULL),(20704,2357,'M','/ccsvimporttosubsystemdialog.ui',NULL,NULL,NULL,NULL),(20705,2357,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20706,2357,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(20707,2357,'M','/cimportcsvtonodesetdialog.ui',NULL,NULL,NULL,NULL),(20708,2357,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(20709,2357,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(20710,2357,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(20711,2357,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(20712,2357,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(20713,2357,'M','/csubsystemtree.cpp',NULL,NULL,NULL,NULL),(20714,2357,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20715,2357,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(20716,2358,'M','/cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(20717,2358,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(20718,2358,'M','/main.cpp',NULL,NULL,NULL,NULL),(20719,2358,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20720,2359,'M','/CAboutDlg.ui',NULL,NULL,NULL,NULL),(20721,2359,'A','/CUriEditorDialog.ui',NULL,NULL,NULL,NULL),(20722,2359,'M','/GeneratedFiles/ui_CAboutDlg.h',NULL,NULL,NULL,NULL),(20723,2359,'A','/GeneratedFiles/ui_CUriEditorDialog.h',NULL,NULL,NULL,NULL),(20724,2359,'M','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(20725,2359,'M','/GeneratedFiles/ui_ccsvimporttosubsystemdialog.h',NULL,NULL,NULL,NULL),(20726,2359,'M','/GeneratedFiles/ui_cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(20727,2359,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(20728,2359,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(20729,2359,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(20730,2359,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(20731,2359,'A','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(20732,2359,'A','/UriEditorDialog.h',NULL,NULL,NULL,NULL),(20733,2359,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20734,2359,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20735,2359,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(20736,2359,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(20737,2359,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(20738,2359,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(20739,2359,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(20740,2359,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(20741,2359,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20742,2359,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(20743,2359,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20744,2359,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(20745,2360,'M','/CUriEditorDialog.ui',NULL,NULL,NULL,NULL),(20746,2360,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(20747,2360,'M','/UriEditorDialog.h',NULL,NULL,NULL,NULL),(20748,2361,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(20749,2361,'M','/UriEditorDialog.h',NULL,NULL,NULL,NULL),(20750,2361,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(20751,2361,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(20752,2362,'M','/CUriEditorDialog.ui',NULL,NULL,NULL,NULL),(20753,2362,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(20754,2362,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(20755,2362,'M','/UriEditorDialog.h',NULL,NULL,NULL,NULL),(20756,2362,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20757,2362,'M','/cdetailextraviewtablewidget.h',NULL,NULL,NULL,NULL),(20758,2362,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(20759,2362,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(20760,2363,'M','/CUriEditorDialog.ui',NULL,NULL,NULL,NULL),(20761,2363,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(20762,2363,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(20763,2363,'M','/UriEditorDialog.h',NULL,NULL,NULL,NULL),(20764,2363,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20765,2363,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(20766,2363,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(20767,2363,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20768,2363,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(20769,2363,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(20770,2364,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20771,2364,'M','/GeneratedFiles/ui_CUriEditorDialog.h',NULL,NULL,NULL,NULL),(20772,2364,'M','/GeneratedFiles/ui_LogParameterDialog.h',NULL,NULL,NULL,NULL),(20773,2364,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(20774,2364,'M','/LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(20775,2364,'M','/LogParameterDialog.h',NULL,NULL,NULL,NULL),(20776,2364,'M','/LogParameterDialog.ui',NULL,NULL,NULL,NULL),(20777,2364,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(20778,2364,'D','/Release/moc_CAboutDlg.cpp',NULL,NULL,NULL,NULL),(20779,2364,'D','/Release/moc_CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(20780,2364,'D','/Release/moc_COpenOpcUaConfigManagerToolbar.cpp',NULL,NULL,NULL,NULL),(20781,2364,'D','/Release/moc_CParentSelectorDlg.cpp',NULL,NULL,NULL,NULL),(20782,2364,'D','/Release/moc_CSecurityParamDialog.cpp',NULL,NULL,NULL,NULL),(20783,2364,'D','/Release/moc_GraphicItemNavigator.cpp',NULL,NULL,NULL,NULL),(20784,2364,'D','/Release/moc_LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(20785,2364,'D','/Release/moc_Simulation.cpp',NULL,NULL,NULL,NULL),(20786,2364,'D','/Release/moc_VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(20787,2364,'D','/Release/moc_carchiveserverconfig.cpp',NULL,NULL,NULL,NULL),(20788,2364,'D','/Release/moc_ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(20789,2364,'D','/Release/moc_ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(20790,2364,'D','/Release/moc_ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(20791,2364,'D','/Release/moc_ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(20792,2364,'D','/Release/moc_ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(20793,2364,'D','/Release/moc_ccsvrecord.cpp',NULL,NULL,NULL,NULL),(20794,2364,'D','/Release/moc_cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20795,2364,'D','/Release/moc_cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20796,2364,'D','/Release/moc_cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(20797,2364,'D','/Release/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(20798,2364,'D','/Release/moc_cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(20799,2364,'D','/Release/moc_cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(20800,2364,'D','/Release/moc_cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(20801,2364,'D','/Release/moc_cnodeset.cpp',NULL,NULL,NULL,NULL),(20802,2364,'D','/Release/moc_cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(20803,2364,'D','/Release/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20804,2364,'D','/Release/moc_cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(20805,2364,'D','/Release/moc_cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(20806,2364,'D','/Release/moc_cnodesettree.cpp',NULL,NULL,NULL,NULL),(20807,2364,'D','/Release/moc_copenopcuaconfigmenagecombobox.cpp',NULL,NULL,NULL,NULL),(20808,2364,'D','/Release/moc_copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(20809,2364,'D','/Release/moc_creferencetypeidtoolbox.cpp',NULL,NULL,NULL,NULL),(20810,2364,'D','/Release/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(20811,2364,'D','/Release/moc_csimulationserverconfig.cpp',NULL,NULL,NULL,NULL),(20812,2364,'D','/Release/moc_csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(20813,2364,'D','/Release/moc_csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(20814,2364,'D','/Release/moc_csubsystemtag.cpp',NULL,NULL,NULL,NULL),(20815,2364,'D','/Release/moc_csubsystemtree.cpp',NULL,NULL,NULL,NULL),(20816,2364,'D','/Release/moc_csvexportsubsystem.cpp',NULL,NULL,NULL,NULL),(20817,2364,'D','/Release/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20818,2364,'D','/Release/moc_uaBinding.cpp',NULL,NULL,NULL,NULL),(20819,2364,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(20820,2364,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(20821,2364,'M','/UriEditorDialog.h',NULL,NULL,NULL,NULL),(20822,2364,'M','/ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(20823,2364,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(20824,2364,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20825,2364,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20826,2364,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(20827,2364,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(20828,2364,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(20829,2364,'M','/cnodesetdiagramitem.h',NULL,NULL,NULL,NULL),(20830,2364,'M','/cnodesetdiagramitemtext.cpp',NULL,NULL,NULL,NULL),(20831,2364,'M','/cnodesetgraphicslineitem.cpp',NULL,NULL,NULL,NULL),(20832,2364,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20833,2364,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(20834,2364,'M','/cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(20835,2364,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(20836,2364,'M','/debug/moc_cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20837,2364,'M','/debug/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(20838,2364,'M','/debug/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20839,2364,'M','/main.cpp',NULL,NULL,NULL,NULL),(20840,2364,'M','/oouaconfigmanagerinternal.h',NULL,NULL,NULL,NULL),(20841,2364,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20842,2364,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(20843,2365,'M','/CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(20844,2365,'M','/CImportvaluetonode.h',NULL,NULL,NULL,NULL),(20845,2365,'M','/CUriEditorDialog.ui',NULL,NULL,NULL,NULL),(20846,2365,'M','/GeneratedFiles/qrc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20847,2365,'M','/GeneratedFiles/ui_CUriEditorDialog.h',NULL,NULL,NULL,NULL),(20848,2365,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(20849,2365,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(20850,2365,'M','/UriEditorDialog.h',NULL,NULL,NULL,NULL),(20851,2365,'M','/VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(20852,2365,'M','/VpiConfigurationDialog.h',NULL,NULL,NULL,NULL),(20853,2365,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20854,2365,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(20855,2365,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(20856,2365,'M','/cimportcsvtonodesetdialog.h',NULL,NULL,NULL,NULL),(20857,2365,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(20858,2365,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(20859,2365,'M','/openopcuaconfigmanager.qrc',NULL,NULL,NULL,NULL),(20860,2366,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(20861,2366,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(20862,2366,'M','/UriEditorDialog.h',NULL,NULL,NULL,NULL),(20863,2366,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(20864,2366,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(20865,2366,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(20866,2367,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(20867,2367,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(20868,2367,'M','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(20869,2367,'M','/cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(20870,2367,'M','/cnewprojectwizard.h',NULL,NULL,NULL,NULL),(20871,2367,'M','/cnewprojectwizard.ui',NULL,NULL,NULL,NULL),(20872,2367,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(20873,2367,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(20874,2367,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(20875,2367,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(20876,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/VpiRestClient.vcxproj',NULL,NULL,NULL,NULL),(20877,2368,'A','/OpenOpcUa_VS2013/Vpis/VpiRestClient/VpiRestClient_VS2017.sln',NULL,NULL,NULL,NULL),(20878,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/SourceObject.h',NULL,NULL,NULL,NULL),(20879,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/VpiInternal.h',NULL,NULL,NULL,NULL),(20880,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/VpiRestClient.h',NULL,NULL,NULL,NULL),(20881,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/openweathermap.h',NULL,NULL,NULL,NULL),(20882,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/stdafx.h',NULL,NULL,NULL,NULL),(20883,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20884,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(20885,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(20886,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiRestClient.cpp',NULL,NULL,NULL,NULL),(20887,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiRestClient.def',NULL,NULL,NULL,NULL),(20888,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiRestClientd.def',NULL,NULL,NULL,NULL),(20889,2368,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/stdafx.cpp',NULL,NULL,NULL,NULL),(20890,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder',NULL,NULL,NULL,NULL),(20891,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoder.def',NULL,NULL,NULL,NULL),(20892,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoder.sln',NULL,NULL,NULL,NULL),(20893,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoder.vcxproj',NULL,NULL,NULL,NULL),(20894,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoder.vcxproj.filters',NULL,NULL,NULL,NULL),(20895,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoderd.def',NULL,NULL,NULL,NULL),(20896,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source',NULL,NULL,NULL,NULL),(20897,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/BuiltInType.cpp',NULL,NULL,NULL,NULL),(20898,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/DataTypeDictionaries.cpp',NULL,NULL,NULL,NULL),(20899,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/DataTypeDictionary.cpp',NULL,NULL,NULL,NULL),(20900,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(20901,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/OOUA_DataTypeDictionary_Structures.cpp',NULL,NULL,NULL,NULL),(20902,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/XmlAttribute.cpp',NULL,NULL,NULL,NULL),(20903,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(20904,2369,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/stdafx.cpp',NULL,NULL,NULL,NULL),(20905,2370,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/VpiOptimu.vcxproj',NULL,NULL,NULL,NULL),(20906,2370,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/VpiOptimu.h',NULL,NULL,NULL,NULL),(20907,2370,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/SharedData.cpp',NULL,NULL,NULL,NULL),(20908,2370,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.cpp',NULL,NULL,NULL,NULL),(20909,2370,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/stdafx.cpp',NULL,NULL,NULL,NULL),(20910,2371,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(20911,2371,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(20912,2372,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(20913,2372,'M','/trunk/source/QueuedCallRequest.cpp',NULL,NULL,NULL,NULL),(20914,2372,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(20915,2372,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20916,2372,'M','/trunk/source/QueuedQueryFirstRequest.cpp',NULL,NULL,NULL,NULL),(20917,2372,'M','/trunk/source/QueuedQueryNextRequest.cpp',NULL,NULL,NULL,NULL),(20918,2372,'M','/trunk/source/QueuedReadRequest.cpp',NULL,NULL,NULL,NULL),(20919,2372,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(20920,2372,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20921,2372,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(20922,2372,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20923,2372,'M','/trunk/source/UAHistorianVariable.cpp',NULL,NULL,NULL,NULL),(20924,2372,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(20925,2373,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(20926,2373,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(20927,2373,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(20928,2373,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(20929,2373,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(20930,2373,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(20931,2373,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(20932,2373,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(20933,2373,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(20934,2374,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(20935,2375,'M','/trunk/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(20936,2375,'M','/trunk/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(20937,2375,'M','/trunk/include/shared/opcua_p_crypto.h',NULL,NULL,NULL,NULL),(20938,2375,'M','/trunk/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(20939,2375,'M','/trunk/include/shared/opcua_platformdefs.h',NULL,NULL,NULL,NULL),(20940,2375,'M','/trunk/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(20941,2375,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(20942,2375,'M','/trunk/source/opcua_https_internal.c',NULL,NULL,NULL,NULL),(20943,2375,'M','/trunk/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(20944,2375,'M','/trunk/source/opcua_p_interface.c',NULL,NULL,NULL,NULL),(20945,2375,'M','/trunk/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(20946,2375,'M','/trunk/source/opcua_p_openssl_ecdsa.c',NULL,NULL,NULL,NULL),(20947,2375,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(20948,2375,'M','/trunk/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(20949,2375,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(20950,2375,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(20951,2375,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(20952,2375,'M','/trunk/source/opcua_p_wincrypt_random.c',NULL,NULL,NULL,NULL),(20953,2375,'M','/trunk/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(20954,2376,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(20955,2376,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(20956,2376,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(20957,2377,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(20958,2377,'M','/trunk/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(20959,2377,'M','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(20960,2377,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(20961,2377,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(20962,2377,'M','/trunk/source/opcua_guid.c',NULL,NULL,NULL,NULL),(20963,2377,'M','/trunk/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(20964,2377,'M','/trunk/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(20965,2377,'M','/trunk/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(20966,2377,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(20967,2377,'M','/trunk/source/opcua_p_openssl_random.c',NULL,NULL,NULL,NULL),(20968,2377,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(20969,2377,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(20970,2377,'M','/trunk/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(20971,2377,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(20972,2377,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(20973,2378,'M','/trunk/include/shared/opcua_thread.h',NULL,NULL,NULL,NULL),(20974,2378,'M','/trunk/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(20975,2378,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(20976,2379,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(20977,2379,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(20978,2379,'M','/trunk/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(20979,2379,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(20980,2379,'M','/trunk/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(20981,2379,'M','/trunk/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(20982,2379,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(20983,2379,'M','/trunk/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(20984,2379,'M','/trunk/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(20985,2380,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(20986,2380,'M','/trunk/include/shared/opcua_p_types.h',NULL,NULL,NULL,NULL),(20987,2380,'M','/trunk/include/shared/opcua_tcplistener_connectionmanager.h',NULL,NULL,NULL,NULL),(20988,2380,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(20989,2380,'M','/trunk/source/opcua_https_connection.c',NULL,NULL,NULL,NULL),(20990,2380,'M','/trunk/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(20991,2380,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(20992,2380,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(20993,2380,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(20994,2380,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(20995,2380,'M','/trunk/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(20996,2380,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(20997,2380,'M','/trunk/source/opcua_p_win32_pki.c',NULL,NULL,NULL,NULL),(20998,2380,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(20999,2380,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(21000,2380,'M','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(21001,2380,'M','/trunk/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(21002,2380,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(21003,2381,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(21004,2381,'M','/trunk/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(21005,2381,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(21006,2381,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21007,2381,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(21008,2381,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(21009,2381,'M','/trunk/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(21010,2381,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(21011,2381,'M','/trunk/source/opcua_tcplistener_connectionmanager.c',NULL,NULL,NULL,NULL),(21012,2381,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(21013,2381,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(21014,2382,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(21015,2382,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21016,2382,'M','/trunk/source/opcua_thread.c',NULL,NULL,NULL,NULL),(21017,2383,'M','/trunk/CMakeLists.txt',NULL,NULL,NULL,NULL),(21018,2383,'M','/trunk/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(21019,2383,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21020,2383,'M','/trunk/source/opcua_p_thread.c',NULL,NULL,NULL,NULL),(21021,2383,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(21022,2383,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(21023,2384,'M','/trunk/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(21024,2384,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21025,2384,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(21026,2384,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(21027,2384,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(21028,2384,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(21029,2384,'M','/trunk/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(21030,2384,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(21031,2385,'M','/trunk/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(21032,2385,'M','/trunk/include/shared/opcua_trace.h',NULL,NULL,NULL,NULL),(21033,2385,'M','/trunk/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(21034,2385,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(21035,2385,'M','/trunk/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(21036,2385,'M','/trunk/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(21037,2385,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21038,2385,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(21039,2385,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(21040,2385,'M','/trunk/source/opcua_p_securitypolicy_none.c',NULL,NULL,NULL,NULL),(21041,2385,'M','/trunk/source/opcua_p_socket_interface.c',NULL,NULL,NULL,NULL),(21042,2385,'M','/trunk/source/opcua_p_socket_internal.c',NULL,NULL,NULL,NULL),(21043,2385,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(21044,2385,'M','/trunk/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(21045,2385,'M','/trunk/source/opcua_securelistener_policymanager.c',NULL,NULL,NULL,NULL),(21046,2385,'M','/trunk/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(21047,2385,'M','/trunk/source/opcua_tcplistener.c',NULL,NULL,NULL,NULL),(21048,2385,'M','/trunk/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(21049,2385,'M','/trunk/source/opcua_tcpstream.c',NULL,NULL,NULL,NULL),(21050,2385,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(21051,2386,'M','/trunk/include/shared/opcua_builtintypes.h',NULL,NULL,NULL,NULL),(21052,2386,'M','/trunk/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(21053,2386,'M','/trunk/include/shared/opcua_p_securitypolicy_none.h',NULL,NULL,NULL,NULL),(21054,2386,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21055,2386,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(21056,2386,'M','/trunk/source/opcua_types.c',NULL,NULL,NULL,NULL),(21057,2387,'M','/trunk/source/opcua_string.c',NULL,NULL,NULL,NULL),(21058,2387,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(21059,2388,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(21060,2388,'M','/trunk/include/shared/opcua_p_openssl_pki.h',NULL,NULL,NULL,NULL),(21061,2388,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21062,2388,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(21063,2389,'M','/trunk/source/opcua_p_socket.c',NULL,NULL,NULL,NULL),(21064,2389,'M','/trunk/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(21065,2390,'M','/trunk/include/shared/opcua_browsenames.h',NULL,NULL,NULL,NULL),(21066,2391,'M','/trunk/OpenOpcUaStackV1.rc',NULL,NULL,NULL,NULL),(21067,2391,'M','/trunk/include/shared/opcua_browsenames.h',NULL,NULL,NULL,NULL),(21068,2392,'M','/trunk/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(21069,2392,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(21070,2393,'M','/trunk/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(21071,2393,'M','/trunk/source/opcua_types.c',NULL,NULL,NULL,NULL),(21072,2394,'M','/trunk/include/shared/opcua_attributes.h',NULL,NULL,NULL,NULL),(21073,2395,'M','/trunk/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(21074,2396,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21075,2396,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(21076,2396,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(21077,2397,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21078,2398,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(21079,2398,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21080,2398,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(21081,2398,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(21082,2399,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(21083,2399,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(21084,2399,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(21085,2400,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(21086,2401,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(21087,2402,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(21088,2402,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(21089,2403,'M','/trunk/OpenOpcUaStackV1.vcxproj',NULL,NULL,NULL,NULL),(21090,2404,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(21091,2405,'M','/trunk/source/opcua_clientapi.c',NULL,NULL,NULL,NULL),(21092,2405,'M','/trunk/source/opcua_core.c',NULL,NULL,NULL,NULL),(21093,2406,'M','/trunk/include/shared/opcua_identifiers.h',NULL,NULL,NULL,NULL),(21094,2406,'M','/trunk/include/shared/opcua_types.h',NULL,NULL,NULL,NULL),(21095,2406,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(21096,2406,'M','/trunk/source/opcua_types.c',NULL,NULL,NULL,NULL),(21097,2407,'M','/trunk/source/opcua_base64.c',NULL,NULL,NULL,NULL),(21098,2408,'M','/trunk/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(21099,2408,'M','/trunk/include/shared/opcua_crypto.h',NULL,NULL,NULL,NULL),(21100,2408,'M','/trunk/include/shared/opcua_p_openssl.h',NULL,NULL,NULL,NULL),(21101,2408,'M','/trunk/source/opcua_crypto.c',NULL,NULL,NULL,NULL),(21102,2408,'M','/trunk/source/opcua_p_openssl_rsa.c',NULL,NULL,NULL,NULL),(21103,2408,'M','/trunk/source/opcua_p_openssl_sha.c',NULL,NULL,NULL,NULL),(21104,2408,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(21105,2408,'M','/trunk/source/opcua_secureconnection.c',NULL,NULL,NULL,NULL),(21106,2408,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(21107,2408,'M','/trunk/source/opcua_securelistener_channelmanager.c',NULL,NULL,NULL,NULL),(21108,2408,'M','/trunk/source/opcua_securestream.c',NULL,NULL,NULL,NULL),(21109,2408,'M','/trunk/source/opcua_tcpconnection.c',NULL,NULL,NULL,NULL),(21110,2408,'M','/trunk/source/opcua_tcpsecurechannel.c',NULL,NULL,NULL,NULL),(21111,2409,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(21112,2410,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(21113,2410,'M','/trunk/source/opcua_p_openssl.c',NULL,NULL,NULL,NULL),(21114,2411,'M','/trunk/include/shared/opcua_config.h',NULL,NULL,NULL,NULL),(21115,2411,'M','/trunk/source/opcua_p_openssl_pki.c',NULL,NULL,NULL,NULL),(21116,2411,'M','/trunk/source/opcua_p_openssl_x509.c',NULL,NULL,NULL,NULL),(21117,2412,'M','/trunk/source/opcua_p_cryptofactory.c',NULL,NULL,NULL,NULL),(21118,2412,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(21119,2412,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(21120,2412,'M','/trunk/source/opcua_utilities.c',NULL,NULL,NULL,NULL),(21121,2413,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(21122,2413,'M','/trunk/source/opcua_endpoint.c',NULL,NULL,NULL,NULL),(21123,2414,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(21124,2414,'M','/trunk/source/opcua_p_utilities.c',NULL,NULL,NULL,NULL),(21125,2415,'M','/trunk/source/opcua_binarydecoder.c',NULL,NULL,NULL,NULL),(21126,2415,'M','/trunk/source/opcua_buffer.c',NULL,NULL,NULL,NULL),(21127,2415,'M','/trunk/source/opcua_builtintypes.c',NULL,NULL,NULL,NULL),(21128,2415,'M','/trunk/source/opcua_encodeableobject.c',NULL,NULL,NULL,NULL),(21129,2415,'M','/trunk/source/opcua_securelistener.c',NULL,NULL,NULL,NULL),(21130,2416,'M','/trunk/source/opcua_trace.c',NULL,NULL,NULL,NULL),(21131,2417,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(21132,2418,'M','/OpenOpcUa_VS2013/OpenOpcUa_VS2017.sln',NULL,NULL,NULL,NULL),(21133,2419,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/CreateProjectForm.cs',NULL,NULL,NULL,NULL),(21134,2419,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(21135,2419,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetElement.cs',NULL,NULL,NULL,NULL),(21136,2419,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(21137,2419,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(21138,2419,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToNodeSetEventArgs.cs',NULL,NULL,NULL,NULL),(21139,2419,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21140,2419,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(21141,2419,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(21142,2420,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21143,2420,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21144,2421,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21145,2421,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/SourceObject.h',NULL,NULL,NULL,NULL),(21146,2421,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21147,2421,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21148,2421,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21149,2421,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21150,2422,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(21151,2422,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.cs',NULL,NULL,NULL,NULL),(21152,2422,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(21153,2422,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(21154,2422,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21155,2422,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(21156,2422,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21157,2422,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(21158,2422,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(21159,2423,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21160,2423,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21161,2424,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(21162,2424,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgPoint.cpp',NULL,NULL,NULL,NULL),(21163,2425,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/SourceObject.h',NULL,NULL,NULL,NULL),(21164,2425,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21165,2425,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21166,2425,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21167,2426,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21168,2426,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21169,2427,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(21170,2427,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgPoint.cpp',NULL,NULL,NULL,NULL),(21171,2427,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXEvent.cpp',NULL,NULL,NULL,NULL),(21172,2427,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXSpeakBase.cpp',NULL,NULL,NULL,NULL),(21173,2428,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/VpiTyco.rc',NULL,NULL,NULL,NULL),(21174,2428,'M','/OpenOpcUa_VS2013/Vpis/VpiTycoEx/source/MXCfgPoint.cpp',NULL,NULL,NULL,NULL),(21175,2429,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(21176,2429,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(21177,2429,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21178,2429,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiDocument.cs',NULL,NULL,NULL,NULL),(21179,2429,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21180,2429,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmlNodeSetElement.cs',NULL,NULL,NULL,NULL),(21181,2429,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(21182,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient',NULL,NULL,NULL,NULL),(21183,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/CMakeLists.txt',NULL,NULL,NULL,NULL),(21184,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/VpiQualaxyClient.rc',NULL,NULL,NULL,NULL),(21185,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/VpiQualaxyClient.sln',NULL,NULL,NULL,NULL),(21186,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/VpiQualaxyClient.vcxproj',NULL,NULL,NULL,NULL),(21187,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include',NULL,NULL,NULL,NULL),(21188,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/Oauth2Client.h',NULL,NULL,NULL,NULL),(21189,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/SourceObject.h',NULL,NULL,NULL,NULL),(21190,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21191,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/VpiQualaxyClient.h',NULL,NULL,NULL,NULL),(21192,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/VpiQualaxyClientMessagesTypes.h',NULL,NULL,NULL,NULL),(21193,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/stdafx.h',NULL,NULL,NULL,NULL),(21194,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/targetver.h',NULL,NULL,NULL,NULL),(21195,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/resource.h',NULL,NULL,NULL,NULL),(21196,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source',NULL,NULL,NULL,NULL),(21197,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21198,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/Oauth2Client.cpp',NULL,NULL,NULL,NULL),(21199,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21200,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21201,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiQualaxyClient.cpp',NULL,NULL,NULL,NULL),(21202,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiQualaxyClient.def',NULL,NULL,NULL,NULL),(21203,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiQualaxyClientd.def',NULL,NULL,NULL,NULL),(21204,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/dllmain.cpp',NULL,NULL,NULL,NULL),(21205,2430,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21206,2431,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(21207,2431,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.cs',NULL,NULL,NULL,NULL),(21208,2431,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21209,2431,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(21210,2431,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21211,2431,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21212,2431,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedAttributeNode.cs',NULL,NULL,NULL,NULL),(21213,2431,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedParameter.cs',NULL,NULL,NULL,NULL),(21214,2432,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21215,2432,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21216,2433,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.rc',NULL,NULL,NULL,NULL),(21217,2433,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/SourceObject.h',NULL,NULL,NULL,NULL),(21218,2433,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(21219,2433,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21220,2433,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21221,2433,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21222,2433,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(21223,2433,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21224,2434,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(21225,2435,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/VpiOptimu.rc',NULL,NULL,NULL,NULL),(21226,2435,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/SharedData.h',NULL,NULL,NULL,NULL),(21227,2435,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/VpiOptimu.h',NULL,NULL,NULL,NULL),(21228,2435,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/SharedData.cpp',NULL,NULL,NULL,NULL),(21229,2435,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.cpp',NULL,NULL,NULL,NULL),(21230,2435,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21231,2436,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(21232,2436,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21233,2436,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(21234,2436,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21235,2437,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(21236,2438,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/VpiOptimu.rc',NULL,NULL,NULL,NULL),(21237,2438,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.cpp',NULL,NULL,NULL,NULL),(21238,2439,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21239,2439,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21240,2439,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/ownedParameter.cs',NULL,NULL,NULL,NULL),(21241,2440,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21242,2441,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21243,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/VpiQualaxyClient.vcxproj',NULL,NULL,NULL,NULL),(21244,2442,'D','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/Oauth2Client.h',NULL,NULL,NULL,NULL),(21245,2442,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/QualaxyServices.h',NULL,NULL,NULL,NULL),(21246,2442,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/SharedData.h',NULL,NULL,NULL,NULL),(21247,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/SourceObject.h',NULL,NULL,NULL,NULL),(21248,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21249,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/VpiQualaxyClient.h',NULL,NULL,NULL,NULL),(21250,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/VpiQualaxyClientMessagesTypes.h',NULL,NULL,NULL,NULL),(21251,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/stdafx.h',NULL,NULL,NULL,NULL),(21252,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21253,2442,'D','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/Oauth2Client.cpp',NULL,NULL,NULL,NULL),(21254,2442,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/QualaxyServices.cpp',NULL,NULL,NULL,NULL),(21255,2442,'A','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/SharedData.cpp',NULL,NULL,NULL,NULL),(21256,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21257,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21258,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiQualaxyClient.cpp',NULL,NULL,NULL,NULL),(21259,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiQualaxyClient.def',NULL,NULL,NULL,NULL),(21260,2442,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiQualaxyClientd.def',NULL,NULL,NULL,NULL),(21261,2443,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/VpiOptimu.rc',NULL,NULL,NULL,NULL),(21262,2443,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/SharedData.cpp',NULL,NULL,NULL,NULL),(21263,2443,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.cpp',NULL,NULL,NULL,NULL),(21264,2444,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21265,2444,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21266,2445,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21267,2445,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21268,2446,'D','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21269,2447,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(21270,2448,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(21271,2449,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(21272,2450,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiIUaClnt.vcxproj',NULL,NULL,NULL,NULL),(21273,2450,'A','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp','232',NULL,NULL),(21274,2451,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.rc',NULL,NULL,NULL,NULL),(21275,2451,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/ConnectControlPacket.cpp',NULL,NULL,NULL,NULL),(21276,2451,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21277,2451,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(21278,2451,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(21279,2451,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21280,2451,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21281,2451,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(21282,2451,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21283,2452,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/SourceObject.h',NULL,NULL,NULL,NULL),(21284,2452,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21285,2452,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/VpiOptimu.h',NULL,NULL,NULL,NULL),(21286,2452,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21287,2452,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21288,2452,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.cpp',NULL,NULL,NULL,NULL),(21289,2453,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21290,2453,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21291,2454,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/SharedData.h',NULL,NULL,NULL,NULL),(21292,2454,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21293,2454,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/include/VpiQualaxyClient.h',NULL,NULL,NULL,NULL),(21294,2454,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21295,2454,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/QualaxyServices.cpp',NULL,NULL,NULL,NULL),(21296,2454,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/SharedData.cpp',NULL,NULL,NULL,NULL),(21297,2454,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21298,2454,'M','/OpenOpcUa_VS2013/Vpis/VpiQualaxyClient/source/VpiQualaxyClient.cpp',NULL,NULL,NULL,NULL),(21299,2455,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoderd.def',NULL,NULL,NULL,NULL),(21300,2455,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/BuiltInType.cpp',NULL,NULL,NULL,NULL),(21301,2455,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/DataTypeDictionary.cpp',NULL,NULL,NULL,NULL),(21302,2455,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21303,2455,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/OOUA_DataTypeDictionary_Structures.cpp',NULL,NULL,NULL,NULL),(21304,2455,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(21305,2456,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/VpiOptimu.rc',NULL,NULL,NULL,NULL),(21306,2456,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/SharedData.h',NULL,NULL,NULL,NULL),(21307,2456,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/VpiOptimu.h',NULL,NULL,NULL,NULL),(21308,2456,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/stdafx.h',NULL,NULL,NULL,NULL),(21309,2456,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21310,2456,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/SharedData.cpp',NULL,NULL,NULL,NULL),(21311,2456,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.cpp',NULL,NULL,NULL,NULL),(21312,2457,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21313,2458,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21314,2458,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21315,2459,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/SharedData.h',NULL,NULL,NULL,NULL),(21316,2459,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/SharedData.cpp',NULL,NULL,NULL,NULL),(21317,2459,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.cpp',NULL,NULL,NULL,NULL),(21318,2460,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21319,2461,'M','/OpenOpcUa_VS2013/Vpis/VpiSk/InternalKrnlApi/InternalKrnlApi/sources/InternalKrnlApi.cpp',NULL,NULL,NULL,NULL),(21320,2462,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/include/SharedData.h',NULL,NULL,NULL,NULL),(21321,2462,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/SharedData.cpp',NULL,NULL,NULL,NULL),(21322,2462,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/VpiOptimu.cpp',NULL,NULL,NULL,NULL),(21323,2463,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoderd.def',NULL,NULL,NULL,NULL),(21324,2463,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/BuiltInType.cpp',NULL,NULL,NULL,NULL),(21325,2463,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21326,2463,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/OOUA_DataTypeDictionary_Structures.cpp',NULL,NULL,NULL,NULL),(21327,2464,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoder.vcxproj',NULL,NULL,NULL,NULL),(21328,2464,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoder.vcxproj.filters',NULL,NULL,NULL,NULL),(21329,2464,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoderd.def',NULL,NULL,NULL,NULL),(21330,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include',NULL,NULL,NULL,NULL),(21331,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/BuiltInType.h',NULL,NULL,NULL,NULL),(21332,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/DataTypeDictionaries.h',NULL,NULL,NULL,NULL),(21333,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/DataTypeDictionary.h',NULL,NULL,NULL,NULL),(21334,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/EntryPoints.h',NULL,NULL,NULL,NULL),(21335,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/InternalFunctions.h',NULL,NULL,NULL,NULL),(21336,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/InternalStructures.h',NULL,NULL,NULL,NULL),(21337,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/OOUA_DataTypeDictionary_Structures.h',NULL,NULL,NULL,NULL),(21338,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/XmlAttribute.h',NULL,NULL,NULL,NULL),(21339,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/XmlElement.h',NULL,NULL,NULL,NULL),(21340,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/stdafx.h',NULL,NULL,NULL,NULL),(21341,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/targetver.h',NULL,NULL,NULL,NULL),(21342,2464,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/BuiltInType.cpp',NULL,NULL,NULL,NULL),(21343,2464,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/DataTypeDictionary.cpp',NULL,NULL,NULL,NULL),(21344,2464,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21345,2464,'A','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/InternalFunctions.cpp',NULL,NULL,NULL,NULL),(21346,2464,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/OOUA_DataTypeDictionary_Structures.cpp',NULL,NULL,NULL,NULL),(21347,2464,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(21348,2465,'M','/OpenOpcUa_VS2013/Vpis/VpiOptimu/source/SharedData.cpp',NULL,NULL,NULL,NULL),(21349,2466,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(21350,2466,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(21351,2466,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(21352,2466,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(21353,2466,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(21354,2466,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(21355,2467,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(21356,2467,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(21357,2468,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21358,2468,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(21359,2469,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21360,2469,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(21361,2469,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(21362,2470,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21363,2470,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(21364,2470,'M','/trunk/include/VpiDevice.h',NULL,NULL,NULL,NULL),(21365,2470,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(21366,2470,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(21367,2470,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(21368,2470,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(21369,2470,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(21370,2471,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21371,2471,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(21372,2472,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21373,2472,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(21374,2472,'M','/trunk/include/EventDefinition.h',NULL,NULL,NULL,NULL),(21375,2472,'M','/trunk/include/EventsEngine.h',NULL,NULL,NULL,NULL),(21376,2472,'M','/trunk/include/QueuedPublishRequest.h',NULL,NULL,NULL,NULL),(21377,2472,'M','/trunk/include/ServerApplication.h',NULL,NULL,NULL,NULL),(21378,2472,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(21379,2472,'M','/trunk/include/UABase.h',NULL,NULL,NULL,NULL),(21380,2472,'A','/trunk/include/UAEventNotificationContainer.h',NULL,NULL,NULL,NULL),(21381,2472,'M','/trunk/include/UAEventNotificationList.h',NULL,NULL,NULL,NULL),(21382,2472,'M','/trunk/include/UAVariable.h',NULL,NULL,NULL,NULL),(21383,2472,'M','/trunk/source/Definition.cpp',NULL,NULL,NULL,NULL),(21384,2472,'M','/trunk/source/EventDefinition.cpp',NULL,NULL,NULL,NULL),(21385,2472,'M','/trunk/source/EventsEngine.cpp',NULL,NULL,NULL,NULL),(21386,2472,'M','/trunk/source/Field.cpp',NULL,NULL,NULL,NULL),(21387,2472,'M','/trunk/source/HaEngine.cpp',NULL,NULL,NULL,NULL),(21388,2472,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(21389,2472,'M','/trunk/source/MonitoredItemServer.cpp',NULL,NULL,NULL,NULL),(21390,2472,'M','/trunk/source/OpenOpcUaScript.cpp',NULL,NULL,NULL,NULL),(21391,2472,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(21392,2472,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(21393,2472,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(21394,2472,'M','/trunk/source/SimulatedGroup.cpp',NULL,NULL,NULL,NULL),(21395,2472,'M','/trunk/source/StackCallbacks.cpp',NULL,NULL,NULL,NULL),(21396,2472,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(21397,2472,'M','/trunk/source/UABase.cpp',NULL,NULL,NULL,NULL),(21398,2472,'M','/trunk/source/UADataChangeNotification.cpp',NULL,NULL,NULL,NULL),(21399,2472,'A','/trunk/source/UAEventNotificationContainer.cpp',NULL,NULL,NULL,NULL),(21400,2472,'M','/trunk/source/UAEventNotificationList.cpp',NULL,NULL,NULL,NULL),(21401,2472,'M','/trunk/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(21402,2472,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(21403,2472,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(21404,2472,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(21405,2472,'M','/trunk/source/VpiFuncCaller.cpp',NULL,NULL,NULL,NULL),(21406,2472,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(21407,2473,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21408,2473,'M','/trunk/include/QueuedHistoryReadRequest.h',NULL,NULL,NULL,NULL),(21409,2473,'M','/trunk/include/SessionServer.h',NULL,NULL,NULL,NULL),(21410,2473,'M','/trunk/include/SubscriptionServer.h',NULL,NULL,NULL,NULL),(21411,2473,'M','/trunk/include/UAEventNotificationContainer.h',NULL,NULL,NULL,NULL),(21412,2473,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(21413,2473,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(21414,2473,'M','/trunk/source/QueuedPublishRequest.cpp',NULL,NULL,NULL,NULL),(21415,2473,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(21416,2473,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(21417,2473,'M','/trunk/source/SubscriptionServer.cpp',NULL,NULL,NULL,NULL),(21418,2473,'M','/trunk/source/UAEventNotificationContainer.cpp',NULL,NULL,NULL,NULL),(21419,2474,'M','/trunk/include/QueuedHistoryReadRequest.h',NULL,NULL,NULL,NULL),(21420,2474,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(21421,2474,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(21422,2475,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21423,2475,'M','/trunk/include/stdafx.h',NULL,NULL,NULL,NULL),(21424,2475,'M','/trunk/source/Main.cpp',NULL,NULL,NULL,NULL),(21425,2475,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(21426,2475,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(21427,2475,'M','/trunk/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(21428,2475,'M','/trunk/source/VpiDevice.cpp',NULL,NULL,NULL,NULL),(21429,2475,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(21430,2476,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21431,2476,'M','/trunk/source/QueuedHistoryReadRequest.cpp',NULL,NULL,NULL,NULL),(21432,2477,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(21433,2477,'M','/trunk/source/VpiTag.cpp',NULL,NULL,NULL,NULL),(21434,2478,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21435,2478,'M','/trunk/OpenOpcUaCoreServer.vcxproj',NULL,NULL,NULL,NULL),(21436,2478,'M','/trunk/include/VPIScheduler.h',NULL,NULL,NULL,NULL),(21437,2478,'M','/trunk/source/SessionServer.cpp',NULL,NULL,NULL,NULL),(21438,2478,'M','/trunk/source/VPIScheduler.cpp',NULL,NULL,NULL,NULL),(21439,2479,'M','/trunk/OpenOpcUaCoreServer.rc',NULL,NULL,NULL,NULL),(21440,2479,'M','/trunk/include/ServiceModule.h',NULL,NULL,NULL,NULL),(21441,2479,'M','/trunk/source/ServerApplication.cpp',NULL,NULL,NULL,NULL),(21442,2479,'M','/trunk/source/ServiceModule.cpp',NULL,NULL,NULL,NULL),(21443,2480,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/GenericEncoderDecoderd.def',NULL,NULL,NULL,NULL),(21444,2480,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/BuiltInType.h',NULL,NULL,NULL,NULL),(21445,2480,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/include/EntryPoints.h',NULL,NULL,NULL,NULL),(21446,2480,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/BuiltInType.cpp',NULL,NULL,NULL,NULL),(21447,2480,'M','/OpenOpcUa_VS2013/Vpis/GenericEncoderDecoder/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21448,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/VpiRestClient.rc',NULL,NULL,NULL,NULL),(21449,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/VpiRestClient.vcxproj',NULL,NULL,NULL,NULL),(21450,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/SourceObject.h',NULL,NULL,NULL,NULL),(21451,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21452,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/VpiRestClient.h',NULL,NULL,NULL,NULL),(21453,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/openweathermap.h',NULL,NULL,NULL,NULL),(21454,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/include/stdafx.h',NULL,NULL,NULL,NULL),(21455,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21456,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21457,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21458,2481,'M','/OpenOpcUa_VS2013/Vpis/VpiRestClient/source/VpiRestClient.cpp',NULL,NULL,NULL,NULL),(21459,2482,'A','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa_VS2017.sln',NULL,NULL,NULL,NULL),(21460,2482,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21461,2482,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(21462,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.rc',NULL,NULL,NULL,NULL),(21463,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(21464,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa_VS2017.sln',NULL,NULL,NULL,NULL),(21465,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21466,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(21467,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCShutdown.cpp',NULL,NULL,NULL,NULL),(21468,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OpcDaItem.cpp',NULL,NULL,NULL,NULL),(21469,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(21470,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.def',NULL,NULL,NULL,NULL),(21471,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDad.def',NULL,NULL,NULL,NULL),(21472,2483,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21473,2484,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21474,2485,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(21475,2485,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21476,2485,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(21477,2486,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.rc',NULL,NULL,NULL,NULL),(21478,2486,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.vcxproj',NULL,NULL,NULL,NULL),(21479,2486,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VPIComDa.h',NULL,NULL,NULL,NULL),(21480,2486,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21481,2486,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VPIComDa.cpp',NULL,NULL,NULL,NULL),(21482,2486,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21483,2487,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21484,2487,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21485,2487,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21486,2487,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21487,2488,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(21488,2488,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(21489,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/UANodeManager.rc',NULL,NULL,NULL,NULL),(21490,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/InternalNmApi.h',NULL,NULL,NULL,NULL),(21491,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UABase.h',NULL,NULL,NULL,NULL),(21492,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(21493,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(21494,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerStructure.h',NULL,NULL,NULL,NULL),(21495,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/stdafx.h',NULL,NULL,NULL,NULL),(21496,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Definition.cpp',NULL,NULL,NULL,NULL),(21497,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(21498,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(21499,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(21500,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(21501,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(21502,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(21503,2489,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(21504,2490,'M','/OpenOpcUa_VS2013/UANodeManager/NmTester/NmTesterDlg.cpp',NULL,NULL,NULL,NULL),(21505,2490,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/DataValue.cpp',NULL,NULL,NULL,NULL),(21506,2490,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Field.cpp',NULL,NULL,NULL,NULL),(21507,2490,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/FileVersionInfo.cpp',NULL,NULL,NULL,NULL),(21508,2490,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UABase.cpp',NULL,NULL,NULL,NULL),(21509,2490,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAReference.cpp',NULL,NULL,NULL,NULL),(21510,2490,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(21511,2490,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(21512,2490,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(21513,2491,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(21514,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/qrc_OpenOpcUaClient.cpp',NULL,NULL,NULL,NULL),(21515,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_CAboutDlg.h',NULL,NULL,NULL,NULL),(21516,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_OpenOpcUaClient.h',NULL,NULL,NULL,NULL),(21517,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_cdiscoverydlg.h',NULL,NULL,NULL,NULL),(21518,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_cmethodcalldlg.h',NULL,NULL,NULL,NULL),(21519,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_cparameterlogdlg.h',NULL,NULL,NULL,NULL),(21520,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_cuserpassword.h',NULL,NULL,NULL,NULL),(21521,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_monitoreditemparameterdlg.h',NULL,NULL,NULL,NULL),(21522,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_projectparameterdlg.h',NULL,NULL,NULL,NULL),(21523,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_sessionparameterdlg.h',NULL,NULL,NULL,NULL),(21524,2492,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_subscriptionconfigurationdlg.h',NULL,NULL,NULL,NULL),(21525,2492,'A','/OpenOpcUaQtClient/OpenOpcUaFlexClient_vs2017.sln',NULL,NULL,NULL,NULL),(21526,2492,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(21527,2492,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj.filters',NULL,NULL,NULL,NULL),(21528,2492,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(21529,2492,'A','/OpenOpcUaQtClient/cpp.hint',NULL,NULL,NULL,NULL),(21530,2492,'M','/OpenOpcUaQtClient/csubscriptionconfiguration.h',NULL,NULL,NULL,NULL),(21531,2492,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(21532,2493,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(21533,2494,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_OpenOpcUaClient.h',NULL,NULL,NULL,NULL),(21534,2494,'M','/OpenOpcUaQtClient/OpenOpcUaClient.ui',NULL,NULL,NULL,NULL),(21535,2494,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(21536,2494,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(21537,2494,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(21538,2494,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(21539,2494,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(21540,2495,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_OpenOpcUaClient.h',NULL,NULL,NULL,NULL),(21541,2495,'M','/OpenOpcUaQtClient/OpenOpcUaClient.ui',NULL,NULL,NULL,NULL),(21542,2495,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(21543,2495,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(21544,2495,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(21545,2495,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(21546,2495,'M','/OpenOpcUaQtClient/creferencestablewidget.cpp',NULL,NULL,NULL,NULL),(21547,2495,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(21548,2496,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_OpenOpcUaClient.h',NULL,NULL,NULL,NULL),(21549,2496,'M','/OpenOpcUaQtClient/OpenOpcUaClient.ui',NULL,NULL,NULL,NULL),(21550,2496,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(21551,2496,'M','/OpenOpcUaQtClient/cbrowserelt.h',NULL,NULL,NULL,NULL),(21552,2496,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(21553,2496,'M','/OpenOpcUaQtClient/cbrowsertreewidget.h',NULL,NULL,NULL,NULL),(21554,2496,'M','/OpenOpcUaQtClient/cmethodcalldlg.cpp',NULL,NULL,NULL,NULL),(21555,2496,'M','/OpenOpcUaQtClient/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(21556,2496,'M','/OpenOpcUaQtClient/cmonitoreditemelt.h',NULL,NULL,NULL,NULL),(21557,2496,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(21558,2496,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.h',NULL,NULL,NULL,NULL),(21559,2496,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(21560,2496,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.h',NULL,NULL,NULL,NULL),(21561,2496,'M','/OpenOpcUaQtClient/cprojectconfiguration.cpp',NULL,NULL,NULL,NULL),(21562,2496,'M','/OpenOpcUaQtClient/cprojectconfiguration.h',NULL,NULL,NULL,NULL),(21563,2496,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(21564,2496,'M','/OpenOpcUaQtClient/cprojecttreewidget.h',NULL,NULL,NULL,NULL),(21565,2496,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(21566,2496,'M','/OpenOpcUaQtClient/mainwindow.h',NULL,NULL,NULL,NULL),(21567,2497,'M','/OpenOpcUaQtClient/cbrowserelt.cpp',NULL,NULL,NULL,NULL),(21568,2497,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(21569,2498,'M','/OpenOpcUaQtClient/DocumentWindow.cpp',NULL,NULL,NULL,NULL),(21570,2498,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_OpenOpcUaClient.h',NULL,NULL,NULL,NULL),(21571,2498,'M','/OpenOpcUaQtClient/GeneratedFiles/ui_cuserpassword.h',NULL,NULL,NULL,NULL),(21572,2498,'M','/OpenOpcUaQtClient/OpenOpcUaClient.ui',NULL,NULL,NULL,NULL),(21573,2498,'M','/OpenOpcUaQtClient/OpenOpcUaFlexClient_vs2017.sln',NULL,NULL,NULL,NULL),(21574,2498,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(21575,2498,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj.filters',NULL,NULL,NULL,NULL),(21576,2498,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(21577,2498,'M','/OpenOpcUaQtClient/cdiscoverydlg.cpp',NULL,NULL,NULL,NULL),(21578,2498,'M','/OpenOpcUaQtClient/cmethodcalldlg.cpp',NULL,NULL,NULL,NULL),(21579,2498,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(21580,2498,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(21581,2498,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.h',NULL,NULL,NULL,NULL),(21582,2498,'M','/OpenOpcUaQtClient/cprojecttreewidget.cpp',NULL,NULL,NULL,NULL),(21583,2498,'M','/OpenOpcUaQtClient/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(21584,2498,'M','/OpenOpcUaQtClient/csessionconfiguration.h',NULL,NULL,NULL,NULL),(21585,2498,'M','/OpenOpcUaQtClient/cuserpassword.ui',NULL,NULL,NULL,NULL),(21586,2498,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(21587,2498,'M','/OpenOpcUaQtClient/sessionparameterdlg.cpp',NULL,NULL,NULL,NULL),(21588,2498,'M','/OpenOpcUaQtClient/sessionparameterdlg.h',NULL,NULL,NULL,NULL),(21589,2499,'M','/OpenOpcUaQtClient/OpenOpcUaFlexClient.sln',NULL,NULL,NULL,NULL),(21590,2499,'M','/OpenOpcUaQtClient/main.cpp',NULL,NULL,NULL,NULL),(21591,2499,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(21592,2499,'M','/OpenOpcUaQtClient/mainwindow.h',NULL,NULL,NULL,NULL),(21593,2500,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(21594,2501,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(21595,2502,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(21596,2502,'A','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21597,2503,'M','/trunk/OpenOpcUaClientLib/CMakeLists.txt',NULL,NULL,NULL,NULL),(21598,2504,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(21599,2505,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21600,2505,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21601,2506,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21602,2507,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(21603,2507,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(21604,2507,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21605,2507,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21606,2508,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21607,2508,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(21608,2508,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(21609,2508,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(21610,2508,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21611,2508,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(21612,2508,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21613,2508,'A','/trunk/OpenOpcUaClientLib_VS2017.sln',NULL,NULL,NULL,NULL),(21614,2509,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(21615,2509,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21616,2510,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21617,2510,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(21618,2510,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(21619,2510,'M','/trunk/OpenOpcUaClientLib/include/XmlElement.h',NULL,NULL,NULL,NULL),(21620,2510,'M','/trunk/OpenOpcUaClientLib/include/XmlParser.h',NULL,NULL,NULL,NULL),(21621,2510,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(21622,2510,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21623,2510,'M','/trunk/OpenOpcUaClientLib/source/XmlAttribute.cpp',NULL,NULL,NULL,NULL),(21624,2510,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(21625,2510,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(21626,2510,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21627,2510,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21628,2510,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21629,2511,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21630,2511,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(21631,2511,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(21632,2511,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21633,2511,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(21634,2511,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(21635,2511,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21636,2511,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21637,2511,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21638,2512,'M','/trunk/OpenOpcUaClientLib/source/MonitoredItemClient.cpp',NULL,NULL,NULL,NULL),(21639,2512,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21640,2512,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(21641,2512,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(21642,2512,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21643,2512,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21644,2513,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(21645,2513,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21646,2513,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(21647,2513,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21648,2513,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21649,2514,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21650,2514,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21651,2514,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21652,2515,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21653,2515,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.vcxproj',NULL,NULL,NULL,NULL),(21654,2515,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(21655,2515,'M','/trunk/OpenOpcUaClientLib/include/UABuiltInType.h',NULL,NULL,NULL,NULL),(21656,2515,'M','/trunk/OpenOpcUaClientLib/include/XmlElement.h',NULL,NULL,NULL,NULL),(21657,2515,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21658,2515,'M','/trunk/OpenOpcUaClientLib/source/XmlElement.cpp',NULL,NULL,NULL,NULL),(21659,2515,'M','/trunk/OpenOpcUaClientLib/source/XmlParser.cpp',NULL,NULL,NULL,NULL),(21660,2515,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21661,2515,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21662,2515,'M','/trunk/OpenOpcUaClientLib_VS2017.sln',NULL,NULL,NULL,NULL),(21663,2516,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21664,2517,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(21665,2518,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21666,2518,'M','/trunk/OpenOpcUaClientLib/include/MonitoredItemsNotification.h',NULL,NULL,NULL,NULL),(21667,2518,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21668,2518,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21669,2518,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21670,2519,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(21671,2519,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21672,2519,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21673,2520,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21674,2520,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(21675,2520,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(21676,2520,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(21677,2520,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(21678,2520,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21679,2520,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(21680,2520,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(21681,2520,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(21682,2520,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21683,2520,'M','/trunk/OpenOpcUaClientLib/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21684,2521,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21685,2521,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(21686,2521,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(21687,2521,'M','/trunk/OpenOpcUaClientLib/include/stdafx.h',NULL,NULL,NULL,NULL),(21688,2521,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21689,2521,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(21690,2521,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(21691,2521,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(21692,2521,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21693,2521,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21694,2522,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21695,2522,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(21696,2522,'M','/trunk/OpenOpcUaClientLib/include/ClientApplication.h',NULL,NULL,NULL,NULL),(21697,2522,'M','/trunk/OpenOpcUaClientLib/include/ClientSession.h',NULL,NULL,NULL,NULL),(21698,2522,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(21699,2522,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21700,2522,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.def',NULL,NULL,NULL,NULL),(21701,2522,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLibd.def',NULL,NULL,NULL,NULL),(21702,2522,'M','/trunk/OpenOpcUaClientLib/source/SubscriptionClient.cpp',NULL,NULL,NULL,NULL),(21703,2522,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21704,2523,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21705,2523,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21706,2523,'M','/trunk/OpenOpcUaClientLib/source/clientsession.cpp',NULL,NULL,NULL,NULL),(21707,2524,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21708,2525,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21709,2526,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(21710,2526,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21711,2526,'M','/trunk/OpenOpcUaClientLib/source/clientapplication.cpp',NULL,NULL,NULL,NULL),(21712,2527,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(21713,2527,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21714,2528,'M','/trunk/Doc/OpenOpcUaClientLibd.xml',NULL,NULL,NULL,NULL),(21715,2528,'M','/trunk/OpenOpcUaClientLib/OpenOpcUaClientLib.rc',NULL,NULL,NULL,NULL),(21716,2528,'M','/trunk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h',NULL,NULL,NULL,NULL),(21717,2528,'M','/trunk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp',NULL,NULL,NULL,NULL),(21718,2529,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.rc',NULL,NULL,NULL,NULL),(21719,2529,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(21720,2530,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.Designer.cs',NULL,NULL,NULL,NULL),(21721,2530,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/ProjectConfigurationDialog.cs',NULL,NULL,NULL,NULL),(21722,2530,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21723,2530,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(21724,2530,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/AddressSpace.cs',NULL,NULL,NULL,NULL),(21725,2530,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/NodeSetFile.cs',NULL,NULL,NULL,NULL),(21726,2530,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21727,2530,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21728,2531,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21729,2531,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21730,2532,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21731,2532,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/BrowseElt.h',NULL,NULL,NULL,NULL),(21732,2532,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21733,2532,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(21734,2532,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21735,2532,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(21736,2533,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.rc',NULL,NULL,NULL,NULL),(21737,2533,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21738,2533,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(21739,2534,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21740,2534,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(21741,2535,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/S7Block.cpp',NULL,NULL,NULL,NULL),(21742,2535,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21743,2536,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.rc',NULL,NULL,NULL,NULL),(21744,2536,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(21745,2537,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(21746,2537,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL),(21747,2538,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21748,2538,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(21749,2538,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(21750,2539,'M','/OpenOpcUa_VS2013/LuaLib/LuaLib.vcxproj',NULL,NULL,NULL,NULL),(21751,2540,'A','/CImportHistoryConfiguration.cpp',NULL,NULL,NULL,NULL),(21752,2540,'A','/CImportHistoryConfiguration.h',NULL,NULL,NULL,NULL),(21753,2540,'A','/CImportHistoryConfiguration.ui',NULL,NULL,NULL,NULL),(21754,2540,'M','/CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(21755,2540,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(21756,2540,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(21757,2540,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(21758,2540,'M','/SaxParserHandler.cpp',NULL,NULL,NULL,NULL),(21759,2540,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(21760,2540,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(21761,2540,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(21762,2540,'M','/cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(21763,2540,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(21764,2540,'M','/cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(21765,2540,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(21766,2540,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(21767,2540,'M','/cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(21768,2540,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(21769,2540,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(21770,2540,'M','/csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(21771,2540,'M','/csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(21772,2540,'M','/csubsystemtag.cpp',NULL,NULL,NULL,NULL),(21773,2540,'M','/main.cpp',NULL,NULL,NULL,NULL),(21774,2540,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(21775,2541,'M','/GeneratedFiles/ui_cnewprojectwizard.h',NULL,NULL,NULL,NULL),(21776,2541,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(21777,2541,'M','/OpenOpcUaConfigManager_resource.rc',NULL,NULL,NULL,NULL),(21778,2541,'M','/ccsvexportdialog.h',NULL,NULL,NULL,NULL),(21779,2541,'M','/ccsvexportdialog.ui',NULL,NULL,NULL,NULL),(21780,2541,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(21781,2541,'M','/cdetailviewtablewidget.h',NULL,NULL,NULL,NULL),(21782,2541,'M','/cgeneralserverconfig.h',NULL,NULL,NULL,NULL),(21783,2541,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(21784,2541,'M','/cnodeset.h',NULL,NULL,NULL,NULL),(21785,2541,'M','/cnodesetserverconfig.h',NULL,NULL,NULL,NULL),(21786,2541,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(21787,2541,'M','/cserverconfigtree.h',NULL,NULL,NULL,NULL),(21788,2541,'M','/csubsystemconfig.h',NULL,NULL,NULL,NULL),(21789,2541,'M','/csubsystemserverconfig.h',NULL,NULL,NULL,NULL),(21790,2541,'M','/oouaconfigmanagerinternal.h',NULL,NULL,NULL,NULL),(21791,2541,'M','/openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(21792,2542,'M','/CImportHistoryConfiguration.cpp',NULL,NULL,NULL,NULL),(21793,2542,'M','/CImportHistoryConfiguration.h',NULL,NULL,NULL,NULL),(21794,2542,'M','/CImportHistoryConfiguration.ui',NULL,NULL,NULL,NULL),(21795,2542,'M','/CImportvaluetonode.ui',NULL,NULL,NULL,NULL),(21796,2542,'A','/GeneratedFiles/ui_CImportHistoryConfiguration.h',NULL,NULL,NULL,NULL),(21797,2542,'M','/GeneratedFiles/ui_CImportvaluetonode.h',NULL,NULL,NULL,NULL),(21798,2542,'M','/GeneratedFiles/ui_ccsvexportdialog.h',NULL,NULL,NULL,NULL),(21799,2542,'A','/Release/moc_CAboutDlg.cpp',NULL,NULL,NULL,NULL),(21800,2542,'A','/Release/moc_CImportvaluetonode.cpp',NULL,NULL,NULL,NULL),(21801,2542,'A','/Release/moc_CInstanciationDialog.cpp',NULL,NULL,NULL,NULL),(21802,2542,'A','/Release/moc_COpenOpcUaConfigManagerToolbar.cpp',NULL,NULL,NULL,NULL),(21803,2542,'A','/Release/moc_CParentSelectorDlg.cpp',NULL,NULL,NULL,NULL),(21804,2542,'A','/Release/moc_CSecurityParamDialog.cpp',NULL,NULL,NULL,NULL),(21805,2542,'A','/Release/moc_GraphicItemNavigator.cpp',NULL,NULL,NULL,NULL),(21806,2542,'A','/Release/moc_LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(21807,2542,'A','/Release/moc_Simulation.cpp',NULL,NULL,NULL,NULL),(21808,2542,'A','/Release/moc_SubSystemTagDlg.cpp',NULL,NULL,NULL,NULL),(21809,2542,'A','/Release/moc_UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(21810,2542,'A','/Release/moc_VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(21811,2542,'A','/Release/moc_carchiveserverconfig.cpp',NULL,NULL,NULL,NULL),(21812,2542,'A','/Release/moc_ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(21813,2542,'A','/Release/moc_ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(21814,2542,'A','/Release/moc_ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(21815,2542,'A','/Release/moc_ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(21816,2542,'A','/Release/moc_ccsvimporttosubsystemdialog.cpp',NULL,NULL,NULL,NULL),(21817,2542,'A','/Release/moc_ccsvrecord.cpp',NULL,NULL,NULL,NULL),(21818,2542,'A','/Release/moc_cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(21819,2542,'A','/Release/moc_cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(21820,2542,'A','/Release/moc_cgeneralserverconfig.cpp',NULL,NULL,NULL,NULL),(21821,2542,'A','/Release/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(21822,2542,'A','/Release/moc_cimportcsvtonodesetdialog.cpp',NULL,NULL,NULL,NULL),(21823,2542,'A','/Release/moc_cnewprojectwizard.cpp',NULL,NULL,NULL,NULL),(21824,2542,'A','/Release/moc_cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(21825,2542,'A','/Release/moc_cnodeset.cpp',NULL,NULL,NULL,NULL),(21826,2542,'A','/Release/moc_cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(21827,2542,'A','/Release/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(21828,2542,'A','/Release/moc_cnodesetmeshview.cpp',NULL,NULL,NULL,NULL),(21829,2542,'A','/Release/moc_cnodesetserverconfig.cpp',NULL,NULL,NULL,NULL),(21830,2542,'A','/Release/moc_cnodesettree.cpp',NULL,NULL,NULL,NULL),(21831,2542,'A','/Release/moc_copenopcuaconfigmenagecombobox.cpp',NULL,NULL,NULL,NULL),(21832,2542,'A','/Release/moc_copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(21833,2542,'A','/Release/moc_creferencetypeidtoolbox.cpp',NULL,NULL,NULL,NULL),(21834,2542,'A','/Release/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(21835,2542,'A','/Release/moc_csimulationserverconfig.cpp',NULL,NULL,NULL,NULL),(21836,2542,'A','/Release/moc_csubsystemconfig.cpp',NULL,NULL,NULL,NULL),(21837,2542,'A','/Release/moc_csubsystemserverconfig.cpp',NULL,NULL,NULL,NULL),(21838,2542,'A','/Release/moc_csubsystemtag.cpp',NULL,NULL,NULL,NULL),(21839,2542,'A','/Release/moc_csubsystemtree.cpp',NULL,NULL,NULL,NULL),(21840,2542,'A','/Release/moc_csvexportsubsystem.cpp',NULL,NULL,NULL,NULL),(21841,2542,'A','/Release/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(21842,2542,'A','/Release/moc_uaBinding.cpp',NULL,NULL,NULL,NULL),(21843,2542,'M','/ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(21844,2542,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(21845,2542,'M','/ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(21846,2542,'M','/ccsvexportnodelisttable.h',NULL,NULL,NULL,NULL),(21847,2542,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(21848,2542,'M','/ccsvfiletable.h',NULL,NULL,NULL,NULL),(21849,2542,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(21850,2542,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(21851,2542,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(21852,2542,'A','/debug/moc_CImportHistoryConfiguration.cpp',NULL,NULL,NULL,NULL),(21853,2542,'A','/debug/moc_CInstanciationDialog.cpp',NULL,NULL,NULL,NULL),(21854,2542,'M','/debug/moc_LogParameterDialog.cpp',NULL,NULL,NULL,NULL),(21855,2542,'A','/debug/moc_SubSystemTagDlg.cpp',NULL,NULL,NULL,NULL),(21856,2542,'A','/debug/moc_UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(21857,2542,'M','/debug/moc_ccsvexportnodelisttable.cpp',NULL,NULL,NULL,NULL),(21858,2542,'M','/debug/moc_cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(21859,2542,'M','/debug/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(21860,2542,'M','/debug/moc_cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(21861,2542,'M','/debug/moc_openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(21862,2542,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(21863,2543,'M','/CImportHistoryConfiguration.cpp',NULL,NULL,NULL,NULL),(21864,2543,'M','/CImportHistoryConfiguration.h',NULL,NULL,NULL,NULL),(21865,2543,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(21866,2543,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(21867,2543,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(21868,2543,'M','/debug/moc_CImportHistoryConfiguration.cpp',NULL,NULL,NULL,NULL),(21869,2544,'A','/HistoryConfiguration.cpp',NULL,NULL,NULL,NULL),(21870,2544,'A','/HistoryConfiguration.h',NULL,NULL,NULL,NULL),(21871,2544,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(21872,2544,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(21873,2545,'M','/CImportHistoryConfiguration.cpp',NULL,NULL,NULL,NULL),(21874,2545,'M','/CImportHistoryConfiguration.h',NULL,NULL,NULL,NULL),(21875,2545,'M','/CImportHistoryConfiguration.ui',NULL,NULL,NULL,NULL),(21876,2545,'M','/GeneratedFiles/ui_CImportHistoryConfiguration.h',NULL,NULL,NULL,NULL),(21877,2545,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(21878,2545,'M','/VpiConfigurationDialog.cpp',NULL,NULL,NULL,NULL),(21879,2545,'M','/ccsvfiletable.cpp',NULL,NULL,NULL,NULL),(21880,2545,'M','/ccsvfiletable.h',NULL,NULL,NULL,NULL),(21881,2545,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(21882,2545,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(21883,2545,'M','/cnodesetdiagramitem.cpp',NULL,NULL,NULL,NULL),(21884,2545,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(21885,2545,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(21886,2545,'M','/debug/moc_CImportHistoryConfiguration.cpp',NULL,NULL,NULL,NULL),(21887,2546,'M','/CInstanciationDialog.cpp',NULL,NULL,NULL,NULL),(21888,2546,'M','/CInstanciationDialog.h',NULL,NULL,NULL,NULL),(21889,2546,'M','/CInstanciationDialog.ui',NULL,NULL,NULL,NULL),(21890,2546,'A','/CompleteReference.cpp',NULL,NULL,NULL,NULL),(21891,2546,'A','/CompleteReference.h',NULL,NULL,NULL,NULL),(21892,2546,'M','/GeneratedFiles/ui_openopcuaconfigmanager.h',NULL,NULL,NULL,NULL),(21893,2546,'M','/OpenOpcUaConfigManager.vcxproj',NULL,NULL,NULL,NULL),(21894,2546,'M','/OpenOpcUaConfigManager.vcxproj.filters',NULL,NULL,NULL,NULL),(21895,2546,'M','/SubSystemTagDlg.cpp',NULL,NULL,NULL,NULL),(21896,2546,'M','/UriEditorDialog.cpp',NULL,NULL,NULL,NULL),(21897,2546,'M','/ccsvexportattributetable.cpp',NULL,NULL,NULL,NULL),(21898,2546,'M','/ccsvexportdialog.cpp',NULL,NULL,NULL,NULL),(21899,2546,'M','/cdetailextraviewtablewidget.cpp',NULL,NULL,NULL,NULL),(21900,2546,'M','/cdetailviewtablewidget.cpp',NULL,NULL,NULL,NULL),(21901,2546,'M','/cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(21902,2546,'M','/cgeneralviewwidget.h',NULL,NULL,NULL,NULL),(21903,2546,'M','/cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(21904,2546,'M','/cnodeidselectorwidget.h',NULL,NULL,NULL,NULL),(21905,2546,'M','/cnodeset.cpp',NULL,NULL,NULL,NULL),(21906,2546,'M','/cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(21907,2546,'M','/cnodesetmeshdiagram.h',NULL,NULL,NULL,NULL),(21908,2546,'M','/cnodesettree.cpp',NULL,NULL,NULL,NULL),(21909,2546,'M','/copenopcuaconfiguration.cpp',NULL,NULL,NULL,NULL),(21910,2546,'M','/copenopcuaconfiguration.h',NULL,NULL,NULL,NULL),(21911,2546,'M','/cserverconfigtree.cpp',NULL,NULL,NULL,NULL),(21912,2546,'M','/csvexportsubsystem.cpp',NULL,NULL,NULL,NULL),(21913,2546,'M','/debug/moc_cgeneralviewwidget.cpp',NULL,NULL,NULL,NULL),(21914,2546,'M','/debug/moc_cnodeidselectorwidget.cpp',NULL,NULL,NULL,NULL),(21915,2546,'M','/debug/moc_cnodesetmeshdiagram.cpp',NULL,NULL,NULL,NULL),(21916,2546,'M','/openopcuaconfigmanager.cpp',NULL,NULL,NULL,NULL),(21917,2546,'M','/openopcuaconfigmanager.ui',NULL,NULL,NULL,NULL),(21918,2547,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21919,2547,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21920,2547,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21921,2547,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(21922,2547,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(21923,2548,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21924,2548,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21925,2548,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(21926,2549,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(21927,2549,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(21928,2550,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21929,2550,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21930,2550,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21931,2550,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(21932,2550,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(21933,2550,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(21934,2551,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(21935,2551,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(21936,2552,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21937,2552,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21938,2552,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21939,2552,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21940,2552,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21941,2553,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21942,2553,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21943,2553,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(21944,2553,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(21945,2553,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(21946,2554,'M','/OpenOpcUa_VS2013/LuaLib/source/lauxlib.c',NULL,NULL,NULL,NULL),(21947,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21948,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21949,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(21950,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/csessionconfiguration.h',NULL,NULL,NULL,NULL),(21951,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/stdafx.h',NULL,NULL,NULL,NULL),(21952,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/BrowseElt.cpp',NULL,NULL,NULL,NULL),(21953,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(21954,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariable.cpp',NULL,NULL,NULL,NULL),(21955,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(21956,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21957,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(21958,2555,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(21959,2556,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21960,2556,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21961,2556,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/stdafx.h',NULL,NULL,NULL,NULL),(21962,2556,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21963,2556,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21964,2556,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21965,2557,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21966,2557,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/include/stdafx.h',NULL,NULL,NULL,NULL),(21967,2557,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21968,2557,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21969,2557,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(21970,2558,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(21971,2558,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21972,2558,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(21973,2558,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21974,2558,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(21975,2558,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(21976,2558,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(21977,2559,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(21978,2559,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(21979,2559,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21980,2559,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21981,2559,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21982,2559,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21983,2560,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21984,2561,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(21985,2562,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VPINullEx.h',NULL,NULL,NULL,NULL),(21986,2562,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21987,2562,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/stdafx.h',NULL,NULL,NULL,NULL),(21988,2562,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21989,2562,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VPINullEx.cpp',NULL,NULL,NULL,NULL),(21990,2562,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21991,2563,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub.rc',NULL,NULL,NULL,NULL),(21992,2563,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/VpiInternal.h',NULL,NULL,NULL,NULL),(21993,2563,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/VpiUaSub.h',NULL,NULL,NULL,NULL),(21994,2563,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/include/stdafx.h',NULL,NULL,NULL,NULL),(21995,2563,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(21996,2563,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(21997,2563,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(21998,2563,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiUaSub.cpp',NULL,NULL,NULL,NULL),(21999,2563,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/stdafx.cpp',NULL,NULL,NULL,NULL),(22000,2564,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/VpiUaMqttJsonPub.rc',NULL,NULL,NULL,NULL),(22001,2564,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiInternal.h',NULL,NULL,NULL,NULL),(22002,2564,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/VpiUaPub.h',NULL,NULL,NULL,NULL),(22003,2564,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/include/stdafx.h',NULL,NULL,NULL,NULL),(22004,2564,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22005,2564,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22006,2564,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonPub/source/VpiUaPub.cpp',NULL,NULL,NULL,NULL),(22007,2565,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(22008,2565,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(22009,2565,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22010,2565,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(22011,2565,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22012,2565,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22013,2565,'M','/VPIMdbMaster/VPIMdbMaster/source/WriteObject.cpp',NULL,NULL,NULL,NULL),(22014,2566,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22015,2566,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22016,2566,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.def',NULL,NULL,NULL,NULL),(22017,2566,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMasterd.def',NULL,NULL,NULL,NULL),(22018,2566,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22019,2566,'M','/VPIMdbMaster/VPIMdbMaster/source/stdafx.cpp',NULL,NULL,NULL,NULL),(22020,2566,'M','/VPIMdbMaster/VPIMdbMaster_VS2013.sln',NULL,NULL,NULL,NULL),(22021,2567,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(22022,2567,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(22023,2567,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj.filters',NULL,NULL,NULL,NULL),(22024,2567,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(22025,2567,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22026,2567,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22027,2567,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22028,2568,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(22029,2568,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(22030,2568,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22031,2568,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22032,2569,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(22033,2569,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22034,2569,'M','/VPIMdbMaster/VPIMdbMaster_VS2013.sln',NULL,NULL,NULL,NULL),(22035,2570,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(22036,2570,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22037,2570,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22038,2570,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22039,2571,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(22040,2571,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22041,2571,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22042,2572,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(22043,2572,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.def',NULL,NULL,NULL,NULL),(22044,2572,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMasterd.def',NULL,NULL,NULL,NULL),(22045,2573,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(22046,2573,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22047,2573,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22048,2573,'M','/VPIMdbMaster/VPIMdbMaster/source/stdafx.cpp',NULL,NULL,NULL,NULL),(22049,2574,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc',NULL,NULL,NULL,NULL),(22050,2574,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(22051,2574,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(22052,2574,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22053,2574,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(22054,2574,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(22055,2574,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22056,2574,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22057,2575,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22058,2575,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusRequest.cpp',NULL,NULL,NULL,NULL),(22059,2575,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(22060,2575,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22061,2576,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22062,2577,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusMessage.h',NULL,NULL,NULL,NULL),(22063,2577,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusResponse.h',NULL,NULL,NULL,NULL),(22064,2577,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusWrapper.h',NULL,NULL,NULL,NULL),(22065,2577,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(22066,2577,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(22067,2578,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusWrapper.h',NULL,NULL,NULL,NULL),(22068,2578,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusResponse.cpp',NULL,NULL,NULL,NULL),(22069,2579,'M','/VPIMdbMaster/Doc/Analyse VpiMdbMaster.docx',NULL,NULL,NULL,NULL),(22070,2579,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22071,2580,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22072,2580,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22073,2581,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(22074,2582,'A','/VPIMdbMaster/VPIMdbMaster_VS2017.sln',NULL,NULL,NULL,NULL),(22075,2583,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(22076,2583,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22077,2584,'M','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcxproj',NULL,NULL,NULL,NULL),(22078,2585,'M','/VPIMdbMaster/VPIMdbMaster/include/ModbusMessage.h',NULL,NULL,NULL,NULL),(22079,2585,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22080,2585,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusMessage.cpp',NULL,NULL,NULL,NULL),(22081,2585,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22082,2585,'M','/VPIMdbMaster/VPIMdbMaster/source/stdafx.cpp',NULL,NULL,NULL,NULL),(22083,2586,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22084,2586,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22085,2586,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.def',NULL,NULL,NULL,NULL),(22086,2586,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMasterd.def',NULL,NULL,NULL,NULL),(22087,2586,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22088,2587,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(22089,2587,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(22090,2587,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22091,2587,'M','/VPIMdbMaster/VPIMdbMaster/source/ModbusWrapper.cpp',NULL,NULL,NULL,NULL),(22092,2587,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22093,2587,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22094,2588,'M','/VPIMdbMaster/VPIMdbMaster/source/VPIMdbMaster.cpp',NULL,NULL,NULL,NULL),(22095,2589,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22096,2590,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/VPINullEx.rc',NULL,NULL,NULL,NULL),(22097,2590,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/include/stdafx.h',NULL,NULL,NULL,NULL),(22098,2590,'M','/OpenOpcUa_VS2013/Vpis/VPINullEx/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22099,2591,'M','/VPIMdbMaster/VPIMdbMaster/include/VPIMdbMaster.h',NULL,NULL,NULL,NULL),(22100,2592,'M','/VPIMdbMaster/VPIMdbMaster/include/VpiInternal.h',NULL,NULL,NULL,NULL),(22101,2593,'M','/VPIMdbMaster/VPIMdbMaster/include/stdafx.h',NULL,NULL,NULL,NULL),(22102,2594,'M','/VPIMdbMaster/VPIMdbMaster/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22103,2595,'M','/VPIMdbMaster/VPIMdbMaster/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22104,2596,'A','/VPIMdbMaster/VPIMdbMaster.rc','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.rc','88',NULL,NULL),(22105,2596,'A','/VPIMdbMaster/VPIMdbMaster.vcproj','/VPIMdbMaster/VPIMdbMaster/VPIMdbMaster.vcproj','88',NULL,NULL),(22106,2596,'A','/VPIMdbMaster/include','/VPIMdbMaster/VPIMdbMaster/include','88',NULL,NULL),(22107,2596,'A','/VPIMdbMaster/source','/VPIMdbMaster/VPIMdbMaster/source','88',NULL,NULL),(22108,2597,'M','/OpenOpcUaQtClient/cbrowsertreewidget.cpp',NULL,NULL,NULL,NULL),(22109,2597,'M','/OpenOpcUaQtClient/cmonitoreditemtablewidget.cpp',NULL,NULL,NULL,NULL),(22110,2597,'M','/OpenOpcUaQtClient/cnodeattributesdetailtablewidget.cpp',NULL,NULL,NULL,NULL),(22111,2597,'M','/OpenOpcUaQtClient/mainwindow.cpp',NULL,NULL,NULL,NULL),(22112,2598,'M','/OpenOpcUaQtClient/OpenOpcUaFlexClient.sln',NULL,NULL,NULL,NULL),(22113,2598,'M','/OpenOpcUaQtClient/OpenOpcUaQtClient.vcxproj',NULL,NULL,NULL,NULL),(22114,2599,'M','/OpenOpcUaQtClient/csessionconfiguration.cpp',NULL,NULL,NULL,NULL),(22115,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/VpiMdbServer.rc',NULL,NULL,NULL,NULL),(22116,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/SourceObject.h',NULL,NULL,NULL,NULL),(22117,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/VpiInternal.h',NULL,NULL,NULL,NULL),(22118,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/VpiMdbServer.h',NULL,NULL,NULL,NULL),(22119,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/include/stdafx.h',NULL,NULL,NULL,NULL),(22120,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22121,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(22122,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/TcpClient.cpp',NULL,NULL,NULL,NULL),(22123,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22124,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/VpiMdbServer.cpp',NULL,NULL,NULL,NULL),(22125,2600,'M','/OpenOpcUa_VS2013/Vpis/VpiMdbServer/source/stdafx.cpp',NULL,NULL,NULL,NULL),(22126,2601,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.rc',NULL,NULL,NULL,NULL),(22127,2601,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp.vcxproj',NULL,NULL,NULL,NULL),(22128,2601,'D','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp_VS2013.sln',NULL,NULL,NULL,NULL),(22129,2601,'A','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp_VS2017.sln','/OpenOpcUa_VS2013/Vpis/VpiEthIp/VpiEthIp_VS2013.sln','557',NULL,NULL),(22130,2601,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/SessionManager.cpp',NULL,NULL,NULL,NULL),(22131,2601,'M','/OpenOpcUa_VS2013/Vpis/VpiEthIp/source/VpiEthIp.cpp',NULL,NULL,NULL,NULL),(22132,2602,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/VpiUaClnt.h',NULL,NULL,NULL,NULL),(22133,2603,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub.rc',NULL,NULL,NULL,NULL),(22134,2603,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/PublishControlPacket.cpp',NULL,NULL,NULL,NULL),(22135,2603,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/VpiUaSub.cpp',NULL,NULL,NULL,NULL),(22136,2604,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(22137,2605,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/VpiUaClnt.rc',NULL,NULL,NULL,NULL),(22138,2605,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(22139,2605,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/stdafx.h',NULL,NULL,NULL,NULL),(22140,2605,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(22141,2605,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/VpiUaClnt.cpp',NULL,NULL,NULL,NULL),(22142,2605,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/cmonitoreditemelt.cpp',NULL,NULL,NULL,NULL),(22143,2605,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/csubscriptionconfiguration.cpp',NULL,NULL,NULL,NULL),(22144,2605,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/entrypoints.cpp',NULL,NULL,NULL,NULL),(22145,2605,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/source/stdafx.cpp',NULL,NULL,NULL,NULL),(22146,2606,'M','/OpenOpcUa_VS2013/Vpis/VpiIUaClnt/include/SourceObject.h',NULL,NULL,NULL,NULL),(22147,2607,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/VPIS7.rc',NULL,NULL,NULL,NULL),(22148,2607,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/SourceObject.h',NULL,NULL,NULL,NULL),(22149,2607,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/include/VPIS7.h',NULL,NULL,NULL,NULL),(22150,2607,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22151,2607,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(22152,2607,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VPIS7.cpp',NULL,NULL,NULL,NULL),(22153,2607,'M','/OpenOpcUa_VS2013/Vpis/VPIS7/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22154,2608,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/VpiValuesInit.rc',NULL,NULL,NULL,NULL),(22155,2608,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22156,2608,'M','/OpenOpcUa_VS2013/Vpis/VpiValuesInit/source/VpiValuesInit.cpp',NULL,NULL,NULL,NULL),(22157,2609,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/VPIComDa.rc',NULL,NULL,NULL,NULL),(22158,2609,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22159,2609,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/OPCCallback.cpp',NULL,NULL,NULL,NULL),(22160,2609,'M','/OpenOpcUa_VS2013/Vpis/VPIComDa_VS2013/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22161,2610,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/VpiUaMqttJsonSub.rc',NULL,NULL,NULL,NULL),(22162,2610,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22163,2610,'M','/OpenOpcUa_VS2013/Vpis/VpiUaMqttJsonSub/source/JsonObject.cpp',NULL,NULL,NULL,NULL),(22164,2611,'A','/VpiKpi',NULL,NULL,NULL,NULL),(22165,2611,'A','/VpiKpi/VpiKpi',NULL,NULL,NULL,NULL),(22166,2611,'A','/VpiKpi/VpiKpi.sln',NULL,NULL,NULL,NULL),(22167,2611,'A','/VpiKpi/VpiKpi/VpiKpi.vcxproj',NULL,NULL,NULL,NULL),(22168,2611,'A','/VpiKpi/VpiKpi/VpiKpi.vcxproj.filters',NULL,NULL,NULL,NULL),(22169,2612,'M','/VpiKpi/VpiKpi.sln',NULL,NULL,NULL,NULL),(22170,2612,'A','/VpiKpi/VpiKpi/VpiKpi.rc',NULL,NULL,NULL,NULL),(22171,2612,'M','/VpiKpi/VpiKpi/VpiKpi.vcxproj',NULL,NULL,NULL,NULL),(22172,2612,'M','/VpiKpi/VpiKpi/VpiKpi.vcxproj.filters',NULL,NULL,NULL,NULL),(22173,2612,'A','/VpiKpi/VpiKpi/include',NULL,NULL,NULL,NULL),(22174,2612,'A','/VpiKpi/VpiKpi/include/SourceObject.h',NULL,NULL,NULL,NULL),(22175,2612,'A','/VpiKpi/VpiKpi/include/VpiInternal.h',NULL,NULL,NULL,NULL),(22176,2612,'A','/VpiKpi/VpiKpi/include/VpiKpi.h',NULL,NULL,NULL,NULL),(22177,2612,'A','/VpiKpi/VpiKpi/include/stdafx.h',NULL,NULL,NULL,NULL),(22178,2612,'A','/VpiKpi/VpiKpi/include/targetver.h',NULL,NULL,NULL,NULL),(22179,2612,'A','/VpiKpi/VpiKpi/resource.h',NULL,NULL,NULL,NULL),(22180,2612,'A','/VpiKpi/VpiKpi/source',NULL,NULL,NULL,NULL),(22181,2612,'A','/VpiKpi/VpiKpi/source/EntryPoints.cpp',NULL,NULL,NULL,NULL),(22182,2612,'A','/VpiKpi/VpiKpi/source/SourceObject.cpp',NULL,NULL,NULL,NULL),(22183,2612,'A','/VpiKpi/VpiKpi/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22184,2612,'A','/VpiKpi/VpiKpi/source/VpiKpi.cpp',NULL,NULL,NULL,NULL),(22185,2612,'A','/VpiKpi/VpiKpi/source/VpiKpi.def',NULL,NULL,NULL,NULL),(22186,2612,'A','/VpiKpi/VpiKpi/source/VpiKpid.def',NULL,NULL,NULL,NULL),(22187,2612,'A','/VpiKpi/VpiKpi/source/dllmain.cpp',NULL,NULL,NULL,NULL),(22188,2612,'A','/VpiKpi/VpiKpi/source/stdafx.cpp',NULL,NULL,NULL,NULL),(22189,2613,'M','/VpiKpi/VpiKpi/VpiKpi.vcxproj',NULL,NULL,NULL,NULL),(22190,2613,'M','/VpiKpi/VpiKpi/include/SourceObject.h',NULL,NULL,NULL,NULL),(22191,2613,'M','/VpiKpi/VpiKpi/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22192,2614,'M','/VpiKpi/VpiKpi/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22193,2615,'M','/VpiKpi/VpiKpi/source/VpiInternal.cpp',NULL,NULL,NULL,NULL),(22194,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/Alias.h',NULL,NULL,NULL,NULL),(22195,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAInformationModel.h',NULL,NULL,NULL,NULL),(22196,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UAReferenceType.h',NULL,NULL,NULL,NULL),(22197,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/include/UaNodeManagerAPI.h',NULL,NULL,NULL,NULL),(22198,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/Alias.cpp',NULL,NULL,NULL,NULL),(22199,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/InternalNmApi.cpp',NULL,NULL,NULL,NULL),(22200,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManager.def',NULL,NULL,NULL,NULL),(22201,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/OpenOpcUaNodeManagerd.def',NULL,NULL,NULL,NULL),(22202,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAInformationModel.cpp',NULL,NULL,NULL,NULL),(22203,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UANodeManager.cpp',NULL,NULL,NULL,NULL),(22204,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAReferenceType.cpp',NULL,NULL,NULL,NULL),(22205,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UAVariableType.cpp',NULL,NULL,NULL,NULL),(22206,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/UaNodeManagerAPI.cpp',NULL,NULL,NULL,NULL),(22207,2616,'M','/OpenOpcUa_VS2013/UANodeManager/UANodeManager/source/dllmain.cpp',NULL,NULL,NULL,NULL),(22208,2617,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(22209,2617,'M','/OpenOpcUa_VS2013/XiMulator/XiMulator/XiMulator.cs',NULL,NULL,NULL,NULL),(22210,2617,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/Properties/AssemblyInfo.cs',NULL,NULL,NULL,NULL),(22211,2617,'M','/OpenOpcUa_VS2013/XmiToUANodeSetLibrary/XmiToUANodeSet.cs',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `changes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `changeset_parents`
--
DROP TABLE IF EXISTS `changeset_parents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `changeset_parents` (
`changeset_id` int(11) NOT NULL,
`parent_id` int(11) NOT NULL,
KEY `changeset_parents_changeset_ids` (`changeset_id`),
KEY `changeset_parents_parent_ids` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `changeset_parents`
--
LOCK TABLES `changeset_parents` WRITE;
/*!40000 ALTER TABLE `changeset_parents` DISABLE KEYS */;
/*!40000 ALTER TABLE `changeset_parents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `changesets`
--
DROP TABLE IF EXISTS `changesets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `changesets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`repository_id` int(11) NOT NULL,
`revision` varchar(255) NOT NULL,
`committer` varchar(255) DEFAULT NULL,
`committed_on` datetime NOT NULL,
`comments` longtext,
`commit_date` date DEFAULT NULL,
`scmid` varchar(255) DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `changesets_repos_rev` (`repository_id`,`revision`),
KEY `index_changesets_on_user_id` (`user_id`),
KEY `index_changesets_on_repository_id` (`repository_id`),
KEY `index_changesets_on_committed_on` (`committed_on`),
KEY `changesets_repos_scmid` (`repository_id`,`scmid`)
) ENGINE=InnoDB AUTO_INCREMENT=2618 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `changesets`
--
LOCK TABLES `changesets` WRITE;
/*!40000 ALTER TABLE `changesets` DISABLE KEYS */;
INSERT INTO `changesets` VALUES (1,2,'1','Michel','2012-01-09 15:38:24','Import initial','2012-01-09',NULL,1),(2,2,'2','','2012-01-09 18:32:36','Test','2012-01-09',NULL,NULL),(3,2,'3','','2012-01-09 18:57:32','Import initial stack linux','2012-01-09',NULL,NULL),(4,2,'4','','2012-01-10 10:32:01','retrait du dossier build. Fichier regenerer par cmake','2012-01-10',NULL,NULL),(5,2,'5','','2012-01-10 10:53:52','merge opcua_config.h','2012-01-10',NULL,NULL),(6,2,'6','','2012-01-10 11:04:05','merge opcua_core.h et opcua_datetime.h','2012-01-10',NULL,NULL),(7,2,'7','','2012-01-10 11:16:20','merge dans trunk de opcua_datetime.h','2012-01-10',NULL,NULL),(8,2,'8','','2012-01-10 11:23:06','merge dans trunk de opcua_core.h','2012-01-10',NULL,NULL),(9,2,'9','','2012-01-10 11:41:51','merge dans la branche linux de opcua_platformdef.h','2012-01-10',NULL,NULL),(10,2,'10','','2012-01-10 11:44:23','commit dans le trunk de opcua_platformdefs.h','2012-01-10',NULL,NULL),(11,2,'11','','2012-01-10 11:45:02','','2012-01-10',NULL,NULL),(12,2,'12','','2012-01-10 15:55:20','Fin merge dans la branche linux','2012-01-10',NULL,NULL),(13,2,'13','','2012-01-10 15:58:24','Merge des fichiers .h','2012-01-10',NULL,NULL),(14,2,'14','','2012-01-10 18:14:26','etat du merge dans la branche linux le 10/01/2012 18:15','2012-01-10',NULL,NULL),(15,2,'15','','2012-01-11 15:04:25','merge des sources de la stack dans la branche linux','2012-01-11',NULL,NULL),(16,2,'16','','2012-01-11 15:15:07','merge de la stack dans le trunk','2012-01-11',NULL,NULL),(17,2,'17','','2012-01-11 15:25:03','preparation merge','2012-01-11',NULL,NULL),(18,2,'18','','2012-01-11 15:50:15','test merge','2012-01-11',NULL,NULL),(19,2,'19','','2012-01-11 16:10:40','merge de la stack dans le trunk','2012-01-11',NULL,NULL),(20,2,'20','','2012-01-11 18:49:54','','2012-01-11',NULL,NULL),(21,2,'21','','2012-01-11 18:52:17','','2012-01-11',NULL,NULL),(22,2,'22','','2012-01-11 18:52:25','','2012-01-11',NULL,NULL),(23,2,'23','','2012-01-11 18:52:36','','2012-01-11',NULL,NULL),(24,2,'24','','2012-01-11 18:52:47','','2012-01-11',NULL,NULL),(25,2,'25','','2012-01-11 18:53:02','','2012-01-11',NULL,NULL),(26,2,'26','','2012-01-11 18:58:31','','2012-01-11',NULL,NULL),(27,2,'27','','2012-01-11 18:58:41','','2012-01-11',NULL,NULL),(28,2,'28','','2012-01-11 18:59:51','','2012-01-11',NULL,NULL),(29,3,'1','Michel','2012-01-17 20:35:10','','2012-01-17',NULL,1),(30,3,'2','Michel','2012-01-17 20:35:20','','2012-01-17',NULL,1),(31,3,'3','Michel','2012-01-17 23:53:58','','2012-01-17',NULL,1),(32,3,'4','Michel','2012-01-17 23:54:07','','2012-01-17',NULL,1),(33,3,'5','Michel','2012-01-18 00:01:02','','2012-01-18',NULL,1),(34,8,'1','Michel','2012-01-18 00:24:18','','2012-01-18',NULL,1),(35,8,'2','Michel','2012-01-18 00:24:37','','2012-01-18',NULL,1),(36,9,'1','Michel','2012-01-18 01:03:18','','2012-01-18',NULL,1),(37,9,'2','Michel','2012-01-18 01:03:20','','2012-01-18',NULL,1),(38,10,'1','Michel','2012-01-18 01:08:57','','2012-01-18',NULL,1),(39,10,'2','Michel','2012-01-18 01:09:01','','2012-01-18',NULL,1),(40,11,'1','Michel','2012-01-18 02:01:19','Publication initiale du QuickServer V1','2012-01-18',NULL,1),(41,11,'2','Michel','2012-01-18 02:01:57','','2012-01-18',NULL,1),(42,12,'1','Michel','2012-01-18 02:07:58','','2012-01-18',NULL,1),(43,12,'2','Michel','2012-01-18 02:08:02','','2012-01-18',NULL,1),(44,12,'3','Michel','2012-01-18 02:11:30','','2012-01-18',NULL,1),(45,13,'1','Michel','2012-01-18 02:56:53','','2012-01-18',NULL,1),(46,13,'2','Michel','2012-01-18 02:57:01','','2012-01-18',NULL,1),(47,14,'1','Michel','2012-01-18 03:25:15','','2012-01-18',NULL,1),(48,14,'2','Michel','2012-01-18 03:25:19','','2012-01-18',NULL,1),(49,14,'3','Michel','2012-01-18 03:47:48','','2012-01-18',NULL,1),(50,14,'4','Michel','2012-01-18 03:54:44','','2012-01-18',NULL,1),(51,9,'3','Michel','2012-01-18 03:39:08','','2012-01-18',NULL,1),(52,15,'1','Michel','2012-01-18 11:51:41','','2012-01-18',NULL,1),(53,15,'2','Michel','2012-01-18 11:52:04','','2012-01-18',NULL,1),(54,14,'5','Michel','2012-01-18 11:51:49','','2012-01-18',NULL,1),(55,11,'3','Michel','2012-01-18 02:14:06','','2012-01-18',NULL,1),(56,2,'29','gulemarch','2012-01-19 10:27:40','Fin du merge de la stack : modification pour traitement des sockets et des mutex (demande d\'évolution #3)','2012-01-19',NULL,NULL),(57,2,'30','Michel','2012-01-19 11:32:11','','2012-01-19',NULL,1),(58,2,'31','Michel','2012-01-19 11:45:13','','2012-01-19',NULL,1),(59,2,'32','Michel','2012-01-19 12:05:07','folder to store Beta 1 of the stack V1','2012-01-19',NULL,1),(60,2,'33','Michel','2012-01-19 12:05:53','','2012-01-19',NULL,1),(61,2,'34','gulemarch','2012-01-19 12:21:44','','2012-01-19',NULL,NULL),(62,2,'35','gulemarch','2012-01-19 12:46:58','','2012-01-19',NULL,NULL),(63,11,'4','Michel','2012-01-19 11:13:02','','2012-01-19',NULL,1),(64,2,'36','Michel','2012-01-20 07:16:35','Beta 1 of the stack V1','2012-01-20',NULL,1),(65,11,'5','Michel','2012-01-20 15:02:20','','2012-01-20',NULL,1),(66,11,'6','Michel','2012-01-20 15:03:13','Copie du Trunk Windows pour supression des adhÚrences','2012-01-20',NULL,1),(67,11,'7','Michel','2012-01-20 15:04:32','','2012-01-20',NULL,1),(68,4,'1','Michel','2012-01-17 21:37:22','','2012-01-17',NULL,1),(69,4,'2','Michel','2012-01-17 21:37:30','','2012-01-17',NULL,1),(70,3,'6','Michel','2012-01-18 00:24:34','','2012-01-18',NULL,1),(71,10,'3','Michel','2012-01-18 03:34:49','','2012-01-18',NULL,1),(72,10,'4','Michel','2012-01-18 03:37:41','','2012-01-18',NULL,1),(73,12,'4','Michel','2012-01-20 15:33:55','','2012-01-20',NULL,1),(74,12,'5','Michel','2012-01-20 15:39:56','Copie du Trunk Windows pour supression des adhÚrences','2012-01-20',NULL,1),(75,12,'6','Michel','2012-01-20 15:42:07','','2012-01-20',NULL,1),(76,2,'37','Michel','2012-01-24 02:11:23','','2012-01-24',NULL,1),(77,11,'8','Michel','2012-02-22 14:18:20','','2012-02-22',NULL,1),(78,12,'7','Michel','2012-02-22 14:18:33','','2012-02-22',NULL,1),(79,11,'9','Michel','2012-02-27 16:19:21','','2012-02-27',NULL,1),(80,11,'10','Michel','2012-03-06 14:08:31','','2012-03-06',NULL,1),(81,12,'8','Michel','2012-02-27 16:19:25','','2012-02-27',NULL,1),(82,2,'38','Michel','2012-03-13 10:21:22','','2012-03-13',NULL,1),(83,11,'11','Michel','2012-03-18 12:28:09','','2012-03-18',NULL,1),(84,11,'12','Michel','2012-03-18 12:28:17','','2012-03-18',NULL,1),(85,11,'13','Michel','2012-03-18 12:28:24','','2012-03-18',NULL,1),(86,11,'14','Michel','2012-03-18 12:28:31','','2012-03-18',NULL,1),(87,11,'15','Michel','2012-03-18 12:28:40','','2012-03-18',NULL,1),(88,11,'16','Michel','2012-03-18 12:28:47','','2012-03-18',NULL,1),(89,11,'17','Michel','2012-03-18 12:30:09','','2012-03-18',NULL,1),(90,11,'18','Michel','2012-03-18 12:30:16','','2012-03-18',NULL,1),(91,11,'19','Michel','2012-03-18 12:30:23','','2012-03-18',NULL,1),(92,11,'20','Michel','2012-03-18 12:30:29','','2012-03-18',NULL,1),(93,11,'21','Michel','2012-03-18 12:30:41','','2012-03-18',NULL,1),(94,11,'22','Michel','2012-03-18 12:30:49','','2012-03-18',NULL,1),(95,11,'23','Michel','2012-03-18 12:30:54','','2012-03-18',NULL,1),(96,11,'24','Michel','2012-03-19 11:04:26','','2012-03-19',NULL,1),(97,11,'25','Michel','2012-03-19 11:04:31','','2012-03-19',NULL,1),(98,12,'9','Michel','2012-03-18 12:27:31','','2012-03-18',NULL,1),(99,12,'10','Michel','2012-03-19 11:27:53','','2012-03-19',NULL,1),(100,2,'39','Michel','2012-03-19 11:19:27','','2012-03-19',NULL,1),(101,11,'26','Michel','2012-03-23 12:29:12','','2012-03-23',NULL,1),(102,11,'27','Michel','2012-03-24 19:05:47','','2012-03-24',NULL,1),(103,11,'28','Michel','2012-03-26 08:26:48','','2012-03-26',NULL,1),(104,11,'29','Michel','2012-03-26 09:34:09','','2012-03-26',NULL,1),(105,11,'30','Michel','2012-03-27 09:40:34','','2012-03-27',NULL,1),(106,18,'1','Michel','2012-03-27 14:45:15','','2012-03-27',NULL,1),(107,18,'2','Michel','2012-03-27 14:45:35','','2012-03-27',NULL,1),(108,18,'3','Michel','2012-03-27 14:46:02','','2012-03-27',NULL,1),(109,18,'4','Michel','2012-03-27 15:08:29','','2012-03-27',NULL,1),(110,18,'5','Michel','2012-03-27 15:08:47','','2012-03-27',NULL,1),(111,12,'11','Michel','2012-03-27 15:08:46','','2012-03-27',NULL,1),(112,11,'31','Michel','2012-04-03 01:06:40','','2012-04-03',NULL,1),(113,2,'40','Michel','2012-04-03 01:11:33','Cosmectic change in the stack','2012-04-03',NULL,1),(114,14,'6','Michel','2012-04-06 14:16:44','','2012-04-06',NULL,1),(115,17,'1','Michel','2012-04-06 13:40:47','','2012-04-06',NULL,1),(116,17,'2','Michel','2012-04-06 13:41:28','','2012-04-06',NULL,1),(117,17,'3','Michel','2012-04-06 13:41:38','','2012-04-06',NULL,1),(118,17,'4','Michel','2012-04-06 14:20:07','Initial commit','2012-04-06',NULL,1),(119,17,'5','Michel','2012-04-06 14:20:12','','2012-04-06',NULL,1),(120,17,'6','Michel','2012-04-06 14:29:56','','2012-04-06',NULL,1),(121,11,'32','Michel','2012-04-06 16:10:07','','2012-04-06',NULL,1),(122,11,'33','Michel','2012-04-06 16:25:49','Add Header files to build the server','2012-04-06',NULL,1),(123,11,'34','Michel','2012-04-06 16:26:42','','2012-04-06',NULL,1),(124,11,'35','Michel','2012-04-06 16:29:57','','2012-04-06',NULL,1),(125,13,'3','Michel','2012-04-06 17:28:00','','2012-04-06',NULL,1),(126,12,'12','Michel','2012-04-03 01:06:41','','2012-04-03',NULL,1),(127,11,'36','gulemarch','2012-04-23 23:27:31','preparation pour commit de version desynchronisée','2012-04-23',NULL,NULL),(128,11,'37','gulemarch','2012-04-23 23:39:54','branche linux euriware avec gestion write asynchrone en béta','2012-04-23',NULL,NULL),(129,11,'38','Michel','2012-05-09 11:42:04','','2012-05-09',NULL,1),(130,11,'39','Michel','2012-05-11 19:49:46','','2012-05-11',NULL,1),(131,11,'40','Michel','2012-05-12 01:08:02','','2012-05-12',NULL,1),(132,12,'13','gulemarch','2012-04-23 23:26:36','preparation pour commit avec branche desynchronisée','2012-04-23',NULL,NULL),(133,12,'14','gulemarch','2012-04-23 23:42:09','mise à jour branche linux euriware','2012-04-23',NULL,NULL),(134,12,'15','Michel','2012-05-09 11:42:04','','2012-05-09',NULL,1),(135,12,'16','Michel','2012-05-11 19:49:48','','2012-05-11',NULL,1),(136,11,'41','Michel','2012-05-14 11:06:58','','2012-05-14',NULL,1),(137,11,'42','Michel','2012-05-14 14:32:12','','2012-05-14',NULL,1),(138,11,'43','Michel','2012-05-16 10:15:34','Réorganisation des includes.\npréparation du renommage des namespaces','2012-05-16',NULL,1),(139,11,'44','Michel','2012-05-16 10:15:36','Réorganisation des includes.\npréparation du renommage des namespaces','2012-05-16',NULL,1),(140,12,'17','Michel','2012-05-16 10:15:36','Réorganisation des includes.\npréparation du renommage des namespaces','2012-05-16',NULL,1),(141,12,'18','Michel','2012-05-22 00:03:41','','2012-05-22',NULL,1),(142,11,'45','Michel','2012-05-22 00:03:40','','2012-05-22',NULL,1),(143,11,'46','Michel','2012-05-22 11:22:45','','2012-05-22',NULL,1),(144,2,'41','Michel','2012-06-05 12:29:03','','2012-06-05',NULL,1),(145,12,'19','Michel','2012-06-05 10:58:07','','2012-06-05',NULL,1),(146,12,'20','Michel','2012-06-08 10:29:33','','2012-06-08',NULL,1),(147,12,'21','Michel','2012-06-09 18:32:18','','2012-06-09',NULL,1),(148,11,'47','Michel','2012-06-05 10:58:04','','2012-06-05',NULL,1),(149,11,'48','Michel','2012-06-08 10:29:22','','2012-06-08',NULL,1),(150,11,'49','Michel','2012-06-08 10:29:29','','2012-06-08',NULL,1),(151,11,'50','Michel','2012-06-09 18:32:18','','2012-06-09',NULL,1),(152,11,'51','Michel','2012-06-11 11:48:07','','2012-06-11',NULL,1),(153,11,'52','Michel','2012-06-12 08:44:03','','2012-06-12',NULL,1),(154,11,'53','Michel','2012-06-12 16:11:46','','2012-06-12',NULL,1),(155,11,'54','Michel','2012-06-13 15:22:55','','2012-06-13',NULL,1),(156,14,'7','Michel','2012-04-06 14:18:47','','2012-04-06',NULL,1),(157,14,'8','Michel','2012-04-06 14:18:54','','2012-04-06',NULL,1),(158,20,'1','Michel','2012-06-19 17:54:27','Initial commit','2012-06-19',NULL,1),(159,20,'2','Michel','2012-06-19 17:54:35','','2012-06-19',NULL,1),(160,22,'1','Michel','2012-06-25 11:51:59','First Commit','2012-06-25',NULL,1),(161,22,'2','Michel','2012-06-25 11:52:10','','2012-06-25',NULL,1),(162,22,'3','Michel','2012-06-25 11:52:20','','2012-06-25',NULL,1),(163,12,'22','Michel','2012-06-12 08:44:07','','2012-06-12',NULL,1),(164,12,'23','Michel','2012-06-23 16:02:12','','2012-06-23',NULL,1),(165,11,'55','Michel','2012-06-23 16:02:06','','2012-06-23',NULL,1),(166,13,'4','Michel','2012-04-06 17:43:02','','2012-04-06',NULL,1),(167,13,'5','Michel','2012-04-06 17:53:09','','2012-04-06',NULL,1),(168,13,'6','Michel','2012-04-06 18:09:48','','2012-04-06',NULL,1),(169,13,'7','Michel','2012-04-06 18:11:46','','2012-04-06',NULL,1),(170,11,'56','Michel','2012-06-26 17:39:16','','2012-06-26',NULL,1),(171,18,'6','Michel','2012-06-26 17:39:03','','2012-06-26',NULL,1),(172,18,'7','Michel','2012-06-26 17:44:40','','2012-06-26',NULL,1),(173,18,'8','Michel','2012-06-26 19:22:23','','2012-06-26',NULL,1),(174,18,'9','Michel','2012-06-28 14:16:30','','2012-06-28',NULL,1),(175,22,'4','Michel','2012-06-28 14:30:07','','2012-06-28',NULL,1),(176,22,'5','Michel','2012-06-28 20:06:02','','2012-06-28',NULL,1),(177,12,'24','Michel','2012-06-26 17:39:06','','2012-06-26',NULL,1),(178,12,'25','Michel','2012-06-26 19:22:06','','2012-06-26',NULL,1),(179,12,'26','Michel','2012-06-28 14:16:29','','2012-06-28',NULL,1),(180,22,'6','Michel','2012-07-02 02:33:27','','2012-07-02',NULL,1),(181,22,'7','Michel','2012-07-02 03:03:34','','2012-07-02',NULL,1),(182,22,'8','Michel','2012-07-02 03:09:23','','2012-07-02',NULL,1),(183,22,'9','Michel','2012-07-02 11:06:00','','2012-07-02',NULL,1),(184,11,'57','Michel','2012-07-02 11:38:59','','2012-07-02',NULL,1),(185,12,'27','Michel','2012-07-02 11:39:04','','2012-07-02',NULL,1),(186,22,'10','Michel','2012-07-03 03:05:11','','2012-07-03',NULL,1),(187,22,'11','Michel','2012-07-03 13:21:17','','2012-07-03',NULL,1),(188,22,'12','Michel','2012-07-03 23:47:32','','2012-07-03',NULL,1),(189,22,'13','Michel','2012-07-04 03:02:32','','2012-07-04',NULL,1),(190,22,'14','Michel','2012-07-04 10:51:16','','2012-07-04',NULL,1),(191,22,'15','Michel','2012-07-04 11:16:28','','2012-07-04',NULL,1),(192,22,'16','Michel','2012-07-04 12:24:43','','2012-07-04',NULL,1),(193,22,'17','Michel','2012-07-04 14:19:00','','2012-07-04',NULL,1),(194,22,'18','Michel','2012-07-05 01:52:27','','2012-07-05',NULL,1),(195,23,'1','Michel','2012-07-05 11:35:52','','2012-07-05',NULL,1),(196,23,'2','Michel','2012-07-05 13:01:49','','2012-07-05',NULL,1),(197,23,'3','Michel','2012-07-05 13:02:12','','2012-07-05',NULL,1),(198,23,'4','Michel','2012-07-05 13:09:46','','2012-07-05',NULL,1),(199,23,'5','Michel','2012-07-05 17:47:14','','2012-07-05',NULL,1),(200,23,'6','Michel','2012-07-05 20:33:07','','2012-07-05',NULL,1),(201,23,'7','Michel','2012-07-06 01:26:04','','2012-07-06',NULL,1),(202,23,'8','Michel','2012-07-06 02:14:50','','2012-07-06',NULL,1),(203,23,'9','Michel','2012-07-06 12:30:47','','2012-07-06',NULL,1),(204,23,'10','Michel','2012-07-06 15:17:50','','2012-07-06',NULL,1),(205,11,'58','Michel','2012-07-05 01:53:51','','2012-07-05',NULL,1),(206,11,'59','Michel','2012-07-06 16:12:06','','2012-07-06',NULL,1),(207,11,'60','Michel','2012-07-06 17:16:36','','2012-07-06',NULL,1),(208,11,'61','Michel','2012-07-07 11:13:06','Support des vecteurs comme type de données pour les VPI.\nIntroduction des attributs Dimension et NbElement dans le schema SubSystem.xsd','2012-07-07',NULL,1),(209,11,'62','Michel','2012-07-08 18:20:17','','2012-07-08',NULL,1),(210,12,'28','Michel','2012-07-05 01:53:40','Correction de bug et modification suite au developpement de l\'UAClientLib','2012-07-05',NULL,1),(211,12,'29','Michel','2012-07-07 01:47:51','','2012-07-07',NULL,1),(212,2,'42','Michel','2012-07-08 18:19:13','','2012-07-08',NULL,1),(213,22,'19','Michel','2012-07-09 09:11:12','','2012-07-09',NULL,1),(214,12,'30','Michel','2012-07-17 11:33:39','','2012-07-17',NULL,1),(215,11,'63','Michel','2012-07-17 11:33:37','','2012-07-17',NULL,1),(216,11,'64','Michel','2012-07-18 05:20:50','Correction dans le support des SecureChannels. Les SC sont associés a une instance de serveur et non pas a une connection client/server ou a une session.\nEn résumé, le secureChannel est unique pour l\'ensemble des sessions.','2012-07-18',NULL,1),(217,11,'65','Michel','2012-08-01 09:35:56','','2012-08-01',NULL,1),(218,11,'66','Michel','2012-08-01 09:36:06','','2012-08-01',NULL,1),(219,11,'67','Michel','2012-08-01 09:38:12','Support du type tableau dans les VPI. Les tableaux ne pourront être que des vecteurs.','2012-08-01',NULL,1),(220,11,'68','Michel','2012-08-01 10:42:02','','2012-08-01',NULL,1),(221,12,'31','Michel','2012-07-18 05:20:56','','2012-07-18',NULL,1),(222,12,'32','Michel','2012-08-01 09:36:04','','2012-08-01',NULL,1),(223,23,'11','Michel','2012-07-07 00:50:34','','2012-07-07',NULL,1),(224,23,'12','Michel','2012-07-07 01:27:40','','2012-07-07',NULL,1),(225,23,'13','Michel','2012-07-07 01:55:53','','2012-07-07',NULL,1),(226,23,'14','Michel','2012-07-07 01:55:58','','2012-07-07',NULL,1),(227,23,'15','Michel','2012-07-07 11:59:15','','2012-07-07',NULL,1),(228,23,'16','Michel','2012-07-08 18:07:26','','2012-07-08',NULL,1),(229,23,'17','Michel','2012-07-08 18:28:28','','2012-07-08',NULL,1),(230,23,'18','Michel','2012-07-09 10:50:54','','2012-07-09',NULL,1),(231,23,'19','Michel','2012-07-28 11:23:23','','2012-07-28',NULL,1),(232,23,'20','Michel','2012-07-28 11:24:42','','2012-07-28',NULL,1),(233,23,'21','Michel','2012-07-31 01:09:55','','2012-07-31',NULL,1),(234,23,'22','Michel','2012-07-31 01:10:00','','2012-07-31',NULL,1),(235,23,'23','Michel','2012-08-01 19:25:04','','2012-08-01',NULL,1),(236,11,'69','Michel','2012-08-01 19:24:49','','2012-08-01',NULL,1),(237,11,'70','Michel','2012-08-02 15:02:02','Support des tableaux dans le VPI.\nSupport des tableaux de INT16,INT32,UINT16 et UINT32 dans le service Read','2012-08-02',NULL,1),(238,2,'43','gulemarch','2012-08-05 13:53:08','mise à jour branche linux','2012-08-05',NULL,NULL),(239,2,'44','Michel','2012-08-08 15:46:02','','2012-08-08',NULL,1),(240,11,'71','gulemarch','2012-08-05 13:52:14','Mise à jour branche linux avec implémentation HA','2012-08-05',NULL,NULL),(241,11,'72','gulemarch','2012-08-05 13:55:38','Mise à jour branche linux avec implémentation HA','2012-08-05',NULL,NULL),(242,11,'73','Michel','2012-08-07 13:53:22','','2012-08-07',NULL,1),(243,11,'74','Michel','2012-08-07 14:31:44','','2012-08-07',NULL,1),(244,11,'75','Michel','2012-08-09 00:04:46','','2012-08-09',NULL,1),(245,11,'76','Michel','2012-08-09 03:16:21','','2012-08-09',NULL,1),(246,2,'45','gulemarch','2012-08-08 23:40:21','reprise des correction de la branche linux','2012-08-08',NULL,NULL),(247,2,'46','gulemarch','2012-08-08 23:42:13','reprise des correction de la branche linux','2012-08-08',NULL,NULL),(248,11,'77','Michel','2012-08-09 10:57:34','','2012-08-09',NULL,1),(249,12,'33','gulemarch','2012-08-05 13:52:43','mise à jour branche linux euriware','2012-08-05',NULL,NULL),(250,12,'34','Michel','2012-08-07 13:50:16','','2012-08-07',NULL,1),(251,12,'35','Michel','2012-08-07 14:02:48','','2012-08-07',NULL,1),(252,12,'36','Michel','2012-08-09 00:04:43','','2012-08-09',NULL,1),(253,11,'78','Michel','2012-08-09 16:48:22','','2012-08-09',NULL,1),(254,11,'79','Michel','2012-08-10 03:33:29','','2012-08-10',NULL,1),(255,11,'80','Michel','2012-08-10 18:23:03','Version 1.0.0.4 fusionné Linux et Windows 90%','2012-08-10',NULL,1),(256,11,'81','Michel','2012-08-12 14:50:54','','2012-08-12',NULL,1),(257,12,'37','Michel','2012-08-10 03:33:31','','2012-08-10',NULL,1),(258,11,'82','Michel','2012-08-14 15:40:26','','2012-08-14',NULL,1),(259,11,'83','Michel','2012-08-14 15:40:57','','2012-08-14',NULL,1),(260,2,'47','Michel','2012-08-10 03:33:51','','2012-08-10',NULL,1),(261,2,'48','Michel','2012-08-15 16:54:02','','2012-08-15',NULL,1),(262,2,'49','Michel','2012-08-16 14:53:21','OpcUa_TcpListener_Create modeification pour une gestion plus precise des codes d\'erreur','2012-08-16',NULL,1),(263,15,'3','Michel','2012-04-06 13:45:42','','2012-04-06',NULL,1),(264,15,'4','Michel','2012-04-06 13:55:29','','2012-04-06',NULL,1),(265,15,'5','Michel','2012-08-23 13:21:23','Initial Commit','2012-08-23',NULL,1),(266,11,'84','Michel','2012-08-23 17:27:53','remplacement StdAfx.h par stdafx.h pour compatibilité GCC','2012-08-23',NULL,1),(267,11,'85','Michel','2012-08-25 18:42:14','','2012-08-25',NULL,1),(268,12,'38','Michel','2012-08-23 17:28:23','remplacement StdAfx.h par stdafx.h pour compatibilité GCC','2012-08-23',NULL,1),(269,12,'39','Michel','2012-08-25 18:42:12','','2012-08-25',NULL,1),(270,12,'40','Michel','2012-08-29 16:44:23','','2012-08-29',NULL,1),(271,12,'41','Michel','2012-08-29 22:37:08','Fusion Windows - Linux','2012-08-29',NULL,1),(272,11,'86','Michel','2012-08-29 16:50:49','','2012-08-29',NULL,1),(273,11,'87','Michel','2012-08-29 16:52:12','','2012-08-29',NULL,1),(274,11,'88','Michel','2012-08-29 23:24:40','','2012-08-29',NULL,1),(275,11,'89','Michel','2012-08-29 23:30:35','','2012-08-29',NULL,1),(276,11,'90','Michel','2012-08-30 23:14:04','','2012-08-30',NULL,1),(277,11,'91','Michel','2012-09-05 08:39:33','','2012-09-05',NULL,1),(278,2,'50','Michel','2012-08-29 23:24:04','Fusion Windows - Linux','2012-08-29',NULL,1),(279,2,'51','Michel','2012-09-05 14:45:42','','2012-09-05',NULL,1),(280,2,'52','Michel','2012-09-05 14:46:49','','2012-09-05',NULL,1),(281,2,'53','Michel','2012-09-05 14:47:11','','2012-09-05',NULL,1),(282,2,'54','Michel','2012-09-05 14:48:25','','2012-09-05',NULL,1),(283,13,'8','Michel','2012-08-29 22:38:48','Fusion Windows - Linux','2012-08-29',NULL,1),(284,11,'92','Michel','2012-09-05 20:11:05','','2012-09-05',NULL,1),(285,11,'93','Michel','2012-09-05 20:11:29','','2012-09-05',NULL,1),(286,11,'94','Michel','2012-09-05 20:11:36','','2012-09-05',NULL,1),(287,11,'95','Michel','2012-09-05 20:11:59','','2012-09-05',NULL,1),(288,11,'96','Michel','2012-09-05 21:13:09','','2012-09-05',NULL,1),(289,11,'97','Michel','2012-09-05 21:14:03','','2012-09-05',NULL,1),(290,11,'98','Michel','2012-09-05 21:27:20','','2012-09-05',NULL,1),(291,11,'99','Michel','2012-09-05 21:49:49','','2012-09-05',NULL,1),(292,11,'100','Michel','2012-09-05 21:51:20','','2012-09-05',NULL,1),(293,11,'101','Michel','2012-09-05 21:51:40','','2012-09-05',NULL,1),(294,11,'102','Michel','2012-09-05 21:51:48','','2012-09-05',NULL,1),(295,11,'103','Michel','2012-09-05 21:51:54','','2012-09-05',NULL,1),(296,11,'104','Michel','2012-09-05 21:51:58','','2012-09-05',NULL,1),(297,11,'105','Michel','2012-09-05 21:52:02','','2012-09-05',NULL,1),(298,11,'106','Michel','2012-09-05 21:52:06','','2012-09-05',NULL,1),(299,11,'107','Michel','2012-09-05 21:52:10','','2012-09-05',NULL,1),(300,11,'108','Michel','2012-09-05 21:52:15','','2012-09-05',NULL,1),(301,11,'109','Michel','2012-09-05 21:52:20','','2012-09-05',NULL,1),(302,11,'110','Michel','2012-09-05 21:52:28','','2012-09-05',NULL,1),(303,11,'111','Michel','2012-09-05 21:52:40','','2012-09-05',NULL,1),(304,11,'112','Michel','2012-09-05 21:52:48','','2012-09-05',NULL,1),(305,11,'113','Michel','2012-09-05 21:52:59','','2012-09-05',NULL,1),(306,11,'114','Michel','2012-09-05 21:53:03','','2012-09-05',NULL,1),(307,11,'115','Michel','2012-09-05 21:53:07','','2012-09-05',NULL,1),(308,11,'116','Michel','2012-09-05 22:04:38','','2012-09-05',NULL,1),(309,11,'117','Michel','2012-09-05 22:05:15','','2012-09-05',NULL,1),(310,11,'118','Michel','2012-09-05 22:09:05','','2012-09-05',NULL,1),(311,11,'119','Michel','2012-09-05 22:11:26','','2012-09-05',NULL,1),(312,2,'55','Michel','2012-09-05 15:29:34','','2012-09-05',NULL,1),(313,2,'56','Michel','2012-09-05 15:34:19','','2012-09-05',NULL,1),(314,2,'57','Michel','2012-09-05 15:40:04','','2012-09-05',NULL,1),(315,2,'58','bucheph','2012-09-06 12:54:30','','2012-09-06',NULL,NULL),(316,11,'120','bucheph','2012-09-07 15:11:40','','2012-09-07',NULL,NULL),(317,11,'121','bucheph','2012-09-07 15:11:59','','2012-09-07',NULL,NULL),(318,11,'122','Michel','2012-09-08 15:21:57','','2012-09-08',NULL,1),(319,11,'123','Michel','2012-09-10 22:46:13','Server en etat transitoire. Ne pas faire d\'update de vos souches','2012-09-10',NULL,1),(320,11,'124','Michel','2012-09-10 23:55:33','Attention suppression de la classe CUANamespaceTranslationMap. Cette classe ne fonctionne pas correctement avec les Vpi et le module de simulation.\nLes fichiers nodeset doivent être bien formé. L\'ordre des namespaceUri doit être cohérent au sein d\'un fichier NodeSet','2012-09-10',NULL,1),(321,11,'125','Michel','2012-09-12 00:32:04','','2012-09-12',NULL,1),(322,11,'126','bucheph','2012-09-12 17:05:39','','2012-09-12',NULL,NULL),(323,11,'127','Michel','2012-09-14 14:07:50','','2012-09-14',NULL,1),(324,13,'9','Michel','2012-09-05 20:51:37','','2012-09-05',NULL,1),(325,13,'10','Michel','2012-09-05 20:51:48','','2012-09-05',NULL,1),(326,13,'11','Michel','2012-09-05 20:52:01','','2012-09-05',NULL,1),(327,13,'12','Michel','2012-09-05 20:52:17','','2012-09-05',NULL,1),(328,13,'13','Michel','2012-09-05 20:52:29','','2012-09-05',NULL,1),(329,13,'14','Michel','2012-09-05 20:52:34','','2012-09-05',NULL,1),(330,13,'15','Michel','2012-09-05 20:54:43','','2012-09-05',NULL,1),(331,13,'16','Michel','2012-09-05 20:58:56','','2012-09-05',NULL,1),(332,13,'17','Michel','2012-09-05 20:59:05','','2012-09-05',NULL,1),(333,13,'18','Michel','2012-09-05 21:04:03','','2012-09-05',NULL,1),(334,13,'19','bucheph','2012-09-06 16:31:58','','2012-09-06',NULL,NULL),(335,13,'20','bucheph','2012-09-06 16:33:56','','2012-09-06',NULL,NULL),(336,13,'21','bucheph','2012-09-06 16:34:53','','2012-09-06',NULL,NULL),(337,13,'22','bucheph','2012-09-06 16:35:29','','2012-09-06',NULL,NULL),(338,13,'23','bucheph','2012-09-07 15:54:25','','2012-09-07',NULL,NULL),(339,13,'24','bucheph','2012-09-07 15:57:26','','2012-09-07',NULL,NULL),(340,13,'25','bucheph','2012-09-07 15:57:56','','2012-09-07',NULL,NULL),(341,13,'26','bucheph','2012-09-12 17:06:09','','2012-09-12',NULL,NULL),(342,2,'59','bucheph','2012-09-06 13:16:54','','2012-09-06',NULL,NULL),(343,2,'60','bucheph','2012-09-06 13:17:20','','2012-09-06',NULL,NULL),(344,2,'61','bucheph','2012-09-06 15:48:48','','2012-09-06',NULL,NULL),(345,2,'62','Michel','2012-09-07 10:24:23','Suppression warning, unification version Windows et WindowsCE. Evo pour GNUC','2012-09-07',NULL,1),(346,2,'63','bucheph','2012-09-07 10:25:05','','2012-09-07',NULL,NULL),(347,2,'64','bucheph','2012-09-07 10:25:23','','2012-09-07',NULL,NULL),(348,2,'65','bucheph','2012-09-07 10:26:32','','2012-09-07',NULL,NULL),(349,2,'66','Michel','2012-09-07 10:32:38','','2012-09-07',NULL,1),(350,2,'67','bucheph','2012-09-07 10:34:27','','2012-09-07',NULL,NULL),(351,2,'68','bucheph','2012-09-07 10:35:04','','2012-09-07',NULL,NULL),(352,2,'69','bucheph','2012-09-07 12:17:40','','2012-09-07',NULL,NULL),(353,2,'70','Michel','2012-09-07 12:18:29','','2012-09-07',NULL,1),(354,2,'71','Michel','2012-09-07 12:40:19','','2012-09-07',NULL,1),(355,2,'72','bucheph','2012-09-07 12:46:22','','2012-09-07',NULL,NULL),(356,2,'73','Michel','2012-09-07 12:46:47','introduction OpcUa_WcsCat','2012-09-07',NULL,1),(357,2,'74','bucheph','2012-09-07 15:10:50','','2012-09-07',NULL,NULL),(358,2,'75','bucheph','2012-09-07 15:52:53','','2012-09-07',NULL,NULL),(359,2,'76','Michel','2012-09-07 17:41:42','','2012-09-07',NULL,1),(360,2,'77','Michel','2012-09-07 18:54:35','implementation OpcUa_LoadLibrary et OpcUa_GetProcAddress','2012-09-07',NULL,1),(361,2,'78','Michel','2012-09-08 15:20:59','OpcUa_LoadLibrary est déplacé dans le shareLib. Il ne peut pas résider dans la stack pour des raisons spécifiques à Windows','2012-09-08',NULL,1),(362,2,'79','bucheph','2012-09-12 16:11:12','','2012-09-12',NULL,NULL),(363,2,'80','Michel','2012-09-14 14:08:23','','2012-09-14',NULL,1),(364,12,'42','Michel','2012-09-05 20:14:49','','2012-09-05',NULL,1),(365,12,'43','Michel','2012-09-05 20:14:57','','2012-09-05',NULL,1),(366,12,'44','Michel','2012-09-05 20:15:03','','2012-09-05',NULL,1),(367,12,'45','Michel','2012-09-05 20:15:15','','2012-09-05',NULL,1),(368,12,'46','Michel','2012-09-05 20:17:56','','2012-09-05',NULL,1),(369,12,'47','Michel','2012-09-05 20:18:35','','2012-09-05',NULL,1),(370,12,'48','bucheph','2012-09-07 12:52:01','','2012-09-07',NULL,NULL),(371,12,'49','bucheph','2012-09-07 12:52:14','','2012-09-07',NULL,NULL),(372,12,'50','bucheph','2012-09-07 13:09:04','','2012-09-07',NULL,NULL),(373,12,'51','bucheph','2012-09-07 15:52:25','','2012-09-07',NULL,NULL),(374,12,'52','Michel','2012-09-07 17:39:43','OpcUa_SWPrintf remplace les swprintf.','2012-09-07',NULL,1),(375,12,'53','Michel','2012-09-07 17:55:51','','2012-09-07',NULL,1),(376,12,'54','Michel','2012-09-07 17:56:57','','2012-09-07',NULL,1),(377,12,'55','Michel','2012-09-08 15:21:55','OpcUa_LoadLibrary dans la shareLib et utilisation de OpcUa_LoadLibrary et OpcUa_GetProcAddrss dans le coreServer.','2012-09-08',NULL,1),(378,12,'56','Michel','2012-09-10 22:46:16','','2012-09-10',NULL,1),(379,12,'57','bucheph','2012-09-12 17:05:52','','2012-09-12',NULL,NULL),(380,12,'58','Michel','2012-09-14 14:12:16','','2012-09-14',NULL,1),(381,12,'59','Michel','2012-10-18 02:43:30','','2012-10-18',NULL,1),(382,11,'128','Michel','2012-10-18 02:43:16','','2012-10-18',NULL,1),(383,11,'129','Michel','2012-10-31 18:10:25','','2012-10-31',NULL,1),(384,11,'130','Michel','2012-11-05 04:22:44','','2012-11-05',NULL,1),(385,11,'131','Michel','2012-11-07 17:02:58','','2012-11-07',NULL,1),(386,11,'132','Michel','2012-11-08 15:28:13','','2012-11-08',NULL,1),(387,15,'6','Michel','2012-08-23 15:12:14','','2012-08-23',NULL,1),(388,15,'7','Michel','2012-08-23 16:04:12','','2012-08-23',NULL,1),(389,15,'8','Michel','2012-09-12 00:37:40','','2012-09-12',NULL,1),(390,15,'9','Michel','2012-09-12 11:26:42','','2012-09-12',NULL,1),(391,15,'10','Michel','2012-11-08 18:08:59','','2012-11-08',NULL,1),(392,11,'133','Michel','2012-11-08 23:47:18','','2012-11-08',NULL,1),(393,11,'134','Michel','2012-11-08 23:47:54','','2012-11-08',NULL,1),(394,11,'135','Michel','2012-11-09 00:13:48','','2012-11-09',NULL,1),(395,11,'136','Michel','2012-11-11 04:00:30','Version provisoire. Ajout de nouveaux services :\nRepublish, SetMonitoredMode, SetPublishingMode, BrowseNext','2012-11-11',NULL,1),(396,11,'137','Michel','2012-11-12 19:28:49','','2012-11-12',NULL,1),(397,11,'138','Michel','2012-11-14 09:00:30','','2012-11-14',NULL,1),(398,11,'139','Michel','2012-11-15 23:27:31','','2012-11-15',NULL,1),(399,12,'60','Michel','2012-10-31 19:24:29','','2012-10-31',NULL,1),(400,12,'61','Michel','2012-11-07 17:03:08','','2012-11-07',NULL,1),(401,12,'62','Michel','2012-11-11 04:01:00','ShareLib : Ajout de nouvelles methode de comparaison. IsEqual','2012-11-11',NULL,1),(402,12,'63','Michel','2012-11-12 19:28:52','','2012-11-12',NULL,1),(403,12,'64','Michel','2012-11-14 09:00:33','','2012-11-14',NULL,1),(404,12,'65','Michel','2012-11-21 17:53:27','','2012-11-21',NULL,1),(405,2,'81','Michel','2012-11-07 17:02:41','','2012-11-07',NULL,1),(406,15,'11','Michel','2012-12-08 01:00:49','','2012-12-08',NULL,1),(407,15,'12','Michel','2012-12-11 09:50:24','','2012-12-11',NULL,1),(408,15,'13','Michel','2012-12-11 10:03:27','','2012-12-11',NULL,1),(409,15,'14','Michel','2012-12-11 12:09:19','','2012-12-11',NULL,1),(410,15,'15','Michel','2012-12-11 17:52:02','','2012-12-11',NULL,1),(411,17,'7','Michel','2012-09-10 14:18:38','','2012-09-10',NULL,1),(412,17,'8','Michel','2012-09-10 15:14:44','','2012-09-10',NULL,1),(413,17,'9','Michel','2012-09-11 19:35:26','','2012-09-11',NULL,1),(414,17,'10','Michel','2012-09-12 00:32:56','','2012-09-12',NULL,1),(415,17,'11','Michel','2012-09-12 11:26:30','','2012-09-12',NULL,1),(416,15,'16','Michel','2012-12-12 02:10:39','','2012-12-12',NULL,1),(417,15,'17','Michel','2012-12-12 02:10:44','','2012-12-12',NULL,1),(418,17,'12','Michel','2012-12-12 01:19:54','','2012-12-12',NULL,1),(419,17,'13','Michel','2012-12-12 01:21:10','','2012-12-12',NULL,1),(420,17,'14','Michel','2012-12-12 01:33:42','','2012-12-12',NULL,1),(421,17,'15','Michel','2012-12-12 01:44:18','','2012-12-12',NULL,1),(422,17,'16','Michel','2012-12-12 02:16:32','','2012-12-12',NULL,1),(423,17,'17','Michel','2012-12-12 02:31:39','','2012-12-12',NULL,1),(424,17,'18','Michel','2012-12-12 02:32:49','','2012-12-12',NULL,1),(425,17,'19','Michel','2012-12-12 02:38:47','','2012-12-12',NULL,1),(426,14,'9','Michel','2012-07-06 17:48:11','','2012-07-06',NULL,1),(427,12,'66','Michel','2012-12-13 00:56:46','','2012-12-13',NULL,1),(428,12,'67','Michel','2012-12-13 01:00:59','','2012-12-13',NULL,1),(429,12,'68','Michel','2012-12-13 01:03:13','','2012-12-13',NULL,1),(430,12,'69','Michel','2012-12-13 01:03:46','','2012-12-13',NULL,1),(431,12,'70','Michel','2012-12-13 01:12:42','','2012-12-13',NULL,1),(432,12,'71','Michel','2012-12-13 01:13:51','','2012-12-13',NULL,1),(433,12,'72','Michel','2012-12-13 01:14:48','','2012-12-13',NULL,1),(434,12,'73','Michel','2012-12-13 01:15:10','','2012-12-13',NULL,1),(435,12,'74','Michel','2012-12-13 01:21:50','','2012-12-13',NULL,1),(436,12,'75','Michel','2012-12-13 01:22:04','','2012-12-13',NULL,1),(437,12,'76','Michel','2012-12-13 01:22:41','','2012-12-13',NULL,1),(438,12,'77','Michel','2012-12-13 01:22:43','','2012-12-13',NULL,1),(439,12,'78','Michel','2012-12-13 01:22:57','','2012-12-13',NULL,1),(440,12,'79','Michel','2012-12-13 01:23:30','','2012-12-13',NULL,1),(441,12,'80','Michel','2012-12-13 01:23:43','','2012-12-13',NULL,1),(442,12,'81','Michel','2012-12-13 01:24:03','','2012-12-13',NULL,1),(443,12,'82','Michel','2012-12-13 01:24:26','','2012-12-13',NULL,1),(444,12,'83','Michel','2012-12-13 01:24:43','','2012-12-13',NULL,1),(445,12,'84','Michel','2012-12-13 01:25:02','','2012-12-13',NULL,1),(446,12,'85','Michel','2012-12-13 01:25:20','','2012-12-13',NULL,1),(447,12,'86','Michel','2012-12-13 01:25:35','','2012-12-13',NULL,1),(448,12,'87','Michel','2012-12-13 01:25:55','','2012-12-13',NULL,1),(449,12,'88','Michel','2012-12-13 01:26:16','','2012-12-13',NULL,1),(450,12,'89','Michel','2012-12-13 01:26:35','','2012-12-13',NULL,1),(451,12,'90','Michel','2012-12-13 01:26:50','','2012-12-13',NULL,1),(452,12,'91','Michel','2012-12-13 01:27:16','','2012-12-13',NULL,1),(453,12,'92','Michel','2012-12-13 02:49:55','','2012-12-13',NULL,1),(454,12,'93','Michel','2012-12-13 18:02:21','','2012-12-13',NULL,1),(455,12,'94','Michel','2012-12-14 06:56:20','','2012-12-14',NULL,1),(456,11,'140','Michel','2012-12-13 01:28:52','','2012-12-13',NULL,1),(457,11,'141','Michel','2012-12-13 01:36:49','','2012-12-13',NULL,1),(458,11,'142','Michel','2012-12-13 02:59:52','','2012-12-13',NULL,1),(459,11,'143','Michel','2012-12-14 06:56:22','','2012-12-14',NULL,1),(460,18,'10','Michel','2012-09-14 14:12:31','','2012-09-14',NULL,1),(461,2,'82','Michel','2013-01-08 15:53:06','','2013-01-08',NULL,1),(462,2,'83','Michel','2013-01-12 13:02:45','Modification de la stack pour le support de nouveau dataType définie dans la part8 v1.02 AxisInformation et AxisScaleEnumeration','2013-01-12',NULL,1),(463,11,'144','Michel','2012-12-21 03:49:25','Support BrowseNext, ContinuationPoint complexe et CTT','2012-12-21',NULL,1),(464,11,'145','Michel','2012-12-21 11:10:28','','2012-12-21',NULL,1),(465,11,'146','Michel','2012-12-21 11:10:35','','2012-12-21',NULL,1),(466,11,'147','Michel','2012-12-21 11:10:39','','2012-12-21',NULL,1),(467,11,'148','Michel','2012-12-26 12:09:38','','2012-12-26',NULL,1),(468,11,'149','Michel','2013-01-08 15:53:21','','2013-01-08',NULL,1),(469,11,'150','Michel','2013-01-11 15:56:43','','2013-01-11',NULL,1),(470,11,'151','Michel','2013-01-11 15:58:47','','2013-01-11',NULL,1),(471,11,'152','Michel','2013-01-16 18:07:42','','2013-01-16',NULL,1),(472,13,'27','Michel','2012-12-12 23:45:39','','2012-12-12',NULL,1),(473,13,'28','Michel','2012-12-12 23:49:34','','2012-12-12',NULL,1),(474,13,'29','Michel','2012-12-12 23:49:40','','2012-12-12',NULL,1),(475,13,'30','Michel','2012-12-13 00:19:37','','2012-12-13',NULL,1),(476,13,'31','Michel','2012-12-13 00:27:30','','2012-12-13',NULL,1),(477,13,'32','Michel','2012-12-13 00:28:30','','2012-12-13',NULL,1),(478,13,'33','Michel','2012-12-13 00:29:11','','2012-12-13',NULL,1),(479,13,'34','Michel','2012-12-13 00:29:32','','2012-12-13',NULL,1),(480,13,'35','Michel','2012-12-13 00:29:38','','2012-12-13',NULL,1),(481,13,'36','Michel','2012-12-13 00:29:43','','2012-12-13',NULL,1),(482,13,'37','Michel','2012-12-13 00:29:47','','2012-12-13',NULL,1),(483,13,'38','Michel','2012-12-13 00:29:51','','2012-12-13',NULL,1),(484,13,'39','Michel','2012-12-13 00:31:59','','2012-12-13',NULL,1),(485,13,'40','Michel','2012-12-13 17:49:29','','2012-12-13',NULL,1),(486,2,'84','Michel','2013-01-12 16:33:06','Support du nouveau datatype NetworkGroupDataType et EndpointUrlListDataType defini dans la spec 1.02','2013-01-12',NULL,1),(487,12,'95','Michel','2012-12-21 03:49:34','','2012-12-21',NULL,1),(488,12,'96','Michel','2012-12-26 12:09:43','','2012-12-26',NULL,1),(489,12,'97','Michel','2013-01-08 15:53:18','','2013-01-08',NULL,1),(490,12,'98','Michel','2013-01-11 15:56:45','','2013-01-11',NULL,1),(491,12,'99','Michel','2013-01-16 18:07:44','','2013-01-16',NULL,1),(492,11,'153','Michel','2013-01-27 16:26:23','Suppression de tous les \"for each\" pour assurer une meilleure compa avec GCC','2013-01-27',NULL,1),(493,2,'85','Michel','2013-02-04 09:01:40','','2013-02-04',NULL,1),(494,12,'100','Michel','2013-01-31 17:59:06','','2013-01-31',NULL,1),(495,12,'101','Michel','2013-02-02 13:39:58','','2013-02-02',NULL,1),(496,11,'154','Michel','2013-01-30 18:43:12','','2013-01-30',NULL,1),(497,11,'155','Michel','2013-01-31 09:53:39','Correction du mecanisme de construction et de remplissage des messages de KeepAlive pour test CTT','2013-01-31',NULL,1),(498,11,'156','Michel','2013-01-31 09:53:44','','2013-01-31',NULL,1),(499,11,'157','Michel','2013-01-31 17:59:04','Monitor Basic All compliant wiht the new release of the CTT 1.1.1.145','2013-01-31',NULL,1),(500,11,'158','Michel','2013-02-02 13:39:55','Creation des classes permettant la prise en charge de la notification des changement d\'état du serveur.','2013-02-02',NULL,1),(501,11,'159','Michel','2013-02-03 09:28:13','','2013-02-03',NULL,1),(502,11,'160','Michel','2013-02-16 09:45:34','','2013-02-16',NULL,1),(503,11,'161','Michel','2013-02-18 02:56:44','','2013-02-18',NULL,1),(504,11,'162','Michel','2013-03-05 14:48:46','','2013-03-05',NULL,1),(505,11,'163','Michel','2013-03-05 15:25:44','','2013-03-05',NULL,1),(506,13,'41','Michel','2013-03-11 14:38:11','','2013-03-11',NULL,1),(507,23,'24','Michel','2012-08-02 15:18:16','','2012-08-02',NULL,1),(508,23,'25','Michel','2012-08-02 16:06:10','','2012-08-02',NULL,1),(509,23,'26','Michel','2012-08-04 00:21:48','','2012-08-04',NULL,1),(510,23,'27','Michel','2012-08-06 23:30:01','','2012-08-06',NULL,1),(511,23,'28','Michel','2012-08-07 02:57:31','','2012-08-07',NULL,1),(512,23,'29','Michel','2012-08-09 03:21:40','','2012-08-09',NULL,1),(513,23,'30','Michel','2012-08-23 16:08:02','','2012-08-23',NULL,1),(514,23,'31','Michel','2012-08-23 16:10:28','','2012-08-23',NULL,1),(515,23,'32','Michel','2012-09-04 17:49:28','','2012-09-04',NULL,1),(516,23,'33','Michel','2012-09-04 21:51:53','','2012-09-04',NULL,1),(517,23,'34','Michel','2012-09-05 19:59:55','','2012-09-05',NULL,1),(518,23,'35','Michel','2012-09-05 20:07:25','','2012-09-05',NULL,1),(519,23,'36','Michel','2012-11-08 18:19:53','','2012-11-08',NULL,1),(520,23,'37','Michel','2012-12-12 22:42:08','','2012-12-12',NULL,1),(521,11,'164','Michel','2013-03-13 16:50:38','','2013-03-13',NULL,1),(522,11,'165','Michel','2013-03-20 15:28:03','','2013-03-20',NULL,1),(523,11,'166','Michel','2013-03-20 20:09:03','','2013-03-20',NULL,1),(524,11,'167','Michel','2013-03-20 20:09:26','','2013-03-20',NULL,1),(525,11,'168','Michel','2013-03-20 20:09:39','','2013-03-20',NULL,1),(526,11,'169','Michel','2013-03-20 20:10:07','','2013-03-20',NULL,1),(527,11,'170','Michel','2013-03-20 20:12:42','','2013-03-20',NULL,1),(528,11,'171','Michel','2013-03-20 20:15:45','','2013-03-20',NULL,1),(529,11,'172','Michel','2013-03-20 20:19:24','Tag creation march 2013','2013-03-20',NULL,1),(530,11,'173','Michel','2013-03-20 20:22:57','','2013-03-20',NULL,1),(531,11,'174','Michel','2013-03-20 20:35:22','','2013-03-20',NULL,1),(532,11,'175','Michel','2013-03-20 20:42:53','','2013-03-20',NULL,1),(533,11,'176','Michel','2013-03-20 20:53:22','','2013-03-20',NULL,1),(534,11,'177','Michel','2013-03-20 20:53:35','','2013-03-20',NULL,1),(535,11,'178','Michel','2013-03-20 20:53:52','','2013-03-20',NULL,1),(536,11,'179','Michel','2013-03-20 20:56:49','','2013-03-20',NULL,1),(537,2,'86','Michel','2013-03-13 15:02:44','','2013-03-13',NULL,1),(538,11,'180','Michel','2013-03-20 21:03:46','','2013-03-20',NULL,1),(539,11,'181','Michel','2013-03-20 21:57:09','','2013-03-20',NULL,1),(540,22,'20','Michel','2012-08-07 13:50:07','','2012-08-07',NULL,1),(541,22,'21','Michel','2012-08-07 15:03:45','','2012-08-07',NULL,1),(542,22,'22','Michel','2012-08-19 01:55:34','Suppression des adhérences Windows.','2012-08-19',NULL,1),(543,22,'23','Michel','2012-08-20 03:45:08','','2012-08-20',NULL,1),(544,22,'24','Michel','2012-08-20 03:54:06','','2012-08-20',NULL,1),(545,22,'25','Michel','2012-08-20 22:28:06','','2012-08-20',NULL,1),(546,22,'26','Michel','2012-08-23 00:28:27','','2012-08-23',NULL,1),(547,22,'27','Michel','2012-09-14 14:08:09','','2012-09-14',NULL,1),(548,22,'28','Michel','2012-09-28 16:28:26','','2012-09-28',NULL,1),(549,22,'29','Michel','2012-10-03 13:58:55','','2012-10-03',NULL,1),(550,22,'30','Michel','2012-10-04 13:27:05','','2012-10-04',NULL,1),(551,22,'31','Michel','2012-10-04 13:40:30','','2012-10-04',NULL,1),(552,22,'32','Michel','2012-10-04 19:44:57','','2012-10-04',NULL,1),(553,22,'33','Michel','2012-10-04 23:26:31','','2012-10-04',NULL,1),(554,22,'34','Michel','2012-10-04 23:28:09','','2012-10-04',NULL,1),(555,22,'35','Michel','2012-10-05 22:46:07','Mecanisme de trace en cours d\'implementation...','2012-10-05',NULL,1),(556,22,'36','Michel','2012-10-11 20:44:28','','2012-10-11',NULL,1),(557,22,'37','Michel','2012-10-12 18:20:10','','2012-10-12',NULL,1),(558,22,'38','Michel','2012-10-15 02:39:07','Support d\'une nouvelle fonction de trace et du fonction callback parmettant de surveiller la relation client/serveur et de notifier le client en cas d\'erreur via une fonction callback','2012-10-15',NULL,1),(559,22,'39','Michel','2012-11-21 17:52:50','','2012-11-21',NULL,1),(560,22,'40','Michel','2013-01-21 16:01:06','','2013-01-21',NULL,1),(561,22,'41','Michel','2013-01-21 17:32:36','','2013-01-21',NULL,1),(562,22,'42','Michel','2013-01-27 15:29:13','','2013-01-27',NULL,1),(563,22,'43','Michel','2013-02-07 20:00:38','','2013-02-07',NULL,1),(564,22,'44','Michel','2013-02-08 16:37:49','Correction d\'un probleme de notification (SubscriptionClient.cpp) PublishAsyncCallback','2013-02-08',NULL,1),(565,22,'45','Michel','2013-02-08 17:07:34','','2013-02-08',NULL,1),(566,22,'46','Michel','2013-03-05 18:57:52','','2013-03-05',NULL,1),(567,22,'47','Michel','2013-03-13 14:40:06','','2013-03-13',NULL,1),(568,11,'182','Michel','2013-03-21 14:21:24','','2013-03-21',NULL,1),(569,11,'183','Michel','2013-03-21 19:24:30','','2013-03-21',NULL,1),(570,11,'184','Michel','2013-03-22 15:33:10','','2013-03-22',NULL,1),(571,3,'7','Michel','2012-10-29 08:56:18','','2012-10-29',NULL,1),(572,11,'185','Michel','2013-03-24 22:59:50','','2013-03-24',NULL,1),(573,11,'186','Michel','2013-03-25 00:13:53','','2013-03-25',NULL,1),(574,11,'187','Michel','2013-03-25 00:35:02','','2013-03-25',NULL,1),(575,11,'188','Michel','2013-03-25 14:22:49','','2013-03-25',NULL,1),(576,11,'189','Michel','2013-03-25 14:22:56','','2013-03-25',NULL,1),(577,11,'190','Michel','2013-03-25 14:23:03','','2013-03-25',NULL,1),(578,11,'191','Michel','2013-03-25 14:23:07','','2013-03-25',NULL,1),(579,11,'192','Michel','2013-03-25 14:57:19','','2013-03-25',NULL,1),(580,17,'20','Michel','2012-12-12 10:26:13','','2012-12-12',NULL,1),(581,17,'21','Michel','2012-12-12 15:04:48','','2012-12-12',NULL,1),(582,17,'22','Michel','2012-12-12 15:20:59','','2012-12-12',NULL,1),(583,17,'23','Michel','2012-12-12 15:30:02','','2012-12-12',NULL,1),(584,17,'24','Michel','2012-12-12 15:30:10','','2012-12-12',NULL,1),(585,17,'25','Michel','2012-12-12 15:30:36','','2012-12-12',NULL,1),(586,17,'26','Michel','2012-12-12 15:33:17','','2012-12-12',NULL,1),(587,17,'27','Michel','2012-12-12 15:36:28','','2012-12-12',NULL,1),(588,17,'28','Michel','2012-12-12 15:36:44','','2012-12-12',NULL,1),(589,17,'29','Michel','2012-12-12 15:47:16','','2012-12-12',NULL,1),(590,17,'30','Michel','2012-12-12 15:47:26','','2012-12-12',NULL,1),(591,17,'31','Michel','2012-12-12 15:54:59','','2012-12-12',NULL,1),(592,17,'32','Michel','2012-12-12 15:55:16','','2012-12-12',NULL,1),(593,17,'33','Michel','2012-12-12 16:01:22','','2012-12-12',NULL,1),(594,17,'34','Michel','2012-12-12 16:18:38','','2012-12-12',NULL,1),(595,17,'35','Michel','2012-12-12 16:20:59','','2012-12-12',NULL,1),(596,17,'36','Michel','2012-12-12 16:49:58','','2012-12-12',NULL,1),(597,11,'193','Michel','2013-03-31 23:18:29','','2013-03-31',NULL,1),(598,12,'102','Michel','2013-02-16 09:45:37','','2013-02-16',NULL,1),(599,12,'103','Michel','2013-02-18 02:56:45','','2013-02-18',NULL,1),(600,12,'104','Michel','2013-03-05 14:48:48','','2013-03-05',NULL,1),(601,12,'105','Michel','2013-03-13 15:10:01','','2013-03-13',NULL,1),(602,12,'106','Michel','2013-03-20 20:09:06','','2013-03-20',NULL,1),(603,12,'107','Michel','2013-03-21 14:21:22','','2013-03-21',NULL,1),(604,12,'108','Michel','2013-03-21 19:24:31','','2013-03-21',NULL,1),(605,12,'109','Michel','2013-03-22 15:33:13','','2013-03-22',NULL,1),(606,12,'110','Michel','2013-03-25 00:14:53','','2013-03-25',NULL,1),(607,12,'111','Michel','2013-03-25 00:35:06','','2013-03-25',NULL,1),(608,12,'112','Michel','2013-03-31 23:18:42','','2013-03-31',NULL,1),(609,12,'113','Michel','2013-04-03 12:04:43','','2013-04-03',NULL,1),(610,12,'114','Michel','2013-04-03 12:04:50','','2013-04-03',NULL,1),(611,12,'115','Michel','2013-04-03 17:05:33','','2013-04-03',NULL,1),(612,12,'116','Michel','2013-04-03 17:12:32','','2013-04-03',NULL,1),(613,12,'117','Michel','2013-04-03 17:13:53','','2013-04-03',NULL,1),(614,12,'118','Michel','2013-04-03 17:16:53','','2013-04-03',NULL,1),(615,17,'37','Michel','2013-04-06 10:58:08','','2013-04-06',NULL,1),(616,17,'38','Michel','2013-04-06 11:00:31','','2013-04-06',NULL,1),(617,17,'39','Michel','2013-04-06 11:01:18','','2013-04-06',NULL,1),(618,17,'40','Michel','2013-04-06 11:01:34','','2013-04-06',NULL,1),(619,11,'194','Michel','2013-04-04 00:15:50','','2013-04-04',NULL,1),(620,11,'195','Michel','2013-04-06 11:09:32','','2013-04-06',NULL,1),(621,11,'196','Michel','2013-04-06 17:11:00','','2013-04-06',NULL,1),(622,11,'197','Michel','2013-04-11 00:26:34','','2013-04-11',NULL,1),(623,11,'198','Michel','2013-04-14 12:03:14','','2013-04-14',NULL,1),(624,22,'48','Michel','2013-04-06 04:09:55','','2013-04-06',NULL,1),(625,22,'49','Michel','2013-04-06 04:14:48','','2013-04-06',NULL,1),(626,22,'50','Michel','2013-04-10 02:54:45','','2013-04-10',NULL,1),(627,22,'51','Michel','2013-04-10 12:47:40','','2013-04-10',NULL,1),(628,22,'52','Michel','2013-04-10 20:06:48','','2013-04-10',NULL,1),(629,22,'53','Michel','2013-04-11 00:26:48','','2013-04-11',NULL,1),(630,22,'54','Michel','2013-04-11 09:57:18','','2013-04-11',NULL,1),(631,22,'55','Michel','2013-04-14 12:02:10','','2013-04-14',NULL,1),(632,22,'56','Michel','2013-04-14 13:31:04','','2013-04-14',NULL,1),(633,22,'57','Michel','2013-04-14 13:31:22','','2013-04-14',NULL,1),(634,22,'58','Michel','2013-04-14 14:39:46','','2013-04-14',NULL,1),(635,22,'59','Michel','2013-04-14 14:49:42','','2013-04-14',NULL,1),(636,22,'60','Michel','2013-04-14 14:51:03','','2013-04-14',NULL,1),(637,22,'61','Michel','2013-04-14 15:02:38','','2013-04-14',NULL,1),(638,22,'62','Michel','2013-04-14 15:03:15','','2013-04-14',NULL,1),(639,22,'63','Michel','2013-04-14 15:13:50','','2013-04-14',NULL,1),(640,22,'64','Michel','2013-04-14 15:14:15','','2013-04-14',NULL,1),(641,22,'65','Michel','2013-04-14 15:15:14','','2013-04-14',NULL,1),(642,2,'87','Michel','2013-03-25 00:15:52','','2013-03-25',NULL,1),(643,2,'88','Michel','2013-03-25 00:35:04','','2013-03-25',NULL,1),(644,2,'89','Michel','2013-03-31 23:18:43','','2013-03-31',NULL,1),(645,2,'90','Michel','2013-04-06 17:11:06','','2013-04-06',NULL,1),(646,11,'199','Michel','2013-04-16 21:35:38','','2013-04-16',NULL,1),(647,11,'200','Michel','2013-04-16 23:35:27','','2013-04-16',NULL,1),(648,2,'91','Michel','2013-04-16 23:35:19','','2013-04-16',NULL,1),(649,12,'119','Michel','2013-04-03 17:19:40','','2013-04-03',NULL,1),(650,12,'120','Michel','2013-04-04 00:15:52','','2013-04-04',NULL,1),(651,12,'121','Michel','2013-04-04 11:19:06','','2013-04-04',NULL,1),(652,12,'122','Michel','2013-04-06 17:11:04','','2013-04-06',NULL,1),(653,12,'123','Michel','2013-04-11 00:26:38','','2013-04-11',NULL,1),(654,12,'124','Michel','2013-04-14 12:03:17','','2013-04-14',NULL,1),(655,12,'125','Michel','2013-04-14 18:14:32','','2013-04-14',NULL,1),(656,12,'126','Michel','2013-04-16 21:35:40','','2013-04-16',NULL,1),(657,12,'127','Michel','2013-04-19 12:37:41','','2013-04-19',NULL,1),(658,12,'128','Michel','2013-04-20 01:01:41','','2013-04-20',NULL,1),(659,2,'92','Michel','2013-04-20 01:01:18','','2013-04-20',NULL,1),(660,2,'93','Michel','2013-05-01 20:03:55','','2013-05-01',NULL,1),(661,2,'94','Michel','2013-05-05 16:10:03','','2013-05-05',NULL,1),(662,2,'95','Michel','2013-05-17 15:27:13','','2013-05-17',NULL,1),(663,12,'129','Michel','2013-05-01 20:03:53','','2013-05-01',NULL,1),(664,12,'130','Michel','2013-05-05 16:09:57','','2013-05-05',NULL,1),(665,12,'131','Michel','2013-05-07 14:10:27','','2013-05-07',NULL,1),(666,12,'132','Michel','2013-05-17 15:27:11','','2013-05-17',NULL,1),(667,11,'201','Michel','2013-04-19 12:37:39','','2013-04-19',NULL,1),(668,11,'202','Michel','2013-04-20 01:01:44','','2013-04-20',NULL,1),(669,11,'203','Michel','2013-04-23 00:43:09','','2013-04-23',NULL,1),(670,11,'204','Michel','2013-05-01 20:03:45','','2013-05-01',NULL,1),(671,11,'205','Michel','2013-05-05 16:10:01','','2013-05-05',NULL,1),(672,11,'206','Michel','2013-05-07 14:10:30','','2013-05-07',NULL,1),(673,11,'207','Michel','2013-05-17 15:27:06','','2013-05-17',NULL,1),(674,11,'208','Michel','2013-05-31 12:23:09','','2013-05-31',NULL,1),(675,12,'133','Michel','2013-05-31 12:23:12','','2013-05-31',NULL,1),(676,12,'134','Michel','2013-06-13 09:58:24','','2013-06-13',NULL,1),(677,2,'96','Michel','2013-05-31 12:23:13','','2013-05-31',NULL,1),(678,11,'209','Michel','2013-06-13 09:58:21','','2013-06-13',NULL,1),(679,13,'42','Michel','2013-03-25 00:14:25','','2013-03-25',NULL,1),(680,13,'43','Michel','2013-03-31 23:18:38','','2013-03-31',NULL,1),(681,13,'44','Michel','2013-04-11 00:26:40','','2013-04-11',NULL,1),(682,13,'45','Michel','2013-05-01 20:03:49','','2013-05-01',NULL,1),(683,20,'3','Michel','2012-06-20 15:54:36','','2012-06-20',NULL,1),(684,20,'4','Michel','2012-06-20 17:02:34','','2012-06-20',NULL,1),(685,20,'5','Michel','2012-06-22 10:44:50','','2012-06-22',NULL,1),(686,20,'6','Michel','2012-06-22 11:16:11','','2012-06-22',NULL,1),(687,20,'7','Michel','2012-06-23 03:02:22','','2012-06-23',NULL,1),(688,20,'8','Michel','2012-06-23 03:33:14','','2012-06-23',NULL,1),(689,20,'9','Michel','2012-06-24 23:58:56','','2012-06-24',NULL,1),(690,20,'10','Michel','2012-06-26 01:08:01','','2012-06-26',NULL,1),(691,20,'11','Michel','2012-06-26 01:11:53','','2012-06-26',NULL,1),(692,20,'12','Michel','2012-07-05 11:33:14','','2012-07-05',NULL,1),(693,20,'13','Michel','2012-12-08 01:00:42','','2012-12-08',NULL,1),(694,20,'14','Michel','2012-12-12 01:56:39','','2012-12-12',NULL,1),(695,20,'15','Michel','2012-12-12 22:53:38','','2012-12-12',NULL,1),(696,20,'16','Michel','2012-12-12 23:43:15','','2012-12-12',NULL,1),(697,22,'66','Michel','2013-04-14 15:23:11','','2013-04-14',NULL,1),(698,22,'67','Michel','2013-04-14 15:30:14','','2013-04-14',NULL,1),(699,22,'68','Michel','2013-04-14 18:14:21','','2013-04-14',NULL,1),(700,22,'69','Michel','2013-04-19 11:34:44','','2013-04-19',NULL,1),(701,22,'70','Michel','2013-04-20 11:10:18','','2013-04-20',NULL,1),(702,22,'71','Michel','2013-05-01 14:32:44','','2013-05-01',NULL,1),(703,22,'72','Michel','2013-05-01 14:33:33','','2013-05-01',NULL,1),(704,22,'73','Michel','2013-05-01 14:34:08','','2013-05-01',NULL,1),(705,22,'74','Michel','2013-05-01 18:27:38','','2013-05-01',NULL,1),(706,22,'75','Michel','2013-05-01 18:29:27','','2013-05-01',NULL,1),(707,22,'76','Michel','2013-05-01 20:03:37','','2013-05-01',NULL,1),(708,22,'77','Michel','2013-05-12 16:58:08','','2013-05-12',NULL,1),(709,22,'78','Michel','2013-05-23 20:38:46','','2013-05-23',NULL,1),(710,22,'79','Michel','2013-05-30 11:50:53','','2013-05-30',NULL,1),(711,22,'80','Michel','2013-06-12 13:53:59','','2013-06-12',NULL,1),(712,22,'81','Michel','2013-07-10 16:53:29','','2013-07-10',NULL,1),(713,2,'97','Michel','2013-07-29 11:12:45','','2013-07-29',NULL,1),(714,12,'135','Michel','2013-07-29 11:12:43','','2013-07-29',NULL,1),(715,11,'210','Michel','2013-07-29 11:12:37','','2013-07-29',NULL,1),(716,11,'211','Michel','2013-08-12 23:38:17','','2013-08-12',NULL,1),(717,11,'212','Michel','2013-09-20 09:20:37','','2013-09-20',NULL,1),(718,2,'98','Michel','2013-08-12 23:37:03','Suppression adhérence a la plateforme dans stack','2013-08-12',NULL,1),(719,2,'99','Michel','2013-08-12 23:38:18','','2013-08-12',NULL,1),(720,2,'100','Michel','2013-08-12 23:40:03','','2013-08-12',NULL,1),(721,2,'101','Michel','2013-08-12 23:58:12','','2013-08-12',NULL,1),(722,2,'102','Michel','2013-08-13 00:14:08','','2013-08-13',NULL,1),(723,2,'103','Michel','2013-09-20 09:20:50','','2013-09-20',NULL,1),(724,12,'136','Michel','2013-09-20 09:20:46','','2013-09-20',NULL,1),(725,2,'104','Michel','2013-10-19 21:55:01','','2013-10-19',NULL,1),(726,2,'105','Michel','2013-10-21 17:47:19','','2013-10-21',NULL,1),(727,12,'137','Michel','2013-10-19 21:54:57','','2013-10-19',NULL,1),(728,11,'213','Michel','2013-10-19 21:54:49','','2013-10-19',NULL,1),(729,17,'41','Michel','2013-04-06 11:09:25','','2013-04-06',NULL,1),(730,17,'42','Michel','2013-04-23 17:56:43','','2013-04-23',NULL,1),(731,17,'43','Michel','2013-04-23 18:00:18','','2013-04-23',NULL,1),(732,2,'106','Michel','2013-11-01 23:35:23','','2013-11-01',NULL,1),(733,2,'107','Michel','2013-11-02 14:30:55','','2013-11-02',NULL,1),(734,12,'138','Michel','2013-11-01 23:35:18','','2013-11-01',NULL,1),(735,12,'139','Michel','2013-11-02 14:30:52','','2013-11-02',NULL,1),(736,12,'140','Michel','2013-11-02 15:57:41','','2013-11-02',NULL,1),(737,13,'46','Michel','2013-09-20 09:20:41','','2013-09-20',NULL,1),(738,13,'47','Michel','2013-10-19 21:54:53','','2013-10-19',NULL,1),(739,13,'48','Michel','2013-11-01 23:35:15','','2013-11-01',NULL,1),(740,13,'49','Michel','2013-11-02 14:30:47','','2013-11-02',NULL,1),(741,12,'141','Michel','2013-11-12 10:15:21','','2013-11-12',NULL,1),(742,12,'142','Michel','2013-11-26 15:43:03','','2013-11-26',NULL,1),(743,2,'108','Michel','2013-11-12 10:15:27','','2013-11-12',NULL,1),(744,2,'109','Michel','2013-11-26 15:43:05','','2013-11-26',NULL,1),(745,13,'50','Michel','2013-11-26 15:43:00','','2013-11-26',NULL,1),(746,17,'44','Michel','2013-11-05 21:10:37','','2013-11-05',NULL,1),(747,24,'1','Michel','2012-12-12 02:45:56','','2012-12-12',NULL,1),(748,24,'2','Michel','2012-12-12 02:46:12','','2012-12-12',NULL,1),(749,24,'3','Michel','2012-12-12 02:46:24','','2012-12-12',NULL,1),(750,24,'4','Michel','2012-12-12 09:13:01','','2012-12-12',NULL,1),(751,24,'5','Michel','2012-12-12 09:13:10','','2012-12-12',NULL,1),(752,24,'6','Michel','2012-12-12 10:23:42','','2012-12-12',NULL,1),(753,24,'7','Michel','2012-12-12 10:23:46','','2012-12-12',NULL,1),(754,24,'8','Michel','2013-03-19 18:26:08','','2013-03-19',NULL,1),(755,24,'9','Michel','2013-11-05 21:10:33','','2013-11-05',NULL,1),(756,24,'10','Michel','2013-12-17 14:29:56','','2013-12-17',NULL,1),(757,24,'11','Michel','2013-12-17 14:30:04','','2013-12-17',NULL,1),(758,20,'17','Michel','2013-11-05 21:10:50','','2013-11-05',NULL,1),(759,20,'18','Michel','2013-12-17 14:30:05','','2013-12-17',NULL,1),(760,20,'19','Michel','2013-12-17 14:30:06','','2013-12-17',NULL,1),(761,20,'20','Michel','2013-12-17 14:43:28','','2013-12-17',NULL,1),(762,20,'21','Michel','2013-12-17 14:43:45','','2013-12-17',NULL,1),(763,27,'1','Michel','2014-01-10 10:48:19','','2014-01-10',NULL,1),(764,27,'2','Michel','2014-01-10 10:49:25','','2014-01-10',NULL,1),(765,27,'3','Michel','2014-01-10 11:06:04','','2014-01-10',NULL,1),(766,23,'38','Michel','2013-11-05 21:10:41','','2013-11-05',NULL,1),(767,23,'39','Michel','2013-11-05 21:10:46','','2013-11-05',NULL,1),(768,23,'40','Michel','2013-11-05 21:11:13','','2013-11-05',NULL,1),(769,23,'41','Michel','2013-11-05 21:11:28','','2013-11-05',NULL,1),(770,23,'42','Michel','2013-11-05 21:12:46','','2013-11-05',NULL,1),(771,23,'43','Michel','2013-11-05 21:12:53','','2013-11-05',NULL,1),(772,23,'44','Michel','2013-11-05 21:13:22','','2013-11-05',NULL,1),(773,23,'45','Michel','2013-11-05 21:13:42','','2013-11-05',NULL,1),(774,23,'46','Michel','2013-11-05 21:14:06','','2013-11-05',NULL,1),(775,23,'47','Michel','2013-11-05 21:14:21','','2013-11-05',NULL,1),(776,23,'48','Michel','2013-12-17 14:30:04','','2013-12-17',NULL,1),(777,23,'49','Michel','2014-01-10 11:06:01','','2014-01-10',NULL,1),(778,25,'1','Michel','2012-12-12 18:18:06','','2012-12-12',NULL,1),(779,25,'2','Michel','2012-12-12 18:18:13','','2012-12-12',NULL,1),(780,25,'3','Michel','2012-12-12 18:28:34','','2012-12-12',NULL,1),(781,25,'4','Michel','2013-03-10 11:54:10','','2013-03-10',NULL,1),(782,25,'5','Michel','2013-03-19 18:26:10','','2013-03-19',NULL,1),(783,25,'6','Michel','2013-03-25 14:32:43','','2013-03-25',NULL,1),(784,25,'7','Michel','2013-04-24 00:48:24','','2013-04-24',NULL,1),(785,25,'8','Michel','2013-12-17 14:30:03','','2013-12-17',NULL,1),(786,2,'110','Michel','2013-12-10 10:27:00','','2013-12-10',NULL,1),(787,2,'111','Michel','2013-12-16 21:38:30','','2013-12-16',NULL,1),(788,2,'112','Michel','2013-12-17 13:27:58','','2013-12-17',NULL,1),(789,2,'113','Michel','2013-12-17 13:28:28','','2013-12-17',NULL,1),(790,2,'114','Michel','2013-12-17 14:41:59','','2013-12-17',NULL,1),(791,2,'115','Michel','2013-12-20 12:22:21','','2013-12-20',NULL,1),(792,2,'116','Michel','2013-12-24 17:14:45','','2013-12-24',NULL,1),(793,2,'117','Michel','2014-01-10 16:28:35','','2014-01-10',NULL,1),(794,11,'214','Michel','2013-11-01 23:35:12','','2013-11-01',NULL,1),(795,11,'215','Michel','2013-11-02 14:30:57','','2013-11-02',NULL,1),(796,11,'216','Michel','2013-11-12 10:15:16','','2013-11-12',NULL,1),(797,11,'217','Michel','2013-11-26 15:42:56','','2013-11-26',NULL,1),(798,11,'218','Michel','2013-12-10 10:26:53','','2013-12-10',NULL,1),(799,11,'219','Michel','2013-12-16 21:38:23','','2013-12-16',NULL,1),(800,11,'220','Michel','2013-12-17 09:51:33','','2013-12-17',NULL,1),(801,11,'221','Michel','2013-12-20 12:22:17','','2013-12-20',NULL,1),(802,11,'222','Michel','2013-12-24 17:14:40','','2013-12-24',NULL,1),(803,11,'223','Michel','2013-12-31 11:31:05','','2013-12-31',NULL,1),(804,11,'224','Michel','2014-01-10 09:37:16','','2014-01-10',NULL,1),(805,11,'225','Michel','2014-01-10 16:28:28','','2014-01-10',NULL,1),(806,27,'4','Michel','2014-01-10 11:21:58','','2014-01-10',NULL,1),(807,27,'5','Michel','2014-01-10 11:24:12','','2014-01-10',NULL,1),(808,27,'6','Michel','2014-01-10 11:26:26','','2014-01-10',NULL,1),(809,27,'7','Michel','2014-01-10 11:27:04','','2014-01-10',NULL,1),(810,27,'8','Michel','2014-01-10 11:29:15','','2014-01-10',NULL,1),(811,29,'1','Michel','2014-01-15 12:31:47','','2014-01-15',NULL,1),(812,29,'2','Michel','2014-01-15 12:31:53','','2014-01-15',NULL,1),(813,27,'9','Michel','2014-01-10 22:24:02','','2014-01-10',NULL,1),(814,27,'10','Michel','2014-01-27 10:50:42','','2014-01-27',NULL,1),(815,27,'11','Michel','2014-01-27 10:55:37','','2014-01-27',NULL,1),(816,27,'12','Michel','2014-01-27 11:07:37','','2014-01-27',NULL,1),(817,27,'13','Michel','2014-01-27 11:07:45','','2014-01-27',NULL,1),(818,30,'1','Michel','2014-01-31 18:45:36','First commint','2014-01-31',NULL,1),(819,30,'2','Michel','2014-01-31 18:45:54','','2014-01-31',NULL,1),(820,27,'14','Michel','2014-01-27 11:09:03','','2014-01-27',NULL,1),(821,27,'15','Michel','2014-01-27 11:10:48','','2014-01-27',NULL,1),(822,27,'16','Michel','2014-01-27 11:11:04','','2014-01-27',NULL,1),(823,27,'17','Michel','2014-01-27 11:19:39','','2014-01-27',NULL,1),(824,27,'18','Michel','2014-01-27 11:24:02','','2014-01-27',NULL,1),(825,27,'19','Michel','2014-01-27 11:26:26','','2014-01-27',NULL,1),(826,27,'20','Michel','2014-01-27 15:52:31','','2014-01-27',NULL,1),(827,27,'21','Michel','2014-01-27 18:55:58','','2014-01-27',NULL,1),(828,27,'22','Michel','2014-01-27 19:14:54','','2014-01-27',NULL,1),(829,27,'23','Michel','2014-01-27 20:55:33','','2014-01-27',NULL,1),(830,27,'24','Michel','2014-01-27 21:39:35','','2014-01-27',NULL,1),(831,27,'25','Michel','2014-01-29 03:19:16','','2014-01-29',NULL,1),(832,27,'26','Michel','2014-01-29 16:12:21','','2014-01-29',NULL,1),(833,27,'27','Michel','2014-01-29 17:15:51','','2014-01-29',NULL,1),(834,27,'28','Michel','2014-01-31 17:51:33','','2014-01-31',NULL,1),(835,27,'29','Michel','2014-01-31 18:30:52','','2014-01-31',NULL,1),(836,27,'30','Michel','2014-01-31 18:33:20','','2014-01-31',NULL,1),(837,2,'118','Michel','2014-01-13 00:29:49','','2014-01-13',NULL,1),(838,2,'119','Michel','2014-01-13 00:32:30','','2014-01-13',NULL,1),(839,2,'120','Michel','2014-01-13 00:35:10','','2014-01-13',NULL,1),(840,2,'121','Michel','2014-01-19 18:04:19','','2014-01-19',NULL,1),(841,2,'122','Michel','2014-01-20 22:10:14','','2014-01-20',NULL,1),(842,2,'123','Michel','2014-01-29 18:27:53','','2014-01-29',NULL,1),(843,32,'1','Michel','2014-01-31 21:05:16','','2014-01-31',NULL,1),(844,32,'2','Michel','2014-01-31 21:05:27','','2014-01-31',NULL,1),(845,32,'3','Michel','2014-01-31 21:06:11','','2014-01-31',NULL,1),(846,32,'4','Michel','2014-01-31 21:06:23','','2014-01-31',NULL,1),(847,32,'5','Michel','2014-01-31 21:06:35','','2014-01-31',NULL,1),(848,32,'6','Michel','2014-01-31 21:06:48','','2014-01-31',NULL,1),(849,32,'7','Michel','2014-01-31 21:07:02','','2014-01-31',NULL,1),(850,32,'8','Michel','2014-01-31 21:07:11','','2014-01-31',NULL,1),(851,32,'9','Michel','2014-01-31 21:07:27','','2014-01-31',NULL,1),(852,32,'10','Michel','2014-01-31 21:07:36','','2014-01-31',NULL,1),(853,32,'11','Michel','2014-01-31 21:07:48','','2014-01-31',NULL,1),(854,32,'12','Michel','2014-01-31 21:07:59','','2014-01-31',NULL,1),(855,32,'13','Michel','2014-01-31 21:08:07','','2014-01-31',NULL,1),(856,32,'14','Michel','2014-01-31 21:08:17','','2014-01-31',NULL,1),(857,32,'15','Michel','2014-01-31 21:08:23','','2014-01-31',NULL,1),(858,32,'16','Michel','2014-01-31 21:08:31','','2014-01-31',NULL,1),(859,32,'17','Michel','2014-01-31 21:08:32','','2014-01-31',NULL,1),(860,32,'18','Michel','2014-01-31 21:08:32','','2014-01-31',NULL,1),(861,32,'19','Michel','2014-01-31 21:08:32','','2014-01-31',NULL,1),(862,32,'20','Michel','2014-01-31 21:08:33','','2014-01-31',NULL,1),(863,32,'21','Michel','2014-01-31 21:08:33','','2014-01-31',NULL,1),(864,32,'22','Michel','2014-01-31 21:08:33','','2014-01-31',NULL,1),(865,32,'23','Michel','2014-01-31 21:08:34','','2014-01-31',NULL,1),(866,32,'24','Michel','2014-01-31 21:08:34','','2014-01-31',NULL,1),(867,32,'25','Michel','2014-01-31 21:08:39','','2014-01-31',NULL,1),(868,27,'31','Michel','2014-01-31 21:12:33','','2014-01-31',NULL,1),(869,27,'32','Michel','2014-01-31 21:14:54','','2014-01-31',NULL,1),(870,27,'33','Michel','2014-01-31 21:15:26','','2014-01-31',NULL,1),(871,27,'34','Michel','2014-01-31 21:17:13','','2014-01-31',NULL,1),(872,27,'35','Michel','2014-01-31 21:24:29','','2014-01-31',NULL,1),(873,27,'36','Michel','2014-01-31 21:27:28','','2014-01-31',NULL,1),(874,27,'37','Michel','2014-02-01 15:11:41','','2014-02-01',NULL,1),(875,11,'226','Michel','2014-01-12 16:10:30','','2014-01-12',NULL,1),(876,11,'227','Michel','2014-01-13 00:29:25','','2014-01-13',NULL,1),(877,11,'228','Michel','2014-01-13 00:40:34','','2014-01-13',NULL,1),(878,11,'229','Michel','2014-01-15 12:17:24','','2014-01-15',NULL,1),(879,11,'230','Michel','2014-01-29 18:27:51','','2014-01-29',NULL,1),(880,11,'231','Michel','2014-01-29 20:27:47','','2014-01-29',NULL,1),(881,11,'232','Michel','2014-01-31 16:42:57','','2014-01-31',NULL,1),(882,11,'233','Michel','2014-01-31 20:50:19','','2014-01-31',NULL,1),(883,11,'234','Michel','2014-02-05 09:35:09','','2014-02-05',NULL,1),(884,11,'235','Michel','2014-02-06 11:14:22','','2014-02-06',NULL,1),(885,2,'124','Michel','2014-02-04 20:40:05','','2014-02-04',NULL,1),(886,2,'125','Michel','2014-02-05 09:35:07','','2014-02-05',NULL,1),(887,2,'126','Michel','2014-02-06 11:14:20','','2014-02-06',NULL,1),(888,2,'127','Michel','2014-02-13 20:35:53','','2014-02-13',NULL,1),(889,2,'128','Michel','2014-02-15 01:51:17','','2014-02-15',NULL,1),(890,2,'129','Michel','2014-03-01 12:55:05','','2014-03-01',NULL,1),(891,13,'51','Michel','2013-12-16 21:38:31','','2013-12-16',NULL,1),(892,13,'52','Michel','2013-12-17 09:51:35','','2013-12-17',NULL,1),(893,13,'53','Michel','2013-12-17 14:41:59','','2013-12-17',NULL,1),(894,13,'54','Michel','2013-12-24 17:14:47','','2013-12-24',NULL,1),(895,13,'55','Michel','2014-01-10 16:28:34','','2014-01-10',NULL,1),(896,13,'56','Michel','2014-01-13 00:29:29','','2014-01-13',NULL,1),(897,13,'57','Michel','2014-03-01 12:55:07','','2014-03-01',NULL,1),(898,11,'236','Michel','2014-02-13 20:35:47','','2014-02-13',NULL,1),(899,11,'237','Michel','2014-02-14 09:28:16','','2014-02-14',NULL,1),(900,11,'238','Michel','2014-02-15 01:51:12','Validation du fonctionnement du mode signé crypté avec OpenSSL 1.0.0.1c','2014-02-15',NULL,1),(901,11,'239','Michel','2014-03-01 12:54:59','','2014-03-01',NULL,1),(902,11,'240','Michel','2014-03-03 14:09:24','Support HA et Vfi Step 1 valid','2014-03-03',NULL,1),(903,11,'241','Michel','2014-03-03 18:43:36','','2014-03-03',NULL,1),(904,11,'242','Michel','2014-03-03 18:44:13','','2014-03-03',NULL,1),(905,11,'243','Michel','2014-03-03 18:45:05','','2014-03-03',NULL,1),(906,11,'244','Michel','2014-03-04 01:24:09','','2014-03-04',NULL,1),(907,11,'245','Michel','2014-03-04 02:39:40','','2014-03-04',NULL,1),(908,11,'246','Michel','2014-03-04 10:20:32','Archive de sauvegarde','2014-03-04',NULL,1),(909,11,'247','Michel','2014-03-06 01:18:20','','2014-03-06',NULL,1),(910,11,'248','Michel','2014-03-06 23:32:28','Version operationnel du module d\'archivage au travers de Vpi.\nCette version de contente d\'archiver selon la fréquence passé en param dans le HistoricalDataConfigurationType','2014-03-06',NULL,1),(911,25,'9','Michel','2014-02-01 13:48:49','','2014-02-01',NULL,1),(912,25,'10','Michel','2014-02-04 09:48:37','','2014-02-04',NULL,1),(913,25,'11','Michel','2014-02-04 09:49:44','','2014-02-04',NULL,1),(914,25,'12','Michel','2014-02-04 11:40:55','','2014-02-04',NULL,1),(915,25,'13','Michel','2014-02-04 14:01:30','','2014-02-04',NULL,1),(916,25,'14','Michel','2014-02-04 15:59:59','','2014-02-04',NULL,1),(917,25,'15','Michel','2014-03-06 12:19:48','','2014-03-06',NULL,1),(918,25,'16','Michel','2014-03-06 12:21:37','','2014-03-06',NULL,1),(919,25,'17','Michel','2014-03-06 12:21:51','','2014-03-06',NULL,1),(920,25,'18','Michel','2014-03-06 12:22:13','','2014-03-06',NULL,1),(921,25,'19','Michel','2014-03-06 13:39:11','','2014-03-06',NULL,1),(922,28,'1','Michel','2014-01-10 16:19:17','','2014-01-10',NULL,1),(923,28,'2','Michel','2014-01-10 16:19:24','','2014-01-10',NULL,1),(924,28,'3','Michel','2014-03-06 12:19:55','','2014-03-06',NULL,1),(925,28,'4','Michel','2014-03-06 13:39:14','','2014-03-06',NULL,1),(926,32,'26','Michel','2014-02-08 02:28:07','','2014-02-08',NULL,1),(927,32,'27','Michel','2014-02-08 02:28:11','','2014-02-08',NULL,1),(928,32,'28','Michel','2014-02-08 02:28:14','','2014-02-08',NULL,1),(929,32,'29','Michel','2014-03-01 11:38:26','','2014-03-01',NULL,1),(930,32,'30','Michel','2014-03-01 11:38:27','','2014-03-01',NULL,1),(931,32,'31','Michel','2014-03-01 11:38:27','','2014-03-01',NULL,1),(932,32,'32','Michel','2014-03-01 11:38:28','','2014-03-01',NULL,1),(933,32,'33','Michel','2014-03-02 14:13:47','','2014-03-02',NULL,1),(934,38,'1','Michel','2014-03-12 15:28:52','First commit for SharedVfis file','2014-03-12',NULL,1),(935,38,'2','Michel','2014-03-12 15:29:09','','2014-03-12',NULL,1),(936,38,'3','Michel','2014-03-12 15:31:49','','2014-03-12',NULL,1),(937,38,'4','Michel','2014-03-12 15:39:19','Remove VfiCsv from SharedVfis','2014-03-12',NULL,1),(938,38,'5','Michel','2014-03-12 15:40:55','','2014-03-12',NULL,1),(939,38,'6','Michel','2014-03-12 16:30:26','','2014-03-12',NULL,1),(940,38,'7','Michel','2014-03-12 16:30:48','','2014-03-12',NULL,1),(941,38,'8','Michel','2014-03-12 16:32:38','','2014-03-12',NULL,1),(942,38,'9','Michel','2014-03-12 16:32:47','','2014-03-12',NULL,1),(943,39,'1','Michel','2014-03-12 17:44:06','','2014-03-12',NULL,1),(944,39,'2','Michel','2014-03-12 17:44:26','','2014-03-12',NULL,1),(945,39,'3','Michel','2014-03-12 17:54:48','','2014-03-12',NULL,1),(946,39,'4','Michel','2014-03-12 18:03:02','','2014-03-12',NULL,1),(947,39,'5','Michel','2014-03-12 18:03:09','','2014-03-12',NULL,1),(948,12,'143','Michel','2013-12-10 10:26:58','','2013-12-10',NULL,1),(949,12,'144','Michel','2013-12-16 21:38:27','','2013-12-16',NULL,1),(950,12,'145','Michel','2013-12-20 12:22:20','','2013-12-20',NULL,1),(951,12,'146','Michel','2013-12-24 17:14:43','','2013-12-24',NULL,1),(952,12,'147','Michel','2013-12-31 11:31:07','','2013-12-31',NULL,1),(953,12,'148','Michel','2014-01-10 09:37:18','','2014-01-10',NULL,1),(954,12,'149','Michel','2014-01-10 16:28:34','','2014-01-10',NULL,1),(955,12,'150','Michel','2014-01-12 16:10:31','','2014-01-12',NULL,1),(956,12,'151','Michel','2014-01-19 18:04:12','','2014-01-19',NULL,1),(957,12,'152','Michel','2014-02-05 09:35:04','','2014-02-05',NULL,1),(958,12,'153','Michel','2014-02-13 20:35:51','','2014-02-13',NULL,1),(959,12,'154','Michel','2014-03-01 12:55:02','','2014-03-01',NULL,1),(960,12,'155','Michel','2014-03-06 23:32:28','Version operationnel du module d\'archivage au travers de Vpi.\nCette version de contente d\'archiver selon la fréquence passé en param dans le HistoricalDataConfigurationType','2014-03-06',NULL,1),(961,12,'156','Michel','2014-03-11 23:29:11','','2014-03-11',NULL,1),(962,32,'34','Michel','2014-03-12 14:51:27','','2014-03-12',NULL,1),(963,32,'35','Michel','2014-03-12 14:51:31','','2014-03-12',NULL,1),(964,32,'36','Michel','2014-03-12 14:51:34','','2014-03-12',NULL,1),(965,32,'37','Michel','2014-03-12 14:51:37','','2014-03-12',NULL,1),(966,32,'38','Michel','2014-03-12 14:51:42','','2014-03-12',NULL,1),(967,32,'39','Michel','2014-03-12 14:51:45','','2014-03-12',NULL,1),(968,32,'40','Michel','2014-03-12 14:52:31','','2014-03-12',NULL,1),(969,32,'41','Michel','2014-03-12 15:02:51','','2014-03-12',NULL,1),(970,32,'42','Michel','2014-03-12 15:09:48','','2014-03-12',NULL,1),(971,32,'43','Michel','2014-03-12 15:09:55','','2014-03-12',NULL,1),(972,32,'44','Michel','2014-03-20 15:46:01','','2014-03-20',NULL,1),(973,22,'82','Michel','2013-10-16 21:57:13','','2013-10-16',NULL,1),(974,22,'83','Michel','2013-10-18 11:51:19','','2013-10-18',NULL,1),(975,22,'84','Michel','2013-10-30 13:23:18','','2013-10-30',NULL,1),(976,22,'85','Michel','2013-12-18 20:53:03','','2013-12-18',NULL,1),(977,22,'86','Michel','2013-12-20 12:22:06','','2013-12-20',NULL,1),(978,22,'87','Michel','2013-12-20 17:06:40','','2013-12-20',NULL,1),(979,22,'88','Michel','2013-12-24 17:15:17','','2013-12-24',NULL,1),(980,22,'89','Michel','2014-01-11 21:50:57','','2014-01-11',NULL,1),(981,22,'90','Michel','2014-01-12 16:10:19','','2014-01-12',NULL,1),(982,22,'91','Michel','2014-01-13 01:28:31','','2014-01-13',NULL,1),(983,22,'92','Michel','2014-01-15 10:06:55','','2014-01-15',NULL,1),(984,22,'93','Michel','2014-01-15 10:22:16','','2014-01-15',NULL,1),(985,22,'94','Michel','2014-01-15 10:22:21','','2014-01-15',NULL,1),(986,22,'95','Michel','2014-01-15 14:04:56','','2014-01-15',NULL,1),(987,22,'96','Michel','2014-02-28 13:51:53','Memory Leak optimisation on read and write function plus couple of extra bug fix','2014-02-28',NULL,1),(988,22,'97','Michel','2014-03-12 17:23:20','','2014-03-12',NULL,1),(989,22,'98','Michel','2014-03-12 17:28:26','','2014-03-12',NULL,1),(990,22,'99','Michel','2014-03-12 17:32:10','','2014-03-12',NULL,1),(991,2,'130','Michel','2014-03-11 20:41:33','','2014-03-11',NULL,1),(992,2,'131','Michel','2014-03-12 00:51:17','','2014-03-12',NULL,1),(993,2,'132','Michel','2014-03-13 10:50:11','','2014-03-13',NULL,1),(994,2,'133','Michel','2014-03-13 10:50:16','','2014-03-13',NULL,1),(995,2,'134','Michel','2014-03-13 10:50:22','','2014-03-13',NULL,1),(996,2,'135','Michel','2014-03-13 10:50:29','','2014-03-13',NULL,1),(997,2,'136','Michel','2014-03-13 10:58:29','','2014-03-13',NULL,1),(998,2,'137','Michel','2014-03-13 11:46:10','','2014-03-13',NULL,1),(999,2,'138','Michel','2014-03-13 11:49:05','','2014-03-13',NULL,1),(1000,2,'139','Michel','2014-03-17 17:35:43','','2014-03-17',NULL,1),(1001,2,'140','Michel','2014-03-17 17:37:20','','2014-03-17',NULL,1),(1002,2,'141','Michel','2014-03-17 17:42:15','','2014-03-17',NULL,1),(1003,2,'142','Michel','2014-03-17 18:33:28','','2014-03-17',NULL,1),(1004,2,'143','Michel','2014-03-21 19:36:45','','2014-03-21',NULL,1),(1005,2,'144','Michel','2014-03-22 01:17:49','Suppression des fichiers .c en charge du listener HTTP pure','2014-03-22',NULL,1),(1006,2,'145','Michel','2014-03-22 01:18:23','Suppression des fichiers .h en charge du listener HTTP pure','2014-03-22',NULL,1),(1007,2,'146','Michel','2014-03-26 21:03:34','','2014-03-26',NULL,1),(1008,2,'147','Michel','2014-03-27 17:19:57','','2014-03-27',NULL,1),(1009,2,'148','Michel','2014-04-03 09:54:57','','2014-04-03',NULL,1),(1010,2,'149','Michel','2014-04-03 11:32:50','','2014-04-03',NULL,1),(1011,40,'1','Michel','2014-04-03 13:24:48','','2014-04-03',NULL,1),(1022,41,'1','Michel','2014-05-19 09:55:26','Initial commit for the OpenOpcUa Codebase V2','2014-05-19',NULL,1),(1023,41,'2','Michel','2014-05-19 10:02:24','','2014-05-19',NULL,1),(1024,40,'2','Michel','2014-04-03 13:30:34','','2014-04-03',NULL,1),(1025,40,'3','Michel','2014-04-27 18:05:47','','2014-04-27',NULL,1),(1026,2,'150','Michel','2014-04-25 16:43:13','Modification du support des certificats issued pour la prise en compte des connexions securisé.','2014-04-25',NULL,1),(1027,2,'151','Michel','2014-04-27 18:05:53','','2014-04-27',NULL,1),(1028,2,'152','Michel','2014-05-19 10:21:57','','2014-05-19',NULL,1),(1029,2,'153','Michel','2014-05-20 14:24:55','','2014-05-20',NULL,1),(1030,25,'20','Michel','2014-03-12 11:00:37','','2014-03-12',NULL,1),(1031,25,'21','Michel','2014-03-12 11:21:29','Nettoyage Repo subversion','2014-03-12',NULL,1),(1032,25,'22','Michel','2014-03-17 10:09:36','','2014-03-17',NULL,1),(1033,25,'23','Michel','2014-03-17 10:09:43','','2014-03-17',NULL,1),(1034,25,'24','Michel','2014-03-17 10:55:50','','2014-03-17',NULL,1),(1035,25,'25','Michel','2014-03-19 19:50:14','','2014-03-19',NULL,1),(1036,25,'26','Michel','2014-03-19 19:51:22','','2014-03-19',NULL,1),(1037,25,'27','Michel','2014-03-19 19:52:09','','2014-03-19',NULL,1),(1038,25,'28','Michel','2014-03-19 21:39:07','','2014-03-19',NULL,1),(1039,25,'29','Michel','2014-03-20 14:42:39','','2014-03-20',NULL,1),(1040,25,'30','Michel','2014-03-20 14:53:33','','2014-03-20',NULL,1),(1041,25,'31','Michel','2014-03-20 15:02:07','','2014-03-20',NULL,1),(1042,25,'32','Michel','2014-03-20 20:16:40','','2014-03-20',NULL,1),(1043,25,'33','Michel','2014-03-20 20:18:18','','2014-03-20',NULL,1),(1044,25,'34','Michel','2014-03-20 20:30:17','','2014-03-20',NULL,1),(1045,25,'35','Michel','2014-03-20 20:57:47','','2014-03-20',NULL,1),(1046,25,'36','Michel','2014-03-21 18:50:58','','2014-03-21',NULL,1),(1047,25,'37','Michel','2014-03-22 18:57:34','','2014-03-22',NULL,1),(1048,25,'38','Michel','2014-03-24 10:52:35','','2014-03-24',NULL,1),(1049,25,'39','Michel','2014-03-24 10:55:37','','2014-03-24',NULL,1),(1050,25,'40','Michel','2014-03-24 11:24:39','','2014-03-24',NULL,1),(1051,25,'41','Michel','2014-03-24 11:27:44','','2014-03-24',NULL,1),(1052,25,'42','Michel','2014-03-25 13:49:03','','2014-03-25',NULL,1),(1053,25,'43','Michel','2014-03-26 14:35:17','','2014-03-26',NULL,1),(1054,25,'44','Michel','2014-03-26 18:08:30','','2014-03-26',NULL,1),(1055,25,'45','Michel','2014-03-26 21:04:59','','2014-03-26',NULL,1),(1056,25,'46','Michel','2014-03-27 08:50:46','','2014-03-27',NULL,1),(1057,25,'47','Michel','2014-04-18 17:43:33','Intégration VS2013.','2014-04-18',NULL,1),(1058,2,'154','Michel','2014-06-23 11:24:55','','2014-06-23',NULL,1),(1059,2,'155','Michel','2014-07-07 14:22:02','','2014-07-07',NULL,1),(1060,2,'156','Michel','2014-07-19 10:37:11','','2014-07-19',NULL,1),(1061,2,'157','Michel','2014-07-23 20:02:20','','2014-07-23',NULL,1),(1062,2,'158','Michel','2014-09-16 11:13:40','','2014-09-16',NULL,1),(1063,2,'159','Michel','2014-09-16 21:58:17','','2014-09-16',NULL,1),(1064,24,'12','Michel','2014-03-06 12:19:54','','2014-03-06',NULL,1),(1065,24,'13','Michel','2014-03-06 13:39:13','','2014-03-06',NULL,1),(1066,24,'14','Michel','2014-03-06 14:38:16','Harmonisation des sources, mutex, sem, namespace, etc.','2014-03-06',NULL,1),(1067,24,'15','Michel','2014-03-06 23:32:59','','2014-03-06',NULL,1),(1068,24,'16','Michel','2014-03-12 01:45:31','','2014-03-12',NULL,1),(1069,24,'17','Michel','2014-03-13 14:28:53','','2014-03-13',NULL,1),(1070,24,'18','Michel','2014-03-17 10:34:35','','2014-03-17',NULL,1),(1071,24,'19','Michel','2014-03-17 10:34:39','','2014-03-17',NULL,1),(1072,24,'20','Michel','2014-03-17 10:50:35','','2014-03-17',NULL,1),(1073,24,'21','Michel','2015-01-06 20:32:33','','2015-01-06',NULL,1),(1074,24,'22','Michel','2015-01-06 21:19:40','','2015-01-06',NULL,1),(1075,25,'48','Michel','2014-10-24 11:23:05','','2014-10-24',NULL,1),(1076,25,'49','Michel','2015-01-06 20:32:48','','2015-01-06',NULL,1),(1077,11,'249','Michel','2014-03-12 00:42:24','','2014-03-12',NULL,1),(1078,11,'250','Michel','2014-03-13 10:41:23','Repo Cleanning','2014-03-13',NULL,1),(1079,11,'251','Michel','2014-03-13 14:29:30','','2014-03-13',NULL,1),(1080,11,'252','Michel','2014-03-13 14:30:18','','2014-03-13',NULL,1),(1081,11,'253','Michel','2014-03-13 18:32:18','','2014-03-13',NULL,1),(1082,11,'254','Michel','2014-03-14 09:23:02','Amelioration du support des demandes de redemarrage par les VPI (WarmStart).\nChaque VPI pour forcer la valeur du NodeId state (i=2259). Si il place OpcUa_Vpi_WarmStartNeed dans le StatusCode de ce Node un WarmStart sera réalisé','2014-03-14',NULL,1),(1083,11,'255','Michel','2014-03-14 14:44:36','','2014-03-14',NULL,1),(1084,11,'256','Michel','2014-03-16 14:19:52','','2014-03-16',NULL,1),(1085,11,'257','Michel','2014-03-21 19:36:47','','2014-03-21',NULL,1),(1086,11,'258','Michel','2014-03-22 02:31:53','','2014-03-22',NULL,1),(1087,11,'259','Michel','2014-03-26 21:03:35','','2014-03-26',NULL,1),(1088,11,'260','Michel','2014-03-27 17:19:57','','2014-03-27',NULL,1),(1089,11,'261','Michel','2014-03-28 04:14:56','Minor clean up','2014-03-28',NULL,1),(1090,11,'262','Michel','2014-03-30 15:09:01','','2014-03-30',NULL,1),(1091,11,'263','Michel','2014-03-31 05:55:24','','2014-03-31',NULL,1),(1092,11,'264','Michel','2014-04-03 09:54:51','','2014-04-03',NULL,1),(1093,11,'265','Michel','2014-04-03 11:22:32','Add VS2013','2014-04-03',NULL,1),(1094,11,'266','Michel','2014-04-03 11:22:39','','2014-04-03',NULL,1),(1095,11,'267','Michel','2014-04-03 11:29:51','','2014-04-03',NULL,1),(1096,11,'268','Michel','2014-04-03 11:34:41','','2014-04-03',NULL,1),(1097,11,'269','Michel','2014-04-04 21:02:28','','2014-04-04',NULL,1),(1098,11,'270','Michel','2014-04-12 10:54:12','','2014-04-12',NULL,1),(1099,11,'271','Michel','2014-04-18 07:05:56','Remove all HRESULT from the code and start removing GetTickCount for 49 days wrapping issue','2014-04-18',NULL,1),(1100,11,'272','Michel','2014-04-25 01:54:24','','2014-04-25',NULL,1),(1101,11,'273','Michel','2014-04-27 18:05:54','','2014-04-27',NULL,1),(1102,11,'274','Michel','2014-05-19 10:01:45','','2014-05-19',NULL,1),(1103,11,'275','Michel','2014-05-20 14:24:42','','2014-05-20',NULL,1),(1104,11,'276','Michel','2014-05-23 08:58:07','','2014-05-23',NULL,1),(1105,11,'277','Michel','2014-05-24 13:42:51','','2014-05-24',NULL,1),(1106,11,'278','Michel','2014-05-26 17:23:45','','2014-05-26',NULL,1),(1107,11,'279','Michel','2014-06-23 11:24:38','Various Fix and HA integration (HistoryRead)','2014-06-23',NULL,1),(1108,11,'280','Michel','2014-07-07 14:21:47','','2014-07-07',NULL,1),(1109,11,'281','Michel','2014-07-19 10:36:45','','2014-07-19',NULL,1),(1110,11,'282','Michel','2014-07-23 20:02:15','','2014-07-23',NULL,1),(1111,11,'283','Michel','2014-07-26 16:24:28','Version 1.0.2.3 CTT tested','2014-07-26',NULL,1),(1112,11,'284','Michel','2014-09-16 11:13:24','','2014-09-16',NULL,1),(1113,11,'285','Michel','2014-09-16 21:58:02','','2014-09-16',NULL,1),(1114,11,'286','Michel','2014-09-17 01:46:23','','2014-09-17',NULL,1),(1115,11,'287','Michel','2014-09-17 10:35:26','','2014-09-17',NULL,1),(1116,11,'288','Michel','2014-09-18 23:12:53','','2014-09-18',NULL,1),(1117,11,'289','Michel','2014-09-19 11:53:35','','2014-09-19',NULL,1),(1118,11,'290','Michel','2014-09-19 11:54:38','','2014-09-19',NULL,1),(1119,11,'291','Michel','2014-09-19 11:56:53','','2014-09-19',NULL,1),(1120,11,'292','Michel','2014-10-08 00:22:41','','2014-10-08',NULL,1),(1121,11,'293','Michel','2014-10-08 10:32:04','','2014-10-08',NULL,1),(1122,11,'294','Michel','2014-10-10 10:50:12','','2014-10-10',NULL,1),(1123,11,'295','Michel','2014-10-10 10:50:55','','2014-10-10',NULL,1),(1124,11,'296','Michel','2014-10-10 11:03:13','','2014-10-10',NULL,1),(1125,11,'297','Michel','2014-10-13 10:28:15','','2014-10-13',NULL,1),(1126,11,'298','Michel','2014-10-24 10:23:34','','2014-10-24',NULL,1),(1127,11,'299','Michel','2014-10-28 06:27:14','Valid pre-version of Eventing support','2014-10-28',NULL,1),(1128,11,'300','Michel','2014-11-03 17:42:03','','2014-11-03',NULL,1),(1129,11,'301','Michel','2014-12-12 21:12:10','','2014-12-12',NULL,1),(1130,11,'302','Michel','2014-12-15 20:03:25','','2014-12-15',NULL,1),(1131,11,'303','Michel','2014-12-21 10:29:12','','2014-12-21',NULL,1),(1132,11,'304','Michel','2014-12-21 10:29:23','','2014-12-21',NULL,1),(1133,11,'305','Michel','2014-12-21 11:13:05','','2014-12-21',NULL,1),(1134,11,'306','Michel','2014-12-21 12:50:44','','2014-12-21',NULL,1),(1135,11,'307','Michel','2014-12-21 12:55:03','','2014-12-21',NULL,1),(1136,11,'308','Michel','2014-12-21 15:21:58','','2014-12-21',NULL,1),(1137,11,'309','Michel','2015-01-06 20:34:35','','2015-01-06',NULL,1),(1138,11,'310','Michel','2015-01-08 20:05:18','','2015-01-08',NULL,1),(1139,11,'311','Michel','2015-01-08 20:07:17','','2015-01-08',NULL,1),(1140,11,'312','Michel','2015-01-08 20:09:50','','2015-01-08',NULL,1),(1141,11,'313','Michel','2015-01-08 20:16:58','','2015-01-08',NULL,1),(1142,12,'157','Michel','2014-03-19 20:00:41','','2014-03-19',NULL,1),(1143,12,'158','Michel','2014-03-21 19:36:46','','2014-03-21',NULL,1),(1144,12,'159','Michel','2014-03-26 21:03:35','','2014-03-26',NULL,1),(1145,12,'160','Michel','2014-03-27 17:19:57','','2014-03-27',NULL,1),(1146,12,'161','Michel','2014-03-28 04:14:56','Minor clean up','2014-03-28',NULL,1),(1147,12,'162','Michel','2014-03-30 15:09:02','','2014-03-30',NULL,1),(1148,12,'163','Michel','2014-04-03 09:54:24','','2014-04-03',NULL,1),(1149,12,'164','Michel','2014-04-03 11:33:51','','2014-04-03',NULL,1),(1150,12,'165','Michel','2014-04-04 21:02:21','','2014-04-04',NULL,1),(1151,12,'166','Michel','2014-04-18 07:06:21','Remove all HRESULT from the code and start removing GetTickCount for 49 days wrapping issue','2014-04-18',NULL,1),(1152,12,'167','Michel','2014-04-25 01:54:26','','2014-04-25',NULL,1),(1153,12,'168','Michel','2014-04-27 18:05:55','','2014-04-27',NULL,1),(1154,12,'169','Michel','2014-05-19 10:01:46','','2014-05-19',NULL,1),(1155,12,'170','Michel','2014-05-20 14:24:19','','2014-05-20',NULL,1),(1156,12,'171','Michel','2014-05-23 08:58:15','','2014-05-23',NULL,1),(1157,12,'172','Michel','2014-05-24 13:42:59','','2014-05-24',NULL,1),(1158,12,'173','Michel','2014-05-26 17:23:49','','2014-05-26',NULL,1),(1159,12,'174','Michel','2014-06-23 11:24:58','','2014-06-23',NULL,1),(1160,12,'175','Michel','2014-07-07 14:21:58','','2014-07-07',NULL,1),(1161,12,'176','Michel','2014-07-19 10:37:01','','2014-07-19',NULL,1),(1162,12,'177','Michel','2014-09-16 21:58:17','','2014-09-16',NULL,1),(1163,12,'178','Michel','2014-09-18 23:13:10','','2014-09-18',NULL,1),(1164,12,'179','Michel','2014-10-08 00:23:13','','2014-10-08',NULL,1),(1165,12,'180','Michel','2014-10-10 09:27:16','','2014-10-10',NULL,1),(1166,12,'181','Michel','2014-10-13 10:28:17','','2014-10-13',NULL,1),(1167,12,'182','Michel','2014-10-24 10:23:23','','2014-10-24',NULL,1),(1168,12,'183','Michel','2014-10-28 06:27:11','Valid pre-version of Eventing support','2014-10-28',NULL,1),(1169,12,'184','Michel','2014-11-16 21:29:42','','2014-11-16',NULL,1),(1170,12,'185','Michel','2014-11-17 11:55:35','','2014-11-17',NULL,1),(1171,12,'186','Michel','2014-12-12 21:12:40','','2014-12-12',NULL,1),(1172,12,'187','Michel','2014-12-15 20:03:21','','2014-12-15',NULL,1),(1173,12,'188','Michel','2014-12-21 10:29:07','','2014-12-21',NULL,1),(1174,12,'189','Michel','2015-01-06 20:34:24','','2015-01-06',NULL,1),(1175,12,'190','Michel','2015-01-08 20:05:11','','2015-01-08',NULL,1),(1176,12,'191','Michel','2015-01-28 21:39:34','','2015-01-28',NULL,1),(1177,2,'160','Michel','2014-10-10 10:45:16','','2014-10-10',NULL,1),(1178,2,'161','Michel','2014-10-10 10:45:24','','2014-10-10',NULL,1),(1179,2,'162','Michel','2014-10-10 10:45:30','','2014-10-10',NULL,1),(1180,2,'163','Michel','2014-10-10 10:49:12','','2014-10-10',NULL,1),(1181,2,'164','Michel','2014-10-10 10:49:23','','2014-10-10',NULL,1),(1182,2,'165','Michel','2014-10-28 06:27:10','Valid pre-version of Eventing support','2014-10-28',NULL,1),(1183,2,'166','Michel','2014-12-12 21:12:46','','2014-12-12',NULL,1),(1184,2,'167','Michel','2014-12-21 10:29:02','','2014-12-21',NULL,1),(1185,2,'168','Michel','2015-01-06 20:34:41','','2015-01-06',NULL,1),(1186,2,'169','Michel','2015-01-28 21:39:18','','2015-01-28',NULL,1),(1187,30,'3','Michel','2015-01-28 21:45:28','First Commit','2015-01-28',NULL,1),(1188,28,'5','Michel','2014-03-12 02:45:21','','2014-03-12',NULL,1),(1189,28,'6','Michel','2014-03-21 20:23:11','','2014-03-21',NULL,1),(1190,28,'7','Michel','2014-04-18 17:43:07','Intégration VS2013 et harmonisation des signatures.','2014-04-18',NULL,1),(1191,28,'8','Michel','2015-01-06 20:33:04','','2015-01-06',NULL,1),(1192,42,'1','Michel','2015-01-29 11:36:30','','2015-01-29',NULL,1),(1193,42,'2','Michel','2015-01-29 11:47:37','','2015-01-29',NULL,1),(1194,42,'3','Michel','2015-01-29 11:47:44','','2015-01-29',NULL,1),(1195,42,'4','Michel','2015-01-29 11:48:59','','2015-01-29',NULL,1),(1196,42,'5','Michel','2015-01-29 12:11:43','','2015-01-29',NULL,1),(1197,42,'6','Michel','2015-01-29 12:14:23','','2015-01-29',NULL,1),(1198,31,'1','Michel','2014-02-01 15:26:42','','2014-02-01',NULL,1),(1199,31,'2','Michel','2014-02-01 16:05:04','','2014-02-01',NULL,1),(1200,31,'3','Michel','2014-02-01 16:10:01','','2014-02-01',NULL,1),(1201,31,'4','Michel','2014-02-01 23:31:20','','2014-02-01',NULL,1),(1202,31,'5','Michel','2014-02-04 03:03:41','','2014-02-04',NULL,1),(1203,31,'6','Michel','2014-02-04 09:20:08','','2014-02-04',NULL,1),(1204,31,'7','Michel','2014-02-04 09:31:35','','2014-02-04',NULL,1),(1205,31,'8','Michel','2014-02-04 11:41:18','','2014-02-04',NULL,1),(1206,31,'9','Michel','2014-02-04 12:33:50','','2014-02-04',NULL,1),(1207,31,'10','Michel','2014-02-04 13:44:58','','2014-02-04',NULL,1),(1208,31,'11','Michel','2014-02-04 16:00:14','','2014-02-04',NULL,1),(1209,31,'12','Michel','2014-03-12 02:26:40','','2014-03-12',NULL,1),(1210,31,'13','Michel','2014-03-17 10:19:58','','2014-03-17',NULL,1),(1211,31,'14','Michel','2014-03-17 15:50:21','','2014-03-17',NULL,1),(1212,31,'15','Michel','2014-03-17 17:53:02','','2014-03-17',NULL,1),(1213,31,'16','Michel','2014-03-17 17:53:52','','2014-03-17',NULL,1),(1214,31,'17','Michel','2014-03-19 19:00:57','','2014-03-19',NULL,1),(1215,31,'18','Michel','2014-03-19 20:11:48','','2014-03-19',NULL,1),(1216,31,'19','Michel','2014-03-19 20:25:25','','2014-03-19',NULL,1),(1217,31,'20','Michel','2014-03-19 21:38:55','','2014-03-19',NULL,1),(1218,31,'21','Michel','2014-03-19 21:45:42','','2014-03-19',NULL,1),(1219,31,'22','Michel','2014-03-21 19:36:00','','2014-03-21',NULL,1),(1220,31,'23','Michel','2014-03-21 20:33:06','','2014-03-21',NULL,1),(1221,31,'24','Michel','2014-03-21 20:42:24','','2014-03-21',NULL,1),(1222,31,'25','Michel','2014-03-22 17:47:25','','2014-03-22',NULL,1),(1223,31,'26','Michel','2014-03-22 18:06:36','','2014-03-22',NULL,1),(1224,31,'27','Michel','2014-03-24 16:14:24','','2014-03-24',NULL,1),(1225,31,'28','Michel','2014-03-25 14:47:03','','2014-03-25',NULL,1),(1226,31,'29','Michel','2014-03-25 14:57:53','','2014-03-25',NULL,1),(1227,31,'30','Michel','2014-03-25 15:04:11','Build Linux and Windows OK','2014-03-25',NULL,1),(1228,31,'31','Michel','2014-03-26 11:45:59','','2014-03-26',NULL,1),(1229,31,'32','Michel','2014-03-26 14:56:58','','2014-03-26',NULL,1),(1230,31,'33','Michel','2014-03-26 21:04:37','','2014-03-26',NULL,1),(1231,31,'34','Michel','2014-03-27 10:56:03','','2014-03-27',NULL,1),(1232,31,'35','Michel','2014-03-27 10:59:43','','2014-03-27',NULL,1),(1233,31,'36','Michel','2014-03-27 11:10:15','','2014-03-27',NULL,1),(1234,31,'37','Michel','2014-03-27 12:07:59','','2014-03-27',NULL,1),(1235,31,'38','Michel','2014-04-12 11:25:36','','2014-04-12',NULL,1),(1236,31,'39','Michel','2014-04-13 13:49:09','','2014-04-13',NULL,1),(1237,31,'40','Michel','2014-04-18 17:44:34','Intégration VS2013 et harmonisation des signatures.','2014-04-18',NULL,1),(1238,31,'41','Michel','2014-04-18 17:44:37','','2014-04-18',NULL,1),(1239,31,'42','Michel','2015-01-06 20:33:03','','2015-01-06',NULL,1),(1240,41,'3','Michel','2014-05-19 10:20:59','','2014-05-19',NULL,1),(1241,41,'4','Michel','2014-06-13 18:21:16','','2014-06-13',NULL,1),(1242,41,'5','Michel','2014-06-13 18:21:42','','2014-06-13',NULL,1),(1243,24,'23','Michel','2015-01-29 11:50:22','','2015-01-29',NULL,1),(1244,24,'24','Michel','2015-01-29 12:03:29','','2015-01-29',NULL,1),(1245,11,'314','Michel','2015-01-28 21:39:39','','2015-01-28',NULL,1),(1246,11,'315','Michel','2015-01-29 18:43:12','','2015-01-29',NULL,1),(1247,11,'316','Michel','2015-01-30 09:33:55','','2015-01-30',NULL,1),(1248,11,'317','Michel','2015-02-11 21:35:03','','2015-02-11',NULL,1),(1249,11,'318','Michel','2015-02-12 09:49:53','','2015-02-12',NULL,1),(1250,11,'319','Michel','2015-02-13 14:11:35','','2015-02-13',NULL,1),(1251,11,'320','Michel','2015-02-17 00:33:18','','2015-02-17',NULL,1),(1252,11,'321','Michel','2015-02-26 12:07:51','','2015-02-26',NULL,1),(1253,11,'322','Michel','2015-02-26 14:07:10','','2015-02-26',NULL,1),(1254,40,'4','Michel','2014-05-26 17:23:53','','2014-05-26',NULL,1),(1255,40,'5','Michel','2014-10-10 09:26:24','','2014-10-10',NULL,1),(1256,40,'6','Michel','2014-10-10 10:37:35','','2014-10-10',NULL,1),(1257,40,'7','Michel','2014-10-13 10:28:12','','2014-10-13',NULL,1),(1258,40,'8','Michel','2014-12-02 19:17:35','','2014-12-02',NULL,1),(1259,40,'9','Michel','2014-12-02 19:18:03','','2014-12-02',NULL,1),(1260,40,'10','Michel','2014-12-04 06:43:37','','2014-12-04',NULL,1),(1261,40,'11','Michel','2015-01-29 12:23:24','','2015-01-29',NULL,1),(1262,40,'12','Michel','2015-01-29 17:59:40','','2015-01-29',NULL,1),(1263,40,'13','Michel','2015-01-29 18:01:02','','2015-01-29',NULL,1),(1264,40,'14','Michel','2015-02-02 16:56:17','','2015-02-02',NULL,1),(1265,40,'15','Michel','2015-02-03 14:38:57','','2015-02-03',NULL,1),(1266,40,'16','Michel','2015-02-13 19:19:44','','2015-02-13',NULL,1),(1267,40,'17','Michel','2015-02-26 15:27:39','','2015-02-26',NULL,1),(1268,2,'170','Michel','2015-02-11 21:35:04','','2015-02-11',NULL,1),(1269,2,'171','Michel','2015-02-12 09:50:04','','2015-02-12',NULL,1),(1270,2,'172','Michel','2015-02-13 14:11:36','','2015-02-13',NULL,1),(1271,2,'173','Michel','2015-02-17 00:33:16','','2015-02-17',NULL,1),(1272,2,'174','Michel','2015-02-26 12:07:39','','2015-02-26',NULL,1),(1273,2,'175','Michel','2015-03-05 03:45:21','Support for UserIdentityTooken and compliance with CTT 1.2.335.238','2015-03-05',NULL,1),(1274,2,'176','Michel','2015-03-07 01:19:58','Update version for CTT. Added Support for subscription to most of the attribute plus fix for issued certificate support.','2015-03-07',NULL,1),(1275,2,'177','Michel','2015-03-07 14:37:14','Modification of project configuration. The idea is to put all header file in a same place (include of the root project)','2015-03-07',NULL,1),(1276,2,'178','Michel','2015-03-07 21:06:09','Commit before removing CVpiDataValue','2015-03-07',NULL,1),(1277,12,'192','Michel','2015-02-11 21:35:00','','2015-02-11',NULL,1),(1278,12,'193','Michel','2015-02-12 09:50:00','','2015-02-12',NULL,1),(1279,12,'194','Michel','2015-02-17 00:33:16','','2015-02-17',NULL,1),(1280,12,'195','Michel','2015-02-26 12:07:45','','2015-02-26',NULL,1),(1281,12,'196','Michel','2015-03-05 03:45:24','Support for UserIdentityTooken and compliance with CTT 1.2.335.238','2015-03-05',NULL,1),(1282,12,'197','Michel','2015-03-07 01:19:58','Update version for CTT. Added Support for subscription to most of the attribute plus fix for issued certificate support.','2015-03-07',NULL,1),(1283,12,'198','Michel','2015-03-07 14:37:12','Modification of project configuration. The idea is to put all header file in a same place (include of the root project)','2015-03-07',NULL,1),(1284,12,'199','Michel','2015-03-07 21:06:09','Commit before removing CVpiDataValue','2015-03-07',NULL,1),(1285,40,'18','Michel','2015-02-26 15:31:02','','2015-02-26',NULL,1),(1286,40,'19','Michel','2015-03-07 14:37:13','Modification of project configuration. The idea is to put all header file in a same place (include of the root project)','2015-03-07',NULL,1),(1287,11,'323','Michel','2015-03-05 03:45:23','Support for UserIdentityTooken and compliance with CTT 1.2.335.238','2015-03-05',NULL,1),(1288,11,'324','Michel','2015-03-07 01:19:57','Update version for CTT. Added Support for subscription to most of the attribute plus fix for issued certificate support.','2015-03-07',NULL,1),(1289,11,'325','Michel','2015-03-07 14:37:11','Modification of project configuration. The idea is to put all header file in a same place (include of the root project)','2015-03-07',NULL,1),(1290,11,'326','Michel','2015-03-07 21:06:08','Commit before removing CVpiDataValue','2015-03-07',NULL,1),(1291,11,'327','Michel','2015-03-14 09:13:04','','2015-03-14',NULL,1),(1292,11,'328','Michel','2015-03-21 14:39:29','Works on Browse vs BrowseNext call to BrowseOneNode','2015-03-21',NULL,1),(1293,11,'329','Michel','2015-03-27 11:19:08','Commit for OpcUa_Threa_Delete made in the stack.','2015-03-27',NULL,1),(1294,11,'330','Michel','2015-04-03 18:09:19','1.0.2.6 before leak search','2015-04-03',NULL,1),(1295,11,'331','Michel','2015-04-12 17:31:30','Clean 85% of the leak and fix minor issues','2015-04-12',NULL,1),(1296,11,'332','Michel','2015-05-04 10:53:01','','2015-05-04',NULL,1),(1297,11,'333','Michel','2015-05-18 15:49:07','Version stable en cours de deleakage','2015-05-18',NULL,1),(1298,2,'179','Michel','2015-03-14 09:12:52','','2015-03-14',NULL,1),(1299,2,'180','Michel','2015-03-21 14:39:25','Works on Browse vs BrowseNext call to BrowseOneNode','2015-03-21',NULL,1),(1300,2,'181','Michel','2015-03-27 11:18:37','Update for the OpcUa_Thread_Delete. Change of parameter signature and code. The original one from the OPC Foundation is totaly buggy.\nThe thread cannot stop. This commit doesn\'t contains a double check for Linux... I have to do it','2015-03-27',NULL,1),(1301,2,'182','Michel','2015-04-03 18:09:03','1.0.2.6 before leak search','2015-04-03',NULL,1),(1302,2,'183','Michel','2015-04-12 17:31:19','Clean 85% of the leak and fix minor issues','2015-04-12',NULL,1),(1303,2,'184','Michel','2015-05-04 10:53:09','','2015-05-04',NULL,1),(1304,2,'185','Michel','2015-05-18 15:49:10','Version stable en cours de deleakage','2015-05-18',NULL,1),(1305,11,'334','Michel','2015-05-22 07:53:56','Optimisation gestion mémoire en cours (version instable)','2015-05-22',NULL,1),(1306,11,'335','Michel','2015-06-01 20:56:37','','2015-06-01',NULL,1),(1307,40,'20','Michel','2015-04-12 17:34:30','','2015-04-12',NULL,1),(1308,40,'21','Michel','2015-05-04 10:52:55','','2015-05-04',NULL,1),(1309,11,'336','Michel','2015-06-05 10:41:30','','2015-06-05',NULL,1),(1310,40,'22','Michel','2015-06-05 10:38:49','','2015-06-05',NULL,1),(1311,12,'200','Michel','2015-03-14 09:12:57','','2015-03-14',NULL,1),(1312,12,'201','Michel','2015-03-21 14:39:26','Works on Browse vs BrowseNext call to BrowseOneNode','2015-03-21',NULL,1),(1313,12,'202','Michel','2015-03-27 11:19:06','Commit for OpcUa_Threa_Delete made in the stack.','2015-03-27',NULL,1),(1314,12,'203','Michel','2015-04-03 18:09:12','1.0.2.6 before leak search','2015-04-03',NULL,1),(1315,12,'204','Michel','2015-04-12 17:31:36','Clean 85% of the leak and fix minor issues','2015-04-12',NULL,1),(1316,12,'205','Michel','2015-05-04 10:53:08','','2015-05-04',NULL,1),(1317,12,'206','Michel','2015-05-18 15:49:08','Version stable en cours de deleakage','2015-05-18',NULL,1),(1318,12,'207','Michel','2015-05-22 07:53:56','Optimisation gestion mémoire en cours (version instable)','2015-05-22',NULL,1),(1319,12,'208','Michel','2015-06-01 20:56:39','','2015-06-01',NULL,1),(1320,12,'209','Michel','2015-06-15 14:54:56','','2015-06-15',NULL,1),(1321,2,'186','Michel','2015-07-07 11:27:54','','2015-07-07',NULL,1),(1322,2,'187','Michel','2015-08-07 10:10:33','','2015-08-07',NULL,1),(1323,43,'1','Michel','2015-08-09 16:22:38','initial import','2015-08-09',NULL,1),(1324,23,'50','Michel','2014-01-27 10:21:09','','2014-01-27',NULL,1),(1325,23,'51','Michel','2014-01-27 10:21:12','','2014-01-27',NULL,1),(1326,23,'52','Michel','2014-01-27 10:21:15','','2014-01-27',NULL,1),(1327,23,'53','Michel','2014-01-27 10:21:16','','2014-01-27',NULL,1),(1328,23,'54','Michel','2014-01-27 10:27:28','','2014-01-27',NULL,1),(1329,23,'55','Michel','2014-03-06 13:39:13','','2014-03-06',NULL,1),(1330,23,'56','Michel','2014-03-06 14:38:12','Harmonisation des sources, mutex, sem, namespace, etc.','2014-03-06',NULL,1),(1331,23,'57','Michel','2014-03-12 02:39:43','','2014-03-12',NULL,1),(1332,23,'58','Michel','2015-01-06 20:32:38','','2015-01-06',NULL,1),(1333,43,'2','Michel','2015-08-17 17:39:29','OpenOpcUaConfigManager Version Beta 3.1\nReady to use with all function','2015-08-17',NULL,1),(1334,43,'3','Michel','2015-09-14 11:27:16','','2015-09-14',NULL,1),(1335,40,'23','Michel','2015-07-07 11:29:26','','2015-07-07',NULL,1),(1336,40,'24','Michel','2015-07-23 15:22:20','','2015-07-23',NULL,1),(1337,40,'25','Michel','2015-08-07 09:38:29','','2015-08-07',NULL,1),(1338,40,'26','Michel','2015-08-07 09:43:38','','2015-08-07',NULL,1),(1339,40,'27','Michel','2015-08-07 09:46:53','','2015-08-07',NULL,1),(1340,40,'28','Michel','2015-08-07 09:47:57','','2015-08-07',NULL,1),(1341,40,'29','Michel','2015-08-07 09:48:15','','2015-08-07',NULL,1),(1342,40,'30','Michel','2015-08-07 12:21:42','','2015-08-07',NULL,1),(1343,40,'31','Michel','2015-08-21 12:10:16','','2015-08-21',NULL,1),(1344,40,'32','Michel','2015-08-25 19:51:38','','2015-08-25',NULL,1),(1345,40,'33','Michel','2015-08-25 19:52:08','','2015-08-25',NULL,1),(1346,40,'34','Michel','2015-09-07 21:31:24','','2015-09-07',NULL,1),(1347,40,'35','Michel','2015-09-26 13:19:21','','2015-09-26',NULL,1),(1348,40,'36','Michel','2015-09-26 13:19:32','','2015-09-26',NULL,1),(1349,40,'37','Michel','2015-09-26 13:19:39','','2015-09-26',NULL,1),(1350,40,'38','Michel','2015-10-16 21:16:26','Version 1.0.2.5 stable','2015-10-16',NULL,1),(1351,11,'337','Michel','2015-06-15 14:54:58','','2015-06-15',NULL,1),(1352,11,'338','Michel','2015-07-07 11:27:53','','2015-07-07',NULL,1),(1353,11,'339','Michel','2015-08-06 17:13:04','','2015-08-06',NULL,1),(1354,11,'340','Michel','2015-08-07 12:16:07','','2015-08-07',NULL,1),(1355,11,'341','Michel','2015-08-26 10:24:16','','2015-08-26',NULL,1),(1356,11,'342','Michel','2015-09-22 15:42:02','','2015-09-22',NULL,1),(1357,11,'343','Michel','2015-09-22 22:10:23','','2015-09-22',NULL,1),(1358,11,'344','Michel','2015-10-16 21:18:14','Version 1.0.3.0 Leak free.\nA huge leak was remove from the publish and the number of publish receive is now limited.\nThe limitation is controled by a keywork: MAX_PUBLISH_PER_SESSION','2015-10-16',NULL,1),(1359,11,'345','Michel','2015-11-03 21:15:51','Version stable contenant quelqus fuites résiduelle à l\'initialisation','2015-11-03',NULL,1),(1360,11,'346','Michel','2015-11-05 08:10:55','','2015-11-05',NULL,1),(1361,11,'347','Michel','2015-11-09 14:12:56','Stable version. Only 5 leaks\nBefore submission to OPC F','2015-11-09',NULL,1),(1362,11,'348','Michel','2015-11-11 17:41:45','','2015-11-11',NULL,1),(1363,11,'349','Michel','2015-11-24 09:28:20','','2015-11-24',NULL,1),(1364,11,'350','Michel','2015-11-25 14:49:02','','2015-11-25',NULL,1),(1365,11,'351','Michel','2015-12-10 17:24:02','1.0.4.0 Beta','2015-12-10',NULL,1),(1366,11,'352','Michel','2015-12-15 17:18:44','','2015-12-15',NULL,1),(1367,12,'210','Michel','2015-07-07 11:27:54','','2015-07-07',NULL,1),(1368,12,'211','Michel','2015-08-06 17:13:05','','2015-08-06',NULL,1),(1369,12,'212','Michel','2015-08-06 20:04:12','','2015-08-06',NULL,1),(1370,12,'213','Michel','2015-08-26 10:24:17','','2015-08-26',NULL,1),(1371,12,'214','Michel','2015-09-22 15:42:03','','2015-09-22',NULL,1),(1372,12,'215','Michel','2015-10-16 21:18:16','Version 1.0.3.0 Leak free.\nA huge leak was remove from the publish and the number of publish receive is now limited.\nThe limitation is controled by a keywork: MAX_PUBLISH_PER_SESSION','2015-10-16',NULL,1),(1373,12,'216','Michel','2015-11-03 21:15:53','Version stable contenant quelqus fuites résiduelle à l\'initialisation','2015-11-03',NULL,1),(1374,12,'217','Michel','2015-11-05 08:10:55','','2015-11-05',NULL,1),(1375,12,'218','Michel','2015-11-09 14:12:58','Stable version. Only 5 leaks\nBefore submission to OPC F','2015-11-09',NULL,1),(1376,12,'219','Michel','2015-11-11 17:41:46','','2015-11-11',NULL,1),(1377,12,'220','Michel','2015-11-24 09:28:22','','2015-11-24',NULL,1),(1378,12,'221','Michel','2015-12-10 17:24:04','1.0.4.0 Beta','2015-12-10',NULL,1),(1379,2,'188','Michel','2015-08-07 11:08:36','','2015-08-07',NULL,1),(1380,2,'189','Michel','2015-08-07 12:15:52','','2015-08-07',NULL,1),(1381,2,'190','Michel','2015-09-22 15:42:03','','2015-09-22',NULL,1),(1382,2,'191','Michel','2015-10-16 21:18:17','Version 1.0.3.0 Leak free.\nA huge leak was remove from the publish and the number of publish receive is now limited.\nThe limitation is controled by a keywork: MAX_PUBLISH_PER_SESSION','2015-10-16',NULL,1),(1383,2,'192','Michel','2015-11-03 21:15:59','Version stable contenant quelqus fuites résiduelle à l\'initialisation','2015-11-03',NULL,1),(1384,2,'193','Michel','2015-11-09 14:13:00','Stable version. Only 5 leaks\nBefore submission to OPC F','2015-11-09',NULL,1),(1385,2,'194','Michel','2015-11-11 17:41:47','','2015-11-11',NULL,1),(1386,2,'195','Michel','2015-11-25 14:49:03','','2015-11-25',NULL,1),(1387,2,'196','Michel','2015-12-10 17:24:07','1.0.4.0 Beta','2015-12-10',NULL,1),(1388,17,'45','Michel','2013-12-17 14:30:04','','2013-12-17',NULL,1),(1389,17,'46','Michel','2014-03-12 02:54:54','','2014-03-12',NULL,1),(1390,17,'47','Michel','2014-03-12 02:56:19','','2014-03-12',NULL,1),(1391,17,'48','Michel','2014-04-18 18:01:05','Intégration VS2013 et harmonisation des signatures. Préparation pour intégration sous Linux','2014-04-18',NULL,1),(1392,17,'49','Michel','2014-04-18 18:01:19','','2014-04-18',NULL,1),(1393,17,'50','Michel','2015-01-06 20:32:53','','2015-01-06',NULL,1),(1394,17,'51','Michel','2015-01-28 21:15:31','','2015-01-28',NULL,1),(1395,13,'58','Michel','2014-03-12 00:51:19','','2014-03-12',NULL,1),(1396,13,'59','Michel','2014-03-26 21:03:36','','2014-03-26',NULL,1),(1397,13,'60','Michel','2014-03-27 17:19:56','','2014-03-27',NULL,1),(1398,13,'61','Michel','2014-03-28 04:14:56','Minor clean up','2014-03-28',NULL,1),(1399,13,'62','Michel','2014-04-03 09:54:42','','2014-04-03',NULL,1),(1400,13,'63','Michel','2014-04-03 11:33:27','','2014-04-03',NULL,1),(1401,13,'64','Michel','2014-04-18 07:06:16','Remove HRESULT','2014-04-18',NULL,1),(1402,13,'65','Michel','2014-04-27 18:05:54','','2014-04-27',NULL,1),(1403,13,'66','Michel','2014-05-19 10:01:47','','2014-05-19',NULL,1),(1404,13,'67','Michel','2014-05-20 14:24:52','','2014-05-20',NULL,1),(1405,13,'68','Michel','2014-05-24 13:42:56','','2014-05-24',NULL,1),(1406,13,'69','Michel','2014-07-07 14:21:41','','2014-07-07',NULL,1),(1407,13,'70','Michel','2014-07-19 10:37:12','','2014-07-19',NULL,1),(1408,13,'71','Michel','2014-10-13 10:28:18','','2014-10-13',NULL,1),(1409,13,'72','Michel','2014-10-28 06:27:11','Valid pre-version of Eventing support','2014-10-28',NULL,1),(1410,13,'73','Michel','2014-12-12 21:12:31','','2014-12-12',NULL,1),(1411,13,'74','Michel','2015-01-28 21:39:34','','2015-01-28',NULL,1),(1412,13,'75','Michel','2015-02-11 21:35:00','','2015-02-11',NULL,1),(1413,13,'76','Michel','2015-02-12 09:50:06','','2015-02-12',NULL,1),(1414,13,'77','Michel','2015-02-17 00:33:17','','2015-02-17',NULL,1),(1415,13,'78','Michel','2015-03-07 14:37:13','Modification of project configuration. The idea is to put all header file in a same place (include of the root project)','2015-03-07',NULL,1),(1416,13,'79','Michel','2015-03-07 21:06:08','Commit before removing CVpiDataValue','2015-03-07',NULL,1),(1417,13,'80','Michel','2015-03-14 09:13:00','','2015-03-14',NULL,1),(1418,13,'81','Michel','2015-03-21 14:39:26','Works on Browse vs BrowseNext call to BrowseOneNode','2015-03-21',NULL,1),(1419,13,'82','Michel','2015-03-27 11:19:06','Commit for OpcUa_Threa_Delete made in the stack.','2015-03-27',NULL,1),(1420,13,'83','Michel','2015-04-03 18:09:24','1.0.2.6 before leak search','2015-04-03',NULL,1),(1421,13,'84','Michel','2015-05-18 15:49:03','Version stable en cours de deleakage','2015-05-18',NULL,1),(1422,13,'85','Michel','2015-07-07 11:27:55','','2015-07-07',NULL,1),(1423,13,'86','Michel','2015-08-08 23:19:54','Add a new error code OpcUa_BadFileNotFound in the function xml4CE_SAXCreateOutput. This error code is return if we try to open in non-existing file','2015-08-08',NULL,1),(1424,13,'87','Michel','2015-09-22 15:42:01','','2015-09-22',NULL,1),(1425,13,'88','Michel','2015-10-16 21:18:11','Version 1.0.3.0 Leak free.\nA huge leak was remove from the publish and the number of publish receive is now limited.\nThe limitation is controled by a keywork: MAX_PUBLISH_PER_SESSION','2015-10-16',NULL,1),(1426,13,'89','Michel','2015-11-03 21:16:01','Version stable contenant quelqus fuites résiduelle à l\'initialisation','2015-11-03',NULL,1),(1427,13,'90','Michel','2015-11-11 17:41:45','','2015-11-11',NULL,1),(1428,13,'91','Michel','2015-11-24 09:28:16','','2015-11-24',NULL,1),(1429,13,'92','Michel','2015-12-10 17:23:58','1.0.4.0 Beta','2015-12-10',NULL,1),(1430,11,'353','Michel','2016-01-08 19:29:27','','2016-01-08',NULL,1),(1431,11,'354','Michel','2016-01-18 09:48:59','1.0.4.0 RC3','2016-01-18',NULL,1),(1432,2,'197','Michel','2016-01-18 09:49:01','1.0.4.0 RC3','2016-01-18',NULL,1),(1433,11,'355','Michel','2016-02-06 23:32:04','Version 1.0.4.0 RC5 - Prerelease on 6 feb 2016','2016-02-06',NULL,1),(1434,11,'356','Michel','2016-02-10 16:24:47','','2016-02-10',NULL,1),(1435,11,'357','Michel','2016-02-12 17:50:15','','2016-02-12',NULL,1),(1436,11,'358','Michel','2016-02-25 15:11:58','','2016-02-25',NULL,1),(1437,11,'359','Michel','2016-02-25 15:31:00','','2016-02-25',NULL,1),(1438,27,'38','Michel','2014-02-01 15:18:29','','2014-02-01',NULL,1),(1439,27,'39','Michel','2014-02-01 15:19:11','','2014-02-01',NULL,1),(1440,27,'40','Michel','2014-03-10 17:38:57','','2014-03-10',NULL,1),(1441,27,'41','Michel','2014-03-12 02:59:27','','2014-03-12',NULL,1),(1442,27,'42','Michel','2014-03-12 03:03:37','','2014-03-12',NULL,1),(1443,27,'43','Michel','2014-03-12 10:12:31','','2014-03-12',NULL,1),(1444,27,'44','Michel','2014-03-12 10:13:36','','2014-03-12',NULL,1),(1445,27,'45','Michel','2014-03-12 10:59:13','','2014-03-12',NULL,1),(1446,27,'46','Michel','2014-03-12 11:24:10','','2014-03-12',NULL,1),(1447,27,'47','Michel','2014-03-13 01:41:38','','2014-03-13',NULL,1),(1448,27,'48','Michel','2014-03-13 02:21:16','','2014-03-13',NULL,1),(1449,27,'49','Michel','2014-03-14 01:07:24','','2014-03-14',NULL,1),(1450,27,'50','Michel','2014-03-14 09:23:17','Warm start support','2014-03-14',NULL,1),(1451,27,'51','Michel','2014-03-14 10:27:24','Fix IP Address Formating','2014-03-14',NULL,1),(1452,27,'52','Michel','2014-03-14 14:04:44','','2014-03-14',NULL,1),(1453,27,'53','Michel','2014-03-14 14:44:07','','2014-03-14',NULL,1),(1454,27,'54','Michel','2014-03-14 16:08:17','Support for new conversion','2014-03-14',NULL,1),(1455,27,'55','Michel','2014-03-16 14:19:04','','2014-03-16',NULL,1),(1456,27,'56','Michel','2014-03-19 15:35:21','Native version : Query et init valide','2014-03-19',NULL,1),(1457,27,'57','Michel','2014-03-19 18:50:14','Implementation au travers de OpenOpcUaVpiLibrary\n==> independance de la plateforme\n==> support mode Ethernet','2014-03-19',NULL,1),(1458,27,'58','Michel','2014-03-19 18:54:22','','2014-03-19',NULL,1),(1459,27,'59','Michel','2014-03-19 18:54:32','','2014-03-19',NULL,1),(1460,27,'60','Michel','2014-03-19 18:56:11','','2014-03-19',NULL,1),(1461,27,'61','Michel','2014-03-19 18:56:27','','2014-03-19',NULL,1),(1462,27,'62','Michel','2014-03-19 18:56:44','','2014-03-19',NULL,1),(1463,27,'63','Michel','2014-03-19 18:57:29','','2014-03-19',NULL,1),(1464,27,'64','Michel','2014-03-19 19:53:33','','2014-03-19',NULL,1),(1465,27,'65','Michel','2014-03-19 20:40:48','','2014-03-19',NULL,1),(1466,27,'66','Michel','2014-03-20 09:45:08','','2014-03-20',NULL,1),(1467,27,'67','Michel','2014-03-21 17:53:11','','2014-03-21',NULL,1),(1468,27,'68','Michel','2014-03-21 19:35:45','','2014-03-21',NULL,1),(1469,27,'69','Michel','2014-03-21 20:20:21','','2014-03-21',NULL,1),(1470,27,'70','Michel','2014-03-21 20:22:30','','2014-03-21',NULL,1),(1471,27,'71','Michel','2014-03-22 17:47:17','','2014-03-22',NULL,1),(1472,27,'72','Michel','2014-03-24 23:37:06','','2014-03-24',NULL,1),(1473,27,'73','Michel','2014-03-24 23:37:17','','2014-03-24',NULL,1),(1474,27,'74','Michel','2014-03-24 23:37:34','','2014-03-24',NULL,1),(1475,27,'75','Michel','2014-03-24 23:38:29','','2014-03-24',NULL,1),(1476,27,'76','Michel','2014-03-25 10:22:25','','2014-03-25',NULL,1),(1477,27,'77','Michel','2014-03-25 13:37:27','','2014-03-25',NULL,1),(1478,27,'78','Michel','2014-03-25 14:45:12','','2014-03-25',NULL,1),(1479,27,'79','Michel','2014-03-26 18:23:26','','2014-03-26',NULL,1),(1480,27,'80','Michel','2014-03-26 21:03:39','','2014-03-26',NULL,1),(1481,27,'81','Michel','2014-03-27 10:57:09','','2014-03-27',NULL,1),(1482,27,'82','Michel','2014-03-27 11:10:11','','2014-03-27',NULL,1),(1483,27,'83','Michel','2014-03-27 11:28:04','','2014-03-27',NULL,1),(1484,27,'84','Michel','2014-03-30 14:34:06','','2014-03-30',NULL,1),(1485,27,'85','Michel','2014-10-24 11:31:22','','2014-10-24',NULL,1),(1486,27,'86','Michel','2015-01-06 20:32:43','','2015-01-06',NULL,1),(1487,2,'198','Michel','2016-02-06 23:32:05','Version 1.0.4.0 RC5 - Prerelease on 6 feb 2016','2016-02-06',NULL,1),(1488,2,'199','Michel','2016-02-10 16:24:48','','2016-02-10',NULL,1),(1489,2,'200','Michel','2016-02-12 17:50:17','','2016-02-12',NULL,1),(1490,2,'201','Michel','2016-04-08 09:23:50','','2016-04-08',NULL,1),(1491,2,'202','Michel','2016-04-25 14:27:04','','2016-04-25',NULL,1),(1492,2,'203','Michel','2016-05-16 14:00:35','Version soumise à CTT 14-5-2016','2016-05-16',NULL,1),(1493,2,'204','Michel','2016-05-20 11:47:20','Stable version post CTT.. But this one passs properly the CTT','2016-05-20',NULL,1),(1494,2,'205','Michel','2016-05-31 23:31:43','CTT Version sent to Nathan on may 2016','2016-05-31',NULL,1),(1495,2,'206','Michel','2016-06-06 09:50:39','','2016-06-06',NULL,1),(1496,40,'39','Michel','2015-11-13 07:59:25','','2015-11-13',NULL,1),(1497,40,'40','Michel','2015-11-24 09:28:14','','2015-11-24',NULL,1),(1498,40,'41','Michel','2015-11-24 09:47:11','','2015-11-24',NULL,1),(1499,40,'42','Michel','2015-12-10 17:24:08','1.0.4.0 Beta','2015-12-10',NULL,1),(1500,40,'43','Michel','2015-12-15 17:19:03','','2015-12-15',NULL,1),(1501,40,'44','Michel','2016-02-20 16:33:25','','2016-02-20',NULL,1),(1502,40,'45','Michel','2016-02-25 15:24:28','','2016-02-25',NULL,1),(1503,40,'46','Michel','2016-04-10 19:29:28','','2016-04-10',NULL,1),(1504,40,'47','Michel','2016-04-10 19:29:46','','2016-04-10',NULL,1),(1505,40,'48','Michel','2016-04-25 14:30:07','','2016-04-25',NULL,1),(1506,40,'49','Michel','2016-04-25 14:30:30','','2016-04-25',NULL,1),(1507,40,'50','Michel','2016-04-26 14:25:21','','2016-04-26',NULL,1),(1508,11,'360','Michel','2016-04-08 09:23:48','','2016-04-08',NULL,1),(1509,11,'361','Michel','2016-04-25 14:27:04','','2016-04-25',NULL,1),(1510,11,'362','Michel','2016-05-16 14:00:34','Version soumise à CTT 14-5-2016','2016-05-16',NULL,1),(1511,11,'363','Michel','2016-05-20 11:47:19','Stable version post CTT.. But this one passs properly the CTT','2016-05-20',NULL,1),(1512,11,'364','Michel','2016-05-31 23:31:41','CTT Version sent to Nathan on may 2016','2016-05-31',NULL,1),(1513,11,'365','Michel','2016-06-06 09:50:38','','2016-06-06',NULL,1),(1514,11,'366','Michel','2016-06-21 20:34:07','','2016-06-21',NULL,1),(1515,11,'367','Michel','2016-07-11 14:22:15','','2016-07-11',NULL,1),(1516,11,'368','Michel','2016-08-31 15:17:17','','2016-08-31',NULL,1),(1517,11,'369','Michel','2016-08-31 15:17:35','','2016-08-31',NULL,1),(1518,11,'370','Michel','2016-08-31 17:15:54','','2016-08-31',NULL,1),(1519,11,'371','Michel','2016-09-20 09:35:32','','2016-09-20',NULL,1),(1520,11,'372','Michel','2016-10-03 10:16:55','','2016-10-03',NULL,1),(1521,11,'373','Michel','2016-10-04 10:36:54','','2016-10-04',NULL,1),(1522,11,'374','Michel','2016-10-12 13:47:13','1.0.4.4','2016-10-12',NULL,1),(1523,11,'375','Michel','2016-10-17 16:32:17','','2016-10-17',NULL,1),(1524,11,'376','Michel','2016-11-17 13:56:45','','2016-11-17',NULL,1),(1525,11,'377','Michel','2016-12-12 11:27:51','','2016-12-12',NULL,1),(1526,11,'378','Michel','2016-12-14 19:56:52','','2016-12-14',NULL,1),(1527,11,'379','Michel','2017-01-17 22:29:21','','2017-01-17',NULL,1),(1528,11,'380','Michel','2017-02-17 12:06:28','','2017-02-17',NULL,1),(1529,11,'381','Michel','2017-04-14 09:58:31','','2017-04-14',NULL,1),(1530,11,'382','Michel','2017-07-19 00:50:21','','2017-07-19',NULL,1),(1531,11,'383','Michel','2017-08-10 11:48:23','','2017-08-10',NULL,1),(1532,11,'384','Michel','2017-08-21 09:02:25','','2017-08-21',NULL,1),(1533,11,'385','Michel','2017-08-21 14:23:05','','2017-08-21',NULL,1),(1534,11,'386','Michel','2017-09-14 13:38:34','','2017-09-14',NULL,1),(1535,11,'387','Michel','2017-09-21 21:15:51','','2017-09-21',NULL,1),(1536,13,'93','Michel','2016-07-11 14:22:13','','2016-07-11',NULL,1),(1537,13,'94','Michel','2016-10-12 13:47:14','1.0.4.4','2016-10-12',NULL,1),(1538,13,'95','Michel','2016-11-17 13:56:47','','2016-11-17',NULL,1),(1539,13,'96','Michel','2017-02-17 12:06:27','','2017-02-17',NULL,1),(1540,13,'97','Michel','2017-04-14 09:58:28','','2017-04-14',NULL,1),(1541,13,'98','Michel','2017-07-19 00:50:17','','2017-07-19',NULL,1),(1542,13,'99','Michel','2017-08-21 09:02:26','','2017-08-21',NULL,1),(1543,13,'100','Michel','2017-08-21 14:23:05','','2017-08-21',NULL,1),(1544,2,'207','Michel','2016-08-31 15:17:18','','2016-08-31',NULL,1),(1545,2,'208','Michel','2016-10-03 10:16:56','','2016-10-03',NULL,1),(1546,2,'209','Michel','2016-10-12 13:47:14','1.0.4.4','2016-10-12',NULL,1),(1547,2,'210','Michel','2016-10-17 16:32:18','','2016-10-17',NULL,1),(1548,2,'211','Michel','2016-11-17 13:56:49','','2016-11-17',NULL,1),(1549,2,'212','Michel','2016-12-12 11:27:53','','2016-12-12',NULL,1),(1550,2,'213','Michel','2017-01-17 22:29:24','','2017-01-17',NULL,1),(1551,2,'214','Michel','2017-02-17 12:06:30','','2017-02-17',NULL,1),(1552,2,'215','Michel','2017-04-14 09:58:33','','2017-04-14',NULL,1),(1553,2,'216','Michel','2017-07-19 00:50:24','','2017-07-19',NULL,1),(1554,2,'217','Michel','2017-08-21 09:02:24','','2017-08-21',NULL,1),(1555,2,'218','Michel','2017-08-21 14:23:06','','2017-08-21',NULL,1),(1556,2,'219','Michel','2017-09-14 13:38:38','','2017-09-14',NULL,1),(1557,2,'220','Michel','2017-09-21 21:15:52','','2017-09-21',NULL,1),(1558,12,'222','Michel','2016-01-08 19:29:28','','2016-01-08',NULL,1),(1559,12,'223','Michel','2016-01-18 09:49:00','1.0.4.0 RC3','2016-01-18',NULL,1),(1560,12,'224','Michel','2016-02-06 23:32:05','Version 1.0.4.0 RC5 - Prerelease on 6 feb 2016','2016-02-06',NULL,1),(1561,12,'225','Michel','2016-02-10 16:24:48','','2016-02-10',NULL,1),(1562,12,'226','Michel','2016-02-12 17:50:16','','2016-02-12',NULL,1),(1563,12,'227','Michel','2016-02-25 15:12:20','','2016-02-25',NULL,1),(1564,12,'228','Michel','2016-02-25 15:32:37','','2016-02-25',NULL,1),(1565,12,'229','Michel','2016-04-08 09:23:49','','2016-04-08',NULL,1),(1566,12,'230','Michel','2016-05-20 11:47:20','Stable version post CTT.. But this one passs properly the CTT','2016-05-20',NULL,1),(1567,12,'231','Michel','2016-05-31 23:31:42','CTT Version sent to Nathan on may 2016','2016-05-31',NULL,1),(1568,12,'232','Michel','2016-06-06 09:50:39','','2016-06-06',NULL,1),(1569,12,'233','Michel','2016-06-21 20:34:08','','2016-06-21',NULL,1),(1570,12,'234','Michel','2016-07-11 14:22:15','','2016-07-11',NULL,1),(1571,12,'235','Michel','2016-09-20 09:35:34','','2016-09-20',NULL,1),(1572,12,'236','Michel','2016-10-03 10:16:56','','2016-10-03',NULL,1),(1573,12,'237','Michel','2016-10-12 13:47:15','1.0.4.4','2016-10-12',NULL,1),(1574,12,'238','Michel','2016-10-17 16:32:17','','2016-10-17',NULL,1),(1575,12,'239','Michel','2016-11-17 13:56:46','','2016-11-17',NULL,1),(1576,12,'240','Michel','2016-12-12 11:27:52','','2016-12-12',NULL,1),(1577,12,'241','Michel','2017-01-17 22:29:23','','2017-01-17',NULL,1),(1578,12,'242','Michel','2017-02-17 12:06:29','','2017-02-17',NULL,1),(1579,12,'243','Michel','2017-04-14 09:58:32','','2017-04-14',NULL,1),(1580,12,'244','Michel','2017-07-19 00:50:23','','2017-07-19',NULL,1),(1581,12,'245','Michel','2017-08-10 11:48:25','','2017-08-10',NULL,1),(1582,12,'246','Michel','2017-08-21 09:02:25','','2017-08-21',NULL,1),(1583,12,'247','Michel','2017-08-21 14:23:06','','2017-08-21',NULL,1),(1584,12,'248','Michel','2017-09-14 13:38:36','','2017-09-14',NULL,1),(1585,12,'249','Michel','2017-09-21 21:15:51','','2017-09-21',NULL,1),(1586,11,'388','Michel','2017-09-29 18:24:49','','2017-09-29',NULL,1),(1587,40,'51','Michel','2016-07-22 11:45:18','','2016-07-22',NULL,1),(1588,40,'52','Michel','2016-09-15 19:48:38','VpiCooperl Beta 1','2016-09-15',NULL,1),(1589,40,'53','Michel','2016-09-16 14:43:50','Version 1.0.0.2 with write support and clean stop','2016-09-16',NULL,1),(1590,40,'54','Michel','2016-09-18 17:24:07','','2016-09-18',NULL,1),(1591,40,'55','Michel','2016-09-18 17:24:35','','2016-09-18',NULL,1),(1592,40,'56','Michel','2016-09-18 17:48:19','','2016-09-18',NULL,1),(1593,40,'57','Michel','2016-09-22 16:50:08','','2016-09-22',NULL,1),(1594,40,'58','Michel','2016-10-09 15:08:02','','2016-10-09',NULL,1),(1595,40,'59','Michel','2016-10-09 15:08:16','','2016-10-09',NULL,1),(1596,40,'60','Michel','2016-10-12 13:27:43','','2016-10-12',NULL,1),(1597,40,'61','Michel','2016-10-12 22:03:03','','2016-10-12',NULL,1),(1598,40,'62','Michel','2016-10-17 10:07:52','','2016-10-17',NULL,1),(1599,40,'63','Michel','2016-10-17 16:31:45','','2016-10-17',NULL,1),(1600,40,'64','Michel','2016-10-28 09:30:59','','2016-10-28',NULL,1),(1601,40,'65','Michel','2016-10-28 09:31:08','','2016-10-28',NULL,1),(1602,40,'66','Michel','2016-11-03 11:00:37','','2016-11-03',NULL,1),(1603,40,'67','Michel','2016-11-07 03:12:13','Version beta 1- Livrée','2016-11-07',NULL,1),(1604,40,'68','Michel','2016-11-07 16:42:05','','2016-11-07',NULL,1),(1605,40,'69','Michel','2016-11-17 13:56:47','','2016-11-17',NULL,1),(1606,40,'70','Michel','2016-11-28 09:03:00','','2016-11-28',NULL,1),(1607,40,'71','Michel','2016-12-02 16:40:34','','2016-12-02',NULL,1),(1608,40,'72','Michel','2016-12-12 11:28:14','','2016-12-12',NULL,1),(1609,40,'73','Michel','2016-12-14 19:56:14','','2016-12-14',NULL,1),(1610,40,'74','Michel','2016-12-16 18:05:23','','2016-12-16',NULL,1),(1611,40,'75','Michel','2016-12-16 18:05:34','','2016-12-16',NULL,1),(1612,40,'76','Michel','2017-01-14 11:58:27','','2017-01-14',NULL,1),(1613,40,'77','Michel','2017-01-17 22:28:58','','2017-01-17',NULL,1),(1614,40,'78','Michel','2017-02-16 22:48:22','','2017-02-16',NULL,1),(1615,40,'79','Michel','2017-02-17 00:27:12','','2017-02-17',NULL,1),(1616,40,'80','Michel','2017-02-17 12:06:31','','2017-02-17',NULL,1),(1617,40,'81','Michel','2017-02-17 15:46:29','','2017-02-17',NULL,1),(1618,40,'82','Michel','2017-02-24 08:04:50','','2017-02-24',NULL,1),(1619,40,'83','Michel','2017-03-03 19:44:13','','2017-03-03',NULL,1),(1620,40,'84','Michel','2017-03-07 18:45:26','','2017-03-07',NULL,1),(1621,40,'85','Michel','2017-04-12 08:40:09','','2017-04-12',NULL,1),(1622,40,'86','Michel','2017-04-12 12:58:49','','2017-04-12',NULL,1),(1623,40,'87','Michel','2017-04-14 09:57:24','','2017-04-14',NULL,1),(1624,40,'88','Michel','2017-04-14 09:58:27','','2017-04-14',NULL,1),(1625,40,'89','Michel','2017-06-07 16:48:26','','2017-06-07',NULL,1),(1626,40,'90','Michel','2017-06-13 11:53:02','','2017-06-13',NULL,1),(1627,40,'91','Michel','2017-06-14 18:13:00','','2017-06-14',NULL,1),(1628,40,'92','Michel','2017-06-17 22:19:10','','2017-06-17',NULL,1),(1629,40,'93','Michel','2017-07-19 00:50:40','','2017-07-19',NULL,1),(1630,40,'94','Michel','2017-07-20 23:09:36','','2017-07-20',NULL,1),(1631,40,'95','Michel','2017-08-31 22:11:48','','2017-08-31',NULL,1),(1632,40,'96','Michel','2017-09-13 20:16:02','','2017-09-13',NULL,1),(1633,40,'97','Michel','2017-09-14 13:38:14','','2017-09-14',NULL,1),(1634,40,'98','Michel','2017-09-21 21:15:37','','2017-09-21',NULL,1),(1635,40,'99','Michel','2017-09-24 18:25:52','','2017-09-24',NULL,1),(1636,40,'100','Michel','2017-09-25 00:00:27','','2017-09-25',NULL,1),(1637,40,'101','Michel','2017-09-29 18:00:19','','2017-09-29',NULL,1),(1638,20,'22','Michel','2014-01-10 11:20:16','','2014-01-10',NULL,1),(1639,20,'23','Michel','2014-02-01 13:35:48','','2014-02-01',NULL,1),(1640,20,'24','Michel','2014-02-01 13:36:22','','2014-02-01',NULL,1),(1641,20,'25','Michel','2014-02-01 13:36:47','','2014-02-01',NULL,1),(1642,20,'26','Michel','2014-02-01 13:37:58','','2014-02-01',NULL,1),(1643,20,'27','Michel','2014-02-01 13:40:10','','2014-02-01',NULL,1),(1644,20,'28','Michel','2014-03-06 12:19:51','','2014-03-06',NULL,1),(1645,20,'29','Michel','2014-03-06 13:39:12','','2014-03-06',NULL,1),(1646,20,'30','Michel','2014-03-06 14:37:45','Harmonisation des sources... Mutex, namespace, etc','2014-03-06',NULL,1),(1647,20,'31','Michel','2014-03-08 13:17:16','Ajout du support de la lecture de chaine, de bit et de float. Il s\'agit une version prelimainaire a finaliser','2014-03-08',NULL,1),(1648,20,'32','Michel','2014-03-12 10:53:01','','2014-03-12',NULL,1),(1649,20,'33','Michel','2014-03-30 15:42:44','','2014-03-30',NULL,1),(1650,20,'34','Michel','2014-03-30 15:44:18','','2014-03-30',NULL,1),(1651,20,'35','Michel','2014-04-12 12:07:24','','2014-04-12',NULL,1),(1652,20,'36','Michel','2014-05-01 14:28:58','','2014-05-01',NULL,1),(1653,20,'37','Michel','2014-09-03 13:39:40','','2014-09-03',NULL,1),(1654,20,'38','Michel','2014-09-03 13:40:01','','2014-09-03',NULL,1),(1655,20,'39','Michel','2014-10-24 11:23:00','','2014-10-24',NULL,1),(1656,20,'40','Michel','2014-10-24 21:02:23','','2014-10-24',NULL,1),(1657,20,'41','Michel','2015-01-06 20:33:07','','2015-01-06',NULL,1),(1658,20,'42','Michel','2015-01-28 21:21:53','','2015-01-28',NULL,1),(1659,20,'43','Michel','2016-02-09 23:36:33','New version wit automatic block support','2016-02-09',NULL,1),(1660,20,'44','Michel','2016-06-21 20:34:32','','2016-06-21',NULL,1),(1661,20,'45','Michel','2016-07-11 14:26:04','','2016-07-11',NULL,1),(1662,20,'46','Michel','2016-07-22 11:45:39','','2016-07-22',NULL,1),(1663,20,'47','Michel','2016-10-12 13:47:54','1.0.0.6','2016-10-12',NULL,1),(1664,20,'48','Michel','2016-10-28 16:22:50','','2016-10-28',NULL,1),(1665,20,'49','Michel','2016-11-28 09:02:43','','2016-11-28',NULL,1),(1666,20,'50','Michel','2016-11-28 16:46:43','','2016-11-28',NULL,1),(1667,20,'51','Michel','2017-02-16 09:55:54','','2017-02-16',NULL,1),(1668,20,'52','Michel','2017-03-07 18:45:48','','2017-03-07',NULL,1),(1669,20,'53','Michel','2017-04-14 17:45:41','','2017-04-14',NULL,1),(1670,20,'54','Michel','2017-05-22 17:17:15','','2017-05-22',NULL,1),(1671,20,'55','Michel','2017-06-15 23:38:15','','2017-06-15',NULL,1),(1672,20,'56','Michel','2017-08-11 00:05:00','','2017-08-11',NULL,1),(1673,20,'57','Michel','2017-09-12 12:09:01','','2017-09-12',NULL,1),(1674,20,'58','Michel','2017-09-22 17:07:18','','2017-09-22',NULL,1),(1675,40,'102','Michel','2017-09-29 18:34:21','','2017-09-29',NULL,1),(1676,11,'389','Michel','2017-11-02 10:16:55','','2017-11-02',NULL,1),(1677,11,'390','Michel','2017-11-10 00:15:41','','2017-11-10',NULL,1),(1678,11,'391','Michel','2017-11-29 15:37:49','','2017-11-29',NULL,1),(1679,11,'392','Michel','2017-12-03 08:51:07','','2017-12-03',NULL,1),(1680,11,'393','Michel','2018-01-04 14:11:29','','2018-01-04',NULL,1),(1681,11,'394','Michel','2018-01-22 00:19:03','','2018-01-22',NULL,1),(1682,11,'395','Michel','2018-01-24 21:03:02','','2018-01-24',NULL,1),(1683,11,'396','Michel','2018-03-04 17:56:38','','2018-03-04',NULL,1),(1684,11,'397','Michel','2018-03-26 20:29:19','','2018-03-26',NULL,1),(1685,11,'398','Michel','2018-04-16 20:34:23','','2018-04-16',NULL,1),(1686,11,'399','Michel','2018-04-27 13:46:28','','2018-04-27',NULL,1),(1687,11,'400','Michel','2018-05-13 11:16:27','','2018-05-13',NULL,1),(1688,11,'401','Michel','2018-05-19 11:50:49','','2018-05-19',NULL,1),(1689,40,'103','Michel','2017-10-02 09:01:09','','2017-10-02',NULL,1),(1690,40,'104','Michel','2017-10-12 18:24:00','','2017-10-12',NULL,1),(1691,40,'105','Michel','2017-11-07 22:04:07','','2017-11-07',NULL,1),(1692,40,'106','Michel','2017-11-10 00:15:21','','2017-11-10',NULL,1),(1693,40,'107','Michel','2017-11-10 00:15:39','','2017-11-10',NULL,1),(1694,40,'108','Michel','2017-11-15 17:59:07','','2017-11-15',NULL,1),(1695,40,'109','Michel','2017-11-16 09:37:49','','2017-11-16',NULL,1),(1696,40,'110','Michel','2017-11-19 20:40:28','','2017-11-19',NULL,1),(1697,40,'111','Michel','2017-11-27 22:47:08','','2017-11-27',NULL,1),(1698,40,'112','Michel','2017-11-29 13:46:03','','2017-11-29',NULL,1),(1699,40,'113','Michel','2017-11-29 14:54:28','','2017-11-29',NULL,1),(1700,40,'114','Michel','2017-11-29 14:54:43','','2017-11-29',NULL,1),(1701,40,'115','Michel','2017-11-29 15:37:21','','2017-11-29',NULL,1),(1702,40,'116','Michel','2017-12-03 08:50:21','','2017-12-03',NULL,1),(1703,40,'117','Michel','2018-01-03 15:15:19','','2018-01-03',NULL,1),(1704,40,'118','Michel','2018-01-18 23:57:05','','2018-01-18',NULL,1),(1705,40,'119','Michel','2018-01-21 14:46:33','','2018-01-21',NULL,1),(1706,40,'120','Michel','2018-01-22 00:19:25','','2018-01-22',NULL,1),(1707,40,'121','Michel','2018-01-22 21:37:08','','2018-01-22',NULL,1),(1708,40,'122','Michel','2018-01-29 01:28:29','','2018-01-29',NULL,1),(1709,40,'123','Michel','2018-02-01 21:08:21','','2018-02-01',NULL,1),(1710,40,'124','Michel','2018-02-09 10:22:06','','2018-02-09',NULL,1),(1711,40,'125','Michel','2018-03-04 19:18:31','','2018-03-04',NULL,1),(1712,40,'126','Michel','2018-03-26 20:29:51','','2018-03-26',NULL,1),(1713,40,'127','Michel','2018-03-26 20:32:45','','2018-03-26',NULL,1),(1714,40,'128','Michel','2018-03-26 20:33:18','','2018-03-26',NULL,1),(1715,40,'129','Michel','2018-04-16 20:34:04','','2018-04-16',NULL,1),(1716,40,'130','Michel','2018-04-16 20:34:20','','2018-04-16',NULL,1),(1717,40,'131','Michel','2018-04-22 20:58:11','0.0.7.9','2018-04-22',NULL,1),(1718,40,'132','Michel','2018-04-24 16:04:36','','2018-04-24',NULL,1),(1719,40,'133','Michel','2018-04-24 16:57:30','','2018-04-24',NULL,1),(1720,40,'134','Michel','2018-04-24 19:55:33','','2018-04-24',NULL,1),(1721,40,'135','Michel','2018-04-24 21:01:16','','2018-04-24',NULL,1),(1722,40,'136','Michel','2018-04-24 21:05:24','','2018-04-24',NULL,1),(1723,40,'137','Michel','2018-04-27 13:37:54','','2018-04-27',NULL,1),(1724,40,'138','Michel','2018-05-02 15:12:19','','2018-05-02',NULL,1),(1725,40,'139','Michel','2018-05-08 16:46:19','','2018-05-08',NULL,1),(1726,40,'140','Michel','2018-05-09 09:53:45','','2018-05-09',NULL,1),(1727,40,'141','Michel','2018-05-13 11:16:45','','2018-05-13',NULL,1),(1728,40,'142','Michel','2018-05-19 11:51:45','','2018-05-19',NULL,1),(1729,40,'143','Michel','2018-05-28 20:44:29','','2018-05-28',NULL,1),(1730,40,'144','Michel','2018-07-01 21:23:10','','2018-07-01',NULL,1),(1731,40,'145','Michel','2018-07-03 15:02:16','','2018-07-03',NULL,1),(1732,40,'146','Michel','2018-07-03 16:16:05','','2018-07-03',NULL,1),(1733,40,'147','Michel','2018-07-04 00:34:37','','2018-07-04',NULL,1),(1734,40,'148','Michel','2018-07-06 13:50:58','','2018-07-06',NULL,1),(1735,40,'149','Michel','2018-07-06 16:25:04','','2018-07-06',NULL,1),(1736,40,'150','Michel','2018-07-20 10:04:15','','2018-07-20',NULL,1),(1737,40,'151','Michel','2018-07-20 14:02:05','','2018-07-20',NULL,1),(1738,40,'152','Michel','2018-07-26 12:41:10','','2018-07-26',NULL,1),(1739,40,'153','Michel','2018-08-02 19:41:22','','2018-08-02',NULL,1),(1740,40,'154','Michel','2018-08-09 13:59:26','','2018-08-09',NULL,1),(1741,40,'155','Michel','2018-08-09 13:59:50','','2018-08-09',NULL,1),(1742,40,'156','Michel','2018-08-09 16:52:04','','2018-08-09',NULL,1),(1743,40,'157','Michel','2018-08-11 01:47:19','','2018-08-11',NULL,1),(1744,40,'158','Michel','2018-08-27 10:27:52','','2018-08-27',NULL,1),(1745,40,'159','Michel','2018-09-12 13:42:16','','2018-09-12',NULL,1),(1746,40,'160','Michel','2018-09-17 14:15:21','','2018-09-17',NULL,1),(1747,40,'161','Michel','2018-09-19 17:55:47','','2018-09-19',NULL,1),(1748,40,'162','Michel','2018-10-12 17:39:53','','2018-10-12',NULL,1),(1749,40,'163','Michel','2018-10-14 13:02:12','','2018-10-14',NULL,1),(1750,40,'164','Michel','2018-10-17 17:22:41','','2018-10-17',NULL,1),(1751,40,'165','Michel','2018-10-17 17:23:36','','2018-10-17',NULL,1),(1752,40,'166','Michel','2018-10-17 17:48:07','','2018-10-17',NULL,1),(1753,40,'167','Michel','2018-10-28 13:17:41','','2018-10-28',NULL,1),(1754,40,'168','Michel','2018-11-04 10:51:28','','2018-11-04',NULL,1),(1755,40,'169','Michel','2018-11-04 11:23:21','','2018-11-04',NULL,1),(1756,40,'170','Michel','2018-11-04 11:23:32','','2018-11-04',NULL,1),(1757,40,'171','Michel','2018-11-04 11:23:53','','2018-11-04',NULL,1),(1758,40,'172','Michel','2018-11-11 02:23:48','','2018-11-11',NULL,1),(1759,40,'173','Michel','2018-11-14 01:26:21','','2018-11-14',NULL,1),(1760,40,'174','Michel','2018-11-16 21:25:44','','2018-11-16',NULL,1),(1761,40,'175','Michel','2018-11-16 22:57:10','','2018-11-16',NULL,1),(1762,40,'176','Michel','2018-11-16 22:57:17','','2018-11-16',NULL,1),(1763,40,'177','Michel','2018-11-27 19:42:22','','2018-11-27',NULL,1),(1764,40,'178','Michel','2018-11-27 22:15:09','','2018-11-27',NULL,1),(1765,11,'402','Michel','2018-07-20 14:28:27','','2018-07-20',NULL,1),(1766,11,'403','Michel','2018-08-09 13:59:53','','2018-08-09',NULL,1),(1767,11,'404','Michel','2018-08-31 15:49:44','','2018-08-31',NULL,1),(1768,11,'405','Michel','2018-09-13 11:39:52','','2018-09-13',NULL,1),(1769,11,'406','Michel','2018-10-12 17:40:14','','2018-10-12',NULL,1),(1770,11,'407','Michel','2018-10-17 17:23:10','','2018-10-17',NULL,1),(1771,11,'408','Michel','2018-10-28 13:18:21','','2018-10-28',NULL,1),(1772,11,'409','Michel','2018-11-04 10:51:17','','2018-11-04',NULL,1),(1773,11,'410','Michel','2018-11-11 02:24:09','','2018-11-11',NULL,1),(1774,11,'411','Michel','2018-11-16 22:56:44','','2018-11-16',NULL,1),(1775,11,'412','Michel','2018-11-27 22:18:09','','2018-11-27',NULL,1),(1776,2,'221','Michel','2017-11-02 10:17:01','','2017-11-02',NULL,1),(1777,2,'222','Michel','2017-11-10 00:15:42','','2017-11-10',NULL,1),(1778,2,'223','Michel','2017-12-03 08:51:08','','2017-12-03',NULL,1),(1779,2,'224','Michel','2018-01-04 14:11:31','','2018-01-04',NULL,1),(1780,2,'225','Michel','2018-01-22 00:19:05','','2018-01-22',NULL,1),(1781,2,'226','Michel','2018-03-04 17:56:39','','2018-03-04',NULL,1),(1782,2,'227','Michel','2018-03-26 20:29:20','','2018-03-26',NULL,1),(1783,2,'228','Michel','2018-04-16 20:34:26','','2018-04-16',NULL,1),(1784,2,'229','Michel','2018-07-20 14:28:28','','2018-07-20',NULL,1),(1785,2,'230','Michel','2018-08-09 13:59:55','','2018-08-09',NULL,1),(1786,2,'231','Michel','2018-08-31 15:49:45','','2018-08-31',NULL,1),(1787,2,'232','Michel','2018-10-12 17:40:15','','2018-10-12',NULL,1),(1788,2,'233','Michel','2018-10-28 13:18:21','','2018-10-28',NULL,1),(1789,2,'234','Michel','2018-11-04 10:51:15','','2018-11-04',NULL,1),(1790,2,'235','Michel','2018-11-11 02:24:10','','2018-11-11',NULL,1),(1791,2,'236','Michel','2018-11-16 22:56:46','','2018-11-16',NULL,1),(1792,11,'413','Michel','2018-11-29 17:56:41','','2018-11-29',NULL,1),(1793,11,'414','Michel','2018-12-02 16:52:16','','2018-12-02',NULL,1),(1794,11,'415','Michel','2018-12-02 17:10:28','','2018-12-02',NULL,1),(1795,11,'416','Michel','2018-12-05 09:53:07','','2018-12-05',NULL,1),(1796,11,'417','Michel','2018-12-10 12:13:19','','2018-12-10',NULL,1),(1797,11,'418','Michel','2018-12-10 16:40:30','','2018-12-10',NULL,1),(1798,11,'419','Michel','2018-12-16 19:35:59','1.0.5.6RC06','2018-12-16',NULL,1),(1799,11,'420','Michel','2018-12-26 20:02:05','','2018-12-26',NULL,1),(1800,11,'421','Michel','2019-01-06 19:24:31','','2019-01-06',NULL,1),(1801,11,'422','Michel','2019-02-03 11:06:07','','2019-02-03',NULL,1),(1802,11,'423','Michel','2019-02-20 14:50:50','','2019-02-20',NULL,1),(1803,11,'424','Michel','2019-02-26 20:53:00','','2019-02-26',NULL,1),(1804,11,'425','Michel','2019-03-30 17:49:18','','2019-03-30',NULL,1),(1805,11,'426','Michel','2019-04-15 15:32:17','','2019-04-15',NULL,1),(1806,11,'427','Michel','2019-06-07 15:08:04','','2019-06-07',NULL,1),(1807,11,'428','Michel','2019-06-15 17:25:20','','2019-06-15',NULL,1),(1808,11,'429','Michel','2019-06-27 14:24:04','','2019-06-27',NULL,1),(1809,11,'430','Michel','2019-06-28 10:37:38','','2019-06-28',NULL,1),(1810,11,'431','Michel','2019-08-28 19:21:44','','2019-08-28',NULL,1),(1811,11,'432','Michel','2019-09-10 19:26:49','','2019-09-10',NULL,1),(1812,11,'433','Michel','2019-09-14 22:03:49','','2019-09-14',NULL,1),(1813,11,'434','Michel','2019-10-02 07:05:17','','2019-10-02',NULL,1),(1814,40,'179','Michel','2018-11-28 23:01:59','','2018-11-28',NULL,1),(1815,40,'180','Michel','2018-12-02 16:52:51','','2018-12-02',NULL,1),(1816,40,'181','Michel','2018-12-10 12:13:45','','2018-12-10',NULL,1),(1817,40,'182','Michel','2018-12-10 16:40:38','','2018-12-10',NULL,1),(1818,40,'183','Michel','2018-12-17 07:18:55','','2018-12-17',NULL,1),(1819,40,'184','Michel','2018-12-17 07:20:23','','2018-12-17',NULL,1),(1820,40,'185','Michel','2018-12-18 15:41:38','','2018-12-18',NULL,1),(1821,40,'186','Michel','2018-12-26 20:02:10','','2018-12-26',NULL,1),(1822,40,'187','Michel','2019-01-06 19:24:35','','2019-01-06',NULL,1),(1823,40,'188','Michel','2019-01-16 15:51:24','','2019-01-16',NULL,1),(1824,40,'189','Michel','2019-02-11 15:35:20','','2019-02-11',NULL,1),(1825,40,'190','Michel','2019-02-20 14:52:27','','2019-02-20',NULL,1),(1826,40,'191','Michel','2019-02-26 20:52:45','','2019-02-26',NULL,1),(1827,40,'192','Michel','2019-02-26 20:53:37','','2019-02-26',NULL,1),(1828,40,'193','Michel','2019-03-03 16:58:10','','2019-03-03',NULL,1),(1829,40,'194','Michel','2019-03-14 15:51:17','','2019-03-14',NULL,1),(1830,40,'195','Michel','2019-04-22 11:41:53','','2019-04-22',NULL,1),(1831,40,'196','Michel','2019-04-29 13:46:53','','2019-04-29',NULL,1),(1832,40,'197','Michel','2019-04-29 13:47:14','','2019-04-29',NULL,1),(1833,40,'198','Michel','2019-05-02 11:31:16','','2019-05-02',NULL,1),(1834,40,'199','Michel','2019-05-02 19:42:57','','2019-05-02',NULL,1),(1835,40,'200','Michel','2019-05-03 12:07:46','','2019-05-03',NULL,1),(1836,40,'201','Michel','2019-05-03 15:19:58','','2019-05-03',NULL,1),(1837,40,'202','Michel','2019-05-09 11:06:41','','2019-05-09',NULL,1),(1838,40,'203','Michel','2019-05-09 18:00:29','','2019-05-09',NULL,1),(1839,40,'204','Michel','2019-05-09 18:00:41','','2019-05-09',NULL,1),(1840,40,'205','Michel','2019-05-14 11:43:16','','2019-05-14',NULL,1),(1841,40,'206','Michel','2019-06-07 16:56:44','','2019-06-07',NULL,1),(1842,40,'207','Michel','2019-07-31 17:08:38','','2019-07-31',NULL,1),(1843,40,'208','Michel','2019-09-05 11:30:38','','2019-09-05',NULL,1),(1844,40,'209','Michel','2019-09-05 11:31:40','','2019-09-05',NULL,1),(1845,40,'210','Michel','2019-09-06 16:51:44','','2019-09-06',NULL,1),(1846,40,'211','Michel','2019-09-14 22:04:10','','2019-09-14',NULL,1),(1847,40,'212','Michel','2019-11-04 19:50:16','','2019-11-04',NULL,1),(1848,40,'213','Michel','2019-11-07 08:02:58','','2019-11-07',NULL,1),(1849,40,'214','Michel','2020-01-10 17:10:41','','2020-01-10',NULL,1),(1850,40,'215','Michel','2020-02-14 13:37:21','','2020-02-14',NULL,1),(1851,40,'216','Michel','2020-02-14 13:38:03','','2020-02-14',NULL,1),(1852,40,'217','Michel','2020-02-18 01:25:22','','2020-02-18',NULL,1),(1853,40,'218','Michel','2020-02-19 10:58:49','','2020-02-19',NULL,1),(1854,40,'219','Michel','2020-02-20 23:09:48','','2020-02-20',NULL,1),(1855,40,'220','Michel','2020-02-21 09:16:55','','2020-02-21',NULL,1),(1856,11,'435','Michel','2019-11-05 22:41:10','','2019-11-05',NULL,1),(1857,11,'436','Michel','2019-11-07 08:02:46','','2019-11-07',NULL,1),(1858,11,'437','Michel','2020-02-14 13:37:26','','2020-02-14',NULL,1),(1859,11,'438','Michel','2020-03-22 21:41:25','','2020-03-22',NULL,1),(1860,11,'439','Michel','2020-04-29 10:43:10','','2020-04-29',NULL,1),(1861,11,'440','Michel','2020-05-19 08:25:22','','2020-05-19',NULL,1),(1862,39,'6','Michel','2014-04-24 16:47:27','','2014-04-24',NULL,1),(1863,39,'7','Michel','2014-04-24 16:47:50','','2014-04-24',NULL,1),(1864,39,'8','Michel','2014-10-30 14:55:42','','2014-10-30',NULL,1),(1865,39,'9','Michel','2015-03-03 16:50:13','','2015-03-03',NULL,1),(1866,39,'10','Michel','2015-08-07 12:25:54','','2015-08-07',NULL,1),(1867,39,'11','Michel','2016-02-25 15:26:42','','2016-02-25',NULL,1),(1868,39,'12','Michel','2017-01-05 15:43:23','','2017-01-05',NULL,1),(1869,39,'13','Michel','2017-01-09 17:01:35','','2017-01-09',NULL,1),(1870,39,'14','Michel','2017-01-17 22:28:35','','2017-01-17',NULL,1),(1871,39,'15','Michel','2017-02-05 13:28:46','','2017-02-05',NULL,1),(1872,39,'16','Michel','2017-02-20 17:04:40','','2017-02-20',NULL,1),(1873,39,'17','Michel','2017-02-20 21:48:42','','2017-02-20',NULL,1),(1874,39,'18','Michel','2017-04-14 17:52:22','','2017-04-14',NULL,1),(1875,39,'19','Michel','2017-04-23 16:11:50','','2017-04-23',NULL,1),(1876,39,'20','Michel','2017-07-19 00:49:56','','2017-07-19',NULL,1),(1877,39,'21','Michel','2017-11-29 15:37:31','','2017-11-29',NULL,1),(1878,39,'22','Michel','2017-12-31 10:05:19','','2017-12-31',NULL,1),(1879,39,'23','Michel','2018-01-15 19:54:20','','2018-01-15',NULL,1),(1880,39,'24','Michel','2018-12-07 09:50:54','','2018-12-07',NULL,1),(1881,39,'25','Michel','2019-02-17 08:20:10','','2019-02-17',NULL,1),(1882,39,'26','Michel','2019-03-30 17:49:47','','2019-03-30',NULL,1),(1883,22,'100','Michel','2014-03-21 19:36:25','','2014-03-21',NULL,1),(1884,22,'101','Michel','2014-04-14 23:52:01','','2014-04-14',NULL,1),(1885,22,'102','Michel','2014-04-25 10:32:23','','2014-04-25',NULL,1),(1886,22,'103','Michel','2014-10-23 09:41:33','','2014-10-23',NULL,1),(1887,22,'104','Michel','2014-10-30 14:55:55','','2014-10-30',NULL,1),(1888,22,'105','Michel','2014-11-05 21:03:10','','2014-11-05',NULL,1),(1889,22,'106','Michel','2014-11-16 21:29:13','','2014-11-16',NULL,1),(1890,22,'107','Michel','2014-11-20 14:01:10','','2014-11-20',NULL,1),(1891,22,'108','Michel','2014-12-04 06:44:21','','2014-12-04',NULL,1),(1892,22,'109','Michel','2015-02-12 09:53:57','','2015-02-12',NULL,1),(1893,22,'110','Michel','2015-03-09 18:38:58','','2015-03-09',NULL,1),(1894,22,'111','Michel','2015-04-12 17:32:50','New functions and minor bug fix','2015-04-12',NULL,1),(1895,22,'112','Michel','2015-06-19 18:04:48','','2015-06-19',NULL,1),(1896,22,'113','Michel','2015-07-29 16:41:42','','2015-07-29',NULL,1),(1897,22,'114','Michel','2015-10-01 15:04:05','Change in the code to handle properly session close','2015-10-01',NULL,1),(1898,22,'115','Michel','2015-10-16 21:20:16','Limitation of the Publish send to the server\nOnly one publish in the queue at the same time for a session\nIf is made in the thread PublishingThread\nThe idea is to send a publish only if if (pSessionClient->GetPendingPublish()==0)\nThis can works but need to be validate by customer. So we are waiting for more feedback','2015-10-16',NULL,1),(1899,22,'116','Michel','2015-12-10 17:23:37','1.0.4.0 Beta','2015-12-10',NULL,1),(1900,22,'117','Michel','2016-01-08 19:29:10','','2016-01-08',NULL,1),(1901,22,'118','Michel','2016-01-18 09:49:15','1.0.4.0 RC3','2016-01-18',NULL,1),(1902,22,'119','Michel','2016-02-25 15:08:15','','2016-02-25',NULL,1),(1903,22,'120','Michel','2016-10-17 16:32:02','','2016-10-17',NULL,1),(1904,22,'121','Michel','2017-01-05 15:43:34','','2017-01-05',NULL,1),(1905,22,'122','Michel','2017-02-05 13:28:36','','2017-02-05',NULL,1),(1906,22,'123','Michel','2017-02-15 10:32:27','','2017-02-15',NULL,1),(1907,22,'124','Michel','2017-02-20 21:48:48','','2017-02-20',NULL,1),(1908,22,'125','Michel','2017-04-23 16:12:32','','2017-04-23',NULL,1),(1909,22,'126','Michel','2017-07-19 00:49:47','','2017-07-19',NULL,1),(1910,22,'127','Michel','2017-09-21 21:16:06','','2017-09-21',NULL,1),(1911,22,'128','Michel','2017-09-29 18:00:34','','2017-09-29',NULL,1),(1912,22,'129','Michel','2017-11-10 00:15:26','','2017-11-10',NULL,1),(1913,22,'130','Michel','2017-11-29 15:38:34','','2017-11-29',NULL,1),(1914,22,'131','Michel','2017-12-03 08:50:30','','2017-12-03',NULL,1),(1915,22,'132','Michel','2017-12-31 10:05:11','','2017-12-31',NULL,1),(1916,22,'133','Michel','2018-01-05 17:03:35','','2018-01-05',NULL,1),(1917,22,'134','Michel','2018-01-22 00:19:18','','2018-01-22',NULL,1),(1918,22,'135','Michel','2018-02-09 10:22:18','','2018-02-09',NULL,1),(1919,22,'136','Michel','2018-03-04 19:17:06','','2018-03-04',NULL,1),(1920,22,'137','Michel','2018-03-04 20:49:43','','2018-03-04',NULL,1),(1921,22,'138','Michel','2018-03-26 20:30:05','','2018-03-26',NULL,1),(1922,22,'139','Michel','2018-04-24 19:55:26','','2018-04-24',NULL,1),(1923,22,'140','Michel','2018-05-04 15:19:09','','2018-05-04',NULL,1),(1924,22,'141','Michel','2018-08-09 14:00:14','','2018-08-09',NULL,1),(1925,22,'142','Michel','2018-08-09 17:10:55','','2018-08-09',NULL,1),(1926,22,'143','Michel','2018-09-12 13:42:05','','2018-09-12',NULL,1),(1927,22,'144','Michel','2018-10-17 17:22:52','','2018-10-17',NULL,1),(1928,22,'145','Michel','2018-10-22 22:33:36','','2018-10-22',NULL,1),(1929,22,'146','Michel','2018-11-04 11:23:40','','2018-11-04',NULL,1),(1930,22,'147','Michel','2018-11-11 02:24:33','','2018-11-11',NULL,1),(1931,22,'148','Michel','2018-12-10 12:13:29','','2018-12-10',NULL,1),(1932,22,'149','Michel','2019-01-18 08:03:43','','2019-01-18',NULL,1),(1933,22,'150','Michel','2019-02-03 15:12:11','','2019-02-03',NULL,1),(1934,22,'151','Michel','2019-02-20 14:51:10','','2019-02-20',NULL,1),(1935,22,'152','Michel','2019-02-20 14:52:00','','2019-02-20',NULL,1),(1936,22,'153','Michel','2019-09-05 11:24:59','','2019-09-05',NULL,1),(1937,22,'154','Michel','2020-05-28 15:00:33','','2020-05-28',NULL,1),(1938,22,'155','Michel','2020-05-28 16:39:07','','2020-05-28',NULL,1),(1939,22,'156','Michel','2020-05-28 16:41:21','','2020-05-28',NULL,1),(1940,22,'157','Michel','2020-05-28 16:44:27','','2020-05-28',NULL,1),(1941,22,'158','Michel','2020-05-28 16:45:36','','2020-05-28',NULL,1),(1942,22,'159','Michel','2020-05-28 16:46:56','','2020-05-28',NULL,1),(1943,22,'160','Michel','2020-05-28 16:51:59','','2020-05-28',NULL,1),(1944,22,'161','Michel','2020-05-28 16:53:23','','2020-05-28',NULL,1),(1945,22,'162','Michel','2020-05-28 16:56:29','','2020-05-28',NULL,1),(1946,39,'27','Michel','2020-05-28 17:31:52','','2020-05-28',NULL,1),(1947,39,'28','Michel','2020-05-28 20:10:56','','2020-05-28',NULL,1),(1948,39,'29','Michel','2020-05-28 20:11:21','','2020-05-28',NULL,1),(1949,39,'30','Michel','2020-06-24 18:30:14','','2020-06-24',NULL,1),(1950,40,'221','Michel','2020-03-23 10:40:19','','2020-03-23',NULL,1),(1951,40,'222','Michel','2020-03-29 22:16:09','','2020-03-29',NULL,1),(1952,40,'223','Michel','2020-04-06 08:59:34','','2020-04-06',NULL,1),(1953,40,'224','Michel','2020-04-14 15:23:17','','2020-04-14',NULL,1),(1954,40,'225','Michel','2020-04-29 10:42:51','','2020-04-29',NULL,1),(1955,40,'226','Michel','2020-05-08 15:08:39','','2020-05-08',NULL,1),(1956,40,'227','Michel','2020-05-08 16:31:09','','2020-05-08',NULL,1),(1957,40,'228','Michel','2020-05-08 16:31:17','','2020-05-08',NULL,1),(1958,40,'229','Michel','2020-05-09 10:28:21','','2020-05-09',NULL,1),(1959,40,'230','Michel','2020-05-09 10:28:30','','2020-05-09',NULL,1),(1960,40,'231','Michel','2020-05-19 08:25:20','','2020-05-19',NULL,1),(1961,40,'232','Michel','2020-05-27 13:13:18','','2020-05-27',NULL,1),(1962,40,'233','Michel','2020-05-28 20:27:37','','2020-05-28',NULL,1),(1963,40,'234','Michel','2020-05-28 20:31:52','','2020-05-28',NULL,1),(1964,40,'235','Michel','2020-05-28 20:32:12','','2020-05-28',NULL,1),(1965,40,'236','Michel','2020-05-28 20:32:22','','2020-05-28',NULL,1),(1966,40,'237','Michel','2020-05-28 20:40:04','','2020-05-28',NULL,1),(1967,40,'238','Michel','2020-05-28 20:40:26','','2020-05-28',NULL,1),(1968,40,'239','Michel','2020-05-28 20:41:00','','2020-05-28',NULL,1),(1969,40,'240','Michel','2020-05-29 09:18:21','','2020-05-29',NULL,1),(1970,40,'241','Michel','2020-05-29 09:22:26','','2020-05-29',NULL,1),(1971,40,'242','Michel','2020-05-29 09:25:11','','2020-05-29',NULL,1),(1972,40,'243','Michel','2020-06-09 20:50:19','','2020-06-09',NULL,1),(1973,40,'244','Michel','2020-06-09 20:50:45','','2020-06-09',NULL,1),(1974,40,'245','Michel','2020-06-13 23:06:25','','2020-06-13',NULL,1),(1975,40,'246','Michel','2020-06-15 23:10:40','','2020-06-15',NULL,1),(1976,40,'247','Michel','2020-06-16 14:08:06','','2020-06-16',NULL,1),(1977,40,'248','Michel','2020-06-17 00:26:46','','2020-06-17',NULL,1),(1978,40,'249','Michel','2020-06-18 14:28:58','','2020-06-18',NULL,1),(1979,40,'250','Michel','2020-06-18 14:29:36','','2020-06-18',NULL,1),(1980,40,'251','Michel','2020-06-18 23:04:34','','2020-06-18',NULL,1),(1981,40,'252','Michel','2020-06-19 17:51:18','','2020-06-19',NULL,1),(1982,40,'253','Michel','2020-06-20 19:19:10','','2020-06-20',NULL,1),(1983,40,'254','Michel','2020-06-24 22:13:00','','2020-06-24',NULL,1),(1984,40,'255','Michel','2020-06-25 18:50:57','','2020-06-25',NULL,1),(1985,40,'256','Michel','2020-06-29 14:02:51','','2020-06-29',NULL,1),(1986,40,'257','Michel','2020-06-29 14:41:44','','2020-06-29',NULL,1),(1987,40,'258','Michel','2020-06-29 14:41:51','','2020-06-29',NULL,1),(1988,40,'259','Michel','2020-07-02 23:41:55','','2020-07-02',NULL,1),(1989,40,'260','Michel','2020-07-03 23:26:23','','2020-07-03',NULL,1),(1990,40,'261','Michel','2020-07-09 21:21:42','','2020-07-09',NULL,1),(1991,40,'262','Michel','2020-07-15 15:34:13','','2020-07-15',NULL,1),(1992,40,'263','Michel','2020-07-15 20:41:35','','2020-07-15',NULL,1),(1993,40,'264','Michel','2020-07-15 21:04:44','','2020-07-15',NULL,1),(1994,40,'265','Michel','2020-07-16 17:04:34','','2020-07-16',NULL,1),(1995,40,'266','Michel','2020-07-16 22:40:46','','2020-07-16',NULL,1),(1996,40,'267','Michel','2020-07-17 23:40:38','','2020-07-17',NULL,1),(1997,40,'268','Michel','2020-07-20 00:51:11','','2020-07-20',NULL,1),(1998,40,'269','Michel','2020-07-21 10:19:01','','2020-07-21',NULL,1),(1999,40,'270','Michel','2020-07-21 10:19:14','','2020-07-21',NULL,1),(2000,40,'271','Michel','2020-07-22 23:34:23','','2020-07-22',NULL,1),(2001,40,'272','Michel','2020-07-27 00:12:56','','2020-07-27',NULL,1),(2002,40,'273','Michel','2020-07-29 23:12:26','','2020-07-29',NULL,1),(2003,40,'274','Michel','2020-07-30 23:27:46','','2020-07-30',NULL,1),(2004,40,'275','Michel','2020-08-09 10:22:27','','2020-08-09',NULL,1),(2005,40,'276','Michel','2020-08-10 22:59:30','','2020-08-10',NULL,1),(2006,40,'277','Michel','2020-08-20 12:36:48','','2020-08-20',NULL,1),(2007,40,'278','Michel','2020-09-02 21:08:44','','2020-09-02',NULL,1),(2008,40,'279','Michel','2020-09-05 11:14:10','','2020-09-05',NULL,1),(2009,40,'280','Michel','2020-09-29 17:37:47','','2020-09-29',NULL,1),(2010,38,'10','Michel','2014-04-03 14:14:47','','2014-04-03',NULL,1),(2011,38,'11','Michel','2014-04-03 14:16:10','','2014-04-03',NULL,1),(2012,38,'12','Michel','2014-06-23 15:06:10','','2014-06-23',NULL,1),(2013,38,'13','Michel','2014-09-13 17:07:21','','2014-09-13',NULL,1),(2014,38,'14','Michel','2017-07-29 22:41:42','','2017-07-29',NULL,1),(2015,38,'15','Michel','2017-07-29 22:44:28','','2017-07-29',NULL,1),(2016,38,'16','Michel','2017-07-29 22:44:42','','2017-07-29',NULL,1),(2017,38,'17','Michel','2017-07-29 22:44:46','','2017-07-29',NULL,1),(2018,38,'18','Michel','2017-07-29 22:45:07','','2017-07-29',NULL,1),(2019,38,'19','Michel','2017-07-29 22:45:17','','2017-07-29',NULL,1),(2020,38,'20','Michel','2017-07-29 22:45:18','','2017-07-29',NULL,1),(2021,38,'21','Michel','2017-07-29 22:45:37','','2017-07-29',NULL,1),(2022,38,'22','Michel','2017-07-29 22:45:54','','2017-07-29',NULL,1),(2023,38,'23','Michel','2017-08-10 11:49:45','','2017-08-10',NULL,1),(2024,38,'24','Michel','2017-08-21 09:02:39','','2017-08-21',NULL,1),(2025,38,'25','Michel','2017-08-21 09:03:15','','2017-08-21',NULL,1),(2026,38,'26','Michel','2017-08-23 15:27:25','','2017-08-23',NULL,1),(2027,38,'27','Michel','2017-08-28 10:29:39','','2017-08-28',NULL,1),(2028,38,'28','Michel','2017-08-29 11:46:29','','2017-08-29',NULL,1),(2029,38,'29','Michel','2018-01-24 21:59:21','','2018-01-24',NULL,1),(2030,38,'30','Michel','2018-10-17 17:25:12','','2018-10-17',NULL,1),(2031,38,'31','Michel','2020-05-28 20:35:37','','2020-05-28',NULL,1),(2032,38,'32','Michel','2020-05-28 20:36:22','','2020-05-28',NULL,1),(2033,38,'33','Michel','2020-05-28 20:36:52','','2020-05-28',NULL,1),(2034,38,'34','Michel','2020-05-28 20:38:11','','2020-05-28',NULL,1),(2035,38,'35','Michel','2020-05-28 20:38:38','','2020-05-28',NULL,1),(2036,38,'36','Michel','2020-10-06 23:04:45','Enhanced behavior and leak fixed','2020-10-06',NULL,1),(2037,40,'281','Michel','2020-10-13 22:30:24','','2020-10-13',NULL,1),(2038,40,'282','Michel','2020-10-16 12:33:31','','2020-10-16',NULL,1),(2039,40,'283','Michel','2020-10-16 13:03:20','','2020-10-16',NULL,1),(2040,40,'284','Michel','2020-10-16 13:10:30','','2020-10-16',NULL,1),(2041,40,'285','Michel','2020-10-19 12:09:13','','2020-10-19',NULL,1),(2042,40,'286','Michel','2020-10-20 16:33:24','','2020-10-20',NULL,1),(2043,40,'287','Michel','2020-10-23 14:25:50','','2020-10-23',NULL,1),(2044,40,'288','Michel','2020-10-27 09:51:25','','2020-10-27',NULL,1),(2045,40,'289','Michel','2020-10-27 18:16:55','','2020-10-27',NULL,1),(2046,40,'290','Michel','2020-10-27 22:21:21','','2020-10-27',NULL,1),(2047,40,'291','Michel','2020-10-28 18:18:32','','2020-10-28',NULL,1),(2048,40,'292','Michel','2020-10-28 21:36:00','','2020-10-28',NULL,1),(2049,40,'293','Michel','2020-10-28 21:36:15','','2020-10-28',NULL,1),(2050,40,'294','Michel','2020-11-10 23:53:36','','2020-11-10',NULL,1),(2051,40,'295','Michel','2020-11-16 17:26:52','','2020-11-16',NULL,1),(2052,40,'296','Michel','2020-11-17 13:54:55','','2020-11-17',NULL,1),(2053,40,'297','Michel','2020-11-18 15:29:04','','2020-11-18',NULL,1),(2054,40,'298','Michel','2020-11-22 19:49:14','','2020-11-22',NULL,1),(2055,40,'299','Michel','2020-11-22 19:49:23','','2020-11-22',NULL,1),(2056,40,'300','Michel','2020-11-22 22:08:19','','2020-11-22',NULL,1),(2057,40,'301','Michel','2020-11-22 22:08:29','','2020-11-22',NULL,1),(2058,40,'302','Michel','2020-11-25 11:24:53','','2020-11-25',NULL,1),(2059,40,'303','Michel','2020-11-25 11:27:56','','2020-11-25',NULL,1),(2060,40,'304','','2020-12-03 18:45:15','','2020-12-03',NULL,NULL),(2061,40,'305','','2020-12-04 01:09:33','','2020-12-04',NULL,NULL),(2062,40,'306','','2020-12-05 00:26:35','','2020-12-05',NULL,NULL),(2063,40,'307','','2020-12-05 12:01:33','','2020-12-05',NULL,NULL),(2064,40,'308','','2020-12-08 19:17:06','','2020-12-08',NULL,NULL),(2065,40,'309','','2020-12-10 00:29:56','','2020-12-10',NULL,NULL),(2066,40,'310','','2020-12-10 00:33:09','','2020-12-10',NULL,NULL),(2067,40,'311','','2020-12-11 20:00:28','','2020-12-11',NULL,NULL),(2068,11,'441','Michel','2020-05-27 22:27:44','','2020-05-27',NULL,1),(2069,11,'442','Michel','2020-05-27 22:32:44','','2020-05-27',NULL,1),(2070,11,'443','Michel','2020-06-20 00:58:47','','2020-06-20',NULL,1),(2071,11,'444','Michel','2020-06-24 18:30:37','','2020-06-24',NULL,1),(2072,11,'445','Michel','2020-06-25 18:50:23','','2020-06-25',NULL,1),(2073,11,'446','Michel','2020-06-29 22:00:54','','2020-06-29',NULL,1),(2074,11,'447','Michel','2020-07-03 23:26:45','','2020-07-03',NULL,1),(2075,11,'448','Michel','2020-07-22 23:34:16','','2020-07-22',NULL,1),(2076,11,'449','Michel','2020-08-04 08:52:41','','2020-08-04',NULL,1),(2077,11,'450','Michel','2020-08-06 00:23:58','','2020-08-06',NULL,1),(2078,11,'451','Michel','2020-08-09 10:16:54','','2020-08-09',NULL,1),(2079,11,'452','Michel','2020-08-10 00:46:01','','2020-08-10',NULL,1),(2080,11,'453','Michel','2020-08-13 00:16:05','','2020-08-13',NULL,1),(2081,11,'454','Michel','2020-08-14 15:59:59','','2020-08-14',NULL,1),(2082,11,'455','Michel','2020-10-01 17:15:53','','2020-10-01',NULL,1),(2083,11,'456','Michel','2020-10-02 20:38:41','','2020-10-02',NULL,1),(2084,11,'457','Michel','2020-10-06 23:04:10','Fix leak on HA Part','2020-10-06',NULL,1),(2085,11,'458','Michel','2020-10-07 22:55:03','','2020-10-07',NULL,1),(2086,11,'459','Michel','2020-10-08 18:12:44','Partialy valid version handling Server and Session diagnostics','2020-10-08',NULL,1),(2087,11,'460','Michel','2020-10-11 00:00:05','','2020-10-11',NULL,1),(2088,11,'461','Michel','2020-10-11 20:46:03','','2020-10-11',NULL,1),(2089,11,'462','Michel','2020-10-18 01:38:27','','2020-10-18',NULL,1),(2090,11,'463','Michel','2020-10-18 23:38:48','','2020-10-18',NULL,1),(2091,11,'464','Michel','2020-10-19 20:41:47','','2020-10-19',NULL,1),(2092,11,'465','Michel','2020-10-20 20:36:19','','2020-10-20',NULL,1),(2093,11,'466','Michel','2020-10-22 00:45:28','','2020-10-22',NULL,1),(2094,11,'467','Michel','2020-10-22 22:55:51','','2020-10-22',NULL,1),(2095,11,'468','Michel','2020-10-24 00:00:59','','2020-10-24',NULL,1),(2096,11,'469','Michel','2020-10-25 23:09:14','','2020-10-25',NULL,1),(2097,11,'470','Michel','2020-10-28 21:44:28','','2020-10-28',NULL,1),(2098,11,'471','Michel','2020-10-29 01:38:10','','2020-10-29',NULL,1),(2099,11,'472','Michel','2020-11-02 00:23:14','','2020-11-02',NULL,1),(2100,11,'473','Michel','2020-11-03 00:36:06','','2020-11-03',NULL,1),(2101,11,'474','Michel','2020-11-10 23:53:19','','2020-11-10',NULL,1),(2102,11,'475','Michel','2020-11-22 19:49:39','','2020-11-22',NULL,1),(2103,11,'476','Michel','2020-11-22 22:08:40','','2020-11-22',NULL,1),(2104,11,'477','Michel','2020-11-24 23:52:09','','2020-11-24',NULL,1),(2105,11,'478','','2020-11-29 18:20:16','','2020-11-29',NULL,NULL),(2106,11,'479','','2020-12-10 00:29:40','','2020-12-10',NULL,NULL),(2107,11,'480','','2020-12-13 21:28:53','','2020-12-13',NULL,NULL),(2108,11,'481','','2020-12-17 22:13:51','','2020-12-17',NULL,NULL),(2109,11,'482','','2020-12-20 01:55:35','','2020-12-20',NULL,NULL),(2110,11,'483','','2020-12-21 00:42:27','','2020-12-21',NULL,NULL),(2111,11,'484','','2020-12-25 22:47:19','','2020-12-25',NULL,NULL),(2112,11,'485','','2020-12-31 22:30:53','','2020-12-31',NULL,NULL),(2113,11,'486','','2020-12-31 23:19:23','Migration LUA 5.4.2','2020-12-31',NULL,NULL),(2114,11,'487','','2021-01-02 01:29:56','','2021-01-02',NULL,NULL),(2115,40,'312','','2020-12-15 18:49:10','','2020-12-15',NULL,NULL),(2116,40,'313','','2020-12-16 20:19:45','','2020-12-16',NULL,NULL),(2117,40,'314','','2020-12-17 15:45:17','','2020-12-17',NULL,NULL),(2118,40,'315','','2020-12-17 22:13:22','','2020-12-17',NULL,NULL),(2119,40,'316','','2020-12-17 22:14:26','','2020-12-17',NULL,NULL),(2120,40,'317','','2020-12-22 14:52:23','','2020-12-22',NULL,NULL),(2121,40,'318','','2020-12-25 22:47:17','','2020-12-25',NULL,NULL),(2122,40,'319','','2020-12-31 22:30:51','','2020-12-31',NULL,NULL),(2123,40,'320','','2020-12-31 22:39:17','','2020-12-31',NULL,NULL),(2124,40,'321','','2020-12-31 23:19:23','Migration LUA 5.4.2','2020-12-31',NULL,NULL),(2125,40,'322','','2021-01-02 01:29:55','','2021-01-02',NULL,NULL),(2126,40,'323','','2021-01-02 01:41:18','','2021-01-02',NULL,NULL),(2127,40,'324','','2021-01-02 01:56:13','','2021-01-02',NULL,NULL),(2128,39,'31','','2020-12-17 22:14:45','','2020-12-17',NULL,NULL),(2129,43,'4','Michel','2016-11-16 08:42:57','','2016-11-16',NULL,1),(2130,43,'5','Michel','2017-01-17 22:29:41','','2017-01-17',NULL,1),(2131,43,'6','Michel','2017-03-28 22:07:11','','2017-03-28',NULL,1),(2132,43,'7','Michel','2017-04-02 16:00:08','','2017-04-02',NULL,1),(2133,43,'8','Michel','2017-05-28 19:57:53','','2017-05-28',NULL,1),(2134,43,'9','Michel','2017-05-29 13:16:32','','2017-05-29',NULL,1),(2135,43,'10','Michel','2017-06-17 22:19:18','','2017-06-17',NULL,1),(2136,43,'11','Michel','2018-03-16 07:28:08','','2018-03-16',NULL,1),(2137,43,'12','Michel','2018-03-26 20:32:36','','2018-03-26',NULL,1),(2138,43,'13','Michel','2018-04-22 21:28:34','','2018-04-22',NULL,1),(2139,43,'14','Michel','2018-10-25 23:05:58','','2018-10-25',NULL,1),(2140,43,'15','Michel','2018-10-28 13:16:42','','2018-10-28',NULL,1),(2141,43,'16','Michel','2018-11-04 11:22:43','','2018-11-04',NULL,1),(2142,43,'17','Michel','2018-11-14 01:26:15','','2018-11-14',NULL,1),(2143,43,'18','Michel','2018-11-16 22:54:43','','2018-11-16',NULL,1),(2144,43,'19','Michel','2019-01-16 15:50:45','','2019-01-16',NULL,1),(2145,43,'20','Michel','2019-01-16 15:51:17','','2019-01-16',NULL,1),(2146,43,'21','Michel','2019-02-12 14:39:23','','2019-02-12',NULL,1),(2147,43,'22','Michel','2019-02-12 14:39:29','','2019-02-12',NULL,1),(2148,43,'23','Michel','2019-02-15 09:31:37','','2019-02-15',NULL,1),(2149,43,'24','Michel','2019-02-26 20:53:17','','2019-02-26',NULL,1),(2150,43,'25','Michel','2020-02-14 13:38:22','','2020-02-14',NULL,1),(2151,43,'26','Michel','2020-02-15 22:00:54','','2020-02-15',NULL,1),(2152,43,'27','Michel','2020-02-18 01:26:47','','2020-02-18',NULL,1),(2153,43,'28','Michel','2020-02-21 09:17:02','','2020-02-21',NULL,1),(2154,43,'29','Michel','2020-02-21 09:17:05','','2020-02-21',NULL,1),(2155,43,'30','Michel','2020-05-28 20:29:08','','2020-05-28',NULL,1),(2156,43,'31','Michel','2020-07-02 23:41:25','','2020-07-02',NULL,1),(2157,43,'32','Michel','2020-07-03 23:26:36','','2020-07-03',NULL,1),(2158,43,'33','Michel','2020-07-03 23:59:11','','2020-07-03',NULL,1),(2159,43,'34','Michel','2020-07-04 11:23:01','','2020-07-04',NULL,1),(2160,43,'35','Michel','2020-07-06 18:09:29','','2020-07-06',NULL,1),(2161,43,'36','Michel','2020-07-06 22:53:19','','2020-07-06',NULL,1),(2162,43,'37','Michel','2020-07-07 13:39:37','','2020-07-07',NULL,1),(2163,43,'38','Michel','2020-07-09 21:21:23','','2020-07-09',NULL,1),(2164,43,'39','Michel','2020-07-10 23:59:57','','2020-07-10',NULL,1),(2165,43,'40','Michel','2020-07-12 00:31:08','','2020-07-12',NULL,1),(2166,43,'41','Michel','2020-07-12 00:40:32','','2020-07-12',NULL,1),(2167,43,'42','Michel','2020-07-14 23:57:55','','2020-07-14',NULL,1),(2168,43,'43','Michel','2020-07-26 23:38:06','','2020-07-26',NULL,1),(2169,43,'44','Michel','2020-07-27 12:48:30','','2020-07-27',NULL,1),(2170,43,'45','Michel','2020-07-28 23:02:16','','2020-07-28',NULL,1),(2171,43,'46','Michel','2020-07-29 23:12:34','','2020-07-29',NULL,1),(2172,43,'47','Michel','2020-11-26 09:25:11','','2020-11-26',NULL,1),(2173,43,'48','','2020-12-07 00:24:47','','2020-12-07',NULL,NULL),(2174,43,'49','','2020-12-07 00:24:56','','2020-12-07',NULL,NULL),(2175,43,'50','','2020-12-10 00:30:32','','2020-12-10',NULL,NULL),(2176,43,'51','','2020-12-10 00:30:36','','2020-12-10',NULL,NULL),(2177,43,'52','','2020-12-10 13:42:14','','2020-12-10',NULL,NULL),(2178,43,'53','','2020-12-17 22:13:08','','2020-12-17',NULL,NULL),(2179,40,'325','','2021-01-04 00:24:46','','2021-01-04',NULL,NULL),(2180,40,'326','','2021-01-04 11:14:11','','2021-01-04',NULL,NULL),(2181,40,'327','','2021-01-07 10:46:59','','2021-01-07',NULL,NULL),(2182,40,'328','','2021-01-11 23:45:43','','2021-01-11',NULL,NULL),(2183,40,'329','','2021-01-12 13:30:05','','2021-01-12',NULL,NULL),(2184,40,'330','','2021-01-12 14:13:32','','2021-01-12',NULL,NULL),(2185,40,'331','','2021-01-18 16:32:18','','2021-01-18',NULL,NULL),(2186,40,'332','','2021-01-20 11:52:41','Passage VS2017','2021-01-20',NULL,NULL),(2187,40,'333','','2021-01-21 00:18:18','Change the way the VpiCache is updated after a VpiWrite function call','2021-01-21',NULL,NULL),(2188,40,'334','','2021-01-23 22:17:16','','2021-01-23',NULL,NULL),(2189,40,'335','','2021-01-28 22:18:02','','2021-01-28',NULL,NULL),(2190,40,'336','','2021-01-28 22:44:47','','2021-01-28',NULL,NULL),(2191,40,'337','','2021-02-06 01:06:38','','2021-02-06',NULL,NULL),(2192,40,'338','','2021-02-06 01:06:44','','2021-02-06',NULL,NULL),(2193,40,'339','','2021-02-07 02:14:25','','2021-02-07',NULL,NULL),(2194,40,'340','','2021-02-07 02:15:12','','2021-02-07',NULL,NULL),(2195,40,'341','','2021-02-10 01:59:28','','2021-02-10',NULL,NULL),(2196,40,'342','','2021-02-12 00:42:13','','2021-02-12',NULL,NULL),(2197,40,'343','','2021-02-14 20:44:29','','2021-02-14',NULL,NULL),(2198,40,'344','','2021-02-16 23:00:32','','2021-02-16',NULL,NULL),(2199,40,'345','','2021-02-25 20:49:31','','2021-02-25',NULL,NULL),(2200,40,'346','','2021-03-04 15:06:14','','2021-03-04',NULL,NULL),(2201,40,'347','','2021-03-05 11:44:20','Modif groupe ALD et CMD_REINIT','2021-03-05',NULL,NULL),(2202,40,'348','','2021-03-08 18:15:58','Modification sur ALM_RSTR. Elle passe en ALD au niveau de l\'adresse','2021-03-08',NULL,NULL),(2203,40,'349','','2021-03-09 13:50:45','','2021-03-09',NULL,NULL),(2204,40,'350','','2021-03-09 20:33:14','','2021-03-09',NULL,NULL),(2205,40,'351','','2021-03-10 14:23:12','','2021-03-10',NULL,NULL),(2206,40,'352','','2021-03-18 00:58:50','','2021-03-18',NULL,NULL),(2207,40,'353','','2021-04-09 00:17:45','','2021-04-09',NULL,NULL),(2208,40,'354','','2021-04-14 16:46:28','','2021-04-14',NULL,NULL),(2209,40,'355','','2021-04-14 20:53:47','','2021-04-14',NULL,NULL),(2210,40,'356','','2021-04-15 16:31:00','','2021-04-15',NULL,NULL),(2211,40,'357','','2021-04-23 13:19:54','','2021-04-23',NULL,NULL),(2212,40,'358','','2021-04-24 22:17:52','','2021-04-24',NULL,NULL),(2213,40,'359','','2021-04-29 21:12:06','','2021-04-29',NULL,NULL),(2214,40,'360','','2021-05-06 13:19:06','','2021-05-06',NULL,NULL),(2215,40,'361','','2021-05-06 18:00:05','','2021-05-06',NULL,NULL),(2216,40,'362','','2021-05-07 00:11:53','','2021-05-07',NULL,NULL),(2217,40,'363','','2021-05-07 00:19:54','','2021-05-07',NULL,NULL),(2218,40,'364','','2021-05-07 00:20:19','','2021-05-07',NULL,NULL),(2219,40,'365','','2021-05-08 00:15:01','','2021-05-08',NULL,NULL),(2220,40,'366','','2021-05-08 00:50:35','','2021-05-08',NULL,NULL),(2221,40,'367','','2021-05-18 09:32:19','','2021-05-18',NULL,NULL),(2222,40,'368','','2021-05-19 16:31:04','','2021-05-19',NULL,NULL),(2223,40,'369','','2021-05-25 16:31:43','','2021-05-25',NULL,NULL),(2224,40,'370','','2021-06-01 17:45:42','','2021-06-01',NULL,NULL),(2225,40,'371','','2021-06-04 21:30:35','','2021-06-04',NULL,NULL),(2226,40,'372','','2021-06-05 18:34:02','','2021-06-05',NULL,NULL),(2227,40,'373','','2021-06-09 13:51:28','','2021-06-09',NULL,NULL),(2228,40,'374','','2021-06-23 14:54:02','','2021-06-23',NULL,NULL),(2229,40,'375','','2021-06-24 09:24:14','','2021-06-24',NULL,NULL),(2230,40,'376','','2021-06-25 22:59:13','','2021-06-25',NULL,NULL),(2231,40,'377','','2021-06-26 19:03:44','','2021-06-26',NULL,NULL),(2232,40,'378','','2021-07-22 14:57:18','Change algorytm to generate an new nodeid in GenerateNewNodeId','2021-07-22',NULL,NULL),(2233,40,'379','','2021-07-25 11:58:50','','2021-07-25',NULL,NULL),(2234,40,'380','','2021-08-01 18:38:02','','2021-08-01',NULL,NULL),(2235,40,'381','','2021-08-09 16:37:32','','2021-08-09',NULL,NULL),(2236,40,'382','','2021-08-21 00:08:26','','2021-08-21',NULL,NULL),(2237,40,'383','','2021-09-02 23:16:39','','2021-09-02',NULL,NULL),(2238,40,'384','','2021-09-05 10:15:36','','2021-09-05',NULL,NULL),(2239,40,'385','','2021-09-05 10:17:19','','2021-09-05',NULL,NULL),(2240,40,'386','','2021-10-04 16:44:38','','2021-10-04',NULL,NULL),(2241,40,'387','','2021-10-08 23:11:05','','2021-10-08',NULL,NULL),(2242,40,'388','','2021-10-10 00:46:51','','2021-10-10',NULL,NULL),(2243,40,'389','','2021-10-10 22:51:13','','2021-10-10',NULL,NULL),(2244,40,'390','','2021-10-10 22:51:38','','2021-10-10',NULL,NULL),(2245,40,'391','','2021-10-10 22:52:35','','2021-10-10',NULL,NULL),(2246,40,'392','','2021-10-10 22:52:55','','2021-10-10',NULL,NULL),(2247,40,'393','','2021-10-12 15:24:19','','2021-10-12',NULL,NULL),(2248,40,'394','','2021-10-13 22:54:03','','2021-10-13',NULL,NULL),(2249,40,'395','','2021-10-21 20:07:05','','2021-10-21',NULL,NULL),(2250,40,'396','','2021-10-22 16:16:08','','2021-10-22',NULL,NULL),(2251,40,'397','','2021-10-24 02:21:07','','2021-10-24',NULL,NULL),(2252,40,'398','','2021-10-25 13:44:44','','2021-10-25',NULL,NULL),(2253,40,'399','','2021-10-25 21:50:21','','2021-10-25',NULL,NULL),(2254,40,'400','','2021-10-29 02:37:17','','2021-10-29',NULL,NULL),(2255,40,'401','','2021-10-29 04:00:38','','2021-10-29',NULL,NULL),(2256,40,'402','','2021-10-29 22:23:45','','2021-10-29',NULL,NULL),(2257,40,'403','','2021-11-01 22:23:46','','2021-11-01',NULL,NULL),(2258,40,'404','','2021-11-03 09:15:40','','2021-11-03',NULL,NULL),(2259,40,'405','','2021-11-11 19:20:10','','2021-11-11',NULL,NULL),(2260,40,'406','','2021-11-18 08:58:43','','2021-11-18',NULL,NULL),(2261,40,'407','','2021-11-18 16:49:12','','2021-11-18',NULL,NULL),(2262,40,'408','','2021-11-21 23:42:12','','2021-11-21',NULL,NULL),(2263,40,'409','','2021-11-21 23:42:26','','2021-11-21',NULL,NULL),(2264,40,'410','','2021-11-22 00:04:52','','2021-11-22',NULL,NULL),(2265,40,'411','','2021-12-02 22:35:13','','2021-12-02',NULL,NULL),(2266,40,'412','','2021-12-03 08:37:00','','2021-12-03',NULL,NULL),(2267,40,'413','','2021-12-04 00:56:22','','2021-12-04',NULL,NULL),(2268,40,'414','','2021-12-04 00:56:43','','2021-12-04',NULL,NULL),(2269,40,'415','','2021-12-06 23:15:32','','2021-12-06',NULL,NULL),(2270,40,'416','','2021-12-07 20:01:17','','2021-12-07',NULL,NULL),(2271,40,'417','','2021-12-08 09:26:54','','2021-12-08',NULL,NULL),(2272,40,'418','','2021-12-08 15:55:16','','2021-12-08',NULL,NULL),(2273,40,'419','','2021-12-10 07:46:13','','2021-12-10',NULL,NULL),(2274,40,'420','','2021-12-10 08:41:33','','2021-12-10',NULL,NULL),(2275,40,'421','','2021-12-12 23:37:21','','2021-12-12',NULL,NULL),(2276,11,'488','','2021-01-08 22:19:11','','2021-01-08',NULL,NULL),(2277,11,'489','','2021-01-18 09:19:06','','2021-01-18',NULL,NULL),(2278,11,'490','','2021-01-23 22:17:49','','2021-01-23',NULL,NULL),(2279,11,'491','','2021-01-28 22:44:47','','2021-01-28',NULL,NULL),(2280,11,'492','','2021-01-28 22:54:17','','2021-01-28',NULL,NULL),(2281,11,'493','','2021-02-01 00:30:32','','2021-02-01',NULL,NULL),(2282,11,'494','','2021-02-02 00:49:19','2-2-2021','2021-02-02',NULL,NULL),(2283,11,'495','','2021-02-04 01:16:25','','2021-02-04',NULL,NULL),(2284,11,'496','','2021-02-21 02:55:12','','2021-02-21',NULL,NULL),(2285,11,'497','','2021-03-02 17:59:46','New EncodeableType, CurrentCyUnitType, 3DCartesianCoordinate, 3DOrientation','2021-03-02',NULL,NULL),(2286,11,'498','','2021-03-18 00:57:56','','2021-03-18',NULL,NULL),(2287,11,'499','','2021-05-07 00:20:17','','2021-05-07',NULL,NULL),(2288,11,'500','','2021-06-09 13:51:45','','2021-06-09',NULL,NULL),(2289,11,'501','','2021-06-23 14:54:36','','2021-06-23',NULL,NULL),(2290,11,'502','','2021-08-12 20:35:24','','2021-08-12',NULL,NULL),(2291,11,'503','','2021-09-05 10:16:46','','2021-09-05',NULL,NULL),(2292,11,'504','','2021-10-10 22:54:03','','2021-10-10',NULL,NULL),(2293,11,'505','','2021-10-22 16:16:10','','2021-10-22',NULL,NULL),(2294,11,'506','','2021-10-29 02:37:41','','2021-10-29',NULL,NULL),(2295,11,'507','','2021-11-21 23:41:01','','2021-11-21',NULL,NULL),(2296,11,'508','','2021-12-04 00:56:51','','2021-12-04',NULL,NULL),(2297,11,'509','','2021-12-06 23:15:45','','2021-12-06',NULL,NULL),(2298,11,'510','','2021-12-07 20:48:54','','2021-12-07',NULL,NULL),(2299,40,'422','','2021-12-19 10:44:51','Case conflict resolution','2021-12-19',NULL,NULL),(2300,40,'423','','2021-12-19 14:05:29','','2021-12-19',NULL,NULL),(2301,40,'424','','2021-12-19 14:06:16','','2021-12-19',NULL,NULL),(2302,11,'511','','2021-12-19 13:58:42','','2021-12-19',NULL,NULL),(2303,11,'512','','2021-12-28 20:36:41','','2021-12-28',NULL,NULL),(2304,11,'513','','2021-12-29 17:26:48','','2021-12-29',NULL,NULL),(2305,11,'514','','2022-01-23 20:09:40','','2022-01-23',NULL,NULL),(2306,11,'515','','2022-01-30 23:22:13','Stable version for EMOTORS on 30-01-2022','2022-01-30',NULL,NULL),(2307,11,'516','','2022-02-20 23:02:20','','2022-02-20',NULL,NULL),(2308,11,'517','','2022-02-28 22:20:21','','2022-02-28',NULL,NULL),(2309,11,'518','','2022-03-08 22:38:36','','2022-03-08',NULL,NULL),(2310,11,'519','','2022-03-18 00:25:00','1.0.6.8 change init Range from NodeSet','2022-03-18',NULL,NULL),(2311,11,'520','','2022-03-30 09:24:10','Change in SharedLib on Array of OpcUaType_String. The function TransfertArray is reactivated','2022-03-30',NULL,NULL),(2312,11,'521','','2022-03-31 16:33:18','','2022-03-31',NULL,NULL),(2313,11,'522','','2022-04-09 21:57:50','','2022-04-09',NULL,NULL),(2314,11,'523','','2022-04-26 08:32:02','','2022-04-26',NULL,NULL),(2315,40,'425','','2021-12-27 22:23:48','','2021-12-27',NULL,NULL),(2316,40,'426','','2021-12-27 22:23:54','','2021-12-27',NULL,NULL),(2317,40,'427','','2021-12-27 23:12:31','','2021-12-27',NULL,NULL),(2318,40,'428','','2021-12-27 23:12:42','','2021-12-27',NULL,NULL),(2319,40,'429','','2021-12-28 20:35:44','','2021-12-28',NULL,NULL),(2320,40,'430','','2021-12-28 20:36:17','','2021-12-28',NULL,NULL),(2321,40,'431','','2021-12-28 20:36:25','','2021-12-28',NULL,NULL),(2322,40,'432','','2022-01-10 02:21:21','','2022-01-10',NULL,NULL),(2323,40,'433','','2022-01-18 22:57:09','','2022-01-18',NULL,NULL),(2324,40,'434','','2022-01-23 18:54:38','','2022-01-23',NULL,NULL),(2325,40,'435','','2022-01-23 20:09:29','','2022-01-23',NULL,NULL),(2326,40,'436','','2022-01-24 19:05:27','','2022-01-24',NULL,NULL),(2327,40,'437','','2022-01-28 21:46:35','','2022-01-28',NULL,NULL),(2328,40,'438','','2022-01-28 22:55:25','','2022-01-28',NULL,NULL),(2329,40,'439','','2022-01-28 23:20:34','','2022-01-28',NULL,NULL),(2330,40,'440','','2022-02-01 21:21:28','','2022-02-01',NULL,NULL),(2331,40,'441','','2022-02-02 16:27:20','','2022-02-02',NULL,NULL),(2332,40,'442','','2022-02-18 00:59:55','','2022-02-18',NULL,NULL),(2333,40,'443','','2022-02-28 22:20:06','','2022-02-28',NULL,NULL),(2334,40,'444','','2022-03-08 22:38:17','','2022-03-08',NULL,NULL),(2335,40,'445','','2022-03-10 00:25:40','','2022-03-10',NULL,NULL),(2336,40,'446','','2022-03-10 00:25:50','','2022-03-10',NULL,NULL),(2337,40,'447','','2022-03-10 19:57:47','','2022-03-10',NULL,NULL),(2338,40,'448','','2022-03-14 15:36:17','','2022-03-14',NULL,NULL),(2339,40,'449','','2022-03-15 15:40:23','','2022-03-15',NULL,NULL),(2340,40,'450','','2022-03-18 00:23:38','','2022-03-18',NULL,NULL),(2341,40,'451','','2022-03-18 00:23:57','','2022-03-18',NULL,NULL),(2342,40,'452','','2022-03-18 00:35:40','','2022-03-18',NULL,NULL),(2343,40,'453','','2022-03-19 18:18:05','','2022-03-19',NULL,NULL),(2344,40,'454','','2022-03-20 00:45:44','','2022-03-20',NULL,NULL),(2345,40,'455','','2022-03-27 21:40:01','','2022-03-27',NULL,NULL),(2346,40,'456','','2022-03-28 20:10:39','','2022-03-28',NULL,NULL),(2347,40,'457','','2022-03-29 00:25:25','','2022-03-29',NULL,NULL),(2348,40,'458','','2022-04-09 22:03:07','','2022-04-09',NULL,NULL),(2349,40,'459','','2022-05-05 22:01:45','','2022-05-05',NULL,NULL),(2350,40,'460','','2022-05-07 17:51:04','','2022-05-07',NULL,NULL),(2351,40,'461','','2022-05-09 20:28:28','','2022-05-09',NULL,NULL),(2352,40,'462','','2022-05-09 20:28:39','','2022-05-09',NULL,NULL),(2353,43,'54','','2021-01-04 11:13:53','','2021-01-04',NULL,NULL),(2354,43,'55','','2021-01-23 22:16:58','','2021-01-23',NULL,NULL),(2355,43,'56','','2021-02-07 02:15:01','','2021-02-07',NULL,NULL),(2356,43,'57','','2021-02-10 02:14:12','','2021-02-10',NULL,NULL),(2357,43,'58','','2021-02-16 23:15:34','','2021-02-16',NULL,NULL),(2358,43,'59','','2021-03-18 01:00:04','','2021-03-18',NULL,NULL),(2359,43,'60','','2021-04-14 20:53:30','','2021-04-14',NULL,NULL),(2360,43,'61','','2021-04-23 13:20:13','','2021-04-23',NULL,NULL),(2361,43,'62','','2021-04-23 13:39:58','','2021-04-23',NULL,NULL),(2362,43,'63','','2021-05-07 00:21:26','','2021-05-07',NULL,NULL),(2363,43,'64','','2021-05-08 00:14:46','','2021-05-08',NULL,NULL),(2364,43,'65','','2021-05-28 12:01:38','','2021-05-28',NULL,NULL),(2365,43,'66','','2021-08-09 16:37:02','','2021-08-09',NULL,NULL),(2366,43,'67','','2021-12-08 10:25:06','','2021-12-08',NULL,NULL),(2367,43,'68','','2022-03-18 00:24:17','','2022-03-18',NULL,NULL),(2368,40,'463','','2022-05-14 00:54:51','','2022-05-14',NULL,NULL),(2369,40,'464','','2022-05-14 00:54:58','','2022-05-14',NULL,NULL),(2370,40,'465','','2022-05-14 00:55:22','','2022-05-14',NULL,NULL),(2371,40,'466','','2022-05-15 01:29:02','','2022-05-15',NULL,NULL),(2372,11,'524','','2022-05-14 00:56:26','','2022-05-14',NULL,NULL),(2373,11,'525','','2022-05-27 00:59:59','Changes in the Alarming mechanism. The commited version works at 70%.\nMissed some end of alarm, full support for simple ConfirmState with jus Id.\nNeed also to fixe some multiclient behavior and to test with limitAlarm.','2022-05-27',NULL,NULL),(2374,2,'237','Michel','2018-11-28 23:00:02','','2018-11-28',NULL,1),(2375,2,'238','Michel','2018-12-02 16:52:26','','2018-12-02',NULL,1),(2376,2,'239','Michel','2018-12-05 09:53:10','','2018-12-05',NULL,1),(2377,2,'240','Michel','2018-12-10 16:40:36','','2018-12-10',NULL,1),(2378,2,'241','Michel','2018-12-16 19:36:08','','2018-12-16',NULL,1),(2379,2,'242','Michel','2018-12-26 20:02:09','','2018-12-26',NULL,1),(2380,2,'243','Michel','2019-01-06 19:24:34','','2019-01-06',NULL,1),(2381,2,'244','Michel','2019-02-03 11:06:10','','2019-02-03',NULL,1),(2382,2,'245','Michel','2019-03-30 17:49:16','','2019-03-30',NULL,1),(2383,2,'246','Michel','2019-04-15 15:32:15','','2019-04-15',NULL,1),(2384,2,'247','Michel','2019-06-07 15:07:47','','2019-06-07',NULL,1),(2385,2,'248','Michel','2019-08-28 19:21:37','','2019-08-28',NULL,1),(2386,2,'249','Michel','2019-09-10 19:26:48','','2019-09-10',NULL,1),(2387,2,'250','Michel','2019-10-02 07:05:18','','2019-10-02',NULL,1),(2388,2,'251','Michel','2019-11-05 22:41:05','','2019-11-05',NULL,1),(2389,2,'252','Michel','2020-02-14 13:37:16','','2020-02-14',NULL,1),(2390,2,'253','Michel','2020-04-29 10:43:08','','2020-04-29',NULL,1),(2391,2,'254','Michel','2020-05-19 08:25:21','','2020-05-19',NULL,1),(2392,2,'255','Michel','2020-08-09 10:16:47','','2020-08-09',NULL,1),(2393,2,'256','Michel','2020-10-07 22:55:03','','2020-10-07',NULL,1),(2394,2,'257','Michel','2020-10-18 01:38:27','','2020-10-18',NULL,1),(2395,2,'258','Michel','2020-10-19 20:41:46','','2020-10-19',NULL,1),(2396,2,'259','Michel','2020-10-20 20:36:19','','2020-10-20',NULL,1),(2397,2,'260','Michel','2020-10-22 00:45:26','','2020-10-22',NULL,1),(2398,2,'261','Michel','2020-10-25 23:09:15','','2020-10-25',NULL,1),(2399,2,'262','Michel','2020-11-10 23:53:16','','2020-11-10',NULL,1),(2400,2,'263','Michel','2020-11-22 19:49:36','','2020-11-22',NULL,1),(2401,2,'264','','2020-12-13 21:28:47','','2020-12-13',NULL,NULL),(2402,2,'265','','2020-12-17 22:14:00','','2020-12-17',NULL,NULL),(2403,2,'266','','2021-01-02 01:29:57','','2021-01-02',NULL,NULL),(2404,2,'267','','2021-01-04 11:14:05','','2021-01-04',NULL,NULL),(2405,2,'268','','2021-01-18 09:19:07','','2021-01-18',NULL,NULL),(2406,2,'269','','2021-03-02 17:59:49','New EncodeableType, CurrentCyUnitType, 3DCartesianCoordinate, 3DOrientation','2021-03-02',NULL,NULL),(2407,2,'270','','2021-03-18 00:58:48','','2021-03-18',NULL,NULL),(2408,2,'271','','2021-05-07 00:20:19','','2021-05-07',NULL,NULL),(2409,2,'272','','2021-05-18 09:21:58','','2021-05-18',NULL,NULL),(2410,2,'273','','2021-06-09 13:51:46','','2021-06-09',NULL,NULL),(2411,2,'274','','2021-09-05 10:16:48','','2021-09-05',NULL,NULL),(2412,2,'275','','2021-10-22 16:16:11','','2021-10-22',NULL,NULL),(2413,2,'276','','2021-11-21 23:41:02','','2021-11-21',NULL,NULL),(2414,2,'277','','2022-01-30 23:22:17','Stable version for EMOTORS on 30-01-2022','2022-01-30',NULL,NULL),(2415,2,'278','','2022-02-20 23:02:21','','2022-02-20',NULL,NULL),(2416,2,'279','','2022-04-09 21:57:51','','2022-04-09',NULL,NULL),(2417,11,'526','','2022-05-27 01:43:44','','2022-05-27',NULL,NULL),(2418,40,'467','','2022-05-27 09:35:58','','2022-05-27',NULL,NULL),(2419,40,'468','','2022-05-30 00:17:34','','2022-05-30',NULL,NULL),(2420,40,'469','','2022-06-02 14:17:11','','2022-06-02',NULL,NULL),(2421,40,'470','','2022-06-04 00:42:06','','2022-06-04',NULL,NULL),(2422,40,'471','','2022-06-04 02:16:30','','2022-06-04',NULL,NULL),(2423,40,'472','','2022-06-04 02:21:20','','2022-06-04',NULL,NULL),(2424,40,'473','','2022-06-10 15:54:34','','2022-06-10',NULL,NULL),(2425,40,'474','','2022-06-10 17:06:51','','2022-06-10',NULL,NULL),(2426,40,'475','','2022-06-10 19:26:09','','2022-06-10',NULL,NULL),(2427,40,'476','','2022-06-15 16:26:59','','2022-06-15',NULL,NULL),(2428,40,'477','','2022-06-15 17:36:36','','2022-06-15',NULL,NULL),(2429,40,'478','','2022-06-15 22:33:10','','2022-06-15',NULL,NULL),(2430,40,'479','','2022-06-21 15:35:28','','2022-06-21',NULL,NULL),(2431,40,'480','','2022-06-23 09:41:42','','2022-06-23',NULL,NULL),(2432,40,'481','','2022-06-23 11:08:07','','2022-06-23',NULL,NULL),(2433,40,'482','','2022-06-26 17:50:54','','2022-06-26',NULL,NULL),(2434,40,'483','','2022-06-27 18:02:38','','2022-06-27',NULL,NULL),(2435,40,'484','','2022-06-29 13:28:12','','2022-06-29',NULL,NULL),(2436,40,'485','','2022-06-29 22:28:36','Support String Array','2022-06-29',NULL,NULL),(2437,40,'486','','2022-07-01 10:33:17','','2022-07-01',NULL,NULL),(2438,40,'487','','2022-07-01 14:36:29','','2022-07-01',NULL,NULL),(2439,40,'488','','2022-07-04 22:45:24','','2022-07-04',NULL,NULL),(2440,40,'489','','2022-07-05 20:58:46','','2022-07-05',NULL,NULL),(2441,40,'490','','2022-07-06 13:20:12','','2022-07-06',NULL,NULL),(2442,40,'491','','2022-07-18 22:41:32','','2022-07-18',NULL,NULL),(2443,40,'492','','2022-07-18 22:41:39','','2022-07-18',NULL,NULL),(2444,40,'493','','2022-07-19 12:07:09','Trace on write operation','2022-07-19',NULL,NULL),(2445,40,'494','','2022-07-25 15:03:41','Change in ProcessReadWrappedServer. ppDataValue is now allocated in the method','2022-07-25',NULL,NULL),(2446,40,'495','','2022-07-26 13:56:31','fix broken name','2022-07-26',NULL,NULL),(2447,40,'496','','2022-07-26 14:01:23','','2022-07-26',NULL,NULL),(2448,40,'497','','2022-07-26 14:01:56','','2022-07-26',NULL,NULL),(2449,40,'498','','2022-07-26 14:04:08','','2022-07-26',NULL,NULL),(2450,40,'499','','2022-07-26 14:05:31','','2022-07-26',NULL,NULL),(2451,40,'500','','2022-07-26 15:09:03','','2022-07-26',NULL,NULL),(2452,40,'501','','2022-07-26 17:17:40','','2022-07-26',NULL,NULL),(2453,40,'502','','2022-07-28 10:39:58','','2022-07-28',NULL,NULL),(2454,40,'503','','2022-07-30 16:52:46','','2022-07-30',NULL,NULL),(2455,40,'504','','2022-07-30 16:53:21','','2022-07-30',NULL,NULL),(2456,40,'505','','2022-07-30 16:54:11','','2022-07-30',NULL,NULL),(2457,40,'506','','2022-08-01 10:39:45','','2022-08-01',NULL,NULL),(2458,40,'507','','2022-08-01 11:59:08','','2022-08-01',NULL,NULL),(2459,40,'508','','2022-08-04 13:33:32','','2022-08-04',NULL,NULL),(2460,40,'509','','2022-08-04 13:33:53','','2022-08-04',NULL,NULL),(2461,40,'510','','2022-08-12 09:07:32','','2022-08-12',NULL,NULL),(2462,40,'511','','2022-08-13 19:28:46','','2022-08-13',NULL,NULL),(2463,40,'512','','2022-08-13 19:28:56','','2022-08-13',NULL,NULL),(2464,40,'513','','2022-08-17 11:51:44','Temporary version stable. Array implementation in progress.','2022-08-17',NULL,NULL),(2465,40,'514','','2022-08-17 11:51:53','','2022-08-17',NULL,NULL),(2466,11,'527','','2022-05-27 15:11:12','','2022-05-27',NULL,NULL),(2467,11,'528','','2022-06-04 02:22:25','','2022-06-04',NULL,NULL),(2468,11,'529','','2022-06-09 07:14:54','','2022-06-09',NULL,NULL),(2469,11,'530','','2022-06-23 22:19:44','Change in HA initialization','2022-06-23',NULL,NULL),(2470,11,'531','','2022-06-27 09:57:21','','2022-06-27',NULL,NULL),(2471,11,'532','','2022-06-29 21:34:20','Fix regression in Alarm Refresh','2022-06-29',NULL,NULL),(2472,11,'533','','2022-07-20 10:41:20','','2022-07-20',NULL,NULL),(2473,11,'534','','2022-07-25 16:14:46','','2022-07-25',NULL,NULL),(2474,11,'535','','2022-07-30 16:49:20','','2022-07-30',NULL,NULL),(2475,11,'536','','2022-08-03 09:33:09','','2022-08-03',NULL,NULL),(2476,11,'537','','2022-08-07 20:48:00','','2022-08-07',NULL,NULL),(2477,11,'538','','2022-08-13 19:28:36','','2022-08-13',NULL,NULL),(2478,11,'539','','2022-09-09 15:51:35','','2022-09-09',NULL,NULL),(2479,11,'540','','2022-09-21 13:46:44','','2022-09-21',NULL,NULL),(2480,40,'515','','2022-08-21 16:27:28','UDT Encoder done','2022-08-21',NULL,NULL),(2481,40,'516','','2022-08-22 10:17:34','','2022-08-22',NULL,NULL),(2482,40,'517','','2022-09-01 15:18:28','','2022-09-01',NULL,NULL),(2483,40,'518','','2022-09-05 09:24:10','','2022-09-05',NULL,NULL),(2484,40,'519','','2022-09-05 11:21:06','','2022-09-05',NULL,NULL),(2485,40,'520','','2022-09-05 11:42:13','','2022-09-05',NULL,NULL),(2486,40,'521','','2022-09-05 19:37:49','','2022-09-05',NULL,NULL),(2487,40,'522','','2022-09-08 15:32:50','','2022-09-08',NULL,NULL),(2488,40,'523','','2022-09-09 15:49:37','','2022-09-09',NULL,NULL),(2489,40,'524','','2022-09-09 15:58:04','','2022-09-09',NULL,NULL),(2490,40,'525','','2022-09-14 22:46:42','','2022-09-14',NULL,NULL),(2491,40,'526','','2022-09-28 22:37:55','','2022-09-28',NULL,NULL),(2492,39,'32','','2021-01-03 01:03:08','VS2017 and Qt5.14 migration','2021-01-03',NULL,NULL),(2493,39,'33','','2021-01-03 01:33:20','','2021-01-03',NULL,NULL),(2494,39,'34','','2021-02-21 02:54:49','','2021-02-21',NULL,NULL),(2495,39,'35','','2021-02-25 20:14:50','','2021-02-25',NULL,NULL),(2496,39,'36','','2021-03-18 00:58:56','','2021-03-18',NULL,NULL),(2497,39,'37','','2021-03-20 00:05:19','','2021-03-20',NULL,NULL),(2498,39,'38','','2022-09-09 15:50:53','','2022-09-09',NULL,NULL),(2499,39,'39','','2022-09-16 11:25:42','','2022-09-16',NULL,NULL),(2500,22,'163','Michel','2020-05-28 17:03:07','','2020-05-28',NULL,1),(2501,22,'164','Michel','2020-05-28 17:03:47','','2020-05-28',NULL,1),(2502,22,'165','Michel','2020-05-28 17:06:00','','2020-05-28',NULL,1),(2503,22,'166','Michel','2020-05-28 17:07:06','','2020-05-28',NULL,1),(2504,22,'167','Michel','2020-06-24 18:30:28','','2020-06-24',NULL,1),(2505,22,'168','Michel','2020-11-10 23:53:27','','2020-11-10',NULL,1),(2506,22,'169','Michel','2020-11-12 09:06:17','','2020-11-12',NULL,1),(2507,22,'170','','2020-12-17 22:15:07','','2020-12-17',NULL,NULL),(2508,22,'171','','2021-01-28 22:18:17','','2021-01-28',NULL,NULL),(2509,22,'172','','2021-02-06 01:07:00','','2021-02-06',NULL,NULL),(2510,22,'173','','2021-02-21 02:54:35','','2021-02-21',NULL,NULL),(2511,22,'174','','2021-03-18 00:59:39','','2021-03-18',NULL,NULL),(2512,22,'175','','2021-03-20 00:04:56','','2021-03-20',NULL,NULL),(2513,22,'176','','2021-04-14 16:47:10','','2021-04-14',NULL,NULL),(2514,22,'177','','2021-04-29 22:22:52','','2021-04-29',NULL,NULL),(2515,22,'178','','2021-06-26 19:04:22','','2021-06-26',NULL,NULL),(2516,22,'179','','2021-08-12 20:39:14','','2021-08-12',NULL,NULL),(2517,22,'180','','2021-08-13 15:30:41','','2021-08-13',NULL,NULL),(2518,22,'181','','2021-09-05 10:17:00','','2021-09-05',NULL,NULL),(2519,22,'182','','2021-10-22 16:16:21','','2021-10-22',NULL,NULL),(2520,22,'183','','2021-11-21 23:41:16','','2021-11-21',NULL,NULL),(2521,22,'184','','2021-12-04 00:56:28','','2021-12-04',NULL,NULL),(2522,22,'185','','2021-12-10 07:46:26','','2021-12-10',NULL,NULL),(2523,22,'186','','2021-12-19 23:33:44','','2021-12-19',NULL,NULL),(2524,22,'187','','2021-12-19 23:44:16','','2021-12-19',NULL,NULL),(2525,22,'188','','2022-05-14 00:55:50','','2022-05-14',NULL,NULL),(2526,22,'189','','2022-08-04 13:33:21','','2022-08-04',NULL,NULL),(2527,22,'190','','2022-08-31 16:42:44','','2022-08-31',NULL,NULL),(2528,22,'191','','2022-09-14 22:46:55','','2022-09-14',NULL,NULL),(2529,40,'527','','2022-10-13 16:35:54','','2022-10-13',NULL,NULL),(2530,40,'528','','2022-10-15 20:11:20','','2022-10-15',NULL,NULL),(2531,40,'529','','2022-10-17 16:00:51','','2022-10-17',NULL,NULL),(2532,40,'530','','2022-10-17 19:12:47','','2022-10-17',NULL,NULL),(2533,40,'531','','2022-10-19 08:06:56','','2022-10-19',NULL,NULL),(2534,40,'532','','2022-10-21 17:22:23','Fixe minor leak in block read','2022-10-21',NULL,NULL),(2535,40,'533','','2022-10-22 19:08:09','','2022-10-22',NULL,NULL),(2536,40,'534','','2022-10-31 20:38:50','','2022-10-31',NULL,NULL),(2537,40,'535','','2022-11-09 10:31:46','Fix outputArguments issue. s was missing','2022-11-09',NULL,NULL),(2538,40,'536','','2022-11-24 06:48:09','','2022-11-24',NULL,NULL),(2539,40,'537','','2022-12-04 09:10:01','','2022-12-04',NULL,NULL),(2540,43,'69','','2022-09-09 15:58:23','','2022-09-09',NULL,NULL),(2541,43,'70','','2022-09-14 19:52:31','','2022-09-14',NULL,NULL),(2542,43,'71','','2022-09-20 23:15:01','','2022-09-20',NULL,NULL),(2543,43,'72','','2022-09-25 22:41:01','','2022-09-25',NULL,NULL),(2544,43,'73','','2022-10-02 22:28:31','','2022-10-02',NULL,NULL),(2545,43,'74','','2022-10-31 20:38:35','','2022-10-31',NULL,NULL),(2546,43,'75','','2022-11-23 10:56:54','','2022-11-23',NULL,NULL),(2547,40,'538','','2022-12-13 11:08:26','','2022-12-13',NULL,NULL),(2548,40,'539','','2022-12-14 08:22:56','','2022-12-14',NULL,NULL),(2549,40,'540','','2022-12-15 10:19:17','','2022-12-15',NULL,NULL),(2550,40,'541','','2022-12-26 21:46:10','','2022-12-26',NULL,NULL),(2551,40,'542','','2022-12-26 21:47:02','','2022-12-26',NULL,NULL),(2552,40,'543','','2022-12-30 09:36:00','','2022-12-30',NULL,NULL),(2553,40,'544','','2022-12-31 01:31:03','','2022-12-31',NULL,NULL),(2554,40,'545','','2022-12-31 01:39:08','','2022-12-31',NULL,NULL),(2555,40,'546','','2023-01-07 21:21:58','','2023-01-07',NULL,NULL),(2556,40,'547','','2023-01-10 16:39:21','','2023-01-10',NULL,NULL),(2557,40,'548','','2023-01-11 20:43:00','','2023-01-11',NULL,NULL),(2558,40,'549','','2023-01-12 16:33:56','','2023-01-12',NULL,NULL),(2559,40,'550','','2023-01-13 07:01:45','','2023-01-13',NULL,NULL),(2560,40,'551','','2023-01-13 09:21:59','','2023-01-13',NULL,NULL),(2561,40,'552','','2023-01-13 22:43:07','','2023-01-13',NULL,NULL),(2562,40,'553','','2023-01-16 08:51:37','','2023-01-16',NULL,NULL),(2563,40,'554','','2023-01-16 19:11:24','','2023-01-16',NULL,NULL),(2564,40,'555','','2023-01-16 19:11:41','','2023-01-16',NULL,NULL),(2565,20,'59','Michel','2017-12-03 08:50:52','','2017-12-03',NULL,1),(2566,20,'60','Michel','2018-03-07 13:21:05','','2018-03-07',NULL,1),(2567,20,'61','Michel','2018-03-26 13:10:32','','2018-03-26',NULL,1),(2568,20,'62','Michel','2018-04-26 15:34:14','','2018-04-26',NULL,1),(2569,20,'63','Michel','2018-09-13 11:39:24','','2018-09-13',NULL,1),(2570,20,'64','Michel','2018-10-17 17:25:00','','2018-10-17',NULL,1),(2571,20,'65','Michel','2018-12-15 11:46:35','','2018-12-15',NULL,1),(2572,20,'66','Michel','2018-12-20 16:34:28','','2018-12-20',NULL,1),(2573,20,'67','Michel','2019-01-15 16:44:10','','2019-01-15',NULL,1),(2574,20,'68','Michel','2019-03-03 17:48:15','','2019-03-03',NULL,1),(2575,20,'69','Michel','2019-09-05 11:24:45','','2019-09-05',NULL,1),(2576,20,'70','Michel','2020-07-16 09:05:25','','2020-07-16',NULL,1),(2577,20,'71','Michel','2020-07-16 10:22:13','','2020-07-16',NULL,1),(2578,20,'72','Michel','2020-07-16 22:40:56','','2020-07-16',NULL,1),(2579,20,'73','Michel','2020-07-17 23:40:50','','2020-07-17',NULL,1),(2580,20,'74','Michel','2020-07-20 18:25:11','','2020-07-20',NULL,1),(2581,20,'75','','2021-01-18 16:03:12','','2021-01-18',NULL,NULL),(2582,20,'76','','2021-01-26 22:16:09','','2021-01-26',NULL,NULL),(2583,20,'77','','2021-03-02 15:11:05','','2021-03-02',NULL,NULL),(2584,20,'78','','2021-04-30 21:47:36','','2021-04-30',NULL,NULL),(2585,20,'79','','2021-12-27 23:09:42','','2021-12-27',NULL,NULL),(2586,20,'80','','2022-01-25 11:30:50','','2022-01-25',NULL,NULL),(2587,20,'81','','2022-02-01 21:21:53','','2022-02-01',NULL,NULL),(2588,20,'82','','2023-01-17 10:43:52','','2023-01-17',NULL,NULL),(2589,20,'83','','2023-01-17 10:44:28','','2023-01-17',NULL,NULL),(2590,40,'556','','2023-01-17 10:51:45','','2023-01-17',NULL,NULL),(2591,20,'84','','2023-01-17 10:46:07','','2023-01-17',NULL,NULL),(2592,20,'85','','2023-01-17 10:46:15','','2023-01-17',NULL,NULL),(2593,20,'86','','2023-01-17 10:46:21','','2023-01-17',NULL,NULL),(2594,20,'87','','2023-01-17 10:46:28','','2023-01-17',NULL,NULL),(2595,20,'88','','2023-01-17 10:46:34','','2023-01-17',NULL,NULL),(2596,20,'89','','2023-01-17 11:11:00','','2023-01-17',NULL,NULL),(2597,39,'40','','2022-10-31 20:39:17','','2022-10-31',NULL,NULL),(2598,39,'41','','2022-11-16 16:26:31','','2022-11-16',NULL,NULL),(2599,39,'42','','2023-01-18 13:58:41','','2023-01-18',NULL,NULL),(2600,40,'557','','2023-01-18 10:45:03','','2023-01-18',NULL,NULL),(2601,40,'558','','2023-01-18 17:14:54','','2023-01-18',NULL,NULL),(2602,40,'559','','2023-01-18 21:07:55','','2023-01-18',NULL,NULL),(2603,40,'560','','2023-01-20 15:42:31','','2023-01-20',NULL,NULL),(2604,40,'561','','2023-01-20 17:50:58','','2023-01-20',NULL,NULL),(2605,40,'562','','2023-01-24 08:30:29','','2023-01-24',NULL,NULL),(2606,40,'563','','2023-01-24 11:10:13','','2023-01-24',NULL,NULL),(2607,40,'564','','2023-01-25 10:41:00','','2023-01-25',NULL,NULL),(2608,40,'565','','2023-02-04 18:13:24','','2023-02-04',NULL,NULL),(2609,40,'566','','2023-02-09 15:38:55','','2023-02-09',NULL,NULL),(2610,40,'567','','2023-02-09 17:58:08','','2023-02-09',NULL,NULL),(2611,46,'1','','2023-02-11 15:13:08','','2023-02-11',NULL,NULL),(2612,46,'2','','2023-02-11 18:23:08','','2023-02-11',NULL,NULL),(2613,46,'3','','2023-02-11 18:56:37','','2023-02-11',NULL,NULL),(2614,46,'4','','2023-02-11 19:01:45','','2023-02-11',NULL,NULL),(2615,46,'5','','2023-02-11 19:02:12','','2023-02-11',NULL,NULL),(2616,40,'568','','2023-02-18 19:57:58','','2023-02-18',NULL,NULL),(2617,40,'569','','2023-02-18 19:58:26','','2023-02-18',NULL,NULL);
/*!40000 ALTER TABLE `changesets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `changesets_issues`
--
DROP TABLE IF EXISTS `changesets_issues`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `changesets_issues` (
`changeset_id` int(11) NOT NULL,
`issue_id` int(11) NOT NULL,
UNIQUE KEY `changesets_issues_ids` (`changeset_id`,`issue_id`),
KEY `index_changesets_issues_on_issue_id` (`issue_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `changesets_issues`
--
LOCK TABLES `changesets_issues` WRITE;
/*!40000 ALTER TABLE `changesets_issues` DISABLE KEYS */;
/*!40000 ALTER TABLE `changesets_issues` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `comments`
--
DROP TABLE IF EXISTS `comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`commented_type` varchar(30) NOT NULL DEFAULT '',
`commented_id` int(11) NOT NULL DEFAULT '0',
`author_id` int(11) NOT NULL DEFAULT '0',
`content` text,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `index_comments_on_commented_id_and_commented_type` (`commented_id`,`commented_type`),
KEY `index_comments_on_author_id` (`author_id`)
) ENGINE=InnoDB AUTO_INCREMENT=92 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `comments`
--
LOCK TABLES `comments` WRITE;
/*!40000 ALTER TABLE `comments` DISABLE KEYS */;
INSERT INTO `comments` VALUES (1,'News',77,345,'Michel,\r\nla bonne nouvelle c\'est que maintenant effectivement la variable subscriptionDetail semble évoluer correctement (dans la limite de mon client qui pour mémoire se limite à DRG,ALM et EN_SERV)\r\n\r\nLa mauvaise c\'est que le phénomène expliqué dans mon message concernant la non remontée est toujours là. ','2018-01-29 16:54:33','2018-01-29 16:54:33'),(2,'News',78,328,'Bonjour,\r\n\r\npas de problème, je regarde ça tout de suite.\r\n\r\nCordialement. ','2018-01-30 10:15:08','2018-01-30 10:15:08'),(3,'News',81,333,'Excellent news Michel\r\nLooking forward to the updated code.\r\n\r\nMerci,\r\n\r\nJason ','2018-02-15 06:15:27','2018-02-15 06:15:27'),(4,'News',81,333,'MIchel,\r\n\r\nJust wondering about the test results of the updated codebase.\r\nThanks,\r\n\r\nJason ','2018-02-16 05:52:12','2018-02-16 05:52:12'),(5,'News',82,333,'Michel,\r\n\r\nGot it. \r\nWe have been adding only a few subscriptions; does this mean you are moving to further phases of test beyond session creation/deletion and subscription management?.\r\nWhen do you expect the fix would be available?\r\n\r\nMerci,\r\n\r\nJason ','2018-02-16 17:53:14','2018-02-16 17:53:14'),(6,'News',85,333,'Thanks for elaboration Miechl','2018-03-07 13:21:09','2018-03-07 13:21:09'),(7,'News',87,333,'Thanks Michel.\r\nWe will run it and get back to you if we still required any guidance.\r\n\r\nRegards,\r\n\r\nJason','2018-03-10 02:33:37','2018-03-10 02:33:37'),(8,'News',89,333,'Hello Michel,\r\n\r\nWe have been working hard to update/fix/add quite a lot of codes to the client lib.\r\nWe are wrapping up and going to share the updates with you soon.\r\n\r\nWhat would be most efficient way for us to show you the changes - diff logs, maybe?\r\n\r\nThanks,\r\n\r\nJason \r\n\r\n','2018-04-25 01:37:14','2018-04-25 01:37:14'),(9,'News',104,1,'Le wrapper écoute sur opc.tcp://SV652SIEGIDIUM1.prod.adp.fr:756/OLW-Wrapper L\'harmonisateur est connecté','2018-11-03 21:23:48','2018-11-03 21:23:48'),(10,'News',132,424,'Bonjour,\r\nmerci pour la màj, je vais faire les tests et je vous tiens au courant.\r\nCordialement,\r\nMaycko LOUIS','2020-09-29 17:51:06','2020-09-29 17:51:06'),(11,'News',134,1,'Tested ?','2020-10-26 17:40:15','2020-10-26 17:40:15'),(12,'News',141,424,'Bonjour,\r\nMerci pour cette nouvelle livraison. \r\nNous allons intégré/testé cette version et nous vous tiendrons informé.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2020-11-23 13:30:12','2020-11-23 13:30:12'),(13,'News',142,461,'Bonjouor Mr Condemine,\r\n\r\nNous avons un accès TeamViewer opérationnel dont les codes d\'accès sont le suivants: \r\nID: 1 832 276 048\r\nMot de passe: 5u68ev\r\n\r\nSi cela vous convient, je transmets la commande au service achat immédiatement. Un accès RDP nécessite l\'intervention d\'un service externe qui retarderait le début du projet.\r\n\r\nDans l\'attente de votre retour à ce sujet.\r\n\r\nCordialement,\r\nCédric Counotte.\r\n','2020-12-02 16:29:47','2020-12-02 16:29:47'),(14,'News',147,461,'Non, nous avons exécuté la version du 7-1 pendant une matinée, mais celle-ci plante tout le temps et est donc inutilisable. J\'ai donc remis la version du 28-12 qui est plus stable.\r\n\r\nJe vous ai déjà envoyé plusieurs dumps correspondant, cette version en génère régulièrement comme celui-ci (toutes les 2 à 3 minutes):\r\n\r\n[08:09:34] Unhandled: C0000409\r\n[08:09:34] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_080934.dmp\r\n[08:09:34] Dump 1 complete: 10 MB written in 0.1 seconds\r\n[08:09:34] Dump count reached.\r\n\r\n\r\nCordialement,\r\nCédric Counotte.','2021-01-11 08:10:20','2021-01-11 08:10:20'),(15,'News',147,461,'Nouveau crash:\r\n\r\n[08:14:50] Exception: 80000003.BREAKPOINT\r\n[08:14:50] Exception: C0000374\r\n[08:14:50] Unhandled: C0000374\r\n[08:14:50] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_081450.dmp\r\n[08:14:50] Dump 1 complete: 11 MB written in 0.1 seconds\r\n[08:14:50] Dump count reached.\r\n\r\n','2021-01-11 08:17:07','2021-01-11 08:17:07'),(16,'News',147,461,'Nouveau crash:\r\n\r\n[08:20:15] Exception: 80000003.BREAKPOINT\r\n[08:20:15] Exception: C0000374\r\n[08:20:15] Unhandled: C0000374\r\n[08:20:15] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_082015.dmp\r\n[08:20:15] Dump 1 complete: 12 MB written in 0.1 seconds\r\n[08:20:16] Dump count reached.\r\n','2021-01-11 08:20:29','2021-01-11 08:20:29'),(17,'News',147,461,'Encore...\r\n\r\n[08:21:36] Unhandled: C0000409\r\n[08:21:36] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_082136.dmp\r\n[08:21:36] Dump 1 complete: 12 MB written in 0.2 seconds\r\n[08:21:37] Dump count reached.\r\n','2021-01-11 08:21:59','2021-01-11 08:21:59'),(18,'News',147,461,'Et encore\r\n\r\n[08:22:41] Exception: 80000003.BREAKPOINT\r\n[08:22:41] Exception: C0000374\r\n[08:22:41] Unhandled: C0000374\r\n[08:22:41] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_082241.dmp\r\n[08:22:42] Dump 1 complete: 10 MB written in 0.5 seconds\r\n[08:22:42] Dump count reached.\r\n','2021-01-11 08:23:04','2021-01-11 08:23:04'),(19,'News',147,461,'A nouveau\r\n\r\n[08:32:11] Unhandled: C0000409\r\n[08:32:11] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_083211.dmp\r\n[08:32:11] Dump 1 complete: 13 MB written in 0.1 seconds\r\n[08:32:12] Dump count reached.\r\n','2021-01-11 08:39:02','2021-01-11 08:39:02'),(20,'News',147,461,'Et encore un:\r\n\r\n[09:01:32] Unhandled: C0000409\r\n[09:01:32] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_090132.dmp\r\n[09:01:32] Dump 1 complete: 13 MB written in 0.2 seconds\r\n[09:01:32] Dump count reached.\r\n','2021-01-11 09:17:09','2021-01-11 09:17:09'),(21,'News',147,461,'[09:17:06] Unhandled: C0000409\r\n[09:17:06] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_091706.dmp\r\n[09:17:06] Dump 1 complete: 17 MB written in 0.1 seconds\r\n[09:17:07] Dump count reached.\r\n','2021-01-11 09:22:38','2021-01-11 09:22:38'),(22,'News',147,461,'[09:23:21] Exception: 80000003.BREAKPOINT\r\n[09:23:21] Exception: C0000374\r\n[09:23:21] Unhandled: C0000374\r\n[09:23:21] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_092321.dmp\r\n[09:23:21] Dump 1 complete: 14 MB written in 0.1 seconds\r\n[09:23:21] Dump count reached.\r\n','2021-01-11 09:31:46','2021-01-11 09:31:46'),(23,'News',147,1,'Bonjour,\r\nje viens d\'installer une MAJ dite de \"synchronisation\". Merci de m\'informer au prochain CRASH.\r\nCordialement\r\nMichel Condemine','2021-01-11 10:04:41','2021-01-11 10:04:41'),(24,'News',147,461,'Merci pour la MAJ.\r\n\r\nJe viens de regarder et un premier dump a déjà été créé:\r\n\r\n[10:03:11] Exception: 80000003.BREAKPOINT\r\n[10:05:46] Exception: C0000374\r\n[10:05:46] Unhandled: C0000374\r\n[10:05:46] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_100546.dmp\r\n[10:05:47] Dump 1 complete: 14 MB written in 0.1 seconds\r\n[10:05:47] Dump count reached.\r\n','2021-01-11 10:06:36','2021-01-11 10:06:36'),(25,'News',147,1,'Bonjour,\r\nil s\'agissait d\'un crash a l\'arrêt sur la version précédente.\r\nJe ne peux pas l\'exploiter, malheureusement.\r\nCordialement\r\nMichel Condemine','2021-01-11 10:08:26','2021-01-11 10:08:26'),(26,'News',147,461,'Ok je comprends qu\'en mode \'normal\' ceci n\'arrivera pas?\r\n\r\nToujours est-il qu\'un nouveau crash s\'est produit à l\'instant:\r\n\r\n[10:10:37] Unhandled: C0000409\r\n[10:10:38] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_101038.dmp\r\n[10:10:39] Dump 1 complete: 18 MB written in 0.3 seconds\r\n[10:10:39] Dump count reached.\r\n','2021-01-11 10:11:30','2021-01-11 10:11:30'),(27,'News',147,1,'J\'ai procédé ce matin à 10h10 environ à la mise à jour du VPI.\r\nCette mise à jour me permet de synchroniser les binaires en services et mon source.\r\nAvec les codes synchronisés je peux exploiter les dump.\r\nA suivre..','2021-01-11 10:16:50','2021-01-11 10:16:50'),(28,'News',147,461,'Crashes:\r\n\r\n[10:18:39] Unhandled: C0000409\r\n[10:18:39] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_101839.dmp\r\n[10:18:39] Dump 1 complete: 18 MB written in 0.1 seconds\r\n[10:18:40] Dump count reached.\r\n\r\n[10:43:26] Unhandled: C0000409\r\n[10:43:26] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_104326.dmp\r\n[10:43:26] Dump 1 complete: 19 MB written in 0.1 seconds\r\n[10:43:26] Dump count reached.\r\n\r\n\r\nCeci plante complètement le serveur dont le process disparait, et proc dump ne le protège donc pas.\r\n\r\nJ\'espère que vous pourrez les exploiters pour produire une version plus stable, à ce stade je ne peux l\'installer chez un client.','2021-01-11 10:44:39','2021-01-11 10:44:39'),(29,'News',147,1,'Bonjour,\r\nje suis sur le sujet.\r\nJ\'arrive a exploiter les dump. Je ferai sans doute plusieurs MAJ dans le journée.\r\nAvez vous plus d\'information sur la façon de reproduire le problème ?\r\nCordialement\r\nMichel Condemine','2021-01-11 10:47:13','2021-01-11 10:47:13'),(30,'News',147,461,'Bonjour et merci pour le suivi.\r\n\r\nOui, il suffit de recharger le projet UATest depuis UAExpert, ou de quitter UAExpert et de recharger UATest.\r\n\r\nIl arrive aussi qu\'après un crash et relance manuel du serveur, alors qu\'UAExpert est toujours en route, il se reconnecte tout seul et plante immédiatement le serveur.','2021-01-11 10:49:55','2021-01-11 10:49:55'),(31,'News',147,461,'Encore des crashes à répétitions.\r\n\r\nLe dernier, en ajoutant simplement un noeud à afficher dans UA Expert! Ce que fait l\'interface sur de nombreux noead au démarrage ou à la reconnection.\r\n\r\nJe suis assez inquiet sur ce manque de stabilité avec un client pourtant certifié OPC-UA. Je n\'arrive pourtant pas à reproduire ce crash avec notre client, qui lui n\'est pas certifié.\r\n\r\nToujours est-il que lorsque nous configurons une nouvelle ligne d\'automate nous utilisons UA Expert et cette stabilité est primordiale. La version du 28/12 était un peu plus stable à cet égard.\r\n\r\n\r\n[15:45:06] Unhandled: C0000409\r\n[15:45:06] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_154506.dmp\r\n[15:45:06] Dump 1 complete: 23 MB written in 0.1 seconds\r\n[15:45:06] Dump count reached.\r\n\r\n','2021-01-11 15:53:21','2021-01-11 15:53:21'),(32,'News',147,1,'Bonjour,\r\nje n\'ai pas encore procédé à la MAJ.\r\nJe vais le faire dans quelques minutes.\r\nJe vous tiens au courant.\r\nCordialement\r\nMichel Condemine','2021-01-11 15:56:26','2021-01-11 15:56:26'),(33,'News',147,1,'J\'ai installé la mise à jour et j\'ai pu reproduire le problème.\r\nJe continue mes recherches. Je procéderai à une autre MAJ dans l\'AM.\r\n\r\nCordialement\r\nMichel Condemine','2021-01-11 16:16:44','2021-01-11 16:16:44'),(34,'News',148,461,'Bonjour et merci pour la mise à jour.\r\n\r\n[20:32:50] Unhandled: C0000409\r\n[20:32:50] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210111_203250.dmp\r\n[20:32:50] Dump 1 complete: 17 MB written in 0.1 seconds\r\n[20:32:50] Dump count reached.\r\n\r\nNéanmoins il semblerait qu\'il y ai eu d\'autres crash car le start time du serveur était à 6:10 environ. Etait car entre temps nouveau crash et relance du serveur nécessaire.\r\n\r\n[08:09:13] Unhandled: C0000409\r\n[08:09:13] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210112_080913.dmp\r\n[08:09:13] Dump 1 complete: 18 MB written in 0.1 seconds\r\n[08:09:13] Dump count reached.\r\n\r\n\r\nDepuis les journaux windows on peut constater les erreurs à répétition même quand on ne touche à rien:\r\n\r\nErreur 12/01/2021 08:11:39 Application Error 1000 (100)\r\nErreur 12/01/2021 08:09:13 Application Error 1000 (100)\r\nErreur 12/01/2021 07:51:04 Application Error 1000 (100)\r\nErreur 12/01/2021 07:02:55 Application Error 1000 (100)\r\nErreur 12/01/2021 05:49:22 Application Error 1000 (100)\r\nErreur 12/01/2021 05:33:38 Application Error 1000 (100)\r\nErreur 12/01/2021 05:32:20 Application Error 1000 (100)\r\nErreur 12/01/2021 05:30:59 Application Error 1000 (100)\r\nErreur 12/01/2021 05:29:40 Application Error 1000 (100)\r\nErreur 12/01/2021 05:17:31 Application Error 1000 (100)\r\nErreur 12/01/2021 04:58:59 Application Error 1000 (100)\r\nErreur 12/01/2021 04:08:14 Application Error 1000 (100)\r\nErreur 12/01/2021 04:06:55 Application Error 1000 (100)\r\nErreur 12/01/2021 03:08:51 Application Error 1000 (100)\r\nErreur 12/01/2021 03:07:33 Application Error 1000 (100)\r\nErreur 12/01/2021 03:06:13 Application Error 1000 (100)\r\nErreur 12/01/2021 02:48:44 Application Error 1000 (100)\r\nErreur 12/01/2021 02:44:55 Application Error 1000 (100)\r\nErreur 12/01/2021 02:20:25 Application Error 1000 (100)\r\nErreur 12/01/2021 01:59:18 Application Error 1000 (100)\r\nErreur 12/01/2021 01:36:56 Application Error 1000 (100)\r\nErreur 12/01/2021 01:34:54 Application Error 1000 (100)\r\nErreur 12/01/2021 01:33:36 Application Error 1000 (100)\r\nErreur 12/01/2021 00:56:09 Application Error 1000 (100)\r\nErreur 12/01/2021 00:42:23 Application Error 1000 (100)\r\nErreur 12/01/2021 00:39:55 Application Error 1000 (100)\r\nErreur 12/01/2021 00:34:09 Application Error 1000 (100)\r\nErreur 11/01/2021 22:27:48 Application Error 1000 (100)\r\nErreur 11/01/2021 22:26:30 Application Error 1000 (100)\r\nErreur 11/01/2021 22:25:12 Application Error 1000 (100)\r\nErreur 11/01/2021 22:23:54 Application Error 1000 (100)\r\nErreur 11/01/2021 22:22:36 Application Error 1000 (100)\r\nErreur 11/01/2021 22:21:18 Application Error 1000 (100)','2021-01-12 08:16:55','2021-01-12 08:16:55'),(35,'News',148,461,'A nouveau\r\n\r\n[08:23:01] Unhandled: C0000409\r\n[08:23:01] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210112_082301.dmp\r\n[08:23:02] Dump 1 complete: 18 MB written in 0.1 seconds\r\n[08:23:02] Dump count reached.\r\n','2021-01-12 08:26:17','2021-01-12 08:26:17'),(36,'News',148,461,'Bonjour,\r\n\r\nJe constate avec plaisir que UA Expert ne plante plus le serveur, même avec les diagnostiques.\r\n\r\nIl ne reste donc plus que ces crashs (409) plus ou moins aléatoire, mais assez fréquent.\r\n\r\nAvez-vous pu analyser les derniers dumps ?\r\n\r\nCordialement,\r\nCédric.','2021-01-12 13:10:43','2021-01-12 13:10:43'),(37,'News',148,1,'Bonjour,\r\navec la MAJ que j\'ai réalisé à 12h00 il ne devrait plus y avoir de 0xc0000409 ni de crash.\r\nJe continue de surveiller.\r\n\r\nCordialement\r\nMichel Condemine','2021-01-12 13:19:00','2021-01-12 13:19:00'),(38,'News',148,461,'En effet, j\'étais étonné que depuis une heure il ne plantait pas, mais je n\'avais pas vue votre mise à jour regardant la date de modification de l\'executable et non des dlls.\r\n\r\nMerci,\r\nCédric.','2021-01-12 13:21:16','2021-01-12 13:21:16'),(39,'News',148,1,'J\'avais posté une news pour vous en informer mais le redmine ne l\'a pas relayé.\r\nRedmine bug ;)\r\nJe disais dans le post que j\'ai désactivé la trace sur les Vpi que je suspecte être à l\'origine que problème.\r\nJe vais créer une issue dans ce sens.\r\n\r\nCordialement\r\nMichel Condemine','2021-01-12 13:24:05','2021-01-12 13:24:05'),(40,'News',149,461,'Bonjour,\r\n\r\nC\'est noté, la machine est libre pour vos tests.\r\n\r\nCordialement,\r\nCédric.','2021-01-12 16:34:13','2021-01-12 16:34:13'),(41,'News',153,459,'Bonjour Monsieur Condemine, \r\n\r\nLe logiciel Tia portal s\'installe sur le PC, pour le VPN nous avons redémarré la box, \r\nAujourd\'hui nous avons constaté un problème sur les Dints (double int). Sur le VPI de l\'automate, nous avons des NodeID int16 puis des int32 et pour finir des réels dans cet ordre. Le problème est que le dernier int32 et le premier réel, nous n\'arrivons pas à récupérer les valeurs. Existe-t-il une exception sur les int32 comme pour les réels ? (faire N-2 pour l\'adresse).\r\nDans l\'attente de votre réponse.\r\n\r\nCordialement \r\nAlexandre Macé','2021-01-27 19:42:15','2021-01-27 19:42:15'),(42,'News',177,424,'Bonjour M. Condemine,\r\nJ\'essaye actuellement de vérifier la connexion entre le publisher et le broker HiveMQ mais apparemment le publisher n\'arrive pas à se connecter.\r\nJ\'ai réalisé toutes les étapes ci-dessus mais malheureusement je reste bloqué à l\'étape 12.\r\nJ\'ai vérifié dans le fichier log \"OpenOpcUaConfigManager.log\" que le \"libVpiUaMqttJsonPub.so\" avait bien été chargé, tout me semble correct de ce côté là.\r\n> 2021-09-22T13:59:11.000Z SERVER_ERROR libVpiUaMqttJsonPub.so was properly loaded\r\n> ..\r\n> 2021-09-22T13:59:11.000Z SERVER_ERROR Reference DeviceName for Vpi libVpiUaMqttJsonPub.so version: 0.0.0.0 is Publisher\r\n> 2021-09-22T13:59:11.000Z SERVER_ERROR Vpi libVpiUaMqttJsonPub.so loaded sucessfully\r\n\r\nJ\'ai vérifié le fichier log \"Publisher-00150.log\", il est vide, je n\'ai donc aucune erreur. \r\nJ\'ai modifié le fichier de config \"Publisher-00150.dat\" pour l\'affichage des log INFO/DEBUG (TRACE_LEVEL) et je constate que la configuration avait bien été prise en compte puisque le Publisher charge bien la config.\r\n> 2021-09-22T14:27:26.000Z INFO LoadConfigurationFile .//Publisher-00150.dat succeeded\r\n\r\nTout me semble OK pour que le publisher fonctionne mais rien n\'y fait.\r\n\r\nPour info la machine qui héberge le Broker MQTT est aussi la machine avec la client OPCUA.\r\nLorsque je démarre le serveur OPCUA/MQTTPub sur la machine Cyclomix, le client OPCUA de la machine distante arrive à se connecter au serveur OPCUA mais le Broker ne voit pas le client qu\'est censé créer le \"Publisher\".\r\nJ\'ai fait un tcpdump puis wireshark, je vois bien passer les trames à destination du port 1805(OPCUA) mais rien à destination du port 1883(MQTT).\r\n\r\n\r\nSecond point, \r\nlorsque je me connecte sur le serveur OPCUA, je synchronise les timestamps, j\'ai un status code \"Good\", \r\nau bout d\'un certains temps, j\'ai un status code \"BadWaitingForInitialData\". Quand je fais un refresh de la data, j\'ai de nouveau un status \"Good\".\r\nEt si je change une valeur, la valeur n\'est pas enregistrée. Avez-vous une idée de l\'origine de ces phénomènes?','2021-09-22 16:55:44','2021-09-22 16:55:44'),(43,'News',177,1,'Bonjour,\r\nPourriez vous réaliser les actions suivantes :\r\n# Lancer Wireshark afin de voir si il y a une tentative d\'ouverture de session\r\n# Faire un telnet sur le broker afin de vérifier qu\'il est accessible: telnet xxx.xxx.xxx.xxx 1883\r\n\r\nMerci d\'ouvrir un ticket sur le sujet.\r\n\r\nCordialement\r\nMichel Condemine','2021-09-22 17:20:28','2021-09-22 17:20:28'),(44,'News',177,1,'Après relecture de votre message il semble que le port 1883 doit être fermé.\r\nPouvez vous vérifier si un FW n\'ai pas actif. Windows ou autre ?\r\nCordialement\r\nMichel Condemine','2021-09-22 20:19:51','2021-09-22 20:19:51'),(45,'News',177,424,'Bonjour M. Condemine,\r\nAprès quelques vérifications il semblerait que ce problème était en partie lié à la \"découverte de réseau\" qui était désactivé sur Windows.\r\nJ\'ai vérifié de plus près avec wireshark et j\'ai constaté que le \"Publisher\" essayait d\'initié une connexion sur le port 1883. l\'état de la connexion restait en \"SYN_SENT\".\r\nUne fois la découverte de réseau activée, j\'ai pu apercevoir une connexion sur le broker. \r\nJ\'ai vérifié avec wireshark, le \"Publisher\" a bien établi la connexion avec le broker et a commencé la publication de data.\r\nPar contre j\'ai un nouveau problème que j\'ai signalé dans les tickets/demandes (Anomalie #604).\r\n\r\nCordialement,\r\nMaycko LOUIS','2021-09-23 13:08:01','2021-09-23 13:08:01'),(46,'News',179,432,'Redmine est bien accessible. Je revérifie demain matin en ouvrant un ticket \r\n\r\nMichael','2021-10-13 18:52:29','2021-10-13 18:52:29'),(47,'News',186,432,'C\'est noté, nous attendons donc une relivraison des binaires \r\n\r\nCordialement, \r\n\r\nMichael','2021-11-04 08:51:35','2021-11-04 08:51:35'),(48,'News',186,1,'Bonjour,\r\nj\'ai terminé la vérification du VpiValuesInit et du VfiPgSql.\r\nJ\'entame la vérification du VpiUaClient. La livraison serait faite ensuite.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-04 14:13:59','2021-11-04 14:13:59'),(49,'News',186,432,'Bonjour, \r\n\r\nNous n\'avons toujours pas reçu les binaires. Etes vous toujours sur le VpiUaClient ? \r\n\r\nCordialement, \r\n\r\nMichael','2021-11-05 18:16:37','2021-11-05 18:16:37'),(50,'News',186,1,'Bonjour,\r\nj\'ai été en call toute l\'AM avec EMOTORS.\r\nJe vais packager les binaires dans la soirée.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-05 18:24:00','2021-11-05 18:24:00'),(51,'News',186,432,'Bonjour M. Condemine, \r\n\r\nLa livraison effectuée ne contient pas la VfiLibrary. \r\n\r\nPourriez vous svp nous la rajouter? \r\n\r\nMichael','2021-11-08 09:28:56','2021-11-08 09:28:56'),(52,'News',186,1,'Bonjour,\r\nje vais vous faire une nouvelle livraison contenant les fruits du travail de ce week-end.\r\nPar ailleurs, veuillez noter que Deleaker a détecté 9 fuites dans le VpiPlant et 8 dans le VpiLine.\r\n\r\n\r\nCordialement\r\nMichel Condemine','2021-11-08 09:56:00','2021-11-08 09:56:00'),(53,'News',186,432,'Merci pour ces informations. \r\n\r\nNous regarderons ces fuites ASAP. \r\nPour info, EMOTORS nous ont relancé concernant les binaires\r\n\r\n\r\nCordialement, \r\n\r\nMichael','2021-11-08 11:25:48','2021-11-08 11:25:48'),(54,'News',201,1,'Repost','2021-12-27 21:34:53','2021-12-27 21:34:53'),(55,'News',201,1,'Bonjour,\r\npour tenir compte de cette modification. \r\nLes VpiS7, VpuUaClient, VpiValuesInit ont été modifié.\r\nUne distribution sera disponible dans la semaine.\r\n\r\nPourriez vous mettre à jour vos Vpi relatifs au projet EMOTORS ?\r\n\r\nCordialement\r\nMichel Condemine','2021-12-27 23:01:20','2021-12-27 23:01:20'),(56,'News',222,436,'Bonsoir Michel,\r\n\r\nMerci pour toutes les livraisons !\r\n\r\nPour information notre plan est le suivant :\r\n1) identifier les modifications à apporter dans nos VPIs/Codes puis faire les modifications - en cours (nous organiserons un call tous ensemble si nécessaire)\r\n2) recompiler l\'ensemble et le tester en back-office\r\n3) livraison à eMotors semaine prochaine\r\n\r\nCette semaine, en accord avec Lionel, nous avons déployé la solution PM/LM colocalisés sur LM sur Usinage Cover, Usinage Main et nous déploierons Prépa-Stack demain.\r\nRotor est prévu pour lundi prochain.\r\n\r\nRestera les 2 \"pain points\" suivants à traiter au plus vite :\r\nA) Modification à apporter dans OOUA pour l\'intégration des Alarmes OPC UA avec Genesis64 \r\nB) Modification du VpiUaClient et du VpiS7 pour la suppression des caractères indésirables (retour charriot, code ASCII 13 et caractères vides, code ASCII 157).\r\nA discuter ASAP.\r\n\r\nCordialement,\r\nChris','2022-02-24 19:30:31','2022-02-24 19:30:31'),(57,'News',234,1,'Commented for fix','2022-03-29 00:41:31','2022-03-29 00:41:31'),(58,'News',243,1,'*C API tutorial* \r\nhttps://xgboost.readthedocs.io/en/stable/tutorials/c_api_tutorial.html','2022-04-28 22:00:07','2022-04-28 22:00:07'),(59,'News',255,545,'bonjour,\r\n\r\nNous constatons le même problème avec la nouvelle version de Ximulator ImerysId dans EquipmentBaseType est toujours de type definition BaseDataVariableType au lieu de TagVariableType\r\n\r\nCordialement,\r\nEquipe Inetum','2022-06-23 10:13:12','2022-06-23 10:13:12'),(60,'News',255,545,'pour information le version du modèle utilisée est la V.1.0.8\r\n\r\nCordialement,\r\nEquipe Inetum','2022-06-23 10:24:02','2022-06-23 10:24:02'),(61,'News',255,1,'Bonjour,\r\nje n\'ai pas ce problème.\r\nJe vous adresse un nouveau ZIP au cas ou.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-23 10:47:32','2022-06-23 10:47:32'),(62,'News',256,545,'bonjour,\r\n\r\nle problème persiste avec la nouvelle version de Ximulator1.0.5.1 : \r\n-ImerysId dans EquipmentBaseType est de type definition BaseDataVariableType au lieu de TagVariableType.\r\n-LocationInFactory dans EquipmentBaseType est de type definition BaseDataVariableType au lieu de LocationDataType.\r\n\r\nLa version du modèle utilisée est la V.1.0.8\r\n\r\nCordialement,\r\nEquipe Inetum\r\n\r\n','2022-06-23 10:48:28','2022-06-23 10:48:28'),(63,'News',257,1,'Le lien de téléchargement est ici : http://www.openopcua.org/redmine/attachments/download/3135/Livraison%20Binaires%20Debug-IPV6%20-%2027-06-2022_v1.0.7.2.zip','2022-06-27 09:45:38','2022-06-27 09:45:38'),(64,'News',257,1,'Bonjour,\r\nun autre commentaire. \r\nAvec cette version il n\'est plus necessaire de mettre de pause lors du chargement des Vpis.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-27 09:52:20','2022-06-27 09:52:20'),(65,'News',257,432,'Bonjour, \r\n\r\nMerci pour cette livraison\r\n\r\nNous avons pu validé le Mqtt en backoffice avec la conf full. \r\nLe déploiement est en cours. Nous vous tenons au courant du résultat. \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-06-27 15:10:13','2022-06-27 15:10:13'),(66,'News',261,432,'Bonjour, \r\n\r\nLe démarrage est ok avec cette version\r\n\r\nMerci beaucoup,\r\n\r\nMichael Ejigu\r\n','2022-07-01 11:56:45','2022-07-01 11:56:45'),(67,'News',266,432,'Bonjour M. Condemine, \r\n\r\nMerci pour la livraison. \r\n\r\nCependant est-ce que je me trompe en disant que l\'objectif était de tracer les écritures? Afin de marquer et confirmer que le Ack redescend bien au niveau de l\'automate ? \r\n\r\nSouhaitez vous qu\'on partage le binaire avec eMotors ou bien l\'avez vous déjà fait sur un autre canal ? \r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2022-07-20 09:01:40','2022-07-20 09:01:40'),(68,'News',266,1,'Bonjour,\r\nmes doigts ont fourchés. La trace est dans la fonction d\'écriture et pas de lecture.\r\nCordialement\r\nMichel Condemine','2022-07-20 09:51:22','2022-07-20 09:51:22'),(69,'News',266,432,'Super\r\n\r\nPeut on transmettre les binaires à eMotors? \r\n\r\nCordialement\r\nMichael','2022-07-20 09:52:16','2022-07-20 09:52:16'),(70,'News',266,1,'Bien sur !!!','2022-07-20 09:55:42','2022-07-20 09:55:42'),(71,'News',272,432,'Bonjour, \r\n\r\nMerci pour la livraison \r\n\r\nJ\'ai essayé de reproduire le problème en déconnectant reconnectant le LM en boucle, le PM reprend systématiquement la connexion. \r\nJe mettrai le LM sur une VM distante pour les prochains tests afin de me rapprocher de la configuration chez eMotors\r\n\r\nDès/si que j\'arrive à le reproduire, je mettrai à jour les nouveaux binaires fournis libClient pour voir si le problème est corrigé. \r\nJe vous tiens au courant dès que j\'arrive à reproduire le problème. \r\n\r\nComme entendu, j\'ouvrirai aussi le ticket avec les captures et les pièces (minidump, pdb etc... dans l\'après midi)\r\n\r\nCordialement, \r\nMichael\r\n','2022-08-04 15:31:38','2022-08-04 15:31:38'),(72,'News',272,432,'Souhaitez vous que l\'on notifie Lionel sur une potentielle correction et que on essaye de reproduire le problème avant d\'essayer la correction? \r\nIl pourrait de son côté nous aider sur la reproduction du problème (que je pense qu\'il maitrise plus que nous) \r\n\r\nCordialement, \r\nMichael','2022-08-04 15:33:29','2022-08-04 15:33:29'),(73,'News',272,1,'Bonjour,\r\nje pense qu\'il faudrait tester les nouveaux binaires et les fournir à Lionel.\r\nIl pourrait aider à tracker ce problème avant qu\'il prenne des proportion incontrôlable.\r\n\r\nCordialement\r\nMichel Condemine','2022-08-04 15:35:43','2022-08-04 15:35:43'),(74,'News',272,432,'Quand vous dites tester les nouveaux binaires, sommes nous d\'accord que l\'on doit bien reproduire le problème avant de tester les nouveaux binaires? \r\nPareil pour Lionel, lui conseiller de persister à reproduire le problème en pré-prod afin de tester les nouveaux binaires?\r\n\r\nL\'autre conseil que l\'on peut lui donner et de directement mettre à jour les binaires 4CE en prod (sans mettre à jour les instances et les binaires Inetum) afin de directement voir en prod (là ou il arrive à facilement reproduire le problème) que le correctif améliore le comportement? \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2022-08-04 15:41:49','2022-08-04 15:41:49'),(75,'News',272,1,'Bonjour,\r\nje propose de faire les deux en parallèle.\r\n* Tester en backoffice les nouveaux et les anciens binaires sur 2 plateformes indépendantes\r\n* Une fois que vous aurez vérifié le \"bon fonctionnement\" des nouveaux binaires en backoffice. \r\n Disons, pendant quelques heures. Fournissez les à Lionel pour qu\'il puisse aider à tracker le problème?\r\nCordialement\r\nMichel Condemine','2022-08-04 15:49:00','2022-08-04 15:49:00'),(76,'News',272,432,'Entendu, on procèdera bien ainsi','2022-08-04 15:50:46','2022-08-04 15:50:46'),(77,'News',272,432,'Nous rencontrons avec les nouveaux binaires des problèmes de reconnexion du PM vers le LM lorsque nous relançons le LM \r\n\r\n\r\nLorsque le Plant n\'arrive plus à ce connecter nous avons les messages suivants dans les logs qui semblent intéressants : \r\n\r\n\r\n\r\n2022-08-04T14:58:46.980Z CLIENT_INFO Call OpenOpcUa_SetPublishingMode\r\n2022-08-04T14:58:47.226Z CLIENT_ERROR Your XML configuration file : .\\Project\\UaClnt-ManuelLineX-00301-0.xml has been parsed\r\n2022-08-04T14:58:47.228Z CLIENT_INFO Call OpenOpcUa_GetSessions\r\n2022-08-04T14:58:47.229Z CLIENT_INFO Call OpenOpcUa_CloseSession\r\n2022-08-04T14:58:47.230Z CLIENT_ERROR WatchingThread stopped pSession=00000137A8156D20.\r\n2022-08-04T14:58:47.231Z CLIENT_ERROR InternalWatchingThread stopped properly\r\n2022-08-04T14:58:47.232Z CLIENT_ERROR Call to OpcUa_ClientApi_DeleteMonitoredItems: 16 items\r\n2022-08-04T14:58:47.465Z CLIENT_ERROR Call to OpcUa_ClientApi_DeleteMonitoredItems done 0x00000\r\n2022-08-04T14:58:47.756Z CLIENT_ERROR KeepAliveThread Stopped\r\n2022-08-04T14:58:47.757Z CLIENT_ERROR KeepAliveThread stopped properly\r\n2022-08-04T14:58:47.758Z CLIENT_ERROR MonitoredItemsNotificationThread stopped\r\n2022-08-04T14:58:47.759Z CLIENT_ERROR MonitoredItemsNotificationThread stopped properly\r\n2022-08-04T14:58:57.767Z CLIENT_ERROR Impossible to stop the PublishingThread. Timeout\r\n2022-08-04T14:58:57.768Z CLIENT_ERROR InternalWatchingThread was already stopped\r\n2022-08-04T14:58:57.769Z CLIENT_ERROR PublishingThread stopped pSession=00000137A8156D20.\r\n2022-08-04T14:59:08.413Z CLIENT_ERROR Impossible to stop the AutoConnectThread. Timeout 10 sec reached\r\n2022-08-04T15:01:44.960Z CLIENT_ERROR PublishingThread>Shutdown sent to the client host application. InternalServerStatus changed 0x80af0000\r\n2022-08-04T15:01:45.960Z CLIENT_ERROR PublishingThread stopped pSession=00000137A652D510.\r\n\r\n\r\n','2022-08-04 17:07:50','2022-08-04 17:07:50'),(78,'News',272,1,'Bonjour,\r\nje vais faire quelques essais avec la derniere version de la libCLient. \r\nJe vous tiens au courant\r\n\r\nCordialement\r\nMichel Condemine','2022-08-04 17:29:54','2022-08-04 17:29:54'),(79,'News',272,1,'Bonjour,\r\nj\'ai réalisé des tests avec la configuration suivante :\r\n* Serveur \"Graine\" de la foundation OPC\r\n* Agrégateur OOUA\r\nJ\'ai stoppé le serveur OPC-F 10 fois. Dans tous le cas l\'agrégateur s\'est reconnecté au redémarrage de la graine.\r\n\r\nJe ne constate aucun problème avec les derniers binaires.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2022-08-04 19:45:55','2022-08-04 19:45:55'),(80,'News',273,432,'Super M. Condemine. Les résultats que vous décrivez sont excellents\r\n\r\nMerci pour votre temps! \r\n\r\nCordialement, \r\n\r\nMichael','2022-09-02 19:02:05','2022-09-02 19:02:05'),(81,'News',276,432,'Re, \r\n\r\nOn a malheureusement exactement le même comportement\r\n\r\nça passe pour certains UDT, et ça ne passe pas pour d\'autres\r\n\r\nCordialement\r\nMichael \r\n\r\n','2022-09-07 17:33:22','2022-09-07 17:33:22'),(82,'News',276,1,'Vous voulez dire que ca crash ?','2022-09-07 17:37:32','2022-09-07 17:37:32'),(83,'News',276,432,'On a la pop up comme hier avec Lionel\r\nAu niveau du procdump si on clique sur Recommencer il marque une ligne dans la fenêtre sans générer de minidump et ne se tue pas\r\nS\'il n\'y a pas de procdump pour catch l\'exception, on a un crash \r\n\r\nCordialement, \r\n\r\nMichael ','2022-09-07 18:29:46','2022-09-07 18:29:46'),(84,'News',276,1,'Bonjour,\r\ncela n\'a pas beaucoup de sens.\r\nJe ne pourrais corriger ce problème sans une maquette permettant de le reproduire.\r\n\r\nCordialement\r\nMichel Condemine','2022-09-07 19:32:12','2022-09-07 19:32:12'),(85,'News',276,432,'Bonjour, \r\n\r\nNous comprenons bien\r\n\r\nSeriez vous d\'accord pour aujourd\'hui à notre session de 16h de se mettre en configuration debug avec le code depuis une de nos machines qui reproduit le phénomène ? \r\n\r\nCordialement, \r\n\r\nMichael ','2022-09-08 09:07:44','2022-09-08 09:07:44'),(86,'News',276,1,'Bonjour,\r\nune session de debug ne serait qu\'une perte de temps.\r\nIl faut réussir à reproduire le problème avec mon programme de test ou avec une maquette dédié que je pourrais installer localement.\r\n\r\nCordialement\r\nMichel Condemine','2022-09-08 10:10:13','2022-09-08 10:10:13'),(87,'News',276,432,'Ce que je propose est de nous momentanément nous transmettre le code source afin de faire du pas à pas et investiguer davantage\r\n\r\nSinon je peux vous faire une procédure pour reproduire le problème localement, mais la procédure aura une étape mise en place du contexte un peu longue ( démarrer PM et LM, descente de gamme et engagement de pièces dites virtuelles à travers une série d\'écriture sur des variables). On peut dédier si vous le préférer une partie de la session à la mise en place de cette maquette sur votre plateforme\r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael','2022-09-08 10:18:42','2022-09-08 10:18:42'),(88,'News',276,1,'Bonjour,\r\nIl n\'y a pas de temps à perdre en de veines investigations. On a déjà tenté le DEBUG avec Lionel. Il ne faut pas recommencer.\r\nLe problème apparait dans certain cas lors de la libération d\'une portion de mémoire.\r\nIl faut rechercher à reproduire le problème dans ce scénario :\r\n# Decode_base64 \r\n# Free\r\n\r\nCordialement\r\nMichel Condemine','2022-09-08 10:27:20','2022-09-08 10:27:20'),(89,'News',278,432,'Bonjour \r\n\r\nCes binaires tournent en backoffice en preprod et en prod sur une ligne. \r\nJe vais les déployer sur une deuxième ligne ce matin \r\nSi tout ce passe bien eMotors les synchronisera sur tous les serveurs OOUA \r\n\r\nCordialement, \r\n\r\nMichael','2022-09-09 09:57:40','2022-09-09 09:57:40'),(90,'News',280,1,'Hello,\r\nAn extra information.\r\nI installed the OpenOpcUa server as a service on the Gateway (BESVLIX104)\r\n\r\nKind regards\r\nMichel Condemine','2022-09-16 11:20:34','2022-09-16 11:20:34'),(91,'News',285,1,'The new version also fixe write on enumeration when mapped to int16 (2 bytes in the PLC.','2022-10-22 19:02:47','2022-10-22 19:02:47');
/*!40000 ALTER TABLE `comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `custom_field_enumerations`
--
DROP TABLE IF EXISTS `custom_field_enumerations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_field_enumerations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`custom_field_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT '1',
`position` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `custom_field_enumerations`
--
LOCK TABLES `custom_field_enumerations` WRITE;
/*!40000 ALTER TABLE `custom_field_enumerations` DISABLE KEYS */;
/*!40000 ALTER TABLE `custom_field_enumerations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `custom_fields`
--
DROP TABLE IF EXISTS `custom_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(30) NOT NULL DEFAULT '',
`name` varchar(30) NOT NULL DEFAULT '',
`field_format` varchar(30) NOT NULL DEFAULT '',
`possible_values` text,
`regexp` varchar(255) DEFAULT '',
`min_length` int(11) DEFAULT NULL,
`max_length` int(11) DEFAULT NULL,
`is_required` tinyint(1) NOT NULL DEFAULT '0',
`is_for_all` tinyint(1) NOT NULL DEFAULT '0',
`is_filter` tinyint(1) NOT NULL DEFAULT '0',
`position` int(11) DEFAULT NULL,
`searchable` tinyint(1) DEFAULT '0',
`default_value` text,
`editable` tinyint(1) DEFAULT '1',
`visible` tinyint(1) NOT NULL DEFAULT '1',
`multiple` tinyint(1) DEFAULT '0',
`format_store` text,
`description` text,
PRIMARY KEY (`id`),
KEY `index_custom_fields_on_id_and_type` (`id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `custom_fields`
--
LOCK TABLES `custom_fields` WRITE;
/*!40000 ALTER TABLE `custom_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `custom_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `custom_fields_projects`
--
DROP TABLE IF EXISTS `custom_fields_projects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_fields_projects` (
`custom_field_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
UNIQUE KEY `index_custom_fields_projects_on_custom_field_id_and_project_id` (`custom_field_id`,`project_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `custom_fields_projects`
--
LOCK TABLES `custom_fields_projects` WRITE;
/*!40000 ALTER TABLE `custom_fields_projects` DISABLE KEYS */;
/*!40000 ALTER TABLE `custom_fields_projects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `custom_fields_roles`
--
DROP TABLE IF EXISTS `custom_fields_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_fields_roles` (
`custom_field_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
UNIQUE KEY `custom_fields_roles_ids` (`custom_field_id`,`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `custom_fields_roles`
--
LOCK TABLES `custom_fields_roles` WRITE;
/*!40000 ALTER TABLE `custom_fields_roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `custom_fields_roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `custom_fields_trackers`
--
DROP TABLE IF EXISTS `custom_fields_trackers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_fields_trackers` (
`custom_field_id` int(11) NOT NULL DEFAULT '0',
`tracker_id` int(11) NOT NULL DEFAULT '0',
UNIQUE KEY `index_custom_fields_trackers_on_custom_field_id_and_tracker_id` (`custom_field_id`,`tracker_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `custom_fields_trackers`
--
LOCK TABLES `custom_fields_trackers` WRITE;
/*!40000 ALTER TABLE `custom_fields_trackers` DISABLE KEYS */;
/*!40000 ALTER TABLE `custom_fields_trackers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `custom_values`
--
DROP TABLE IF EXISTS `custom_values`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_values` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`customized_type` varchar(30) NOT NULL DEFAULT '',
`customized_id` int(11) NOT NULL DEFAULT '0',
`custom_field_id` int(11) NOT NULL DEFAULT '0',
`value` longtext,
PRIMARY KEY (`id`),
KEY `custom_values_customized` (`customized_type`,`customized_id`),
KEY `index_custom_values_on_custom_field_id` (`custom_field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `custom_values`
--
LOCK TABLES `custom_values` WRITE;
/*!40000 ALTER TABLE `custom_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `custom_values` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `documents`
--
DROP TABLE IF EXISTS `documents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `documents` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`description` text,
`created_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `documents_project_id` (`project_id`),
KEY `index_documents_on_category_id` (`category_id`),
KEY `index_documents_on_created_on` (`created_on`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `documents`
--
LOCK TABLES `documents` WRITE;
/*!40000 ALTER TABLE `documents` DISABLE KEYS */;
INSERT INTO `documents` VALUES (1,1,1,'How to use OpenOpcUaQuickClient','This PDF contains a presentation of the OpenOpcUaQuickClient.\r\nFeel free to provide feedback.\r\n\r\nBest Regards\r\nMichel','2015-02-04 10:18:29');
/*!40000 ALTER TABLE `documents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_addresses`
--
DROP TABLE IF EXISTS `email_addresses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_addresses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`address` varchar(255) NOT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
`notify` tinyint(1) NOT NULL DEFAULT '1',
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `index_email_addresses_on_user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=534 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_addresses`
--
LOCK TABLES `email_addresses` WRITE;
/*!40000 ALTER TABLE `email_addresses` DISABLE KEYS */;
INSERT INTO `email_addresses` VALUES (1,1,'michelc@4ce-industry.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(3,4,'guerinperessecamille@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(4,5,'eric.oursel.home@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(5,6,'Michel.Condemine@4CE-Industry.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(7,8,'thomas.burke@opcfoundation.org',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(8,10,'Jim.Luth@invensys.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(9,11,'tuan.dang@edf.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(10,12,'cedric.tinard@atos.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(11,13,'stefan@c-cit.ch',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(13,16,'dprizon@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(14,19,'tirlip@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(15,22,'john@gridcloudsys.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(18,25,'starloff@hotmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(19,27,'awcullen@hotmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(20,29,'philippe.froissant@laposte.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(21,30,'bernard.bony@schneider-electric.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(22,31,'mattmoss@projexsys.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(24,33,'kapilrakh@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(25,34,'marcosludwig@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(26,36,'matthias.isele@ascolab.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(29,40,'feron.gabriel@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(30,41,'opycua@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(31,42,'matthias.hertog@grp.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(32,44,'francesconi.denis@hydro.qc.ca',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(33,45,'t.i.eriksen@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(34,46,'stig.helgeland@edrillingsolutions.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(35,47,'christophe.castigue@intespace.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(36,48,'sony@perfomix.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(38,52,'johannes.poulsen@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(39,53,'viktorgasp@yahoo.no',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(40,54,'johanvdb@gmx.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(41,55,'nathanlitt@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(42,56,'fetus.ba@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(43,57,'thauzer@i-rose.si',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(44,58,'olivier@sintef.no',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(46,60,'ljw@power21.co.kr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(47,61,'avra@writeme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(48,62,'m.bandu@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(49,63,'charvat.pavel@email.cz',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(50,64,'Anthony.Floyd@convergent.ca',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(51,65,'lionel_debroux@yahoo.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(52,66,'pascal.peyre@atos.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(53,68,'christophe.voisin@atos.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(54,69,'lionel.bouzon@atos.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(55,70,'olivier.jolet@atos.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(56,71,'lucien.rorato@atos.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(57,72,'vrondot@slb.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(58,73,'jacques.anthoine@atos.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(59,74,'marcr.berger@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(60,75,'christophe.chevandier@atos.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(62,77,'wjffsx@sina.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(63,78,'iptables@mail.ru',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(65,80,'daniel@terrakarma.us',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(66,82,'dandario@libero.it',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(67,83,'pfourre@assystem.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(68,84,'eliceo.carfagna@bayer.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(69,85,'cdingeon@wanadoo.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(70,86,'philippe.lallemand2@orange.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(71,87,'pablo.pascual@g-flow.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(72,88,'stephane.meynet@ssi.gouv.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(73,89,'acorralortiz+openopcua@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(75,91,'spamsink@gmx.at',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(76,92,'cos@beeond.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(77,93,'mickael.cala.it@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(78,94,'elodie.julien@mrbautomatismes.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(79,95,'christophe.mozzati@predict.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(80,96,'chabanne@lapp.in2p3.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(81,97,'rafael.rodriguez@snef.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(82,98,'vquillet@asalog.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(83,99,'frederic.bouvier@technilog.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(85,101,'mpasquini@automation-technologies.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(87,103,'jeff.harding@us.abb.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(89,105,'wojciech@siekan.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(90,106,'dcardille@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(91,107,'nccyoichi@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(92,108,'mds@fieldcloud.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(93,109,'carlosmartinezsandoval@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(94,110,'talberts@ska.ac.za',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(95,112,'hans@wilmers.no',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(97,114,'jmribault@geniop.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(98,115,'mateiasi@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(99,116,'lostis@gmx.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(100,117,'t.weber@solidautomation.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(101,118,'joel@infiniteautomation.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(102,119,'caocuong.ngo@telecom-paristech.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(103,121,'bellot@telecom-paristech.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(104,122,'vincent.voisin@yahoo.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(105,123,'sylvain.jalbert@agt-group.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(107,126,'will@systeminsights.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(108,127,'beraud.remy@free.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(110,129,'f.hofer@atoma-multipond.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(112,131,'duckduckgoole@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(114,133,'scba310@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(115,134,'leftyb@hotmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(116,136,'bcoromina@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(117,137,'frankfleer@163.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(118,138,'pierre.nguyen@edf.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(119,140,'niklaus.hersche@gesys.ch',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(120,143,'doomsdaier@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(121,145,'t5t5t5t5@hmamail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(122,146,'liuzhong_1979@126.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(123,148,'san5507@mail.ru',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(124,149,'beautrepp@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(127,152,'alois.zoitl@gmx.at',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(128,154,'pcj@techni.no',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(129,156,'maxcoroyer@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(132,159,'j.mammele@pilz.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(133,160,'philippe.gresoviac@delphi.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(134,161,'skjefstad.joakim@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(135,162,'loc.tran17@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(136,163,'paroga@paroga.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(137,164,'peter.speybrouck@irex-consulting.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(138,166,'vilem.srovnal@centrum.cz',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(139,167,'j.hillers@etb-electronic.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(140,168,'atleh3@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(141,170,'jeb@jespada.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(142,171,'grancanarito@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(143,172,'jimmy__huang@sina.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(144,174,'bsa@sevme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(145,175,'nir.geller@servotronix.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(146,176,'kjohnson@opto22.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(147,177,'oadam@comcast.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(148,178,'kaltental89@gmx.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(151,181,'oknight2@163.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(152,182,'hi@alejandrosantana.eu',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(155,187,'bradleyhops@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(156,188,'bgthnev@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(157,189,'r.szefner@hydro-partner.pl',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(158,190,'qingnansun2010@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(159,191,'612017@unizar.es',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(161,193,'arshamatonyan@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(162,194,'stano@meduna.org',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(164,196,'alr@bitween.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(165,197,'moukrys77@hotmail.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(166,198,'Rod.Stein@matrikonopc.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(167,199,'bklimko@psi.pl',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(168,200,'nadya.dahir@lafarge.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(170,202,'laurent.voisin@systerel.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(171,203,'luffyandluffy@foxmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(172,204,'misari@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(173,205,'m.sliva@seznam.cz',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(175,207,'ichbrauchspeicher@arcor.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(176,208,'e.dumas@delaballina.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(177,209,'qndlt+vhq2dna3egcfr1gdvw@sharklasers.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(178,210,'gunia@smart-hmi.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(179,211,'abelwang1979@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(180,212,'bb.andersen@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(181,213,'iou56@163.coom',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(182,214,'iou56@163.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(183,215,'vvoisin@lpnhe.in2p3.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(184,216,'tsutomu.furuya@jt.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(185,217,'gerhard.wolff@cjt.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(186,218,'escort94@naver.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(187,219,'al@alarsen.net',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(188,220,'wenhsing.yu@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(190,222,'pboulmier@labocom.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(191,223,'fmonge@maitrise-technologique.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(192,224,'carlodiana88@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(193,225,'sergio_marchese85@tiscali.it',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(194,226,'adrien.bourdet@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(195,227,'wangdeng12306@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(196,228,'smu@sevme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(197,229,'raymond.borscia@schneider-electric.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(198,230,'sebastien.salameh@ibitek.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(199,231,'j.jacquemet@see.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(200,233,'zhangyan@sxygsj.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(201,234,'hrodrigues@archean.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(202,235,'franck.bouzon@edf.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(203,238,'wolfgang.steigerwald@telekom.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(204,239,'navdeep.ahuja17@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(205,240,'42318887aa@zoho.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(206,241,'bowlesdr@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(207,242,'evesey@163.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(208,243,'pavan.pawar@aiplindia.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(209,244,'ctinnes@arinc.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(210,245,'lliotard@trapil.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(211,246,'valentin.saforcada@cofelyineo-gdfsuez.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(212,247,'prbarros@dee.ufcg.edu.br',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(213,248,'anthony.le.roux@groupe-api.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(214,249,'truthlz@sina.cn',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(215,250,'kai.matzke@sieb-meyer.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(216,251,'olaf.berens@gmx.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(217,252,'kb@pbscontrol.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(218,253,'b.cocquelin@tiama.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(219,254,'a.gutrin@tiama.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(220,255,'francois.ouvradou@tiama.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(221,256,'moritz.struebe@redheads.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(222,257,'pedro_nf@yahoo.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(223,258,'josue.belliot@snef.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(224,259,'J.RIVET@tiama.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(225,261,'arjousset@serac.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(226,262,'christoph.obrecht@de.trumpf.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(227,263,'dr.dotti@gmx.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(228,264,'jdevore@total-operations.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(229,265,'chlepriol@serac.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(230,266,'jean.boulesteix@engie.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(231,267,'denis@denisnobre.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(232,268,'mrault@cooperl.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(233,269,'ymorice@cooperl.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(234,270,'plegoff@cooperl.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(235,271,'dcarton@cooperl.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(236,272,'harold.mckee@htt.io',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(237,273,'C.NOIR.ext@tiama.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(238,274,'polarislee1984@outlook.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(239,275,'kofi.nsiah@hs-offenburg.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(241,277,'josiasyoumbim@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(242,278,'m.heitland@spe-hamburg.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(244,280,'gabor@kabelnet.hu',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(245,281,'martin.keller@marel.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(246,282,'roger.santos@schneider-electric.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(247,283,'andre.korbes@schneider-electric.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(248,284,'info@4ce-industry.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(249,285,'phileas.condemine@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(250,286,'Helmut.Raba@rqtools.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(251,287,'faune@cyxplus.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(252,288,'andym76@mail.ru',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(253,289,'esteban.marro@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(254,291,'ajratr@yandex.ru',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(255,292,'manoharkumar.a@utthunga.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(256,293,'savoyyang@xmmct.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(257,294,'seungyeobo1113@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(258,295,'jgutekunst@glaess-software.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(259,296,'regis.lievin@chaveriat.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(260,298,'fghisalberti@cyxplus.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(261,299,'akashbling@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(262,300,'roel@tresco.eu',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(263,301,'lhr317@keti.re.kr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(264,302,'aquaharim@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(265,303,'dluppi@prosyst.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(266,304,'gboez@prosyst.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(268,306,'jsollier@exelsius.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(269,307,'Samuel.Charrier@non.schneider-electric.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(270,308,'jaewoo.jang@neodian.biz',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(271,309,'michael.harnischfeger@schneider-electric.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(272,310,'hamed.d@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(273,312,'gengyapeng@golden-data.com.cn',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(275,314,'kamel.amghar@adp.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(276,315,'laurence.durand@adp.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(277,316,'thibaut.wiart@egidium-technologies.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(278,317,'a069275@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(279,318,'luc.m.lefebvre@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(280,319,'bernard.j.brice@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(281,320,'dominique.marie@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(282,321,'trauden102@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(283,322,'thomas.laloix@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(284,323,'thierry.daneau@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(285,324,'djibril.ndiaye@talan.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(286,325,'b.ebrahimi@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(287,326,'peter.zhang@foxmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(289,328,'nferreira@tycoint.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(290,329,'fernand.alcatrao@egidium-technologies.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(291,331,'margaux.canet@resolutionspectra.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(292,332,'28589685@qq.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(293,333,'jason@sdplex.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(294,334,'sjyun@sdplex.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(295,335,'david@sdplex.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(296,336,'kcjeon@sdplex.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(297,337,'siriuszip@naver.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(298,338,'damien.pavula@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(299,339,'laurent.tabare@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(300,340,'charles.millet@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(301,341,'jean-xavier.bardant@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(302,342,'yann.lebaillif@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(303,343,'david.ben-harous@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(304,344,'laurent.montagne@renault.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(305,345,'patrick.bochet@adp.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(306,346,'baptiste.pierard@medianesysteme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(307,347,'olivier.pesle@medianesysteme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(308,348,'souley.boube@medianesysteme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(309,349,'vivien.raynal@medianesysteme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(310,350,'vatsal@litmusautomation.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(311,351,'leonbdong@outlook.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(312,352,'tomboy-fun@gmx.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(313,353,'frederic.tourret@pi-galile.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(314,354,'gilles.ramillien@pi-galile.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(315,355,'benoit.brandely@pi-galile.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(316,356,'paul.canourgues@bms.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(317,358,'1093555740@qq.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(318,359,'guillaume_menard@bio-rad.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(319,360,'823506006@qq.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(320,361,'f.demuru@neu-automation.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(321,362,'c.viscogliosi@pellencst.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(322,363,'hassan.darwish@imi-precision.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(323,365,'ja.janvier@tiama.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(324,366,'konrad.widera@dmt-group.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(325,367,'kostenko.vladimir@automiq.ru',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(326,368,'bruno.le.roy@jci.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(327,369,'sebastien.leclere.@jci.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(328,371,'sleclere14@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(329,372,'rabchenyuk.pavel@automiq.ru',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(330,373,'ncumin@sise-plastics.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(331,374,'B.MOREAU@tiama.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(332,375,'stephane.guerillot@medianesysteme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(333,376,'dguilbaud@evernex.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(334,377,'Bauke.Van.Den.Berg@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(335,378,'peterjump@126.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(336,379,'fotiswong@hotmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(337,380,'gbiteguebinze@esteve.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(338,381,'mickael.boual@adp.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(339,382,'mikael.ferrer@adp.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(340,383,'fvillain@esteve.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(341,384,'aidil@imbig.com.my',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(342,385,'wangguang@faw.com.cn',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(343,386,'bramey@sise-plastics.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(344,387,'ycheveau@sise-platics.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(345,388,'rjaillet@sise-plastics.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(346,389,'llagarde@sise-plastics.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(347,390,'pborge@sise-plastics.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(348,391,'xuee4259@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(350,393,'nlopez@splunk.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(351,394,'84515264@qq.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(352,395,'huabin.zhang@meicloud.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(353,396,'license@zspace.com.au',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(354,397,'hrobles@inst.uc3m.es',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(355,398,'jean-marie.capdeville@actemium.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(356,399,'d.bonnet@id2tech.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(357,400,'lucianobpaes@hotmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(358,401,'didier.paquet@edf.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(359,402,'fabio.bindi@qvisiontech.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(360,403,'johan.sarrazin@resolutionspectra.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(361,404,'josselin.jouvray@resolutionspectra.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(362,405,'brechtelm@yahoo.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(363,406,'clement.jimenez@cea.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(364,407,'ramy.ragab@griffins.co.nz',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(365,409,'vikas.shrivastava@capgemini.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(366,410,'romanov@trei.biz',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(367,411,'gilles.viard@rehau.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(368,412,'seeright@naver.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(369,415,'jessie0662@163.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(370,416,'ak.assad@jpb-systeme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(371,417,'guillaume.bernard@jpb-systeme.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(372,418,'timp520@hotmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(373,419,'andranik.sanoyan@teamviewer.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(374,420,'ahmed.baidaoui@sames-kremlin.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(375,421,'ilana.mancel@sames-kremlin.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(376,422,'nicolas.ferrere@sames-kremlin.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(377,423,'geminihui@sina.cn',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(378,424,'louis.maycko@sames-kremlin.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(379,425,'zureks@tlen.pl',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(380,426,'dm@techpap.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(381,427,'guillaume.garbay@i-mc.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(382,428,'alexis.tasse@cap-tunnel.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(383,429,'lionel.milesy@cap-tunnel.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(384,430,'sebastian.allmendinger@allmendinger.de',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(385,431,'peigne.j@dxm.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(386,432,'michael.ejigu@gfi.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(387,433,'nicolas.his@gfi.world',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(388,434,'michaelmesfin@hotmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(389,435,'sylvain.rival@gfi.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(390,436,'christophe.cazes@gfi.world',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(391,437,'fcosta@sandalwood.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(392,438,'jean-francois.cuenot@gfi.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(393,439,'ilyass-externe.ELGUEDDARI@cnr.tm.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(394,440,'r.chabert@cnr.tm.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(395,441,'Florent-externe.JACQUET@cnr.tm.fr',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(396,442,'mabdoussoimadou@electricitedemayotte.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(397,443,'s.jeandemange@electricitedemayotte.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(398,444,'zahraazimi_official@yahoo.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(399,445,'afadul@electricitedemayotte.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(400,446,'i.mkavavo@electricitedemayotte.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(401,447,'lionel.claudel@emotors.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(402,448,'nahid.karshenas@emotors.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(403,449,'massy.goulmane@ext.mpsa.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(404,450,'guyalexis.genetay@emotors.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(405,451,'remi.delaire1@emotors.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(406,452,'iwindguo_new@qq.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(408,454,'valentin.poingt@emotors.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(409,455,'paul.losson@emotors.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(410,456,'tonychang2018@gmail.com',1,1,'2020-11-25 21:01:50','2020-11-25 21:01:50'),(411,459,'alexandre.mace@vinci-construction.com',1,1,'2020-12-01 13:19:36','2020-12-01 13:19:36'),(413,461,'ccounotte@exelsius.com',1,1,'2020-12-02 15:01:03','2020-12-02 15:01:03'),(414,462,'jlmuller@exelsius.com',1,1,'2020-12-07 16:16:06','2020-12-07 16:24:30'),(415,463,'daniele.bortolato@gmail.com',1,1,'2020-12-24 15:30:05','2020-12-24 15:30:05'),(416,464,'denis.quiers.ext@sames-kremlin.com',1,1,'2021-02-12 12:02:06','2021-02-12 12:02:06'),(417,465,'fred.scheiwe.ext@sames-kremlin.com',1,1,'2021-02-15 09:14:38','2021-02-15 09:14:38'),(418,466,'clement.mucha@i-mc.fr',1,1,'2021-02-16 09:20:27','2021-02-16 09:20:27'),(419,467,'zilong.shao@i-mc.fr',1,1,'2021-02-16 09:21:02','2021-02-16 09:21:02'),(420,468,'gildas.viaud@termet.fr',1,1,'2021-02-22 11:10:12','2021-02-22 11:10:12'),(421,469,'serge.horellou@couedic-madore.fr',1,1,'2021-02-22 13:30:43','2021-02-22 13:30:43'),(422,470,'adrien.pincemin@couedic-madore.fr',1,1,'2021-02-22 14:04:48','2021-02-22 14:04:48'),(423,471,'fabrice.chevaleyre@amics.fr',1,1,'2021-02-22 17:28:31','2021-02-22 17:28:31'),(424,472,'xjegonday@ias-ingenierie.com',1,1,'2021-02-23 07:49:04','2021-02-23 07:49:04'),(425,473,'nboyer@ias-ingenierie.com',1,1,'2021-02-23 09:08:39','2021-02-23 09:08:39'),(426,474,'patrick.marchand@cetim.fr',1,1,'2021-02-24 14:37:25','2021-02-24 14:37:25'),(427,475,'fabrice.peyrard@univ-tlse2.fr',1,1,'2021-02-26 18:32:43','2021-02-26 18:32:43'),(428,476,'jelex@naver.com',1,1,'2021-03-10 23:55:02','2021-03-10 23:55:02'),(429,477,'sophie.sieg-zieba@cetim.fr',1,1,'2021-03-19 10:04:56','2021-03-19 10:04:56'),(431,479,'sean@icpdas.com',1,1,'2021-04-28 04:24:42','2021-04-28 04:24:42'),(432,480,'rsubileau@exelsius.com',1,1,'2021-05-18 22:04:57','2021-05-18 22:04:57'),(433,481,'khalil.bentamansourt@external.stellantis.com',1,1,'2021-06-01 09:05:57','2021-06-01 09:05:57'),(434,482,'tanmay.borkar@aiplindia.com',1,1,'2021-06-07 08:38:44','2021-06-07 08:38:44'),(435,483,'asse-romain@outlook.fr',1,1,'2021-06-30 16:57:34','2021-06-30 16:57:34'),(436,484,'a.morel@polysoude.com',1,1,'2021-06-30 17:01:02','2021-06-30 17:01:02'),(437,485,'a.harel@polysoude.com',1,1,'2021-07-01 09:01:33','2021-07-01 09:01:33'),(438,486,'r.blanc@polysoude.com',1,1,'2021-07-01 10:03:53','2021-07-01 10:03:53'),(439,487,'s.pallard@polysoude.com',1,1,'2021-07-01 11:45:27','2021-07-01 11:45:27'),(441,489,'arash.morteza@emotors.com',1,1,'2021-08-17 12:08:55','2021-10-29 09:07:57'),(442,490,'julien.monteil@suez.com',1,1,'2021-08-19 11:08:51','2021-08-19 11:08:51'),(443,491,'eduardomantovani@yahoo.com',1,1,'2021-09-13 23:51:10','2021-09-13 23:51:10'),(444,492,'matthieu.gatine@cetim.fr',1,1,'2021-09-22 16:41:18','2021-09-22 16:41:18'),(445,493,'damien.billot-mornet@fanuc.eu',1,1,'2021-09-27 11:26:48','2021-09-27 11:26:48'),(446,494,'hwolffer@gmail.com',1,1,'2021-10-12 22:11:38','2021-10-12 22:11:38'),(447,495,'matthieu.cronnier@cetim.fr',1,1,'2021-10-14 09:20:55','2021-10-14 09:20:55'),(448,496,'marc.gomez@cetim.fr',1,1,'2021-10-14 09:22:42','2021-10-14 09:22:42'),(449,497,'eric.padiolleau@cetim.fr',1,1,'2021-10-14 09:23:12','2021-10-14 09:23:12'),(450,498,'abdellah.lamallem@cetim.fr',1,1,'2021-10-14 09:23:26','2021-10-14 09:23:26'),(451,499,'francois.barnabe@cetim.fr',1,1,'2021-10-14 09:54:39','2021-10-14 09:54:39'),(452,500,'remy.roignot@cetim.fr',1,1,'2021-10-14 10:49:59','2021-10-14 10:49:59'),(453,501,'nicolas.bedouin@cetim.fr',1,1,'2021-10-14 12:22:25','2021-10-14 12:22:25'),(454,502,'pierre.faverjon@pci.fr',1,1,'2021-10-18 16:30:39','2021-10-18 16:30:39'),(455,503,'nandan.chapa@imerys.com',1,1,'2021-10-20 05:57:30','2021-10-20 05:57:30'),(456,504,'olivier.daubizit@pci.fr',1,1,'2021-10-20 08:11:49','2021-10-20 08:11:49'),(457,505,'david.fabreguettes@imerys.com',1,1,'2021-10-20 08:22:03','2021-10-20 08:22:03'),(458,506,'remy.pentier@imerys.com',1,1,'2021-10-20 10:09:13','2021-10-20 10:09:13'),(459,507,'omar.sakka@imerys.com',1,1,'2021-10-20 10:14:44','2021-10-20 10:14:44'),(460,508,'mario.eltabach@cetim.fr',1,1,'2021-10-20 10:53:50','2021-10-20 10:53:50'),(461,509,'yannis.battache@somab.fr',1,1,'2021-10-20 15:42:53','2021-10-20 15:42:53'),(462,510,'stephane.gregoire@imerys.com',1,1,'2021-10-21 09:45:29','2021-10-21 09:45:29'),(463,511,'yakhlef.el.mokhtari@imerys.com',1,1,'2021-10-22 08:50:37','2021-10-22 08:50:37'),(464,512,'sunil.yadav@imerys.com',1,1,'2021-10-26 09:25:39','2021-10-26 09:25:39'),(465,513,'christophe.lemoullec@imerys.com',1,1,'2021-10-26 09:33:28','2021-10-26 09:33:28'),(466,514,'hedi.benothman@imerys.com',1,1,'2021-10-26 11:53:45','2021-10-26 11:53:45'),(467,515,'ugo.masciantonio@cetim.fr',1,1,'2021-10-29 16:50:26','2021-10-29 16:50:26'),(468,516,'marc.girbal@siemens.com',1,1,'2021-11-15 10:31:04','2021-11-15 10:31:04'),(469,517,'bernard.mauclere@siemens.com',1,1,'2021-11-15 14:35:40','2021-11-15 14:35:40'),(470,518,'pierre-henri.koch@imerys.com',1,1,'2021-11-15 15:30:35','2021-11-15 15:30:35'),(471,519,'lortet.f@exameca.fr',1,1,'2021-11-17 09:03:53','2021-11-17 09:03:53'),(472,520,'xingjh@lzptc.edu.cn',1,1,'2021-11-19 02:41:39','2021-11-19 02:41:39'),(473,521,'rainfeng@163.com',1,1,'2021-12-02 15:11:04','2021-12-02 15:11:04'),(474,522,'bart@broos.demon.nl',1,1,'2021-12-25 12:59:05','2021-12-25 12:59:05'),(475,523,'amine.idar@cetim.fr',1,1,'2022-01-06 16:36:56','2022-01-06 16:36:56'),(476,524,'benoit.robellet@bontoux.com',1,1,'2022-01-13 09:19:43','2022-01-13 09:19:43'),(477,525,'virgile.desfosses@bontoux.com',1,1,'2022-01-13 09:19:55','2022-01-13 09:19:55'),(478,526,'jeremy.lombard@bontoux.com',1,1,'2022-01-13 11:02:30','2022-01-13 11:02:30'),(480,528,'cyril.dufour@bontoux.com',1,1,'2022-01-13 11:06:17','2022-01-13 11:06:17'),(481,529,'larry.zhang@verkor.com',1,1,'2022-01-18 14:02:44','2022-01-18 14:02:44'),(482,530,'christober.raj@verkor.com',1,1,'2022-01-18 14:04:50','2022-01-18 14:04:50'),(483,531,'chirag.solanki@verkor.com',1,1,'2022-01-18 14:07:44','2022-01-18 14:07:44'),(484,532,'guillaume.ogier@verkor.com',1,1,'2022-01-18 14:08:05','2022-01-18 14:08:05'),(485,533,'alexandre.peyraud@verkor.com',1,1,'2022-01-18 15:11:12','2022-01-18 15:11:12'),(486,534,'volpe@heidenhain.fr',1,1,'2022-02-02 09:30:51','2022-02-02 09:30:51'),(487,535,'cmr.be@orange.fr',1,1,'2022-02-03 14:05:01','2022-02-03 14:05:01'),(488,536,'michael.bousquet@fr.bosch.com',1,1,'2022-02-28 08:22:59','2022-02-28 08:22:59'),(489,537,'pascal.gantou@fr.bosch.com',1,1,'2022-02-28 08:25:56','2022-02-28 08:25:56'),(490,538,'alexandre.turquet@fr.bosch.com',1,1,'2022-02-28 08:27:43','2022-02-28 08:27:43'),(491,539,'Fabien.castella@free.fr',1,1,'2022-02-28 09:22:23','2022-09-06 11:19:28'),(492,540,'yohan.espie@fr.bosch.com',1,1,'2022-02-28 14:00:15','2022-02-28 14:00:15'),(493,541,'christian.marty@fr.bosch.com',1,1,'2022-02-28 14:00:45','2022-02-28 14:00:45'),(494,542,'lionel.bou@fr.bosch.com',1,1,'2022-02-28 14:01:13','2022-02-28 14:01:13'),(495,543,'ilya.gridin@fr.bosch.com',1,1,'2022-02-28 14:02:07','2022-02-28 14:02:07'),(496,544,'Laurent.Hermet@fr.bosch.com',1,1,'2022-02-28 14:03:27','2022-02-28 14:03:27'),(497,545,'khaled.noomani@inetum.com',1,1,'2022-03-08 11:06:38','2022-03-08 11:06:38'),(498,546,'daniel.truong@inetum.com',1,1,'2022-03-08 14:57:20','2022-03-08 14:57:20'),(499,547,'gabriel.varachaud@tolson-consulting.com',1,1,'2022-03-13 23:30:48','2022-03-13 23:30:48'),(500,548,'loic.person@emotors.com',1,1,'2022-03-17 17:44:39','2022-03-17 17:44:39'),(501,549,'nicolas.pierson@emotors.com',1,1,'2022-03-25 14:45:25','2022-03-25 14:45:25'),(502,550,'gilles.barrioz@infodreamgroup.com',1,1,'2022-03-25 15:33:11','2022-03-25 15:33:11'),(503,551,'rgirault@deltamu.com',1,1,'2022-03-28 08:18:43','2022-03-28 08:18:43'),(504,552,'rdavid@deltamu.com',1,1,'2022-03-28 08:47:52','2022-03-28 08:47:52'),(505,553,'yannick.bachelet@editag.eu',1,1,'2022-03-29 09:02:29','2022-03-29 09:02:29'),(506,554,'remy.hernandez@editag.eu',1,1,'2022-03-29 09:06:27','2022-03-29 09:06:27'),(507,555,'micael.ripert@editag.eu',1,1,'2022-03-29 09:06:55','2022-03-29 09:06:55'),(508,556,'pierre.moreau@editag.eu',1,1,'2022-03-29 09:06:56','2022-03-29 09:06:56'),(509,557,'celine.demongeot@editag.eu',1,1,'2022-03-29 09:13:02','2022-03-29 09:13:02'),(510,558,'eric.gatto@editag.eu',1,1,'2022-03-29 09:16:18','2022-03-29 09:16:18'),(511,559,'Michel4ce@gmal.com',1,1,'2022-04-06 16:05:31','2022-04-06 16:05:31'),(512,560,'fortry@daum.net',1,1,'2022-04-12 03:55:40','2022-04-12 03:55:40'),(513,561,'fortry2@naver.com',1,1,'2022-04-12 03:58:25','2022-04-12 03:58:25'),(514,562,'cpagand@escofier.com',1,1,'2022-04-26 13:43:24','2022-04-26 13:43:24'),(515,563,'doquidan@escofier.com',1,1,'2022-04-26 16:21:33','2022-04-26 16:21:33'),(516,564,'ebouima@escofier.com',1,1,'2022-04-28 09:02:19','2022-04-28 09:02:19'),(517,565,'valentin.dufief@vinci-construction.com',1,1,'2022-05-03 09:13:37','2022-05-03 09:13:37'),(518,566,'l.roux@tiama.com',1,1,'2022-05-03 16:09:55','2022-05-03 16:09:55'),(519,567,'belhadjameur@gmail.com',1,1,'2022-05-03 16:10:02','2022-05-03 16:10:02'),(520,568,'frederic.ollivier@ermiglasscontrol.com',1,1,'2022-05-03 16:10:13','2022-05-03 16:10:13'),(521,569,'g.badaut.ext@tiama.com',1,1,'2022-05-03 16:11:21','2022-05-03 16:11:21'),(522,570,'f.destrebecq@tiama.com',1,1,'2022-05-03 16:12:02','2022-05-03 16:12:02'),(523,571,'radek.kapica@gmail.com',1,1,'2022-05-24 14:51:14','2022-05-24 14:51:14'),(524,572,'erman.omurca@verkor.com',1,1,'2022-06-14 10:34:54','2022-06-14 10:34:54'),(525,573,'semih.uygunturk@imerys.com',1,1,'2022-06-23 16:10:01','2022-06-23 16:10:01'),(526,574,'thomas.vervaeke@cetim.fr',1,1,'2022-07-05 09:01:13','2022-07-05 09:01:13'),(527,575,'didier.rech@techpap.com',1,1,'2022-07-12 11:40:50','2022-07-12 11:40:50'),(528,576,'giorgio.rusconi@lapp.com',1,1,'2022-07-29 14:08:19','2022-07-29 14:08:19'),(529,577,'didier.chaffat@sodel.net',1,1,'2022-08-02 16:43:40','2022-08-02 16:43:40'),(530,578,'abdelrahman.saidani@inetum.com',1,1,'2022-09-07 17:35:05','2022-09-07 17:35:05'),(531,579,'dominique.beroujon@inetum.com',1,1,'2022-09-30 17:50:43','2022-09-30 17:50:43'),(532,580,'alexandre.laurent@inetum.com',1,1,'2022-12-19 14:21:39','2022-12-19 14:21:39'),(533,581,'d.conti@engusa.com',1,1,'2023-01-22 17:47:21','2023-01-22 17:47:21');
/*!40000 ALTER TABLE `email_addresses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `enabled_modules`
--
DROP TABLE IF EXISTS `enabled_modules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `enabled_modules` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) DEFAULT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `enabled_modules_project_id` (`project_id`)
) ENGINE=InnoDB AUTO_INCREMENT=829 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `enabled_modules`
--
LOCK TABLES `enabled_modules` WRITE;
/*!40000 ALTER TABLE `enabled_modules` DISABLE KEYS */;
INSERT INTO `enabled_modules` VALUES (1,1,'issue_tracking'),(3,1,'news'),(4,1,'documents'),(5,1,'files'),(6,1,'wiki'),(8,1,'boards'),(9,1,'calendar'),(21,3,'issue_tracking'),(22,3,'time_tracking'),(23,3,'news'),(24,3,'documents'),(25,3,'files'),(26,3,'wiki'),(27,3,'repository'),(28,3,'boards'),(29,3,'calendar'),(30,3,'gantt'),(31,4,'issue_tracking'),(32,4,'time_tracking'),(33,4,'news'),(34,4,'documents'),(35,4,'files'),(36,4,'wiki'),(37,4,'repository'),(38,4,'boards'),(39,4,'calendar'),(40,4,'gantt'),(41,5,'issue_tracking'),(42,5,'time_tracking'),(43,5,'news'),(44,5,'documents'),(45,5,'files'),(46,5,'wiki'),(47,5,'repository'),(48,5,'boards'),(49,5,'calendar'),(50,5,'gantt'),(51,6,'issue_tracking'),(52,6,'time_tracking'),(53,6,'news'),(54,6,'documents'),(55,6,'files'),(56,6,'wiki'),(57,6,'repository'),(58,6,'boards'),(59,6,'calendar'),(60,6,'gantt'),(61,7,'issue_tracking'),(62,7,'time_tracking'),(63,7,'news'),(64,7,'documents'),(65,7,'files'),(66,7,'wiki'),(68,7,'boards'),(69,7,'calendar'),(70,7,'gantt'),(71,8,'issue_tracking'),(72,8,'time_tracking'),(73,8,'news'),(74,8,'documents'),(75,8,'files'),(76,8,'wiki'),(77,8,'repository'),(78,8,'boards'),(79,8,'calendar'),(80,8,'gantt'),(81,9,'issue_tracking'),(82,9,'time_tracking'),(83,9,'news'),(84,9,'documents'),(85,9,'files'),(86,9,'wiki'),(87,9,'repository'),(88,9,'boards'),(89,9,'calendar'),(90,9,'gantt'),(91,10,'issue_tracking'),(92,10,'time_tracking'),(93,10,'news'),(94,10,'documents'),(95,10,'files'),(96,10,'wiki'),(97,10,'repository'),(98,10,'boards'),(99,10,'calendar'),(100,10,'gantt'),(101,11,'issue_tracking'),(102,11,'time_tracking'),(103,11,'news'),(104,11,'documents'),(105,11,'files'),(106,11,'wiki'),(107,11,'boards'),(108,11,'calendar'),(109,11,'gantt'),(110,12,'issue_tracking'),(111,12,'time_tracking'),(112,12,'news'),(113,12,'documents'),(114,12,'files'),(115,12,'wiki'),(116,12,'boards'),(117,12,'calendar'),(118,12,'gantt'),(119,13,'issue_tracking'),(120,13,'time_tracking'),(121,13,'news'),(123,13,'files'),(124,13,'wiki'),(125,13,'repository'),(126,13,'boards'),(127,13,'calendar'),(128,13,'gantt'),(129,14,'issue_tracking'),(130,14,'time_tracking'),(131,14,'news'),(132,14,'documents'),(133,14,'files'),(134,14,'wiki'),(135,14,'repository'),(136,14,'boards'),(137,14,'calendar'),(138,14,'gantt'),(139,15,'issue_tracking'),(140,15,'news'),(141,15,'documents'),(142,15,'files'),(143,15,'wiki'),(144,15,'boards'),(145,15,'calendar'),(146,15,'gantt'),(147,16,'issue_tracking'),(148,16,'time_tracking'),(149,16,'news'),(150,16,'documents'),(151,16,'files'),(152,16,'wiki'),(153,16,'repository'),(154,16,'boards'),(155,16,'calendar'),(156,16,'gantt'),(157,17,'issue_tracking'),(158,17,'time_tracking'),(159,17,'news'),(160,17,'documents'),(161,17,'files'),(162,17,'wiki'),(163,17,'boards'),(164,17,'calendar'),(165,17,'gantt'),(166,18,'issue_tracking'),(167,18,'time_tracking'),(168,18,'news'),(169,18,'documents'),(170,18,'files'),(171,18,'wiki'),(172,18,'repository'),(173,18,'boards'),(174,18,'calendar'),(175,18,'gantt'),(177,19,'issue_tracking'),(178,19,'time_tracking'),(179,19,'news'),(180,19,'documents'),(181,19,'files'),(182,19,'wiki'),(183,19,'repository'),(184,19,'boards'),(185,19,'calendar'),(186,19,'gantt'),(187,20,'issue_tracking'),(188,20,'time_tracking'),(189,20,'news'),(190,20,'documents'),(191,20,'files'),(192,20,'wiki'),(193,20,'boards'),(194,20,'calendar'),(195,20,'gantt'),(196,21,'issue_tracking'),(197,21,'time_tracking'),(198,21,'news'),(199,21,'documents'),(200,21,'files'),(201,21,'wiki'),(202,21,'repository'),(203,21,'boards'),(204,21,'calendar'),(205,21,'gantt'),(216,23,'issue_tracking'),(217,23,'time_tracking'),(218,23,'news'),(219,23,'documents'),(220,23,'files'),(221,23,'wiki'),(222,23,'repository'),(223,23,'boards'),(224,23,'calendar'),(225,23,'gantt'),(226,24,'issue_tracking'),(227,24,'time_tracking'),(228,24,'news'),(229,24,'documents'),(230,24,'files'),(231,24,'wiki'),(232,24,'repository'),(233,24,'boards'),(234,24,'calendar'),(235,24,'gantt'),(236,25,'issue_tracking'),(237,25,'time_tracking'),(238,25,'news'),(239,25,'documents'),(240,25,'files'),(241,25,'wiki'),(242,25,'repository'),(243,25,'boards'),(244,25,'calendar'),(245,25,'gantt'),(246,26,'issue_tracking'),(247,26,'time_tracking'),(248,26,'news'),(249,26,'documents'),(250,26,'files'),(251,26,'wiki'),(252,26,'repository'),(253,26,'boards'),(254,26,'calendar'),(255,26,'gantt'),(264,28,'issue_tracking'),(265,28,'news'),(266,28,'documents'),(267,28,'files'),(268,28,'wiki'),(269,28,'repository'),(270,28,'boards'),(271,28,'calendar'),(274,29,'issue_tracking'),(275,29,'time_tracking'),(276,29,'news'),(277,29,'documents'),(278,29,'files'),(279,29,'wiki'),(280,29,'repository'),(281,29,'boards'),(282,29,'calendar'),(283,29,'gantt'),(284,30,'issue_tracking'),(285,30,'news'),(286,30,'documents'),(287,30,'files'),(288,30,'wiki'),(289,30,'repository'),(290,30,'boards'),(291,30,'calendar'),(292,31,'issue_tracking'),(293,31,'news'),(294,31,'documents'),(295,31,'files'),(296,31,'wiki'),(297,31,'repository'),(298,31,'boards'),(299,17,'repository'),(300,32,'issue_tracking'),(301,32,'news'),(302,32,'documents'),(303,32,'files'),(304,32,'wiki'),(305,32,'repository'),(306,32,'boards'),(307,32,'calendar'),(308,33,'issue_tracking'),(309,33,'documents'),(310,33,'files'),(311,33,'repository'),(312,33,'boards'),(313,33,'calendar'),(314,34,'issue_tracking'),(315,34,'news'),(316,34,'documents'),(317,34,'files'),(318,34,'wiki'),(319,34,'repository'),(320,34,'boards'),(321,34,'calendar'),(322,35,'issue_tracking'),(323,35,'news'),(324,35,'documents'),(325,35,'files'),(326,35,'wiki'),(327,35,'repository'),(328,35,'boards'),(329,35,'calendar'),(370,40,'issue_tracking'),(371,40,'news'),(372,40,'documents'),(373,40,'files'),(374,40,'wiki'),(375,40,'repository'),(376,40,'boards'),(385,42,'issue_tracking'),(386,42,'time_tracking'),(387,42,'news'),(388,42,'documents'),(389,42,'files'),(390,42,'repository'),(391,42,'boards'),(392,42,'calendar'),(393,43,'issue_tracking'),(394,43,'news'),(395,43,'documents'),(396,43,'files'),(397,43,'wiki'),(398,43,'repository'),(399,43,'boards'),(400,44,'issue_tracking'),(401,44,'time_tracking'),(402,44,'news'),(403,44,'documents'),(404,44,'files'),(405,44,'wiki'),(406,44,'repository'),(407,44,'boards'),(408,44,'calendar'),(409,45,'documents'),(410,45,'files'),(411,45,'repository'),(412,45,'boards'),(413,45,'calendar'),(414,45,'issue_tracking'),(415,46,'issue_tracking'),(416,46,'news'),(417,46,'documents'),(418,46,'files'),(419,46,'wiki'),(420,46,'boards'),(421,46,'calendar'),(422,47,'issue_tracking'),(423,47,'news'),(424,47,'documents'),(425,47,'files'),(426,47,'wiki'),(427,47,'repository'),(428,47,'boards'),(429,48,'issue_tracking'),(430,48,'time_tracking'),(431,48,'news'),(432,48,'documents'),(433,48,'files'),(434,48,'wiki'),(435,48,'repository'),(436,48,'boards'),(437,48,'calendar'),(438,48,'gantt'),(439,49,'issue_tracking'),(440,49,'time_tracking'),(441,49,'news'),(442,49,'documents'),(443,49,'files'),(444,49,'wiki'),(445,49,'boards'),(446,49,'calendar'),(447,49,'gantt'),(448,50,'issue_tracking'),(449,50,'time_tracking'),(450,50,'news'),(451,50,'documents'),(452,50,'files'),(453,50,'wiki'),(454,50,'boards'),(455,50,'calendar'),(456,51,'issue_tracking'),(457,51,'time_tracking'),(458,51,'news'),(459,51,'documents'),(460,51,'files'),(461,51,'wiki'),(462,51,'boards'),(463,51,'calendar'),(464,51,'gantt'),(465,52,'issue_tracking'),(466,52,'time_tracking'),(467,52,'news'),(468,52,'documents'),(469,52,'files'),(470,52,'wiki'),(471,52,'repository'),(472,52,'boards'),(473,52,'calendar'),(474,52,'gantt'),(475,53,'issue_tracking'),(476,53,'time_tracking'),(477,53,'news'),(478,53,'documents'),(479,53,'files'),(480,53,'wiki'),(481,53,'repository'),(482,53,'boards'),(483,53,'calendar'),(484,54,'issue_tracking'),(485,54,'time_tracking'),(486,54,'news'),(487,54,'documents'),(488,54,'files'),(489,54,'wiki'),(490,54,'boards'),(491,54,'calendar'),(492,55,'issue_tracking'),(493,55,'time_tracking'),(494,55,'news'),(495,55,'documents'),(496,55,'files'),(497,55,'wiki'),(498,55,'repository'),(499,55,'boards'),(500,55,'calendar'),(501,55,'gantt'),(502,56,'issue_tracking'),(503,56,'time_tracking'),(504,56,'news'),(505,56,'documents'),(506,56,'files'),(507,56,'wiki'),(508,56,'repository'),(509,56,'boards'),(510,56,'calendar'),(511,56,'gantt'),(512,57,'issue_tracking'),(513,57,'news'),(514,57,'documents'),(515,57,'files'),(516,57,'wiki'),(517,57,'boards'),(518,57,'calendar'),(519,58,'issue_tracking'),(520,58,'news'),(521,58,'documents'),(522,58,'files'),(523,58,'wiki'),(524,58,'boards'),(525,59,'issue_tracking'),(526,59,'news'),(527,59,'files'),(528,59,'wiki'),(529,59,'boards'),(530,59,'calendar'),(531,60,'issue_tracking'),(532,60,'time_tracking'),(533,60,'news'),(534,60,'documents'),(535,60,'files'),(536,60,'wiki'),(537,60,'boards'),(538,60,'calendar'),(539,61,'issue_tracking'),(540,61,'documents'),(541,61,'files'),(542,61,'boards'),(543,61,'calendar'),(544,62,'issue_tracking'),(545,62,'time_tracking'),(546,62,'news'),(547,62,'documents'),(548,62,'files'),(549,62,'wiki'),(550,62,'boards'),(551,62,'calendar'),(552,63,'issue_tracking'),(553,63,'news'),(554,63,'documents'),(555,63,'files'),(556,63,'boards'),(557,63,'calendar'),(558,64,'issue_tracking'),(559,64,'news'),(560,64,'documents'),(561,64,'files'),(562,65,'issue_tracking'),(563,65,'news'),(564,65,'files'),(565,66,'issue_tracking'),(566,66,'news'),(567,66,'documents'),(568,66,'files'),(569,66,'boards'),(570,67,'issue_tracking'),(571,67,'time_tracking'),(572,67,'news'),(573,67,'files'),(574,67,'wiki'),(575,67,'boards'),(576,68,'issue_tracking'),(577,68,'time_tracking'),(578,68,'news'),(579,68,'files'),(580,68,'calendar'),(581,69,'issue_tracking'),(582,69,'time_tracking'),(583,69,'news'),(584,69,'files'),(585,69,'wiki'),(586,69,'boards'),(587,70,'issue_tracking'),(588,70,'news'),(589,70,'files'),(590,70,'boards'),(591,70,'calendar'),(592,71,'issue_tracking'),(593,71,'time_tracking'),(594,71,'news'),(595,71,'documents'),(596,71,'files'),(597,71,'wiki'),(598,71,'boards'),(599,72,'issue_tracking'),(600,72,'news'),(601,72,'documents'),(602,72,'files'),(603,72,'wiki'),(604,72,'boards'),(605,73,'issue_tracking'),(606,73,'time_tracking'),(607,73,'news'),(608,73,'files'),(609,73,'wiki'),(610,73,'repository'),(611,73,'boards'),(612,74,'issue_tracking'),(613,74,'news'),(614,74,'files'),(615,74,'boards'),(616,75,'issue_tracking'),(617,75,'news'),(618,75,'documents'),(619,75,'files'),(620,75,'wiki'),(621,75,'repository'),(622,75,'boards'),(623,76,'issue_tracking'),(624,76,'time_tracking'),(625,76,'news'),(626,76,'documents'),(627,76,'files'),(628,76,'boards'),(629,77,'issue_tracking'),(630,77,'time_tracking'),(631,77,'news'),(632,77,'files'),(633,77,'wiki'),(634,77,'boards'),(635,78,'issue_tracking'),(636,78,'time_tracking'),(637,78,'news'),(638,78,'documents'),(639,78,'files'),(640,78,'wiki'),(641,78,'boards'),(642,78,'calendar'),(643,78,'gantt'),(644,79,'issue_tracking'),(645,79,'time_tracking'),(646,79,'news'),(647,79,'documents'),(648,79,'files'),(649,79,'wiki'),(650,79,'boards'),(651,80,'issue_tracking'),(652,80,'news'),(653,80,'documents'),(654,80,'files'),(655,80,'wiki'),(656,80,'repository'),(657,80,'boards'),(658,80,'calendar'),(659,81,'issue_tracking'),(660,81,'time_tracking'),(661,81,'news'),(662,81,'documents'),(663,81,'files'),(664,81,'wiki'),(665,81,'boards'),(666,81,'calendar'),(667,82,'issue_tracking'),(668,82,'news'),(669,82,'documents'),(670,82,'files'),(671,82,'wiki'),(672,82,'boards'),(673,82,'calendar'),(674,83,'issue_tracking'),(675,83,'time_tracking'),(676,83,'news'),(677,83,'documents'),(678,83,'files'),(679,83,'wiki'),(680,83,'boards'),(681,83,'calendar'),(682,84,'issue_tracking'),(683,84,'news'),(684,84,'documents'),(685,84,'files'),(686,84,'wiki'),(687,84,'boards'),(688,84,'calendar'),(689,85,'issue_tracking'),(690,85,'news'),(691,85,'documents'),(692,85,'files'),(693,85,'wiki'),(694,85,'boards'),(695,86,'issue_tracking'),(696,86,'news'),(697,86,'documents'),(698,86,'files'),(699,86,'wiki'),(700,86,'boards'),(701,87,'issue_tracking'),(702,87,'news'),(703,87,'documents'),(704,87,'files'),(705,87,'wiki'),(706,87,'boards'),(707,88,'issue_tracking'),(708,88,'news'),(709,88,'files'),(710,88,'wiki'),(711,88,'boards'),(712,88,'calendar'),(713,89,'issue_tracking'),(714,89,'news'),(715,89,'files'),(716,89,'wiki'),(717,89,'boards'),(718,89,'calendar'),(719,90,'news'),(720,90,'documents'),(721,90,'files'),(722,90,'wiki'),(723,90,'boards'),(724,90,'calendar'),(725,91,'issue_tracking'),(726,91,'time_tracking'),(727,91,'news'),(728,91,'documents'),(729,91,'files'),(730,91,'wiki'),(731,91,'boards'),(732,92,'issue_tracking'),(733,92,'time_tracking'),(734,92,'news'),(735,92,'files'),(736,92,'wiki'),(737,92,'boards'),(738,92,'calendar'),(739,93,'issue_tracking'),(740,93,'news'),(741,93,'files'),(742,93,'wiki'),(743,93,'boards'),(744,94,'issue_tracking'),(745,94,'files'),(746,94,'boards'),(747,94,'news'),(748,95,'issue_tracking'),(749,95,'news'),(750,95,'files'),(751,95,'boards'),(752,96,'issue_tracking'),(753,96,'news'),(754,96,'files'),(755,96,'wiki'),(756,96,'boards'),(757,96,'calendar'),(758,97,'issue_tracking'),(759,97,'news'),(760,97,'files'),(761,97,'wiki'),(762,97,'boards'),(763,97,'calendar'),(764,98,'issue_tracking'),(765,98,'news'),(766,98,'files'),(767,98,'gantt'),(768,99,'issue_tracking'),(769,99,'news'),(770,99,'documents'),(771,99,'files'),(772,99,'wiki'),(773,99,'boards'),(774,100,'issue_tracking'),(775,100,'news'),(776,100,'files'),(777,100,'wiki'),(778,100,'boards'),(779,101,'issue_tracking'),(780,101,'news'),(781,101,'documents'),(782,101,'files'),(783,101,'wiki'),(784,101,'boards'),(785,101,'calendar'),(786,102,'issue_tracking'),(787,102,'news'),(788,102,'files'),(789,102,'wiki'),(790,102,'boards'),(791,103,'issue_tracking'),(792,103,'news'),(793,103,'files'),(794,103,'wiki'),(795,103,'boards'),(796,104,'issue_tracking'),(797,104,'news'),(798,104,'files'),(799,104,'wiki'),(800,104,'boards'),(801,105,'issue_tracking'),(802,105,'time_tracking'),(803,105,'news'),(804,105,'documents'),(805,105,'files'),(806,105,'wiki'),(807,105,'boards'),(808,105,'calendar'),(809,78,'repository'),(810,106,'issue_tracking'),(811,106,'news'),(812,106,'files'),(813,106,'wiki'),(814,106,'boards'),(815,106,'calendar'),(816,107,'issue_tracking'),(817,107,'news'),(818,107,'files'),(819,108,'issue_tracking'),(820,108,'news'),(821,108,'files'),(822,108,'wiki'),(823,108,'boards'),(824,109,'issue_tracking'),(825,109,'news'),(826,109,'files'),(827,109,'wiki'),(828,109,'repository');
/*!40000 ALTER TABLE `enabled_modules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `enumerations`
--
DROP TABLE IF EXISTS `enumerations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `enumerations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL DEFAULT '',
`position` int(11) DEFAULT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
`type` varchar(255) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT '1',
`project_id` int(11) DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
`position_name` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_enumerations_on_project_id` (`project_id`),
KEY `index_enumerations_on_id_and_type` (`id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `enumerations`
--
LOCK TABLES `enumerations` WRITE;
/*!40000 ALTER TABLE `enumerations` DISABLE KEYS */;
INSERT INTO `enumerations` VALUES (1,'Documentation utilisateur',1,0,'DocumentCategory',1,NULL,NULL,NULL),(2,'Documentation technique',2,0,'DocumentCategory',1,NULL,NULL,NULL),(3,'Bas',1,0,'IssuePriority',1,NULL,NULL,'lowest'),(4,'Normal',2,1,'IssuePriority',1,NULL,NULL,'default'),(5,'Haut',3,0,'IssuePriority',1,NULL,NULL,'high3'),(6,'Urgent',4,0,'IssuePriority',1,NULL,NULL,'high2'),(7,'Immédiat',5,0,'IssuePriority',1,NULL,NULL,'highest'),(8,'Conception',1,0,'TimeEntryActivity',1,NULL,NULL,NULL),(9,'Développement',2,0,'TimeEntryActivity',1,NULL,NULL,NULL),(10,'Test',3,0,'TimeEntryActivity',1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `enumerations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `groups_users`
--
DROP TABLE IF EXISTS `groups_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `groups_users` (
`group_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
UNIQUE KEY `groups_users_ids` (`group_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `groups_users`
--
LOCK TABLES `groups_users` WRITE;
/*!40000 ALTER TABLE `groups_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `groups_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `import_items`
--
DROP TABLE IF EXISTS `import_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `import_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`import_id` int(11) NOT NULL,
`position` int(11) NOT NULL,
`obj_id` int(11) DEFAULT NULL,
`message` text,
`unique_id` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_import_items_on_import_id_and_unique_id` (`import_id`,`unique_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `import_items`
--
LOCK TABLES `import_items` WRITE;
/*!40000 ALTER TABLE `import_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `import_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `imports`
--
DROP TABLE IF EXISTS `imports`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `imports` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(255) DEFAULT NULL,
`user_id` int(11) NOT NULL,
`filename` varchar(255) DEFAULT NULL,
`settings` text,
`total_items` int(11) DEFAULT NULL,
`finished` tinyint(1) NOT NULL DEFAULT '0',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `imports`
--
LOCK TABLES `imports` WRITE;
/*!40000 ALTER TABLE `imports` DISABLE KEYS */;
/*!40000 ALTER TABLE `imports` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `issue_categories`
--
DROP TABLE IF EXISTS `issue_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `issue_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(60) NOT NULL DEFAULT '',
`assigned_to_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `issue_categories_project_id` (`project_id`),
KEY `index_issue_categories_on_assigned_to_id` (`assigned_to_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `issue_categories`
--
LOCK TABLES `issue_categories` WRITE;
/*!40000 ALTER TABLE `issue_categories` DISABLE KEYS */;
INSERT INTO `issue_categories` VALUES (1,82,'Aléas',NULL),(2,82,'Difficultés',NULL);
/*!40000 ALTER TABLE `issue_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `issue_relations`
--
DROP TABLE IF EXISTS `issue_relations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `issue_relations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`issue_from_id` int(11) NOT NULL,
`issue_to_id` int(11) NOT NULL,
`relation_type` varchar(255) NOT NULL DEFAULT '',
`delay` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `index_issue_relations_on_issue_from_id_and_issue_to_id` (`issue_from_id`,`issue_to_id`),
KEY `index_issue_relations_on_issue_from_id` (`issue_from_id`),
KEY `index_issue_relations_on_issue_to_id` (`issue_to_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `issue_relations`
--
LOCK TABLES `issue_relations` WRITE;
/*!40000 ALTER TABLE `issue_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `issue_relations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `issue_statuses`
--
DROP TABLE IF EXISTS `issue_statuses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `issue_statuses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL DEFAULT '',
`is_closed` tinyint(1) NOT NULL DEFAULT '0',
`position` int(11) DEFAULT NULL,
`default_done_ratio` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_issue_statuses_on_position` (`position`),
KEY `index_issue_statuses_on_is_closed` (`is_closed`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `issue_statuses`
--
LOCK TABLES `issue_statuses` WRITE;
/*!40000 ALTER TABLE `issue_statuses` DISABLE KEYS */;
INSERT INTO `issue_statuses` VALUES (1,'Nouveau',0,1,NULL),(2,'En cours',0,2,NULL),(3,'Résolu',1,3,NULL),(4,'Commentaire',0,4,NULL),(5,'Fermé',1,5,NULL),(6,'Rejeté',1,6,NULL);
/*!40000 ALTER TABLE `issue_statuses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `issues`
--
DROP TABLE IF EXISTS `issues`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `issues` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tracker_id` int(11) NOT NULL,
`project_id` int(11) NOT NULL,
`subject` varchar(255) NOT NULL DEFAULT '',
`description` longtext,
`due_date` date DEFAULT NULL,
`category_id` int(11) DEFAULT NULL,
`status_id` int(11) NOT NULL,
`assigned_to_id` int(11) DEFAULT NULL,
`priority_id` int(11) NOT NULL,
`fixed_version_id` int(11) DEFAULT NULL,
`author_id` int(11) NOT NULL,
`lock_version` int(11) NOT NULL DEFAULT '0',
`created_on` datetime DEFAULT NULL,
`updated_on` datetime DEFAULT NULL,
`start_date` date DEFAULT NULL,
`done_ratio` int(11) NOT NULL DEFAULT '0',
`estimated_hours` float DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
`root_id` int(11) DEFAULT NULL,
`lft` int(11) DEFAULT NULL,
`rgt` int(11) DEFAULT NULL,
`is_private` tinyint(1) NOT NULL DEFAULT '0',
`closed_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `issues_project_id` (`project_id`),
KEY `index_issues_on_status_id` (`status_id`),
KEY `index_issues_on_category_id` (`category_id`),
KEY `index_issues_on_assigned_to_id` (`assigned_to_id`),
KEY `index_issues_on_fixed_version_id` (`fixed_version_id`),
KEY `index_issues_on_tracker_id` (`tracker_id`),
KEY `index_issues_on_priority_id` (`priority_id`),
KEY `index_issues_on_author_id` (`author_id`),
KEY `index_issues_on_created_on` (`created_on`),
KEY `index_issues_on_root_id_and_lft_and_rgt` (`root_id`,`lft`,`rgt`),
KEY `index_issues_on_parent_id` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `issues`
--
LOCK TABLES `issues` WRITE;
/*!40000 ALTER TABLE `issues` DISABLE KEYS */;
INSERT INTO `issues` VALUES (1,2,9,'Mettre à jour le modèle S95 avec celui publié sur le sharepoint S95 de la fondation; ','',NULL,NULL,5,NULL,4,NULL,5,1,'2012-01-18 18:27:02','2015-02-25 14:41:03','2012-01-18',0,NULL,NULL,1,1,2,0,'2015-02-25 14:41:03'),(2,3,3,'Accès au dépôt Subversion','J\'ai un soucis d\'accès au dépôt subversion depuis mon accès web personnel. Le code d\'erreur est 64 et le couple identifiant/mot de passe correspond à celui du redmine.',NULL,NULL,5,1,5,NULL,2,2,'2012-01-18 19:03:34','2014-05-22 13:30:47','2012-01-18',100,NULL,NULL,2,1,2,0,'2012-01-18 19:59:44'),(3,2,3,'Finalisation du merge de la Stack V1','Récupération des sources de la stack et mise à jour des dernières modifications pour linux concernant :\r\n* les socket\r\n* les mutex ','2012-01-19',NULL,5,NULL,5,NULL,2,4,'2012-01-19 09:02:22','2014-05-22 13:29:30','2012-01-19',100,4,NULL,3,1,2,0,'2012-01-19 11:57:55'),(4,1,13,'Gestion du numéro de mois incorrecte sous GNU/Linux','h2. Problèmes:\r\n\r\nLes fonctions SystemTimeToFileTime, FileTimeToSystemTime et GetLocalTime ont un problème de gestion du mois.\r\n\r\nh2. Causes:\r\n\r\nLa structure tm code le numéro du mois à l\'aide d\'un entier allant de la valeur 0 à 11. l\'utilisation de cette valeur avec le mois d\'un FILETIME est donc incorrecte.\r\n\r\nh2. Solution:\r\n\r\nh3. GetLocalTime\r\n\r\nécrire à la ligne 772 :\r\n\r\nbq. @lpSystemTime->wMonth = tmTime->tm_mon+1;@ \r\n\r\nau lieu de \r\n\r\nbq. @lpSystemTime->wMonth = tmTime->tm_mon;@\r\n\r\nh3. FileTimeToSystemTime\r\n\r\nécrire à la ligne 719: \r\n\r\nbq. @lpSystemTime->wMonth = tmTime->tm_mon+1;@ \r\n\r\nau lieu de \r\n\r\nbq. @lpSystemTime->wMonth = tmTime->tm_mon;@\r\n\r\nh3. SystemTimeToFileTime\r\n\r\nécrire à la ligne 743: \r\n\r\nbq. @tmTime->tm_mon=lpSystemTime->wMonth-1;@ \r\n\r\nau lieu de \r\n\r\nbq. @tmTime->tm_mon=lpSystemTime->wMonth-1@',NULL,NULL,5,1,5,NULL,2,1,'2012-03-06 11:40:57','2012-03-06 11:45:35','2012-03-06',0,0.1,NULL,4,1,2,0,'2012-03-06 11:45:35'),(5,1,3,'Gestion du numéro de mois incorrecte sous GNU/Linux','h1. Problèmes:\r\n\r\nLes fonctions SystemTimeToFileTime, FileTimeToSystemTime et GetLocalTime ont un problème de gestion du mois.\r\n\r\nh1. Causes:\r\n\r\nLa structure tm code le numéro du mois à l\'aide d\'un entier allant de la valeur 0 à 11. l\'utilisation de cette valeur avec le mois d\'un FILETIME est donc incorrecte.\r\n\r\nh1. Solution:\r\n\r\nh2. GetLocalTime\r\n\r\nécrire à la ligne 772 :\r\n\r\n @lpSystemTime->wMonth = tmTime->tm_mon+1;@\r\n\r\nau lieu de\r\n\r\n @lpSystemTime->wMonth = tmTime->tm_mon;@\r\n\r\nh2. FileTimeToSystemTime\r\n\r\nécrire à la ligne 719:\r\n\r\n @lpSystemTime->wMonth = tmTime->tm_mon+1;@\r\n\r\nau lieu de\r\n\r\n @lpSystemTime->wMonth = tmTime->tm_mon;@\r\n\r\nh2. SystemTimeToFileTime\r\n\r\nécrire à la ligne 743:\r\n\r\n @tmTime->tm_mon=lpSystemTime->wMonth-1;@\r\n\r\nau lieu de\r\n\r\n @tmTime->tm_mon=lpSystemTime->wMonth-1@\r\n',NULL,NULL,5,1,5,NULL,2,2,'2012-03-06 11:47:25','2014-05-22 13:29:12','2012-03-06',100,0.1,NULL,5,1,2,0,'2012-03-13 10:23:17'),(6,2,25,'OpenOpcUa_GetEndpoints & ','OpenOpcUa_GetEndpoints retourne une liste de endPointsdescription\r\nIl serait souhaitable d \'avoir une fonction avec une adresse url en entrée connue ( et d\'autres paramètres si besoin )et qui retourne sa endPointsdescription pour pouvoir créer une session .',NULL,NULL,1,1,4,NULL,2,1,'2012-08-22 09:49:44','2015-02-25 14:42:16','2012-08-22',0,NULL,NULL,6,1,2,0,NULL),(7,2,25,'Notification de rupture de communication entre le serveur et le client','Notification par un callback de la rupture de liaison entre le serveur et le client.\r\nUn message texte indiquera la raison de la rupture.',NULL,NULL,3,NULL,4,NULL,2,1,'2012-08-22 12:06:46','2015-02-25 14:43:44','2012-08-22',0,NULL,NULL,7,1,2,0,'2015-02-25 14:43:44'),(8,3,1,'adresse du repository','Bonjour,\r\nEst-il possible de récupérer une copie de votre projet pour un test. Pouvez-vous m\'indiquer le lien du repository cvs ?\r\nMerci',NULL,NULL,1,NULL,4,NULL,86,0,'2012-09-20 21:58:02','2012-09-20 21:58:02','2012-09-20',0,NULL,NULL,8,1,2,0,NULL),(9,1,13,'Serveur sans LDS','Impssible de démarrer le serveur si le LDS n\'est pas installé.',NULL,NULL,3,1,6,NULL,1,1,'2012-11-08 11:04:15','2015-02-24 14:22:39','2012-11-08',0,NULL,NULL,9,1,2,0,'2015-02-24 14:22:39'),(10,2,14,'Extension des fonctions Utils::IsEqual','Ajouter les methodes Utils::IsEqual pour l\'ensemble des ExtensionObject dont le type \"encodeable\" est connu.',NULL,NULL,1,1,4,NULL,1,0,'2012-11-10 20:54:13','2012-11-10 20:54:13','2012-11-10',0,NULL,NULL,10,1,2,0,NULL),(11,2,13,'Support BrowseNext','Implémenter le support du service BrowseNext',NULL,NULL,3,1,4,NULL,1,1,'2012-11-15 11:42:25','2012-11-15 11:43:45','2012-11-15',100,NULL,NULL,11,1,2,0,'2012-11-15 11:42:25'),(12,2,13,'Support RegisterNodes et UnregisterNodes','',NULL,NULL,3,1,4,NULL,1,3,'2012-11-15 11:43:07','2015-02-24 14:29:58','2012-11-15',100,NULL,NULL,12,1,2,0,'2015-02-24 14:29:58'),(13,1,3,'Incohénrence dans la stack','L\'enum OpcUa_MessageSecurityMode et les definitions ci-dessous ne correspondent pas\r\n#define OPCUA_SECURECHANNEL_MESSAGESECURITYMODE_INVALID 0x00\r\n#define OPCUA_SECURECHANNEL_MESSAGESECURITYMODE_NONE 0x01\r\n#define OPCUA_SECURECHANNEL_MESSAGESECURITYMODE_SIGN 0x02\r\n#define OPCUA_SECURECHANNEL_MESSAGESECURITYMODE_SIGNANDENCRYPT 0x04\r\n\r\ntypedef enum _OpcUa_MessageSecurityMode\r\n{\r\n OpcUa_MessageSecurityMode_Invalid = 0,\r\n OpcUa_MessageSecurityMode_None = 1,\r\n OpcUa_MessageSecurityMode_Sign = 2,\r\n OpcUa_MessageSecurityMode_SignAndEncrypt = 3\r\n#if OPCUA_FORCE_INT32_ENUMS\r\n ,_OpcUa_MessageSecurityMode_MaxEnumerationValue = OpcUa_Int32_Max\r\n#endif\r\n}',NULL,NULL,5,1,6,NULL,1,1,'2012-12-26 18:35:32','2014-05-22 13:28:51','2012-12-26',0,NULL,NULL,13,1,2,0,'2014-05-22 13:28:51'),(14,3,1,'download source code','Hello,\r\n\r\nI would like to download the source code of openopcua.\r\nI didn\'t find the svn address aof the project.\r\n\r\nPlease could you give me this address?\r\n\r\nBest regards.\r\n\r\nVincent',NULL,NULL,1,NULL,4,NULL,122,1,'2013-02-02 01:03:58','2014-05-22 13:33:37','2013-02-02',0,NULL,NULL,14,1,2,0,NULL),(15,2,14,'Utils::OpcUaDateTimeToString format de la date en fonction de l\'environement Francais/Anglais ','Utils::OpcUaDateTimeToString retourne une date au format Français, ce qui peut être gênant sur des programmes fonctionnant \r\nsur des systèmes d\'exploitation Anglais.\r\nPossibilité de définir le format en sortie, Anglais ou Français en fonction de l\'environnement ou d\'une variable ',NULL,NULL,1,NULL,4,NULL,2,0,'2013-04-24 11:30:37','2013-04-24 11:30:37','2013-04-24',0,NULL,NULL,15,1,2,0,NULL),(16,3,1,'Source code Svn repository.','Hello, \r\n\r\nWe are interested in the OpenOPCUA, and if is possible we would like to have access to the repository. As far as i understand the documentation of the c stack as well is located at the svn, but is impossible to find the svn address here.\r\n\r\nAs well we are interested on the Vpi ModBus to test it and as well improve, if any bugs or improvements necessary. Is it possible to have access to the source code of the implementation of the pre-release version of the Vpi Modbus ?\r\n\r\nThank you very much.\r\n\r\n\r\n',NULL,NULL,1,NULL,4,NULL,134,0,'2013-05-10 12:20:23','2013-05-10 12:20:23','2013-05-10',0,NULL,NULL,16,1,2,0,NULL),(17,1,1,'Guid Support','Guid are supported in the OpenOpcUa server but a erro appears in compliance.\r\n',NULL,NULL,5,42,4,NULL,25,1,'2014-02-14 20:39:07','2015-02-24 14:14:56','2014-02-14',0,NULL,NULL,17,1,2,0,'2015-02-24 14:14:56'),(18,1,1,'unable to connect to OpenOpcUa server with Inductive Automation Ignition','While testing a few OPC UA servers, I tried to link OpenOpcUA to Ignition by Inductive Automation.\r\n\r\nIn this case, Ignition opc ua client is trying to connect to the OpenOpcUa server, both running on the same machine (Windows 7, 64 bit). I have the same issue when connecting to a remote OpenOpcUa server on a Raspberry PI though.\r\n\r\nThe connection fails and Ignition is reporting a nullreference error in GetEndpoints:\r\n@java.lang.NullPointerException: null\r\ncom.inductiveautomation.xopc.client.util.ConnectionUtil.getEndpoint(ConnectionUtil.java:78)\r\ncom.inductiveautomation.xopc.client.OpcUaConnection.createUaClient(OpcUaConnection.java:523)\r\ncom.inductiveautomation.xopc.client.OpcUaConnection.verifyConnectionState(OpcUaConnection.java:141)\r\ncom.inductiveautomation.xopc.client.FailoverAwareOpcUaConnection.verifyConnectionState(FailoverAwareOpcUaConnection.java:75)\r\ncom.inductiveautomation.ignition.gateway.opc.OPCManagerImpl$ServerWrapper.verifyConnectionState(OPCManagerImpl.java:742)\r\ncom.inductiveautomation.ignition.gateway.opc.OPCManagerImpl$OPCConnectionKeepalive.run(OPCManagerImpl.java:618)\r\ncom.inductiveautomation.ignition.common.execution.impl.BasicExecutionEngine$TrackedTask.run(BasicExecutionEngine.java:573)\r\njava.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)\r\njava.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351)\r\njava.util.concurrent.FutureTask.runAndReset(FutureTask.java:178)\r\njava.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178)\r\njava.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)\r\njava.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)\r\njava.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)\r\njava.lang.Thread.run(Thread.java:722)@\r\n\r\nI have increased logging in both servers (attached) but it is not clear to me yet whether the problem is with Ignition, OpenOpcUa or the configuration to connect both.\r\nFor kepware, Inductive automation recommends using the IP address instead of localhost or the hostname but I tried several configurations.\r\n\r\nA comment by an Ignition forum moderator:\r\n@GetEndpointsResponse contains a null EndpointDescription list and Ignition isn\'t expecting that to be null... @\r\n\r\nFrom debugging OpenOpcUa, it seems to me that it is sending an Endpoint description.\r\nMaybe it is not in a format that Ignition expects, but since for example UAExpert opc UA client has no trouble I am wondering if it is not Ignition that is expecting a value somewhere where there is not necessarily something needed...',NULL,NULL,6,1,4,NULL,164,8,'2014-02-22 00:07:11','2015-02-24 14:19:39','2014-02-21',0,NULL,NULL,18,1,2,0,'2015-02-24 14:19:39'),(19,1,1,'VPIModbus : Placement du fichier VPIModbusMaster###.dat','Le fichier de configuration VPIModbusMaster###.dat n\'est pas placé dans le dossier qui contient les fichiers de configuration.',NULL,NULL,2,1,3,NULL,174,1,'2014-03-10 08:45:52','2014-03-10 08:58:17','2014-03-10',0,NULL,NULL,19,1,2,0,NULL),(20,3,1,'Namespace et NodeId en String','J\'ai essayé de mettre les namespaces et les nodeId en String mais j\'obtiens l\'erreur suivante : \r\nOpenOpcUa:6100> Now will try to parse: .\\Config\\Labo-Modbus.xml\r\nOpenOpcUa:6100> XML file corrupted CUABase::Init\r\nOpenOpcUa:6100> ERROR> Unknown exception\r\n\r\nVoici la ligne modifié avec les Strings de labo-Modbus.xml :\r\n <UAObject NodeId=\"ns=Equipement;i=Liste\" BrowseName=\"Equipements\" EventNotifier=\"1\">\r\n\r\nEst-ce possible de mettre des chaines de caractères dans ces champs ?\r\nCordialement.',NULL,NULL,3,NULL,4,NULL,174,1,'2014-03-10 17:56:52','2014-03-10 18:04:50','2014-03-10',0,NULL,NULL,20,1,2,0,'2014-03-10 18:04:50'),(21,3,1,'Namespace et NodeId en String','J\'ai essayé de mettre les namespaces et les nodeId en String mais j\'obtiens l\'erreur suivante : \r\nOpenOpcUa:6100> Now will try to parse: .\\Config\\Labo-Modbus.xml\r\nOpenOpcUa:6100> XML file corrupted CUABase::Init\r\nOpenOpcUa:6100> ERROR> Unknown exception\r\n\r\nVoici la ligne modifié avec les Strings de labo-Modbus.xml :\r\n <UAObject NodeId=\"ns=Equipement;i=Liste\" BrowseName=\"Equipements\" EventNotifier=\"1\">\r\n\r\nEst-ce possible de mettre des chaines de caractères dans ces champs ?\r\nCordialement.',NULL,NULL,5,NULL,4,NULL,174,1,'2014-03-10 17:57:32','2014-03-10 18:05:57','2014-03-10',0,NULL,NULL,21,1,2,0,'2014-03-10 18:05:57'),(22,1,1,'Plusieurs namespaces et plusieurs fichiers nodeSet','Si on défini plusieurs namespaces dans plusieurs fichiers, les numéros de namespaces ne correspondent pas au numéro dans NamespaceUris.',NULL,NULL,1,NULL,4,NULL,174,0,'2014-04-01 15:04:52','2014-04-01 15:04:52','2014-04-01',0,NULL,NULL,22,1,2,0,NULL),(23,1,1,'Resource file','how about getting rid of resource file in the project and some unnecessary mfc headers. to give more flexibility to end user to compile the project on VC++ Express versions or MinGW. I have noticed that the source provided can be compiled only with Vc++ 2012 because of precompiled dependencies. that creates problems with linking then one doesn\'t use paid version(MFC dependency, Resource file) or different compiler version.\r\n Regards\r\n Arsham Atonyan',NULL,NULL,3,1,3,NULL,193,6,'2014-05-26 06:48:23','2014-05-26 11:09:02','2014-05-26',0,NULL,NULL,23,1,2,0,'2014-05-26 11:09:02'),(24,3,1,'Resource file','how about getting rid of resource file in the project and some unnecessary mfc headers. to give more flexibility to end user to compile the project on VC++ Express versions or MinGW. I have noticed that the source provided can be compiled only with Vc++ 2012 because of precompiled dependencies. that creates problems with linking then one doesn\'t use paid version(MFC dependency, Resource file) or different compiler version.\r\n Regards\r\n Arsham Atonyan',NULL,NULL,3,1,4,NULL,193,2,'2014-05-26 06:49:36','2015-04-01 22:53:16','2014-05-26',0,NULL,NULL,24,1,2,0,'2015-04-01 22:53:16'),(25,1,1,'Memory leaks using Utils::Copy','I am playing with the code in an OPC UA client and I am seeing massive memory leaks for example in receiving monitored items. Trying to track them using valgrind on Linux I think that the reason is an invalid usage of Utils::Copy methods.\r\n\r\nTake for example\r\n\r\n<pre>\r\n==13988== 320 bytes in 40 blocks are definitely lost in loss record 709 of 732\r\n==13988== at 0x4027AA4: malloc (vg_replace_malloc.c:291)\r\n==13988== by 0x41E55F0: OpcUa_P_Memory_Alloc (opcua_p_memory.c:45)\r\n==13988== by 0x41E6BCD: OpcUa_Memory_Alloc (opcua_memory.c:63)\r\n==13988== by 0x40D67AD: OpenOpcUa::UASharedLib::Utils::Copy(_OpcUa_DateTime*) (Utils.cpp:2193)\r\n==13988== by 0x40D5C86: OpenOpcUa::UASharedLib::Utils::Copy(_OpcUa_DataValue*) (Utils.cpp:1866)\r\n==13988== by 0x408397E: OpenOpcUa_GetInternalNode(void*, void*, void*, void*, _OpenOpcUa_InternalNode_**) (OpenOpcUaClientLib.cpp:913)\r\n==13988== by 0x804FD99: CMyOpcUaClientExample::notification_cb(void*, long, _OpcUa_MonitoredItemNotification*, void*) (MyOpcUaClientExample.cpp:136)\r\n</pre>\r\n\r\nThe Copy on the line 2193 does OpcUa_Alloc of the datetime structure.\r\n<pre>\r\n OpcUa_DateTime* pTarget=(OpcUa_DateTime*)OpcUa_Alloc(sizeof(OpcUa_DateTime));\r\n</pre>\r\n\r\nThe Copy on the line 1866 takes the returned pointer, dereferences it and copies the _content_ to the new place\r\n<pre>\r\n pTarget->SourceTimestamp=*Utils::Copy(&(pSrc->SourceTimestamp));\r\n</pre>\r\n\r\nUnless I am overlooking something I don\'t see where the memory allocated by the first Copy is freed (or the pointer is being saved so that it can be freed later).\r\n\r\nSearching for *Utils::Copy reveals many instances of this usage.',NULL,NULL,3,1,4,NULL,194,1,'2014-05-27 16:33:18','2014-05-27 16:57:26','2014-05-27',0,NULL,NULL,25,1,2,0,'2014-05-27 16:57:26'),(26,1,1,'OpenOpcUaQuickClient Crash In windows','Hi!\r\n\r\nwhen i insert opc.tcp://127.0.0.1:xxxx application Crash.',NULL,NULL,1,1,4,NULL,196,0,'2014-06-06 15:00:56','2014-06-06 15:00:56','2014-06-06',0,NULL,NULL,26,1,2,0,NULL),(27,2,13,'Search for encoding for user define dataType','Each new dataType have Encoding references. \r\nHasEncoding.\r\n We have to search the HasEncoding reference for a new DataType\r\nThe search will appears in AddNewEncodeableObject using DataType NodeId as parameter (pDataType->GetNodeId())',NULL,NULL,5,1,4,NULL,1,1,'2014-08-29 12:40:16','2022-05-27 01:08:06','2014-08-29',100,NULL,NULL,27,1,2,0,'2022-05-27 01:08:06'),(28,1,45,'Error detection','The VPiComDa cannot detect when a COM DA 2.0 server crash.\r\nI haveto figure out how to workaround this. ',NULL,NULL,1,1,4,NULL,1,0,'2015-01-30 08:50:34','2015-01-30 08:50:34','2015-01-30',0,NULL,NULL,28,1,2,0,NULL),(29,1,1,'Incorrect definition of OpcUaCharW','On Linux/GCC, OpcUa_CharW must be 4 bytes wide, since it is being passed to wcscpy() and friends.\r\n\r\nFix by using the standard type wchar_t as base for the typedef:\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaStackV1/include/shared/opcua_p_types.h b/OpenOpcUaStackV1/include/shared/opcua_p_types.h\r\n--- a/OpenOpcUaStackV1/include/shared/opcua_p_types.h\r\n+++ b/OpenOpcUaStackV1/include/shared/opcua_p_types.h\r\n@@ -57,7 +57,7 @@ typedef double OpcUa_Double;\r\n typedef char OpcUa_CharA;\r\n typedef unsigned char OpcUa_UCharA;\r\n typedef OpcUa_CharA* OpcUa_StringA;\r\n-typedef unsigned short OpcUa_CharW;\r\n+typedef wchar_t OpcUa_CharW;\r\n typedef size_t OpcUa_Size_t;\r\n #else\r\n typedef int OpcUa_Int;\r\n@@ -77,7 +77,7 @@ typedef double OpcUa_Double;\r\n typedef char OpcUa_CharA;\r\n typedef unsigned char OpcUa_UCharA;\r\n typedef OpcUa_CharA* OpcUa_StringA;\r\n-typedef unsigned short OpcUa_CharW;\r\n+typedef wchar_t OpcUa_CharW;\r\n typedef size_t OpcUa_Size_t;\r\n #endif\r\n \r\n</pre>\r\n\r\n*Caveat:* Not tested on Windows',NULL,NULL,1,1,4,NULL,219,2,'2015-02-20 11:04:41','2015-08-05 17:17:23','2015-02-20',0,NULL,NULL,29,1,2,0,NULL),(30,1,1,'Read beyond end-of-buffer','With _GNUC_, the UTF-8 encoded result from FindFirstFile() was erroneously\r\nconverted from Unicode (wide string) into an unused string buffer.\r\nThe conversion would read beyond the end of the source looking for four\r\nconsecutive 0 bytes...\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaSharedLib/source/Application.cpp b/OpenOpcUaSharedLib/source/Application.cpp\r\n--- a/OpenOpcUaSharedLib/source/Application.cpp\r\n+++ b/OpenOpcUaSharedLib/source/Application.cpp\r\n@@ -284,7 +284,6 @@ OpcUa_StatusCode CApplication::LoadPFXCertificate()\r\n targetPath.append(tFindFileData.cFileName);\r\n #endif\r\n #else\r\n- OpcUa_String_WtoA((OpcUa_CharW*)tFindFileData->d_name,&asFilename);\r\n targetPath.append(\"//private//\");\r\n targetPath.append(tFindFileData->d_name);\r\n #endif\r\n</pre>',NULL,NULL,1,1,4,NULL,219,1,'2015-02-20 11:09:36','2015-08-05 17:33:23','2015-02-20',0,NULL,NULL,30,1,2,0,NULL),(31,1,1,'Remove duplicated forward slashes in path','On Windows, backslashes must be duplicated (escaped) in string constants.\r\n\r\nThis does not apply to forward slashes.\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaSharedLib/source/Application.cpp b/OpenOpcUaSharedLib/source/Application.cpp\r\n--- a/OpenOpcUaSharedLib/source/Application.cpp\r\n+++ b/OpenOpcUaSharedLib/source/Application.cpp\r\n@@ -248,7 +248,7 @@ OpcUa_StatusCode CApplication::LoadPFXCertificate()\r\n #ifndef _GNUC_\r\n OpcUa_StrnCatA(&filePath[iLen],1024,\"\\\\private\\\\*.pfx\",OpcUa_StrLenA(\"\\\\private\\\\*.pfx\"));\r\n #else\r\n- OpcUa_StrnCatA(&filePath[iLen],1024,\"//private//*.pfx\",OpcUa_StrLenA(\"//private//*.pfx\"));\r\n+ OpcUa_StrnCatA(&filePath[iLen],1024,\"/private/*.pfx\",OpcUa_StrLenA(\"/private/*.pfx\"));\r\n #endif\r\n OpcUa_MemSet(&tFindFileData, 0, sizeof(tFindFileData));\r\n uStatus=OpcUa_String_AtoW((OpcUa_StringA)filePath, (OpcUa_CharW**)&pszFilter);\r\n@@ -280,11 +280,11 @@ OpcUa_StatusCode CApplication::LoadPFXCertificate()\r\n targetPath.append(\"\\\\private\\\\\");\r\n targetPath.append(asFilename);\r\n #else\r\n- targetPath.append(\"//private//\");\r\n+ targetPath.append(\"/private/\");\r\n targetPath.append(tFindFileData.cFileName);\r\n #endif\r\n #else\r\n- targetPath.append(\"//private//\");\r\n+ targetPath.append(\"/private/\");\r\n targetPath.append(tFindFileData->d_name);\r\n #endif\r\n \r\n</pre>',NULL,NULL,1,1,3,NULL,219,0,'2015-02-20 11:14:57','2015-02-20 11:14:57','2015-02-20',0,NULL,NULL,31,1,2,0,NULL),(32,1,1,'CQueuedPublishMessage::FillXXX(): Extend allocation for ExtensionObjects','When a client attempts to monitor more than one variable, the server crashes as it only allocates space for one ExtensionObject.\r\n\r\nFix by expanding the buffer as needed:\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/QueuedPublishRequest.cpp b/OpenOpcUaCoreServer/source/QueuedPublishRequest.cpp\r\nindex 72a9701..deebc42 100644\r\n--- a/OpenOpcUaCoreServer/source/QueuedPublishRequest.cpp\r\n+++ b/OpenOpcUaCoreServer/source/QueuedPublishRequest.cpp\r\n@@ -335,6 +335,8 @@ OpcUa_StatusCode CQueuedPublishMessage::FillEventNotificationMessage(OpcUa_UInt3\r\n ////////////////////////////////////////////////////////////////////////////////////////////\r\n // Mise en forme du résultat\r\n OpcUa_Int32 iIndex = m_pInternalPublishResponse->NotificationMessage.NoOfNotificationData;\r\n+ m_pInternalPublishResponse->NotificationMessage.NotificationData =\r\n+ (OpcUa_ExtensionObject*)realloc(m_pInternalPublishResponse->NotificationMessage.NotificationData, (iIndex + 1) * sizeof(OpcUa_ExtensionObject));\r\n OpcUa_ExtensionObject_Initialize(&(m_pInternalPublishResponse->NotificationMessage.NotificationData[iIndex]));\r\n //NodeId\r\n m_pInternalPublishResponse->NotificationMessage.NotificationData[iIndex].TypeId.NodeId.Identifier.Numeric = OpcUaId_EventNotificationList_Encoding_DefaultBinary;\r\n@@ -579,6 +581,8 @@ OpcUa_StatusCode CQueuedPublishMessage::FillDataChangeNotificationMessage(OpcUa_\r\n ////////////////////////////////////////////////////////////////////////////////////////////\r\n // Mise en forme du résultat\r\n iIndex = m_pInternalPublishResponse->NotificationMessage.NoOfNotificationData;\r\n+ m_pInternalPublishResponse->NotificationMessage.NotificationData =\r\n+ (OpcUa_ExtensionObject*)realloc(m_pInternalPublishResponse->NotificationMessage.NotificationData, (iIndex + 1) * sizeof(OpcUa_ExtensionObject));\r\n OpcUa_ExtensionObject_Initialize(&(m_pInternalPublishResponse->NotificationMessage.NotificationData[iIndex]));\r\n //NodeId\r\n m_pInternalPublishResponse->NotificationMessage.NotificationData[iIndex].TypeId.NodeId.Identifier.Numeric = OpcUaId_DataChangeNotification_Encoding_DefaultBinary;\r\n@@ -613,11 +617,10 @@ OpcUa_StatusCode CQueuedPublishMessage::FillStatusChangeNotificationMessage(OpcU\r\n OpcUa_StatusCode uStatus=OpcUa_Good;\r\n if (pNotification)\r\n {\r\n- if (m_pInternalPublishResponse->NotificationMessage.NotificationData==OpcUa_Null)\r\n- m_pInternalPublishResponse->NotificationMessage.NotificationData=\r\n- (OpcUa_ExtensionObject*)OpcUa_Alloc(sizeof(OpcUa_ExtensionObject));\r\n // Mise en forme du résultat\r\n OpcUa_Int32 iIndex= m_pInternalPublishResponse->NotificationMessage.NoOfNotificationData;\r\n+ m_pInternalPublishResponse->NotificationMessage.NotificationData =\r\n+ (OpcUa_ExtensionObject*)realloc(m_pInternalPublishResponse->NotificationMessage.NotificationData, (iIndex + 1) * sizeof(OpcUa_ExtensionObject));\r\n OpcUa_ExtensionObject_Initialize(&(m_pInternalPublishResponse->NotificationMessage.NotificationData[iIndex]));\r\n m_pInternalPublishResponse->NotificationMessage.NotificationData[iIndex].Body.EncodeableObject.Object=(OpcUa_StatusChangeNotification*)OpcUa_Alloc(sizeof(OpcUa_StatusChangeNotification));\r\n //NodeId\r\n@@ -678,7 +681,9 @@ OpcUa_StatusCode CQueuedPublishMessage::FillStatusChangeNotificationMessage(OpcU\r\n {\r\n ////////////////////////////////////////////////////////////////////////////////////////////\r\n // Mise en forme du résultat\r\n- OpcUa_Int32 iIndex= m_pInternalPublishResponse->NotificationMessage.NoOfNotificationData;\r\n+ OpcUa_Int32 iIndex = m_pInternalPublishResponse->NotificationMessage.NoOfNotificationData;\r\n+ m_pInternalPublishResponse->NotificationMessage.NotificationData =\r\n+ (OpcUa_ExtensionObject*)realloc(m_pInternalPublishResponse->NotificationMessage.NotificationData, (iIndex + 1) * sizeof(OpcUa_ExtensionObject));\r\n OpcUa_ExtensionObject_Initialize(&(m_pInternalPublishResponse->NotificationMessage.NotificationData[iIndex]));\r\n m_pInternalPublishResponse->NotificationMessage.NotificationData[iIndex].Body.EncodeableObject.Object=(OpcUa_StatusChangeNotification*)OpcUa_Alloc(sizeof(OpcUa_StatusChangeNotification));\r\n //NodeId\r\n</pre>',NULL,NULL,1,1,4,NULL,219,1,'2015-02-20 11:25:06','2015-08-05 17:49:09','2015-02-20',0,NULL,NULL,32,1,2,0,NULL),(33,1,1,'Prevent buffer overflow','When monitoring variables, the server might overflow @pEventField@\r\n\r\nFix by limiting the loop (but perhaps the buffer simply has the wrong length?):\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/MonitoredItemServer.cpp b/OpenOpcUaCoreServer/source/MonitoredItemServer.cpp\r\nindex 7ec2b09..25f47ba 100644\r\n--- a/OpenOpcUaCoreServer/source/MonitoredItemServer.cpp\r\n+++ b/OpenOpcUaCoreServer/source/MonitoredItemServer.cpp\r\n@@ -165,7 +165,7 @@ void CMonitoredItemServer::SetEventFilter(OpcUa_EventFilter* pEventFilter)\r\n OpcUa_SimpleAttributeOperand* pEventField = (OpcUa_SimpleAttributeOperand*)OpcUa_Alloc(uiEventField*sizeof(OpcUa_SimpleAttributeOperand));\r\n \r\n OpcUa_Int32 i = 0;\r\n- for (OpcUa_Int32 iClauses = 0; iClauses < pEventFilter->NoOfSelectClauses; iClauses++)\r\n+ for (OpcUa_Int32 iClauses = 0; iClauses < pEventFilter->NoOfSelectClauses && i < uiEventField; iClauses++)\r\n {\r\n OpcUa_SimpleAttributeOperand aSimpleAttributeOperand = pEventFilter->SelectClauses[iClauses];\r\n // AttributeId\r\n</pre>',NULL,NULL,3,1,4,NULL,219,2,'2015-02-20 11:31:40','2015-02-20 15:52:49','2015-02-20',0,NULL,NULL,33,1,2,0,'2015-02-20 15:52:49'),(34,1,1,'Fix undefined behaviour due to uninitialised variables','Valgrind found a number of variables that were used in @if()@ clauses without being set beforehand.\r\n\r\nFix by adding initialisations and using @calloc()@ instead of @malloc()@\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/include/UAObjectType.h b/OpenOpcUaCoreServer/include/UAObjectType.h\r\n--- a/OpenOpcUaCoreServer/include/UAObjectType.h\r\n+++ b/OpenOpcUaCoreServer/include/UAObjectType.h\r\n@@ -49,6 +49,7 @@ namespace OpenOpcUa\r\n CUAObjectType(OpcUa_NodeClass aNodeClass,const char **atts) :CUABase(aNodeClass,atts)\r\n {\r\n //(*this)=(CUAObjectType&)CUABase::CUABase(aNodeClass,atts);\r\n+ m_bAbstract = false;\r\n int ii=0;\r\n while (atts[ii])\r\n {\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/Field.cpp b/OpenOpcUaCoreServer/source/Field.cpp\r\n--- a/OpenOpcUaCoreServer/source/Field.cpp\r\n+++ b/OpenOpcUaCoreServer/source/Field.cpp\r\n@@ -92,8 +92,9 @@ using namespace UAHistoricalAccess;\r\n \r\n CField::CField(void)\r\n {\r\n- m_pDefinition=OpcUa_Null;\r\n- m_iFieldSize=0;\r\n+ m_pDefinition = OpcUa_Null;\r\n+ m_iFieldSize = 0;\r\n+ m_ValueRank = 0;\r\n OpcUa_String_Initialize(&m_Name);\r\n OpcUa_String_Initialize(&m_SymbolicName);\r\n OpcUa_NodeId_Initialize(&m_DataType);\r\n@@ -101,8 +102,9 @@ CField::CField(void)\r\n }\r\n CField::CField(const char **atts)\r\n {\r\n- m_pDefinition=OpcUa_Null;\r\n- m_iFieldSize=0;\r\n+ m_pDefinition = OpcUa_Null;\r\n+ m_iFieldSize = 0;\r\n+ m_ValueRank = 0;\r\n OpcUa_String_Initialize(&m_Name);\r\n OpcUa_String_Initialize(&m_SymbolicName);\r\n OpcUa_NodeId_Initialize(&m_DataType);\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/ServerApplication.cpp b/OpenOpcUaCoreServer/source/ServerApplication.cpp\r\n--- a/OpenOpcUaCoreServer/source/ServerApplication.cpp\r\n+++ b/OpenOpcUaCoreServer/source/ServerApplication.cpp\r\n@@ -3385,20 +3385,21 @@ CServerApplication::CServerApplication(void)\r\n // Event Engine\r\n m_pEventsEngine = OpcUa_Null;\r\n m_bLDSRegistrationActive = OpcUa_True;\r\n- m_pApplicationDescription=OpcUa_Null;\r\n+ m_pApplicationDescription = OpcUa_Null;\r\n m_hEndpoint = 0;\r\n m_nNoOfSecurityPolicies = 0;\r\n m_pSecurityPolicies = OpcUa_Null;\r\n m_lastSessionId = 0;\r\n- m_pSecureChannels=new CSecureChannelList();\r\n- m_hLDSRegistrationThread=NULL;\r\n- m_uiLDSRegistrationInterval=60000; // valeur par défaut 10mn\r\n- m_dblMiniSamplingInterval=5; // interval d\'echantillonnage minimum. Valeur par défaut 5ms\r\n+ m_pSecureChannels = new CSecureChannelList();\r\n+ m_hLDSRegistrationThread = NULL;\r\n+ m_hSessionsTimeoutThread = NULL;\r\n+ m_uiLDSRegistrationInterval = 60000; // valeur par défaut 10mn\r\n+ m_dblMiniSamplingInterval = 5; // interval d\'echantillonnage minimum. Valeur par défaut 5ms\r\n // Attention il s\'agit d\'une valeur arbitraire utilisé dans l\'OpenOpcUaCoreServer\r\n- m_dblMaxSamplingInterval=3600000; // interval d\'echantillonnage minimum. Valeur par défaut 3600000 ms // 1 heure\r\n+ m_dblMaxSamplingInterval = 3600000; // interval d\'echantillonnage minimum. Valeur par défaut 3600000 ms // 1 heure\r\n // Attention il s\'agit d\'une valeur arbitraire utilisé dans l\'OpenOpcUaCoreServer\r\n- m_SessionsTimeoutSem=OpcUa_Null;\r\n- m_pHaEngine=OpcUa_Null;\r\n+ m_SessionsTimeoutSem = OpcUa_Null;\r\n+ m_pHaEngine = OpcUa_Null;\r\n OpcUa_String_Initialize(&m_ArchiveName);\r\n OpcUa_String_Initialize(&m_ArchiveId);\r\n }\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/SubscriptionServer.cpp b/OpenOpcUaCoreServer/source/SubscriptionServer.cpp\r\n--- a/OpenOpcUaCoreServer/source/SubscriptionServer.cpp\r\n+++ b/OpenOpcUaCoreServer/source/SubscriptionServer.cpp\r\n@@ -598,6 +598,7 @@ CSubscriptionServer::CSubscriptionServer(CSessionServer* pSession, double dblSub\r\n m_bKeepAlive = OpcUa_False;\r\n m_bSubscriptionInColdState = OpcUa_True;\r\n m_pMonitoredItemList = OpcUa_Null;\r\n+ m_LastKnownServerState = OpcUa_ServerState_Unknown;\r\n // On doit être certain que le n° de souscription est unique pour cette session\r\n OpcUa_Int32 iRandVal = rand();\r\n SetSubscriptionId((OpcUa_UInt32)(iRandVal*OpcUa_Clock()));\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/UABinding.cpp b/OpenOpcUaCoreServer/source/UABinding.cpp\r\n--- a/OpenOpcUaCoreServer/source/UABinding.cpp\r\n+++ b/OpenOpcUaCoreServer/source/UABinding.cpp\r\n@@ -45,6 +45,7 @@ CUABinding::CUABinding()\r\n OpcUa_String_Initialize(&m_Protocol);\r\n OpcUa_String_Initialize(&m_szBinding);\r\n OpcUa_String_Initialize(&m_TransportProfileUri);\r\n+ m_Encoding = OpcUa_Endpoint_SerializerType_Invalid;\r\n }\r\n CUABinding::~CUABinding()\r\n {\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/UAReferenceType.cpp b/OpenOpcUaCoreServer/source/UAReferenceType.cpp\r\n--- a/OpenOpcUaCoreServer/source/UAReferenceType.cpp\r\n+++ b/OpenOpcUaCoreServer/source/UAReferenceType.cpp\r\n@@ -41,6 +41,8 @@ using namespace OpenOpcUa;\r\n using namespace UAAddressSpace;\r\n CUAReferenceType::CUAReferenceType(void)\r\n {\r\n+ m_bAbstract = false;\r\n+ m_bSymetric = false;\r\n m_pInverseName = (OpcUa_LocalizedText*)OpcUa_Alloc(sizeof(OpcUa_LocalizedText));\r\n if (m_pInverseName)\r\n OpcUa_LocalizedText_Initialize(m_pInverseName);\r\n@@ -56,6 +58,8 @@ CUAReferenceType::~CUAReferenceType(void)\r\n }\r\n CUAReferenceType::CUAReferenceType(OpcUa_NodeClass aNodeClass, const char **atts) :CUABase(aNodeClass, atts)\r\n {\r\n+ m_bAbstract = false;\r\n+ m_bSymetric = false;\r\n m_pInverseName = (OpcUa_LocalizedText*)OpcUa_Alloc(sizeof(OpcUa_LocalizedText));\r\n if (m_pInverseName)\r\n OpcUa_LocalizedText_Initialize(m_pInverseName);\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/UAStatusChangeNotification.cpp b/OpenOpcUaCoreServer/source/UAStatusChangeNotification.cpp\r\n--- a/OpenOpcUaCoreServer/source/UAStatusChangeNotification.cpp\r\n+++ b/OpenOpcUaCoreServer/source/UAStatusChangeNotification.cpp\r\n@@ -44,7 +44,9 @@ CUAStatusChangeNotification::CUAStatusChangeNotification(void)\r\n {\r\n m_pInternalStatusChangeNotification=(OpcUa_StatusChangeNotification*)OpcUa_Alloc(sizeof(OpcUa_StatusChangeNotification));\r\n OpcUa_StatusChangeNotification_Initialize(m_pInternalStatusChangeNotification);\r\n- m_bAcked=OpcUa_False;\r\n+ m_uiSequenceNumber = 0;\r\n+ m_bAcked = OpcUa_False;\r\n+ m_DataChangeNotificationType = NOTIFICATION_MESSAGE_UNKNOW;\r\n }\r\n \r\n CUAStatusChangeNotification::~CUAStatusChangeNotification(void)\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/UAVariableType.cpp b/OpenOpcUaCoreServer/source/UAVariableType.cpp\r\n--- a/OpenOpcUaCoreServer/source/UAVariableType.cpp\r\n+++ b/OpenOpcUaCoreServer/source/UAVariableType.cpp\r\n@@ -48,6 +48,7 @@ CUAVariableType::~CUAVariableType(void)\r\n }\r\n CUAVariableType::CUAVariableType(OpcUa_NodeClass aNodeClass,const char **atts):CUABase(aNodeClass,atts) \r\n {\r\n+ m_bAbstract = false;\r\n OpcUa_NodeId_Initialize(&m_DataType);\r\n m_ValueRank=0;\r\n int ii=0;\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaStackV1/source/opcua_memory.c b/OpenOpcUaStackV1/source/opcua_memory.c\r\n--- a/OpenOpcUaStackV1/source/opcua_memory.c\r\n+++ b/OpenOpcUaStackV1/source/opcua_memory.c\r\n@@ -56,7 +56,7 @@ OpcUa_Void* OPCUA_DLLCALL OpcUa_Memory_Alloc(OpcUa_UInt32 nSize)\r\n {\r\n if(OpcUa_ProxyStub_g_PlatformLayerCalltable == NULL)\r\n {\r\n- return (OpcUa_Void*)malloc(nSize);\r\n+ return (OpcUa_Void*)calloc(1, nSize);\r\n }\r\n else\r\n {\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaStackV1/source/opcua_p_memory.c b/OpenOpcUaStackV1/source/opcua_p_memory.c\r\n--- a/OpenOpcUaStackV1/source/opcua_p_memory.c\r\n+++ b/OpenOpcUaStackV1/source/opcua_p_memory.c\r\n@@ -43,7 +43,7 @@\r\n OpcUa_Void* OPCUA_DLLCALL OpcUa_P_Memory_Alloc(OpcUa_UInt32 nSize)\r\n {\r\n size_t iSize=(size_t)nSize;\r\n- return malloc(iSize);\r\n+ return calloc(1, iSize);\r\n }\r\n \r\n /*============================================================================\r\n</pre>\r\n',NULL,NULL,1,1,4,NULL,219,1,'2015-02-20 11:39:53','2015-08-05 17:55:11','2015-02-20',0,NULL,NULL,34,1,2,0,NULL),(35,1,1,'Fix signed/unsigned comparisons','Constants of the form \"@0x...@\" are inherently unsigned; an @int@ should be compared against @-1@ instead of @0xffffffff@ (which would only work on 32 bit systems anyway)\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/UAEventNotificationList.cpp b/OpenOpcUaCoreServer/source/UAEventNotificationList.cpp\r\nindex eaa5756..7caba5b 100644\r\n--- a/OpenOpcUaCoreServer/source/UAEventNotificationList.cpp\r\n+++ b/OpenOpcUaCoreServer/source/UAEventNotificationList.cpp\r\n@@ -211,11 +211,11 @@ OpcUa_StatusCode CUAEventNotificationList::UpdateInternalAckedState(OpcUa_Boolea\r\n }\r\n // We will update both AckedState and AckedStateId\r\n // AckedState\r\n- if (m_FastEventFieldIndex.iAckedState != 0xffffffff)\r\n+ if (m_FastEventFieldIndex.iAckedState != -1)\r\n OpcUa_LocalizedText_CopyTo(&AckedState,\r\n m_pInternalEventNotificationList->Events[0].EventFields[m_FastEventFieldIndex.iAckedState].Value.LocalizedText);\r\n // AckedStateId\r\n- if (m_FastEventFieldIndex.iAckedStateId != 0xffffffff)\r\n+ if (m_FastEventFieldIndex.iAckedStateId != -1)\r\n m_pInternalEventNotificationList->Events[0].EventFields[m_FastEventFieldIndex.iAckedStateId].Value.Boolean = bNewState;\r\n OpcUa_LocalizedText_Clear(&AckedState);\r\n return uStatus;\r\n@@ -244,12 +244,12 @@ OpcUa_StatusCode CUAEventNotificationList::UpdateInternalConfirmedState(OpcUa_Bo\r\n }\r\n // We will update both ConfirmedState and ConfirmedStateId\r\n // ConfirmedState\r\n- if (m_FastEventFieldIndex.iConfirmedState != 0xffffffff)\r\n+ if (m_FastEventFieldIndex.iConfirmedState != -1)\r\n OpcUa_LocalizedText_CopyTo(&ConfirmedState,\r\n m_pInternalEventNotificationList->Events[0].EventFields[m_FastEventFieldIndex.iConfirmedState].Value.LocalizedText);\r\n \r\n // ConfirmedStateId\r\n- if (m_FastEventFieldIndex.iConfirmedStateId != 0xffffffff)\r\n+ if (m_FastEventFieldIndex.iConfirmedStateId != -1)\r\n m_pInternalEventNotificationList->Events[0].EventFields[m_FastEventFieldIndex.iConfirmedStateId].Value.Boolean = bNewState;\r\n OpcUa_LocalizedText_Clear(&ConfirmedState);\r\n return uStatus;\r\n@@ -272,15 +272,15 @@ OpcUa_StatusCode CUAEventNotificationList::UpdateInternalActiveState(OpcUa_Boole\r\n }\r\n // We will update both ActiveState and ActiveStateId\r\n // ActiveState\r\n- if (m_FastEventFieldIndex.iActiveState != 0xffffffff)\r\n+ if (m_FastEventFieldIndex.iActiveState != -1)\r\n OpcUa_LocalizedText_CopyTo(&ActiveState,\r\n m_pInternalEventNotificationList->Events[0].EventFields[m_FastEventFieldIndex.iActiveState].Value.LocalizedText);\r\n // ActiveState EffectiveDisplayName\r\n- if (m_FastEventFieldIndex.iActiveStateEffectiveDisplayName != 0xffffffff)\r\n+ if (m_FastEventFieldIndex.iActiveStateEffectiveDisplayName != -1)\r\n OpcUa_LocalizedText_CopyTo(&ActiveState,\r\n m_pInternalEventNotificationList->Events[0].EventFields[m_FastEventFieldIndex.iActiveStateEffectiveDisplayName].Value.LocalizedText);\r\n // ActiveStateId\r\n- if (m_FastEventFieldIndex.iActiveStateId != 0xffffffff)\r\n+ if (m_FastEventFieldIndex.iActiveStateId != -1)\r\n m_pInternalEventNotificationList->Events[0].EventFields[m_FastEventFieldIndex.iActiveStateId].Value.Boolean = bNewState;\r\n OpcUa_LocalizedText_Clear(&ActiveState);\r\n return uStatus;\r\n@@ -319,7 +319,7 @@ void CUAEventNotificationList::Terminate()\r\n OpcUa_StatusCode CUAEventNotificationList::AddComment(const OpcUa_LocalizedText comment)\r\n {\r\n OpcUa_StatusCode uStatus = OpcUa_Good;\r\n- if (m_FastEventFieldIndex.iComment != 0xffffffff)\r\n+ if (m_FastEventFieldIndex.iComment != -1)\r\n OpcUa_LocalizedText_CopyTo(&comment,\r\n m_pInternalEventNotificationList->Events[0].EventFields[m_FastEventFieldIndex.iComment].Value.LocalizedText);\r\n return uStatus;\r\n</pre>',NULL,NULL,1,1,4,NULL,219,1,'2015-02-20 16:31:53','2015-08-05 17:56:18','2015-02-20',0,NULL,NULL,35,1,2,0,NULL),(36,1,1,'VpiNull: Avoid taking the address of a temporary object','Taking the address of a non-lvalue is forbidden by the C++ standard, so create a real, temporary variable:\r\n\r\n<pre class=\"diff>\r\ndiff --git a/VpisSdk/VpiNull/include/VpiInternal.h b/VpisSdk/VpiNull/include/VpiInternal.h\r\n--- a/VpisSdk/VpiNull/include/VpiInternal.h\r\n+++ b/VpisSdk/VpiNull/include/VpiInternal.h\r\n@@ -18,7 +18,8 @@ namespace UASubSystem\r\n for (OpcUa_UInt32 i = 0; i < m_SourceObjects.size(); i++)\r\n {\r\n CSourceObject* pObject = m_SourceObjects.at(i);\r\n- if (IsEqual(&(pObject->GetNodeId()), &aNodeId))\r\n+ OpcUa_NodeId tmp = pObject->GetNodeId();\r\n+ if (IsEqual(&tmp, &aNodeId))\r\n return pObject;\r\n }\r\n return OpcUa_Null;\r\n</pre>',NULL,NULL,1,1,4,NULL,219,1,'2015-02-20 16:37:04','2015-08-05 17:57:28','2015-02-20',0,NULL,NULL,36,1,2,0,NULL),(37,1,1,'Memory-leak in CDefinition::DuplicateString()','A pointer to a freshly allocated buffer was immediately overwritten:\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/Definition.cpp b/OpenOpcUaCoreServer/source/Definition.cpp\r\n--- a/OpenOpcUaCoreServer/source/Definition.cpp\r\n+++ b/OpenOpcUaCoreServer/source/Definition.cpp\r\n@@ -554,7 +554,7 @@ OpcUa_StatusCode CDefinition::DuplicateString(void** pVoidBuf, void** pVoidResul\r\n }\r\n // Copy the content\r\n ((OpcUa_Byte*&)*pVoidBuf) += 4;\r\n- void* apVoid = OpcUa_Alloc(4);\r\n+ void* apVoid;\r\n memcpy(&apVoid, *pVoidBuf, 4);\r\n if (pString->uLength > 0)\r\n {\r\n@@ -579,7 +579,7 @@ OpcUa_StatusCode CDefinition::DuplicateString(void** pVoidBuf, void** pVoidResul\r\n }\r\n // Copy the content\r\n ((OpcUa_Byte*&)*pVoidBuf) += 4;\r\n- void* apVoid = OpcUa_Alloc(4);\r\n+ void* apVoid;\r\n memcpy(&apVoid, *pVoidBuf, 4);\r\n if (OpcUa_String_StrLen(pString) > 0)\r\n {\r\n</pre>','2017-03-16',NULL,2,1,5,NULL,219,6,'2015-02-23 17:27:30','2015-08-07 12:14:34','2015-02-25',20,NULL,NULL,37,1,4,0,NULL),(38,1,1,'Memory-leaks in CDefinition::DuplicateXXX()','Temporary objects that were only used during copying must be free\'d, too.\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/Definition.cpp b/OpenOpcUaCoreServer/source/Definition.cpp\r\n--- a/OpenOpcUaCoreServer/source/Definition.cpp\r\n+++ b/OpenOpcUaCoreServer/source/Definition.cpp\r\n@@ -587,6 +586,7 @@ OpcUa_StatusCode CDefinition::DuplicateString(void** pVoidBuf, void** pVoidResul\r\n OpcUa_MemCpy(*pVoidResult, 4, &(pString->uReserved4), 4);\r\n }\r\n #endif\r\n+ OpcUa_Free(pString);\r\n // Update the pointer\r\n ((OpcUa_Byte*&)(*pVoidResult)) += 4; //\r\n ((OpcUa_Byte*&)(*pVoidBuf)) += 4;\r\n@@ -644,6 +644,7 @@ OpcUa_StatusCode CDefinition::DuplicateNodeId(void** pVoidBuf, void** pVoidResul\r\n default:\r\n break;\r\n }\r\n+ OpcUa_Free(pNodeId);\r\n ((OpcUa_Byte*&)(*pVoidBuf)) += (iFielSize - iFieldOnlineSize);\r\n ((OpcUa_Byte*&)(*pVoidResult)) += (iFielSize - iFieldOnlineSize);\r\n return uStatus;\r\n</pre>','2017-03-16',NULL,1,1,5,NULL,219,2,'2015-02-25 16:04:10','2015-08-07 12:08:42','2015-02-25',20,NULL,37,37,2,3,0,NULL),(39,2,1,'Concondance on AccessRight between UA AddressSpace defintion and SubSystem definition','Hello,\r\nIn previous revisions the server was not testing the concordance of UA AdressSpace AccessRight (NodeSet) and Subsystem AccessRight (Vpi).\r\nThis is now fixed and will be release in the upcoming 1.0.2.4\r\n\r\nEnjoy it\r\nMichel\r\n',NULL,NULL,3,1,4,NULL,1,0,'2015-02-26 14:13:12','2015-02-26 14:13:12','2015-02-26',0,1,NULL,39,1,2,0,'2015-02-26 14:13:12'),(40,1,1,'VPi Extended','A VPI based on the OpenOpcUaVpiLibrary without any <TAG></TAG> in its configuration file (Subsystem.xsd) crash on startup.\r\nEven if it\'s a configuration error this must be fixed.',NULL,NULL,1,1,6,NULL,1,0,'2015-03-20 19:44:27','2015-03-20 19:44:27','2015-03-20',0,NULL,NULL,40,1,2,0,NULL),(41,1,1,'parsing error','le serveur OPC n\'accepte pas plusieurs fichiers d\'instances utilisant la même URI',NULL,NULL,3,1,6,NULL,223,2,'2015-03-24 17:02:50','2016-09-15 20:02:48','2015-03-24',100,NULL,NULL,41,1,2,0,'2016-09-15 20:02:48'),(42,1,1,'OpenOpcUaCoreServer certificate date creation invalid on US Time Zone(s)','I compiled the OpenOpcUaCoreServer code in Debian (wheezy 32 bit) successfully. Added the sample config files.\r\nAs it runs the first time, it creates the server certificates, but the ValidFrom datetime is probably a GMT0 value.\r\nMy machine is US EDT (GMT -5) and the server does not run calling the exception \"your certificate is not yet valid\".\r\n\r\nIf I change the system date to 1 day later, everything works.\r\n\r\nI think the validFrom variable gets set to the time of the execution. An easy fix would be to make it start from 24 hours before.',NULL,NULL,1,1,4,NULL,92,1,'2015-03-25 03:19:23','2015-03-25 22:52:26','2015-03-25',0,NULL,NULL,42,1,2,0,NULL),(43,1,1,'Localized Text','Initializing the value a variable when its data type is localized text does not work.',NULL,NULL,3,1,4,NULL,22,1,'2015-03-25 23:11:28','2015-04-03 15:17:23','2015-03-25',100,NULL,NULL,43,1,2,0,'2015-04-03 15:17:23'),(44,1,1,'Demarrage serveur aléatoire','Bonjour Michel,\r\n\r\nAujourd\'hui, on a créé de nouvelles bornes dans les fichiers XML.\r\nNotre IHM (Client UDP du VPI) émet régulièrement des trames destinées à faire vivre une valeur OPC visant a informer les clients OPC que l\'ensemble de la chaine de transmission est correcte.\r\nOn a constaté le problème suivant au démarrage du serveur OPC.\r\nSi une trame UDP arrive alors que le serveur n\'a pas fini de charger les fichiers XML, le serveur plante.\r\nD\'apres les logs, il semblerait que le listener UDP est lancé alors que les données XML ne sont pas encore chargées.\r\nSi on arrête notre IHM, que l\'on relance le serveur OPC puis que l\'on relance l\'IHM quelques secondes après, tout fonctionne correctement.\r\nIl faudrait, dans le serveur ne lancer le listener UDP que lorsque toute la configuration a été acquise.\r\n\r\nBonne continuation',NULL,NULL,1,1,5,NULL,223,1,'2015-03-27 15:34:30','2015-03-27 16:04:07','2015-03-27',0,NULL,NULL,44,1,2,0,NULL),(45,1,1,'OpenOpcUa_LoadConfig() doesn\'t return error code if any of its subcalls fails','While loading an XML config file with \'OpenOpcUa_LoadConfig()\' if any subcall fails (CreateSession, ActivateSession, CreateSubscribtion, CreateMonitoredItem etc.), the function doesn\'t return error code.',NULL,NULL,3,1,4,NULL,226,1,'2015-04-01 17:23:20','2015-04-01 22:48:25','2015-04-01',100,NULL,NULL,45,1,2,0,'2015-04-01 22:48:25'),(46,3,1,'Validation on UBuntu','Hello,\r\nI just release the new OpenOpcUaCoreServer 1.0.2.6. The codebase was buidl on Windows with VS2013 Express and Professionnal and on Debian 32 and 64bits.\r\nI need some feedback on various Linux Taget :\r\n* Ubuntu 32 and 64 bits\r\n* Centos 32 and 64 bits\r\n* Other are welcome\r\n\r\nThank you for your participation,\r\nKind Regards\r\nMichel',NULL,NULL,2,22,3,NULL,1,1,'2015-04-03 17:26:07','2015-04-07 21:50:17','2015-04-03',0,NULL,NULL,46,1,2,0,NULL),(47,1,1,'Fix inconsistent function declarations','The methods OpcUa_Vpi_Variant_Initialize(), OpcUa_Vpi_Variant_Clear() and OpcUa_Vpi_Variant_CopyTo() are declared \'extern \"C\"\' in the client header OpenOpcUaVpiSdk.h but not in VpiVariant.h which is used for exporting.\r\n\r\nFix VpiVariant.h to export these methods \'extern \"C\"\':\r\n\r\n<pre><code class=\"diff\">\r\ndiff --git a/VpisSdk/OpenOpcUaVpiLibrary/include/VpiVariant.h b/VpisSdk/OpenOpcUaVpiLibrary/include/VpiVariant.h\r\n--- a/VpisSdk/OpenOpcUaVpiLibrary/include/VpiVariant.h\r\n+++ b/VpisSdk/OpenOpcUaVpiLibrary/include/VpiVariant.h\r\n@@ -18,7 +18,6 @@\r\n OPCUA_BEGIN_EXTERN_C\r\n \r\n \r\n-OPCUA_END_EXTERN_C\r\n VPILIBRARY_EXPORT\r\n OpcUa_Vpi_StatusCode OPCUA_DLLCALL OpcUa_Vpi_Variant_Initialize( OpcUa_Variant* pVariant);\r\n \r\n@@ -27,6 +26,9 @@ OpcUa_Vpi_StatusCode OPCUA_DLLCALL OpcUa_Vpi_Variant_Clear(OpcUa_Variant* pVaria\r\n \r\n VPILIBRARY_EXPORT\r\n OpcUa_Vpi_StatusCode OPCUA_DLLCALL OpcUa_Vpi_Variant_CopyTo(const OpcUa_Variant* pSource, OpcUa_Variant* pDestination);\r\n+\r\n+OPCUA_END_EXTERN_C\r\n+\r\n // Not exported\r\n OpcUa_Void OpcUa_VariantUnion_Clear(OpcUa_UInt16 datatype, OpcUa_VariantUnion* a_pValue);\r\n OpcUa_Void OpcUa_VariantArrayValue_Clear(OpcUa_UInt16 uDatatype, OpcUa_Int32 iLength, OpcUa_VariantArrayUnion* pValue);\r\n</code></pre>',NULL,NULL,1,1,4,NULL,219,0,'2015-08-07 13:16:42','2015-08-07 13:16:42','2015-08-07',0,NULL,NULL,47,1,2,0,NULL),(48,1,1,'Avoid reading uninitialised memory','Valgrind found a call of OpcUa_NodeId_Clear() on an uninitialised OpcUa_NodeId object.\r\n\r\nThe call was not needed anyway, since OpcUa_NodeId_Initialize() was called afterwards, so it can simply be removed.\r\n\r\n<pre><code class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/UAInformationModel.cpp b/OpenOpcUaCoreServer/source/UAInformationModel.cpp\r\n--- a/OpenOpcUaCoreServer/source/UAInformationModel.cpp\r\n+++ b/OpenOpcUaCoreServer/source/UAInformationModel.cpp\r\n@@ -5771,7 +5771,6 @@ OpcUa_StatusCode CUAInformationModel::AddinternalOpenOpcUaSystemNodes()\r\n pUAObjectType->SetBrowseName(&aName);\r\n OpcUa_QualifiedName_Clear(&aName);\r\n \r\n- OpcUa_NodeId_Clear(&aNodeId);\r\n // Description\r\n OpcUa_LocalizedText_Initialize(&aLocalizedText);\r\n OpcUa_String_AttachCopy(&(aLocalizedText.Locale), \"en-us\");\r\n</code></pre>',NULL,NULL,1,1,4,NULL,219,0,'2015-08-07 13:28:07','2015-08-07 13:28:07','2015-08-07',0,NULL,NULL,48,1,2,0,NULL),(49,1,1,'Avoid unneccesary malloc/free/copy in opcua_string.c','OpcUa_String_AtoW() and OpcUa_String_WtoA() converts the input string into a locally allocated buffer, then copies the result to the allocated output buffer and frees the local buffer again.\r\n\r\nThis is double work with no benefit at all, so simplify those methods:\r\n\r\n<pre><code class=\"diff\">\r\ndiff --git a/OpenOpcUaStackV1/source/opcua_string.c b/OpenOpcUaStackV1/source/opcua_string.c\r\n--- a/OpenOpcUaStackV1/source/opcua_string.c\r\n+++ b/OpenOpcUaStackV1/source/opcua_string.c\r\n@@ -791,7 +791,6 @@ OpcUa_StatusCode OpcUa_String_AttachWithOwnership(OpcUa_String* a_pDst, OpcUa_St\r\n \r\n OpcUa_StatusCode OpcUa_String_AtoW(const OpcUa_CharA* aStrIn, OpcUa_CharW** wStrOut)\r\n {\r\n- OpcUa_CharW* localwStr = NULL;\r\n OpcUa_StatusCode uStatus=OpcUa_BadInvalidArgument;\r\n int ii;\r\n \r\n@@ -805,21 +804,11 @@ OpcUa_StatusCode OpcUa_String_AtoW(const OpcUa_CharA* aStrIn, OpcUa_CharW** wStr\r\n if ((*wStrOut))\r\n {\r\n memset(*wStrOut,0,(iLen + 1)* sizeof(OpcUa_CharW));\r\n- localwStr=(OpcUa_CharW*)malloc((iLen + 1)* sizeof(OpcUa_CharW));\r\n- if (localwStr)\r\n+ for (ii=0; ii<iLen; ii++)\r\n {\r\n- memset(localwStr,0,(iLen + 1)* sizeof(OpcUa_CharW));\r\n- for (ii=0; ii<iLen; ii++)\r\n- {\r\n- localwStr[ii]=(OpcUa_CharW)aStrIn[ii];\r\n- }\r\n- OpcUa_WcsCpy((wchar_t*)*wStrOut,(wchar_t*)localwStr);\r\n- memset(localwStr, 0, (iLen + 1)* sizeof(OpcUa_CharW));\r\n- OpcUa_Free(localwStr);\r\n- uStatus=OpcUa_Good;\r\n+ (*wStrOut)[ii]=(OpcUa_CharW)aStrIn[ii];\r\n }\r\n- else\r\n- uStatus=OpcUa_BadOutOfMemory;\r\n+ uStatus=OpcUa_Good;\r\n }\r\n else\r\n uStatus=OpcUa_BadOutOfMemory;\r\n@@ -833,7 +822,6 @@ OpcUa_StatusCode OpcUa_String_AtoW(const OpcUa_CharA* aStrIn, OpcUa_CharW** wStr\r\n *===========================================================================*/\r\n OpcUa_StatusCode OpcUa_String_WtoA( OpcUa_CharW* wStrIn, OpcUa_CharA** aStrOut)\r\n {\r\n- char* localStr = NULL;\r\n OpcUa_StatusCode uStatus=OpcUa_BadInvalidArgument;\r\n OpcUa_Int32 ii;\r\n \r\n@@ -846,24 +834,15 @@ OpcUa_StatusCode OpcUa_String_WtoA( OpcUa_CharW* wStrIn, OpcUa_CharA** aStrOut)\r\n // Check the we receive a Null ptr\r\n if ((*aStrOut) == OpcUa_Null)\r\n {\r\n- *aStrOut = (OpcUa_CharA *)malloc(iLen + 1);\r\n+ *aStrOut = (OpcUa_CharA*)malloc(iLen + 1);\r\n if (*aStrOut)\r\n {\r\n memset(*aStrOut, 0, iLen + 1);\r\n- localStr = (char*)malloc(iLen + 1);\r\n- if (localStr)\r\n+ for (ii = 0; ii < iLen; ii++)\r\n {\r\n- memset(localStr, 0, iLen + 1);\r\n- for (ii = 0; ii < iLen; ii++)\r\n- {\r\n- localStr[ii] = (char)wStrIn[ii];\r\n- }\r\n- strcpy((char *)*aStrOut, localStr);\r\n- OpcUa_Free(localStr);\r\n- uStatus = OpcUa_Good;\r\n+ (*aStrOut)[ii] = (char)wStrIn[ii];\r\n }\r\n- else\r\n- uStatus = OpcUa_BadOutOfMemory;\r\n+ uStatus = OpcUa_Good;\r\n }\r\n else\r\n uStatus = OpcUa_BadOutOfMemory;\r\n</code></pre>',NULL,NULL,1,1,3,NULL,219,0,'2015-08-07 13:35:40','2015-08-07 13:35:40','2015-08-07',0,NULL,NULL,49,1,2,0,NULL),(50,1,47,'Error when creating a new Variable or VariableType','The DataType is not created properly. it remains i=0\r\nSampling interval not save correctly',NULL,NULL,1,1,4,NULL,1,0,'2015-08-09 16:52:13','2015-08-09 16:52:13','2015-08-09',0,NULL,NULL,50,1,2,0,NULL),(51,1,46,'Crash - Tool Version - Beta 3.2- OPCUA Configuration Manager','Scenario:-\r\nOn Loading IEC61850 DemoProject the IEC_61850_CID_UANodeset8.XML - Click on the Root>DataObjects - The tool crashes.',NULL,NULL,5,1,5,8,239,4,'2015-08-21 15:03:50','2015-12-10 16:53:06','2015-08-21',100,NULL,NULL,51,1,2,0,'2015-08-21 17:07:34'),(58,1,46,'Crash - Tool Version - Beta 3.3- OPCUA Configuration Manager','on the tab \"Config\" it\'s not possible to select or create a configuration\r\n',NULL,NULL,6,1,4,8,238,1,'2015-08-26 15:53:41','2015-08-26 16:21:03','2015-08-26',0,NULL,NULL,58,1,2,0,'2015-08-26 16:21:03'),(59,1,47,'NamespaceUri for subsystem','When we save at least a new configuration the namespaceUri is not saved.\r\n\r\n_<?xml version=\"1.0\" encoding=\"UTF-8\" ?><!--OpenOpcUa SubSystem configuration-->\r\n\r\n<SubSystems xmlns=\"http://www.openopcua.org/SubSystem.xsd\">\r\n <NamespaceUris></NamespaceUris>\r\n <SubSystem SubSystemId=\"ns=1;i=1000\" SubSystemName=\"UaClient001\" VpiName=\"VpiUaClnt\" AccessMode=\"Subscribe\"></SubSystem></SubSystems>_',NULL,NULL,1,NULL,4,NULL,1,0,'2015-10-08 20:04:29','2015-10-08 20:04:29','2015-10-08',0,NULL,NULL,59,1,2,0,NULL),(60,1,47,'Error when creating a new subsystem','In the subsystemTab the name of the new entry is always. Template.\r\nIt should be the name of the newly created file',NULL,NULL,1,1,7,NULL,1,0,'2015-10-08 20:08:08','2015-10-08 20:08:08','2015-10-08',0,NULL,NULL,60,1,2,0,NULL),(61,1,46,'Crash OpenOpcUaClientLib and OpenOpcUaSharedLib','Version 1.0.3.2 introduces crashes due to multiple free of the same memory block.\r\n\r\n+File: OpenOpcUaSharedLib/MonitoredItemBase.cpp+\r\n\r\n*m_filterToUse* is freed in the destructor with the call of OpcUa_ExtensionObject_Clear(&m_filterToUse);\r\n\r\nHowever a hard copy (memory replication) can occur in the function SetFilterTo which leads the MonitoredItemBase to take the responsibility of this memory block.\r\nBy the way there\'s a memory leak if you call multiple time SetFilterTo because the previous filter will no longer be referenced.\r\n\r\nThe crash appends when you call ModifyMonitoredItem in the client library because you call \"SetFilterToUse\" with a filter that you later delete in the function. This lead to multiple release of the nodeId when the destructor of MonitoredItemBase is called ..\r\nIn case of string identifier it crashes.\r\n\r\n<pre>\r\nOpcUa_DataChangeFilter_Clear(pDataChangeFilter);\r\nOpcUa_ExtensionObject_Clear(&DataChangeFilter);\r\n</pre>\r\n\r\n+Same philosophy: OpenOpcUaClientLib.cpp+\r\nOpcUa_MonitoredItemCreateRequest_Clear release the nodeId.\r\nHowever, OpenOpcUa_CreateMonitoredItems already do it because it hard copies the nodeId :\r\n\r\n<pre>\r\n752. pNodesToRead[ii].NodeId=pItemsToCreate[ii].ItemToMonitor.NodeId;\r\n777. pNodesToRead[ii].NodeId=pItemsToCreate[ii].ItemToMonitor.NodeId;\r\n</pre>\r\n\r\nAnd then destroy it:\r\n<pre>\r\n792. OpcUa_ReadValueId_Clear(pNodesToRead);\r\n</pre>',NULL,NULL,5,1,4,12,246,2,'2015-11-18 10:24:13','2015-12-10 16:52:13','2015-11-18',100,NULL,NULL,61,1,2,0,'2015-11-23 09:45:12'),(62,1,46,'DataChangeTrigger have an invalid behaviour','Changing the DataChangeTrigger of a monitored item to @OpcUa_DataChangeTrigger_StatusValueTimestamp@ using @OpenOpcUa_ModifyMonitoredItems@ leads to notification spam even if there is no modification of value / status nor timestamp.',NULL,NULL,3,1,5,12,246,6,'2015-11-18 11:44:47','2016-09-15 19:59:42','2015-11-18',100,NULL,NULL,62,1,2,0,'2016-01-04 22:56:07'),(63,1,46,'Client handle for monitored items collide','The way monitored item handle are created does not guaranty unicity.\r\n\r\nActual method:\r\n<pre>\r\ntime_t timer;\r\nOpcUa_UInt32 uiClientHandle = 0;\r\nwhile (uiClientHandle == 0)\r\n{\r\n time(&timer);\r\n uiClientHandle = (OpcUa_UInt32)(rand() + timer);\r\n}\r\n</pre>\r\n\r\nThe function time() and rand() are platform dependent (the result of rand depends on RAND_MAX) so you cannot guess the result of this.\r\nBut assuming that:\r\n* The time function returns the unix timestamp (number of seconds since 00:00 hours, Jan 1, 1970 UTC)\r\n* RAND_MAX is 0x7FFF (32767) (the minimum standard value)\r\n\r\nThe @OpenOpcUa_CreateMonitoredItems@ function computes all the monitored items\' handles in less than 1 second, so the time function always return the same number.\r\nSo basically, the handle just depends of the rand function ..\r\n\r\nThe probability of having at least one collision is for\r\nk = RAND_MAX value\r\nn = number of monitored items\r\n\r\np = product[i=0..n-1](k - i) / k^n\r\n\r\nWhich can be quite high with low RAND_MAX (see graph attached with k = 32767) .. \r\nBut in fact, the only thing interesting that you cannot ensure *p = 0*. And so this solution is *bad and not reliable*.\r\nAs we work on +critical systems+ random is not acceptable.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',NULL,NULL,5,246,5,12,246,2,'2015-11-18 13:56:49','2015-12-10 16:51:21','2015-11-18',100,NULL,NULL,63,1,2,0,'2015-11-23 10:55:38'),(64,1,46,'OpenOpcUaServer crash only under linux','Backtrace \r\n<pre>\r\n#0 0xf7c3fb76 in pthread_mutex_lock () from /lib/libpthread.so.0\r\n#1 0xf7edb84f in OpcUa_Semaphore_Post (RawSemaphore=0x0, uReleaseCount=1) at OpenOpcUa/OpenOpcUaStackV1/source/opcua_core.c:591\r\n#2 0xf7f239a0 in InternalThreadMain (a_Thread=0x832de08) at OpenOpcUa/OpenOpcUaStackV1/source/opcua_thread.c:101\r\n#3 0xf7efe442 in pthread_start (args=0x832deb0) at OpenOpcUa/OpenOpcUaStackV1/source/opcua_p_thread.c:105\r\n#4 0xf7c3db5c in start_thread () from /lib/libpthread.so.0\r\n#5 0xf7a25b8e in clone () from /lib/libc.so.6\r\n</pre>',NULL,NULL,5,1,5,12,246,3,'2015-11-18 14:13:53','2015-12-10 16:49:38','2015-11-18',100,NULL,NULL,64,1,2,0,'2015-12-10 16:49:38'),(65,1,46,'Client is stuck in OpenOpcUa_CloseSession','Backtrace:\r\n\r\n<pre>\r\n#0 0xf7fdc430 in __kernel_vsyscall ()\r\n#1 0xf7b228a4 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib/libpthread.so.0\r\n#2 0xf7db7781 in OpcUa_Semaphore_TimedWait (a_RawSemaphore=0x84f6300, msecTimeout=4294967295) at OpenOpcUa/OpenOpcUaStackV1/source/opcua_core.c:527\r\n#3 0xf7d97d42 in OpcUa_AsyncCallState_WaitForCompletion (a_pAsyncState=0x84f6ac8, a_uTimeout=4294967295) at OpenOpcUa/OpenOpcUaStackV1/source/opcua_asynccallstate.c:172\r\n#4 0xf7daf254 in OpcUa_Channel_InvokeService (a_pChannel=0x84e0e98, a_sName=0xf7e5a211 \"DeleteSubscriptions\", a_pRequest=0xffffad50, a_pRequestType=0xf7e8b0a0 <OpcUa_DeleteSubscriptionsRequest_EncodeableType>,\r\n a_ppResponse=0xffffad4c, a_ppResponseType=0xffffad48) at OpenOpcUa/OpenOpcUaStackV1/source/opcua_channel.c:629\r\n#5 0xf7db6d45 in OpcUa_ClientApi_DeleteSubscriptions (a_hChannel=0x84e0e98, a_pRequestHeader=0xffffae14, a_nNoOfSubscriptionIds=1, a_pSubscriptionIds=0xffffaef0, a_pResponseHeader=0xffffae74, a_pNoOfResults=0xffffaeec,\r\n a_pResults=0xffffaee8, a_pNoOfDiagnosticInfos=0xffffaee4, a_pDiagnosticInfos=0xffffaee0) at OpenOpcUa/OpenOpcUaStackV1/source/opcua_clientapi.c:4725\r\n#6 0xf7f160d0 in OpenOpcUa::UACoreClient::CSessionClient::DeleteSubscription (this=0x8439bd0, pSubscription=0x8439f68) at OpenOpcUa/OpenOpcUaClientLib/source/ClientSession.cpp:1111\r\n#7 0xf7f16b30 in OpenOpcUa::UACoreClient::CSessionClient::DeleteAllSubscriptions (this=0x8439bd0) at OpenOpcUa/OpenOpcUaClientLib/source/ClientSession.cpp:1539\r\n#8 0xf7f1bb74 in OpenOpcUa_CloseSession (hApplication=0x80cf008, hSession=0x8439bd0) at OpenOpcUa/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp:483\r\n...\r\n</pre>',NULL,NULL,5,1,5,12,246,3,'2015-11-18 14:17:12','2015-12-10 16:48:33','2015-11-18',100,NULL,NULL,65,1,2,0,'2015-12-08 22:54:47'),(66,1,46,'Client with double OpenOpcUaCoreServer doesn\'t work sometimes','Server log for a working case:\r\n\r\n<pre>\r\n|4142750144| 15:10:40.000Z Now will try to parse: ./Opc.Ua.NodeSet2.Part3.xml\r\n|4142750144| 15:10:40.000Z Your XML configuration file : ./Opc.Ua.NodeSet2.Part3.xml has been parsed. AddressSpace initialization result=0x00000\r\n|4142750144| 15:10:40.000Z fixing the orphan dataType declaration\r\n|4142750144| 15:10:40.000Z Orphan dataType declaration fixed\r\n|4142750144| 15:10:40.000Z Now will try to parse: ./Opc.Ua.NodeSet2.Part4.xml\r\n|4142750144| 15:10:40.000Z Your XML configuration file : ./Opc.Ua.NodeSet2.Part4.xml has been parsed. AddressSpace initialization result=0x00000\r\n|4142750144| 15:10:40.000Z fixing the orphan dataType declaration\r\n|4142750144| 15:10:40.000Z Orphan dataType declaration fixed\r\n|4142750144| 15:10:40.000Z Now will try to parse: ./Opc.Ua.NodeSet2.Part5.xml\r\n|4142750144| 15:10:41.000Z Your XML configuration file : ./Opc.Ua.NodeSet2.Part5.xml has been parsed. AddressSpace initialization result=0x00000\r\n|4142750144| 15:10:41.000Z fixing the orphan dataType declaration\r\n|4142750144| 15:10:41.000Z Orphan dataType declaration fixed\r\n|4142750144| 15:10:41.000Z Now will try to parse: ./VPINodeset.xml\r\n|4142750144| 15:10:44.000Z Your XML configuration file : ./VPINodeset.xml has been parsed. AddressSpace initialization result=0x00000\r\n|4142750144| 15:10:44.000Z fixing the orphan dataType declaration\r\n|4142750144| 15:10:44.000Z Orphan dataType declaration fixed\r\n|4142750144| 15:10:44.000Z Start Post-Parsing initialization\r\n|4142750144| 15:10:44.000Z Start Updating UAVariablesBuiltinType\r\n|4142750144| 15:10:44.000Z Start Updating UAVariablesEncodeableObject\r\n|4142750144| 15:10:44.000Z Start Updating inverse references\r\n|4142750144| 15:10:44.000Z Your certificate validate your server \r\nfrom: 27/10/2015 16:50:49.000\r\n \r\nto: 30/09/2020 16:50:49.000\r\n\r\n|4142750144| 15:10:44.000Z Server listening at :\r\n opc.tcp://sup1:16664/OpenOpcUaCoreServer.\r\n|4142750144| 15:10:44.000Z 8187 Nodes in the addressSpace split in \r\n 147 Objects 7804 Variables 0 Views 21 Methods \r\n 63 ObjectTypes 23 ReferenceTypes 107 DataTypes 22 VariableTypes\r\n|4142750144| 15:10:44.000Z Press Q or q to exit.\r\n|4142054208| 15:10:44.000Z Server Endpoint open. It\'s now listening at opc.tcp://sup1:16664/OpenOpcUaCoreServer with Binary Serializer\r\n|4140702528| 15:10:45.000Z We receive a request to open the SecureChannel 3969233455.\r\n|4140702528| 15:10:45.000Z SecureChannel 0x9d19e00 with SecureChannelId=3969233455 was correctly openned.\r\n|4140702528| 15:10:45.000Z Server_CreateSession receive from the client\r\n|4140702528| 15:10:45.000Z The currentSecureChannelId for this session will be 3969233455\r\n|4140702528| 15:10:45.000Z Server_CreateSession done uStatus=0x0\r\n|4140211008| 15:10:45.000Z Started>UpdateDataSubscriptionThread Id=3492052480 run:1\r\n|4140702528| 15:10:45.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:10:45.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:10:45.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:10:45.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:10:45.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:10:45.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:10:45.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:10:45.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received \r\n|4140088128| 15:10:45.000Z Started>UpdateDataSubscriptionThread Id=1250249536 run:1\r\n|4140702528| 15:10:45.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4142177088| 15:10:56.000Z End Post-Parsing initialization\r\n|4140702528| 15:11:17.000Z We receive a request to open the SecureChannel 3969233456.\r\n|4140702528| 15:11:17.000Z SecureChannel 0x9d0e930 with SecureChannelId=3969233456 was correctly openned.\r\n|4140702528| 15:11:17.000Z Request to close SecureChannel 3969233456 \r\n|4140702528| 15:11:17.000Z SecureChannel 3969233456 was close properly\r\n|4140702528| 15:11:17.000Z RemoveSecureChannel done 0x9d0e930 uStatus=0x00000\r\n|4140702528| 15:11:17.000Z We receive a request to open the SecureChannel 3969233457.\r\n|4140702528| 15:11:17.000Z SecureChannel 0xa338d28 with SecureChannelId=3969233457 was correctly openned.\r\n|4140702528| 15:11:17.000Z Server_CreateSession receive from the client\r\n|4140702528| 15:11:17.000Z The currentSecureChannelId for this session will be 3969233457\r\n|4140702528| 15:11:17.000Z Server_CreateSession done uStatus=0x0\r\n|4135459648| 15:11:17.000Z Started>UpdateDataSubscriptionThread Id=2438476896 run:1\r\n|4140702528| 15:11:17.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:11:17.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4135336768| 15:11:17.000Z Started>UpdateDataSubscriptionThread Id=3302258224 run:1\r\n|4140702528| 15:11:17.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:11:17.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4135213888| 15:11:17.000Z Started>UpdateDataSubscriptionThread Id=278826432 run:1\r\n|4140702528| 15:11:17.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4135091008| 15:11:17.000Z Started>UpdateDataSubscriptionThread Id=531250304 run:1\r\n|4140702528| 15:11:17.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4140702528| 15:11:17.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4134968128| 15:11:17.000Z Started>UpdateDataSubscriptionThread Id=3723698768 run:1\r\n|4140702528| 15:11:17.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4134845248| 15:11:17.000Z Started>UpdateDataSubscriptionThread Id=3192577872 run:1\r\n|4140702528| 15:11:17.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4135336768| 15:11:18.000Z UpdateDataSubscriptionThread:3302258224>There are no PublishRequest available in the queue\r\n|4135213888| 15:11:18.000Z UpdateDataSubscriptionThread:278826432>There are no PublishRequest available in the queue\r\n|4135091008| 15:11:18.000Z UpdateDataSubscriptionThread:531250304>There are no PublishRequest available in the queue\r\n|4134968128| 15:11:18.000Z UpdateDataSubscriptionThread:3723698768>There are no PublishRequest available in the queue\r\n|4134845248| 15:11:18.000Z UpdateDataSubscriptionThread:3192577872>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:19.000Z AckAndQueuePublishRequest:3302258224>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:19.000Z AckAndQueuePublishRequest:278826432>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:19.000Z AckAndQueuePublishRequest:531250304>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:19.000Z AckAndQueuePublishRequest:3723698768>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:19.000Z AckAndQueuePublishRequest:3192577872>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4134845248| 15:11:19.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135213888| 15:11:19.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135336768| 15:11:19.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4134968128| 15:11:19.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135091008| 15:11:19.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135213888| 15:11:19.000Z UpdateDataSubscriptionThread:278826432>There are no PublishRequest available in the queue\r\n|4135336768| 15:11:19.000Z UpdateDataSubscriptionThread:3302258224>There are no PublishRequest available in the queue\r\n|4134968128| 15:11:19.000Z UpdateDataSubscriptionThread:3723698768>There are no PublishRequest available in the queue\r\n|4135091008| 15:11:19.000Z UpdateDataSubscriptionThread:531250304>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:20.000Z AckAndQueuePublishRequest:3302258224>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:20.000Z AckAndQueuePublishRequest:278826432>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:20.000Z AckAndQueuePublishRequest:531250304>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:20.000Z AckAndQueuePublishRequest:3723698768>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135091008| 15:11:20.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4134968128| 15:11:20.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4134968128| 15:11:20.000Z UpdateDataSubscriptionThread:3723698768>There are no PublishRequest available in the queue\r\n|4135336768| 15:11:20.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135336768| 15:11:20.000Z UpdateDataSubscriptionThread:3302258224>There are no PublishRequest available in the queue\r\n|4135213888| 15:11:20.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135213888| 15:11:20.000Z UpdateDataSubscriptionThread:278826432>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:21.000Z AckAndQueuePublishRequest:3302258224>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:21.000Z AckAndQueuePublishRequest:278826432>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:21.000Z AckAndQueuePublishRequest:3723698768>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135336768| 15:11:21.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4134968128| 15:11:21.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4134968128| 15:11:21.000Z UpdateDataSubscriptionThread:3723698768>There are no PublishRequest available in the queue\r\n|4135213888| 15:11:21.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135213888| 15:11:21.000Z UpdateDataSubscriptionThread:278826432>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:22.000Z AckAndQueuePublishRequest:278826432>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4140702528| 15:11:22.000Z AckAndQueuePublishRequest:3723698768>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4134968128| 15:11:22.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135213888| 15:11:22.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135213888| 15:11:22.000Z UpdateDataSubscriptionThread:278826432>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:23.000Z AckAndQueuePublishRequest:278826432>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135213888| 15:11:23.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:11:28.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:11:28.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4135091008| 15:11:30.000Z UpdateDataSubscriptionThread:531250304>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:30.000Z AckAndQueuePublishRequest:531250304>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135091008| 15:11:30.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4134968128| 15:11:32.000Z UpdateDataSubscriptionThread:3723698768>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:32.000Z AckAndQueuePublishRequest:3723698768>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4134968128| 15:11:32.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:11:38.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:11:38.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4135091008| 15:11:40.000Z UpdateDataSubscriptionThread:531250304>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:40.000Z AckAndQueuePublishRequest:531250304>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135091008| 15:11:40.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135336768| 15:11:41.000Z UpdateDataSubscriptionThread:3302258224>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:41.000Z AckAndQueuePublishRequest:3302258224>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135336768| 15:11:41.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:11:48.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:11:48.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4135336768| 15:11:51.000Z UpdateDataSubscriptionThread:3302258224>There are no PublishRequest available in the queue\r\n|4140702528| 15:11:51.000Z AckAndQueuePublishRequest:3302258224>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135336768| 15:11:51.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:11:58.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:11:58.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4140702528| 15:12:08.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:12:08.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4140702528| 15:12:18.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:12:18.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4134968128| 15:12:22.000Z UpdateDataSubscriptionThread:3723698768>There are no PublishRequest available in the queue\r\n|4140702528| 15:12:22.000Z AckAndQueuePublishRequest:3723698768>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4134968128| 15:12:22.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:12:28.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:12:28.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4134968128| 15:12:32.000Z UpdateDataSubscriptionThread:3723698768>There are no PublishRequest available in the queue\r\n|4140702528| 15:12:32.000Z AckAndQueuePublishRequest:3723698768>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4134968128| 15:12:32.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:12:38.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:12:38.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4135336768| 15:12:41.000Z UpdateDataSubscriptionThread:3302258224>There are no PublishRequest available in the queue\r\n|4140702528| 15:12:41.000Z AckAndQueuePublishRequest:3302258224>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135336768| 15:12:41.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4134968128| 15:12:42.000Z UpdateDataSubscriptionThread:3723698768>There are no PublishRequest available in the queue\r\n|4140702528| 15:12:42.000Z AckAndQueuePublishRequest:3723698768>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4134968128| 15:12:42.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:12:48.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:12:48.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4134968128| 15:12:52.000Z UpdateDataSubscriptionThread:3723698768>There are no PublishRequest available in the queue\r\n|4140702528| 15:12:52.000Z AckAndQueuePublishRequest:3723698768>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4134968128| 15:12:52.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:12:58.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:12:58.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4135336768| 15:13:01.000Z UpdateDataSubscriptionThread:3302258224>There are no PublishRequest available in the queue\r\n|4140702528| 15:13:01.000Z AckAndQueuePublishRequest:3302258224>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135336768| 15:13:01.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:13:08.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:13:08.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4135091008| 15:13:10.000Z UpdateDataSubscriptionThread:531250304>There are no PublishRequest available in the queue\r\n|4140702528| 15:13:10.000Z AckAndQueuePublishRequest:531250304>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135091008| 15:13:10.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4135336768| 15:13:11.000Z UpdateDataSubscriptionThread:3302258224>There are no PublishRequest available in the queue\r\n|4140702528| 15:13:11.000Z AckAndQueuePublishRequest:3302258224>InColdState or InLate:Wakeup the subscriptionThread for immediate notification\r\n|4135336768| 15:13:11.000Z UpdateDataSubscriptionThread> timeout uStatus=0x00000\r\n|4140702528| 15:13:18.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:13:18.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n|4140702528| 15:13:28.000Z uiSequence not found in the DataChangeNotificationList 2\r\n|4140702528| 15:13:28.000Z Ack-Notification Message failed: ustatus=0x807a0000\r\n</pre>\r\n\r\nFor the not working case:\r\n\r\n<pre>\r\n|4151196096| 13:45:54.000Z Now will try to parse: ./Opc.Ua.NodeSet2.Part3.xml\r\n|4151196096| 13:45:54.000Z Your XML configuration file : ./Opc.Ua.NodeSet2.Part3.xml has been parsed. AddressSpace initialization result=0x00000\r\n|4151196096| 13:45:54.000Z fixing the orphan dataType declaration\r\n|4151196096| 13:45:54.000Z Orphan dataType declaration fixed\r\n|4151196096| 13:45:54.000Z Now will try to parse: ./Opc.Ua.NodeSet2.Part4.xml\r\n|4151196096| 13:45:54.000Z Your XML configuration file : ./Opc.Ua.NodeSet2.Part4.xml has been parsed. AddressSpace initialization result=0x00000\r\n|4151196096| 13:45:54.000Z fixing the orphan dataType declaration\r\n|4151196096| 13:45:54.000Z Orphan dataType declaration fixed\r\n|4151196096| 13:45:54.000Z Now will try to parse: ./Opc.Ua.NodeSet2.Part5.xml\r\n|4151196096| 13:45:55.000Z Your XML configuration file : ./Opc.Ua.NodeSet2.Part5.xml has been parsed. AddressSpace initialization result=0x00000\r\n|4151196096| 13:45:55.000Z fixing the orphan dataType declaration\r\n|4151196096| 13:45:55.000Z Orphan dataType declaration fixed\r\n|4151196096| 13:45:55.000Z Now will try to parse: ./VPINodeset.xml\r\n|4151196096| 13:45:58.000Z Your XML configuration file : ./VPINodeset.xml has been parsed. AddressSpace initialization result=0x00000\r\n|4151196096| 13:45:58.000Z fixing the orphan dataType declaration\r\n|4151196096| 13:45:58.000Z Orphan dataType declaration fixed\r\n|4151196096| 13:45:58.000Z Start Post-Parsing initialization\r\n|4151196096| 13:45:58.000Z Start Updating UAVariablesBuiltinType\r\n|4151196096| 13:45:58.000Z Start Updating UAVariablesEncodeableObject\r\n|4151196096| 13:45:58.000Z Start Updating inverse references\r\n|4151196096| 13:45:58.000Z Your certificate validate your server \r\nfrom: 27/10/2015 16:50:49.000\r\n \r\nto: 30/09/2020 16:50:49.000\r\n\r\n|4151196096| 13:45:58.000Z Server listening at :\r\n opc.tcp://sup1:16664/OpenOpcUaCoreServer.\r\n|4151196096| 13:45:58.000Z 8187 Nodes in the addressSpace split in \r\n 147 Objects 7804 Variables 0 Views 21 Methods \r\n 63 ObjectTypes 23 ReferenceTypes 107 DataTypes 22 VariableTypes\r\n|4151196096| 13:45:58.000Z Press Q or q to exit.\r\n|4150500160| 13:45:58.000Z Server Endpoint open. It\'s now listening at opc.tcp://sup1:16664/OpenOpcUaCoreServer with Binary Serializer\r\n\r\n\r\n\r\n|4149091136| 13:46:03.000Z We receive a request to open the SecureChannel 3964147273.\r\n|4149091136| 13:46:03.000Z SecureChannel 0x83e1f90 with SecureChannelId=3964147273 was correctly openned.\r\n|4149091136| 13:46:03.000Z Server_CreateSession receive from the client\r\n|4149091136| 13:46:03.000Z The currentSecureChannelId for this session will be 3964147273\r\n|4149091136| 13:46:03.000Z Server_CreateSession done uStatus=0x0\r\n|4148599616| 13:46:03.000Z Started>UpdateDataSubscriptionThread Id=2663583728 run:1\r\n|4149091136| 13:46:03.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:46:03.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:46:03.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:46:03.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:46:03.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:46:03.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:46:03.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:46:03.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4148476736| 13:46:03.000Z Started>UpdateDataSubscriptionThread Id=1237762576 run:1\r\n|4149091136| 13:46:03.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4150623040| 13:46:11.000Z End Post-Parsing initialization\r\n\r\n|4149091136| 13:48:10.000Z We receive a request to open the SecureChannel 3964147274.\r\n|4149091136| 13:48:10.000Z SecureChannel 0x8858db8 with SecureChannelId=3964147274 was correctly openned.\r\n|4149091136| 13:48:10.000Z Request to close SecureChannel 3964147274 \r\n|4149091136| 13:48:10.000Z SecureChannel 3964147274 was close properly\r\n|4149091136| 13:48:10.000Z RemoveSecureChannel done 0x8858db8 uStatus=0x00000\r\n\r\n\r\n\r\n|4149091136| 13:48:11.000Z We receive a request to open the SecureChannel 3964147275.\r\n|4149091136| 13:48:11.000Z SecureChannel 0x831ff30 with SecureChannelId=3964147275 was correctly openned.\r\n|4149091136| 13:48:11.000Z Server_CreateSession receive from the client\r\n|4149091136| 13:48:11.000Z The currentSecureChannelId for this session will be 3964147275\r\n|4149091136| 13:48:11.000Z Server_CreateSession done uStatus=0x0\r\n|4143848256| 13:48:11.000Z Started>UpdateDataSubscriptionThread Id=3830111568 run:1\r\n|4149091136| 13:48:11.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:48:11.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4143725376| 13:48:11.000Z Started>UpdateDataSubscriptionThread Id=1854037936 run:1\r\n|4149091136| 13:48:11.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:48:11.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4143602496| 13:48:11.000Z Started>UpdateDataSubscriptionThread Id=3650667888 run:1\r\n|4149091136| 13:48:11.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:48:11.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4149091136| 13:48:11.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4143479616| 13:48:11.000Z Started>UpdateDataSubscriptionThread Id=1590895552 run:1\r\n|4143356736| 13:48:11.000Z Started>UpdateDataSubscriptionThread Id=2799501312 run:1\r\n|4149091136| 13:48:11.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n|4143233856| 13:48:11.000Z Started>UpdateDataSubscriptionThread Id=1903115776 run:1\r\n|4149091136| 13:48:11.000Z CSubscriptionServer::AddMonitoredItem>m_MonitoredItemListSem properly received\r\n\r\n</pre>',NULL,NULL,5,1,5,12,246,5,'2015-11-18 14:22:25','2016-09-15 19:59:24','2015-11-18',100,NULL,NULL,66,1,2,0,'2016-09-15 19:59:24'),(67,1,46,'OpenOPCUA Client not able to browse variables on B&R X-20 module ','While testing the OPC UA client with actual device, I have faced this issue, I am able to connect to the B&R X-20 module with OPC UA protocol using Softing client (Softing Client.png). When I have connect to the device using the OpenOPCUA client, it was connected successfully. Session was created and activated successfully, but when I tried reading for variables, it not able to do so. \r\n\r\nEven the OpenOpcUaQuickClient was not able to browse the objects (OpenOPCUA.png).\r\n\r\nI am attaching the logs from the OpenOpcUaQuickClient and OpenOPCUA client.\r\n',NULL,NULL,5,1,6,NULL,243,7,'2015-12-01 13:56:35','2015-12-21 12:06:47','2015-12-01',100,NULL,NULL,67,1,2,0,'2015-12-21 12:06:47'),(68,1,46,'Useless publishes send by the serveur','',NULL,NULL,3,1,4,13,246,1,'2015-12-17 20:13:00','2016-01-04 22:57:11','2015-12-17',0,NULL,NULL,68,1,2,0,'2016-01-04 22:57:11'),(69,1,46,'OpenOpcUa_CloseSession leads to crash','#12 0xf7fb13d8 in std::vector<OpenOpcUa::UACoreClient::CSubscriptionClient*, std::allocator<OpenOpcUa::UACoreClient::CSubscriptionClient*> >::at (this=0xf6b008a8, __n=1)\r\n at /usr/include/c++/4.8.2/bits/stl_vector.h:812\r\n#13 0xf7fbda52 in OpenOpcUa::UACoreClient::CSessionClient::DeleteAllSubscriptions (this=0xf6b00870) at OpenOpcUa/OpenOpcUaClientLib/source/ClientSession.cpp:1591\r\n#14 0xf7fc2a65 in OpenOpcUa_CloseSession (hApplication=0x80c2008, hSession=0xf6b00870) at OpenOpcUa/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp:497\r\n\r\n\r\nexpection std::out_of_range in OpcUa_ClientApi_DeleteSubscriptions because nNoofResults > m_SubscriptionList.size()',NULL,NULL,5,1,4,13,246,1,'2015-12-17 20:17:44','2015-12-18 09:38:24','2015-12-17',100,NULL,NULL,69,1,2,0,'2015-12-18 09:38:24'),(70,1,46,'Server can crash randomly','In fonction AsyncRequestThread in SessionServer.cpp around line 1358 \r\n\r\n<pre>\r\nOpcUa_Semaphore_Post(pSessionServer->m_hPublishSem, 1); \r\n</pre>\r\n\r\ncause a crash because pSessionServer->m_hPublishSem == NULL',NULL,NULL,3,1,4,13,246,1,'2015-12-17 20:20:15','2015-12-18 10:50:42','2015-12-17',100,NULL,NULL,70,1,2,0,'2015-12-18 10:50:42'),(71,1,46,'Troubles with OpenOpcUa_CreateMonitoredItemsEx','',NULL,NULL,3,1,4,NULL,246,1,'2015-12-17 20:22:40','2015-12-18 09:09:48','2015-12-17',0,NULL,NULL,71,1,2,0,'2015-12-18 09:09:48'),(72,1,46,'Troubles With Server','Hi M.condemine,\r\n\r\nI have some issues with the Server (versio 1.0.2.8).\r\nI attach some logs.\r\nMy client uses WinCC for UA-Client and yesterday he loosed the connection with the server and he couldn\'t connect anymore.\r\n\r\nThe memory of the Server reach about 60 Mo (instead of 8 Mo at beginning).\r\n\r\nCould you explain me what it happened ?\r\n\r\nBest Regards.\r\n\r\nSEE - Jacquemet\r\n',NULL,NULL,3,1,4,13,231,2,'2016-01-05 10:35:14','2016-01-05 11:09:53','2016-01-05',100,NULL,NULL,72,1,2,0,'2016-01-05 10:53:24'),(73,3,46,'Examples and documentation','Hello,\r\nis there a documentation for your classes and functions?\r\nE.g.: create a vpi plugin and a node set.\r\n',NULL,NULL,5,NULL,4,NULL,250,2,'2016-01-05 14:51:07','2016-09-15 20:00:58','2016-01-05',100,NULL,NULL,73,1,2,0,'2016-09-15 20:00:58'),(74,1,46,'Tracer initialization failed!: 0x80ab0000','At each start of OpenOpcUaServer a message appears:\r\n\r\nTracer initialization failed!: 0x80ab0000\r\n\r\n',NULL,NULL,1,1,4,13,250,1,'2016-01-19 14:20:26','2016-01-19 14:47:32','2016-01-19',0,NULL,NULL,74,1,2,0,NULL),(75,2,46,'Error output on linux for dlopen','Is it possible to add error messages in function \'OpcUa_LoadLibrary\' in file \'opcua_certficates.cpp\' after dlopen(...)?\r\nE.g. output of dlerror()?',NULL,NULL,1,1,3,NULL,250,1,'2016-01-19 14:28:18','2016-01-19 14:45:46','2016-01-19',0,NULL,NULL,75,1,2,0,NULL),(76,2,46,'Performances (%MEM)','During a normal exchange Client/Server, the server\'s memory is growing linearly for few days before starting to decrease a little.\r\n\r\nGraph example run with 1Gb (100%) memory:\r\n\r\n!Graph.PNG!\r\n',NULL,NULL,1,1,4,13,246,2,'2016-01-25 16:09:36','2016-01-25 17:22:06','2016-01-25',0,NULL,NULL,76,1,2,0,NULL),(77,2,46,'Performances (%CPU)','The use of std::vector is inefficient and leads to performance issues. (linear search with comparison, push_back without reservation (= realloc)).\r\nstd::map with functor will be a better solution.\r\n',NULL,NULL,1,1,3,13,246,3,'2016-01-25 16:09:48','2016-01-27 09:54:55','2016-01-25',0,NULL,NULL,77,1,2,0,NULL),(78,1,46,'CVpiTag XML parsing problem','The constructor of CVpiTag parses all attributes of the tag <Tag> in the subsystem.xml. Your code requires that the XML attribute \"Id\" is the first one. If the XML attribute \"Type\" ist parsed before \"Id\" the error \"Critical Error>Your NodeSet file not fit your SubSystem file\" is shown. \r\n\r\nWe are using QDomDocument to generate the subSystem.xml file and the order of the attributes is handled by QDomDocument internally. We do not have a chance to influence the order of the attributes. The XML specs say that attributes are not ordered. See at http://www.w3.org/TR/REC-xml/#sec-starttags -> \"Note that the order of attribute specifications in a start-tag or empty-element tag is not significant.\"','2016-02-05',NULL,5,1,6,13,250,2,'2016-01-28 16:30:20','2022-03-27 23:36:45','2016-01-28',100,NULL,NULL,78,1,2,0,'2022-03-27 23:36:45'),(79,1,46,'VPI: VpiGlobalStop() is not called at server shutdown','I noticed that the VpiGlobalStop() was never called in my VPI. So i had a look at the class VPIScheduler. \r\n\r\nIn my opinion the main problem is the semapore m_hStopSchedulerThread. You are using this semaphore for two different jobs. First you are waiting for the next poll cycle. This waiting can be cancelled by the semaphore post call in StopVpiReaderThread(). Second you are waiting in StopVpiReaderThread() until the reader thread is finished. In most situations the call of OpcUa_Semaphore_Post() in StopVpiReaderThread() will cause the following OpcUa_Semaphore_TimedWait() to exit immediatly. \r\n\r\nMy suggest is to use two semaphores. One for the poll cycle and another for waiting until the reader thread is finished.\r\nThe two attached patches will fix this problem.',NULL,NULL,2,1,4,13,250,3,'2016-02-03 11:48:40','2016-02-04 10:00:57','2016-02-03',0,NULL,NULL,79,1,2,0,NULL),(80,1,46,'OpenOpcUa 1.0.4.0 RC12 does not compile under Linux','Hello Michel,\r\n\r\nthe library OpenOpcUaVpiLibrary cannot be compiled under linux in the RC12.\r\n\r\n1) File RtSocket.cpp, function CRtSocket::Send(): WSAGetLastError() does only exist in Win32.\r\n2) File VpiInternalThread.cpp, function OpcUa_Vpi_Thread_Delete(): CloseHandle() does only exist in Win32.\r\n\r\nMy last tested version was RC9 which can be compiled under linux. \r\n\r\nBye, Bye\r\n\r\nThomas',NULL,NULL,1,NULL,4,13,250,0,'2016-03-17 14:05:23','2016-03-17 14:05:23','2016-03-17',0,NULL,NULL,80,1,2,0,NULL),(81,1,46,'Time problem in logs under Linux','The time is nor UTC nor local and goes the hour goes from 1 to 24. \r\n\r\nI suspect a (+1) on the hour..\r\nI found one in @FileTimeToSystemTime@ (_opcua_p_datetime.c_ line 725)\r\n\r\n<pre>\r\n<code class=\"cpp\">\r\nstruct tm * tmTime;\r\n// ...\r\nlpSystemTime->wHour = tmTime->tm_hour+1;\r\n</code>\r\n</pre>\r\n\r\nThe doc says that tm_hour is between 0 and 23.\r\n\r\nhttp://www.cplusplus.com/reference/ctime/tm/\r\n\r\nBonus: It would be great if we could choose between UTC and localtime.\r\n',NULL,NULL,3,1,4,13,246,2,'2016-04-12 11:16:36','2016-04-13 15:29:11','2016-04-12',100,1,NULL,81,1,2,0,'2016-04-12 20:01:52'),(82,1,46,'Unexpected log behavior','First, one would expect ordered trace level such as :\r\n\r\n<pre>\r\nNONE > ERROR > WARNING > INFO > DEBUG > ALL\r\n</pre>\r\n\r\nWhich means that with a trace output *NONE* the log system products no traces, *ERROR* shows only ERROR traces, *WARNING* shows ERROR + WARNING traces and so on.\r\n\r\nBut actually it doesn\'t.\r\n*INFO* only shows INFO traces, *WARNING* warning trace etc...\r\nExcept \"DEBUG\" which actually means \"ALL\":\r\n\r\n<pre><code class=\"cpp\">\r\n#define OPCUA_TRACE_SERVER_LEVEL_ERROR (OPCUA_TRACE_SERVER_ERROR)\r\n#define OPCUA_TRACE_SERVER_LEVEL_WARNING (OPCUA_TRACE_SERVER_WARNING)\r\n#define OPCUA_TRACE_SERVER_LEVEL_INFO (OPCUA_TRACE_SERVER_INFO )\r\n#define OPCUA_TRACE_EXTRA_LEVEL_DEBUG (OPCUA_TRACE_EXTRA_WARNING | OPCUA_TRACE_EXTRA_INFO | OPCUA_TRACE_EXTRA_ERROR )\r\n</code></pre>\r\n\r\nIt results that we can\'t filter DEBUG traces in logs (expect with none) !\r\n\r\nSecondly, the configuration file doesn\'t allow us to have multiple modules traces.\r\nFor example we can\'t mix *STACK_INFO* with *SERVER_DEBUG* which is sad (:P).\r\n\r\nBecause the code is defined as:\r\n\r\n<pre><code class=\"cpp\">\r\nif (OpcUa_StrCmpA(atts[ii+1],\"STACK_DEBUG\")==0) // contient le niveau de trace selectionné dans le fichier de configuration\r\n iTraceLevel = OPCUA_TRACE_OUTPUT_STACK_DEBUG;\r\nelse\r\n{\r\n if (OpcUa_StrCmpA(atts[ii+1],\"STACK_ERROR\")==0)\r\n iTraceLevel = OPCUA_TRACE_OUTPUT_STACK_ERROR;\r\n else\r\n {\r\n if (OpcUa_StrCmpA(atts[ii+1],\"STACK_WARNING\")==0)\r\n iTraceLevel = OPCUA_TRACE_OUTPUT_STACK_WARNING;\r\n else\r\n {\r\n if (OpcUa_StrCmpA(atts[ii+1],\"STACK_INFO\")==0)\r\n iTraceLevel = OPCUA_TRACE_OUTPUT_STACK_INFO;\r\n else\r\n {\r\n if (OpcUa_StrCmpA(atts[ii + 1], \"SERVER_DEBUG\") == 0) // contient le niveau de trace selectionné dans le fichier de configuration\r\n iTraceLevel = OPCUA_TRACE_SERVER_LEVEL_DEBUG; // OPCUA_TRACE_OUTPUT_SERVER_DEBUG\r\n else\r\n {\r\n if (OpcUa_StrCmpA(atts[ii + 1], \"SERVER_ERROR\") == 0)\r\n iTraceLevel = OPCUA_TRACE_OUTPUT_SERVER_ERROR;\r\n // etc ...\r\n</code></pre>\r\n\r\nWhich I personally find awful and can be easily changed for a @std::map<std::string, int>@.\r\n',NULL,NULL,1,NULL,4,NULL,246,0,'2016-04-13 15:26:38','2016-04-13 15:26:38','2016-04-13',0,NULL,NULL,82,1,2,0,NULL),(83,2,46,'Same Timestamp (less 30 second) in Server and Client for Communcating is a restriction','Hi M.Condemine,\r\n\r\nDue to your new version of OPC server, there is a restriction for me.\r\nNow a UA client and the OpenOpcUa Server need to have the same time if they are in different computer (same computer no problem).\r\nIf the difference between these time is 30 second or more, the client doesn\'t read any data (datatype is NULL and quality is bad).\r\nWe need to use a time server for distributing time to PC server and PC client.\r\n\r\n\r\nBut For testing or intregrating software between several companies, we don\'t necessarly have a time server (it\'s too early in the project so all pc haven\'t the same time...)\r\n\r\nIs it possible to configure this time or delete this ? (in your xml config file of server)\r\n\r\nThanks for this evolution.\r\nBest Regards\r\n\r\nJacquemet Julien ( SEE.SR company)',NULL,NULL,1,1,5,13,231,0,'2016-05-12 09:43:22','2016-05-12 09:43:22','2016-05-12',0,NULL,NULL,83,1,2,0,NULL),(84,1,46,'RC16 OpenOpcUaCoreServer crashes when client disconnets.','Hello Michel,\r\n\r\nthere are 2 conditions which let the core server crash.\r\n\r\n1.) A connected client disconnects. The attached file \"RC16-Client-Disconnect-crash.txt\" shows the debug output and a stack backtrace. \r\n2.) The server quits while a client is connected. The attached file \"RC16-Close-while-Client-connected-crash.txt\" shows the debug output and a stack backtrace.\r\n\r\nI hope the attached files will help you.\r\n\r\nKind Regards\r\n\r\nThomas ',NULL,NULL,1,1,4,13,250,8,'2016-05-23 14:37:30','2016-08-08 08:40:01','2016-05-23',0,NULL,NULL,84,1,2,0,NULL),(85,1,46,'OpenOpcUaServer RC15 doesn\'t call VpiWriteValue anymore','The function @OpcUa_Vpi_StatusCode VpiWriteValue(OpcUa_Vpi_Handle hVpi, OpcUa_UInt32 UiNbOfValueWrite, OpcUa_NodeId* Ids, OpcUa_DataValue** ppValue)@ isn\'t called anymore by the server in RC15.\r\nWhen writing a node, it acts like it has no VPI.\r\nHowever, the function VpiReadValue is still working.\r\n\r\n',NULL,NULL,3,1,4,13,246,2,'2016-06-01 10:56:43','2016-06-01 11:34:11','2016-06-01',100,NULL,NULL,85,1,2,0,'2016-06-01 11:17:39'),(86,1,46,'OpenOpcUaServer RC16 crash with VPI','The server crash while parsing the xml node file.\r\nMaybe because we don\'t have BrowseName.\r\n\r\n<pre>\r\n(gdb) bt\r\n#0 0xf7987057 in __strcmp_sse4_2 () from /lib/libc.so.6\r\n#1 0x08108ac6 in OpenOpcUa::UAAddressSpace::CUABase::GetBrowseName (this=0x82ae348) at /home/dev/DEV2/OpenOpcUa/OpenOpcUaCoreServer/include/UABase.h:81\r\n#2 0x08171902 in OpenOpcUa::UAAddressSpace::CUABase::CUABase (this=0x82ae348, aNodeClass=OpcUa_NodeClass_Variable, atts=0x82adb30)\r\n at /home/dev/DEV2/OpenOpcUa/OpenOpcUaCoreServer/source/UABase.cpp:702\r\n#3 0x081948e4 in OpenOpcUa::UAAddressSpace::CUAVariable::CUAVariable (this=0x82ae348, aNodeClass=OpcUa_NodeClass_Variable, atts=0x82adb30)\r\n at /home/dev/DEV2/OpenOpcUa/OpenOpcUaCoreServer/source/UAVariable.cpp:142\r\n#4 0x08125fda in xmlNodeSetStartElementHandler (userData=0xffffaa60, name=0x82fa200 \"http://opcfoundation.org/UA/2011/03/UANodeSet.xsd\\001UAVariable\", atts=0x82adb30)\r\n at /home/dev/DEV2/OpenOpcUa/OpenOpcUaCoreServer/source/ServerApplication.cpp:2382\r\n#5 0xf7fc586d in doContent (parser=0x8396db0, startTagLevel=0, enc=0xf7fd8680 <utf8_encoding_ns>,\r\n s=0x83b5d64 \"<UAVariable NodeId=\\\"ns=1;s=KLAXON_0\\\" DataType=\\\"Int16\\\" AccessLevel=\\\"3\\\" UserAccessLevel=\\\"3\\\">0KICA8L29wYzpTdHJ1Y3R1cmVkVHlwZT4NCg0KICA8b3BjOlN0cnVjdHVyZWRUeXBlIE5hbWU9IlNlcnZpY2VGYXVsdCIgQmFzZVR5cGU9InVh\"...,\r\n end=0x83b5dbe \"0KICA8L29wYzpTdHJ1Y3R1cmVkVHlwZT4NCg0KICA8b3BjOlN0cnVjdHVyZWRUeXBlIE5hbWU9IlNlcnZpY2VGYXVsdCIgQmFzZVR5cGU9InVhOkV4dGVuc2lvbk9iamVjdCI+DQogICAgPG9wYzpEb2N1bWVudGF0aW9uPlRoZSByZXNwb25zZSByZXR1cm5lZCBieS\"..., nextPtr=0x8396dc8, haveMore=1 \'\\001\') at /home/dev/DEV2/OpenOpcUa/XMLSaxParser/XmlShared/xmlparse.c:2461\r\n#6 0xf7fc4c91 in contentProcessor (parser=0x8396db0,\r\n start=0x83b5d5f \"\\n <UAVariable NodeId=\\\"ns=1;s=KLAXON_0\\\" DataType=\\\"Int16\\\" AccessLevel=\\\"3\\\" UserAccessLevel=\\\"3\\\">0KICA8L29wYzpTdHJ1Y3R1cmVkVHlwZT4NCg0KICA8b3BjOlN0cnVjdHVyZWRUeXBlIE5hbWU9IlNlcnZpY2VGYXVsdCIgQmFzZVR5cGU\"...,\r\n end=0x83b5dbe \"0KICA8L29wYzpTdHJ1Y3R1cmVkVHlwZT4NCg0KICA8b3BjOlN0cnVjdHVyZWRUeXBlIE5hbWU9IlNlcnZpY2VGYXVsdCIgQmFzZVR5cGU9InVhOkV4dGVuc2lvbk9iamVjdCI+DQogICAgPG9wYzpEb2N1bWVudGF0aW9uPlRoZSByZXNwb25zZSByZXR1cm5lZCBieS\"..., endPtr=0x8396dc8) at /home/dev/DEV2/OpenOpcUa/XMLSaxParser/XmlShared/xmlparse.c:2096\r\n#7 0xf7fc4195 in XML_ParseBuffer (parser=0x8396db0, len=95, isFinal=0) at /home/dev/DEV2/OpenOpcUa/XMLSaxParser/XmlShared/xmlparse.c:1647\r\n#8 0xf7fc40a7 in XML_Parse (parser=0x8396db0, s=0x82aeca0 \"\\n <UAVariable NodeId=\\\"ns=1;s=KLAXON_0\\\" DataType=\\\"Int16\\\" AccessLevel=\\\"3\\\" UserAccessLevel=\\\"3\\\">\", len=95, isFinal=0)\r\n at /home/dev/DEV2/OpenOpcUa/XMLSaxParser/XmlShared/xmlparse.c:1618\r\n#9 0xf7fcf562 in xml4CE_SAXParseBegin (pParseFile=0x82fa6e0, pXmlParser=0xffffaaf8) at /home/dev/DEV2/OpenOpcUa/XMLSaxParser/source/SAXParser_Helper.cpp:282\r\n#10 0x0812e0e8 in OpenOpcUa::UACoreServer::CServerApplication::LoadUaServerNodeSet (this=0x8207008, path=0x82ae9e0 \"./\", fileName=0x83b53d8 \"VPINodeset.xml\")\r\n at /home/dev/DEV2/OpenOpcUa/OpenOpcUaCoreServer/source/ServerApplication.cpp:6106\r\n#11 0x0810daf6 in LoadNodeSetFiles () at /home/dev/DEV2/OpenOpcUa/OpenOpcUaCoreServer/source/Main.cpp:2059\r\n#12 0x0810b990 in RunAsApplication (path=0x8214b90 \"./\", fileName=0x8214b70 \"ConfigOpenOpcUa.xml\") at /home/dev/DEV2/OpenOpcUa/OpenOpcUaCoreServer/source/Main.cpp:458\r\n#13 0x0810c88a in main (argc=2, argv=0xffffade4) at /home/dev/DEV2/OpenOpcUa/OpenOpcUaCoreServer/source/Main.cpp:1447\r\n</pre>\r\n',NULL,NULL,3,NULL,4,13,246,6,'2016-06-01 11:22:41','2016-06-01 16:59:52','2016-06-01',100,NULL,NULL,86,1,2,0,'2016-06-01 16:54:44'),(87,1,46,'SourceName empty in Event subscrition','In EventSubscrition, the Sourname is never displayed when the SourceNode is selected.\r\nIndead a time information is displayed instead of the SourceName when filter is initialy applied, then \r\nwhen new events are generated the field remain empty.',NULL,NULL,3,1,4,NULL,229,1,'2016-06-03 16:32:31','2016-09-06 17:48:11','2016-06-03',100,NULL,NULL,87,1,2,0,'2016-09-06 17:48:11'),(88,1,46,'Crash when adding events in UAexpert','OpenOpcUaCoreServer.exe has crashed when using connection with UAExpert client by adding a single event into the event viewer.\r\n\r\nMore info and files attached',NULL,NULL,3,1,4,13,229,4,'2016-06-03 16:43:07','2016-09-15 19:58:46','2016-06-03',100,NULL,NULL,88,1,2,0,'2016-09-15 19:58:46'),(89,1,46,'Reading array Values from a VPI causes data trash','I did not get the correct data read from an array value with my VPI. \r\n\r\nI found the error in CVPIScheduler::VpiReaderThread(): \r\n\r\nAfter reading the array from the VPI ( CVPIScheduler.cpp line 271 ) you are using CDataValue::SetValue() to copy the array data. But CDataValue::SetValue does not call Alloc_And_Copy_Array anymore ( which does a copy of the data ). It now calls TransfertArray, which only copies the address of the data array. \r\n\r\nFinally in CVPIScheduler.cpp line 296 the variant buffer is deleted. So the copied address is not a valid buffer address anymore.\r\n\r\n',NULL,NULL,5,1,6,13,250,3,'2016-06-09 16:49:45','2022-02-17 10:27:48','2016-06-09',100,NULL,NULL,89,1,2,0,'2022-02-17 10:27:48'),(90,1,46,'UTF-8 to Latin-1 translation problem','An OPC UA string variable which contains accentuated characters written from a client, like UA Expert, to the server causes the string to be modificated when received in the VPI.\r\nIt is certainly a transcoding problem, from UTF-8 to Latin-1.\r\n\r\n','2016-06-30',NULL,3,1,5,13,228,1,'2016-06-17 14:01:05','2016-11-28 09:00:29','2016-06-17',100,NULL,NULL,90,1,2,0,'2016-11-28 09:00:29'),(91,1,49,'La lecture/écriture de string via le Vpi Modbus ne fonctionne pas.','Je viens de tester la version Release sur mon PC connecté à l’automate Schneider.\r\nLa fonction string ne fonctionne pas.\r\n\r\nDans UAExpert la case reste constamment vide\r\nIl y a des valeurs dans le PLC à l’adresse du string mais rien ne s’affiche et lorsque que j’écris une valeur dans le client, UAExpert dit qu’elle est bien envoyée mais les valeur dans le PLC ne bouge pas et la case redevient vide.\r\n\r\nLe Int16 et Int32 modifient bien les valeurs dans le PLC\r\n\r\nFichier de config, log et analyse wireshark Joints',NULL,NULL,5,1,5,NULL,254,15,'2016-08-25 17:29:50','2017-12-10 16:26:23','2016-08-25',100,NULL,NULL,91,1,2,0,'2017-12-10 16:26:23'),(92,1,46,'SecureConnexion is closed while communication ok, then crash the server','The Server crashes after more than 1 hour of communication.\r\n\r\nOn the server :\r\n\r\n<pre>\r\n\r\n\r\n|4132694848| 2016-09-08T10:43:40.000Z CleanupTimeoutedPublishRequest>Context=0xefe04700\r\n|4140161856| 2016-09-08T10:43:41.000Z uiSequence 4468 not found on SubscriptionId: 4024449312\r\n|4140161856| 2016-09-08T10:43:42.000Z uiSequence 4469 not found on SubscriptionId: 4024449312\r\n|4140161856| 2016-09-08T10:43:43.000Z uiSequence 4470 not found on SubscriptionId: 4024449312\r\n|4132694848| 2016-09-08T10:43:45.000Z CleanupTimeoutedPublishRequest>Context=0xefe04700\r\n|4140161856| 2016-09-08T10:43:46.000Z uiSequence 4473 not found on SubscriptionId: 4024449312\r\n|4132694848| 2016-09-08T10:43:48.000Z CleanupTimeoutedPublishRequest>Context=0xefe047a8\r\n|4140161856| 2016-09-08T10:43:49.000Z uiSequence 4476 not found on SubscriptionId: 4024449312\r\n|4132694848| 2016-09-08T10:43:51.000Z CleanupTimeoutedPublishRequest>Context=0xefe047a8\r\n|4140161856| 2016-09-08T10:43:52.000Z uiSequence 4479 not found on SubscriptionId: 4024449312\r\n|4132694848| 2016-09-08T10:43:54.000Z CleanupTimeoutedPublishRequest>Context=0xefe047a8\r\n|4132694848| 2016-09-08T10:43:56.000Z CleanupTimeoutedPublishRequest>Context=0xefe04700\r\n|4132694848| 2016-09-08T10:43:58.000Z CleanupTimeoutedPublishRequest>Context=0xefe008d0\r\n|4132694848| 2016-09-08T10:44:01.000Z CleanupTimeoutedPublishRequest>Context=0xefe008d0\r\n|4132694848| 2016-09-08T10:44:03.000Z CleanupTimeoutedPublishRequest>Context=0xefe008d0\r\n|4140161856| 2016-09-08T10:44:04.000Z uiSequence 4491 not found on SubscriptionId: 4024449312\r\n|4140161856| 2016-09-08T10:44:05.000Z uiSequence 4492 not found on SubscriptionId: 4024449312\r\n|4140161856| 2016-09-08T10:44:06.000Z uiSequence 4493 not found on SubscriptionId: 4024449312\r\n|4140161856| 2016-09-08T10:44:07.000Z uiSequence 4494 not found on SubscriptionId: 4024449312\r\n|4140161856| 2016-09-08T10:44:08.000Z uiSequence 4495 not found on SubscriptionId: 4024449312\r\n|4140161856| 2016-09-08T10:44:09.000Z uiSequence 4496 not found on SubscriptionId: 4024449312\r\n|4140161856| 2016-09-08T10:44:10.000Z uiSequence 4497 not found on SubscriptionId: 4024449312\r\n|4132694848| 2016-09-08T10:44:12.000Z CleanupTimeoutedPublishRequest>Context=0xefe10d60\r\n|4140161856| 2016-09-08T10:44:13.000Z uiSequence 4500 not found on SubscriptionId: 4024449312\r\n|4140161856| 2016-09-08T10:44:14.000Z uiSequence 4501 not found on SubscriptionId: 4024449312\r\n(first trace of the problem)\r\n|4141157184| 2016-09-08T10:44:16.000Z Request to close SecureChannel 153163489\r\n|4141157184| 2016-09-08T10:44:16.000Z Error. This SecureChannel is associated with a pending Session\r\n|4141157184| 2016-09-08T10:44:16.000Z SecureChannel 153163489 was close properly\r\n|4141157184| 2016-09-08T10:44:16.000Z RemoveSecureChannel done 0xefe11438 uStatus=0x00000\r\n|4132694848| 2016-09-08T10:44:16.000Z CleanupTimeoutedPublishRequest>Context=0xefe008d0\r\n|4132694848| 2016-09-08T10:44:16.000Z PQPR>EndSendResponse failed. Status 0x80220000\r\n|4132694848| 2016-09-08T10:44:23.000Z CleanupTimeoutedPublishRequest>Context=0xefe04700\r\n</pre>\r\n→ Warning, the date is incorrect in the serveur logs +2 hr\r\n\r\n\r\n\r\nOn the client :\r\n<pre>\r\n08/09/2016 12:44:16,612 [ INFO] OnShutdownMessage : a034aa8 0x80af0000\r\n08/09/2016 12:44:20,714 [ INFO] OnShutdownMessage : a034aa8 0x80af0000\r\n08/09/2016 12:44:20,714 [ INFO] OnShutdownMessage : a034aa8 0x80af0000\r\n08/09/2016 12:44:46,676 [ INFO] S | 0xa034aa8 : Deconnexion pour cause de non activite sur une souscription\r\n08/09/2016 12:44:46,676 [ INFO] Deconnexion (hSession = 0xa034aa8)\r\n(so reconnecting...)\r\n08/09/2016 12:44:47,734 [DEBUG] 5 endpoints trouves.\r\n08/09/2016 12:44:48,742 [DEBUG] OpenOpcUa_ActivateSession OK -> 0xa037dc0\r\n08/09/2016 12:44:48,744 [DEBUG] NamespaceArray [0] => http://opcfoundation.org/UA/\r\n08/09/2016 12:44:48,744 [DEBUG] NamespaceArray [1] => urn:localhost:OpenOpcUa:OpenOpcUaCoreServer\r\n08/09/2016 12:44:48,746 [DEBUG] OpenOpcUa_CreateSubscription [00000000] Handle=a039aa8, PublishingInterval=1000, LifeTimeCount=30, KeepAliveCount=10\r\n08/09/2016 12:44:48,746 [DEBUG] > SubscriptionID = 0xefd0e170, 4023443824\r\n08/09/2016 12:44:48,750 [DEBUG] OpenOpcUa_CreateMonitoredItemsEx [0] (hSubscription = a039aa8 ; nbItems = 10)\r\n08/09/2016 12:44:48,750 [ INFO] Souscription INTERNE � 1000 ms avec 9 MonitoredItems\r\n08/09/2016 12:44:48,751 [ INFO] Connexion OK. Publishing.\r\n08/09/2016 12:44:53,741 [ INFO] OnShutdownMessage : a037dc0 0x00000\r\n(the communication is now ok for more than 1 hour)\r\netc.\r\n</pre>\r\n',NULL,NULL,5,1,4,13,226,3,'2016-09-08 13:36:49','2016-09-16 07:55:25','2016-09-08',0,NULL,NULL,92,1,2,0,'2016-09-15 19:58:05'),(93,1,46,'OPCUA_P_NATIVE64 is not set in VpiDataTypes.h','Hi Michel,\r\n\r\nthe preprocessor Flag OPCUA_P_NATIVE64 handles if i64 and u64 values are handles by native 64 bit values or if they are split into two 32 bit values.\r\n\r\nThis Flag is used in 3 header files : opcua_p_types.h, OpenOpcUa_p_types.h and VpiDataTypes.h. in opcua_p_types.h and OpenOpcUa_p_types.h the flag is set to 1 so the core server uses native 64 bit values. In VpiDataTypes.h the flag is NOT set. So the vpi uses the split data format and 64 bit data are not correctly transfered from the vpi to the corde server.\r\n\r\nMaybe it is better to use a single architecture header file for those platform definition. This architecture header file can be included from all sources in the whole project. \r\n\r\nKind regards\r\n\r\nThomas \r\n\r\n\r\n\r\n',NULL,NULL,1,NULL,4,16,250,0,'2016-09-08 14:15:17','2016-09-08 14:15:17','2016-09-08',0,NULL,NULL,93,1,2,0,NULL),(94,1,48,'Application de Test TCP','Bonjour,\r\nJ\'ai installé l\'application de simulation(TCP) sur un PC Windows 8.1 distant.\r\nLe ping fonctionne mais il m\'est impossible d\'ouvrir le port TCP depuis cette machine.\r\nEst ce que l\'application fourni des informations de log ?\r\nCordialement\r\nMichel',NULL,NULL,5,NULL,4,NULL,1,1,'2016-09-13 10:45:35','2017-03-22 16:19:52','2016-09-13',0,NULL,NULL,94,1,2,0,'2017-03-22 16:19:52'),(95,1,48,'OpenOpcUaVpiLibraty','Problème de build sous Linux.\r\nCode à modifier et à tester.\r\nNlle version OpenOpUa_1_0_4_3 .',NULL,NULL,3,1,4,NULL,270,1,'2016-09-13 17:46:52','2016-10-10 08:45:09','2016-09-13',100,NULL,NULL,95,1,2,0,'2016-10-10 08:45:09'),(96,1,46,'Server crash on delete subscriptions','* Detection : server crash when something goes wrong with network or high system load.\r\n* Scenario to reproduce : the Server is ran with a debugger, set in pause for 8 seconds, then unpaused. A subscribtion is deleted due to timeout, but crash.\r\n* Environment : Linux CentOS 7.1\r\n\r\n<pre>\r\n*** Error in `OpenOpcUaCoreServer\': double free or corruption (!prev): 0xf74090a8 ***\r\nProgram received signal SIGABRT, Aborted.\r\n[Switching to Thread 0xf6d84b40 (LWP 28941)]\r\n0xf7fdc430 in __kernel_vsyscall ()\r\n#0 0xf7fdc430 in __kernel_vsyscall ()\r\n#1 0xf7865657 in raise () from /lib/libc.so.6\r\n#2 0xf7866e93 in abort () from /lib/libc.so.6\r\n#3 0xf78a5075 in __libc_message () from /lib/libc.so.6\r\n#4 0xf78accb2 in _int_free () from /lib/libc.so.6\r\n#5 0xf7a9d97f in operator delete(void*) () from /lib/libstdc++.so.6\r\n#6 0x08110ad8 in OpenOpcUa::UACoreServer::CMonitoredItemServer::~CMonitoredItemServer (this=0xf74090a8, __in_chrg=<optimized out>)\r\n at OpenOpcUaCoreServer/source/MonitoredItemServer.cpp:167\r\n#7 0x08167f51 in OpenOpcUa::UACoreServer::CSubscriptionServer::DeleteMonitoredItems (this=0xf74033b8)\r\n at OpenOpcUaCoreServer/source/SubscriptionServer.cpp:1187\r\n#8 0x08167a46 in OpenOpcUa::UACoreServer::CSubscriptionServer::~CSubscriptionServer (this=0xf74033b8, __in_chrg=<optimized out>)\r\n at OpenOpcUaCoreServer/source/SubscriptionServer.cpp:1089\r\n#9 0x08167e6b in OpenOpcUa::UACoreServer::CSubscriptionServer::~CSubscriptionServer (this=0xf74033b8, __in_chrg=<optimized out>)\r\n at OpenOpcUaCoreServer/source/SubscriptionServer.cpp:1164\r\n#10 0x08154a9d in OpenOpcUa::UACoreServer::CSessionServer::RemoveSubscription (this=0xf74023b8, pSubscription=0xf74033b8)\r\n at OpenOpcUaCoreServer/source/SessionServer.cpp:5430\r\n#11 0x08154a20 in OpenOpcUa::UACoreServer::CSessionServer::RemoveSubscriptionBySubscriptionId (this=0xf74023b8, SubscriptionId=4148179896)\r\n at OpenOpcUaCoreServer/source/SessionServer.cpp:5416\r\n#12 0x08154d3d in OpenOpcUa::UACoreServer::CSessionServer::SubscriptionsLifeTimeCountThread (arg=0xf74023b8)\r\n at OpenOpcUaCoreServer/source/SessionServer.cpp:5546\r\n#13 0xf7e2ed25 in InternalThreadMain (a_Thread=0xf7403228) at OpenOpcUaStackV1/source/opcua_thread.c:97\r\n#14 0xf7e0909a in pthread_start (args=0xf74032d0) at OpenOpcUaStackV1/source/opcua_p_thread.c:105\r\n#15 0xf7b46b5c in start_thread () from /lib/libpthread.so.0\r\n#16 0xf792eb8e in clone () from /lib/libc.so.6\r\n</pre>\r\n\r\n',NULL,NULL,4,1,4,13,226,5,'2016-09-15 19:48:17','2016-09-22 08:21:16','2016-09-15',0,NULL,NULL,96,1,2,0,NULL),(97,3,48,'Feedback VpiCooperl','Bonjour,\r\navant le call de demain, pourriez vous me faire un retour sur les fonctions manquante data le VpiCooperl.\r\nJ\'ai noté :\r\n1- Code d\'erreurs en lecture et ecriture\r\n2- format ecriture\r\n\r\nCordialement\r\nMichel',NULL,NULL,1,269,4,NULL,1,1,'2016-10-10 08:47:46','2016-10-11 11:50:41','2016-10-10',0,NULL,NULL,97,1,2,0,NULL),(98,2,47,'Widget fir WriteMask Selection','Need to create a Qt Widget for WriteMask and UserWriteMask selection.',NULL,NULL,1,1,4,29,1,0,'2016-11-16 08:26:09','2016-11-16 08:26:09','2016-11-16',0,NULL,NULL,98,1,2,0,NULL),(99,2,1,'Look for help','Hello,\r\nI\'m looking for help to create couple of Qt\'s Widget for the OpenOpcUaConfigManager.\r\n\r\nContact me directly if you are interested.\r\n\r\nKind Regards\r\nMichel',NULL,NULL,1,NULL,4,NULL,1,0,'2016-11-16 08:28:21','2016-11-16 08:28:21','2016-11-16',0,NULL,NULL,99,1,2,0,NULL),(100,1,48,'Erreur de decodage','En cas de reception d\'une payload contenant plusieurs demande (+sieurs lectures et/ou +sieurs écritures) le Vpi n\'en traite qu\'une.\r\nUne solution simple consiste a emettre en TCPNODELAY du côté de l\'AS400. \r\nUn autre solution demandera une modification du décodage de la payload.\r\n\r\n@Yvonnick et David : pourriez vous mettre en oeuvre la solution TCPNODELAY ?\r\n\r\nCordialement\r\nMichel','2016-12-16',NULL,1,1,4,22,1,1,'2016-11-19 09:53:38','2016-11-30 13:54:38','2016-11-19',0,NULL,NULL,100,1,2,0,NULL),(101,2,48,'Gestion des versions','Création d\'une payload permettant de connaitre :\r\n \r\n* la version du VIP Cooperl\r\n* la version systeme OPC ',NULL,NULL,3,269,4,22,269,1,'2016-11-21 09:37:00','2016-11-21 11:32:50','2016-11-21',100,NULL,NULL,101,1,2,0,'2016-11-21 11:32:50'),(102,1,50,'Resultats des premiers tests','Bonjour,\r\nVoici les résultats (cf pièce jointe)des premiers test réalisés sur notre automate avec le programme de test.\r\nTous les échanges en lectures sont ok. Par contre, peu de variables fonctionnent en écriture en utilisant UAExpert\r\nVoir la fiche excel en PJ avec les codes d\'erreurs quand il y en a\r\n',NULL,NULL,5,1,4,27,287,1,'2016-11-23 14:43:49','2016-12-16 11:41:48','2016-11-23',100,NULL,NULL,102,1,2,0,'2016-12-16 11:41:48'),(103,1,42,'Activate session failed on OpenPcs7','See detail in attached screenshot\r\nFailed to activate session',NULL,NULL,5,1,6,4,1,2,'2016-11-23 15:20:39','2019-11-18 09:44:52','2016-11-23',100,2,NULL,103,1,2,0,'2016-11-26 10:43:32'),(104,1,49,'OpenOpcU464bits','Lors du démarrage du serveur il y a un message dans la fenêtre dos :\r\n\"OpenOpcUa:14828>OpenOpcUaCoreServer.lua was not loaded properly. Verify it\'s in the project folder.\"\r\nLe fichier \'OpenOpcUaCoreServer.lua\' n\'est effectivement pas dans le dossier \'OpenOpcUa64bitBinaries-Beta2\'.\r\n\r\nSinon le serveur à l\'aire de fonctionner correctement malgré ce message.',NULL,NULL,1,1,4,17,254,2,'2016-11-25 11:29:45','2016-11-30 12:10:25','2016-11-25',90,NULL,NULL,104,1,2,0,NULL),(105,1,48,'problème VpiS7 boolean','L\'écriture du booleen fonctionne du client UA vers l\'automate, mais pas de l\'automate vers le client UA.',NULL,NULL,1,1,4,NULL,270,0,'2016-12-02 09:36:06','2016-12-02 09:36:06','2016-12-02',0,NULL,NULL,105,1,2,0,NULL),(106,1,48,'Ecriture String ','J\'ai effectué un essai de lecture et d\'écriture d\'un Node de type String.\r\n\r\nLa lecture fonctionne mais l\'écriture ne fonctionne pas complètement.\r\n\r\nCi-joint la capture wireshark.\r\n\r\nValeur test (taille 17) : \"Test string OPCUA\"\r\nValeur Hex : 0x54 0x65 0x73 0x74 0x20 0x73 0x74 0x72 0x69 0x6E 0x67 0x20 0x4F 0x50 0x43 0x55 0x41\r\n\r\nLa valeur écriture est \"t string OPCUA\"\r\n',NULL,NULL,3,1,4,NULL,269,2,'2016-12-07 11:54:21','2017-03-22 10:02:27','2016-12-07',100,NULL,NULL,106,1,2,0,'2017-03-22 10:02:27'),(107,1,50,'Evalutation version RC01','Bonjour,\r\nVoici le document résumant les tests réalisés sur la version RC01\r\n- Les lectures/écritures sont OK sur l\'ensemble des variables.\r\n- Instabilité du serveur avec un POLLING_RATE du Vpi inférieur à 400ms\r\n- Attente documentation/tutoriel pour configurer le serveur+Vpi sur une machine\r\n- Outils pour aide à la configuration/vérification/cohérence ?\r\n',NULL,NULL,5,1,4,27,287,3,'2016-12-08 16:16:13','2017-03-22 10:00:05','2016-12-08',100,NULL,NULL,107,1,2,0,'2016-12-16 11:41:15'),(108,1,46,'OpenOpcUa_GetEndpoints throws exception for access violation','Using the Terminal Client for version 1.0.4.4 with OPC Foundation UA Sample Server in localhost, the function OpenOpcUa_GetEndpoints crashes with an invalid memory access. This is the call stack:\r\n\r\n OpenOpcUaStackV1d.dll!_OpcUa_IsUaString(const void * a_strCString) Line 99 C\r\n OpenOpcUaStackV1d.dll!OpcUa_String_Clear(_OpcUa_String * a_pString) Line 399 C\r\n OpenOpcUaStackV1d.dll!OpcUa_String_StrnCpy(_OpcUa_String * a_pDestString, const _OpcUa_String * a_pSrcString, unsigned long a_uLength) Line 582 C\r\n OpenOpcUaSharedLibd.dll!OpenOpcUa::UASharedLib::Utils::Copy(_OpcUa_EndpointDescription * pSrc) Line 1273 C++\r\n OpenOpcUaSharedLibd.dll!OpenOpcUa::UASharedLib::CEndpointDescription::CEndpointDescription(_OpcUa_EndpointDescription * pDescription) Line 64 C++\r\n OpenOpcUaSharedLibd.dll!OpenOpcUa::UASharedLib::CApplication::DiscoverEndpoints(const _OpcUa_String & discoveryUrl, std::vector<OpenOpcUa::UASharedLib::CEndpointDescription *,std::allocator<OpenOpcUa::UASharedLib::CEndpointDescription *> > * pEndpoints) Line 603 C++\r\n> OpenOpcUaClientLibd.dll!OpenOpcUa_GetEndpoints(void * hApplication, _OpcUa_String * discoveryUrl, unsigned long * uiNoOfEndpointDescription, _OpcUa_EndpointDescription * * ppEndpointDescription) Line 311 C++\r\n\r\nThe problem is very easy to reproduce and doesn\'t happen on 1.0.2.9.',NULL,NULL,1,1,4,24,283,1,'2016-12-12 20:03:22','2016-12-16 11:43:37','2016-12-12',100,NULL,NULL,108,1,2,0,NULL),(109,2,46,'Redirect trace output to custom handler','It would be good to have a way to provide a custom callback to handle the traces output, e.g. to write to a database or another file format.',NULL,NULL,1,NULL,4,24,283,0,'2016-12-12 20:07:13','2016-12-12 20:07:13','2016-12-12',0,NULL,NULL,109,1,2,0,NULL),(110,2,48,'VPI Cooperl - Mode Subscribe','Nous allons avoir besoin que le serveur OPC remonte automatiquement des données à chaque changement de valeur.\r\n\r\n2 possibilités :\r\n\r\nAS400 en Mode client : L\'AS400 se connecte comme aujourd\'hui au VPI cooperl et demande la valeur d\'un NODE avec un code action (exemple : \'S\' Subscribe).\r\nL\'as400 reste connecté au serveur opc et lorsque la valeur est modifiée, le serveur opc transmet la valeur comme aujourd\'hui.\r\n\r\nAS400 en Mode serveur : L\'AS400 devient serveur. Lorsque la valeur est modifiée, le serveur opc se connecte et transfert la valeur en utilisant la payload VPI cooperl.\r\n\r\n\r\n\r\n\r\n\r\n',NULL,NULL,1,1,4,NULL,269,0,'2016-12-14 10:45:10','2016-12-14 10:45:10','2016-12-14',0,NULL,NULL,110,1,2,0,NULL),(111,2,50,'mise à disposition OpenOpcUaConfigManager','Bonjour,\r\n\r\nComme discuté précédemment par mail, pourriez-vous me mettre à disposition OpenOpcUaConfigManager svp ? \r\n\r\nD\'avance merci\r\nBien cordialement\r\n\r\nFabien Aune - Cyxplus',NULL,NULL,6,1,4,27,287,1,'2016-12-20 10:24:37','2017-03-22 09:49:56','2016-12-20',0,NULL,NULL,111,1,2,0,'2017-03-22 09:49:56'),(112,2,46,'Portability with VS2012 compiler','There are some .c files that have problems with VS2012 compiler due to declaration position. Please find attached the patches to fix that.',NULL,NULL,2,1,4,32,283,1,'2016-12-21 18:09:41','2016-12-21 19:12:30','2016-12-21',10,NULL,NULL,112,1,2,0,NULL),(113,1,46,'OpenOpcUa_CreateMonitoredItems and OpenOpcUa_CreateMonitoredItemsEx modify the ClientHandle','Both functions modify the value passed in the ClientHandle.\r\nThese are the lines that cause the problem in SubscriptionClient.cpp:\r\n OpcUa_UInt32 uiClientHandle = 0;\r\n uiClientHandle = (OpcUa_UInt32)pMonitoredItem;\r\n pItemsToCreate[i].RequestedParameters.ClientHandle = uiClientHandle; // (OpcUa_UInt32)pMonitoredItem;\r\n\r\n',NULL,NULL,4,NULL,4,32,283,2,'2016-12-21 21:07:35','2017-02-01 14:50:47','2016-12-21',100,NULL,NULL,113,1,2,0,NULL),(114,1,1,'Error Message when starting OPC UA Server on Raspberry Pi (Jessie)','Hi,\r\nim using the Raspberry Pi Demo Version of OPC UA. I copied the Directory to my Raspberry Pi and unzipped it. Whenever i want to Start it with the Command \"sh StartOpenOpcUaCore...\" an error shows up which says \"*** Error in `./OpenOpcUaCoreServer\':malloc(): memory corruption (fast): 0x00345308 *** Aborted\". I can\'t find any solutions. I hope you can give me an advice :).',NULL,NULL,1,1,4,NULL,295,1,'2017-01-16 14:09:00','2017-02-02 20:14:51','2017-01-16',100,NULL,NULL,114,1,2,0,NULL),(115,2,46,'Complete implementation of OpenOpcUa_StringToNodeId','Please find attached diff files for completing the implementation of OpenOpcUa_StringToNodeId',NULL,NULL,1,NULL,4,NULL,283,5,'2017-02-02 21:08:13','2017-02-03 14:09:08','2017-02-02',0,NULL,NULL,115,1,2,0,NULL),(116,3,1,'Version of Debian used for the client sample?','Hi,\r\n\r\nI\'m trying to compile the client sample (OpenOpcUa_1_0_3_2_ClientSdk.zip at the bottom of the download page) on Debian 8 (jessie). That version uses a different version of libssl (and possibly other libraries) than the binaries in the SDK.\r\n\r\nI think it\'s best for me to use the same version of Debian that you did, or maybe copy the needed libraries from that to Debian 8. Which version of Debian did you use to create the binaries?',NULL,NULL,1,1,4,NULL,300,1,'2017-03-21 15:32:05','2017-03-22 09:47:39','2017-03-21',0,NULL,NULL,116,1,2,0,NULL),(117,1,48,'Nouvelle version du VpiCooperl','Bonjour,\r\nje souhaiterais recevoir votre compte rendu suite à la livraison de la nouvelle version du Vpi.\r\nAvez vous pu procéder a des tests ?\r\nAvez vous un feedback a me fournir ?\r\nAvez vous rencontrez des problèmes ?\r\n\r\nBien Cordialement\r\nMichel',NULL,NULL,1,NULL,4,NULL,1,1,'2017-05-03 15:35:58','2017-05-03 18:30:59','2017-05-03',0,NULL,NULL,117,1,2,0,NULL),(118,2,49,'Versioning dans les VPI','Il serait intéressant de pouvoir avoir un suivi des versions avec des tags dans les VPI.\r\nLes versions sont :\r\n - la version de la .dll\r\n - la version du fichier .xml. Il faut donc aussi créer une balise <version> dans le fichier .xml.\r\nCes 2 versions doivent pouvoir être relues par des tags (ex : address=\"@VPIVersion\" et address=\"@FileVersion\") pour pouvoir remonter l\'info dans le serveur.',NULL,NULL,5,1,4,NULL,254,2,'2017-05-24 16:35:31','2017-12-10 16:26:05','2017-05-24',100,NULL,NULL,118,1,2,0,'2017-12-10 16:26:05'),(119,1,52,'ELTDeDetectionType','Manque Libelle sur ELTDeDetectionType dans les instances du P2',NULL,NULL,5,1,4,NULL,1,1,'2017-06-13 15:38:11','2018-04-13 00:29:18','2017-06-13',100,NULL,NULL,119,1,2,0,'2018-04-13 00:29:18'),(120,1,52,'ZONEDEDETECTIONTYPE','Manque Libelle dans les instances ZONEDEDETECTIONTYPE',NULL,NULL,5,1,4,NULL,1,2,'2017-06-13 16:15:33','2018-04-13 00:29:33','2017-06-13',100,NULL,NULL,120,1,2,0,'2017-06-21 21:40:04'),(121,1,52,'modele P2','Ref au § annexe F/ Remarque\r\n\r\n§6.3.1.3 / NOM (ObjectType)\r\n§6.3.2.1/LIBELLE au lieu de NOM (ObjectType)et absent dans SSI P2\r\n§6.3.4/ECSType (ObjectType)\r\n§6.3.7/ELTType devient ELT (ObjectType)\r\n§6.3.7.1/LIBELLE (SSI P2)\r\n§6.3.9.3/LIBELLE (SSI P2)\r\n§6.3.9/ZoneDeDetectionType ? (ObjectType)\r\n§6.3.10/LIBELLE et non ZONE DE COUVERTURE (ObjectType)\r\n§6.3.11/ASSTYPE devient ASS comme au §6.3.5 ObjectType devient variable . J\'ai corrigé l\'annexe F\r\n§6.3.12.6 LIBELLE (ObjectType)\r\n§6.3.12.4 POS_ATT (SSI P2)\r\n§6.3.12.3 DFT_POS_ATT (ObjectType)\r\n§6.3.16.1 LIBELLE (ObjectType)\r\n§6.3.17.5 DFT_POS_SECU ajouté à l\'annexe F (fait)\r\n§6.3.19.1 LIBELLE (ObjectType)\r\n§6.3.21.9 LIBELLE (ObjectType)\r\n','2017-06-22',NULL,5,1,4,44,315,3,'2017-06-15 14:35:35','2018-04-13 00:29:53','2017-06-15',100,NULL,NULL,121,1,2,0,'2018-04-13 00:29:53'),(122,3,53,'Doc VPI Modbus','Bonjour,\r\n\r\nPouvez-vous mettre à dispo le doc de config du VPI Modbus.\r\n\r\nCordialement,\r\n\r\nJ-F DESROUSSEAUX',NULL,NULL,5,1,4,NULL,317,2,'2017-06-26 08:41:19','2017-12-10 16:37:50','2017-06-26',100,NULL,NULL,122,1,2,0,'2017-06-28 09:51:33'),(123,1,53,'Problème au chargement VpiComDa','Lors du démarrage du serveur openopc sur un pc cible de l\'architecture Renault (win7 64bit) qui n\'a jamais exécuté ce serveur opc, le VpiComDa.dll ne fonctionne pas et le fichier log contient ceci : \r\n\r\nLoadVpiLibrary failed VpiComDa.dll error: 0x000c1 \r\n\r\n',NULL,NULL,5,1,4,NULL,304,4,'2017-06-27 16:29:44','2017-12-10 16:37:35','2017-06-27',100,NULL,NULL,123,1,2,0,'2017-06-28 09:52:20'),(124,3,52,'Modèle UGCIS','Bonjour, \r\n\r\nJe reprends le modèle du concentrateur UGCIS (CMSI qui gère les IS et IST) \r\n\r\n*Question 1*:\r\nChap 6 de l\'annexe : \r\n _Le modèle ADP UGCIS expose un ensemble de types d’objets qui permettent de créer des modèles UGCIS. Tous les objets du modèle sont organisés dans un objet racine appelé ADPTypes._\r\n\r\nComportement de l\'harmonisateur si UGCIS et SSI ont chacun un ADPType? fusion dans l\'harmonisateur?\r\n\r\nFaut-il pas mieux créer un objet racine dont le nom est diffèrent d\'ADPTypes pour y ranger les objets du modèle UGCIS ? ex ADPUGCISType\r\n \r\n\r\n\r\n','2017-07-05',NULL,5,NULL,4,NULL,315,1,'2017-06-28 15:37:36','2018-04-13 00:30:12','2017-06-28',100,NULL,NULL,124,1,2,0,'2018-04-13 00:30:12'),(125,1,53,'Pb prise en compte paramétre BYTE_ORDER dans VPI Modbus','Bonjour,\r\n\r\nLors de l\'utilisation du VPI Modbus Master TCP, le paramètre BYTE_ORDER ne semble pas pris en compte.\r\nEn BIG_ENDIAN ou LITTLE_ENDIAN les valeurs en Int32 ou Int16 ou Float restent les même.\r\nVersion serveur utilisé : 1.0.4.9 / Version VMPI Modbus : 1.0.2.2',NULL,NULL,5,1,4,NULL,317,5,'2017-07-04 07:38:36','2017-12-10 16:38:07','2017-07-04',100,NULL,NULL,125,1,2,0,'2017-12-10 16:38:07'),(126,2,53,'Afficher le \"DisplayName\" dans les alarmes','Bonjour,\r\n\r\nNous souhaitons afficher la valeur du \"DisplayName\" de la variable dans le message de l\'alarme, en lieu et place de \"Message for OffNormalAlarm <NodeID>\".',NULL,NULL,1,1,4,NULL,319,1,'2017-07-04 15:35:07','2017-12-10 16:38:29','2017-07-04',0,NULL,NULL,126,1,2,0,NULL),(127,1,53,'VPI Modbus','Bonjour,\r\n\r\nJ\'ai toujours des difficultés avec la prise du paramètre BYTE_ORDER, même après mise à jour du serveur en 1.0.5.0 et du VPI en 1.0.2.4.\r\nD\'autre part j\'ai des erreurs dans les logs du VPI : VpiReadValue called failed + Protocol Error. We expected a len of 2 we got 1\r\n\r\nJe ne sais pas si c\'est lié à mon projet qui a plusieurs variable qui pointe sur les même adresses mais avec des format différent !\r\n\r\nEn PJ mon projet test qui pointe sur un esclave modbus local (127.0.0.1) + les Logs du VPI',NULL,NULL,5,1,4,NULL,317,1,'2017-07-05 09:19:48','2017-12-10 16:38:50','2017-07-05',0,NULL,NULL,127,1,2,0,'2017-12-10 16:38:50'),(128,1,53,'VPI Modbus','Bonjour,\r\n\r\nJ\'ai toujours des difficultés avec la prise du paramètre BYTE_ORDER, même après mise à jour du serveur en 1.0.5.0 et du VPI en 1.0.2.4.\r\nD\'autre part j\'ai des erreurs dans les logs du VPI : VpiReadValue called failed + Protocol Error. We expected a len of 2 we got 1\r\n\r\nJe ne sais pas si c\'est lié à mon projet qui a plusieurs variable qui pointe sur les même adresses mais avec des format différent !\r\n\r\nEn PJ mon projet test qui pointe sur un esclave modbus local (127.0.0.1) + les Logs du VPI',NULL,NULL,6,NULL,4,NULL,317,1,'2017-07-05 09:19:48','2017-07-05 09:26:30','2017-07-05',0,NULL,NULL,128,1,2,0,'2017-07-05 09:26:30'),(129,3,51,'Gestion queue depuis VPI','J’ai l’impression que je n’arrive pas à gérer les queues pour les notifications de mes items.\r\nMon VPI AIDIAG simule des évolutions de chaque items à chaque boucle avec une valeur qui s’incrémente à chaque cycle.\r\nEn simplifié, le code de VPIAidiagThread fait ça :\r\nvoid CVPIAidiag::VPIAidiagThread(LPVOID arg)\r\n{\r\n CVPIAidiag* pVPIAidiag = (CVPIAidiag *)arg;\r\n DWORD dwSleepTime;\r\n FILETIME ftTime;\r\n char bidon=0;\r\n // Will wait until the cold start is finished\r\n Vpi_Semaphore_TimedWait(pVPIAidiag->m_hStopVPIAidiagThreadSem, INFINITE);\r\n while (pVPIAidiag->m_bRunVPIAidiagThread)\r\n {\r\n DWORD dwStart = GetTickCount();\r\n DWORD dwPollingMin = 10;\r\n PFUNCNOTIFYCALLBACK pFuncNotifyCallback = (PFUNCNOTIFYCALLBACK)pVPIAidiag->GetNotifyCallback();\r\n CVpiInternalData* pVpiInternalData = pVPIAidiag->GetVpiInternalData();\r\n if (pVpiInternalData && bIs2StartVpiThread)\r\n {\r\n Vpi_DataValue pValue;\r\n Vpi_DataValue_Initialize(&pValue);\r\n \r\n Vpi_NodeId aNodeId; // Fill it with the appropriate NodeId\r\n Vpi_NodeId_Initialize(&aNodeId);\r\n \r\n Vpi_Mutex_Lock(pVpiInternalData->m_OpcUaSourceObjectMutex);\r\n CSourceObjectList* pSourceObjectList = pVpiInternalData->GeSourceObjectList();\r\n bidon++;\r\n GetSystemTimeAsFileTime(&ftTime);\r\n for (Vpi_UInt32 i = 0; i < pSourceObjectList->size(); i++)\r\n {\r\n CSourceObject* _pSourceObject = pSourceObjectList->at(i);\r\n \r\n // ===> Lecture des items source\r\n // Fill it with the appropriate NodeId\r\n Vpi_NodeId_CopyTo(&_pSourceObject->GetNodeId(), &aNodeId);\r\n \r\n // Todo Fill pValue\r\n pValue.Value.Datatype = VpiType_Int16;\r\n pValue.Value.Value.Int16 = bidon;//(((int)pSharedBuffCore1->buff[140+(index*2)])<<8) + (int)pSharedBuffCore1->buff[140+((index*2)+1)];\r\n _pSourceObject->SetValue(&pValue);\r\n pValue.StatusCode = Vpi_Good;\r\n pValue.ServerPicoseconds = 0;\r\n pValue.SourcePicoseconds = 0;\r\n pValue.ServerTimestamp.dwHighDateTime = ftTime.dwHighDateTime;\r\n pValue.ServerTimestamp.dwLowDateTime = ftTime.dwLowDateTime;\r\n pValue.SourceTimestamp.dwHighDateTime = ftTime.dwHighDateTime;\r\n pValue.SourceTimestamp.dwLowDateTime = ftTime.dwLowDateTime-600000000;//test -1’ pour source\r\n // Do someting in the protected section\r\n // Notify the Server\r\n pFuncNotifyCallback(1, &aNodeId, &pValue);\r\n }\r\n Vpi_Mutex_Unlock(pVpiInternalData->m_OpcUaSourceObjectMutex);\r\n Vpi_DataValue_Clear(&pValue);\r\n Vpi_NodeId_Clear(&aNodeId);\r\n } \r\n // Calculate the delay to wait before the next tick\r\n DWORD dwEnd = GetTickCount();\r\n DWORD dwCountedTime = dwEnd - dwStart;\r\n if (dwPollingMin>dwCountedTime)\r\n dwSleepTime = dwPollingMin - dwCountedTime;\r\n else\r\n dwSleepTime = 0;\r\n // wait\r\n Vpi_Semaphore_TimedWait(pVPIAidiag->m_hStopVPIAidiagThreadSem, dwSleepTime);\r\n } \r\n Vpi_Semaphore_Post(pVPIAidiag->m_hStoppedVPIAidiagThreadSem, 1);\r\n}\r\nCela a donc pour effet d’appeler pFuncNotifyCallback pour chaque item avec une valeur différente à chaque fois et avec une fréquence d’environ 10ms.\r\nJ’utilise le client OPCUA Aidmap qu’à fait Ghislain et qui demande pour chaque item un queuesize de 10 et un samplinginterval de 10.\r\nLe publishinginterval est de 50.\r\nNormalement, toutes les 50 ms, le client devrait recevoir une liste d’évolution pour chaque items avec environ 5 valeurs mais ce n’est pas le cas et je n’ai que la dernière valeur.\r\nSi on passe le publishinginterval à 250, je me retrouve avec une valeur toutes les 250ms.\r\noutre le fait que je doive appeler pFuncNotifyCallback qu\'une seule fois (comme dans le vpi saphir) j\'aimerai savoir si il y a quelque chose à faire pour remplir les queues ou bien si le SetValue s\'en charge ?\r\n\r\nMerci\r\n',NULL,NULL,1,1,4,NULL,303,2,'2017-07-07 17:22:57','2017-08-31 17:50:55','2017-07-07',0,NULL,NULL,129,1,2,0,NULL),(130,2,48,'Génération OpenOpcUaClientLibrary','Finaliser le CMakelists.txt de l\'OpenOpcUaClientLibrary','2017-07-19',NULL,1,270,4,NULL,1,0,'2017-07-11 14:47:56','2017-07-11 14:47:56','2017-07-11',0,NULL,NULL,130,1,2,0,NULL),(131,3,48,'Build MOXA','Le build est fait jusqu\'à VpiCooperl.\r\nJe vois que tu as corrigé le bug sur OpenOpcUaClientLib. Tu peux m\'envoyer la modif.\r\n\r\nPar contre dès que je sors de ton environnement, je suis perdu...\r\nJe ne vois pas où modifier les chemins pour builder dans un autre dossier.\r\n\r\nA bientot',NULL,NULL,1,1,4,NULL,270,0,'2017-07-11 16:22:42','2017-07-11 16:22:42','2017-07-11',0,NULL,NULL,131,1,2,0,NULL),(132,1,52,'LSType','Bonjour, \r\n\r\nDans la maquette du P2 :\r\n> Le LSType , fils de CSSI_ADP_P2, n\'est pas instancié. \r\n> Le L_SSI fils de CSSI_ADP_P2 est à supprimer \r\n\r\nCdlt \r\nLaurence DURAND',NULL,NULL,5,NULL,5,NULL,315,2,'2017-07-19 10:19:22','2018-04-13 00:30:28','2017-07-26',100,NULL,NULL,132,1,2,0,'2018-04-13 00:30:28'),(133,1,52,'annule et remplace la demande precendente de ce jour','Erreurs dans le CSSI_ADP_P2 : \r\n\r\n* Erreur au niveau de L_SSI \r\n* LSType est fils de L_SSIType, \r\n\r\nJe pense qu\'il manque également la définition de L_SSIType dans l\'annexe ',NULL,NULL,5,1,5,NULL,315,3,'2017-07-19 11:02:09','2018-04-13 00:30:49','2017-07-26',100,NULL,NULL,133,1,2,0,'2018-04-13 00:30:49'),(134,1,52,'CSSI_ADP_P2','Le CMSI ne correspond pas au CMSIType \r\n(manque les infos ACTIF, ARR_DRG_SON,....',NULL,NULL,5,1,5,NULL,315,1,'2017-07-19 16:09:19','2017-09-28 23:03:29','2017-07-26',0,NULL,NULL,134,1,2,0,'2017-09-28 23:03:29'),(135,3,51,'Temps de démarrage du serveur sous VxWorks','Bonjour,\r\nLe temps de démarrage d\'un coupleur automate est un paramètre important. Il ne faut pas qu\'il soit trop long.\r\nDans mon cas, pour un fichier NodeSet.xml possédant un peu plus de 5000 nodes, le temps de scrutation des fichiers xml est d\'environ 3 minutes.\r\nJ\'ai fait des mesures dans la fonction xml4CE_SAXParseBegin et je constate que pour le fichier AidiagNodeSet.xml (ci-joint):\r\n- le temps global du while(fread(&cChar, 1, sizeof(char), pParseFile) && (uStatus ==OpcUa_Good)) est de 56 secondes environ,\r\n- le temps cumulé de la fonction XML_Parse à l\'intérieur de ce while étant de 22 secondes.\r\nJe voudrais savoir si il existe des adaptations à faire dans les fichiers XML ou dans le multithreading pour pouvoir réduire ces temps.\r\nJ\'ai fait le test en mettant les fichiers en RAM plutôt que sur la SDCard du coupleur et les temps sont les mêmes.\r\nUn temps de démarrage supérieur à la minute risque d\'être problématique pour =S=.\r\nMerci.\r\nDamien.\r\n',NULL,NULL,1,1,4,NULL,303,6,'2017-07-19 17:48:56','2017-07-24 17:42:55','2017-07-19',0,NULL,NULL,135,1,2,0,NULL),(136,3,53,'Agrégation de serveurs','Bonjour,\r\nDans le serveur d’agrégation, je n\'arrive pas à lire la valeur d\'un node déclaré dans un serveur implanté sur une autre machine. Si les deux serveurs sont sur la même machine il n\'y a pas de problème.\r\nCordialement,\r\nBernard BRICE',NULL,NULL,5,NULL,4,NULL,319,5,'2017-07-20 15:27:04','2017-12-10 16:39:06','2017-07-20',0,NULL,NULL,136,1,2,0,'2017-12-10 16:39:06'),(137,3,51,'Performances update variables du serveur','Michel,\r\n\r\nDans mon VPI, j\'ai un thread qui permet d\'envoyer au serveur les évolutions des nodes.\r\nLe code est basé sur celui du VPI Safir et j\'utilise pFuncNotifyCallback pour envoyer les évolutions au serveur.\r\nJ\'ai d\'abord une boucle for pour parcourir les items et remplir des vecteurs NodeId et Value avec les évolutions.\r\nPuis j\'ai l\'appel à pFuncNotifyCallback pour les items modifiés : pFuncNotifyCallback(uiNoOfNodeToSend, pNodeIds, pVpiDataValue);\r\nAvec un peu plus de 5000 nodes qui bougent à chaque cycle, le temps d\'exécution de pFuncNotifyCallback est de 340ms environ.\r\nLa demande de =S= (fondée ou non) est de pouvoir rafraichir 5000 nodes à 100ms.\r\nY a-t-il des choses à faire côté VPI ou XML pour optimiser ce temps de traitement ?\r\n\r\nMerci.\r\n\r\nDamien.',NULL,NULL,5,303,4,NULL,303,2,'2017-07-25 11:33:55','2017-09-20 14:17:04','2017-07-25',0,NULL,NULL,137,1,2,0,'2017-09-20 14:17:04'),(138,1,52,'Modèle SSI ','chap 6.3.10 CMSIType \r\n\r\nA vérifier la déclaration des HasComponent : \r\n ASS\r\n L_<???<\r\n','2017-07-31',NULL,5,NULL,4,NULL,315,1,'2017-07-26 16:03:06','2018-04-13 00:31:08','2017-07-26',100,NULL,NULL,138,1,2,0,'2018-04-13 00:31:08'),(139,1,51,'VpiMdBMaster','Avec VpiMdBMaster v1.0.2.4 du 5/7/2017 à 00:04, pour le paramètre BYTE_ORDER du fichier DAT, les valeurs BIG_ENDIAN et LITTLE_ENDIAN n’ont aucun effet.\r\n\r\nJe te soumets une idée :\r\nPour l’interprétation des valeurs 32bits (float, int32, uint32), l’attribut Address des nœuds Tag pourrait-il contenir quelque chose comme « 0130001 Conv32=xxxx » ?\r\nOù xxxx est soit CDAB soit BADC soit DCBA, en supposant que la valeur d’origine est ABCD (valeur reçue actuellement).\r\nQu’en penses-tu ?\r\n',NULL,NULL,6,NULL,3,NULL,304,6,'2017-07-31 09:10:59','2017-08-03 10:04:34','2017-07-31',0,NULL,NULL,139,1,2,0,'2017-07-31 09:17:42'),(140,3,46,'problem with compiled source for WINCE6','Dear Mischel \r\n\r\nMy name is Behzad co worker of Anoush from ZTS France .\r\n\r\nWe bought OPCUA source yesterday from your company .\r\n\r\nWe compiled via VS2013 for windows but we have problem while compile for windowsCE .\r\n\r\nOS : WindowsCE 6.0 - X86 \r\nDevice : ICPDAS XP-8047 \r\nSDK : XpacSDK(X86) for ICPDAS company .\r\n\r\nCan you give me additional information for compile source code for windowsCE .\r\n\r\nWe attached SDK of windowsCE ICPDAS.\r\n\r\nRegards\r\nBehzad ',NULL,NULL,5,325,4,37,325,7,'2017-08-17 19:26:02','2017-08-29 14:13:00','2017-08-17',0,NULL,NULL,140,1,2,0,'2017-08-29 14:13:00'),(142,1,46,'The SSL socket does not initialize and work!','Dear Sir,\r\nWe compiled source for WinCE6 without error and worked fine after fixing the following problems:\r\n1- The a_pProvider->GenerateKey of cryptoprovider generator was NULL in \"Opcua_p_cryptofactory.c\". Because there was not any WinCE preprocessor.\r\n2- The default certificate store path in our device refers to non retentive path. So after rebooting our device the certificate file discards. We changed it our application path. We suggest to make in configurable from xml file.\r\n3- In OpcUa_String_AtoW function we used MultiByteToWideChar() instead b2w() function in WinCE.\r\n4- We made the \"VPIOperatingSystem_WCE6.vcproj\" for Visual Studio 2008.\r\n\r\nSo after fix above problems source compiled and executed successfully. But SSL socket does not initialize and does not work. I found that the \"bSSL\" flag never gets True in any condition.\r\nAlso we tested your OPC UA Server Win32 application. It does not use SSL socket.\r\n\r\nPlease help us for Solve this problem.\r\n',NULL,NULL,5,1,3,37,325,8,'2017-08-29 12:53:51','2017-08-30 13:46:24','2017-08-29',0,NULL,NULL,142,1,2,0,'2017-08-30 13:46:24'),(143,1,51,'VpiUaClnt','Bonjour Michel,\r\n\r\nNous rencontrons un soucis lors de l\'utilisation du VpiUaClnt :\r\nSi on a plusieurs nodes assossiés à un même MonitoredItem, alors seulement la valeur d\'un seul node est actualisée.\r\nTu trouveras en pièce-jointe un projet avec deux UaVariables en surveillance sur une même variable automate.\r\nA bientôt,\r\nGhislain B.',NULL,NULL,5,1,4,63,304,9,'2017-09-12 10:09:06','2017-11-08 18:27:21','2017-09-12',100,NULL,NULL,143,1,2,0,'2017-09-18 19:58:33'),(144,1,51,'VpiUaClnt - Tag/MonitoredItem','Bonjour Michel,\r\n\r\nAujourd\'hui, l\'association Tag/MonitoredItem, dans le VpiOpcUaClnt, est faite sur le rapprochement entre la valeur de Address et de NodeId. \r\nAussi, le fichier subsystem client UA contient quelque chose comme \r\n> _<Tag .... Address=\" +ns=2;s=1:Drum2002?Measurement+\">_\r\net le fichier ClientConfig :\r\n> _<MonitoredItem NodeId=\" +ns=2;s=1:Drum2002?Measurement+\"_\r\n\r\nOr l\'information _ns=2;..._ est une valeur arbitraire qui est donnée par le serveur OPC UA tiers et qui ne peut être obtenue qu\'après le démarrage du serveur opc tiers. Ceci pour donc un problème lors de l\'exploitation.\r\n\r\nPour y remédier, est-il envisageable de pouvoir décoréler les 2 liens en paramétrant\r\n- dans le fichier subsystem client UA quelque chose comme :\r\n> <Tag ... Address=\" +KeyWord01+\">\r\n- et dans le fichier ClientConfig :\r\n> <MonitoredItem Id=\" +KeyWord01+\" NodeId=\"s=1:Drum2002?Online\" Uri=\"http://openopcua.org/TestClientUa/MonUri\"\r\noù _Uri=..._ et Id=\"KeyWord01\" remplacent _ns=2_ ?\r\n\r\nGhislain\r\n',NULL,NULL,6,NULL,4,NULL,304,1,'2017-09-12 15:35:47','2017-12-10 16:16:54','2017-09-12',0,NULL,NULL,144,1,2,0,'2017-12-10 16:16:54'),(145,2,49,'Temporiser les écritures dans le VPI Modubus','Lors de l\'écriture de plusieurs bloques, le vpi écrit tous les bloques à la suite et sature le PLC.\r\nIl serait bien d\'utiliser le \"INTERBLOCK_TIMEOUT\" utilisé pour les blocks de lecture, pour temporiser les blocks d\'écritures.\r\nAttention, il faut temporiser aussi entre un block d\'écriture simple et un block d\'écriture multiple.',NULL,NULL,5,1,4,NULL,254,1,'2017-09-18 10:10:18','2017-12-07 16:47:42','2017-09-18',100,NULL,NULL,145,1,2,0,'2017-12-07 16:47:42'),(146,2,49,'Installation en tant que service','Lors d\'une installation en tant que service, le serveur démarre avec la fenêtre Dos et on doit la fermer manuellement en tapant Q+Entrer.\r\nIl faudrait supprimer l\'ouverture de cette fenêtre.',NULL,NULL,5,1,4,NULL,254,2,'2017-09-18 10:15:35','2017-12-07 16:46:24','2017-09-18',100,NULL,NULL,146,1,2,0,'2017-12-07 16:46:24'),(147,1,51,'Le serveur se ferme violemment lors du chargement du fichier contenant l\'UAVariable InstrumentRange','Bonjour Michel,\r\n\r\nNous rencontrons un problème avec l\'UAVariable _InstrumentRange_.\r\n+Contexte+ : \r\n- dans un projet simple avec les fichiers \r\n- Opc.Ua.NodeSet2.Part8.xml et \r\n- Opc.Ua.NodeSet2.AnalogItem.xml ci-joint.\r\n+Constat+ : le serveur se ferme violemment lors du chargement.\r\nTu trouveras une copie d\'écran du debuggueur.\r\n_aVariant.Value_ ne semble pas contenir un tableau valide comme attendu.\r\nD\'où peux provenir le problème ?\r\n\r\nGhislain\r\n\r\n',NULL,NULL,5,1,4,71,304,4,'2017-09-27 17:49:58','2017-11-08 18:26:59','2017-09-27',100,NULL,NULL,147,1,2,0,'2017-11-08 18:24:39'),(148,3,53,'Description réseau','Bonjour,\r\nAjout dans le support des \"nodes existantes\", comment décrire un équipement avec plusieurs interfaces réseau avec une assignation à différent réseaux (cas d\'usage des nouveaux robots Renault/Nissan avec tous les équipements en réseau) à partir de la companion spec Device. Merci.',NULL,NULL,1,1,4,NULL,318,0,'2017-09-28 09:07:18','2017-09-28 09:07:18','2017-09-28',0,NULL,NULL,148,1,2,0,NULL),(149,1,56,'AddressAsservissement','Le §6.3.12 de l\'annexe 1 ADP fait référence aux asservissements.\r\nPourriez vous illustrer un asservissement sur la maquette ?',NULL,NULL,5,328,4,NULL,1,2,'2017-10-01 16:30:40','2018-04-11 16:37:48','2017-10-01',100,NULL,NULL,149,1,2,0,'2018-04-11 16:37:48'),(150,3,56,'Question sur les State Information Reply','Bonjour,\r\nA quoi servent les champ Monitored States Bitmap et State Information Bitmap décrit au §6.19 ?\r\nQuelle est la différence en ces deux attributs ?\r\n',NULL,NULL,5,328,6,NULL,1,1,'2017-10-03 17:40:41','2018-01-28 17:35:51','2017-10-03',0,NULL,NULL,150,1,2,0,'2018-01-28 17:35:51'),(151,1,56,'Sequence de fonctionnement','Lors du déclenchent d\'une alarme (par exemple depart feu)\r\nJe recois un Event §6.1 puis un Event LogData\r\ncomme indiqué ci dessous \r\n* Event detected - Address=Z01.002.A002\r\n* Event LogData detected - Address=Z21.254.L000\r\n\r\nComment retrouver l\'etat associé a ce déclenchement sachant que les EVENT (§6.1) ne fournissent l\'état associé ?\r\nA quoi correspond Z21.254.L000 qui remonte dans la foulé ?\r\n\r\nCordialement\r\nMichel',NULL,NULL,5,328,6,NULL,1,2,'2017-10-03 17:46:02','2018-01-15 19:31:36','2017-10-03',100,NULL,NULL,151,1,2,0,'2018-01-15 19:31:36'),(152,1,56,'Point Information Request','La Point Information Request rend optionnel certains paramètres. Ces paramètres comprennent Logical Point Number et Logical Point Zone.\r\nDu point de vue de la trame, quand on dit \'Optionel\' est ce que cela signifie que l\'on peut ne pas les fournir ou est ce que qu\'on doit les fournir à une valeur NULL ?',NULL,NULL,5,328,4,NULL,1,2,'2017-10-04 08:43:44','2018-04-11 16:38:08','2017-10-04',100,NULL,NULL,152,1,2,0,'2018-04-11 16:38:08'),(153,1,56,'Point Status Map','Comment obtenir le n° de node et l\'adresse physique à partir d\'un Point Status Map Reply §6.13 ?',NULL,NULL,5,328,4,NULL,1,2,'2017-10-04 10:30:33','2018-03-07 11:02:26','2017-10-04',0,NULL,NULL,153,1,2,0,'2018-03-07 11:02:26'),(154,2,51,'Status codes ','Bonjour Michel,\r\n\r\nVoici des status codes que je compte utiliser dans mon VPI :\r\n\r\nBadLicenseNotAvailable,0x81100000,The server does not have a license which is required to operate in general or to perform a service or operation.\r\nBadHostUnknown, 0x81060000, The hostname could not be resolved.\r\n\r\nIl ne semblent pas faire partie du fichier StatusCode-1.03.csv\r\n\r\nGhislain',NULL,NULL,5,304,4,NULL,304,3,'2017-10-04 16:47:58','2017-11-08 18:26:45','2017-10-04',0,NULL,NULL,154,1,2,0,'2017-11-08 18:26:45'),(155,1,56,'Documentation incomplète','Le §5 du document mxspeak_anx_5_2_95191_4CE_Industry.pdf\r\nList des groupe. La maquette envoie via le protocole MXSpeak d\'autres n° de groupe.\r\nPourriez vous me dire a quoi ils correspondent et me fournir une liste complète ?\r\nCodes inconnu reçu :\r\n* 0x10\r\n* 0x93\r\n* 0xb9\r\n* 0x425\r\n* 0x426\r\n* 0x45e',NULL,NULL,5,328,6,NULL,1,2,'2017-10-04 20:41:02','2017-10-05 20:47:27','2017-10-04',100,NULL,NULL,155,1,2,0,'2017-10-05 20:47:27'),(156,3,51,'Tests avec la version 1.0.5.1','Bonjour Michel,\r\n\r\nLors de mes tests avec le serveur version 1.0.5.1, le vpiUaClnt est indispensable et provoque le message d\'erreur en PJ.\r\nLa version de ce vpi n\'est pas la dernière.\r\nSachant que je n\'ai pas besoin du browse auto dans l\'immédiat, quand penses-tu que les dll VpiUaClnt[d], compatibles 1.0.5.1, seront disponibles ?\r\n\r\nCordialement\r\nGhislain\r\n',NULL,NULL,5,NULL,4,NULL,304,1,'2017-10-06 14:39:34','2017-10-06 14:58:36','2017-10-06',0,NULL,NULL,156,1,2,0,'2017-10-06 14:58:36'),(157,1,51,'error occurs in GlobalStart: 0x803e0000','Bonjour Michel,\r\n\r\nJe rencontre un problème avec VpiUaClnt:\r\n|11408| 2017-10-06T15:07:08.679Z Vpi VpiUaClntd.dll loaded sucessfully but error occurs in GlobalStart: 0x803e0000\r\n\r\nEn PJ, deux serveurs. Demo-TestDouble est client de Demo-TestEmpty.\r\nJe ne vois pas où peut-être le problème. Et toi, qu\'en penses-tu ?\r\n\r\nCordialement,\r\nGhislain ',NULL,NULL,5,NULL,4,NULL,304,4,'2017-10-06 17:15:33','2017-10-11 14:00:31','2017-10-06',0,NULL,NULL,157,1,2,0,'2017-10-11 14:00:31'),(158,3,56,'Question sur les messages','Bonjour, \r\ncomme vous pourrez le constater on reçoit de nombreux messages sur les addresses VPI\r\nZ01.L000.227 --> ECS01 panel restart\r\nZ21.L000.227 --> CMSI21 panel restart\r\n\r\nA quoi est ce que cela correspond ?\r\n\r\nCordialement\r\nMichel',NULL,NULL,5,328,7,NULL,1,1,'2017-10-13 13:57:49','2018-01-15 19:30:07','2017-10-13',100,NULL,NULL,158,1,2,0,'2018-01-15 19:30:07'),(159,1,51,'SubscriptionDetail (RefCounter==1)','Bonjour Michel,\r\n\r\nSubscriptionDetail contient bien le nodeid d\'un nœud dès qu\'il fait partie d\'une subscription.\r\nSi le même noeud est utilisé par plusieurs clients (subscriptions) et que l\'avant dernier client se désabonne, alors le nodeid est retiré de SubscriptionDetail alors qu\'il est encore présent dans une subscription. \r\n\r\nA quel comportement s\'attendre autour de la valeur de SubscriptionDetail ?\r\nCordialement,\r\n\r\nGhislain',NULL,NULL,5,1,4,NULL,304,2,'2017-10-16 14:23:23','2017-12-10 16:16:30','2017-10-16',0,NULL,NULL,159,1,2,0,'2017-12-10 16:16:30'),(160,1,52,'Doublon détecté dans l\'harmonisateur','Certains doublons existent dans l\'harmonisateur.\r\nExemple : le champ LIBELLE (voir pj)',NULL,NULL,5,1,4,NULL,314,2,'2017-10-19 16:17:44','2018-04-13 00:31:26','2017-10-19',100,NULL,NULL,160,1,2,0,'2018-04-13 00:31:26'),(161,1,52,'Problème de typage de données','Des données sont mal typées au niveau de l\'harmonisateur (alors qu\'elles le sont bien dans le simulateur).\r\nEx : ALM_GEN (voir pj)',NULL,NULL,5,1,5,46,314,1,'2017-10-19 16:19:37','2018-04-13 00:31:49','2017-10-19',100,NULL,NULL,161,1,2,0,'2018-04-13 00:31:49'),(162,1,52,'Conteneurs à supprimer','Il faut supprimer les conteneurs Orly/SSI/P2 du simulateur du P2. C\'est l\'harmonisateur qui doit les créer.',NULL,NULL,5,1,4,44,314,1,'2017-10-19 16:21:10','2018-04-13 00:32:46','2017-10-19',100,NULL,NULL,162,1,2,0,'2018-04-13 00:32:46'),(163,1,52,'Harmonisateur : ADPType','Dans BaseObjectType , il y 2 objectTypes ADPtype (dont 1 vide), pourquoi ? \r\nIl y a également de nombreux doublons (ex CMSIType, ECSType,...)et tous ne sont pas identiques (ex ZAType). \r\n\r\n',NULL,NULL,6,1,5,NULL,315,1,'2017-10-20 13:03:33','2017-11-23 14:05:14','2017-10-20',100,NULL,NULL,163,1,2,0,'2017-11-23 14:05:14'),(164,1,52,'Problème avec les TRACES','confusion dans les traces générée par le Vfi. \r\nLors de la phase d\'init. \r\nLes traces sur serveur et du Vpi sont masqué par le trace Vfi.\r\nVpiUaClient.log (nok)\r\nADP-HarmoServer.log (ok)\r\nUaClientP2-00200.log (ok)\r\n\r\n\r\n',NULL,NULL,5,1,7,NULL,1,1,'2017-10-21 14:30:40','2019-11-18 09:44:12','2017-10-21',100,NULL,NULL,164,1,2,0,'2019-11-18 09:44:12'),(165,1,52,'Crash a l\'arrêt','En configuration complète l\'harmonisateur ne s\'arrête pas correctement.',NULL,NULL,5,1,7,71,1,2,'2017-10-21 14:31:27','2017-11-27 22:43:37','2017-10-21',100,NULL,NULL,165,1,2,0,'2017-11-17 09:57:05'),(166,1,52,'Changer l\'emplacement des logs applicatives','Rendre l\'emplacement d\'écriture des logs paramétrable.\r\nSur la plateforme de VABF, tous les fichiers des logs applicatifs doivent être écrits sur le disque F: du SAN.\r\n',NULL,NULL,1,1,4,NULL,314,0,'2017-10-30 10:29:27','2017-10-30 10:29:27','2017-10-30',0,NULL,NULL,166,1,2,0,NULL),(167,2,52,'Rendre les VPI configurables read only ou read/write','Ajouter un paramètre dans les fichiers de configuration des VPI pour pouvoir les configurer en mode read only (afin de réaliser les phases de tests à venir) ou read/write.',NULL,NULL,5,1,5,NULL,314,2,'2017-10-31 15:49:33','2018-04-13 00:34:12','2017-10-31',100,NULL,NULL,167,1,2,0,'2018-04-13 00:34:12'),(168,3,1,'Download source code','Where can we download the source code for the OpenOcUa-Server?',NULL,NULL,1,NULL,4,NULL,250,0,'2017-11-06 11:02:40','2017-11-06 11:02:40','2017-11-06',0,NULL,NULL,168,1,2,0,NULL),(169,1,51,'Comportement VpiUaClnt','Bonjour Michel,\r\n\r\nAprès avoir réalisé quelques tests du vpi UA Client, je te rapporte les combinaisons dont je n\'explique pas le résultat.\r\nQu\'en penses-tu ?\r\n\r\nCordialement,\r\nGhislain Boez\r\n\r\n\r\ncas des boolean :\r\nConfiguration :\r\nServeur A\r\n - Var A1\r\nServeur B\r\n - Var B1 ->A1\r\n - Var B2 ->A1\r\n\r\nSéquence d\'execution :\r\nServeur A démarre\r\nOn force A1 à true\r\nServeur B démarre\r\nB1 est true\r\nB2 est true\r\n1seconde plus tard\r\nB2 devient false\r\n\r\n\r\n\r\ncas des UInt32, on a parfois:\r\nConfiguration :\r\nServeur A\r\n - Var A1\r\nServeur B\r\n - Var B1 ->A1\r\n\r\nSéquence d\'execution :\r\nServeur A démarre\r\nOn force 5 dans A1\r\nServeur B démarre\r\nA1 devient 125\r\nB1 contient 125\r\n\r\n\r\n\r\ncas des UInt32:\r\nConfiguration :\r\nServeur A\r\n - Var A1\r\nServeur B\r\n - Var B1 ->A1\r\n - Var B2 ->A1\r\n\r\nSéquence d\'execution :\r\nServeur A démarre\r\nOn force 5 dans A1\r\nServeur B démarre\r\nB1 contient 5\r\nB2 contient 5\r\n1seconde plus tard\r\nB2 devient 0\r\n\r\n\r\n\r\ncas des UInt32:\r\nConfiguration :\r\nServeur A\r\n - Var A1\r\nServeur B\r\n - Var B1 ->A1\r\n - Var B2 ->A1\r\n\r\nSéquence d\'execution :\r\nServeur A démarre\r\nOn force 5 dans A1\r\nServeur B démarre\r\nA1 passe à 125\r\nB1 contient 125\r\nB2 contient 125\r\n1seconde plus tard\r\nB2 passe à 0\r\n\r\n\r\n\r\n\r\n\r\n',NULL,NULL,1,1,4,NULL,304,1,'2017-11-09 17:41:30','2017-11-17 09:59:20','2017-11-09',0,NULL,NULL,169,1,2,0,NULL),(170,3,46,'Génération 64 bits de la version 1.0.5.2','Ayant eu des erreurs lors de la compilation en 64 bits de la version 1.0.4.7, serait-il possible de s\'assurer que la dernière version ne génère plus ces erreurs ?\r\nVoici le type d\'erreur remontée sur la librairie OpenOpcUaVpiLibrary : \r\n<pre>\r\n/OpenOpcUa_1_0_4_7/VpisSdk/OpenOpcUaVpiLibrary/source/VpiSocket.cpp:969: erreur: cast from ‘VpiBuiltinType::Vpi_Void*’ to ‘int’ loses precision\r\n</pre>',NULL,NULL,1,1,4,71,2,2,'2017-11-17 09:30:21','2017-12-01 18:02:47','2017-11-17',80,NULL,NULL,170,1,2,0,NULL),(171,2,46,'Call changes','Hello,\r\nI\'m collecting changes according to the license model of OpenOpcUa.\r\nPlease send all you changes before decembre 31 2017 for integration in the next release.\r\nI remind you that forking the codebase in forbidden you have to provide your changes.\r\n\r\nFeel free to contact me for more detail\r\n\r\nRegards\r\nMichel',NULL,NULL,1,NULL,6,NULL,1,0,'2017-11-17 09:55:45','2017-11-17 09:55:45','2017-11-17',0,NULL,NULL,171,1,2,0,NULL),(172,1,51,'Modification OpenOpcUa_1_0_4_7 pour compatibilité VxWorks 6.7','Michel,\r\nTu trouveras ci-joint un zip qui contient les fichiers modifiés et les ajouts.\r\nLe zip contient un fichier WinDiffOpenOpcUa.txt qui contient la liste des modifications.\r\nJe suis à ta disposition pour échanger sur chacune des modifications.\r\nMerci.\r\nDamien.',NULL,NULL,1,1,4,NULL,303,0,'2017-11-17 18:25:17','2017-11-17 18:25:17','2017-11-17',0,NULL,NULL,172,1,2,0,NULL),(173,1,52,'Comportement client UAE','Bonjour,\r\nle client UAE utilise une souscription pour l\'ensemble des monitoredItems.\r\nJe voous recommande de répartir les monitored items dans plusieurs souscriptions voir dans plusiers sessions.\r\nPar ailleur la queuesize de 1 est un peut \"short\"\r\n\r\nCordialement\r\nMichel\r\n\r\n',NULL,NULL,5,316,5,NULL,1,1,'2017-11-22 02:45:38','2018-04-13 00:34:35','2017-11-22',100,NULL,NULL,173,1,2,0,'2018-04-13 00:34:35'),(174,1,52,'Harmonisateur','Bonjour,\r\nEn fonctionnement l\'harmonisateur affiche une consommation trop importante de mémoire type \"leak\". 1m/sec\r\nL\'orgine de cette fuite peut être multiple...\r\nIl faut lancer des investigations\r\n\r\nCordialement\r\nMichel',NULL,NULL,5,1,7,NULL,1,3,'2017-11-22 02:48:17','2017-11-27 22:43:14','2017-11-22',100,NULL,NULL,174,1,2,0,'2017-11-23 13:51:34'),(175,1,54,'String array issue on Vpi DirectAccess','Michel,\r\n\r\nThe Vpi DirectAccess seems to work just fine with all variable types except for string array.\r\n\r\nthe attach example will crash as it tries to set string array values.\r\n\r\nOpcDirectAccessTestDebugBin.zip contains the configuration files and the server compiled in debug in VS2015.\r\n- execute the server with \"StartServer_Debug.bat\",\r\n- execute UAExpert, connect to the server,\r\n- subscribe to ComponentNameList node (i=1620),\r\n- execute the test program \"OpcDirectAccessTest.exe\" a couple of time and verify update on uaexpert,\r\n- the server should crash after a few executions.\r\n\r\nOpcDirectAccessTest.zip contains the source files\r\nI tried to a make visual studio solution but it is far much faster to use cmake :\r\n- be sure to have cmake and Qt5.7 installed on the development machine,\r\n- no need to link against VpiDirectAccess.lib or dll or other openopcua libraries as it will load the api dynamically,\r\n- create a bin dir (e.g. build32),\r\n- use cmake or cmake GUI to generate the adequate visual studio solution(VS2013, VS2015 or VS2017) run it with source dir containing the CMakeLists.txt and with the binary dir (e.g. build32).\r\n\r\nI have doubts about my implementation of string array manipulation in file \"core_opc_direct_access.cpp\" between line 307 and 336.\r\nCould you check if this is the right way ?\r\n\r\nBruno',NULL,NULL,5,1,4,NULL,2,9,'2017-11-22 11:56:05','2018-03-07 00:16:47','2017-11-22',100,NULL,NULL,175,1,2,0,'2017-11-27 13:32:42'),(176,1,52,'Noms de types entre chevrons','Les types suivants sont entre chevrons dans les fichiers XML de description des types : <FMSIType> , <CSSI_ADP_TYPE>, <ZCType>.\r\nIl en existe peut-être d\'autres.\r\n=> corriger tous les noms de types marqués entre chevrons et vérifier l\'annexe 1.',NULL,NULL,5,1,4,NULL,314,2,'2017-11-22 16:42:44','2018-04-13 00:35:01','2017-11-22',100,NULL,NULL,176,1,2,0,'2017-12-03 22:50:34'),(177,3,52,'restart centrale','Bonjour,\r\nles centrales TYCO fournissent par protocol une information signalant leur redemmarage. \r\n* Est ce que l\'on doit ignorer cette info ?\r\n* Est ce que l\'on doit l\'associé à DFT_SYST ?\r\n\r\nCordialement\r\nMichel',NULL,NULL,1,315,4,NULL,1,0,'2017-11-23 17:19:12','2017-11-23 17:19:12','2017-11-23',0,NULL,NULL,177,1,2,0,NULL),(178,2,54,'Fichier XMI','Je vous transmets le fichier XMI exporté par Modelio.',NULL,NULL,5,1,4,NULL,331,3,'2017-11-27 11:32:05','2018-03-07 00:16:18','2017-11-27',100,NULL,NULL,178,1,2,0,'2018-03-07 00:16:18'),(179,1,48,'Version OPC du 23-11-2017','Bonjour Michel,\r\n\r\nJe viens d\'installer la dernière version du 23/11/2017.\r\nJ\'ai le message d\'erreur à chaque exécution au bout de 4 secondes.\r\n\r\nJe te joint les fichiers LOG\r\n\r\nCordialement\r\nYvonnick\r\n\r\n',NULL,NULL,1,1,4,NULL,269,3,'2017-11-27 14:24:12','2017-12-04 14:33:40','2017-11-27',0,NULL,NULL,179,1,2,0,NULL),(180,3,51,'Connexion impossible de client OPC au serveur OpenOpcUaCoreServer','Bonjour,\r\n\r\nNous n\'arrivons pas à connecter des clients (autre que UA Expert) au serveur OpenOpcUaCoreServer 1.0.5.2 release. Nous avons fait l\'essai avec UA sample client de la fondation OPC. le résultat de l\'essai se trouve dans le fichier PDF en pièce jointe. nous souhaiterons résoudre ce problème, car nous souhaiterions avancer sur les tests des clients.\r\n\r\nA bientôt',NULL,NULL,6,NULL,4,NULL,304,2,'2017-11-29 16:17:18','2017-12-01 16:16:40','2017-11-29',100,NULL,NULL,180,1,2,0,'2017-12-01 16:16:32'),(181,1,52,'Problème de remontée flux concentrateur => harmonisateur','Un changement d\'état sur un node du concentrateur n\'a pas d\'impact dans l\'harmonisateur.\r\nLes tests ont été faits avec UA Expert sur le simulateur du P2 en changeant l\'état EN_SERV d\'un ELT => il n\'y a pas de remontée de changement d\'état dans l\'harmonisateur.',NULL,NULL,5,1,6,NULL,314,2,'2017-11-30 19:17:10','2018-04-13 00:35:42','2017-11-30',100,NULL,NULL,181,1,2,0,'2018-04-13 00:35:42'),(182,1,52,'Création de nodes en erreur','Au niveau de l\'harmonisateur il manque plusieurs nœuds.\r\nCréation de nodes en erreur.',NULL,NULL,5,1,6,NULL,314,2,'2017-11-30 19:18:31','2018-04-13 00:36:07','2017-11-30',100,NULL,NULL,182,1,2,0,'2017-12-03 22:48:43'),(183,1,51,'DisplayName remplacé par BrowsName','Bonjour,\r\n\r\nLe serveur OpenOpcUaCoreServer 1.0.5.2 release ne prend plus en compte le DisplayName des objets décrits dans le NodSet, mais reprend le BrowsName. Cela fonctionnait avec la version 1.0.5.0 release et le même fichier NodSet.\r\n\r\nDans le fichier PDF joint, vous trouverez des imprime-écrans du résultat.\r\n\r\nCordialement.\r\n\r\nL\'équipe PROSYST',NULL,NULL,5,1,4,NULL,304,3,'2017-12-01 10:43:42','2017-12-10 16:16:10','2017-12-01',100,NULL,NULL,183,1,2,0,'2017-12-01 14:36:36'),(184,1,53,'Pb avec le BrowseName','Avec la v1.0.5.2 le DisplayName n\'est plus personnalisable car le serveur recopie le BrowseName dans le DisplayName',NULL,NULL,5,NULL,5,71,317,2,'2017-12-01 13:08:41','2017-12-10 16:37:12','2017-12-01',100,NULL,NULL,184,1,2,0,'2017-12-01 14:37:39'),(185,1,53,'L\'adresse du serveur n\'ai pas correctement renseigner','Dans la v1.0.5.2, l\'adresse du serveur n\'est pas correctement renseigné dans la fenêtre de commande (voir copie d\'écran en PJ)\r\nIl manque le mon DNS du PC\r\nExemple : opc.tcp://:2065/RenaultSAS\r\nCa provoque des disfonctionnements avec certain client UA qui utilise l\'adresse retourné par le serveur quand on interroge les endpoints disponibles.',NULL,NULL,5,1,5,NULL,317,2,'2017-12-01 13:16:31','2017-12-10 16:36:59','2017-12-01',100,NULL,NULL,185,1,2,0,'2017-12-10 16:36:59'),(186,1,51,'connexion vpiUaClnt','connexion impossible à un serveur UA avec VpiUaClnt en configuration manuelle. Exemple de message apparaissant dans le log pour un item : GetSourceObjectByWrappedNodeId failed. The nodeid ns=7;s=API.CPU.Z1.S1Z1ZBDF24VR is not declare in your subSystem file. Ce message apparait pour chaque item du subsystem.',NULL,NULL,5,NULL,4,NULL,304,1,'2017-12-05 17:58:15','2017-12-10 16:05:44','2017-12-05',100,NULL,NULL,186,1,2,0,'2017-12-10 16:05:44'),(187,3,51,'Débuggage VPI Prosyst','Bonjour Mr Condemine,\r\n\r\nAfin de débugger nos VPIs, Il nous faudrait la version Debug du serveur OpenOpcUa. \r\n\r\nA bientôt,\r\n\r\nProsyst',NULL,NULL,5,NULL,4,NULL,304,1,'2017-12-06 10:04:41','2017-12-10 16:12:58','2017-12-06',100,NULL,NULL,187,1,2,0,'2017-12-10 16:12:58'),(188,1,49,'OpenOpcUa en service plante lors de son arrêt','Sur XP, quand le serveur tourne en tant que service, on a un message d\'erreur lors de sont arrêt.\r\nIl y a bien les 15 secondes avant l\'arrêt du service puis il plante.\r\nEn PJ, le rapport d\'erreur.','2018-01-29',NULL,5,1,4,NULL,254,3,'2017-12-07 16:55:19','2018-04-18 16:07:34','2017-12-07',100,NULL,NULL,188,1,2,0,'2018-03-27 11:51:11'),(189,1,49,'DeviceState Nok dans VpiModbus','En XP, pour le node DeviceState du VPIModbus le StatusCode est toujours rouge.',NULL,NULL,5,1,4,NULL,254,3,'2017-12-07 16:58:03','2018-04-18 16:07:51','2017-12-07',100,NULL,NULL,189,1,2,0,'2018-03-27 11:50:03'),(190,1,49,'le Vpi Ua Client ne fonctionne pas sur XP','Je viens de faire le test du Vpi Ua Client pour Xp et il ne fonctionne pas.\r\nEn PJ, le message lors du lancement du serveur\r\n',NULL,NULL,5,1,4,NULL,254,1,'2017-12-07 17:01:01','2017-12-10 16:25:36','2017-12-07',0,NULL,NULL,190,1,2,0,'2017-12-10 16:25:36'),(191,1,52,'Doublons détectés objet ADPType','Après raccordement du concentrateur du P2, on voit dans UA Expert deux objets de type ADPType.\r\nL\'harmonisateur aspire la définition ADPType du concentrateur conduisant à un conflit avec la définition présente dans l\'harmonisateur.',NULL,NULL,5,1,6,NULL,314,1,'2017-12-07 18:16:00','2018-04-13 00:36:28','2017-12-07',100,NULL,NULL,191,1,2,0,'2018-04-13 00:36:28'),(192,1,49,'Intégration du serveur OPC dans le core','Bonjour,\r\n \r\nSuite à la formation que nous avons eu avec vous un problème était apparu lors de l’intégration du serveur OPC dans le core.\r\nPour intégrer le serveur j’ai compilé le projet « OpenOpcUaCoreServer » sous forme de librairie statique en excluant le main.cpp de la compilation.\r\nJ’ai copié toutes les fonctions du main.cpp dans notre projet, j’ai pu compiler mais j’ai eu des plantes sur des delete. \r\nNous avons redéfini les opérateurs new et delete. Il arrive que l’on utilise une paire d’opérateur (new/delete) standard et surchargé, or cela fait planter l’application. \r\n \r\nNous avons trouvé une technique qui marche et qui nécessite très peu de modification du code OPC. Plutôt que d’exclure le main.cpp de la compilation j’ai juste mis en commentaire le main. J’ai mis la définition des fonctions RunAsApplication et RunAsService dans le fichier stdafx.h pour pouvoir les appeler depuis notre code.\r\nJ’ai rajouté une fonction « testTiama » dans stdafx.h et je l’ai mise à la place de la fonction getCChar dans la fonction RunAsApplication pour pouvoir décider nous-même de comment arrêter le serveur.\r\n \r\nCôté Tiama j’ai inclus stdafx, déclarer toutes les variables globales du main.cpp en extern.\r\nEnfin pour lancer le serveur voici que l’on fait :\r\ng_pTheApplication = new CServerApplication();\r\nif (g_pTheApplication)\r\n g_pTheApplication->Initialize();\r\n \r\nSTARTUP_COMMAND eCommand = COMMAND_UNKNOWN;\r\ng_pTheApplication->ParseFirstParameter(\".\\\\ConfigOpenOpcUa.xml\", &eCommand);\r\n \r\nRunAsApplication(eCommand);\r\n \r\nCela fonctionne, je vous joins les deux fichiers modifiés pour que vous puissiez voir le code qui marche chez nous.\r\nVous aviez proposé d’enlever toutes les fonctions du main et cela est cohérents avec les modifications que nous avons faites, il faut juste que l’on puisse inclure un fichier header qui contient les bons prototypes de fonctions (RunAsApplication/RunAsService).\r\n \r\nSi je ne me trompe pas les seuls modifications que l’on aura à faire lorsque vous livrerez d’autres versions sont :\r\n- Mettre en commentaire le main\r\n- Compiler en librairie statique\r\n- Ajouter la fonction tiama et l’insérer à la place du getCChar\r\n \r\nJe vous relance aussi sur le fait de supprimer le code suivant de votre version pour que l’on puisse compiler de notre côté en debug/release:\r\n#define _HAS_ITERATOR_DEBUGGING 0\r\n',NULL,NULL,1,1,4,NULL,254,0,'2017-12-11 16:16:51','2017-12-11 16:16:51','2017-12-11',0,NULL,NULL,192,1,2,0,NULL),(193,3,57,'Change of Source Code Encoding to UTF-8 Or Korean 949','Hi Michel,\r\n\r\nJust a kindly reminder that the source code textual encoding would have to be updated to include UTF-8 or Corean 949\r\nso that we would not lose anything when we open the codes in Korean OS.\r\n\r\nThanks,\r\n\r\nJason ',NULL,NULL,5,1,4,NULL,333,2,'2017-12-12 00:47:05','2018-03-03 14:44:42','2017-12-12',100,NULL,NULL,193,1,2,0,'2018-03-03 14:44:42'),(194,1,48,'NamespaceArray','Bonjour,\r\nest ce que le node NamespaceArray i=2255 est present dans l\'espace d\'adressage du S7 ?\r\n\r\nCordialement\r\nMichel',NULL,NULL,1,269,6,NULL,1,0,'2017-12-18 10:03:20','2017-12-18 10:03:20','2017-12-18',0,NULL,NULL,194,1,2,0,NULL),(195,1,52,'Impossible de joindre l\'harmonisateur','Le nouveau plugin UAE Egidium, s\'abonne désormais par type de variables (ALM, DRG, DFT, DFT_BATT, DFT_L_ECS...) comme demandé par ADP.\r\nLa première connexion à l\'harmonisateur a aboutie:\r\n<pre>\r\n2017-12-18 14:29:27,604 [0x00006540] DEBUG UAEListener - ADPSpace::UAEListener::connect (#145) server uri: opc.tcp://harm-opcua:2579/ADP-HarmoServer\r\n2017-12-18 14:29:27,604 [0x00006540] DEBUG UAEListener - ADPSpace::UAEListener::connect (#146) discovery url: opc.tcp://harm-opcua:2579/ADP-HarmoServer\r\n2017-12-18 14:29:27,604 [0x00006540] DEBUG UAEListener - ADPSpace::UAEListener::connect (#147) -----\r\n2017-12-18 14:29:27,606 [0x00006540] DEBUG UAEListener - ADPSpace::UAEListener::connect (#167) Connecting...\r\n2017-12-18 14:29:27,612 [0x00006540] DEBUG UAEListener - ADPSpace::UAEListener::connectionStatusChanged (#334) connectionStatusChanged begin\r\n2017-12-18 14:29:27,612 [0x00006540] WARN UAEListener - ADPSpace::UAEListener::connectionStatusChanged (#347) Connection status changed to Connected\r\n</pre>\r\n\r\nJ\'ai dû le relancer le plugin pour prendre en compte un paramètre et depuis l\'harmonisateur ne répond plus:\r\n<pre>\r\n2017-12-18 14:43:28,984 [0x00004cb4] DEBUG UAEListener - ADPSpace::UAEListener::connect (#145) server uri: opc.tcp://harm-opcua:2579/ADP-HarmoServer\r\n2017-12-18 14:43:28,984 [0x00004cb4] DEBUG UAEListener - ADPSpace::UAEListener::connect (#146) discovery url: opc.tcp://harm-opcua:2579/ADP-HarmoServer\r\n2017-12-18 14:43:28,984 [0x00004cb4] DEBUG UAEListener - ADPSpace::UAEListener::connect (#147) -----\r\n2017-12-18 14:43:28,986 [0x00004cb4] DEBUG UAEListener - ADPSpace::UAEListener::connect (#167) Connecting...\r\n2017-12-18 14:43:34,001 [0x00004cb4] DEBUG UAEListener - ADPSpace::UAEListener::connect (#181) Connect failed with status BadTimeout\r\n2017-12-18 14:43:34,001 [0x00004cb4] ERROR UAEListener - ADPSpace::UAEListener::connect (#189) Connect failed\r\n2017-12-18 14:43:34,001 [0x00004cb4] ERROR UAEAnalyst - ADPSpace::UAEAnalyst::run (#865) Connect failed\r\n</pre>\r\n\r\nSi l\'harmonisateur est tombé, ce serait bien de faire en sorte qu\'il se relance automatiquement.',NULL,NULL,5,1,6,NULL,329,3,'2017-12-18 14:57:42','2018-04-13 00:36:53','2017-12-18',100,NULL,NULL,195,1,2,0,'2017-12-18 19:03:03'),(196,1,52,'Pug-In Muet','J\'ai fait quelques essai avec wireshark.\r\nLe plug-in est totalement muet ce soir. Il fonctionne dans la machine EDIGIUM1 (Active) mais il n\'envoi aucune demande au serveur.\r\nIl semblait produire de l\'activité dans l\'AM.\r\nMerci de vérifier le comportement/stabilité de votre Plug-In ASAP.\r\nJe vais par ailleurs etudier les traces de cette AM.\r\nJe souhaite vérifier la bonne prise en compte/compréhension de mes recommandations.\r\nSessionTimeOut, LifeTimeCount, KeepAliveCount, PublishInterval, etc.\r\n\r\nMichel\r\n\r\n',NULL,NULL,5,329,7,NULL,1,1,'2017-12-19 01:23:32','2018-04-13 00:28:48','2017-12-19',100,NULL,NULL,196,1,2,0,'2018-04-13 00:28:48'),(197,1,52,'Analyse Trace wireshark','Après analyse de la trace WS. Je constate :\r\n1- aucune de mes recommandations n\'a été correctement prise en compte\r\n2- Le plug-in crée 21 subscriptions toutes utilisent les mêmes paramètres qui sont totalement inadaptés\r\n3- aucune de ces subscriptions n\'utilisent les paramètres demandés par ADP\r\n4- le plug-in ne crée plus aucun monitoredItem\r\nCETTE NOUVELLE VERSION DU PLUG-IN EST UNE REGRESSION PAR RAPPORT A LA VERSION PRECEDENTE.\r\n\r\nJe suis disponible entre 11h et 12h pour en parler\r\n\r\n',NULL,NULL,5,329,7,NULL,1,3,'2017-12-19 01:34:21','2018-04-13 00:28:29','2017-12-19',100,NULL,NULL,197,1,2,0,'2018-04-13 00:28:29'),(198,1,54,'OPC DA/UA Démo','Bonjour Michel,\r\n\r\nNous avons tenté de lancer la démo fournie (Demo-ComDa). \r\nAprès avoir lancé le fichier *StartServerRelease.bat* nous n\'arrivons pas à lancer correctement la suite. Ci-joint les deux fichiers log qui présentent les erreurs rencontrées. \r\nMerci d\'avance.',NULL,NULL,5,NULL,4,NULL,331,1,'2017-12-19 10:08:56','2018-02-01 09:33:52','2017-12-19',100,NULL,NULL,198,1,2,0,'2018-02-01 09:33:52'),(199,1,57,'Build failure in Ubuntu on OpenOpcUA ver 1.0.5.2','Hello Michel,\r\n\r\nWe experienced build failure due to some issues SSL-related.\r\nWe have uploaded the virtual box.\r\n\r\nThanks,\r\n\r\nJason ',NULL,NULL,5,NULL,4,NULL,333,5,'2017-12-20 07:20:43','2018-02-09 09:16:10','2017-12-20',100,NULL,NULL,199,1,2,0,'2018-02-09 09:16:10'),(200,2,56,'Utilisation AdressageMXSpeak.xlsx','Bonjour,\r\nle fichier contient des adresses qui pointent sur le meme nodeId\r\nVous avez pour cela utilisé une colonne suplementaire.\r\nCe n\'est pas utilisable en l\'état. Il convient d\'ajouter une ligne et de ne modifier que l\'adresse.\r\nseul Full adresse 1 devra etre présent. \r\nMerci de faire la modification avant que j\'importe le fichier.\r\nCordialement\r\nMichel',NULL,NULL,5,328,7,NULL,1,2,'2017-12-20 08:41:54','2018-01-15 18:26:45','2017-12-20',100,NULL,NULL,200,1,2,0,'2018-01-15 18:26:45'),(201,1,54,'OPC DA/UA Démo','Bonjour Michel,\r\n\r\nNous avons tenté de lancer la démo fournie (Demo-ComDa). \r\nAprès avoir lancé le fichier *StartServerRelease.bat* nous n\'arrivons pas à lancer correctement la suite. Ci-joint les deux fichiers log qui présentent les erreurs rencontrées. \r\nMerci d\'avance.',NULL,NULL,5,1,4,NULL,331,4,'2017-12-22 08:28:19','2018-02-01 09:33:22','2017-12-19',100,NULL,NULL,201,1,2,0,'2018-02-01 09:33:22'),(202,3,57,'When would you be able to release finished OpenOpcUa 1.0.5.2?','Hi Michel,\r\n\r\n\r\nHope you enjoyed the Christmas holidays...\r\nJust let us know when you would be releasing the latest OpenOPcUA.\r\n\r\nWe like to proceed to Clint development.\r\n\r\n\r\nThanks,\r\n\r\nJason ',NULL,NULL,5,NULL,4,NULL,333,1,'2017-12-26 06:16:52','2018-01-06 09:24:51','2017-12-26',100,NULL,NULL,202,1,2,0,'2018-01-06 09:24:51'),(203,3,57,'Latest version 1.0.5.2 and UTF-8 support','Hi Michel,\r\n\r\nHope you had a wonderful year-end vacations.\r\n\r\nJust a friendly reminder that we are still awaiting your release of the latest version of the OpenOpcUA i.e. verion 1.0.5.2\r\nWhile you are at it, please look into the UTF-8 support or EUC-KR KR-949.\r\n\r\nAnd one more thing, when do you think we could do the 4th session?\r\n\r\nThanks,\r\n\r\nJason \r\n',NULL,NULL,5,1,4,NULL,333,22,'2018-01-02 05:01:25','2018-02-09 09:17:08','2018-01-02',100,NULL,NULL,203,1,2,0,'2018-02-09 09:17:08'),(204,2,57,'Endian-related issues.','Hi Michel, \r\n\r\nThis week, we\'ve been working with the OpenOpcUA 1.0.5.2 you shared with us to build a cross-compile environment \r\nas the target deployment platform for our OPC UA client module is Power Chips.\r\n\r\nFYI, the cross compilor is power-poky-gcc compiler.\r\nwe ran into following compile error:\r\n\r\n___Compilation error --\r\nbits/endian.h:27:4: error: #error Both BIG_ENDIAN and LITTLE_ENDIAN defined!\r\n# error Both BIG_ENDIAN and LITTLE_ENDIAN defined!___\r\n\r\n\r\nWe also did some digging following the source code and found the suspect for your convenience;\r\n\r\n OpenOpcUa_1_0_5_2/OpenOpcUaStackV1/include/shared/opcua_platformdefs.h\r\n\r\nthe above header file at the code line 35 \"_LITTLE_ENDIAN\" is defined. \r\nand that causes the above error in the glibc bits/endian.h \r\n\r\n\r\nCan you look further into this, please.\r\n\r\n\r\nThanks,\r\n\r\nJason\r\n',NULL,NULL,1,1,5,79,333,16,'2018-01-05 06:16:34','2018-02-01 21:22:40','2018-01-05',0,NULL,NULL,204,1,2,0,NULL),(205,2,54,'Representation UML sous MD','',NULL,NULL,5,1,4,NULL,1,1,'2018-01-05 15:44:19','2018-02-01 09:32:46','2018-01-05',100,NULL,NULL,205,1,2,0,'2018-02-01 09:32:46'),(206,1,52,'les createMonitoredItems en série font crasher le serveur harmonisateur','je suis dans la situation suivante:\r\n\r\nJe crée une première souscription, afin d\'y monitorer des items.\r\nJe regarde le résultat de la création de cette souscription.\r\nJe monitor les items d\'intérêt (e.g. tous les nœuds ALD).\r\nJe regarde les résultats de monitoring de chacun des nœuds monitorés.\r\n\r\nJe crée une deuxième souscription, afin d\'y monitorer des items.\r\nJe regarde le résultat de la création de cette souscription.\r\nJe monitor les items d\'intérêt (e.g. tous les nœuds ALM).\r\nJe regarde les résultats de monitoring de chacun des nœuds monitorés.\r\n\r\nJe crée une troisième souscription, afin d\'y monitorer des items.\r\nJe regarde le résultat de la création de cette souscription.\r\nJe monitor les items d\'intérêt (e.g. tous les nœuds ALM_GEN).\r\nJe regarde les résultats de monitoring de chacun des nœuds monitorés.\r\n\r\n... ainsi de suite vingt fois (pour les 20 types de noeuds).\r\n\r\nCela fait crasher le serveur harmonisateur au bout de 6, 7 ou 8 souscription, difficile d\'évaluer à laquelle précisément.\r\n\r\nJ\'ai essayé dé retirer les souscriptions aux paquets de nœuds trop grands (exit les groupes de plus de 100, je n\'ai gardé que les paquets de 15-20 max)\r\nCela corrige le problème, le serveur ne crashe plus.\r\n\r\nJ\'ai aussi essayé de ne garder qu\'une souscription: les ALM qui contient 10000 nœuds quand tous les concentrateurs sont allumés.\r\nLe serveur ne plante pas dans cette configuration.\r\n\r\nEnfin, j\'ai remis toutes les souscriptions, et j\'ai ajouté un sleep d\'une seconde entre chaque opération:\r\n\r\n\r\nJe crée une première souscription, afin d\'y monitorer des items.\r\nJe regarde le résultat de la création de cette souscription.\r\nJe monitor les items d\'intérêt (e.g. tous les noeuds ALD).\r\nJe regarde les résultats de monitoring de chacun des noeuds monitorés.\r\n\r\nsleep 1 seconde\r\n\r\nJe crée une deuxième souscription, afin d\'y monitorer des items.\r\nJe regarde le résultat de la création de cette souscription.\r\nJe monitor les items d\'intérêt (e.g. tous les noeuds ALM).\r\nJe regarde les résultats de monitoring de chacun des nœuds monitorés.\r\n\r\nsleep 1 seconde\r\n\r\n...\r\n\r\nLe serveur ne crashe plus avec cette modification.\r\n\r\nCette solution est actuellement celle mise en oeuvre sur le serveur ADP.\r\n',NULL,NULL,5,1,5,NULL,316,3,'2018-01-09 18:21:15','2018-02-01 23:02:41','2018-01-09',100,NULL,NULL,206,1,2,0,'2018-02-01 23:02:41'),(207,1,47,'Import CSV in Subsystem','During subsystem import we must create the Uri List according to the namespaceindex available in the import.\r\nThe idea is that all tag are declare in one subsystem file.',NULL,NULL,1,1,4,NULL,1,0,'2018-01-09 21:28:47','2018-01-09 21:28:47','2018-01-09',0,NULL,NULL,207,1,2,0,NULL),(208,1,52,'Remontée d\'information Concentrateur -> Harmonisateur','Confirmation que de nombreuses remontées ne se font pas vers l\'harmonisateur (livraison du 03/01/2018)\r\n\r\nCeci est observé dans tous les cas avec un simple client UA expert que l\'on soit ou non connecté sur le plugin ou mon petit outil de test client.\r\n\r\nIl est très difficile d\'avancer sur cette base.\r\n\r\nPour info pour on a dû reconnecter le plugin Egidium sur simulateur en direct afin de progresser sur les autres sujets et difficile à passer le cap suivant. ',NULL,NULL,5,1,5,NULL,345,4,'2018-01-10 15:53:55','2018-04-13 00:37:16','2018-01-10',100,NULL,NULL,208,1,2,0,'2018-04-13 00:37:16'),(209,1,52,'Remontée croisée entre concentrateur et Harmonisateur','Au travers nos tests, un phénomène que l\'on avait pas encore identifié.\r\n\r\nEn changeant la valeur d\'une ALM dans le concentrateur , c\'est la valeur d\'une CMD_HS dans l\'harmonisateur qui a évolué.\r\n\r\nCas concret: P2 sur l\'ELT ALM i = 531 dans concentrateur agit sur l\'harmonisateur en CMD_HS i=561.\r\n\r\n',NULL,NULL,5,1,5,NULL,345,4,'2018-01-10 16:25:18','2018-01-11 21:13:06','2018-01-10',100,NULL,NULL,209,1,2,0,'2018-01-11 21:13:06'),(210,3,57,'Re: OpenOpcUaClientSdk Libary ','Hi Michel,\r\n\r\nAs you know, we are using *ANSI C* in our development environment and \r\nwhile tracing the code in the \"OpenOpcUaClientSdk\", we run into various C++ specific constructs.\r\n\r\nHow could we access the OpenOpcUaClientSdk from ANSC C environment?\r\nCan you give us an idea?\r\n\r\nThanks,\r\n\r\nJason \r\n',NULL,NULL,5,1,7,4,333,19,'2018-01-12 00:45:50','2018-01-17 08:02:55','2018-01-12',100,NULL,NULL,210,1,2,0,'2018-01-16 12:21:44'),(211,2,56,'Node DFT (ns=8;i=16)','Je pense que DFT doit passer à 1 dès que le serveur n\'arrive pas à communiquer avec le SSI, par exemple si le port série ne s\'ouvre pas, si le câble USB est débranché... peut-être utilisé le fait que l\'on reçoit une trame de surveillance (packet ID 128)',NULL,NULL,5,1,4,NULL,328,3,'2018-01-15 17:52:54','2018-04-11 16:38:40','2018-01-15',100,NULL,NULL,211,1,2,0,'2018-04-11 16:38:40'),(212,2,56,'node MODIF_BD','Il faut que cette variable passe à 1 des que des nodes sont ajoutés ou supprimés, par exemple, si on ajoute un détecteur.\r\nIl ne faut pas récupérer l’info au niveau des centrales mais plutôt au niveau du fichier subsystem si celui-ci est modifié, peut-être mettre en place un système d’indexation de ce fichier...',NULL,NULL,5,1,4,NULL,328,4,'2018-01-15 17:58:21','2018-04-11 16:39:14','2018-01-15',100,NULL,NULL,212,1,2,0,'2018-04-11 16:39:14'),(213,2,56,'NODE LS','Pour les nodes LSType , on peut utiliser le packet ID 128 « supervision request » (page 34 du document), a priori on peut ainsi savoir quelle nœud réseau ne répond pas et ainsi faire passer la variable DFT à true et la variable EN_SERV à false.',NULL,NULL,5,1,4,NULL,328,3,'2018-01-15 18:00:48','2018-04-11 16:39:39','2018-01-15',100,NULL,NULL,213,1,2,0,'2018-04-11 16:39:39'),(214,2,56,'NODE DRG_GEN ','DRG_GEN ne passe pas à true lors de l\'apparition d\'un derangement sur l\'ECS ou le CMSI\r\nDans les trames reçues du paquet 201, y a-t-il d’autres bit à 1 ? Peut-être un mauvais emplacement du bit…\r\nEst-il possible d’essayer avec le bit 8 (Panel has local fault) ?\r\n',NULL,NULL,5,1,4,NULL,328,3,'2018-01-15 18:04:29','2018-04-11 16:40:06','2018-01-15',100,NULL,NULL,214,1,2,0,'2018-04-11 16:40:06'),(215,1,56,'Nodes LIBELLE','Pour l\'ensemble des nodes de type LIBELLE, il n\'y a que le node du 1er niveau (ns=8;i=15) et le node des ELT (ns=11;i=571 ou ns=11;i=671..) qui permettent de récupérer les textes, les autres semblent ne pas fonctionner.',NULL,NULL,5,1,4,NULL,328,4,'2018-01-15 18:43:44','2018-04-11 16:40:24','2018-01-15',100,NULL,NULL,215,1,2,0,'2018-04-11 16:40:24'),(216,1,1,'Problème lors de la suppression des souscriptions','Ci-joint les logs :\r\n* du plugin Egidium (dossier com.egidium.adp)\r\n* de l\'harmonisateur (dossier OK et NOK)\r\n* et les traces Wireshark (dossier OK et NOK)\r\n\r\nDescription du test NOK:\r\n* Relance de l\'harmonisateur et des 4 concentrateurs\r\n* Relance du plugin Egidium\r\n* UAExpert montre bien des souscriptions (VpiSet.SubscriptionDetail!=0)\r\n* Arrêt du plugin Egidium\r\n* UAExpert montre encore des souscriptions (VpiSet.SubscriptionDetail!=0)\r\n\r\nDans les logs du plugin Egidium, on trouve:\r\n<pre>\r\n2018-01-16 14:25:18,524 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllMonitoredItems (#325) deleteMonitoredItems failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:18,534 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllMonitoredItems (#325) deleteMonitoredItems failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:18,541 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllMonitoredItems (#325) deleteMonitoredItems failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:18,547 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllMonitoredItems (#325) deleteMonitoredItems failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:18,553 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllMonitoredItems (#325) deleteMonitoredItems failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:19,137 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllSubscriptions (#362) DeleteSubscription failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:19,137 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllSubscriptions (#362) DeleteSubscription failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:19,138 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllSubscriptions (#362) DeleteSubscription failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:19,138 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllSubscriptions (#362) DeleteSubscription failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:19,139 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllSubscriptions (#362) DeleteSubscription failed with status BadSubscriptionIdInvalid\r\n2018-01-16 14:25:19,139 [0x00006110] ERROR SampleSubscription - ADPSpace::SampleSubscription::deleteAllSubscriptions (#362) DeleteSubscription failed with status BadSubscriptionIdInvalid\r\n</pre>\r\n\r\nDescription du test OK:\r\n* Relance de l\'harmonisateur et de 1 seul concentrateur\r\n* Relance du plugin Egidium\r\n* UAExpert montre bien des souscriptions (VpiSet.SubscriptionDetail!=0)\r\n* Arrêt du plugin Egidium\r\n* UAExpert ne montre plus de souscriptions (VpiSet.SubscriptionDetail=0)\r\n',NULL,NULL,5,1,6,NULL,316,2,'2018-01-16 15:00:57','2018-01-16 20:49:30','2018-01-16',100,NULL,NULL,216,1,2,0,'2018-01-16 20:49:30'),(217,1,56,'Node ECS.ELT.DRG','La variable DRG est à true alors que le point est normal (pas en dérangement), quels sont les infos de MxSpeak qui animent cette variable ?\r\n',NULL,NULL,5,1,4,NULL,328,1,'2018-01-17 19:10:07','2018-01-19 14:47:54','2018-01-17',100,NULL,NULL,217,1,2,0,'2018-01-19 14:47:54'),(218,1,56,'Node ECS.ELT.DRG','La variable DRG est à true alors que le point est normal (pas en dérangement), quels sont les infos de MxSpeak qui animent cette variable ?\r\n',NULL,NULL,5,1,4,NULL,328,2,'2018-01-17 19:10:52','2018-01-17 19:39:20','2018-01-17',0,NULL,NULL,218,1,2,0,'2018-01-17 19:15:25'),(219,1,56,'Node ECS.ELT.EN_SERV','La variable EN_SERV doit être à false uniquement si le point est hors service, dans tous les autres cas doit être à true.',NULL,NULL,5,1,4,NULL,328,2,'2018-01-17 19:21:11','2018-03-05 18:03:08','2018-01-17',100,NULL,NULL,219,1,2,0,'2018-03-05 18:03:08'),(220,2,56,'Node CMSI.ASS.POS_ATT , Node CMSI.ASS.DFT_POS_ATT','Actuellement ne s\'animent pas.\r\n\r\nFonctionnement Node CMSI.ASS.POS_ATT:\r\nDoit être à true lorsque le DAS n\'est pas en défaut de position d\'attente\r\nDoit être à false lorsque le DAS est en défaut de position d\'attente\r\n\r\nFonctionnement Node CMSI.ASS.DFT_POS_ATT:\r\nDoit être à false lorsque le DAS n\'est pas en défaut de position d\'attente\r\nDoit être à true lorsque le DAS est en défaut de position d\'attente\r\n\r\nOn doit pouvoir récupérer l\'état de défaut de position d\'attente avec le Groupe 1004 et l\'event code 401\r\n\r\n\r\n\r\n\r\n ',NULL,NULL,5,1,4,NULL,328,2,'2018-01-18 17:43:07','2018-03-05 18:02:35','2018-01-18',100,NULL,NULL,220,1,2,0,'2018-03-05 18:02:35'),(221,1,56,'Node CMSI.ASS.POS_SECU , Node CMSI.ASS.DFT_POS_SECU','Actuellement ne s\'animent pas.\r\n\r\nFonctionnement Node CMSI.ASS.POS_SECU:\r\nDoit être à true lorsque le DAS n\'est pas en défaut de position de sécurité\r\nDoit être à false lorsque le DAS est en défaut de position de sécurité\r\n\r\nFonctionnement Node CMSI.ASS.DFT_POS_SECU:\r\nDoit être à false lorsque le DAS n\'est pas en défaut de position de sécurité\r\nDoit être à true lorsque le DAS est en défaut de position de sécurité\r\n\r\nOn doit pouvoir récupérer l\'état de défaut de position de sécurité avec le Groupe 1000 et l\'event code 402',NULL,NULL,5,1,4,NULL,328,2,'2018-01-18 18:09:29','2018-03-05 18:02:09','2018-01-18',100,NULL,NULL,221,1,2,0,'2018-03-05 18:02:09'),(222,1,57,'OPC UA Client - segmentation error','Hi Michel,\r\n\r\n\r\nWe have updated the latest OpenOpcUaTerminalClient code as part of our learning process and found it causing segmentation error.\r\n\r\nCode (as attached) has been modified to do as follows:\r\n\r\n\r\n1. register subscriptions \r\n2. wait 10 sec \r\n3. remove Subscription\r\n4. wait 1 sec \r\n\r\nIf we run the code for about 10 times, we encounter random segmentation fault and/or failure in publishing.\r\nPlease review the code and show us what we missed or did wrong.\r\n\r\nAnd while you are at it, could you show us how to stop/pause/resume the subscription correctly. \r\n\r\nMerci,\r\n\r\nJason ',NULL,NULL,5,1,7,NULL,333,36,'2018-01-19 10:36:56','2018-03-19 23:47:37','2018-01-19',100,NULL,NULL,222,1,2,0,'2018-03-19 23:47:37'),(223,3,56,'Channet Addresse 24','Bonjour,\r\nen cas de lecture des text PacketId 151. Je reçois des réponses sur le ChannelAddress 24.\r\nLa documentation indique que les channel adresse vont de 0 à 31.\r\nA quoi correspond la ChannelAddress 24.\r\nCordialement',NULL,NULL,5,328,6,NULL,1,3,'2018-01-19 16:36:03','2018-03-05 18:01:32','2018-01-19',100,NULL,NULL,223,1,2,0,'2018-03-05 18:01:15'),(224,3,56,'§6.19 State Information','Bonjour,\r\nj\'ai besoin d\'une clarification de la part de votre R&D sur l\'interprétation des State Information Reply.\r\nLes données reçues n\'ont pas beaucoup de sens. \r\nPar exemple :ECS en dérangement et HS sur la face avant.\r\nMonitored State Bitmap = 1101 1111 0000 1111 0000 0010 0000 0000\r\nState Information Bitmap =0000 0110 0000 0011 0000 0000 0000 0000(0x2010000)\r\nCette demande est URGENTE\r\nCordialement\r\nMichel',NULL,NULL,5,328,7,NULL,1,4,'2018-01-20 15:27:04','2018-03-05 13:26:08','2018-01-20',100,NULL,NULL,224,1,2,0,'2018-03-05 13:26:08'),(225,2,49,'Communication de 2 cores Tiama (OpenOpcUaCore','',NULL,NULL,5,NULL,3,NULL,254,2,'2018-01-22 17:34:22','2018-01-22 17:38:50','2018-01-22',100,NULL,NULL,225,1,2,0,'2018-01-22 17:38:50'),(226,2,49,'Communication de 2 cores Tiama (OpenOpcUaCore intégré) à travers 1 OpenOpcUaCore Agrégateur','L\'agrégateur communique avec :\r\n - le 1er core grâce à 1 VpiUaClient\r\n - le 2ième core grâce à 1 VpiUaClient\r\n\r\nLa variable \'X\' du 1er core est lié à la variable \'Z\' de l\'agrégateur.\r\nLa variable \'Y\' du 2ième core est lié à la variable \'Z\' de l\'agrégateur.\r\n\r\nLorsque je modifie la variable \'X\' dans le 1er core, je veux que la variable \'Y\' du 2ième core soit modifiée.\r\nAujourd\'hui, quand je modifie la variable \'X\' dans le 1er core, la variable \'Z\' dans l\'agrégateur est bien modifiée mais elle ne redescend pas sur le 2ième core.','2018-05-16',NULL,1,1,5,NULL,254,1,'2018-01-22 17:48:54','2018-04-26 14:09:04','2018-01-22',0,NULL,NULL,226,1,2,0,NULL),(227,3,57,'terminal log file','',NULL,NULL,5,NULL,4,NULL,336,3,'2018-01-23 09:56:59','2018-02-08 21:20:15','2018-01-23',100,NULL,NULL,227,1,2,0,'2018-02-08 21:20:15'),(228,1,49,'Vpi Modbus écriture de plusieurs Bool','Lors de l\'écriture de plusieurs bool dans le serveur OpenOpcUa, il y a un problème d\'écriture sur le Modbus.\r\nDans l\'exemple en pièces jointes :\r\non écrit i=1755 à 1 (ligne 21 du VpiModbus) ça donne 16#1f10 sur le mot 1007 en Modbus (ligne 3561 du wireshark)\r\net on laisse i=1171 à 1 (ligne 31 du VpiModbus) ça donne 16#1f10 sur le mot 1007 en Modbus (ligne 3561 du wireshark)\r\npuis\r\non repasse i=1755 à 0 (ligne 38 du VpiModbus) ça donne 16#1e10 sur le mot 1007 en Modbus (ligne 8328 du wireshark)\r\net on laisse i=1171 à 1 (ligne 58 du VpiModbus) ça donne 16#1f10 sur le mot 1007 en Modbus (ligne 8383 du wireshark) Ce qui n\'est pas bon.\r\n\r\nLa différence entre les 2 est que pour :\r\n - la première écriture, les 2 bool passe dans une écriture multiple au niveau du VPI\r\n - la deuxième écriture, les 2 bool passe dans des écritures différents au niveau du VPI espacée de ~100ms.','2018-01-29',NULL,1,1,5,NULL,254,1,'2018-01-23 14:51:59','2018-03-27 09:34:20','2018-01-23',0,NULL,NULL,228,1,2,0,NULL),(229,2,49,'VpiModbus Nom du fichier .dat','Le nom du fichier .dat est constitué des infos renseignées dans le fichier de configuration du subsystem.\r\nMais pour le VpiUaClient il y a un \"-\" entre le nom du Vpi et les chiffres.\r\nexemple : VpiUaClient-00400.dat\r\nLe tiré est absent pour le VpiModbus.\r\nexemple : VpiModbus00200.dat\r\nIl serait bien de le rajouter pour harmoniser.','2018-01-29',NULL,1,1,3,NULL,254,0,'2018-01-23 15:25:11','2018-01-23 15:25:11','2018-01-23',0,NULL,NULL,229,1,2,0,NULL),(230,1,49,'Vpi Modbus écriture multiple non temporisée','lors d\'une écriture multiple, il n\'y a pas de temporisation entre les questions modbus et le serveur peut retourner des exceptions.\r\nDans l\'exemple en PJ, à la ligne 3561 on commence une écriture multiple de 11 éléments en moins de 1ms.\r\nLe serveur retourne 2 exception ligne 3578 et3584','2018-01-29',NULL,5,1,4,NULL,254,4,'2018-01-23 16:32:10','2018-04-18 16:08:37','2018-01-23',100,NULL,NULL,230,1,2,0,'2018-03-27 09:30:18'),(231,1,49,'VpiUaClient pas de lecture des string','En XP avec configuration manuelle, on ne relie pas les string.','2018-01-24',NULL,5,1,4,NULL,254,2,'2018-01-23 16:35:23','2018-03-27 11:48:41','2018-01-23',100,NULL,NULL,231,1,2,0,'2018-02-08 15:54:36'),(232,2,49,'Dossier de configuration','Il serait bien que, lorsque le serveur est installer en service, tous les fichiers de configurations et de logs soit stocké au même endroit.\r\nAujourd\'hui, les fichier .xml sont dans un dossier mais le fichier .dat des Vpi et les logs sont stocké sur c:\\Windows\\system32\\ pour Xp 32bits','2018-01-29',NULL,5,1,3,NULL,254,3,'2018-01-23 16:46:59','2018-04-18 16:08:58','2018-01-23',100,NULL,NULL,232,1,2,0,'2018-01-24 23:01:08'),(233,2,56,'Nodes ASS, FMSI et UGA , tableau de correspondance nouveaux \"events\" ','Ci-joint le tableau de correspondance pour les nouveaux événements créés.\r\nIl faudrait de préférence extraire les \"events loga data\" et plus précisément l\'event code qui lui seul permettra par exemple de faire la distinction entre les DFT_POS_ATT et le POS_ATT.\r\nPour la partie FMSI et UGA, c\'est le n° de la zone qui permettra d\'adresser.\r\n\r\nCordialement.',NULL,NULL,5,1,6,NULL,328,5,'2018-01-28 16:59:21','2018-03-05 13:20:44','2018-01-28',100,NULL,NULL,233,1,2,0,'2018-03-05 13:20:44'),(234,2,56,'Node CMSI.L_ECS.DFT_L_ECS','J\'ai créé un autre événement pour le node: CMSI.DFT_L_ECS\r\nil est associé à l\'event code n°432 et au groupe G1095\r\nLa fin de l\'événement est associé à l\'event code n°433 et au groupe G1095\r\n\r\nL\'adressage se sera par rapport au n° de centrale.\r\n\r\nCordialement.\r\n\r\n\r\n ',NULL,NULL,5,1,4,NULL,328,1,'2018-01-28 22:22:08','2018-03-05 13:25:27','2018-01-28',100,NULL,NULL,234,1,2,0,'2018-03-05 13:25:27'),(235,2,56,'Node CMSI.ACTIF','J\'ai créé un autre événement pour le node: CMSI.ACTIF\r\nil est associé à l\'event code n°430 et au groupe G1603\r\nLa fin de l\'événement est associé à l\'event code n°431 et au groupe G1603\r\n\r\nL\'adressage se sera par rapport au n° de centrale.\r\n\r\nCordialement.',NULL,NULL,5,1,4,NULL,328,1,'2018-01-28 22:29:26','2018-01-29 17:40:51','2018-01-28',100,NULL,NULL,235,1,2,0,'2018-01-29 17:40:51'),(236,2,54,'Preparer configuration OOUA Procellics','',NULL,NULL,5,1,4,NULL,1,1,'2018-02-01 14:54:26','2018-03-07 00:15:47','2018-02-01',100,NULL,NULL,236,1,2,0,'2018-03-07 00:15:47'),(237,3,57,'SegFault and other things','Michel,\r\n\r\nI have asked one of the engineers to dig deeper into your code; he would be investigating the SegFault and other issues on the client lib analyzing the Qt client code as well.\r\nWe will post the questions we encounter as we make progress.\r\n\r\nA quick question; any idea what would be required to make your code 64-bit compliant?\r\n\r\nMerci,\r\n\r\nJason ',NULL,NULL,5,1,4,NULL,333,7,'2018-02-07 01:57:12','2018-02-09 09:13:51','2018-02-07',100,NULL,NULL,237,1,2,0,'2018-02-09 09:13:51'),(238,2,57,'OpenOpcUa - 64 bit support','Bonjour Michel,\r\n\r\nWe would need to support 64 bit OS.\r\nCan you give us a guidance once the clientlib is stablized?\r\n\r\nMerci,\r\n\r\nJason ',NULL,NULL,5,1,6,4,333,2,'2018-02-09 03:25:22','2019-11-18 09:47:04','2018-02-09',100,NULL,NULL,238,1,2,0,'2019-11-18 09:47:04'),(239,2,57,'OpenOpcUa - 64 bit support','Bonjour Michel,\r\n\r\nWe would need to support 64 bit OS.\r\nCan you give us a guidance once the clientlib is stablized?\r\n\r\nMerci,\r\n\r\nJason ',NULL,NULL,5,1,4,4,333,1,'2018-02-09 03:25:42','2018-02-09 09:12:04','2018-02-09',100,NULL,NULL,239,1,2,0,'2018-02-09 09:12:04'),(240,1,49,'VPI UA Client plante quand le serveur graine est redémarré','Lorsque l\'on coupe le serveur graine, le serveur et le Vpi log des d\'erreur.\r\nUne fois le serveur graine démarré, il n\'y a plus d\'erreur logé mais si on essaye de modifier un node, le serveur plante.\r\n',NULL,NULL,5,1,4,NULL,254,1,'2018-02-09 09:15:08','2018-05-04 15:42:31','2018-02-09',100,NULL,NULL,240,1,2,0,'2018-05-04 15:42:31'),(241,1,57,'Code fixes to be reviewed and merged','Michel,\r\n\r\n\r\nSome observations to share :\r\n - With the latest code of 1.0.5.3 with OpenOpcUa_AutoConnectMecanismState(OpcUa_True), leave the client idle after around 10 minutes of session creation,\r\n then issue any command and you would get uStatus=0x80250000.\r\n - what does this mean?\r\n\r\n\r\n\r\nChanges we made; (refer to the attache diff patch)\r\n - All the codes are now UTF-8 encoded on our end from Windows-1252 which causes issues.\r\n\r\n 1. bug fix : OpcUa_String is not initialized causing compile time error. \r\n OpenOpcUaClientSdk/OpenOpcUaClientLib/source/ClientApplication.cpp\r\n\r\n 2. Changes made to make the code 64 bit \r\n OpenOpcUaClientSdk/OpenOpcUaClientLib/include/SubscriptionClient.h\r\n OpenOpcUaClientSdk/OpenOpcUaClientLib/source/ClientSession.cpp\r\n OpenOpcUaClientSdk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp\r\n OpenOpcUaClientSdk/include/opcua/opcua_types.h\r\n OpenOpcUaCoreServer/include/UADataChangeNotification.h\r\n OpenOpcUaCoreServer/source/UADataChangeNotification.cpp\r\n\r\n 3. We\'ve made a couple of temporary fixes to resolve the issues described below. \r\n We\'d like to ask you to review and make revision as needed, since we\'re not absolutely sure of the cause or the mechanism leading up to the problems.\r\n \r\n= Deadlock condition\r\n CSubscriptionClient destructor may cause a deadlock and throw segment fault error. The situation leading to this is as follows:\r\n \r\n - CSubscriptionClient destructor calls StopMonitoredItemsNotificationThread function\r\n - CSubscriptionClient::StopMonitoredItemsNotificationThread locks m_MonitoredItemsNotificationListMutex and is waiting for m_hStopMonitoredItemsNotificationSem to be signaled\r\n - CSubscriptionClient::MonitoredItemsNotificationThread is waiting for m_MonitoredItemsNotificationListMutex, unable to signal m_hStopMonitoredItemsNotificationSem\r\n - m_hStopMonitoredItemsNotificationSem wait eventually times out unlocking m_MonitoredItemsNotificationListMutex and CSubscriptionClient destructor continue freeing data members\r\n - CleanMonitoredItemNotificationQueue called from MonitoredItemsNotificationThread causes segment fault error\r\n\r\n= pthread assertion failure or segment fault error\r\n When deleting subscription, the terminal client on linux intermittently crashes with pthread assertion failure or segment fault error. \r\n After some investigation, we think that it might be caused by deleting OpcUa_ThreadInternal related objects in OpcUa_Thread_Delete function before InternalThreadMain finishes. \r\n Thus, we inserted wait on ShutdownEvent semaphore temporarily to avoid using deleted objects.\r\n \r\n OpenOpcUaStackV1/source/opcua_thread.c\r\n OpenOpcUaClientLib/source/SubscriptionClient.cpp\r\n\r\n\r\nMerci and hope you are making meaningful progress on the segfault issue in session creating and subscription management.\r\n\r\n\r\nJason \r\n',NULL,NULL,5,1,7,4,333,4,'2018-02-13 11:20:30','2022-03-27 23:23:35','2018-02-13',100,NULL,NULL,241,1,2,0,'2022-03-27 23:23:35'),(242,1,57,'Unsupported type? (byteStringValue, StatusCodeValue)','The OpenOpcClient library look like doesn\'t support these types. \r\n\r\n1. byteStringValue\r\n2. StatusCodeValue\r\n\r\n\r\ncheck for these please\r\n\r\n\r\nreference ) \r\n 1. The function \"OpenOpcUa_VariantToString\" in the \"OpenOpcUaClientLib return \"0x80AB0000\"\r\n\r\n\r\n 2. OPC Server and tags \r\n OPCUA Server : opc.tcp://opcua.demo-this.com:51210/UA/SampleServer\r\n\r\n Tags : \r\n \"ns\":2, \"i\":10858 --> byteStringValue\r\n \"ns\":2, \"i\":10864 --> StatusCodeValue\r\n\r\n\r\nthank you!\r\n\r\nDavid Kwon.',NULL,NULL,1,NULL,4,NULL,335,0,'2018-02-13 11:22:08','2018-02-13 11:22:08','2018-02-13',0,NULL,NULL,242,1,2,0,NULL),(243,3,58,'[CHUBB][CSSI] Questions sur le modèle OPCUA','Bonjour Monsieur CONDEMINE,\r\n\r\nJe vous joins dans le fichier Excel quelques questions nous avons concernant le modèle OPCUA ADP.\r\n\r\nCordialement.\r\n\r\nSouley BOUBE.',NULL,NULL,5,1,5,NULL,348,2,'2018-02-16 10:15:14','2018-02-16 10:45:24','2018-02-16',0,NULL,NULL,243,1,2,0,'2018-02-16 10:45:24'),(244,3,58,'[CHUBB][CSSI] Gestion du R/W pour les variables en simulation ','Bonjour Mr CONDEMINE,\r\n\r\nDans le besoin CHUBB il est prévu un mode simulation qui permet de changer les variables OPC UA avec le client OPC UA\r\ntout en préemptant les données venant du réseau LON. Or ces variables sont pour la plupart de type readonly.\r\nExiste-il un mécanisme permettant de gérer le R/W des variables de type readonly pour la simulation?\r\n\r\nCordialement,\r\n\r\nSouley BOUBE.',NULL,NULL,2,1,5,NULL,348,2,'2018-02-16 10:36:38','2018-02-16 10:52:21','2018-02-16',90,NULL,NULL,244,1,2,0,NULL),(245,3,58,'[CHUBB][CSSI] Utilisation de la variable libellé sur le modèle ADP','Bonjour Mr CONDEMINE,\r\n\r\nPouvez-vous nous expliquer la différence d\'utilisation entre la variable LIBELLE et DisplayName?\r\n\r\nCordialement,\r\n',NULL,NULL,5,1,4,NULL,348,2,'2018-02-16 10:39:15','2018-03-08 16:22:32','2018-02-16',100,NULL,NULL,245,1,2,0,'2018-02-16 10:46:32'),(246,3,58,'[CHUBB][CSSI] Mise à jour fichiers NodeSet de types ADP','Bonjour Mr CONDEMINE,\r\n\r\nLes fichiers NodeSets des types ADP que nous avons actuellement correspondent à la version F01 du modèle ADP.\r\nOr nous devons travailler avec la version F02. Avez-vous prévu une mise à jour de ces fichiers?\r\n\r\nCordialement,\r\n\r\nSouley BOUBE',NULL,NULL,5,1,5,NULL,348,2,'2018-02-16 10:41:23','2018-03-08 16:20:07','2018-02-16',100,NULL,NULL,246,1,2,0,'2018-03-08 16:20:07'),(247,3,58,'[CHUBB][CSSI] Arborescence OPCUA et UGATYPE','Bonjour Mr CONDEMINE,\r\n\r\nDans l\'OPC-DA les ZA étaient nommées individuellement. Par exemple CSSI_ADP / UGA / UGA-C22 / ZA / AS-GAL / ALM_GEN. \r\nNormalement ne devrait - on pas retrouver ce type d\'arborescence avec OPC-UA ?( ref UGAType).\r\n\r\nCordialement,\r\n\r\nSouley BOUBE\r\n',NULL,NULL,5,1,5,NULL,348,2,'2018-02-16 10:44:17','2018-03-08 16:19:32','2018-02-16',100,NULL,NULL,247,1,2,0,'2018-03-08 16:19:32'),(248,1,57,'OpcUa_BadSessionIdInvalid happens','Michael\r\n\r\nI set the flag to OpcUa_True using OpenOpcUa_AutoConnectMecanismState\r\nAnd when i invoke the OpenOpcUa_CreateSubscription a few minutes after session is created, the OpcUa_BadSessionIdInvalid is returned.\r\n\r\nThanks, \r\nkyucheol',NULL,NULL,5,1,4,NULL,336,4,'2018-02-19 09:29:55','2018-03-03 14:56:09','2018-02-19',100,NULL,NULL,248,1,2,0,'2018-03-03 14:56:09'),(249,3,58,'Planification 3ème jour de formation','Bonjour M. Condemine,\r\n\r\nAvez-vous des disponibilités mi-mars pour planifier le 3ème jour de la formation ?\r\n\r\nEt en prévision de la planification du 4ème jour, êtes-vous disponible début avril ? \r\n\r\nCordialement,\r\nVivien Raynal',NULL,NULL,5,1,4,NULL,349,2,'2018-02-20 10:29:46','2018-02-27 13:31:41','2018-02-20',0,NULL,NULL,249,1,2,0,'2018-02-27 13:31:41'),(250,3,58,'Version OS pour OpenOpcUA','Bonjour M. Condemine,\r\n\r\nOpenOPCUA fonctionne-t-il sur Windows Server 2016 version standard ?\r\n\r\nJe pense pas qu\'il y ait de problème mais par mesure de sécurité, je préfère avoir votre avis sur le sujet.\r\n\r\nMerci par avance.\r\n\r\nCordialement,\r\nVivien RAYNAL ',NULL,NULL,5,1,4,NULL,349,2,'2018-02-21 11:15:46','2018-02-27 13:29:15','2018-02-21',100,NULL,NULL,250,1,2,0,'2018-02-27 13:29:15'),(251,1,57,'64bit support problem','Michael\r\n\r\nIt looks like the following code block is tied to 32-bit compilation. \r\nWe\'d like to make it work in 64-bit build but we\'re having trouble following the code. \r\nSo I\'d like to ask you to explain the logic behind the code so that we can port it to 64-bit.\r\n\r\nOpenOpcUaClientSdk\\OpenOpcUaClientLib\\source\\stdafx.cpp:319~392\r\n<pre>\r\nOpcUa_StatusCode InternalExtractString(void* pValue, OpcUa_String* pString)\r\n{\r\n OpcUa_StatusCode uStatus=OpcUa_Good;\r\n void* pVoidResult=malloc(12);\r\n if (pVoidResult)\r\n {\r\n ZeroMemory(pVoidResult, 12);\r\n // Duplicate a string\r\n if (pString)\r\n {\r\n OpcUa_String_Initialize(pString);\r\n#ifdef _DEBUG\r\n // copy flag\r\n OpcUa_MemCpy(pVoidResult, 4, pValue, 4);\r\n ((OpcUa_Byte*&)pVoidResult) += 4; // \r\n OpcUa_MemCpy(&(pString->flags), 2, pValue, 2);\r\n ((OpcUa_Byte*&)pValue) += 4; // The real size is 4 because a OpcUa_String is in fact an OpcUa_StringInternal\r\n // copy Length\r\n OpcUa_MemCpy(pVoidResult, 4, pValue, 4);\r\n ((OpcUa_Byte*&)pVoidResult) += 4; //\r\n OpcUa_MemCpy(&(pString->uLength), 4, pValue, 4);\r\n if (pString->uLength > 0)\r\n {\r\n pString->strContent = (OpcUa_CharA*)OpcUa_Alloc(pString->uLength + 1);\r\n ZeroMemory(pString->strContent, pString->uLength + 1);\r\n }\r\n // Copy the content\r\n ((OpcUa_Byte*&)pValue) += 4;\r\n void* apVoid = OpcUa_Null; // OpcUa_Alloc(4);\r\n memcpy(&apVoid, pValue, 4);\r\n if (pString->uLength > 0)\r\n {\r\n if (apVoid)\r\n OpcUa_MemCpy((pString->strContent), pString->uLength, ((void*)(apVoid)), pString->uLength);\r\n OpcUa_MemCpy(pVoidResult, 4, &(pString->strContent), 4);\r\n }\r\n // ici pString->strContent contient la valeur de la chaine. Les autres pointeurs ne servent qu\'a transporter\r\n#else\r\n // copy flag\r\n OpcUa_MemCpy(pVoidResult, 4, pValue, 4);\r\n ((OpcUa_Byte*&)pVoidResult) += 4; // \r\n OpcUa_MemCpy(&(pString->uReserved1), 2, pValue, 2);\r\n ((OpcUa_Byte*&)pValue) += 4; // The real size is 4 because a OpcUa_String is in fact an OpcUa_StringInternal\r\n // copy Length\r\n OpcUa_MemCpy(pVoidResult, 4, pValue, 4);\r\n ((OpcUa_Byte*&)pVoidResult) += 4; //\r\n OpcUa_MemCpy(&(pString->uReserved2), 4, pValue, 4);\r\n if (OpcUa_String_StrLen(pString) > 0)\r\n {\r\n pString->uReserved4 = (OpcUa_CharA*)OpcUa_Alloc(pString->uReserved2 + 1);\r\n ZeroMemory(pString->uReserved4, pString->uReserved2 + 1);\r\n }\r\n // Copy the content\r\n ((OpcUa_Byte*&)pValue) += 4;\r\n void* apVoid = OpcUa_Alloc(4);\r\n memcpy(&apVoid, pValue, 4);\r\n if (OpcUa_String_StrLen(pString) > 0)\r\n {\r\n OpcUa_MemCpy((pString->uReserved4), pString->uReserved2, ((void*)(apVoid)), pString->uReserved2);\r\n OpcUa_MemCpy(pVoidResult, 4, &(pString->uReserved4), 4);\r\n }\r\n#endif\r\n // Update the pointer\r\n ((OpcUa_Byte*&)(pVoidResult)) += 4; //\r\n ((OpcUa_Byte*&)(pValue)) += 4;\r\n }\r\n else\r\n uStatus = OpcUa_BadInvalidArgument;\r\n //free(pVoidResult);\r\n }\r\n else\r\n uStatus = OpcUa_BadOutOfMemory;\r\n return uStatus;\r\n}\r\n</pre>\r\n\r\nThanks, \r\nkyucheol','2018-03-06',NULL,5,1,6,4,336,9,'2018-02-22 07:00:09','2018-03-05 09:38:48','2018-02-22',100,NULL,NULL,251,1,2,0,'2018-03-05 09:38:48'),(252,1,56,'+sieurs adresses sur un node ne fonctionne pas','+sieurs adresses sur un node ne fonctionne pas',NULL,NULL,5,1,7,NULL,1,1,'2018-02-23 18:32:46','2018-04-10 21:34:05','2018-02-23',100,NULL,NULL,252,1,2,0,'2018-04-10 21:34:05'),(253,1,57,'1_5_0_3_RC02 : Code fixes to be reviewed and merged','Changes we made; (refer to the attache diff patch)\r\nand we checked the code using the valgrind memory tool.\r\n \r\n *Same pthread mutex crash as 1_5_0_2 version & memory leakage*\r\n Line 1: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/include/ClientSession.h OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/include/ClientSession.h\r\n Line 22: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/ClientSession.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/ClientSession.cpp\r\n Line 12: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/ClientApplication.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/ClientApplication.cpp\r\n Line 516: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/SubscriptionClient.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/SubscriptionClient.cpp\r\n \r\n *Deleted unused dangerous member variables and function. Deadlock condition* \r\n Line 4: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/include/MonitoredItemsNotification.h OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/include/MonitoredItemsNotification.h\r\n Line 104: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/MonitoredItemsNotification.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/MonitoredItemsNotification.cpp\r\n \r\n *Memory leakage, 64bit memory crash, Uninitialized OpcUa_String is causing runtime memory crash*\r\n Line 9: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/include/OpenOpcUaClientLib.h\r\n Line 121: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp\r\n Line 658: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/stdafx.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/stdafx.cpp\r\n \r\n \r\n *Memory leakage*\r\n Line 540: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/XmlElement.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/XmlElement.cpp\r\n Line 586: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/XmlParser.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/XmlParser.cpp\r\n Line 856: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaStackV1/source/opcua_p_utilities.c OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaStackV1/source/opcua_p_utilities.c\r\n Line 909: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaStackV1/source/opcua_thread.c OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaStackV1/source/opcua_thread.c\r\n \r\n *Create and ignore unnecessary threads, Uninitialized OpcUa_String is causing runtime memory crash*\r\n Line 804: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaSharedLib/source/Application.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaSharedLib/source/Application.cpp\r\n \r\n *Support 64bit*\r\n Line 784: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaClientSdk/include/opcua/opcua_p_types.h OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaClientSdk/include/opcua/opcua_p_types.h\r\n Line 819: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaSharedLib/source/Utils.cpp OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaSharedLib/source/Utils.cpp\r\n Line 920: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/include/OpenOpcUaClientSdk/OpenOpcUa_p_types.h OpenOpcUa_1_0_5_3_RC2_6_modified/include/OpenOpcUaClientSdk/OpenOpcUa_p_types.h\r\n Line 940: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/include/opcua/opcua_p_types.h OpenOpcUa_1_0_5_3_RC2_6_modified/include/opcua/opcua_p_types.h\r\n Line 836: diff -x \'*.txt\' -x \'*.cmake\' -x \'*.bak\' -r OpenOpcUa_1_0_5_3_RC2/OpenOpcUaStackV1/include/shared/opcua_p_types.h OpenOpcUa_1_0_5_3_RC2_6_modified/OpenOpcUaStackV1/include/shared/opcua_p_types.h\r\n',NULL,NULL,1,NULL,7,4,336,3,'2018-03-05 10:09:35','2018-03-06 05:59:03','2018-03-05',0,NULL,NULL,253,1,2,0,NULL),(254,3,57,'e need to support secure connection, NOT anonymous connection; we got to support secure connection at least using user id and password, preferably certificates along with detailed properties of the Server connected for convenience.','Hello,\r\nFirst i want to be sure that there are no confusion about secure connection in OPC UA. In OPC UA there 2 different level of connection.\r\n1- The secure channel \r\n2- Users connection\r\nWhich one do you want to use ?\r\nThe so called \"simplistic\" terminal client cover both of them.\r\nIn order to open a none secure \"SecureChannel\" or a secure channel you just have to use the same API with different parameters.\r\nuStatus = *OpenOpcUa_CreateSession*(m_hApplication, pEndpointDescriptionNone, 600000, aSessionName, &m_hSession);\r\nThis API will pass the client certificate to server. No matter the selected SecurityPolicy.\r\nTo create the second parameter, OpcUa_EndpointDescription, you can use :\r\n* \"http://opcfoundation.org/UA/SecurityPolicy#Basic128Rsa15\"\r\n* \"http://opcfoundation.org/UA/SecurityPolicy#Basic256\"\r\n* \"http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256\"\r\n\r\nAll of that according to the SecurityPolicy supported by the server you want to connect to.\r\n\r\nSo once the Session is created according to the SecurityPolicy you want. You need to activate the session.\r\n\r\nThe Flex client demonstrate clearly this in the method CProjectTreeWidget::OnActivateSession\r\n\r\nThis API use the following signature\r\nOpcUa_StatusCode OpenOpcUa_ActivateSession(\r\n OpcUa_Handle hApplication, \r\n OpcUa_Handle hSession, \r\n OpcUa_UserTokenType, \r\n OpcUa_String* pszPolicyId, \r\n OpcUa_String* pszEncryptionAlgorithm, \r\n OpcUa_String* pszUserName,\r\n OpcUa_ByteString* PasswordorCertificateData)\r\n\r\n\r\nMore detail in the attached document \r\n\r\nRegards\r\nMichel Condemine',NULL,NULL,2,333,4,NULL,1,0,'2018-03-05 10:44:44','2018-03-05 10:44:44','2018-03-05',0,NULL,NULL,254,1,2,0,NULL),(255,3,57,'Once securely connected, we need to provide tag discovery and/or browsing','Hello,\r\nThe Flex client demonstrate the browsing mecanism. But the Flex client browsing is very generic. I suppose you need someting more simple based on OpenOpcUa_BrowseEx.\r\nThe OpenOpcUaQuickClient shows it\r\nOpcUa_StatusCode CUABrowserDlg::Browse(OpcUa_NodeId aFromNodeId)\r\n{\r\n OpcUa_StatusCode uStatus=OpcUa_Good;\r\n OpcUa_Int32 iNoOfReferenceDescription=0;\r\n OpcUa_ReferenceDescription* pReferenceList=OpcUa_Null; \r\n // On commence par récupérer le hSession\r\n if (m_hSession)\r\n {\r\n // init Browse Description\r\n OpcUa_BrowseDescription* pNodesToBrowse=OpcUa_Null;\r\n OpcUa_Int32 a_nNoOfNodesToBrowse=1;\r\n pNodesToBrowse=(OpcUa_BrowseDescription*)OpcUa_Alloc((sizeof(OpcUa_BrowseDescription)*a_nNoOfNodesToBrowse));\r\n OpcUa_BrowseDescription_Initialize(&pNodesToBrowse[0]);\r\n pNodesToBrowse[0].BrowseDirection=(OpcUa_BrowseDirection)m_iBrowseDirection; \r\n pNodesToBrowse[0].IncludeSubtypes=TRUE;\r\n pNodesToBrowse[0].NodeClassMask=m_NodeClassMask; //\r\n pNodesToBrowse[0].ResultMask=OpcUa_BrowseResultMask_All;\r\n // On browse a partir de aFromNodeId\r\n if (aFromNodeId.IdentifierType==OpcUa_IdentifierType_Numeric)\r\n pNodesToBrowse[0].NodeId.Identifier.Numeric=aFromNodeId.Identifier.Numeric;// OpcUaId_ObjectsFolder;\r\n else\r\n {\r\n if (aFromNodeId.IdentifierType==OpcUa_IdentifierType_String)\r\n OpcUa_String_StrnCpy(&(pNodesToBrowse[0].NodeId.Identifier.String),\r\n &(aFromNodeId.Identifier.String),\r\n OpcUa_String_StrLen(&(aFromNodeId.Identifier.String)) );\r\n }\r\n pNodesToBrowse[0].NodeId.IdentifierType=aFromNodeId.IdentifierType;//OpcUa_IdentifierType_Numeric;\r\n pNodesToBrowse[0].NodeId.NamespaceIndex=aFromNodeId.NamespaceIndex;// 0;\r\n\r\n OpcUa_NodeId_Initialize(&(pNodesToBrowse[0].ReferenceTypeId));\r\n pNodesToBrowse[0].ReferenceTypeId.IdentifierType=OpcUa_IdentifierType_Numeric;\r\n pNodesToBrowse[0].ReferenceTypeId.NamespaceIndex=0;\r\n pNodesToBrowse[0].ReferenceTypeId.Identifier.Numeric=OpcUaId_HierarchicalReferences; //OpcUaId_References;\r\n uStatus=OpenOpcUa_Browse(m_hApplication,m_hSession,a_nNoOfNodesToBrowse,pNodesToBrowse,&iNoOfReferenceDescription,&pReferenceList);\r\n if(uStatus==OpcUa_Good)\r\n {\r\n CString message;\r\n message.Format(L\"OpenOpcUa_Browse succeed\");\r\n \r\n // Let\'s clear the selected node\r\n // Only if we got answers\r\n if (iNoOfReferenceDescription)\r\n {\r\n HTREEITEM hCurrentItem=m_ReferencesTreeCtrl.GetSelectedItem();\r\n OpcUa_NodeId* aNewNodeId=(OpcUa_NodeId*)m_ReferencesTreeCtrl.GetItemData(hCurrentItem);\r\n if (aNewNodeId)\r\n {\r\n HTREEITEM hChildItem=m_ReferencesTreeCtrl.GetChildItem(hCurrentItem);\r\n while (hChildItem)\r\n {\r\n m_ReferencesTreeCtrl.DeleteItem(hChildItem);\r\n hChildItem=m_ReferencesTreeCtrl.GetChildItem(hCurrentItem);\r\n }\r\n }\r\n USES_CONVERSION;\r\n std::vector<OpcUa_ReferenceDescription> aReferenceList;\r\n for (OpcUa_Int32 ii=0;ii<iNoOfReferenceDescription;ii++)\r\n {\r\n\r\n OpcUa_Boolean bFound=OpcUa_False;\r\n if (!bFound)\r\n {\r\n aReferenceList.push_back(pReferenceList[ii]);\r\n short sImage=0;\r\n OpcUa_NodeId pDataType;\r\n OpcUa_NodeId_Initialize(&pDataType);\r\n OpenOpcUa_GetUAVariableDatatype(m_hApplication, m_hSession, pReferenceList[ii].NodeId.NodeId, &pDataType);\r\n if ((pDataType.IdentifierType == OpcUa_IdentifierType_Numeric) && (pDataType.Identifier.Numeric > 0))\r\n GetDatatypeIcon(pDataType, &sImage);\r\n else\r\n GetNodeClassIcon(pReferenceList[ii].NodeClass, &sImage);\r\n // let use only the NodeClass\r\n {\r\n HTREEITEM hNewItem=m_ReferencesTreeCtrl.InsertItem(A2W(OpcUa_String_GetRawString(&pReferenceList[ii].DisplayName.Text)),sImage,sImage,hCurrentItem);\r\n OpcUa_NodeId* pNodeId=(OpcUa_NodeId*)OpcUa_Alloc(sizeof(OpcUa_NodeId));\r\n OpcUa_NodeId_Initialize(pNodeId);\r\n OpcUa_NodeId_CopyTo(&(pReferenceList[ii].NodeId.NodeId),pNodeId);\r\n m_ReferencesTreeCtrl.SetItemData(hNewItem,(DWORD_PTR)pNodeId);\r\n }\r\n }\r\n }\r\n // Free ressources OpcUa_ReferenceDescription\r\n for (OpcUa_UInt32 iii=0;iii<aReferenceList.size();iii++)\r\n {\r\n OpcUa_ReferenceDescription aReferenceDescription=aReferenceList.at(iii);\r\n OpcUa_ReferenceDescription_Clear( &aReferenceDescription);\r\n }\r\n OpcUa_Free(pReferenceList);\r\n pReferenceList=OpcUa_Null;\r\n }\r\n }\r\n OpcUa_Free(pNodesToBrowse);\r\n }\r\n if (pReferenceList)\r\n OpcUa_Free(pReferenceList) ;\r\n return uStatus;\r\n}\r\n\r\nRegards\r\nMichel Condemine',NULL,NULL,2,333,4,NULL,1,1,'2018-03-05 10:55:06','2018-03-05 22:44:56','2018-03-05',0,NULL,NULL,255,1,2,0,NULL),(256,3,57,'Once tags are browsed, we need to display tag attributes, data type to name one for instance of the tags so that user could decide which tag to read/write and subscribe.','Hello Again the Quick Client demonstrate this.\r\nAttached a screenshop of the quickClient. Unfortunatly this is a MFC client. Below the DisplayAttribute Method\r\nHRESULT CUABrowserDlg::DisplayAttributes(OpcUa_NodeId* sourceNodeId)\r\n{\r\n HRESULT hr=S_OK;\r\n OpcUa_StatusCode uStatus;\r\n OpcUa_DataValue* pResults=OpcUa_Null;\r\n OpcUa_ReadValueId* pNodesToRead=OpcUa_Null;\r\n OpcUa_Int32 iNodNodesToRead=0;\r\n //int iCurrentAttributeId;\r\n OpcUa_NodeId aNodeId;\r\n OpcUa_NodeId_Initialize(&aNodeId);\r\n // Reset the Datatype of the current selected sourceNodeId\r\n m_iCurrentDataType=0;\r\n // compute the nuùmber of attribute to read on the server\r\n iNodNodesToRead=(OpcUa_Attributes_UserExecutable-OpcUa_Attributes_NodeId)+1;\r\n // Allocate and prepare the attribute to read\r\n pNodesToRead=(OpcUa_ReadValueId*)OpcUa_Alloc((OpcUa_Attributes_UserExecutable+1)*sizeof(OpcUa_ReadValueId));\r\n for (OpcUa_Int32 ii = 0;ii<=OpcUa_Attributes_UserExecutable-1;ii++)\r\n {\r\n OpcUa_ReadValueId_Initialize(&pNodesToRead[ii]);\r\n pNodesToRead[ii].AttributeId=ii+1;\r\n OpcUa_NodeId_Initialize(&(pNodesToRead[ii].NodeId));\r\n OpcUa_NodeId_CopyTo(sourceNodeId,&(pNodesToRead[ii].NodeId));\r\n }\r\n // Call the OpenOpcUaClientLib (make the read)\r\n uStatus=OpenOpcUa_ReadAttributes(m_hApplication,\r\n m_hSession,\r\n OpcUa_TimestampsToReturn_Both,\r\n iNodNodesToRead,\r\n pNodesToRead,\r\n &pResults);\r\n if (uStatus==OpcUa_Good)\r\n {\r\n // Show the attributes in the dialogBox\r\n for (OpcUa_Int32 iii = 0;iii<=OpcUa_Attributes_UserExecutable-1;iii++)\r\n {\r\n OpcUa_String* szAttributeName=OpcUa_Null;\r\n OpcUa_String* szAttributeDescription=OpcUa_Null;\r\n OpcUa_String* szBuiltInTypeName=OpcUa_Null;\r\n OpcUa_String* szBuiltInTypeDescription=OpcUa_Null;\r\n if (pResults[iii].Value.Datatype!=0)\r\n {\r\n // will update the datatype of the current sourceNodeId\r\n if (pNodesToRead[iii].AttributeId==OpcUa_Attributes_DataType)\r\n {\r\n // The datatype must be in a NodeId\r\n if ( (pResults[iii].Value.Value.NodeId->IdentifierType==OpcUa_IdentifierType_Numeric) && (pResults[iii].Value.Datatype==OpcUaType_NodeId))\r\n m_iCurrentDataType=pResults[iii].Value.Value.NodeId->Identifier.Numeric;\r\n }\r\n uStatus=OpenOpcUa_GetAttributeDetails(pNodesToRead[iii].AttributeId,&szAttributeName,&szAttributeDescription);//pNodesToRead[iii].AttributeId\r\n if (uStatus==OpcUa_Good)\r\n {\r\n //\r\n int iIndex=m_NodeAttributesCtrl.GetItemCount();\r\n // insertion du nom de l\'attribut\r\n int iItem=m_NodeAttributesCtrl.InsertItem(iIndex,CString(OpcUa_String_GetRawString(szAttributeName)));\r\n m_NodeAttributesCtrl.SetColumnWidth(ATTRIBUTE_NAME_COLUMN,LVSCW_AUTOSIZE);\r\n // Attribut Type\r\n uStatus=OpenOpcUa_GetBuiltInTypeDetails(pResults[iii].Value.Datatype,&szBuiltInTypeName,&szBuiltInTypeDescription);\r\n if (uStatus==OpcUa_Good)\r\n {\r\n m_NodeAttributesCtrl.SetItem(iItem,\r\n ATTRIBUTE_TYPE_COLUMN,\r\n LVIF_TEXT,\r\n CString(OpcUa_String_GetRawString(szBuiltInTypeDescription)),\r\n 0,0,0,0); \r\n m_NodeAttributesCtrl.SetColumnWidth(ATTRIBUTE_TYPE_COLUMN,LVSCW_AUTOSIZE);\r\n }\r\n // Value\r\n if (pNodesToRead[iii].AttributeId != OpcUa_Attributes_NodeClass)\r\n {\r\n if (pNodesToRead[iii].AttributeId == OpcUa_Attributes_AccessLevel)\r\n {\r\n OpcUa_String* szAccessLevel = OpcUa_Null;\r\n uStatus = OpenOpcUa_GetAccessLevel(pResults[iii].Value.Value.Byte, &szAccessLevel);\r\n if (uStatus == OpcUa_Good)\r\n {\r\n m_NodeAttributesCtrl.SetItem(iItem, ATTRIBUTE_VALUE_COLUMN, LVIF_TEXT, CString(OpcUa_String_GetRawString(szAccessLevel)), 0, 0, 0, 0);\r\n OpcUa_String_Clear(szAccessLevel);\r\n OpcUa_Free(szAccessLevel);\r\n }\r\n }\r\n else\r\n {\r\n if (pNodesToRead[iii].AttributeId == OpcUa_Attributes_UserAccessLevel)\r\n {\r\n OpcUa_String* szUserAccessLevel = OpcUa_Null;\r\n uStatus = OpenOpcUa_GetUserAccessLevel(pResults[iii].Value.Value.Byte, &szUserAccessLevel);\r\n if (uStatus == OpcUa_Good)\r\n {\r\n m_NodeAttributesCtrl.SetItem(iItem, ATTRIBUTE_VALUE_COLUMN, LVIF_TEXT, CString(OpcUa_String_GetRawString(szUserAccessLevel)), 0, 0, 0, 0);\r\n OpcUa_String_Clear(szUserAccessLevel);\r\n OpcUa_Free(szUserAccessLevel);\r\n }\r\n }\r\n else\r\n {\r\n OpcUa_String* strValue = OpcUa_Null;// (OpcUa_String*)OpcUa_Alloc(sizeof(OpcUa_String));\r\n OpcUa_Handle hSession = OpcUa_Null;\r\n\r\n uStatus = OpenOpcUa_VariantToString(m_hApplication,hSession,pResults[iii].Value, &strValue);\r\n m_NodeAttributesCtrl.SetItem(iItem, ATTRIBUTE_VALUE_COLUMN, LVIF_TEXT, CString(OpcUa_String_GetRawString(strValue)), 0, 0, 0, 0);\r\n OpcUa_String_Clear(strValue);\r\n }\r\n }\r\n }\r\n else\r\n {\r\n OpcUa_String* szNodeClassName = OpcUa_Null;\r\n uStatus = OpenOpcUa_GetNodeClassDetails(pResults[iii].Value.Value.Int32, &szNodeClassName);\r\n if (uStatus == OpcUa_Good)\r\n {\r\n m_NodeAttributesCtrl.SetItem(iItem, ATTRIBUTE_VALUE_COLUMN, LVIF_TEXT, CString(OpcUa_String_GetRawString(szNodeClassName)), 0, 0, 0, 0);\r\n OpcUa_String_Clear(szNodeClassName);\r\n OpcUa_Free(szNodeClassName);\r\n }\r\n }\r\n m_NodeAttributesCtrl.SetColumnWidth(ATTRIBUTE_VALUE_COLUMN,LVSCW_AUTOSIZE);\r\n // release allocated ressources\r\n OpcUa_String_Clear(szAttributeName);\r\n OpcUa_Free(szAttributeName);\r\n OpcUa_String_Clear(szAttributeDescription);\r\n OpcUa_Free(szAttributeDescription);\r\n OpcUa_String_Clear(szBuiltInTypeName);\r\n OpcUa_Free(szBuiltInTypeName);\r\n OpcUa_String_Clear(szBuiltInTypeDescription);\r\n OpcUa_Free(szBuiltInTypeDescription);\r\n }\r\n }\r\n \r\n }\r\n OpcUa_Free(pResults);\r\n }\r\n for (OpcUa_Int32 ii = 0;ii<=OpcUa_Attributes_UserExecutable-1;ii++)\r\n OpcUa_ReadValueId_Clear(&pNodesToRead[ii]);\r\n OpcUa_Free(pNodesToRead);\r\n return hr;\r\n}\r\n\r\nRegards\r\nMichel Condemine',NULL,NULL,2,333,4,NULL,1,7,'2018-03-05 11:15:31','2018-03-06 09:41:29','2018-03-05',0,NULL,NULL,256,1,2,0,NULL),(257,3,57,'persisting configurations for user convenience','For persistance you can use \r\nOpcUa_StatusCode OpenOpcUa_SaveConfig(OpcUa_Handle hApplication, OpcUa_String szConfigFileName); This function save the configuration in an XML file according to the schema OpenOpcUaClientConfig.xsd (see attached document)\r\nOpcUa_StatusCode OpenOpcUa_LoadConfig(OpcUa_Handle hApplication, OpcUa_String szConfigFileName); Can be use to restore ther configuration\r\n\r\nRegards\r\nMichel Condemine',NULL,NULL,1,333,4,NULL,1,0,'2018-03-05 11:19:58','2018-03-05 11:19:58','2018-03-05',0,NULL,NULL,257,1,2,0,NULL),(258,1,56,'VARIABLES: ALD / ALM_RSTR / ACTIF / MS','Problème lié à l\'adresse qui est enregistré avec l\'Event Log Data.\r\nEn effet, lorsque le fait générateur provient d\'une autre centrale (ECS ou UAE), l\'adresse générée ne correspond plus à l\'adresse configurée dans le fichier subsystem.\r\nExemple pour l\'ALD, c\'est le n° de la zone de détection qui est enregistré et non le n° de la zone de sécurité.\r\n\r\n\r\n',NULL,NULL,5,1,5,NULL,328,3,'2018-03-05 18:16:12','2019-05-06 18:07:37','2018-03-05',100,NULL,NULL,258,1,2,0,'2019-05-06 18:07:37'),(259,1,56,'MISE EN/HORS SERVICE DE LA LIAISON LOGICIELLE VERS UNE CENTRALE VIA INTERFACE DE CONFIGURATION','',NULL,NULL,5,1,5,NULL,328,4,'2018-03-05 18:18:30','2019-05-06 18:06:26','2018-03-05',100,NULL,NULL,259,1,2,0,'2019-05-06 18:06:26'),(260,1,56,'Interface de configuration à simplifier/automatiser','',NULL,NULL,5,1,4,NULL,328,2,'2018-03-05 18:20:42','2019-05-06 18:01:24','2018-03-05',90,NULL,NULL,260,1,2,0,'2019-05-06 18:01:24'),(261,1,56,'Variable ECS.ELT.ALM à maintenir à True jusqu\'au réarmement','',NULL,NULL,5,1,7,110,328,8,'2018-03-05 18:22:40','2020-02-21 18:26:32','2018-03-05',100,NULL,NULL,261,1,2,0,'2020-02-21 18:26:32'),(262,1,56,'Retour à False des variables DFT_POS_SECU / POS_SECU / POS_ATT / DFT_POS_ATT ','Terminer le retour à False des variables (hard-coder pour la recette usine)',NULL,NULL,5,1,4,NULL,328,2,'2018-03-05 18:27:11','2018-04-10 23:05:32','2018-03-05',100,NULL,NULL,262,1,2,0,'2018-04-10 23:05:32'),(263,3,57,'OpenOpcUa_CreateSubscription parameters infomation','Michel\r\n\r\nI want to know more about OpenOpcUa_CreateSubscription parameters including explanation in detail and how different values affect the operation.\r\n\r\n<pre>\r\n OpcUa_StatusCode OpenOpcUa_CreateSubscription(OpcUa_Handle hApplication,\r\n OpcUa_Handle hSession,\r\n OpcUa_Double* dblPublishingInterval, // In/Out param\r\n OpcUa_UInt32* uiLifetimeCount, // In/Out param\r\n OpcUa_UInt32* uiMaxKeepAliveCount,// In/Out param\r\n OpcUa_UInt32 uiMaxNotificationsPerPublish,\r\n OpcUa_Boolean bPublishingEnabled,\r\n OpcUa_Byte aPriority,\r\n OpcUa_Handle* hSubscription);\r\n</pre>\r\n\r\nRegards\r\nkyucheol',NULL,NULL,5,NULL,6,NULL,336,5,'2018-03-06 11:07:37','2018-03-19 23:40:23','2018-03-06',100,NULL,NULL,263,1,2,0,'2018-03-19 23:40:23'),(264,1,52,'Problème Type P2 - FinSecure','Bonjour,\r\nAvec FinSecure nous avons au moins deux problèmes\r\n1- Encore beaucoup de type sont exprimés sous forme de chaine (problème mineur)\r\n2- Lors de l\'aspiration l\'harmonisateur s\'attend à trouver les uri existantes au même index dans tous les serveurs.\r\nExemple : http://adp.fr/cmsitype est à l\'index 3 sur les simulateurs et sur l\'harmonisateur mais à l\'index 5 chez FinSecure.\r\nCe problème est récurent pour l\'ensemble des uri. Je vais essayer de régler le problème a partir de l\'harmonisateur et vous tiens au courant.\r\n\r\nBien Cordialement\r\nMichel Condemine\r\n\r\n',NULL,NULL,5,1,6,NULL,1,1,'2018-03-06 13:37:56','2018-04-13 00:27:30','2018-03-06',100,NULL,NULL,264,1,2,0,'2018-04-13 00:27:30'),(265,3,57,'Siemens Opaque Item from Siemens OPC UA Server ','Good morning Michel,\r\n\r\nI was wondering if you are familiar with the \"opaque data type\";\r\nit seems like it is referring to the Siemens OPC UA data type of \"binary data blobs\" holding more complex data type structure.\r\n\r\nSomeone mentioned it today and I was wondering if you have encountered this type in the field.\r\n\r\nMerci,\r\n\r\nJason ',NULL,NULL,2,333,4,NULL,333,4,'2018-03-06 22:45:02','2018-03-13 07:51:00','2018-03-06',0,NULL,NULL,265,1,2,0,NULL),(266,3,54,'Use semantique','Bonjour,\r\nje ne comprends pas la sémantique entre Model et les instances ConfigurationType et DeviceType.\r\nPourriez vous m\'expliquer ?\r\nJ\'ai par ailleurs posté la démo dans la section FILE.\r\nMerci de me faire vos remarques\r\n\r\nCordialement\r\nMichel',NULL,NULL,2,331,4,NULL,1,3,'2018-03-07 18:12:13','2018-05-02 15:23:50','2018-03-07',0,NULL,NULL,266,1,2,0,NULL),(267,1,52,'Absence de réaction de l\'harmonisateur à demande du client UAE','Ce point peut rejoindre le phénomène déjà observé mais comme je sais reproduire j\'explique en vu d\'une facilitation à la correction.\r\n\r\nPrincipe simplifié: Une ALD =1 dans SIMU P2 doit provoquer un événement chez le client UAE. En retour via le client UAE je monte CMD_MS_UAE = 1\r\n\r\nProblème: quand je vérifie via UA expert le CMD_MS_UAE dans l\'harmonisateur et dans le SIMU P2 ne passe pas à 1.\r\nSi je recommence la même manipulation en étant déjà abonné via UA expert, j\'ai immédiatement le bon fonctionnement.\r\n\r\nCeci ressemble étrangement à un sujet déjà rencontré où on a l\'impression que le mécanisme de l\'harmonisateur ne se déclenche pas par la sollicitation du client UAE si on a pas déjà eu un abonnement via UA expert. \r\n\r\nNous n\'aurions pas la bonne remontée dans tous les cas je dirai que l\'on pourrait être sur du 50%/50% sur le lieu du bug (client ou harmo) mais là je suis sur du 95% côté Harmo et ça nous bloque de plus en plus pour tester les fonctionnalités UAE. \r\n\r\nJ\'espère que ce cas concret va te donner la piste \r\n\r\n\r\n \r\n',NULL,NULL,5,1,6,NULL,345,2,'2018-03-09 10:55:15','2018-04-13 00:38:05','2018-03-09',100,NULL,NULL,267,1,2,0,'2018-04-13 00:26:58'),(268,1,58,'Validation du schema XSD des fichiers de types ADP','Monsieur Condemine,\r\n\r\nNous rencontrons les erreurs suivantes sur les fichiers XML de l\'ANNEXE 1 F03 :\r\n\r\n*Opc.Ua.NodeSet2.CMSIType.xml*\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n\r\n*Opc.Ua.NodeSet2.ECSType.xml*\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n\r\n*Opc.Ua.NodeSet2.FMSIType.xml*\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'IsAbstract\': The attribute \'IsAbstract\' is not allowed.\r\n\r\n*Opc.Ua.NodeSet2.UGAType.xml*\r\n* ERROR: Element \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}UAObject\', attribute \'EventNotifier\': \'false\' is not a valid value of the atomic type \'{http://opcfoundation.org/UA/2011/03/UANodeSet.xsd}EventNotifier\'.\r\n\r\nCes erreurs rendent notre configurateur inutilisable, comment peut-on procéder ? \r\n1 - Modification des fichiers XML et le cas échéant avez-vous prévu de nous transmettre une nouvelle version de ces fichiers qui corrige ces erreurs \r\n2 - modification du fichier XSD (UANodeSet.xsd)\r\n',NULL,NULL,5,1,5,NULL,349,2,'2018-03-09 14:19:20','2018-03-09 14:56:27','2018-03-09',0,NULL,NULL,268,1,2,0,'2018-03-09 14:56:27'),(269,1,53,'Export XMI','Bonjour,\r\nlors de l\'export XMI l\'ensemble des objets présents dans l\'arbre de confinement sont exportés. Ils sont par conséquent ajoutés aux fichiers de configuration génerés par XmiToNodeSet.\r\nEst ce que tu pourrais ne conserver que les objets pertinents dans le contexte d\'un projet concerné.\r\nPar exemple il faut supprimer Axes, AngleType du projet batteryCharger.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,318,7,NULL,1,4,'2018-03-09 14:19:46','2018-04-05 10:54:25','2018-03-09',100,NULL,NULL,269,1,2,0,'2018-04-05 10:54:25'),(270,1,49,'ProjectFolder pour VpiUaClient XP en service','Le fichier de log du client UA est créé dans C:\\Windows\\System32\\ alors qu\'il devrait être dans le ProjectFolder',NULL,NULL,5,1,4,NULL,254,1,'2018-03-14 21:57:53','2018-04-26 14:07:44','2018-03-14',100,NULL,NULL,270,1,2,0,'2018-04-26 14:07:44'),(271,1,49,'VpiUaClient Xp fichier de configuration du client UA','Dans le fichier .dat, il n\'est pas possible de donner un chemin complet pour le fichier de configuration du client Ua.',NULL,NULL,5,1,4,NULL,254,2,'2018-03-14 22:02:46','2018-05-04 15:43:35','2018-03-14',100,NULL,NULL,271,1,2,0,'2018-05-04 15:43:35'),(272,3,57,'Events/Alarms and Historians','Hi Michel,\r\n\r\nWe are now trying to implement the \"events/alarms\" on our client.\r\nCan you point us where in the client lib to look for APIs/samples for this?\r\nWe can\'t seem to find anything yet regarding events/alarms.\r\n\r\nWe also need to access historians.\r\nHow could we do this?\r\n\r\nMerci,\r\n\r\nJason\r\n\r\n',NULL,NULL,4,1,4,NULL,333,1,'2018-03-19 02:17:12','2018-03-19 23:36:11','2018-03-19',0,NULL,NULL,272,1,2,0,NULL),(273,3,57,'Example for \"command\" calling','Hi Michel\r\n\r\nWe also need some help/guidance for the followings features;\r\n\r\n- How to discover (browse) OPC servers on a network,\r\n- How to call a method or multiple methods.\r\n\r\nAny tutorial or sample code based on your client lib would be welcome.\r\n\r\nMerci,\r\n\r\nJason \r\n',NULL,NULL,5,NULL,4,NULL,333,2,'2018-03-19 02:56:37','2018-03-20 02:43:17','2018-03-19',90,NULL,NULL,273,1,2,0,'2018-03-19 23:39:46'),(274,3,57,'RE: Accessing and decoding Enumberation and QualifiedName data type correctly','Hi Michel,\r\n\r\nAnother question we ran into over the past several days;\r\nCan you show us how to correclty access and decode the Enumberation and QualifiedName data type?\r\nWe have tested out using other OPC UA Server and clients and found some differences in representations.\r\n\r\nWe need to correctly recognize those data types and to decode/parse out the values from those data types.\r\n\r\nYour immediate attention to this would be much appreciated,\r\n\r\nMerci,\r\n\r\nJason \r\n ',NULL,NULL,3,1,7,NULL,333,4,'2018-03-19 07:43:50','2018-09-21 11:50:37','2018-03-19',100,NULL,NULL,274,1,2,0,'2018-09-21 11:50:37'),(275,3,57,'RE: Accessing and decoding Enumberation and QualifiedName data type correctly','Hi Michel,\r\n\r\nAnother question we ran into over the past several days;\r\nCan you show us how to correclty access and decode the Enumberation and QualifiedName data type?\r\nWe have tested out using other OPC UA Server and clients and found some differences in representations.\r\n\r\nWe need to correctly recognize those data types and to decode/parse out the values from those data types.\r\n\r\nYour immediate attention to this would be much appreciated,\r\n\r\nMerci,\r\n\r\nJason \r\n ',NULL,NULL,5,NULL,7,NULL,333,1,'2018-03-19 07:43:51','2018-03-19 23:44:36','2018-03-19',100,NULL,NULL,275,1,2,0,'2018-03-19 23:44:36'),(276,1,60,'OpenOpcUaConfigManager impossible de charger les fichiers nodeset dans des sous répertoires','Bonjour,\r\n\r\nJ\'ai segmenté la configuration de notre serveur Opc en sous-répertoires pour trier les fichiers NodeSet.\r\n <FileNodeSet FullFileName=\"D:\\tmp\\OPCUA-Configuration\\NodeSetBase\\Opc.Ua.NodeSet2.Part3.xml\"></FileNodeSet>\r\n <FileNodeSet FullFileName=\"D:\\tmp\\OPCUA-Configuration\\NodeSetBase\\Opc.Ua.NodeSet2.Part4.xml\"></FileNodeSet>\r\n <FileNodeSet FullFileName=\"D:\\tmp\\OPCUA-Configuration\\NodeSetBase\\Opc.Ua.NodeSet2.Part5.xml\"></FileNodeSet>\r\n <FileNodeSet FullFileName=\"D:\\tmp\\OPCUA-Configuration\\NodeSetBase\\Opc.Ua.NodeSet2.Part8.xml\"></FileNodeSet>\r\n <FileNodeSet FullFileName=\"D:\\tmp\\OPCUA-Configuration\\NodeSet2Types\\Opc.Ua.NodeSet2.CFPTypes.xml\"></FileNodeSet>\r\n <FileNodeSet FullFileName=\"D:\\tmp\\OPCUA-Configuration\\NodeSet2CPFInstances\\Opc.Ua.NodeSet2.CPF_L04.xml\"></FileNodeSet>\r\n <FileNodeSet FullFileName=\"D:\\tmp\\OPCUA-Configuration\\NodeSet2CPFInstances\\Opc.Ua.NodeSet2.CPF1.xml\"></FileNodeSet>\r\n\r\nCela fonctionne très bien sous Linux avec le serveur (avec chemin relatif ./NodeSetBase/...) mais ne fonctionne pas dans le configuration manager sous Windows. Je suis obligé de mettre tous les fichiers nodeset dans le même répertoire que le fichier projet. Les chemins relatif sous Windows ne semble pas fonctionner non-plus (a vérifier).\r\n\r\nVoir ci-joint la configuration.\r\n\r\nCordialement\r\n',NULL,NULL,1,1,4,NULL,353,1,'2018-03-19 11:30:51','2018-03-19 11:32:57','2018-03-19',0,NULL,NULL,276,1,2,0,NULL),(277,3,60,'Comment créer des arguments aux méthodes','Bonjour,\r\n\r\nJe ne sais pas comment créer des arguments aux méthodes, pouvez-vous me fournir un exemple en xml ?\r\nJe ne comprend pas comment faire non plus avec le ConfigManager...\r\nJe crois que nous n\'avons pas abordé le sujet en formation ou j\'ai oublié.\r\n\r\nMerci.',NULL,NULL,5,1,6,NULL,353,1,'2018-03-19 15:06:04','2018-03-23 14:07:57','2018-03-19',100,NULL,NULL,277,1,2,0,'2018-03-23 14:07:57'),(278,3,54,'OPC Assistance - ServerStatus','Bonjour Michel,\r\n\r\nNous avons de nouvelles questions concernant l\'OPC via notre client. Il se trouve qu\'il rencontre une erreur par rapport à la valeur maximale de l\'item SecondsTillShutdown (ci-joint les mails explicatifs du problème).\r\nIls souhaiteraient modifier cette valeur puisqu\'elle semble leur poser problème mais ne peuvent pas puisqu\'elle est en ReadOnly il me semble.\r\nDu coup, comment est fixée cette valeur ? Est-ce qu\'elle est censée être au maximum et ne pas évoluer ? Est-ce qu\'ils ont vraiment besoin de modifier cette valeur ? \r\n\r\nCordialement.\r\n\r\nMargaux',NULL,NULL,5,1,4,NULL,331,1,'2018-03-20 10:08:25','2018-04-04 13:48:14','2018-03-20',100,NULL,NULL,278,1,2,0,'2018-04-04 13:48:14'),(279,2,49,'MultiCore','Bonjour Anthony,\r\nJ\'ai supprimé la propogation des changemnts entre deux Vpi. Elle provoque un disfonctionnement à différent niveau dans le serveur et les VPI.\r\nJe vais poster une mise a jour cette AM du VpiModbus et du serveur.\r\n\r\nCordialement\r\nMichel ',NULL,NULL,1,254,4,NULL,1,0,'2018-03-21 15:02:58','2018-03-21 15:02:58','2018-03-21',0,NULL,NULL,279,1,2,0,NULL),(280,1,49,'OpenOpcUaCoreServer installé en service ne répond pas toujours en XP','Lorsque le service se lance, parfois le serveur ne répond pas.\r\nIl est impossible de se connecter dessus avec UAExpert par exemple alors qu\'il est bien présent dans les proccess.\r\nLe seul moyen est de le tuer dans le gestionnaire de proccess et de le redémarrer.',NULL,NULL,5,1,4,NULL,254,1,'2018-03-21 18:58:47','2018-05-04 15:44:34','2018-03-21',100,NULL,NULL,280,1,2,0,'2018-05-04 15:44:34'),(281,1,49,'VPI Modbus DeviceState ','Avec le VPI Modbus en Xp, le device state reste à la valeur Good même si on débranche la connexion avec le PLC Modbus.',NULL,NULL,5,1,4,NULL,254,2,'2018-03-28 14:39:19','2018-04-18 16:06:29','2018-03-28',100,NULL,NULL,281,1,2,0,'2018-04-18 16:06:29'),(282,1,49,'VPI UA Client sur XP en service : Problème au démarrage du service','Lors du démarrage du service avec un VPI UA Client, il y a un problème avec les données en Read/Write.\r\nLes données du serveur graine sont écrasées par des 0 puis reviennent puis de nouveau écrasées par des zéro .... cette séquence se passe plusieurs fois pendant environ 1 minute puis se stabilise mais soit avec la valeur du serveur graine soit avec le 0.\r\nLa vidéo montre le phénomène.\r\n',NULL,NULL,5,1,5,NULL,254,1,'2018-03-30 10:34:40','2018-04-18 16:06:09','2018-03-30',100,NULL,NULL,282,1,2,0,'2018-04-18 16:06:09'),(283,1,49,'Vpi Modbus : Orphan block','Le vpi modbus en version XP log des orphan block alors que dans wireshark les traces sont correctes.\r\n\r\nDans le log on voit les morceaux de la trame modbus.\r\n',NULL,NULL,1,1,4,NULL,254,0,'2018-04-03 15:58:55','2018-04-03 15:58:55','2018-04-03',0,NULL,NULL,283,1,2,0,NULL),(284,1,60,'Instabilité Server 1.0.5 RC2 en 64 bits','Bonjour,\r\nCi-joint la configuration avec laquelle le serveur plante en 64 bits sous Windows et Linux lors de l\'appel de methodes.\r\nCette configuration fonctionne avec la version 32 bits du serveur.\r\nMerci.\r\nCordialement.\r\nF. TOURRET',NULL,NULL,6,1,4,NULL,353,2,'2018-04-05 09:32:44','2019-04-15 14:16:40','2018-04-05',0,NULL,NULL,284,1,2,0,'2019-04-15 14:16:40'),(285,3,60,'Erreur dans les log au chargement des fichiers NodeSet','Bonjour,\r\n|CPF_L04.log| 2018-04-05T07:21:21.324Z Now will try to parse: .\\NodeSetBase\\Opc.Ua.NodeSet2.Part8.xml\r\n|CPF_L04.log| 2018-04-05T07:21:21.331Z VariableType: Warning FindBuiltinType i=12080 failed 0x803e0000\r\nComment résoudre ce problème ? La configuration fonctionne correctement tout de même.\r\nCi-joint la configuration.\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,5,NULL,4,NULL,353,1,'2018-04-05 09:36:44','2019-06-19 16:47:58','2018-04-05',100,NULL,NULL,285,1,2,0,'2019-06-19 16:47:58'),(286,2,60,'ServiceLevel','Bonjour,\r\n\r\nConcernant la variable ServiceLevel, dans part 4 et 5 on ne trouve cette variable que dans les chapitres évoquant la redondance. Mais quand est il pour un serveur unique ? Comment justifier que nous ne devons pas initialiser cette variable par rapport à la norme OPCUA.\r\nQuand un regarde dans l\'espace d\'adressage d\'un serveur, ServiceLevel apparaît directement sous Server et pas dans ServerRedundancy. Devons nous alors l\'utiliser comme l\'indique la norme part 4 ServiceLevel Ranges dans le cas d\'un serveur unique ?\r\n\r\nLe norme ne me semble pas claire sur le sujet ou alors j\'ai loupé quelque chose. Cela ne me pose pas de problème à faire l\'initialisation dans le Vpi mais j\'aimerai être en accord avec OPCUA.\r\n\r\nMerci.\r\nCordialement.',NULL,NULL,5,1,4,NULL,353,5,'2018-04-09 14:41:37','2019-04-15 14:16:54','2018-04-09',100,NULL,NULL,286,1,2,0,'2018-12-07 10:08:22'),(287,1,52,'L_ECSType ','bonjour, \r\n\r\nIncoherence L_ECSType \r\n\r\nAnnexe 1 \r\n§6.1 : L_ECSType est défini comme un Object Type d\'ADPTypes\r\n§6.3.13 : L-ECSType est défini comme une Variable Type \r\nIl manque également une cardinality \r\n\r\nDans le Nodeset L_ECSType est une VariableType \r\n\r\n\r\n\r\n','2018-04-10',NULL,5,1,6,NULL,315,2,'2018-04-10 10:41:13','2018-04-13 00:26:24','2018-04-10',100,NULL,NULL,287,1,2,0,'2018-04-13 00:26:24'),(288,3,60,'VpiUdpEx et CacheVpi','Bonjour,\r\nMerci pour les documents, j\'ai bien avancé sur la structure du Vpi en lui même mais bloque sur le cache du Vpi...\r\nJe n\'arrive pas à créer des tag sur le namespace du serveur (ServiceLevel et NamespaceArray). Comme nous avons x fichiers NodeSet avec donc des numéros de Namespace dynamique comment créer le cache du Vpi ?\r\nDans le fichier Subsystem.xml, peut on utiliser des NodeId en chaine (s=CPF_MTRG_VERD_1_DEFAUT) ?\r\nA évoquer lors de notre prochaine réunion.\r\n\r\nNotre Vpi sera sans doute assez proche de VpiUdpEx (détaillé dans le pdf) avec notre propre implémentation de la communication TCP.\r\nPouvez-vous nous mettre à disposition les sources de ce Vpi pour l\'étudier plus facile sous VS2013.\r\nMerci.\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,2,'2018-04-11 07:58:30','2019-06-19 16:47:22','2018-04-11',100,NULL,NULL,288,1,2,0,'2019-06-19 16:47:22'),(289,1,49,'si on est avec des StatusCode « BadCommunication » mais que l’on écrit quand même on a fait planter le serveur.','Bonjour Anthony,\r\nje crée un issue pour le problème que tu m\'as rapporté par @mail.\r\nJ\'ai analysé le miniDump que tu m\'as envoyé (très utile).\r\nIl fait apparaitre un crash dans la méthode CUAVariable::WriteToVpiTags(const OpcUa_DataValue ValueToWrite).\r\nJ\'avais modifié cette méthode pour le support des écritures multi-tag.\r\nIl s\'agit peut être d\'une regression. J\'ai ajouté une mutex de protection.\r\nJ\'ai réalisé des tests et le fonctionnement me semble correcte.\r\nPourrais tu vérifier avec ta plateforme \r\n\r\nCordialement \r\nMichel',NULL,NULL,5,254,4,NULL,1,1,'2018-04-11 23:20:08','2018-04-18 16:05:41','2018-04-11',100,NULL,NULL,289,1,2,0,'2018-04-18 16:05:41'),(290,1,54,'Bad generationwith XmiToNodeSet','XmiToNodeSet :\r\nIl manque dans la generation les classes :\r\n\r\n* Unit\r\n* Historic\r\n* Note\r\n* Enumeration\r\n',NULL,NULL,1,1,4,NULL,1,0,'2018-04-12 16:42:23','2018-04-12 16:42:23','2018-04-12',0,NULL,NULL,290,1,2,0,NULL),(291,1,54,'Clarification Historic','Bonjour,\r\npourriez vous clarifier la semantique de la class Historic.\r\nDiscuter de la modification du modèle en pièce jointe\r\n\r\nCordialement\r\nMichel\r\n',NULL,NULL,5,NULL,4,NULL,1,2,'2018-04-12 16:58:16','2018-05-02 14:04:33','2018-04-12',100,NULL,NULL,291,1,2,0,'2018-05-02 14:04:33'),(292,1,52,'UAE indisponible','Bonjour,\r\nje n\'arrive pas lancer le Plug-In. L\'UAE semble indisponible ce soir (12-4-2018).\r\nAfin de corriger le problème lié au crash de l\'harmonisateur en cas de deconnexion de l\'UAE j\'ai activé ProcDump.\r\nEst ce que vous pourriez vérifier la disponibilité de l\'UAE ?\r\n\r\nCordialement\r\nMichel',NULL,NULL,5,345,7,NULL,1,2,'2018-04-13 00:41:03','2018-04-13 12:00:22','2018-04-13',100,NULL,NULL,292,1,2,0,'2018-04-13 12:00:22'),(293,1,52,'BrowseName ElementDeDetectionType','ELTDeDetectionType ne doit pas être le BrowseName des instances de ElementDeDetectionType',NULL,NULL,1,315,4,NULL,1,0,'2018-04-13 10:32:36','2018-04-13 10:32:36','2018-04-13',0,NULL,NULL,293,1,2,0,NULL),(294,1,52,'BrowseName ElementDeDetectionType','ELTDeDetectionType ne doit pas être le BrowseName des instances de ElementDeDetectionType',NULL,NULL,1,1,4,NULL,1,1,'2018-04-13 10:32:37','2018-04-13 10:45:57','2018-04-13',0,NULL,NULL,294,1,2,0,NULL),(295,2,47,'Ajouter suppression SubSystem','Tout est dans le titre',NULL,NULL,1,1,4,NULL,1,0,'2018-04-17 13:52:23','2018-04-17 13:52:23','2018-04-17',0,NULL,NULL,295,1,2,0,NULL),(296,3,54,'OPC DA','Bonjour Michel,\r\n\r\nJe suis actuellement en train de voir pour la configuration entre notre server OPC UA et notre nouveau client DA. Je rencontre quelques soucis de configurations :\r\n- Avec la démo fourni (Demo-ComDa - OneServer) je n\'ai pas de problème, les valeurs changent en temps réel.\r\n- Quand je souhaite remplacé le server Demo-ComDa par notre server OPC je n\'y arrive pas.\r\n\r\nCe que j\'ai fais : \r\n- ajout d\'un fichier .dat avec un seul ITEM dans le dossier de notre server OPC UA. (en PJ)\r\n- modification du fichier xml subsystem pour ajout de l\'ADRESS de l\'ITEM (en PJ)\r\n- création d\'un fichier XMl de configuration pour RapidService (en PJ)\r\n\r\nA partir de là je ne sais plus ce que je dois faire. Je vois bien l\'architecture (RS.TAG0011) sur mon client DA (Matrikon) connecté à RapidService mais la connexion entre RapidService et ProCellics Server OPC UA ne semble pas fonctionnelle. Y-a-t-il un endroit où je dois entrer l\'adresse de mon server OPC ?',NULL,NULL,1,1,4,NULL,331,1,'2018-04-18 17:04:21','2018-05-02 14:32:30','2018-04-18',0,NULL,NULL,296,1,2,0,NULL),(297,3,57,'Share the fixes you added to the client lib, please','Hi Michel,\r\n\r\nIt\'s been a while.\r\nI saw your message. Please share your updates to the Client Lib and we will merge them to the codebase we have.\r\nAs we have quite a bit of updates ourselves, we will share the final one with you in return.\r\n\r\nThanks,\r\n\r\nJason',NULL,NULL,1,NULL,4,NULL,333,2,'2018-04-26 10:36:42','2018-04-30 01:20:24','2018-04-26',0,NULL,NULL,297,1,2,0,NULL),(298,1,49,'Plantage Serveur avec VpiUaClient sous Xp en mode service','Lorsque je débranche la connexion ethernet du PLC, le serveur plante.\r\nEn PJ, un Dump créé avec VS2010',NULL,NULL,5,1,5,NULL,254,2,'2018-04-27 16:10:50','2018-05-04 15:41:41','2018-04-27',100,NULL,NULL,298,1,2,0,'2018-05-04 15:41:41'),(299,1,49,'Plantage Serveur avec VpiUaClient sous Xp en mode service','Lorsque je débranche la connexion ethernet du PLC, le serveur ne plante plus, mais lorsque je le rebranche et que j\'essaye d\'écrire un variable, le serveur plante.\r\nEn PJ, un Dump créé avec VS2010',NULL,NULL,1,1,4,NULL,254,0,'2018-05-04 16:26:53','2018-05-04 16:26:53','2018-05-04',0,NULL,NULL,299,1,2,0,NULL),(300,3,60,'Test Siemens avec erreurs','Bonjour,\r\n\r\nSiemens à quelques petits soucis avec le serveur OPC, voici les éléménts :\r\n\r\nNous avons effectué des tests avec notre client OPC et avons relevé deux points gênants :\r\n\r\n1/ Statut UncertainInitialValue\r\n\r\nQuand le simulateur démarre, les valeurs des tags sont vides avec un statut « Good ».\r\n\r\nMais dès qu’on les modifie pour les tests, le statut passe à UncertainInitialValue ce qui n’est pas normal.\r\n\r\n2/ Retour en erreur BadMessageNotAvailable\r\n\r\nDans notre application, on a un mécanisme pour éviter toute perte de données entre notre ATS et notre client OPC UA. Sur notification, le client OPC UA va envoyer des Republish() pour traiter les notifications manquantes. Quand le client tente cette action auprès du serveur OPC UA, une erreur est émise :\r\n\r\n \r\n\r\n2018-05-03 14:27:08.076;20F8;info;spocc.acquisition;SpUAMissingNotificationsCollector:13;SpUAMissingNotificationsCollector started for Device\r\n\r\n2018-05-03 14:27:08.076;20F8;info;spocc.acquisition;SpUASubscriptionUnifiedAutomation:880;Doing republish for subscription under CPF_1\r\n\r\n2018-05-03 14:27:08.092;20F8;ERROR;spocc.acquisition;SpUASubscriptionUnifiedAutomation:903;Error: doRepublish() : bad status BadMessageNotAvailable returned from republish(), Subscription created under UASession name = CPF_1\r\n\r\n \r\n\r\n \r\n\r\nPourriez-vous svp analyser ces deux points.\r\n\r\nEn vous remerciant par avance.\r\n\r\nCordialement.\r\nF. TOURRET\r\n',NULL,NULL,5,1,6,NULL,353,4,'2018-05-07 13:17:31','2018-12-07 10:06:26','2018-05-07',100,NULL,NULL,300,1,2,0,'2018-12-07 10:06:26'),(301,2,51,'DataCache Serveur','Le data cache du serveur ne permet pas de conserver un historique d\'évolution pour un même tag.\r\nMême si on rempli la \"queue size\" avec plusieurs évolutions successive d\'un même tag, le data cache du serveur ne gère qu\'une seule évolution.\r\nOn perd donc des évolutions entre la partie \"queue size\" et la partie data cache.\r\nIl faudrait faire évoluer le serveur et le data cache pour mettre un vecteur d’évolution et pas une seule évolution par tag.\r\nMerci.\r\n',NULL,NULL,1,NULL,4,NULL,303,0,'2018-05-31 11:10:01','2018-05-31 11:10:01','2018-05-31',0,NULL,NULL,301,1,2,0,NULL),(302,2,51,'Date Serveur','Si la date du serveur est trop en retard ou trop en avance par rapport à la date du client, aucunes évolutions n\'est envoyées au client.\r\nIl serait bien de pouvoir désactiver ce contrôle de dates.\r\nMerci.',NULL,NULL,1,NULL,4,NULL,303,0,'2018-05-31 11:35:46','2018-05-31 11:35:46','2018-05-31',0,NULL,NULL,302,1,2,0,NULL),(303,3,49,'Extract du code source VPI UA Client','Batch à finir ',NULL,NULL,1,1,4,NULL,254,0,'2018-05-31 15:00:49','2018-05-31 15:00:49','2018-05-31',0,NULL,NULL,303,1,2,0,NULL),(304,3,49,'Compile de la .net legacy v1.03.342','',NULL,NULL,1,1,4,NULL,254,1,'2018-05-31 15:01:38','2018-05-31 15:01:48','2018-05-31',0,NULL,NULL,304,1,2,0,NULL),(305,3,62,'Modèle ADP','Bonjour M. Condemine,\r\n\r\nComme convenu, pouvez vous me transmettre :\r\n\r\n- Le modèle ADP à jour (fichier .xmi ainsi que le NodeSet.xml correspondant généré depuis MagicDraw)\r\n- Un exemple de NodeSet d\'instances avec le type UGCIS correctement instancié et éventuellement une porte rattachée.\r\n\r\nMerci d\'avance.\r\n\r\nFrancesco DEMURU',NULL,NULL,5,1,5,NULL,361,1,'2018-06-01 14:54:02','2018-06-08 14:38:41','2018-06-01',100,NULL,NULL,305,1,2,0,'2018-06-08 14:38:41'),(306,3,62,'Spec OPC-UA','Comme convenu également, pouvez vous me mettre à disposition les spécifications OPC-UA.',NULL,NULL,5,1,4,NULL,361,1,'2018-06-01 14:57:41','2018-06-08 14:38:17','2018-06-01',100,NULL,NULL,306,1,2,0,'2018-06-08 14:38:17'),(307,1,56,'VARIABLE DFT DE L_SSI','La variable ne passe pas à true lorsque les centrales ne répondent pas à la supervision request.\r\n\r\n ',NULL,NULL,5,1,4,NULL,328,2,'2018-06-18 18:22:39','2018-10-02 18:30:33','2018-06-18',0,NULL,NULL,307,1,2,0,'2018-10-02 18:30:33'),(308,2,62,'xmiToUANodeSet et Enterprise Architect','Comme vu en formation, l\'import de fichiers xmi générés par Enterprise Architect v14 ne fonctionne pas. Voir s\'il est possible de faire l\'évolution comme convenu. ',NULL,NULL,1,1,4,NULL,361,0,'2018-06-25 17:05:58','2018-06-25 17:05:58','2018-06-25',0,NULL,NULL,308,1,2,0,NULL),(309,2,56,'Ajout tri sur colonne adress dans le subsystem','',NULL,NULL,5,1,4,NULL,1,1,'2018-06-25 17:33:23','2019-05-06 18:08:16','2018-06-25',100,NULL,NULL,309,1,2,0,'2019-05-06 18:08:16'),(310,1,62,'ADP / A discuter avec Mme Durand','M. CONDEMINE,\r\n\r\nComme convenu, ci-dessous les points à discuter avec ADP (certains déjà évoqués lors de ma formation au mois de Mai dernier).\r\n\r\n\r\nANNEXE I du CCTP :\r\n\r\n- Chapitre 6.4.1 CUGCIS_ADP_TYPE => LIBELLE : Erratum type bool au lieu de string\r\n- Chapitre 11.1 Certification : Revoir l\'intitulé qui a été modifié par rapport au CCTP SSI (pour que la certification soit possible par 4CE Industry)\r\n- Chapitre 11.2.1.1 => table 57 / Caractéristiques fonctionnelles : Trop de contraintes mentionnées dans les caractéristiques fonctionnelles\r\n- Chapitre 11.2.1.2 \"Manipulation et transfert de fichiers\" à supprimer\r\n- Le chapitre 13.1 portant sur la haute disponibilité est à supprimer (contradiction avec le mode de redondance à froid imposé).\r\n\r\nCCTP en lui même (indice A):\r\n- p15/48 chapitre 1.3.3 :\r\n E.CONC-UGCIS-25 : Les tags seront lus une fois pour toute au démarrage du serveur donc l\'arrêt / redémarrage me paraît indispensable pour toute modifications que ce soit UGCIS ou porte\r\n E.CONC-UGCIS-29 : l\'UAE devrait utiliser exclusivement le service de découverte offert par OPC-UA\r\n\r\n',NULL,NULL,1,NULL,5,NULL,361,0,'2018-06-28 15:52:36','2018-06-28 15:52:36','2018-06-28',0,NULL,NULL,310,1,2,0,NULL),(311,2,56,'MultiNode','Suite a votre demande je viens d\'implémenter le MultiNode.\r\nIl s\'agit d\'une focntionnalité complémentaire du MultiTag ajouté précedement.\r\n\r\n',NULL,NULL,5,328,4,NULL,1,1,'2018-07-03 15:30:55','2019-05-06 17:46:07','2018-07-03',100,NULL,NULL,311,1,2,0,'2019-05-06 17:46:07'),(312,3,51,'Code pour controle Date Serveur / Date Client (subscription)','Bonjour Michel,\r\nJe n\'arrive pas à trouver dans le code du serveur l\'endroit où est fait le contrôle entre le serveur timestamp et la date du client (ou de la subscription).\r\nJ\'aimerai désactiver ce test car l\'horodateur de mon automate dérive assez fortement dans le temps et je dois régulièrement le remettre à l\'heure pour que le client reçoive les évolutions.\r\nMerci pour ton aide.\r\nDamien',NULL,NULL,1,1,4,NULL,303,2,'2018-07-06 15:47:59','2018-07-10 10:56:21','2018-07-06',0,NULL,NULL,312,1,2,0,NULL),(313,1,49,'Serveur OpenOpcUa en 64bits','','2018-07-24',NULL,2,1,4,NULL,254,1,'2018-07-12 14:20:04','2018-08-02 17:46:25','2018-07-12',0,NULL,NULL,313,1,2,0,NULL),(314,1,49,'Builtd Vpi Ua Client','','2018-07-24',NULL,1,1,4,NULL,254,0,'2018-07-12 14:20:35','2018-07-12 14:20:35','2018-07-12',0,NULL,NULL,314,1,2,0,NULL),(315,1,58,'Blocage du démarrage du serveur lorsque le fichier .oouaprj contient des chemins invalide','Afin de tester les cas d\'erreur, j\'ai lancé le serveur OpenOpcUaCoreServeur avec en paramètre un fichier _oouaprj_ de format valide, mais en ayant remplacé dans tous les chemins absolue la lettre \"c:\" par \"z:\", le lecteur Z n\'existant pas sur le PC en question.\r\n\r\nJe m\'attendais à une erreur de lancement du serveur (genre \"_Impossible d\'ouvrir le fichier xxx_\" ou au moins une trace dans le log du serveur, mais en fait le démarrage du serveur *reste bloqué*, sans printf, ni log.\r\n\r\nLa non-existance du log ne m\'étonne pas puisque l\'emplacement indiqué du log est incorrect.\r\n\r\nCeci pose un problème lors de l\'utilisation du serveur en tant que service, car alors le service semble lancé et fonctionnel, alors qu\'il n\'en ai rien, et qu\'il est impossible de consulter le log...\r\n\r\n*Idéalement, nous aurions aimé que le démarrage du serveur échoue (sorte avec un code d\'erreur), de manière à ce que Windws indique une erreur de lancement du service, et ce dès qu\'un fichiers indiqué dans le fichier projet n\'existe pas ou ne peut être ouvert.*\r\n\r\n\r\nVersion du serveur utilisé : 1.0.5.5',NULL,NULL,2,1,4,NULL,346,1,'2018-08-02 14:17:46','2018-08-21 10:46:15','2018-08-02',0,NULL,NULL,315,1,2,0,NULL),(316,1,58,'Erreur lors du lancement du serveur avec une TRES GROSSE configuration','Afin de satisfaire une exigence ADP, nous avons mis en place un projet comportant les éléments suivants :\r\n\r\n* 20 ECS, équipés chacun de:\r\n - 1024 détecteurs au maximum,\r\n - 1024 zones de détections (ZD).\r\n* 20 CMSI, équipés chacun de:\r\n - 2048 asservissements,\r\n - 256 fonctions de mise en sécurité (évacuation, désenfumage, compartimentage, etc.) maximum,\r\n - 256 Unité de Gestion d\'Alarmes (UGA),\r\n - 256 Zones d\'alarmes maximum. \r\n\r\nLors de l\'utilisation du serveur avec un tel projet, *le démarrage échoue*, avec de nombreuse lignes semblables à celle-ci, dans le fichier de log :\r\n\r\n<pre>\r\n...\r\nxmlNodeSetCharacterDataHandler: unexpected situation. Please contact OpenOpcUa Team leader ns=11;i=13 uStatus=0x00000\r\nxmlNodeSetCharacterDataHandler: unexpected situation. Please contact OpenOpcUa Team leader ns=11;i=20 uStatus=0x80020000\r\nxmlNodeSetCharacterDataHandler: unexpected situation. Please contact OpenOpcUa Team leader ns=11;i=27 uStatus=0x80020000\r\n...\r\n</pre>\r\n\r\nCi-joint le projet en question, et le fichier de log du serveur.\r\n\r\nVersion du serveur utilisé : 1.0.5.5\r\n',NULL,NULL,2,1,4,NULL,346,2,'2018-08-02 14:41:13','2018-08-31 14:22:50','2018-08-02',0,NULL,NULL,316,1,2,0,NULL),(317,3,62,'Ajout namespace par code','M. CONDEMINE,\r\n\r\nJ\'ai essayé d\'écrire dans le noeud 2255 avec UA Expert pour essayer d\'ajouter un namespace. J\'ai l\'erreur \"BadNotWritable\" donc le nœud est certainement en lecture seule. Comment puis je faire autrement pour ajouter les namespace , n\'ayant pas accès au tableau interne du serveur (m_NamespaceUri) ?\r\n\r\nMerci d\'avance.',NULL,NULL,1,NULL,4,NULL,361,0,'2018-08-07 15:03:50','2018-08-07 15:03:50','2018-08-07',0,NULL,NULL,317,1,2,0,NULL),(318,1,62,'Problème avec VpiAddVariableCallback','Bonjour M. Condemine,\r\n\r\nJe vous rapporte un soucis constaté en utilisant la fonction VpiAddVariableCallback appelée depuis le VPI.\r\n\r\nL\'ajour de la variable se passe bien mais lorsque le serveur appelle la méthode VpiReadValue, les nodes à lire ont tous le même identificateur ns=0;i=0.\r\n\r\nJ\'ai joint 4 fichiers numérotés et annotés qui expliquent le problème et le fix que j\'ai dû appliquer pour corriger.\r\n\r\n',NULL,NULL,3,NULL,4,NULL,361,1,'2018-08-27 12:11:58','2018-08-29 14:23:39','2018-08-27',100,NULL,NULL,318,1,2,0,'2018-08-29 14:23:39'),(319,1,62,'Problème pour étendre le namespacearray depuis le vpi','Bonjour M. Condemine,\r\n\r\nJe suis parvenu à lire et écrire le node 2255 représentant le namespace array. Néanmoins, cela ne fonctionne pas si la manipulation est effectuée dans le ColdStart du Vpi car à ce moment là, le serveur est certainement occupé à lire les fichiers XML et n\'a pas terminé l\'initialisation du namespacearray. Si je lis le tableau dans le coldstart, je récupère un tableau vide. \r\n\r\nJe me suis aperçu que si je le lisais plus loin (lors du VpiRead par exemple), cela fonctionnait. \r\n\r\nJ\'ai vu par hasard que si le Coldstart échouait, vous le relanciez plus tard. Donc pour l\'instant, je m\'en suis sorti avec l\'astuce suivante : \r\n\r\nDans VpiColdStart, je lis le namespacearray. Si celui ci contient 0 items, la fonction retour Vpi_Bad. Le coup d\'après, lors du rappel de VpiColdStart, le tableau est bien initialisé et je peux poursuivre.\r\n\r\n',NULL,NULL,1,NULL,4,NULL,361,0,'2018-08-27 12:20:22','2018-08-27 12:20:22','2018-08-27',0,NULL,NULL,319,1,2,0,NULL),(320,1,46,'Update to current version','Dear Michel,\r\n\r\nafter 2 years, we need to improve our opc ua client.\r\n\r\nI got a crash in OpenOpcUa_GetEndpoints calling \'DiscoverEndpoints\' (OpcUa_String_Clear called with unitialized pointer) \r\non sample server \'opc.tcp://opcua.demo-this.com:51210/UA/SampleServer\'.\r\n\r\nI would like to by an update from our version 1.0.4.6 to version 1.0.5.5 and to 64 bit 1.0.5.6.\r\n\r\nIs it enough just to pay 500 Euro on \'http://www.openopcua.org\' to get a download file link?\r\n',NULL,NULL,1,1,4,32,286,0,'2018-08-28 15:10:11','2018-08-28 15:10:11','2018-08-28',0,NULL,NULL,320,1,2,0,NULL),(321,3,58,'[ADP] Fonctionnement de MODIF_BD au niveau de l\'harmonisateur','Bonjour,\r\n\r\nPouvez-vous, s\'il vous plait, nous préciser le fonctionnement de l\'harmonisateur au sujet de MODIF_BD ?\r\n\r\n1 - En cas de modification de configuration, génération d\'une nouvelle configuration à partir du configurateur -> génération du fichier des instances avec valeur de MODIF_BD égale à true\r\n2 - Re-démarrage du service OPC-UA\r\n3 - L\'harmonisateur détectant que MODIF_BD est à true recharge la nouvelle configuration.\r\n4 - L\'harmonisateur passe MODIF_BD à false.\r\n5 - Le VPI doit-il ensuite passer la valeur de MODIF_BD à false dans le fichier des instances ? si ce n\'est pas le cas, en cas de redémarrage du serveur l\'harmonisateur rechargera la configuration, est-ce problématique ?\r\n\r\nMerci d\'avance.\r\n\r\nCordialement',NULL,NULL,1,NULL,4,NULL,349,0,'2018-09-20 09:31:14','2018-09-20 09:31:14','2018-09-20',0,NULL,NULL,321,1,2,0,NULL),(322,3,58,'URGENCE - Problème d\'intégration avec l\'harmonisateur','Bonsoir monsieur Condemine,\r\nChubb est actuellement en cours d\'intégration du concentrateur à Orly.\r\nIls rencontre un problème de communication avec l\'harmonisateur : les objets Chubb ne semble pas apparaitrent dans l\'harmonisateur.\r\n\r\nEn comparant les objet d\'un concentrateur concurent à l\'aide de l\'outil UAExpert, ils ont constatés que nous n\'avions jamais de \"ComponentOf\" (dans la zone de droite de UaExpert) lorsque qu\'un de nos objet est sélectionné. Une liste de \"HasComponant\" apparaît bien.\r\n\r\nDans nos fichiers d\'instances, nous déclarons bien le/les \"pères\" d\'un objet à l\'aide d\'une ligne comme celle-ci :\r\n\r\n<pre>\r\n <Reference ReferenceType=\"i=47\" IsForward=\"false\">ns=9;i=2</Reference>\r\n</pre>\r\n\r\nD\'ou deux questions :\r\n* Avons nous fait une erreur en déclarant le père d\'un objet comme ceci ?\r\n* Est-ce que cela peut effectivement être un problème pour l\'harmonisateur si un objet ne contient pas de \"ComponentOf\" ?\r\n\r\nLe sujet est assez urgent, l\'intégration ayant lieu en ce moment-même !\r\n\r\nPS : Chubb n\'a pas souhaité que nous soyons présent lors de l\'intégration à Orly, ce qui limite notre capacité d\'investigation...',NULL,NULL,1,1,4,NULL,346,1,'2018-09-24 17:30:47','2018-09-24 18:19:21','2018-09-24',0,NULL,NULL,322,1,2,0,NULL),(323,1,46,'nslookup problem?','Hi Michel,\r\n\r\nsorry for bothering you with my problem.\r\n\r\nIf i run your example server locally ( e.g.: opc.tcp://w7-dlg6.tdw.iptnet.org:16664),\r\nthe endpoint detection (OpenOpcUa_GetEndpoints -> pUaClientApplication->DiscoverEndpoints) runs normal.\r\n\r\nIf i try the same server locally with direct ip (e.g. opc.tcp://192.168.1.107:16664)\r\nthe endpoint protection runs into (long time) timout and finally fails.\r\n\r\nI have the problem also at a customers server.\r\nThe server runs at opc.tcp://10.219.64.51:49320.\r\nIf i try to detect the endpoints, it runs into (long time) timout and finally fails.\r\nIf i try opc.tcp://<domain_hostname>:49320, it fails immediately.',NULL,NULL,5,1,6,105,286,2,'2018-09-27 14:41:41','2022-03-27 23:35:52','2018-09-27',100,NULL,NULL,323,1,2,0,'2022-03-27 23:35:52'),(324,2,56,'AUGMENTATION VITESSE PORT SERIE','Ci-joint une procédure qui permettrait d\'augmenter la vitesse du port série.\r\nà tester',NULL,NULL,5,1,4,110,328,1,'2018-10-02 19:22:35','2022-10-06 19:04:59','2018-10-02',0,NULL,NULL,324,1,2,0,'2022-10-06 19:04:59'),(325,2,56,'Mise à jour Analyse fonctionnelle avec VPITycoEX','Mettre à jour l\'analyse fonctionnelle selon le nouveau fonctionnement du VPI (configuration automatique)',NULL,NULL,5,1,4,NULL,328,1,'2018-10-02 19:32:53','2019-05-10 11:47:35','2018-10-02',100,NULL,NULL,325,1,2,0,'2019-05-10 11:47:35'),(326,3,59,'probleme avec les projets OpenOpcUaCoreServer et vpiUaClient beta3 en mode exe','Bonjour Michel,\r\n\r\nJ\'ai quelques problèmes avec l\'utilisation du projet OpenOpcUaCoreServer et VpiUaClnt de la version beta3 que tu nous à donné.\r\n\r\nLe projet OpenOpcUaCoreServer compile bien en x64, idem pour VpiUaClnt .\r\nPar contre quand je lance le OpenOpcUaCoreServer.exe et qu\'il appel LoadLibrary(\"VpiUaClntd.dll\")\r\nÇa me renvoie une erreur : OpcUa_NodeId_Clear est introuvable dans la bibiliotheque OpenOpcUaClientLibd.dll.\r\nSi je rajoute cette méthode dans le .def du projet OpenOpcUaClientLibd et que je recompile tout j\'ai encore une autre erreur me disant qu\'il me manque une autre méthode.\r\nY a t-il un projet non mis à jour ou une erreur dans ma config?\r\n\r\nMerci d\'avance\r\n\r\nCordialement\r\n\r\nBenoit\r\n\r\n\r\n',NULL,NULL,5,1,4,89,374,1,'2018-10-05 10:50:16','2019-01-21 15:52:17','2018-10-05',100,NULL,NULL,326,1,2,0,'2019-01-21 15:52:17'),(327,1,59,'Probleme avec les versions des serveurs version 1.0.5.5 et 1.0.5.6','Bonjour Michel,\r\n\r\nJ\'ai fais des tests avec la version bet03(version serveur 1.0.5.5) et beta04(1.0.5.6) pour aspirer une variable avec 2 cores et un serveur agrégateur.\r\nAvec une version de serveurOpc 1.0.5.3 ça marche très bien.\r\nPar contre si je recompile et je créé un serveurOPC avec la version beta03 ou beta04 et que j’utilise la même config ça ne marche plus.\r\nC\'est comme si le serveur agrégateur n\'avait pas les droits d’écriture sur la variable.\r\nSi je modifie la variable dans le core 1 elle est mis à jour dans le serveur agrégateur mais pas dans le core 2\r\nSi je modifie la variable dans le serveur agrégateur la variable est modifiée dans UA expert mais quand je fais un read elle récupère la valeur d’avant et les variables surs les cores 1 et 2 ne bougent pas.\r\n\r\nJ\'ai mis en pièce jointe les 2 configurations \"demo_avec_probleme_1.0.5.5\" et \"demo_version_1.0.5.3_OK\"\r\nPour lancer un core il faut cliquer sur OPC_UA.exe et dans fenêtre cmd qui s\'ouvre taper sop(1) pour le model1 et dans le core 2 sop(2) pour le model2\r\n\r\nSi tu veux plus d\'informations n\'hesites pas à m\'appeler.\r\n\r\nY a t il des choses à activer quand on compile le projet en mode serveur que je n\'ai pas faites( ce qui expliquerait le problème), ou y a t il une régression sur la version?\r\n\r\nMerci\r\n\r\nBonne soirée\r\n\r\nCordialement,\r\n\r\nBenoit\r\n\r\n',NULL,NULL,5,1,4,8,374,1,'2018-10-11 20:26:12','2019-01-21 15:51:56','2018-10-11',100,NULL,NULL,327,1,2,0,'2019-01-21 15:51:56'),(328,1,59,'Probleme avec les versions des serveurs version 1.0.5.5 et 1.0.5.6','Bonjour Michel,\r\n\r\nJ\'ai fais des tests avec la version bet03(version serveur 1.0.5.5) et beta04(1.0.5.6) pour aspirer une variable avec 2 cores et un serveur agrégateur.\r\nAvec une version de serveurOpc 1.0.5.3 ça marche très bien.\r\nPar contre si je recompile et je créé un serveurOPC avec la version beta03 ou beta04 et que j’utilise la même config ça ne marche plus.\r\nC\'est comme si le serveur agrégateur n\'avait pas les droits d’écriture sur la variable.\r\nSi je modifie la variable dans le core 1 elle est mis à jour dans le serveur agrégateur mais pas dans le core 2\r\nSi je modifie la variable dans le serveur agrégateur la variable est modifiée dans UA expert mais quand je fais un read elle récupère la valeur d’avant et les variables surs les cores 1 et 2 ne bougent pas.\r\n\r\nJ\'ai mis en pièce jointe les 2 configurations \"demo_avec_probleme_1.0.5.5\" et \"demo_version_1.0.5.3_OK\"\r\nPour lancer un core il faut cliquer sur OPC_UA.exe et dans fenêtre cmd qui s\'ouvre taper sop(1) pour le model1 et dans le core 2 sop(2) pour le model2\r\n\r\nSi tu veux plus d\'informations n\'hesites pas à m\'appeler.\r\n\r\nY a t il des choses à activer quand on compile le projet en mode serveur que je n\'ai pas faites( ce qui expliquerait le problème), ou y a t il une régression sur la version?\r\n\r\nMerci\r\n\r\nBonne soirée\r\n\r\nCordialement,\r\n\r\nBenoit\r\n\r\n',NULL,NULL,5,1,4,8,374,1,'2018-10-12 09:03:31','2019-01-21 15:51:36','2018-10-11',100,NULL,NULL,328,1,2,0,'2019-01-21 15:51:36'),(329,2,64,'Création d\'un premier VPI','Bonjour M Condemine,\r\n\r\nsuite à notre heure du binaire qui est passée très rapidement, je reviens vers vous pour nous donner un point de départ.\r\n\r\nEn effet, pendant l\'heure du binaire nous avons eu à manipuler beaucoup de fichiers mais nous n\'avons pas eu le temps d\'aborder la finalité de notre première étape qui est celle de récupérer une structure d\'un automate.\r\n\r\nAlors je vous avoue que cela reste encore très flou dans nos têtes et nous sollicitons auprès de vous une aide afin de faire les premiers pas.\r\n\r\nCordialement.',NULL,NULL,5,380,3,NULL,380,1,'2018-11-05 11:25:23','2018-11-12 18:06:59','2018-11-05',100,NULL,NULL,329,1,2,0,'2018-11-12 18:06:59'),(330,1,56,'Plantage ConfigManager 0.8.1','Ci joint le fichier dump',NULL,NULL,5,NULL,4,NULL,328,1,'2018-11-07 18:23:10','2019-05-06 18:08:39','2018-11-07',0,NULL,NULL,330,1,2,0,'2019-05-06 18:08:39'),(331,1,56,'Plantage ConfigManager 0.8.2','ça plante aussi avec cette version.\r\nCi-joint le fichier dump',NULL,NULL,5,NULL,6,NULL,328,1,'2018-11-08 00:08:17','2018-11-10 14:17:10','2018-11-07',100,NULL,NULL,331,1,2,0,'2018-11-10 14:17:10'),(332,3,63,'fichier de log de compilation','PC de dev :\r\nFedora 28\r\nLinux ug135-linux 4.18.14-200.fc28.x86_64 #1 SMP\r\n\r\nTarget :\r\nBeagle Bone\r\ncompilateur : armv7-am335x_sise-linux-gnueabihf-gcc 7.3.0\r\n\r\nsource : OpenOpcUa_1_0_5_6_SISE_08-11-2018_14h00.zip',NULL,NULL,1,1,4,NULL,386,0,'2018-11-08 17:09:10','2018-11-08 17:09:10','2018-11-08',0,NULL,NULL,332,1,2,0,NULL),(333,1,56,'Configuration OrlyOuest','Bonjour,\r\naprès analyse de votre configuration du 9-11-2018. Il apparait que le fichier Opc.Ua.NodeSet2.SSIType.xml est corrompu.\r\nIl contient une double declaration du DataType espaceType. Supprimer la déclaration du node de nodeId ns=2;s=EspaceTypeEnum\r\nPuis relancez le serveur. Vous devrez aussi supprimer tous les caractères LATIN-1 de vos fichiers.\r\n\r\nCordialement\r\nMichel',NULL,NULL,5,328,7,NULL,1,1,'2018-11-10 14:22:34','2019-05-06 17:45:02','2018-11-10',100,NULL,NULL,333,1,2,0,'2019-05-06 17:45:02'),(334,1,47,'High DPI Support in Qt','High DPI Support in Qt\r\nhttps://doc.qt.io/qt-5/highdpi.html',NULL,NULL,1,1,5,NULL,1,0,'2018-11-12 23:52:12','2018-11-12 23:52:12','2018-11-12',0,NULL,NULL,334,1,2,0,NULL),(335,1,62,'Problème LocalizedText et symboles','M. Condemine,\r\n\r\nSuite à notre CT, quelques captures d\'écrans sur les deux problèmes suivants:\r\n\r\n- Depuis la 1.0.5.5 : Ajout manuel de deux fichiers de la stack dans le sous répertoire Include de VpiSDK pour obtenir certaines constantes manquantes\r\n- Depuis la 1.0.5.6 : Les signatures des fonctions callback ont été modifiées et attendent un type localizedText pour le displayName et la description. Les fonction d\'intialisation de ce type ne sont pas présentes dans le openopcuavpisdk.h importé dans le VpiUgcis. Je les ai rajouté manuellement mais le compilateur n\'arriver pas à faire le LINK.\r\n\r\nMerci d\'avance pour votre réponse.',NULL,NULL,2,1,5,NULL,361,2,'2018-11-13 15:01:12','2018-11-15 09:51:52','2018-11-13',80,NULL,NULL,335,1,2,0,NULL),(336,3,56,'Programme pour centrale Labo Montpellier','Bonjour,\r\nafin de pouvoir tester l\'ELD 456 j\'aurai besoin que vous me modifiez le programme qui tourne dans les centrales de ma maquette.\r\nEst ce possible ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,328,7,NULL,1,1,'2018-11-27 23:34:42','2019-05-06 17:41:38','2018-11-27',100,NULL,NULL,336,1,2,0,'2019-05-06 17:41:38'),(337,1,58,'Valeur d\'un define dans le code source du serveur','Par hasard je suis tombé, dans le fichier \"OpenOpcUa\\include\\opcua\\opcua_trace.h\" sur la ligne suivante :\r\n\r\n#define OPCUA_TRACE_STACK_NONE 0x00000004 // 0\r\n\r\nne serait-ce pas plutôt 0x00000000 ?\r\n',NULL,NULL,3,1,3,82,347,1,'2018-11-28 17:59:37','2018-11-29 18:04:39','2018-11-28',100,NULL,NULL,337,1,2,0,'2018-11-29 18:04:39'),(338,3,52,'Harmo as a Service','Bonjour Kamel,\r\nEst ce que tu pourrais modifier le paramétrage de l\'harmonisateur afin qu\'il fonctionne sous le compte de service.\r\nCela me permettra de le faire fonctionner \"instrumenter\" tout en le laissant tourner en tant que service.\r\nAujourd\'hui il fonctionne sous ton compte. voir piece jointe\r\n\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n\r\n\r\n\r\n',NULL,NULL,1,314,7,NULL,1,0,'2018-12-02 20:02:00','2018-12-02 20:02:00','2018-12-02',0,NULL,NULL,338,1,2,0,NULL),(339,1,62,'1.0.5.6 RC03 / ServerStatus State','Bonjour,\r\n\r\nle serveur passe de NOCONF à RUNNING *AVANT* ++l’appel à GlobalStart du Vpi.\r\n\r\nDonc ça fait : NOCONF, RUNNING puis … valeur écrite par le Vpi dans le thread (J\'écris RUNNING si lecture config OK ou FAILED si erreur lors de la lecture de config).\r\n\r\nDonc si lecture de config erronée, j\'ai bien \"FAILED\" dans le statut mais il y a eu un état transitoire \"RUNNING\"\r\n\r\nCordialement,\r\n\r\nFrancesco DEMURU',NULL,NULL,2,1,5,NULL,361,1,'2018-12-03 11:48:05','2018-12-03 11:54:21','2018-12-03',0,NULL,NULL,339,1,2,0,NULL),(340,3,58,'Plantage du concentrateur CHUBB lorsqu\'il est connecté à l\'UAE','Bonjour,\r\n\r\nLorsque nous connectons directement l\'UAE au concentrateur CHUBB, le serveur OPC-UA est \'figé\' et logue sans arrêt le message suivant : GetFirstPublishRequest>m_PublishRequests late situation detected.\r\n\r\nAuriez-vous une idée de l\'origine du problème ?\r\n\r\nMerci d\'avance.\r\n\r\nCordialement,\r\n',NULL,NULL,5,NULL,4,NULL,346,5,'2018-12-04 18:23:59','2018-12-08 17:33:35','2018-12-04',100,NULL,NULL,340,1,2,0,'2018-12-08 17:33:35'),(341,1,56,'ESSAI VPI 0.1.1.1','Bonjour Michel,\r\n\r\nVoici un compte rendu des essais effectués Vendredi 30 :\r\n\r\n•DFT_BATT ou DFT_SECT : ne fonctionne plus, j’ai l’impression que les « events » ne sont plus pris en compte, pouvez-vous vérifier ?\r\n\r\n•LS\\EN_SRV : j’ai mis 13 et 37 dans la liste du fichier dat mais seulement la centrale 13 a la variable EN_SRV à True (à creuser : dans le log on voit que le VPI met Z37.A0999.EN_SRV à 0)\r\n\r\n•ARR_DRG_SON : commande OK mais pas de retour à False, le problème doit venir encore une fois du fait que la commande vient du concentrateur, cela doit être le nœud 51 qui doit arriver avec l’EV_LD 456. Si on associe en multi-tag l’adresse du bouton arrêt buzzer (voir le subsystem dans mon dossier ci-joint : Address=\"Z37.L0006.ARR_DRG_SON\"), et bien dans ce cas-là si on appuie sur le bouton la variable passe bien à False.\r\n\r\n•ECS\\CMD_REINIT : Commande OK et retour à False OK\r\n\r\n•CMSI\\CMD_REINIT : Commande OK mais pas de retour à False\r\n\r\nMerci.\r\n\r\nCordialement.\r\n',NULL,NULL,5,1,6,NULL,328,2,'2018-12-05 17:23:10','2019-05-06 17:44:07','2018-12-05',100,NULL,NULL,341,1,2,0,'2019-05-06 17:44:07'),(342,1,60,'Compilation Linux x64','Impossible de compiler sans l\'option -fpermissive du compilateur :\r\n\r\n/home/ftourret/OpenOpcUa_1_0_5_6_RC04/OpenOpcUaCoreServer/source/SessionServer.cpp: In member function ‘OpcUa_StatusCode OpenOpcUa::UACoreServer::CSessionServer::CallGetMonitoredItemsMethod(OpcUa_CallMethodRequest, OpcUa_CallMethodResult*)’:\r\n/home/ftourret/OpenOpcUa_1_0_5_6_RC04/OpenOpcUaCoreServer/source/SessionServer.cpp:6640:89: error: cast from ‘OpenOpcUa::UACoreServer::CMonitoredItemServer*’ to ‘OpcUa_UInt32 {aka unsigned int}’ loses precision [-fpermissive]\r\n pMethodResult->OutputArguments[0].Value.Array.Value.UInt32Array[i] = (OpcUa_UInt32)pMonitoredItemServer;\r\n ^\r\nCMakeFiles/OpenOpcUaCoreServer.dir/build.make:744: recipe for target \'CMakeFiles/OpenOpcUaCoreServer.dir/source/SessionServer.cpp.o\' failed\r\nmake[2]: *** [CMakeFiles/OpenOpcUaCoreServer.dir/source/SessionServer.cpp.o] Error 1\r\nCMakeFiles/Makefile2:60: recipe for target \'CMakeFiles/OpenOpcUaCoreServer.dir/all\' failed\r\nmake[1]: *** [CMakeFiles/OpenOpcUaCoreServer.dir/all] Error 2\r\nMakefile:72: recipe for target \'all\' failed\r\n',NULL,NULL,5,1,5,NULL,353,2,'2018-12-06 11:24:20','2019-01-15 10:27:26','2018-12-06',100,NULL,NULL,342,1,2,0,'2019-01-15 10:27:26'),(343,1,60,'Compilation linux x64 Classe OpcUa_ServerState inconnue','La classe ‘OpcUa_ServerState’ est inconnue lors de la compilation sous linux en x64\r\n\r\n/home/ftourret/OpenOpcUa_1_0_5_6_RC04/OpenOpcUaCoreServer/source/ServerApplication.cpp: In member function ‘OpcUa_StatusCode OpenOpcUa::UACoreServer::CServerApplication::CheckServerStateFromVpis()’:\r\n/home/ftourret/OpenOpcUa_1_0_5_6_RC04/OpenOpcUaCoreServer/source/ServerApplication.cpp:8488:35: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n OpcUa_ServerState serverState = OpcUa_ServerState::OpcUa_ServerState_Running;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6_RC04/OpenOpcUaCoreServer/source/ServerApplication.cpp:8508:21: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_CommunicationFault;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6_RC04/OpenOpcUaCoreServer/source/ServerApplication.cpp:8511:21: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_Unknown;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6_RC04/OpenOpcUaCoreServer/source/ServerApplication.cpp:8514:21: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_Failed;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6_RC04/OpenOpcUaCoreServer/source/ServerApplication.cpp:8517:21: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_Shutdown;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6_RC04/OpenOpcUaCoreServer/source/ServerApplication.cpp:8524:18: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_Test;\r\n ^\r\nCMakeFiles/OpenOpcUaCoreServer.dir/build.make:698: recipe for target \'CMakeFiles/OpenOpcUaCoreServer.dir/source/ServerApplication.cpp.o\' failed\r\nmake[2]: *** [CMakeFiles/OpenOpcUaCoreServer.dir/source/ServerApplication.cpp.o] Error 1\r\nCMakeFiles/Makefile2:60: recipe for target \'CMakeFiles/OpenOpcUaCoreServer.dir/all\' failed\r\nmake[1]: *** [CMakeFiles/OpenOpcUaCoreServer.dir/all] Error 2\r\nMakefile:72: recipe for target \'all\' failed\r\nmake: *** [all] Error 2\r\n',NULL,NULL,5,1,5,NULL,353,13,'2018-12-06 11:26:47','2019-01-15 10:29:06','2018-12-06',100,NULL,NULL,343,1,2,0,'2019-01-15 10:29:06'),(344,1,60,'Linux x64 CertificateStore','Bonjour,\r\n\r\nJe viens de voir qu\'un certificat refusé sous linux n\'est pas correctement placé dans la PKI local du serveur.\r\nEn fait le nom du chamin généré est fait avec des \"\\\" au lieu de \"/\".\r\nVoir copie d\'écran jointe.\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,2,'2018-12-07 07:42:51','2019-04-15 14:16:19','2018-12-07',100,NULL,NULL,344,1,2,0,'2019-04-15 14:16:19'),(345,1,60,'Linux x64 utilisation de \\ dans les chemins de fichier','Bonjour,\r\n\r\nSous linux le \\ (de Windows) est utilisé pour générer des fichiers au lieu du / (de Linux).\r\nLe problème à été identifié pour les Certificats rejeté voir #344, mais aussi pour la génération du fichier de log du serveur.\r\n\r\nCordialement\r\n\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,1,'2018-12-07 08:10:04','2019-04-02 17:39:47','2018-12-07',0,NULL,NULL,345,1,2,0,'2019-04-02 17:39:47'),(346,3,60,'Vpi Linux X64','Bonjour,\r\n\r\nImpossible de compiler le VpiNull sous Linux x64 sans l\'option -fpermissive\r\nImpossible de générer le Makefile de VpiNullEx sous linux x64\r\n\r\nCordialement\r\n\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,2,'2018-12-07 08:48:08','2019-01-15 10:27:53','2018-12-07',100,NULL,NULL,346,1,2,0,'2019-01-15 10:27:53'),(347,2,60,'Erreur d\'affichage de log de chargement SubSystemVpi.xml','Bonjour,\r\n\r\nLe log suivant est incorrecte :\r\nYour XML Subsystem file : /config/ServerOpcUaSubSystemVpi.xml has been parsed. Internal parsing result=0x00000\r\nIl manque le / entre le nom du répertoire et le nom du fichier : /config/ServerOpcUa/SubSystemVpi.xml\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,1,'2018-12-07 09:21:52','2019-06-19 16:46:50','2018-12-07',100,NULL,NULL,347,1,2,0,'2019-06-19 16:46:50'),(348,1,60,'OpcUaServer Linux x64 + VpiNull Segmentation Fault','Bonjour,\r\n\r\nLe serveur fait une segmentation fault avec le VpiNull Sous Linux x64.\r\nVersion 1.5.0.6_RC4.\r\nLe serveur est compilé avec un -fpermissive (cast de pointeur en uint32...) le vpi également.\r\nCeci est peut être la cause du plantage.\r\n\r\nCi-joint le log du serveur\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,3,'2018-12-07 09:38:23','2019-01-15 10:27:04','2018-12-07',100,NULL,NULL,348,1,2,0,'2019-01-15 10:26:53'),(349,1,59,'Plantage sur un abonnement d\'un string null en x64','Plantage sur un abonnement d\'un string null en x64 dans uaexpert\r\nAccess violation dans Vpi_string_is_null dans le fichier vpiString.cpp',NULL,NULL,5,1,5,NULL,374,2,'2018-12-19 10:58:13','2018-12-30 17:44:49','2018-12-19',100,NULL,NULL,349,1,2,0,'2018-12-30 17:44:49'),(350,1,59,'Probleme x64 du VPiModBus dans VpiParseAddId','Problème lors du calcul de la position d\'un caractère dans un string en x64 avec la méthode find_first_of(\"@\");\r\nEn x64 le test tmpStringAddr.find_first_of(\"@\") ne donne pas std::string::npos quand on ne trouve pas le caractère\r\n\r\nVpiParseAddId(), EntryPoints.cpp L734\r\n\r\nVpi_UInt32 atIndex = tmpStringAddr.find_first_of(\"@\");\r\nif (std::string::npos != atIndex)\r\n',NULL,NULL,5,1,5,NULL,374,2,'2018-12-19 11:02:45','2019-01-21 15:50:42','2018-12-19',100,NULL,NULL,350,1,2,0,'2018-12-30 17:46:29'),(351,1,59,'Probleme de chargement VPI','Bonjour Michel,\r\n\r\nJ\'ai un problème pour mes tests sur le VPI modBus.\r\nJ\'ai un serveur (core), 1 serveur agrégateur avec vpiCLient et vpiModbus et un automate\r\n\r\n Quand je mets un seul subsytem dans la configuration de mon serveur agrégateur ça marche bien :\r\n<FileSubsystem FullFileName=\"SubSystem.Modbus.PlcSchneider.xml\"></FileSubsystem>\r\n\r\npar contre quand je mets deux subsytems différent pour écouter mon core et mon automate genre :\r\n <FileSubsystem FullFileName=\"SubSystem.Uaclient-001_Debug.xml\"></FileSubsystem>\r\n <FileSubsystem FullFileName=\"SubSystem.Modbus.PlcSchneider.xml\"></FileSubsystem>\r\n\r\nLe serveur agrégateur essaye de me charger dans la fonction (CVpiFuncCaller::LoadVpi) 2 vpi Modbus et non un modbus et UAclient...\r\nSi j\'inverse les deux dernières lignes il va essayer de me charger 2vpi Uaclient ',NULL,NULL,5,1,4,NULL,374,1,'2019-01-09 17:33:50','2019-01-21 15:51:10','2019-01-09',100,NULL,NULL,351,1,2,0,'2019-01-21 15:51:10'),(352,3,60,'Utilisation certificats','Bonjour,\r\n\r\nPour tester une connexion sécurisé par certificat, je procède de la façon suivante :\r\nConfiguration serveur : SecurityNone=\"False\"\r\nJe déplace le certificat du client UaExpert@pisa-043[...].der du répertoire rejected à certs.\r\n\r\nDans le client UaExpert 1.5.0\r\nSecurity policy Basic256Sha256 ou Basic256\r\nMessage Security Mode Sign & Encrypt\r\nQuand je me connecte j\'ai le message : Error BadCertificateTimeInvalid\r\n\r\nCi-joint le certificat.\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,3,'2019-01-15 10:34:08','2019-04-15 14:17:18','2019-01-15',100,NULL,NULL,352,1,2,0,'2019-04-15 14:17:18'),(353,1,60,'Erreur à l\'arrêt du Server','Bonjour,\r\n\r\nPour information parfois à l\'arrêt du serveur (V1.0.5.6 sous Debian 8.6 x64), il y a l’erreur suivante :\r\n*** Error in `/usr/local/PISA/ServerOpcUA/OpenOpcUaCoreServer\': munmap_chunk(): invalid pointer: 0x00007f69dc000d70 ***\r\n\r\nCi-joint le log.\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,1,'2019-01-15 10:40:15','2019-04-15 14:15:55','2019-01-15',100,NULL,NULL,353,1,2,0,'2019-04-15 14:15:55'),(354,2,1,'Default_Timeout to big','In some circumstance it is the DEFAULT_TIMOUT which is used and its actual value of 300000 ms is really too long. \r\nProgram seem to hang.\r\nIS it possible to reduce the use of this timeout or reduce its value to 30000 ms.',NULL,NULL,1,NULL,4,NULL,398,0,'2019-01-22 15:38:49','2019-01-22 15:38:49','2019-01-22',0,NULL,NULL,354,1,2,0,NULL),(355,1,1,'Auto reconnect during Session closing','If session closing took some time (durring debug session for instance), AutoConnect thread could restart a new but lost session.\r\n',NULL,NULL,1,NULL,4,NULL,398,0,'2019-01-22 15:42:41','2019-01-22 15:42:41','2019-01-22',0,NULL,NULL,355,1,2,0,NULL),(356,1,62,'1.0.5.6 / NodeSet xml','Bonjour M. Condemine,\r\n\r\nJ\'ai un soucis sur le projet UGCIS avec les variable de type \"CardinalityType\" défini ainsi: \r\n\r\n<pre>\r\n\r\n <UAVariableType NodeId=\"ns=1;i=51\" BrowseName=\"CardinalityType\" DataType=\"UInt32\" ValueRank=\"1\" AccessLevel=\"1\">\r\n <DisplayName>CardinalityType</DisplayName>\r\n <References>\r\n <Reference ReferenceType=\"HasSubtype\" IsForward=\"false\">i=63</Reference>\r\n </References>\r\n </UAVariableType>\r\n\r\n</pre>\r\n\r\nDonc on a spécifié un ValueRank=1 pour tableau à une dimension.\r\n\r\nPour indiquer les cardinalités, on déclare une variable de cette manière:\r\n\r\n<pre>\r\n\r\n <UAVariable NodeId=\"ns=1;i=10\" BrowseName=\"Cardinality\" DataType=\"UInt32\" AccessLevel=\"1\" UserAccessLevel=\"1\" ValueRank=\"1\">\r\n <Value>\r\n <ListOfUInt32>\r\n <UInt32>00</UInt32>\r\n <UInt32>20</UInt32>\r\n </ListOfUInt32>\r\n </Value>\r\n \r\n <DisplayName>Cardinality</DisplayName>\r\n <Description>Nombre d\'UGCIS connectables au concentrateur</Description>\r\n <References>\r\n <Reference ReferenceType=\"HasTypeDefinition\">ns=1;i=51</Reference>\r\n </References>\r\n </UAVariable>\r\n\r\n</pre>\r\n\r\nLe soucis concerne la balise <Value> qui contient un ensemble de <UInt32> => Cardinalité min et max soit 2 éléments.\r\n\r\nVous remarquerez que j\'ai mis l\'entier 0 sur deux digits car sinon ça ne fonctionne pas, la variable n\'a qu\'un seul élément dans UAExpert.\r\n\r\nJ\'ai fait différents essais et en fait, je me suis rendu compte que ça fonctionnait à partir de 10. Donc de 0 à 9, il faut spécifier la valeur sur deux digits (00 jusque 09) sinon ça ne fonctionne pas.\r\n',NULL,NULL,1,NULL,4,NULL,361,0,'2019-02-26 14:55:36','2019-02-26 14:55:36','2019-02-26',0,NULL,NULL,356,1,2,0,NULL),(357,3,56,'ConSys Key','82040000CMGVIWEBDMEZJDDCEBDG',NULL,NULL,5,328,6,NULL,1,1,'2019-03-15 16:07:17','2019-03-19 19:10:29','2019-03-15',100,NULL,NULL,357,1,2,0,'2019-03-19 19:10:29'),(358,3,60,'VpiNullEx Linux x64','Bonjour,\r\n \r\nLe VpiNullEx ne se charge pas dans le serveur ni sur la machine de dev, ni sur la cible. Comment tracer efficacement le chargement de ce Vpi et trouver le problème ?\r\n \r\nSources du VpiNullEx : sources 1.0.5.6 du serveur\r\n \r\nCompilation OpenOpcUaVpiLibrary OK :\r\nftourret@debian-027:~/Documents/ServerOpcUa/VpisSdk/OpenOpcUaVpiLibrary$ make\r\n[ 3%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/SerialPort.cpp.o\r\n[ 7%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiByteString.cpp.o\r\n[ 11%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiArgument.cpp.o\r\n[ 15%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/FileVersionInfo.cpp.o\r\n[ 19%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiVariant.cpp.o\r\n[ 23%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiSocket.cpp.o\r\n[ 26%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiQualifiedName.cpp.o\r\n[ 30%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiSemaphore.cpp.o\r\n[ 34%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiNodeId.cpp.o\r\n[ 38%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiGuid.cpp.o\r\n[ 42%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiMutex.cpp.o\r\n[ 46%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiDataValue.cpp.o\r\n[ 50%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiDatetime.cpp.o\r\n[ 53%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiThread.cpp.o\r\n[ 57%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiExtensionObject.cpp.o\r\n[ 61%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiXmlElement.cpp.o\r\n[ 65%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiExpandedNodeId.cpp.o\r\n[ 69%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiTrace.cpp.o\r\n[ 73%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/dllmain.cpp.o\r\n[ 76%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiLocalizedText.cpp.o\r\n[ 80%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/stdafx.cpp.o\r\n[ 84%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiInternalThread.cpp.o\r\n[ 88%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiString.cpp.o\r\n[ 92%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/OpenOpcUaVpiLibrary.cpp.o\r\n[ 96%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/VpiMemory.cpp.o\r\n[100%] Building CXX object CMakeFiles/OpenOpcUaVpiLibrary.dir/source/RtSocket.cpp.o\r\nLinking CXX shared library /home/ftourret/Documents/ServerOpcUa/lib/linux/Release/libOpenOpcUaVpiLibrary.so\r\n[100%] Built target OpenOpcUaVpiLibrary\r\n \r\nCompilation du Vpi OK : \r\nftourret@debian-027:~/Documents/ServerOpcUa/VpisSdk/VpiNullEx$ make\r\nScanning dependencies of target VPINullEx\r\n[ 16%] Building CXX object CMakeFiles/VPINullEx.dir/source/VPINullEx.cpp.o\r\n[ 33%] Building CXX object CMakeFiles/VPINullEx.dir/source/EntryPoints.cpp.o\r\n[ 50%] Building CXX object CMakeFiles/VPINullEx.dir/source/SourceObject.cpp.o\r\n[ 66%] Building CXX object CMakeFiles/VPINullEx.dir/source/VpiInternal.cpp.o\r\n[ 83%] Building CXX object CMakeFiles/VPINullEx.dir/source/dllmain.cpp.o\r\n[100%] Building CXX object CMakeFiles/VPINullEx.dir/source/stdafx.cpp.o\r\nLinking CXX shared library /home/ftourret/Documents/ServerOpcUa/lib/linux/Release/libVPINullEx.so\r\n[100%] Built target VPINullEx\r\n \r\nEmplacement du serveur et librairies :\r\nftourret@debian-027:~/Documents/ServerOpcUa/VpisSdk/VpiNullEx$ ls -la /usr/local/PISA/ServerOpcUa/\r\ntotal 16516\r\ndrwxr-sr-x 2 ftourret staff 4096 mars 27 11:49 .\r\ndrwxrwsrwx 5 root staff 4096 mars 18 09:54 ..\r\n-rwxr-xr-x 1 ftourret staff 1993952 mars 22 09:46 libOpenOpcUaSharedlib.so\r\n-rwxr-xr-x 1 ftourret staff 3955712 mars 22 09:46 libOpenOpcUaStack.so\r\n-rwxr-xr-x 1 ftourret staff 379528 mars 22 09:48 libOpenOpcUaVpiLibrary.so\r\n-rwxr-xr-x 1 ftourret staff 197504 mars 27 11:39 libVPINullEx.so\r\n-rwxr-xr-x 1 ftourret staff 94168 mars 22 09:49 libVPINull.so\r\n-rwxr-xr-x 1 ftourret staff 610440 mars 22 09:46 libXMLSAXParser.so\r\n-rwxr-xr-x 1 ftourret staff 9654592 mars 22 09:47 OpenOpcUaCoreServer\r\n-rwxr-xr-x 1 root staff 165 mars 27 11:49 start.sh\r\n \r\nScript de lancement start.sh :\r\n#!/bin/sh\r\nexport LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/PISA/ServerOpcUa/\r\n/usr/local/PISA/ServerOpcUa/OpenOpcUaCoreServer /config/ServerOpcUa/CPF_L04.oouaprj\r\n \r\nConfiguration SubSystemVpi.xml :\r\n…\r\n<SubSystem SubSystemId=\"ns=1;i=101\" SubSystemName=\"VpiNullEx\" VpiName=\"libVPINullEx\" AccessMode=\"Subscribe\">\r\n…\r\n \r\nLog :\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-03-27T15:32:23.000Z LoadVpiLibrary failed libVPINullEx.so error: (null)\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-03-27T15:32:23.000Z Vpi version: 0.0.0.0 cannot be loaded.\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-03-27T15:32:23.000Z Your XML Subsystem file : /config/ServerOpcUa/SubSystemVpi.xml has been parsed. Internal parsing result=0x00000\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-03-27T15:32:23.000Z Subsystems were properly loaded\r\n \r\nJe suis désolé de vous solliciter de nouveau mais j’ai dû oublier quelque chose.\r\nJ’ai refait volontairement un script « start.sh » comme vous pour être dans les même condition mais ça ne fonctionne pas…\r\n\r\nCordialement.\r\nF. TOURRET\r\n',NULL,NULL,5,1,4,NULL,353,1,'2019-03-28 08:04:30','2019-06-19 16:46:23','2019-03-28',100,NULL,NULL,358,1,2,0,'2019-06-19 16:46:23'),(359,2,62,'Fin sponsoring','Bonjour,\r\nVotre sponsoring s\'est terminé il y a 3 mois maintenant.\r\nPour continuer a bénéficier des derniers codes et du support technique je vous invite a renouveler/prolonger votre contrat.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,1,NULL,4,NULL,1,0,'2019-03-28 17:38:49','2019-03-28 17:38:49','2019-03-28',0,NULL,NULL,359,1,2,0,NULL),(360,3,60,'Pb de connexion basic256Sha256','Bonjour,\r\n\r\nAvec le client UAExpert toujours la même erreur à la connexion en Basic256Sha256:\r\nBadApplicationSignatureInvalid alors que tous les attributs du certificat sont OK dans le client.\r\n\r\n15:56:21.699 | Server Node | Server Debian VM 10.4.54.67 | Connection status of server \'Server Debian VM 10.4.54.67\' changed to \'Disconnected\'.\r\n15:58:51.947 | Server Node | Server Debian VM 10.4.54.67 | Endpoint: \'opc.tcp://localhost:4880/CPF_L04\'\r\n15:58:51.947 | Server Node | Server Debian VM 10.4.54.67 | Security policy: \'http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256\'\r\n15:58:51.948 | Server Node | Server Debian VM 10.4.54.67 | ApplicationUri: \'urn:SCBGR:PISA:CPF_L04\'\r\n15:58:51.948 | Server Node | Server Debian VM 10.4.54.67 | Used UserTokenType: Anonymous\r\n15:58:59.057 | General | | The signature algorithm returned in the server signature does not match the algorithm expected for the current security policy (returned: \'http://www.w3.org/2000/09/xmldsig#rsa-sha1\', expected: \'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256\').\r\n15:59:53.548 | Server Node | Server Debian VM 10.4.54.67 | Error \'BadApplicationSignatureInvalid\' was returned during CreateSession\r\n15:59:53.552 | Server Node | Server Debian VM 10.4.54.67 | Connection status of server \'Server Debian VM 10.4.54.67\' changed to \'Disconnected\'.\r\n\r\n\r\nJ\'ai vérifié à de nombreuse reprise et notre certificat est bon (Signature Algorithm: sha256WithRSAEncryption).\r\n\r\n',NULL,NULL,5,1,7,NULL,353,8,'2019-04-02 16:02:21','2019-04-15 14:15:07','2019-04-02',100,NULL,NULL,360,1,2,0,'2019-04-15 14:15:07'),(361,1,60,'Bug à l\'arrêt du serveur Linux x64','Bonjour,\r\n\r\nA l\'arrêt du serveur, appuie de la touche \'q\', puis attente, on obtient une erreur :\r\n*** Error in `/usr/local/PISA/ServerOpcUa/OpenOpcUaCoreServer\': double free or corruption (out): 0x00007fed10000d70 ***\r\nAborted\r\n\r\nCeci est observé en Debian 8.6 x64 et Debian 9x64 (log complet ci-joint).\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,1,'2019-04-03 11:40:23','2019-04-15 14:15:33','2019-04-03',100,NULL,NULL,361,1,2,0,'2019-04-15 14:15:33'),(362,3,56,'MultiTag sur VpiTycoEx','Bonjour Norbert,\r\nj\'ai terminé le codage du MultiTag conformement à votre demande.\r\nJ\'aurai besoin d\'une configuration XML ConSys pour valider mon implémentation.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,328,7,NULL,1,1,'2019-04-07 23:42:42','2019-05-06 17:40:44','2019-04-07',100,NULL,NULL,362,1,2,0,'2019-05-06 17:40:44'),(363,1,56,'Compte rendu essais VpiTycoEx 0.0.1.0','Bonjour Michel,\r\n\r\nCi-joint un compte rendu des essais du VpiTycoEx 0.0.1.0, je terminerai la partie UGA et AP demain.\r\nJe vous joint également le log si besoin.\r\n\r\nBien cordialement.\r\n\r\nNorbert.',NULL,NULL,5,1,5,NULL,328,5,'2019-04-16 01:09:08','2019-04-29 19:32:26','2019-04-16',100,NULL,NULL,363,1,2,0,'2019-04-29 19:32:26'),(364,1,60,'PB de génération de clé publique client','Bonjour,\r\n\r\nLe certificat client généré à la première connexion dans le répertoire \"rejected\" par le serveur OPC n\'est pas conforme au certificat envoyer par le client dans le cas d\'une clé RAS 4096 bits.\r\n\r\nCi-joint les 2 certificats et une copie d\'écran.\r\n\r\nCordialement.\r\n\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,1,'2019-04-16 11:31:04','2019-06-19 16:45:44','2019-04-16',100,NULL,NULL,364,1,2,0,'2019-06-19 16:45:44'),(365,1,62,'Redémarrage du service OpenOpcUaCoreServer','Lorsque le serveur est démarré en temps que service sous Windows:\r\n\r\n - Si on arrête le service, celui-ci passe presque immédiatement en statut \"Arrêté\" mais pour autant le processus OpenOpcUaCoreServer.exe reste en mémoire quelques instants après.\r\n\r\nça pose un problème pour le redémarrage du service (qui équivaut donc à un arrêt puis démarrage):\r\n\r\n - Le service s\'arrête puis démarre et on se retrouve avec deux instances OpenOpcUaCoreServer_Release.exe en mémoire. Et la deuxième instance plante car impossible d\'initialiser le binding à l\'écoute sur le même port que la précédente instance.\r\n\r\nPour l\'instant, je m\'en suis sorti en fournissant un script de redémarrage qui arrête le service, attend la disparition du processus en mémoire puis démarre à nouveau le service.\r\n\r\nMais si on passe par la console Windows de gestion des services, le redémarrage se passe très mal.',NULL,NULL,1,1,4,NULL,361,0,'2019-04-24 09:42:43','2019-04-24 09:42:43','2019-04-24',0,NULL,NULL,365,1,2,0,NULL),(366,3,60,'Bilan essais Siemens','Bonjour,\r\n\r\nVoici les différents essais qui ont été effectué le 19/04 dans les locaux de Siemens.\r\n\r\n1 - Echange de certificat\r\n> Le certificat client contient les éléments suivant:\r\n> CN = ACQOPCUA@ATS_CEN1\r\n> OU = ATS\r\n> O = Siemens\r\n> L = Chatillon\r\n> S = Fr\r\n> C = Fr\r\n> DC = ATS_CEN1\r\n> Connexion Basic256Sha256 avec utilisation du même certificat pour le cryptage\r\n> Dans un premier temps le certificat est rejeté systématiquement (même en plaçant le certificat public du client dans le dossier \'cert\' ou celui généré par le serveur (rejected->cert)\r\n> J\'ajoute alors dans le fichier hosts du serveur 10.48.52.33 ATS_CEN1\r\n> Le certificat n\'est plus rejeté mais côté client on a BadIdentityTokenRejeted\r\n> Nous désactivons le cryptage côté client\r\n> Certificat de nouveau rejeté...\r\n> Le problème viens t\'il du nom de domaine du certificat client non connu côté serveur ? Comment corriger le problème ?\r\n> J\'ai le certificat client, je vais procéder à de nouveaux tests avec Uaexpert.\r\n\r\n2 - Essais sans certificat\r\n> Le client se connecte et souscrit son abonnement aux différents nodes.\r\n> Ensuite il considère le serveur comme \'passif\' et coupe la connexion\r\n> Ceci est-il du au fait que les données ne sont pas initialisées dans le serveur ?\r\n> Le solution serai de créer un Vpi qui initialise les données ?\r\n\r\n3 - Arrêt involontaire du serveur\r\n> En cours d\'essais le serveur c\'est arrêté une fois...\r\n> Quel est le niveau de log à configurer dans le serveur pour traquer ce type de problème ?\r\n\r\nCordialement\r\nF. TOURRET',NULL,NULL,5,1,5,NULL,353,2,'2019-04-25 09:29:30','2019-06-19 16:45:12','2019-04-25',100,NULL,NULL,366,1,2,0,'2019-06-19 16:45:12'),(367,1,60,'VpiNullEx dans release 1.0.5.7 Beta 05','Bonjour,\r\n\r\nLe VpiNullEx est obsolète dans cette version du serveur :\r\n/home/ftourret/Documents/ServerOpcUa/VpisSdk/VpiNullEx/source/VPINullEx.cpp:55:74: error: too few arguments to function\r\n pFuncNotifyCallback(uiSizeToSend, &nodeId, pValue, &pResult, Vpi_Null);\r\n\r\nAvez-vous également une documentation à jour sur les fonction de la OpenOpcUaVpiLibrary.\r\n\r\nJe ne comprends pas non plus le CMakeLists.txt semble corrompu sur ce Vpi, je suis obligé de reprendre celui du VpiNull (en le modifiant) pour compiler...\r\n\r\nCordialement,\r\nF. TOURRET',NULL,NULL,5,1,6,NULL,353,4,'2019-04-25 16:19:34','2019-05-06 09:40:50','2019-04-25',100,NULL,NULL,367,1,2,0,'2019-05-06 09:40:50'),(368,1,56,'LS.EN_SRV','Uniquement les variables \"sollicitées\" passe en BadOutOfService, \r\nil faudrait que toutes les variables liées à la centrale non présente dans PANEL_EN_SRV soient en BadOutOfService dès le démarrage du serveur.\r\nLa variable EN_SRV des centrales en service ne passe pas à True\r\n',NULL,NULL,5,NULL,4,NULL,1,1,'2019-04-29 11:55:19','2019-05-09 15:16:16','2019-04-29',100,NULL,NULL,368,1,2,0,'2019-05-09 15:16:16'),(369,2,56,'ARR_ALM_SON','ARR_ALM_SON\r\nPour le retour à False: j\'ai fait une modification dans la prog, pouvez-vous prendre en compte uniquement l\'Event Zxx.L0006.ARR_DRG_SON, plutôt que l\'ELD 456\r\nAttention, c\'est l\'évenement ARR_DRG_SON qui est créé même pour ARR_ALM_SON\r\n',NULL,NULL,5,NULL,4,NULL,1,6,'2019-04-29 12:02:08','2019-05-10 11:32:21','2019-04-29',100,NULL,NULL,369,1,2,0,'2019-05-02 18:27:59'),(370,2,56,'ELT et ZD CMD_HS','ELT et ZD CMD_HS\r\nLes commandes ont du mal à passer lorsque la COMMON THREAD est réglée à 10s, sur 30s fonctionne mieux\r\n',NULL,NULL,5,NULL,4,NULL,1,1,'2019-04-29 12:03:11','2019-05-03 12:04:51','2019-04-29',100,NULL,NULL,370,1,2,0,'2019-05-03 12:04:51'),(371,2,56,'ACTIF','Il faudrait interroger spécifiquement l\'état du voyant \"ACTIF\" de chaque CMSI, c-a-d, faire une requete pour connaitre l\'état des points actifs du G1604',NULL,NULL,5,NULL,4,NULL,1,2,'2019-04-29 12:03:41','2019-05-10 11:17:18','2019-04-29',100,NULL,NULL,371,1,2,0,'2019-05-10 11:17:18'),(372,1,56,'MultiTag','DRG, POS_ATT, DFT_POS_ATT\r\nNodeSet OK mais pas de multitag',NULL,NULL,5,NULL,4,NULL,1,9,'2019-04-29 12:05:05','2019-05-07 17:44:31','2019-04-29',100,NULL,NULL,372,1,2,0,'2019-04-29 19:30:31'),(373,2,56,'ZC et ZF POS_ATT','Si dans les réponses, il n\'y a pas de points actifs dans une zone il faut passer POS_ATT à True, DRG à False',NULL,NULL,5,NULL,4,NULL,1,3,'2019-04-29 12:06:11','2019-05-03 12:04:15','2019-04-29',0,NULL,NULL,373,1,2,0,'2019-05-03 12:04:15'),(374,1,56,'CMD_MS_SSI','Ne passe pas à true lors d\'une commande manu (VOYANT G1601 FIXE)\r\n',NULL,NULL,5,NULL,4,NULL,1,1,'2019-04-29 12:07:47','2019-05-02 18:17:11','2019-04-29',90,NULL,NULL,374,1,2,0,'2019-05-02 18:17:11'),(375,1,56,'CMD_MS_UAE','Ce ne sont pas les bons liens réseaux ET il semble que c\'est un CMD_HS qui est envoyé.',NULL,NULL,5,NULL,4,NULL,1,9,'2019-04-29 12:08:31','2022-10-06 19:07:15','2019-04-29',100,NULL,NULL,375,1,2,0,'2022-10-06 19:07:15'),(376,1,56,'AP','LIBELLE, CMD_AP_SSI, CMD_AP_UAE, AP\r\nIl ne faut pas que les Nodes aient un lien avec les points sur les boucles.\r\nPour créer les Nodes, se baser sur le libéllé des zones présentes sur les Rbus des CMSI maitre comme pour les ZC et ZF.\r\nS\'il y a AP dans le libéllé on peut créer l\'objet avec ses variables avec le n° de zone correspondante.\r\nDans un souci d\'uniformisation , ce serait bien d\'appliquer ce principe pour les ZD également.\r\n',NULL,NULL,2,1,4,110,1,7,'2019-04-29 12:09:16','2020-10-20 11:52:35','2019-04-29',50,NULL,NULL,376,1,2,0,NULL),(377,1,56,'Decodage PointInformationReply','Bonjour,\r\nune question URGENTE :\r\nDans le decodage de PointInformationReply nous avions convenu d\'utiliser le champ AreaNumber pour les n° de zone. \r\nIl semble que ce n° ne corresponde pas au n° de la zone.\r\nPourriez vous me confirmer que l\'utilisation de la LogicalPointZone corresponde ?\r\n URGENT URGENT \r\nCordialement\r\nMichel',NULL,NULL,5,NULL,7,NULL,1,5,'2019-05-01 16:17:27','2020-10-20 11:44:42','2019-05-01',90,NULL,NULL,377,1,2,0,'2020-10-20 11:44:42'),(378,1,56,'Zone status Map','Bonjour,\r\n\r\nil y a un souci avec les Zone status map, normalement on doit recevoir un PID 132 uniquement quand il y a des changements dans les zones (abonnement) hors là on les reçoit exactement toutes les 4 minutes (à la seconde près)comme si un polling était en place,pouvez-vous vérifier ?\r\n\r\nD\'autres part, si je me souviens bien, vous aviez mis en place un désabonnement au démarrage du serveur, ce fonctionnement a t il été reconduit avec le VpiEx ?\r\n\r\n\r\nMerci.Cordialement.\r\n\r\nNF\r\n\r\nNF\r\n',NULL,NULL,5,1,4,NULL,328,1,'2019-05-07 14:51:42','2019-05-07 17:43:42','2019-05-07',100,NULL,NULL,378,1,2,0,'2019-05-07 17:43:42'),(379,1,56,'FILTRE POS_ATT','Bonjour,\r\n\r\nEst-il possible de mettre un filtre sur la prise en compte de POS_ATT , il faudrait par exemple qu\'il soit présent pendant au moins 10s pour être pris en compte.\r\n\r\nCela permettrait de régler le problème de discordance lors d\'une commande au niveau des FMSI.\r\n\r\nCdlt.\r\n\r\nNF',NULL,NULL,1,1,5,110,328,1,'2019-05-10 11:41:25','2019-05-10 11:46:21','2019-05-10',0,NULL,NULL,379,1,2,0,NULL),(380,1,56,'CMD_REINIT UGA','Bonjour,\r\n\r\nLa commande CMD_REINIT de la partie UGA fonctionne mais n\'est pas prise en compte dans la procédure de reset.\r\n\r\nCdlt.\r\n\r\nNF',NULL,NULL,1,1,4,110,328,0,'2019-05-10 11:45:05','2019-05-10 11:45:05','2019-05-10',0,NULL,NULL,380,1,2,0,NULL),(381,1,56,'ARR_ALM_SON','Bonjour,\r\n\r\nARR_ALM_SON ne passe pas à False sur reception d\'un EVD 456\r\n\r\nCdlt.\r\n\r\nNF',NULL,NULL,1,1,4,NULL,328,0,'2019-05-10 11:46:17','2019-05-10 11:46:17','2019-05-10',0,NULL,NULL,381,1,2,0,NULL),(382,1,60,'DEV VPI','Bonjour, \r\nPour valider le bon fonctionnement du VPI, je fais tourner le serveur sous valgrind.\r\nCeci m\'a permis de corrigé quelques initialisations et autres. Par contre il me reste une erreur qui doit être côté serveur : \r\n==5383== Thread 11:\r\n==5383== Invalid read of size 8\r\n==5383== at 0x4C2D940: memcpy@@GLIBC_2.14 (vg_replace_strmem.c:915)\r\n==5383== by 0x568430A: OpcUa_ParseUrl (opcua_p_utilities.c:242)\r\n==5383== by 0x561B947: OpcUa_P_SocketManager_CreateServer (opcua_p_socket_interface.c:677)\r\n==5383== by 0x560795B: OpcUa_TcpListener_Open (opcua_tcplistener.c:2346)\r\n==5383== by 0x55F2D80: OpcUa_Listener_Open (opcua_listener.c:56)\r\n==5383== by 0x5607B1E: OpcUa_SecureListener_Open (opcua_securelistener.c:290)\r\n==5383== by 0x55F2D80: OpcUa_Listener_Open (opcua_listener.c:56)\r\n==5383== by 0x5617363: OpcUa_Endpoint_Open (opcua_endpoint.c:737)\r\n==5383== by 0x523F0A: OpenOpcUa::UACoreServer::CServerApplication::Start() (ServerApplication.cpp:5964)\r\n==5383== by 0x527AB0: OpenOpcUa::UACoreServer::CServerApplication::LDSRegistrationThread(void*) (ServerApplication.cpp:7811)\r\n==5383== by 0x5603176: InternalThreadMain (opcua_thread.c:96)\r\n==5383== by 0x561CB92: pthread_start (opcua_p_thread.c:92)\r\n==5383== Address 0x8731f78 is 24 bytes inside a block of size 29 alloc\'d\r\n==5383== at 0x4C2AD10: calloc (vg_replace_malloc.c:623)\r\n==5383== by 0x55FD38C: OpcUa_P_Memory_Alloc (opcua_p_memory.c:47)\r\n==5383== by 0x56A3824: OpcUa_Memory_Alloc (opcua_memory.c:64)\r\n==5383== by 0x55F058A: OpcUa_String_AttachToString (opcua_string.c:338)\r\n==5383== by 0x561712F: OpcUa_Endpoint_Open (opcua_endpoint.c:603)\r\n==5383== by 0x523F0A: OpenOpcUa::UACoreServer::CServerApplication::Start() (ServerApplication.cpp:5964)\r\n==5383== by 0x527AB0: OpenOpcUa::UACoreServer::CServerApplication::LDSRegistrationThread(void*) (ServerApplication.cpp:7811)\r\n==5383== by 0x5603176: InternalThreadMain (opcua_thread.c:96)\r\n==5383== by 0x561CB92: pthread_start (opcua_p_thread.c:92)\r\n==5383== by 0x58E0063: start_thread (pthread_create.c:309)\r\n==5383== by 0x6D0662C: clone (clone.S:111)\r\n==5383== \r\n\r\nPouvez-vous vérifier si vous avez le même problème ?\r\n\r\nMerci.\r\n\r\nCordialement,\r\nF. TOURRET\r\n\r\n',NULL,NULL,1,1,5,NULL,353,1,'2019-05-13 08:56:48','2019-06-24 10:07:16','2019-05-13',0,NULL,NULL,382,1,2,0,NULL),(383,3,60,'Gestion d\'état du VPI et du Server','Bonjour,\r\n\r\nLors d\'une demande de VpiWarmStartNeeded, le serveur passe en état 6 communicationFault.\r\nLe VpiWarmStart() est appelé et la reconnexion à la source de données fonctionne correctement.\r\nLe VpiDeviceState passe OK, par contre le State du serveur reste à 6...\r\nDoit on faire quelquechose de particulier pour remettre l\'état du serveur à OK ?\r\n\r\nAutre question doit on gérer la date du VpiDeviceState ?\r\n\r\nCordialement,\r\nF. TOURRET',NULL,NULL,5,1,5,NULL,353,11,'2019-05-13 10:53:54','2019-05-15 17:40:38','2019-05-13',100,NULL,NULL,383,1,2,0,'2019-05-15 17:40:38'),(384,3,60,'DEV Vpi - Vpi_BadCommunicationError ','Bonjour,\r\nSur une perte de communication avec la source de données, j\'ai fais le code suivant pour passer les nodes à Vpi_BadCommunicationError.\r\n\r\nJ\'ai un plantage sur la CallBack mais je ne comprend pas pourquoi. Je doit mal l\'utiliser...\r\n\r\nvoid * ClientTCP_onDisconnect(CClientDataGen* _clientTCP, void * _params)\r\n{\r\n // Cast des paramètres dans le bon format\r\n CVpiDESPCCL04 * pVpiDESPCCL04 = (CVpiDESPCCL04*) _params;\r\n // TODO perte de connexion X\r\n // -set devicestate à WarmstartNeeded X\r\n // -set des nodeId à BadCommunicationError avec protection mutex\r\n // -Appel de la callbackserver X\r\n\r\n // On positionne le WarmStartNeed car le connexion client est coupée\r\n // Récupération de l\'objet DeviceState du Cache\r\n Vpi_NodeId DeviceStateNodeId;\r\n Vpi_NodeId_Initialize(&DeviceStateNodeId);\r\n Vpi_NodeId_CopyTo(&pVpiDESPCCL04->m_DeviceStateNodeId, &DeviceStateNodeId);\r\n\r\n // Protection du cache\r\n Vpi_Mutex_Lock(pVpiDESPCCL04->m_SourceObjectMutex);\r\n\r\n CSourceObject* deviceState = pVpiDESPCCL04->GetSourceObject(DeviceStateNodeId);\r\n // Préparation de la value\r\n Vpi_DataValue* pValue = deviceState->GetValue();\r\n pValue->Value.Value.StatusCode = Vpi_WarmStartNeed;\r\n\r\n LOG(INFO,\"onDisconnect : Appel de la CallBackServer - Vpi_WarmStartNeed\");\r\n PFUNCNOTIFYCALLBACK pFuncNotifyCallback = (PFUNCNOTIFYCALLBACK)pVpiDESPCCL04->GetNotifyCallback();\r\n // Construire la liste des nodes à passer à la callback\r\n CSourceObjectList* VpiCache = pVpiDESPCCL04->GetSourceObjectList();\r\n Vpi_UInt32 nbelements = VpiCache->size();\r\n LOG(INFO,\"Nb valeurs : %i\",nbelements);\r\n vector<CSourceObject *>::iterator it;\r\n Vpi_UInt32 i = 0;\r\n Vpi_NodeId* pIds = (Vpi_NodeId*)malloc(sizeof(Vpi_NodeId) * nbelements); // idem pour faire un tableau de pNodeIds et pValues\r\n Vpi_DataValue* pValues = (Vpi_DataValue*)malloc(sizeof(Vpi_DataValue) * nbelements); // idem pour faire un tableau de pNodeIds et pValues\r\n Vpi_StatusCode* pResult = (Vpi_StatusCode*)malloc(sizeof(Vpi_StatusCode) * nbelements); // idem pour faire un tableau de pNodeIds et pValues\r\n for (it = VpiCache->begin() ; it != VpiCache->end() ; it++)\r\n {\r\n // Pour chaque élément on positionne la valeur à Vpi_BadCommunicationError\r\n CSourceObject * Objet = *it; // On récupère l\'objet du vecteur\r\n Vpi_NodeId NodeId = Objet->GetNodeId(); // On récupére son Node\r\n Vpi_NodeId_CopyTo(&NodeId, &pIds[i]); // On le copie dans le tableau\r\n if (Vpi_NodeId_Compare(&NodeId, &DeviceStateNodeId) == 1) // On ne traite pas le VpiDeviceState déjà fait\r\n {\r\n Vpi_String tmpStr;\r\n Vpi_String_Initialize(&tmpStr);\r\n Vpi_NodeId_ToString(NodeId, &tmpStr);\r\n LOG(INFO,\"Bad comm sur le node : %s\",Vpi_String_GetRawString(&tmpStr));\r\n Vpi_DataValue_CopyTo(Objet->GetValue(), &pValues[i]); // On copie la valeur dans le tableau\r\n pValues[i].Value.Value.StatusCode = Vpi_BadCommunicationError; // On affecte le nouveau status\r\n pValues[i].Value.Value.DateTime = Vpi_DateTime_UtcNow(); // On affecte l\'heure de modification\r\n i++;\r\n Vpi_String_Clear(&tmpStr);\r\n }\r\n }\r\n // Libération du cache\r\n Vpi_Mutex_Unlock(pVpiDESPCCL04->m_SourceObjectMutex);\r\n\r\n // Appel de la call Back server\r\n pFuncNotifyCallback(nbelements, pIds, pValues, &pResult, Vpi_Null, Vpi_Null);\r\n\r\n return Vpi_Null;\r\n}\r\n\r\nMerci',NULL,NULL,5,1,6,NULL,353,10,'2019-05-14 14:13:56','2019-05-15 17:40:59','2019-05-14',100,NULL,NULL,384,1,2,0,'2019-05-15 17:40:59'),(385,3,60,'Vpi_NodeId_Compare() ','Merci de confirmer que pour un \r\n* resultat = 0, les nodeId passés en paramètres sont identiques.\r\n* resultat = 1, les nodeId passés en paramètres sont différents. \r\n',NULL,NULL,5,1,4,NULL,353,2,'2019-05-14 14:20:02','2019-06-19 16:44:22','2019-05-14',100,NULL,NULL,385,1,2,0,'2019-06-19 16:44:22'),(386,3,60,'VpiWriteValue() ','Doit on mettre à jour le cache du Vpi dans cette fonction une fois que les données sont à jour dans la sources ? (les données traitées dans VpiWrite ne sont jamais remontées dans le thread de lecture dans notre cas).',NULL,NULL,5,1,4,NULL,353,2,'2019-05-14 14:22:35','2019-06-19 16:44:00','2019-05-14',100,NULL,NULL,386,1,2,0,'2019-05-14 14:31:05'),(387,3,60,'Code de retour des EntryPoints','Nous avons vu que le code de retour de la fonction VpiWarmStart() est utilisée pour mettre à jour le VpiDeviceState.\r\nPour les autres fonctions VpiGlobalStart() et VpiColdStart() alimente le ServeurState apparemment. Qu\'en est il pour les autres ?',NULL,NULL,5,1,4,NULL,353,3,'2019-05-14 14:25:44','2019-06-19 16:44:49','2019-05-14',100,NULL,NULL,387,1,2,0,'2019-06-19 16:44:49'),(388,3,60,'Vpi Nouvelle génération','Bonjour,\r\n\r\nSerait il possible d\'avoir une structure de code de Vpi plus ressente comme vu la semaine dernière, car les seuls modèles que je possède date un peu et le powerpoint J3 aussi.\r\n\r\nMerci.',NULL,NULL,5,1,6,NULL,353,2,'2019-05-14 14:33:31','2019-06-19 16:49:40','2019-05-14',50,NULL,NULL,388,1,2,0,'2019-06-19 16:49:40'),(389,3,49,'Petites questions','Bonjour Michel,\r\n\r\nJ\'ai quelques petites questions sur le serveur OPC : \r\n-Est il possible d\'initialiser un Tableau statique de structure à une taille fixe directement dans le model?\r\n-Est il possible d\'initialiser une structure à des valeurs par défauts (je n\'ai pas réussi pour l\'instant...)directement dans le model?\r\n-Comment fait on avec uaexpert pour qu\'on ne puisse utiliser qu\'un utilisateur en particulier avec un login et mot de passe\r\n-Peut on envoyer des images avec le serveur, j\'ai réussi mais des que la taille augmente le serveur se désabonne est ce normal?\r\n-Je crois que je t\'avais déjà posé la question mais peut on aspirer un model d\'un serveur via un autre actuellement?\r\n\r\nMerci \r\n\r\nCordialement,\r\n\r\nBenoit\r\n\r\n\r\n',NULL,NULL,1,1,4,NULL,374,2,'2019-06-11 17:03:58','2019-06-11 17:20:53','2019-06-11',0,NULL,NULL,389,1,2,0,NULL),(390,3,60,'VPI gestion des SourceTimeStamp','Bonjour,\r\n\r\nDans la VpiWriteValue(), je récupère le SourceTimeStamp de la value que je convertie à notre format :\r\n Vpi_CharA* cDate = (Vpi_CharA*) malloc (sizeof(Vpi_Char) * 30);\r\n Vpi_DateTime_GetStringFromDateTime(ppValue[i]->SourceTimestamp, cDate, 30);\r\n string strDate(cDate);\r\n time_t sourceDate = CConversion::timestampToTime(strDate);\r\n string objdate = CConversion::timeGmtToLocalDate (sourceDate) + \" \" + CConversion::timeGmtToLocalTime(sourceDate);\r\n LOG(INFO,\"--> Obj Date : %s\", objdate.c_str());\r\n free(cDate);\r\nLe souci (vue dans client UAExpert : là ou je saisie la value) c\'est que le SourceTimeStamp n\'est pas modifié et je récupère tous le temps 1601-01-01T00:00:00.000Z.\r\nPouvez-vous éclairer ma lanterne sur le sujet ?\r\n\r\nDans l\'autre sens, dans le thread métier du Vpi, je souhaite mettre le SourceTimeStamp de la value avec l\'heure de la source (heure de modification de la données dans la source). Comment convertir une chaine date (\"19/06/2019 16:44:00\") ou un time_t en SourceTimeStamp ?\r\n\r\nMerci.\r\n\r\nCordialement,\r\nF. TOURRET',NULL,NULL,2,1,6,NULL,353,6,'2019-06-19 16:47:26','2019-10-08 08:56:32','2019-06-19',100,NULL,NULL,390,1,2,0,NULL),(391,1,60,'PB validation certificat','Bonjour,\r\n\r\nSuite à essais ce jour sur la version 1.0.5.7RC05 sur le PC de Mr Brandely pour les essais de demain : \r\nIl est impossible de ce connecter sur le serveur avec UaExpert et un certificat (application) nouvellement créé ! Il est rejeté systématiquement. Je pense que c\'est un problème de vérification de date de début de certificat.\r\n\r\nNous avons été obligé de reculer la date du PC de plusieurs semaines (juste pour être sur) et recréer le certificat client (avec UaExpert).\r\nRemettre le PC à la bonne date.\r\nEtablir la connexion avec le serveur, copier le certificat de rejected à certs (côté serveur) et la OK, ça fonctionne.\r\n\r\nIl me semble que l\'on avait déjà corrigé un souci de ce type.\r\nA prendre en compte pour la 1.0.5.7\r\n\r\nMerci.\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,5,1,7,NULL,353,5,'2019-06-25 15:06:21','2022-04-29 00:16:39','2019-06-25',100,NULL,NULL,391,1,2,0,'2022-04-29 00:16:39'),(392,3,60,'VPI ConnectionWarningWatchdogTimeout','Bonjour,\r\n\r\nDe façon aléatoire, a priori lors d\'un changement de valeurs rapide sur le client j\'obtiens cette erreur :\r\n08:20:26.332 | General | | [uastack] OpcUa_Channel_ResponseAvailable: Request failed! (0x800A0000)\r\n08:20:26.332 | Server Node | Server Debian 8.6x64 Dev | Connection status of server \'Server Debian 8.6x64 Dev\' changed to \'ConnectionWarningWatchdogTimeout\'.\r\n08:20:26.992 | DA Plugin | Server Debian 8.6x64 Dev | Write to node \'NS7|String|CPF_RESE_STSD_DP_CMD_INHIBITION\' succeeded [ret = Good]\r\n\r\nJe modifie un node booléen qui est lu par le VPI (Donc appel à la VPIWriteValue() qui envoi des données en TCP sans attente).\r\nPour chacun des nodes transmis en TCP, je fais une mise à jour du cache du VPI (VpiDESPCCL04->GetSourceObject(Ids[i])->SetValue(ppValue[i]);)\r\n\r\nJe ne fais pas d\'appel à la CallBack du serveur dans les EntryPoints.\r\n\r\nTous les nodes dans le DataviewAccess de UaExpert passent en rouge et BadCommunicationError sur tous les nodes pendant quelques secondes.\r\n\r\nPouvez-vous m\'expliquer le ConnectionWarningWatchdogTimeout ?\r\nQue peut-il se passer ? Je ne sais pas vraiment comment traiter ce problème...\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,3,1,4,NULL,353,10,'2019-06-27 09:15:04','2019-07-01 14:18:25','2019-06-27',90,NULL,NULL,392,1,2,0,'2019-06-27 16:02:03'),(393,1,43,'CSessionServer::FindNextSubscriptionToNotify','CSessionServer::FindNextSubscriptionToNotify is not use in the server',NULL,NULL,2,1,5,NULL,1,0,'2019-06-28 14:29:40','2019-06-28 14:29:40','2019-06-28',0,NULL,NULL,393,1,2,0,NULL),(394,1,43,'CSessionServer::GetLastPublishRequest() ','CSessionServer::GetLastPublishRequest() is not use in the server',NULL,NULL,1,1,5,NULL,1,0,'2019-06-28 14:32:48','2019-06-28 14:32:48','2019-06-28',0,NULL,NULL,394,1,2,0,NULL),(395,1,46,'Basic128Rsa15 for IdentityToken','Need to Check OpcUa_P_OpenSSL_RSA_Private_Decrypt line 651 \r\nVerify error handling.\r\nVerify messages\r\nA bug appears here when client use User/Password with Basic128Rsa15 securityMode',NULL,NULL,2,1,4,NULL,1,0,'2019-07-11 17:28:02','2019-07-11 17:28:02','2019-07-11',0,NULL,NULL,395,1,2,0,NULL),(396,1,60,'PB Compilation 1.0.7_RC06 Debian 8.6','Bonjour,\r\n\r\nNous avons un soucis de compilation sous Debian 8.6 dans OpenOpcUaStack :\r\n\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaStackV1/source/opcua_p_openssl_pki.c: In function ‘OpcUa_P_OpenSSL_CertificateStore_IsExplicitlyTrusted’:\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaStackV1/source/opcua_p_openssl_pki.c:344:2: error: ‘for’ loop initial declarations are only allowed in C99 or C11 mode\r\n for (int i = 0; i < sk_X509_num(pStOfX509); ++i) \r\n\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaStackV1/source/opcua_p_openssl_pki.c:1478:6: error: ‘for’ loop initial declarations are only allowed in C99 or C11 mode\r\n for (int ii = 0; ii < sk_X509_EXTENSION_num(pExtensions); ii++)\r\n\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaStackV1/source/opcua_p_openssl_pki.c:1610:12: error: ‘for’ loop initial declarations are only allowed in C99 or C11 mode\r\n for (int i = 0; i < sk_X509_num(pStOfX509); ++i)\r\n ^\r\nQue préconisez-vous comme solution ?\r\n\r\nNotre version de compilateur est la GNU 4.9.2, sur un Debian 9 GNU 6.3.0...\r\n\r\nMerci.\r\n\r\nCordialement\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,12,'2019-09-05 08:47:58','2019-09-09 15:29:50','2019-09-05',100,NULL,NULL,396,1,2,0,'2019-09-09 15:29:50'),(397,3,60,'Certificat serveur 1.0.5.7_RC6','Bonjour,\r\n\r\nDans cette nouvelle version le serveur ne prend pas en compte le certificat auto-signé qui est dans le répertoire CertificateStore/private.\r\nIl génère systématiquement un nouveau certificat.\r\n\r\nQu\'est-ce qui a changé entre la RC5 et la RC6 à ce sujet ?\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,2,1,4,NULL,353,20,'2019-09-09 15:16:36','2019-10-16 10:10:39','2019-09-09',0,NULL,NULL,397,1,2,0,NULL),(398,1,68,'Lenteur arret du serveur','Bonjour,\r\n\r\nL\'appui sur la touche Q arrête bien le serveur mais très lentement, le problème semble lié à l\'appel des destructeurs de la classe cdataValue sur la fonction opcua_dataValue_clear\r\nBonne continuation\r\n',NULL,NULL,1,1,4,NULL,223,0,'2019-10-10 10:03:07','2019-10-10 10:03:07','2019-10-10',0,NULL,NULL,398,1,2,0,NULL),(399,2,68,'Ajout d\'un node contenant une date issue du fichier Subsystem','Bonjour,\r\nModification vpiset pour ajouter un node contenant une date issue du fichier subsystem.\r\n\r\nex de ligne dans le subsystem\r\n\r\n<SubSystem SubSystemId=\"ns=1;i=200\" SubSystemName=\"RauEx\" VpiName=\"VPIRauUdpExd\" AccessMode=\"Subscribe\" Version=\"V191008\" PublicationDate=\"2019-10-09T16:18:44Z\">\r\n\r\n \r\nBonne journée',NULL,NULL,3,1,4,NULL,223,1,'2019-10-10 10:13:14','2019-11-10 00:08:48','2019-10-10',100,2,NULL,399,1,2,0,'2019-11-10 00:08:48'),(400,1,68,'Probleme erreur fermeture socket','Bonjour,\r\nApres réception de données, la fermeture de l\'appli (Fermeture socket) génère une erreur.\r\nCommenté dans le code vpirauudpex.cpp L42\r\nBonne continuation',NULL,NULL,1,1,4,NULL,223,0,'2019-10-10 12:06:59','2019-10-10 12:06:59','2019-10-10',0,NULL,NULL,400,1,2,0,NULL),(401,1,56,'\"plantage\" serveur V 1.0.5.7','Bonjour Michel,\r\n\r\nJ’ai mis en service le serveur V1.0.5.7,\r\nà plusieurs reprises celui-ci a « planté » au démarrage.\r\nJe vous joint les fichiers dump et logs.\r\n\r\nCordialement.',NULL,NULL,5,1,4,NULL,328,5,'2019-10-15 15:58:40','2022-10-06 19:08:22','2019-10-15',0,NULL,NULL,401,1,2,0,'2022-10-06 19:08:22'),(402,3,56,'CERTIFICATS DE SECURITE','Bonjour,\r\n\r\nComme convenu, pouvez-vous convertir les pem en tfx \r\nMerci.\r\n\r\nCordialement.',NULL,NULL,5,NULL,4,NULL,328,9,'2019-10-29 10:34:09','2022-05-24 14:11:31','2019-10-29',70,NULL,NULL,402,1,2,0,'2022-05-24 14:11:31'),(403,1,56,'Séquence de démarrage du VPI','Bonjour Michel,\r\n\r\nil faudrait modifier la séquence de démarrage du VPI de manière à s\'assurer que les variables sont d\'abord créés avant de débuter la communication.\r\nIl faudrait également que les différentes demandes envoyées sur le réseau SSI soient espacées.\r\nActuellement, il semble que tout démarre en même temps et cela génère des problèmes au niveau du réseau SSI = saturation de la communication entre les centrales.\r\n\r\nCordialement.\r\n\r\nNorbert.',NULL,NULL,1,1,4,110,328,0,'2019-10-31 09:40:16','2019-10-31 09:40:16','2019-10-31',0,NULL,NULL,403,1,2,0,NULL),(404,1,60,'Compilation Linux x64 Serveur 1.0.5.7_RC09','Bonjour,\r\n\r\nUne petite anomalie bloque la compilation du serveur 1.0.5.7_RC09 sous linux.\r\n\r\n/home/ftourret/workspace-2019/ServerOpcUa/OpenOpcUaCoreServer/source/ServerApplication.cpp:9384:104: error: ‘szProjectFolder’ was not declared in this scope\r\n sprintf(pszOOAUAuthenticationFileName, \"%s/OOUAUserAuthentication.txt\", OpcUa_String_GetRawString(&szProjectFolder));\r\n\r\nJ\'ai remplacé la variable incriminé szProjectFolder par m_ProjectFolder comme 3 lignes au dessus dans la partie Windows.\r\n\r\nMerci de confirmer et prendre en compte cette correction.\r\n\r\nSinon tout le reste compile correctement. Par contre maintenant j\'ai un plantage dans le VPI :\r\n<pre>\r\nterminate called after throwing an instance of \'std::logic_error\'\r\n what(): basic_string::_S_construct null not valid\r\nAborted\r\n</pre>\r\n\r\nJe recherche une solution, c\'est surement du à une évolution de traitement des erreurs dans le VPI, comme nous l\'avons évoqué ce matin.\r\n \r\n\r\nCordialement,\r\nF. TOURRET\r\n\r\n',NULL,NULL,3,NULL,4,NULL,353,12,'2019-11-07 15:01:06','2019-11-18 10:15:08','2019-11-07',100,NULL,NULL,404,1,2,0,'2019-11-18 10:15:08'),(405,3,57,'Can you post the \"OpenOpcUaConfigManager\" again','Hi Michel,\r\n\r\nHow have you been? Busy as usual?\r\nWe are finally began working on the OPC UA Server based on your project.\r\nI remember you shared with us the \"OpenOpcUaConfigManager\", the QT-based gui tool.\r\n\r\nCan you share the code with us again.\r\n\r\nThanks,\r\n\r\nJason ',NULL,NULL,1,NULL,4,NULL,333,1,'2019-11-08 02:16:46','2019-11-19 03:17:22','2019-11-08',0,NULL,NULL,405,1,2,0,NULL),(406,1,68,'Compilation impossible OpenOpcUa_1_0_5_7_RC10 et absence VPI','Bonjour Michel,\r\nCette demande fait suite à mon mail de vendredi 15/11/19\r\n\r\n1) Dans l\'archive livrée, il manque des fichiers afxres.h aux projets Xparer, Stack, Sharelib et CoreServer.\r\nJe ne peux pas recompiler ces projets et faire mes tests d\'application.\r\n\r\n2) Il n\'y a pas de VPI dans l\'archive. Tu devais jetter un oeil au code, et corriger le problème du delete dans le destructeur qi engendre une erreur.\r\n\r\nCela va devenir critique pour moi, je suis attendu par mon client la semaine prochaine.\r\n\r\nMerci\r\nFrédéric',NULL,NULL,5,1,6,NULL,223,2,'2019-11-18 09:22:02','2020-10-19 13:52:19','2019-11-18',100,NULL,NULL,406,1,2,0,'2020-10-19 13:52:19'),(407,1,60,'Server 1.0.5.7_RC11','Bonjour,\r\n\r\nDésolé mais cette version à le même problème que la RC09 => Segfautl à la connexion d\'un client !\r\n\r\nEst-ce les bonnes sources ? Problème de configuration ?\r\n\r\nTesté en sécurity None dans notre projet (sans Vpi) en Debian 8 et en Debian 9 sources non modifiées (Sans Vpi) !\r\n\r\nEncore perdu 1h. Ci-joint le fichier d\'exécution sous valgrind, les logs, la conf.\r\n\r\nCordialement.\r\n\r\nF. TOURRET',NULL,NULL,5,1,4,NULL,353,8,'2019-11-19 10:54:15','2019-11-22 02:10:26','2019-11-19',100,NULL,NULL,407,1,2,0,'2019-11-22 02:10:26'),(408,2,60,'Vpi_String_GetRawString','Bonjour,\r\n\r\nJ\'utilise la fonction Vpi_String_GetRawString() pour convertir un Vpi_String en String C pour l\'utiliser dans un log par exemple.\r\nSi par mégarde on lui passe en paramètre un Vpi_String qui pointe sur Null ou qui contient Null (ne je sais pas exactement), on a un plantage direct.\r\n<pre>\r\nterminate called after throwing an instance of \'std::logic_error\'\r\n what(): basic_string::_S_construct null not valid\r\n</pre>\r\nPour éviter ceci, il faut faire un test avec Vpi_String_IsNull() avant d\'utiliser la fonction Vpi_String_GetRawString().\r\n\r\nPour éviter le plantage brutal, est-ce le test de Vpi_String_IsNull() ne peut pas être intégré dans la fonction Vpi_String_GetRawString() ? Elle retournerai alors un string vide.\r\n\r\nCordialement.\r\nF. TOURRET',NULL,NULL,1,NULL,4,NULL,353,1,'2019-11-22 08:08:50','2019-11-22 15:38:57','2019-11-22',0,NULL,NULL,408,1,2,0,NULL),(409,3,60,'Serveur 1.0.5.7_RC12 et VPI','Bonjour,\r\n\r\nDepuis la RC11, au démarrage du serveur j\'ai un appel de la Vpi_Write_Value avec l\'ensemble des nodes définit dans la cache du VPI (337). Je n\'avait pas ce comportement avec la RC05.\r\n\r\nEst-ce nouveau ? Pourquoi le serveur déclenche une VpiWriteValue ? Peut-on le désactiver ?\r\n\r\nCar dans la VpiParseAddId, je met les Status de nodes à Vpi_UncertainInitialValue car on a pas encore lues de données dans la source. La source monitor plusieurs équipements, si un des équipement n\'est pas actif, les valeurs dans les nodes doivent restés à Vpi_UncertainInitialValue. Mais le fait d\'avoir la Vpi_Write_Value qui ce déclenche, je récupère des status à Vpi_Good...\r\n\r\nMerci de m\'éclaircir la situation.\r\n\r\nCordialement.\r\n\r\nF. TOURRET',NULL,NULL,4,NULL,4,NULL,353,7,'2019-11-22 11:18:25','2020-01-15 15:33:40','2019-11-22',0,NULL,NULL,409,1,2,0,NULL),(411,3,60,'Gestion des certificats client','Bonjour,\r\n\r\nJuste une question concernant les certificats clients qui deviennent obsolètes présent dans certs sont\'ils déplacés par le serveur dans rejected ? Si oui, je suppose que c\'est au moment de la connexion d\'un client (quand le serveur parcours les certificats).\r\n\r\nMerci.\r\n\r\nF. TOURRET',NULL,NULL,2,NULL,4,NULL,353,2,'2019-11-25 07:36:31','2019-11-26 09:06:55','2019-11-25',0,NULL,NULL,411,1,2,0,NULL),(412,1,56,'Prise en compte CMSI maitre','Bonjour,\r\n\r\nl\'ajout d\'un 2ème CMSI \"maitre\" (paramètre CMSI_MASTER_LIST dans le fichier Tyco-00200.dat) n\'est pas prise en compte dans la création des variables.\r\n\r\nCordialement.\r\n\r\nNorbert',NULL,NULL,5,1,5,110,328,3,'2019-12-09 19:45:13','2019-12-18 19:25:18','2019-12-09',100,NULL,NULL,412,1,2,0,'2019-12-18 14:44:15'),(413,3,58,'Version 1.0.5.7','Bonjour monsieur Condemine,\r\n\r\nQuelles sont les adaptations à faire au niveau du code du VPI pour utiliser cette version ?\r\nQuels sont les éventuels ajouts ou modifications à apporter aux fichiers de configuration (« *.oouaprj », au fichier d’instance des nœuds xml et au fichier « subsystem.xm » ?\r\n\r\nCordialement,\r\nOlivier Pesle.\r\n',NULL,NULL,3,1,5,NULL,347,1,'2020-02-06 17:14:55','2020-02-10 10:09:48','2020-02-06',0,NULL,NULL,413,1,2,0,'2020-02-10 10:09:48'),(414,3,58,'1.0.5.7 : VpiWriteValue au lancement du VPI','Bonjour monsieur Condemine,\r\n\r\nY\'a-t-il un moyen de désactiver le premier appel à VpiWriteValue, qui semble être utilisé pour initialiser les valeurs des nœuds définies dans le fichier xml des instances ?\r\nCet appel n\'existait pas dans la version que nous utilisions auparavant.\r\n\r\nCordialement,\r\nOlivier Pesle.',NULL,NULL,5,1,5,NULL,347,2,'2020-02-10 10:34:04','2020-02-12 21:21:18','2020-02-10',100,NULL,NULL,414,1,2,0,'2020-02-12 21:21:18'),(415,3,58,'Utilisation des certificats ssl','Bonjour monsieur Condemine,\r\n\r\nConcernant les certificats de sécurité, nous disposons des fichiers suivants fournis par ADP :\r\n\r\nrca.crl\r\nrca.der\r\nrca.pem\r\nsp403sichubuae1-bundle.pem\r\nsp403sichubuae1.der\r\nsp403sichubuae1.pem\r\nsp403sichubuae1.pfx\r\nsp403sichubuae1_key.pem\r\ntca.crl\r\ntca.der\r\ntca.pem\r\n\r\nPouvez-vous nous indiquer quels fichiers sont utiles et nécessaires côté serveur et dans quels répertoires les placer ?\r\nMerci !',NULL,NULL,1,1,5,NULL,347,1,'2020-02-12 16:53:57','2020-02-12 21:31:16','2020-02-12',0,NULL,NULL,415,1,2,0,NULL),(416,3,58,'Utilisation des certificats ssl','De manière générale, quels sont les étapes à suivre pour l\'utilisation de certificats de sécurité côté serveur ?\r\nMerci!',NULL,NULL,6,1,5,NULL,347,1,'2020-02-12 18:04:31','2020-02-12 21:32:10','2020-02-12',100,NULL,NULL,416,1,2,0,'2020-02-12 21:32:10'),(417,1,70,'Documentation etape','Il existe 20 étapes rincage. \r\nElles sont codées en dur. \r\nAttente documentation from SK',NULL,NULL,5,NULL,4,NULL,1,2,'2020-02-20 15:29:22','2022-02-18 15:22:01','2020-02-20',100,NULL,NULL,417,1,2,0,'2022-02-18 15:22:01'),(418,1,54,'Update with Array of String','La mise à jour de tableau de chaines en utilisant l\'API semble poser un problème.\r\nUne solution a été appliqué dans le code du serveur.\r\ncependant cette solution ne sera pas diffusé sans une serie de tests en profondeur sur\r\nDataValue.cpp methode CDataValue::SetValue(OpcUa_Variant Value) \r\nTransfertArray(String); // This transfert function is working with the VpiDirectAccess but it can cause leak issue of other problem with the CTT. Need to be check in deep',NULL,NULL,2,1,4,NULL,1,0,'2020-02-20 23:06:24','2020-02-20 23:06:24','2020-02-20',50,NULL,NULL,418,1,2,0,NULL),(419,3,58,'Gestion des certificats : mise à jour de la liste de révocation','Bonjour monsieur Condemine,\r\n\r\nLors d\'une mise à jour de la liste de révocation des certificats (fichier tca.crl dans CertificateStore\\certs\\crl), la stack OpcUa prend-elle automatiquement en compte le nouveau fichier, ou faut-il pour cela redémarrer le serveur ?\r\n\r\nCordialement,\r\nOlivier Pesle.',NULL,NULL,5,1,6,NULL,347,1,'2020-02-27 10:25:35','2020-03-02 11:30:31','2020-02-27',100,NULL,NULL,419,1,2,0,'2020-03-02 11:30:31'),(420,1,70,'SamesKremlin API ','- Ajout commentaires au mécanismes d\'adressage des données process',NULL,NULL,5,NULL,4,NULL,420,1,'2020-02-28 10:40:34','2020-02-28 12:54:33','2020-02-28',100,NULL,NULL,420,1,2,0,'2020-02-28 12:54:33'),(421,3,58,'Connection à distance avec certificats','Bonjour monsieur Condemine,\r\n\r\nChubb a fait des essais dans les locaux d\'ADP, ils arrivent à se connecter avec un client sur le même PC que le serveur, mais ont rencontré un problème pour se connecter à distance (avec UA Expert), qu\'ils ont résolu de la façon suivante :\r\n\"nous avons recopié le fichier définissant la machine hébergeant UAExpert depuis « Projets\\CSSI_ADP_P3\\CertificateStore\\rejected\\xxxxxxx.der » dans « Projets\\CSSI_ADP_P3\\CertificateStore\\certs\\\"\r\nAvez-vous déjà rencontré un problème similaire, et quelle peut en être la cause ?\r\nA quoi correspondent les fichiers générés par le serveur dans le répertoire \'CertificateStore\\rejected\' d\'un projet ?\r\n\r\nCordialement,\r\nOlivier Pesle.',NULL,NULL,2,1,4,4,347,1,'2020-03-11 17:14:05','2020-03-11 17:19:00','2020-03-11',50,NULL,NULL,421,1,2,0,NULL),(422,1,71,'Crash serveur','Je viens de relancer ce matin meme type de crash\r\n\r\n\r\nlog du client Matrikon\r\nChannelInterrupted : BadUnexpectedError: An unexpected error occurred.(0x80010000)\r\nTechPapUAServer - Session - 1\r\n\r\nlog OPC UA\r\n2020-06-19T06:24:59.327Z SERVER_ERROR Now will try to parse: .\\Project\\Opc.Ua.NodeSet2.Part3.xml\r\n2020-06-19T06:24:59.382Z SERVER_ERROR Your XML configuration file : .\\Project\\Opc.Ua.NodeSet2.Part3.xml has been parsed. AddressSpace initialization result=0x00000\r\n2020-06-19T06:24:59.387Z SERVER_ERROR fixing the orphan dataType declaration\r\n2020-06-19T06:24:59.393Z SERVER_ERROR Orphan dataType declaration fixed\r\n2020-06-19T06:24:59.398Z SERVER_ERROR Now will try to parse: .\\Project\\Opc.Ua.NodeSet2.Part4.xml\r\n2020-06-19T06:24:59.514Z SERVER_ERROR Your XML configuration file : .\\Project\\Opc.Ua.NodeSet2.Part4.xml has been parsed. AddressSpace initialization result=0x00000\r\n2020-06-19T06:24:59.521Z SERVER_ERROR fixing the orphan dataType declaration\r\n2020-06-19T06:24:59.526Z SERVER_ERROR Orphan dataType declaration fixed\r\n2020-06-19T06:24:59.532Z SERVER_ERROR Now will try to parse: .\\Project\\Opc.Ua.NodeSet2.Part5.xml\r\n2020-06-19T06:24:59.960Z SERVER_ERROR Your XML configuration file : .\\Project\\Opc.Ua.NodeSet2.Part5.xml has been parsed. AddressSpace initialization result=0x00000\r\n2020-06-19T06:24:59.965Z SERVER_ERROR fixing the orphan dataType declaration\r\n2020-06-19T06:24:59.971Z SERVER_ERROR Orphan dataType declaration fixed\r\n2020-06-19T06:24:59.977Z SERVER_ERROR Start Post-Parsing initialization\r\n2020-06-19T06:24:59.983Z SERVER_ERROR Start Updating UAVariablesBuiltinType\r\n2020-06-19T06:24:59.990Z SERVER_ERROR Start Updating inverse references\r\n2020-06-19T06:24:59.995Z SERVER_ERROR End Post-Parsing. Threads running...\r\n2020-06-19T06:25:00.007Z SERVER_ERROR Root =.\\Project\\CertificateStore TrustedLocation=\\certs RevokeLocation IssuerLocation=\\crl RevokedIssuerLocation=\\auth\r\n2020-06-19T06:25:00.017Z SERVER_ERROR Root =.\\Project\\CertificateStore TrustedLocation=\\certs RevokeLocation IssuerLocation=\\crl RevokedIssuerLocation=\\auth\r\n2020-06-19T06:25:00.025Z SERVER_ERROR Root of the certificateStore: .\\Project\\CertificateStore\r\n2020-06-19T06:25:00.077Z SERVER_ERROR VpiTP.dll was properly loaded\r\n2020-06-19T06:25:00.083Z SERVER_ERROR VpiGlobalStop successfully loaded\r\n2020-06-19T06:25:00.088Z SERVER_ERROR VpiGlobalStart successfully loaded\r\n2020-06-19T06:25:00.094Z SERVER_ERROR Extension found in the server certificate are :\r\n2020-06-19T06:25:00.100Z SERVER_ERROR DC=TP-14p_I5_DM:\r\n2020-06-19T06:25:00.106Z SERVER_ERROR O=OpenOpcUa:\r\n2020-06-19T06:25:00.112Z SERVER_ERROR CN=TechPapUAServer:\r\n2020-06-19T06:25:00.118Z SERVER_ERROR VpiColdStart successfully loaded\r\n2020-06-19T06:25:00.124Z SERVER_ERROR Your certificate validate your server \r\nfrom: 18/06/2020 16:10:45.000\r\n \r\nto: 13/06/2021 16:10:44.000\r\n\r\n2020-06-19T06:25:00.130Z SERVER_ERROR VpiWarmStart successfully loaded\r\n2020-06-19T06:25:00.136Z SERVER_ERROR VpiReadValue successfully loaded\r\n2020-06-19T06:25:00.142Z SERVER_ERROR VpiWriteValue successfully loaded\r\n2020-06-19T06:25:00.148Z SERVER_ERROR VpiParseAddId successfully loaded\r\n2020-06-19T06:25:00.154Z SERVER_ERROR VpiParseAddId successfully loaded\r\n2020-06-19T06:25:00.160Z SERVER_ERROR VpiParseRemoveId successfully loaded\r\n2020-06-19T06:25:00.166Z SERVER_ERROR NotifyCallback successfully loaded\r\n2020-06-19T06:25:00.172Z SERVER_ERROR Reference DeviceName for Vpi VpiTP.dll version: 0.0.0.2 is TechPap\r\n2020-06-19T06:25:00.179Z ALWAYS Server is listening on IPV6 at :\r\n opc.tcp://TP-14p_I5_DM:1106/TechPapUAServer.\r\n\r\n2020-06-19T06:25:00.187Z SERVER_ERROR Vpi VpiTP.dll loaded sucessfully\r\n2020-06-19T06:25:00.194Z ALWAYS 1058 Nodes in the addressSpace split in \r\n 142 Objects 680 Variables 0 Views 21 Methods \r\n 63 ObjectTypes 23 ReferenceTypes 107 DataTypes 22 VariableTypes\r\n2020-06-19T06:25:00.201Z SERVER_ERROR Server Endpoint open. It\'s now listening at opc.tcp://TP-14p_I5_DM:1106/TechPapUAServer with Binary Encoder\r\n2020-06-19T06:25:00.209Z ALWAYS Press Q or q to exit.\r\n\r\n2020-06-19T06:25:00.215Z SERVER_ERROR Your XML Subsystem file : .\\Project\\Opc.UA.SubSystem.TechPap.xml has been parsed. Internal parsing result=0x00000\r\n2020-06-19T06:25:00.222Z SERVER_ERROR Subsystems were properly loaded\r\n2020-06-19T06:25:00.232Z SERVER_ERROR Start Updating UAVariables EncodeableObject\r\n2020-06-19T06:25:00.239Z SERVER_ERROR UAVariables EncodeableObject has been updated properly\r\n2020-06-19T06:25:00.246Z SERVER_ERROR Start Updating DataTypes EncodingType\r\n2020-06-19T06:25:00.253Z SERVER_ERROR DataTypes EncodingType has been updated properly\r\n2020-06-19T06:25:00.260Z SERVER_ERROR End Post-Parsing initialization\r\n\r\n',NULL,NULL,5,1,4,NULL,426,1,'2020-06-19 08:40:54','2020-07-15 16:04:10','2020-06-19',100,NULL,NULL,422,1,2,0,'2020-07-15 16:04:10'),(423,1,71,'Fichier TechPap-00200.dat','Bonjour\r\n\r\nJe viens de tester à priori c est OK\r\nJuste une question :\r\nJe ne comprends pas le chemin du fichier de data dans le fichier de config TechPap-00200.dat du dossier Projet\r\nSi on change le nom ca fonctionne par contre le dossier n est pas pris en compte\r\nVotre exemple est comme chemin > DATA_FILENAME .\\Project\\MaquetteLabo\\e2d.ini\r\nOr quand je fais un sous dossier MaquetteLabo de projet il ne prends pas e2d.ini dedans mais dans le dossier projet ?\r\nsi on change le chemin ailleurs c est idem\r\nBonne journée\r\n\r\nDominique\r\n',NULL,NULL,5,1,3,NULL,426,2,'2020-06-22 11:43:12','2020-10-19 13:49:08','2020-06-22',100,NULL,NULL,423,1,2,0,'2020-10-19 13:49:08'),(424,1,71,'Fichier TechPap-00200.dat','Bonjour\r\n\r\nJe viens de tester à priori c est OK\r\nJuste une question :\r\nJe ne comprends pas le chemin du fichier de data dans le fichier de config TechPap-00200.dat du dossier Projet\r\nSi on change le nom ca fonctionne par contre le dossier n est pas pris en compte\r\nVotre exemple est comme chemin > DATA_FILENAME .\\Project\\MaquetteLabo\\e2d.ini\r\nOr quand je fais un sous dossier MaquetteLabo de projet il ne prends pas e2d.ini dedans mais dans le dossier projet ?\r\nsi on change le chemin ailleurs c est idem\r\nBonne journée\r\n\r\nDominique\r\n',NULL,NULL,5,1,3,NULL,426,2,'2020-06-22 11:43:21','2020-07-15 16:12:21','2020-06-22',100,NULL,NULL,424,1,2,0,'2020-07-15 16:12:21'),(425,1,71,'Fichier TechPap-00200.dat','Bonjour\r\n\r\nJe viens de tester à priori c est OK\r\nJuste une question :\r\nJe ne comprends pas le chemin du fichier de data dans le fichier de config TechPap-00200.dat du dossier Projet\r\nSi on change le nom ca fonctionne par contre le dossier n est pas pris en compte\r\nVotre exemple est comme chemin > DATA_FILENAME .\\Project\\MaquetteLabo\\e2d.ini\r\nOr quand je fais un sous dossier MaquetteLabo de projet il ne prends pas e2d.ini dedans mais dans le dossier projet ?\r\nsi on change le chemin ailleurs c est idem\r\nBonne journée\r\n\r\nDominique\r\n',NULL,NULL,5,1,3,NULL,426,1,'2020-06-22 11:43:42','2020-07-15 16:11:26','2020-06-22',100,NULL,NULL,425,1,2,0,'2020-07-15 16:11:26'),(426,1,71,'Heures Serveur / PC','Je pense pas que cela soit une anomalie mais juste pour bien comprendre :\r\n- l\'heure du fichier comme celle de du champs time est 11:54\r\n> l heure est prise comme heure UTC donc ServerTimestamp est a 11:54\r\n> Source Timestamp est marqué à 13h54 ?? \r\n Pourquoi ? il voit que la machine est en UTC +2 donc il dit qu\'il a pris la donnée à 13:54\r\nSi Vous avez accès a la zone du serveur je pense qu\'il faut basculer l\'heure directement et donc prendre l\'heure en UTC+2 donc dans notre cas retrancher 2h\r\nSinon ca va être difficilement comprehensible\r\nOu prendre l\'heure fichier histoire que tout soit coherent\r\nou dans le fichier de config mettre le decalage souhaité entre local et UTC ( TechPap-00200.dat ligne exemple: UTCtoLocal +2 )\r\npour moi on doit avoir en 2 et 3 la meme heure\r\n\r\nQu\'en pensez vous\r\n\r\nDominique\r\n',NULL,NULL,5,1,4,NULL,426,3,'2020-06-22 12:10:26','2020-10-19 13:49:30','2020-06-22',100,NULL,NULL,426,1,2,0,'2020-10-19 13:49:30'),(427,1,71,'Plantage ou ? du serveur OPC UA','Bonjour\r\n\r\nJ ai mis en test le serveur sur le PC de la salle de reunion, j ai eu un arret du serveur je ne sais pas trop pourquoi ??\r\nJe vous passe une copie d\'ecran du client\r\nJe l ai relancé ave le dump pour vous passer plus d\'info\r\nBon week end\r\nDominique',NULL,NULL,5,1,4,NULL,426,2,'2020-06-26 16:53:35','2020-10-19 13:51:32','2020-06-26',100,NULL,NULL,427,1,2,0,'2020-10-19 13:51:32'),(428,1,71,'Dump file de l amomalie 427 ( rapport d avant )','',NULL,NULL,5,NULL,4,NULL,426,2,'2020-06-26 17:33:00','2020-10-19 13:51:15','2020-06-26',100,NULL,NULL,428,1,2,0,'2020-10-19 13:51:15'),(429,1,47,'Ordre d\'enregistrement dans le fichier OOUAPRJ','Le fichier de simulation est enregistré avant les fichiers nodeset.\r\nCela posera un problème. Il faut corriger l\'ordre d\'enregistrement',NULL,NULL,2,1,4,NULL,1,0,'2020-07-05 18:33:53','2020-07-05 18:33:53','2020-07-05',0,NULL,NULL,429,1,2,0,NULL),(431,1,47,'La selection d\'un node ne pointe pas sur le fichier nodeset associé.','La selection d\'un node ne pointe pas sur le fichier nodeset associé. Cela provoque facilement des erreurs de configuration.\r\nCorriger ce comportement',NULL,NULL,5,1,4,NULL,1,1,'2020-07-06 18:16:26','2020-07-06 22:53:03','2020-07-06',100,NULL,NULL,431,1,2,0,'2020-07-06 22:53:03'),(432,1,73,'Ecriture des FLOAT sur le serveur MODBUS ','J\'ai un souci sur l\'interprétation des FLOAT. Par exemple j\'écris 5000 sur le client OPC UA et j\'obtiens 4992 sur WINTUN (après vérification au niveau du serveur MODBUS j\'ai bien 4992). Le deuxième mot n\'est pas écrit sur le serveur Modbus. \r\nEn binaire :\r\n5000 :01000101 10011100 01000000 00000000\r\n4992 :01000101 10011100 00000000 00000000\r\n\r\nJe suis à disposition pour toutes questions. \r\n',NULL,NULL,3,1,4,NULL,428,3,'2020-07-29 15:14:10','2020-07-30 16:34:58','2020-07-29',90,NULL,NULL,432,1,2,0,'2020-07-29 23:11:25'),(433,3,73,'Documentations VPIs + outil de configuration','Serait il possible d\'avoir les documentations des différents VPI + l\'outil de configuration à disposition sur le redmine ?\r\n',NULL,NULL,5,1,4,NULL,428,2,'2020-07-29 15:30:22','2021-04-09 18:22:48','2020-07-29',100,NULL,NULL,433,1,2,0,'2021-04-09 18:22:48'),(434,1,73,'Int32 interprétation + conf LITTLE/BIG ENDIAN','Bonjour M.CONDEMINE, \r\n\r\n* Dans le cas d\'un INT32, je mets la valeur 1 dans le client OPCUA afin de l\'écrire dans le serveur modbus. Dans celui-ci j\'obtiens les données suivantes : \r\n000EH:<0000H>\r\n000FH:<0100H>\r\nLa pj représente les différentes interprétations que nous pouvons avoir selon little/big endian (mid ou pas). \r\nDès que j\'écris la valeur 1 elle se transforme côté client opc ua et wintun en 256 alors que la valeur 1 était désirée. \r\nPouvez vous vérifier l\'interprétation des INT32 ? \r\n\r\n* Lorsque je change de BIG Endian à LITTLE Endian je ne vois pas de différence dans l\'interprétation. Pouvez vous m\'expliquer comment cela fonctionne ? \r\n\r\nMerci d\'avance, \r\n\r\nAlexis\r\n',NULL,NULL,3,1,4,157,428,4,'2020-07-30 14:34:07','2021-03-02 15:19:55','2020-07-30',100,NULL,NULL,434,1,2,0,'2021-03-02 15:19:55'),(435,1,74,'Reading with index ranges','1. Reading with IndexRanges is working fine for most of possible IndexRange values.\r\na. IndexRange “0”: BadIndexRangeInvalid\r\nb. IndexRange “1”: All results are good and the expected value is returned.\r\nc. IndexRange “2”: All results are good, but the server provide the values for IndexRange “1:2”\r\nd. IndexRange “3”: All results are good, but the server provide the values for IndexRange “1:3”\r\ne. …\r\nf. IndexRange “0:3”: All results are good and the expected values are returned\r\nSo it looks like all is fine except for single elements with an different IndexRange than 1.\r\nThis has been tested with the SampleClient from the OPC Foundation.\r\n',NULL,NULL,2,1,4,NULL,1,6,'2020-08-12 10:13:17','2020-08-14 12:14:09','2020-08-12',0,NULL,NULL,435,1,2,0,NULL),(436,1,74,'Write Index ranges','When writing with IndexRange to the Byte-Array node and using a ByteString as value, the Byte-Array will only contain the previously written value.\r\nThis has been tested with the SampleClient of the OPC Foundation and the value was observed with the UaExpert.\r\n',NULL,NULL,2,1,4,NULL,1,2,'2020-08-12 10:14:44','2020-08-13 07:32:14','2020-08-12',50,NULL,NULL,436,1,2,0,NULL),(437,1,74,'StatusCode error on monitoring on object','When monitoring other attributes than the value attribute, the creation of the MonitoredItem succeeds and the values were provided. But if there is no value available (for example when monitoring the DataType attribute of an object) no bad status code is provided. The creation of an MonitoredItem with the AttributeId set to an invalid attribute can be handled by two way. Either the creation of the MonitoredItem should fail (OperationResult = BadAttributeIdInvalid), or the creation succeeds but a bad status code (BadAttributeIdInvalid) is provided via the Publish service.\r\nThis has been tested with dataFEED OPC UA Client.\r\n',NULL,NULL,3,1,4,NULL,1,1,'2020-08-12 10:16:15','2020-08-12 12:59:17','2020-08-12',100,NULL,NULL,437,1,2,0,'2020-08-12 12:59:17'),(438,1,74,'UserTokenIssues','When disabling an UserIdentityToken, the Token is still available in the EndpointDescription. Connecting using this TokenType is not possible. It is expected that disabled SecurityPolicies and UserIdentityTokens are not available in the EndpointDescription.\r\nThis has been tested with the UaExpert and a disabled Anonymous Token.\r\n',NULL,NULL,3,1,4,NULL,1,1,'2020-08-12 10:19:33','2020-08-12 10:20:05','2020-08-12',100,NULL,NULL,438,1,2,0,'2020-08-12 10:20:05'),(439,1,74,'OOUA CTTs Nodeset issues','There are several issues in the address space of the server.\r\n* Ns=2;i=200 , ns=2;i=1 and all nodes organized by this folder have a HasModellingRule-Reference. This reference is intended to be used in TypeDefinitions only.\r\n* There are 2 references (1x HasComponent and 1x Organizes) in the folders ns=2;i=1 and ns=2;i=2 to the same node. This is allowed but not common behavior.\r\n* Nodes in the folders Arrays and Scalar has the TypeDefinition PropertyType but are referenced with a HasComponent-Reference. Either the TypeDefinition has to be changed or the ReferenceType.\r\n* The (User-)Executable attributes of the GetMonitoredItems method are set to false but the method can be called.\r\n',NULL,NULL,3,1,4,NULL,1,1,'2020-08-12 10:21:38','2020-08-12 10:22:48','2020-08-12',100,NULL,NULL,439,1,2,0,'2020-08-12 10:22:48'),(440,1,74,'Issues in SubSystem related nodes','The (User-)WriteMask attributes of the node ns=1;i=1 (and all nodes in it) are set to 1 (which means that the AccessLevel is writable) but writing to the AccessLevel attribute fails.',NULL,NULL,3,1,4,NULL,1,1,'2020-08-12 10:24:14','2020-08-12 10:24:38','2020-08-12',100,NULL,NULL,440,1,2,0,'2020-08-12 10:24:38'),(441,1,74,'Missing flags in the KeyUsage field','The ServerCertificate is not valid (missing flags in the KeyUsage field)\r\nIn the certificate “nonRepudiation” and “keyEncipherment” are missing.',NULL,NULL,3,1,4,NULL,1,1,'2020-08-12 10:29:26','2020-08-12 17:24:33','2020-08-12',100,NULL,NULL,441,1,2,0,'2020-08-12 17:24:33'),(442,1,74,'Nonce not provided on SecurityPolicy#None','The server does not provide a ServerNonce in the CreateSessionResponse if SecurityPolicy#None is used.',NULL,NULL,3,1,4,NULL,1,3,'2020-08-12 10:32:21','2020-08-13 15:57:20','2020-08-12',90,NULL,NULL,442,1,2,0,'2020-08-12 10:34:21'),(443,1,74,'First PublishResponse has to be sent after the first Publishing Interval has been elapsed','After the creation of a subscription, the server does not provide the first PublishResponse after the the first Publishing Interval has been elapsed.\r\n\r\nSee specifications (Part 4, 5.13.1.1):\r\n\"When a Subscription is created, the first Message is sent at the end of the first publishing cycle to inform the Client that the Subscription is operational. A NotificationMessage is sent if there are Notifications ready to be reported. If there are none, a keep-alive Message is sent instead that contains a sequence number of 1, indicating that the first NotificationMessage has not yet been sent. This is the only time a keep-alive Message is sent without waiting for the maximum keep-alive count to be reached, as specified in (f) above.\"\r\n',NULL,NULL,1,1,4,NULL,430,0,'2020-08-14 12:25:36','2020-08-14 12:25:36','2020-08-14',0,NULL,NULL,443,1,2,0,NULL),(444,1,74,'Missing KeepAlive after the deletion of one MonitoredItem from a Subscription','This issue can be reproduced by set up the following scenario:\r\n\r\n- 1 Subscription (PublishingInterval=5000, MaxKeepAliveCount: 5)\r\n- 2 MonitoredItems (Static values)\r\n\r\nX: PublishResponse (KeepAlive)\r\nX+25: PublishResponse (KeepAlive)\r\nX+30: DeleteMonitoredItems (1 of the MonitoredItems)\r\nX+60: PublishResponse (KeepAlive)\r\n\r\nThe last KeepAlive was expected at X+50 but has been received 10 seconds later.',NULL,NULL,1,1,4,NULL,430,0,'2020-08-14 12:40:00','2020-08-14 12:40:00','2020-08-14',0,NULL,NULL,444,1,2,0,NULL),(445,3,73,'VPI SQL','Bonjour M.CONDEMINE, \r\n\r\nSerait il possible d\'avoir un exemple de VFI SQL ? \r\n\r\nCordialement, \r\n\r\nAlexis',NULL,NULL,5,NULL,4,NULL,428,4,'2020-08-17 14:55:52','2021-04-09 18:22:21','2020-08-17',100,NULL,NULL,445,1,2,0,'2021-04-09 18:22:21'),(446,1,56,'Arrêt serveur','Bonjour,\r\n\r\nPlusieurs arrêts du serveur ont eu lieu aujourd\'hui, ci-joint les fichiers dump.\r\n\r\nCordialement.',NULL,NULL,5,1,5,NULL,328,2,'2020-09-07 21:18:28','2022-10-06 19:03:28','2020-09-07',0,NULL,NULL,446,1,2,0,'2022-10-06 19:03:28'),(447,1,74,'ServerDiagnosticsSummary the counters were not incremented.','When reading the ServerDiagnosticsSummary, the counters were not incremented.\r\nBut when reading the exposed elements, a valid value is provided. exposed element means the encaspulated variable.\r\nJust the datatype itseft is not incremented',NULL,NULL,3,1,5,NULL,1,1,'2020-09-16 16:08:13','2020-09-16 16:08:47','2020-09-16',100,NULL,NULL,447,1,2,0,'2020-09-16 16:08:47'),(448,1,75,'Serveur OpenOpcua Linux crash lors d\'une connexion avec Kepware Server','Bonjour, \r\nVoici le scénario d\'anomalie repéré: \r\n\r\nNous essayons de connecter notre serveur Kepware à OpenOpcua 1.0.5.9 afin que certains nœuds soient accessibles sur une plateforme qui n\'offre une interconnexion uniquement avec Kepware Server.\r\n\r\nPour y parvenir nous essayons une méthode qu\'on a déjà précédemment essayé avec d\'autres serveurs OPC UA (en rajoutant un Channel avec notre server OpenOpcua, puis un Device qui contient des tags). Au moment de l\'ajout du tag (voir Piece Jointe Img1), le serveur crash (fichier de Log également mis en PJ, et le Log a bien été vidé avant reproduction du scénario)\r\n',NULL,NULL,5,1,4,NULL,432,7,'2020-09-22 17:12:39','2021-03-15 09:35:00','2020-09-22',100,NULL,NULL,448,1,2,0,'2021-03-15 09:35:00'),(449,3,75,'Problème de connexion OpenOpcua sur client Genesis64','Bonjour, \r\n\r\nNous souhaitons effectuer le connexion entre Genesis64 et OpenOpcua\r\nLorsque le serveur OpenOpcua est sur la même machine que Genesis64, le serveur se lance et prend pour hostname (dans le Endpoint URL et le Certificate store) le nom de la machine. Ce scénario fonctionne. \r\nLorsque nous essayons de déployer le serveur sur une VM Linux , il se lance en annonçant comme endpoint URL localhost. Genesis64 lui n\'arrive pas à se connecter sur cette instance du serveur. \r\nNous pensons que la raison est comme mentionné pendant la formation que vous nous avez faites, qu\'un bon client opcua ne se connecte pas si le lien de connexion n\'est pas le même que le lien dans le certificat. \r\n\r\nAvons nous raison? \r\nComment pouvons nous changer le endpoint url du serveur afin qu\'il le change dans le certificat? \r\n\r\nMichael ',NULL,NULL,5,1,4,NULL,432,3,'2020-09-22 17:45:08','2021-08-04 17:53:19','2020-09-22',100,NULL,NULL,449,1,2,0,'2021-08-04 17:53:19'),(450,1,75,'Tag kepware non rafraichit','Bonjour,\r\n\r\nLors de la mise en œuvre de Open OPC UA avec Kepware nous rencontrons des difficultés de lecture des tag dans Kepware.\r\nLe problème est identique avec Linux et Windows.\r\nLa déclaration des tags dans Kepware (excepté le problème reporté dans le ticket précédent) se fait correctement pour la partie Browsing.\r\nDe façon relativement reproductible, lors du lancement du serveur Oen OPC UA, il y a une première lecture de valeur des tags (on monitore les tags dynamiques pour le test).\r\nEnsuite les tags sont vu BAD dans Kepware.\r\nLorsque l\'on fait une demande d\'écriture d\'un tag (on utilise le quick client fournit avec Kepware) le node est bien mis à jour, ce que l\'on vérifie par ailleurs avec UA Expert connecté sur le serveur Open OPC UA.\r\nLe status du tag passe alors à Good dans le quick client environ 40 secondes puis retombe à BAD.\r\nLorsque le tag est vu bad et que l\'on monitore les tags depuis UA expert connecté sur Kepware cette fois, la valeur du tag est NULL avec le code 0x8000000.\r\nOn note également dans UA Expert concernant le paramètre Minimum sampling interval : Invalid datatype: Expected OpcUaType_Double, Received OpUaType_UInt32.\r\nCoté serveur Open OPC UA, on a bien essayé de rajouter :<UAVariable MinimumSamplingInterval=\"1.000000\" NodeId=\"ns=2;i=229\" BrowseName=\"Position\" ... sans succès.\r\nNotre conclusion est qu\'il y a un problème sur la lecture de l\'adresse space depuis kepware mais pas en écriture.\r\nQuelles investigations complémentaires peut-on mener ?\r\n\r\nCordialement,\r\n\r\nSylvain\r\n','2020-10-30',NULL,5,435,4,4,435,4,'2020-09-25 18:05:38','2021-03-15 09:31:43','2020-09-25',100,NULL,NULL,450,1,2,0,'2021-03-15 09:31:43'),(451,3,70,'Utilisation de VpiType_ExtensionObject','Aide pour exemple d\'utilisation de VpiType_ExtensionObject',NULL,NULL,5,NULL,5,NULL,424,10,'2020-09-29 17:49:57','2020-11-19 22:19:03','2020-09-29',100,NULL,NULL,451,1,2,0,'2020-11-19 22:19:03'),(452,1,73,'Compilation projet OpcUa','Bonjour,\r\n\r\nSuite à notre dernière discussion, comme je vous l\'avait indiqué j\'ai pu compiler le \'XMLSaxParser\'.\r\n\r\nLes modifications que vous m\'aviez indiqué pour forcer les emplacements de OpenSSL dans le fichier CMakeLists.txt du module \'OpenOpcUaStackV1\' m\'ont permis d\'exécuter le *cmake*\r\nPar contre lorsque j\'exécute la commande *make* cela génère une erreur de compilation.\r\nJe vous joins le fichier.\r\n\r\nMerci pour votre aide\r\n\r\nJacques Peigné',NULL,NULL,5,1,4,NULL,431,6,'2020-09-29 18:05:12','2021-03-02 15:18:21','2020-09-29',100,NULL,NULL,452,1,2,0,'2021-03-02 15:18:21'),(453,3,71,'Livraison 10-2020','Nouvelle livraison :\r\n* Version 1.0.5.9 du serveur OOUA \r\n* Version 0.0.0.5 du VpiTP\r\n* Exemple d\'invocation des API DirectAccess\r\n','2020-10-13',NULL,5,1,5,NULL,1,2,'2020-10-12 10:18:46','2020-10-19 13:49:59','2020-10-12',100,NULL,NULL,453,1,2,0,'2020-10-19 13:49:59'),(454,3,71,'Installation en tant que service','Bonjour,\r\nPour installer le serveur en tant que service vous devez tapez :\r\nOpenOpcUaCoreServer_Release.exe FULL_PATH\\Config_Filename.oouaprj Install\r\nL’appId ne doit être utilisé que lors de l’installation de multiples instances.\r\nLe premier paramètre « FULL_PATH\\Config_Filename.oouaprj » permet d’indiquer la localisation du fichier OOUAPRJ\r\nL’exe n’a pas à se trouver dans un répertoire spécifique. La commande d’installation configurera le Service Control Manager.\r\n\r\nAvez vous réussi a installer le serveur ?\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,426,4,NULL,1,3,'2020-10-12 14:34:46','2020-10-19 11:55:31','2020-10-12',0,NULL,NULL,454,1,2,0,'2020-10-19 11:55:31'),(455,1,71,'Registration Server comme service','le bat lançant cette ligne ne registre pas le serveur comme TP_OPCUA ?\r\nOpenOpcUaCoreServer_Release.exe C:\\OPC_UA_TECHPAP\\Project\\MaquetteLabo.oouaprj Install;TP_OPCUA\r\n\r\nLigne doc\r\nOpenOpcUaCoreServer_Release c:\\myproject\\ConfigOpenOpcUaoouaprj Install={A49B17EC-\r\n172D-412D-87F0-A6150B3AA020};OpenOpcUaCoreServer \r\n\r\nComme vous me l\'aviez dit je n ai pas mis de guid',NULL,NULL,5,1,4,NULL,426,1,'2020-10-14 08:34:06','2020-10-19 11:54:06','2020-10-14',0,NULL,NULL,455,1,2,0,'2020-10-19 11:54:06'),(456,1,71,'Complement sur registration server','voici les fichiers utilisées\r\n',NULL,NULL,5,NULL,4,NULL,426,1,'2020-10-14 08:43:27','2020-10-19 11:53:35','2020-10-14',100,NULL,NULL,456,1,2,0,'2020-10-19 11:53:35'),(457,1,71,'Le chemin avec le fichier les données a publier ne fonctionne pas il va tjs le chercher dans le dossier project','',NULL,NULL,5,NULL,6,NULL,426,2,'2020-10-14 12:04:07','2020-10-19 13:50:32','2020-10-14',100,NULL,NULL,457,1,2,0,'2020-10-19 11:52:42'),(458,1,56,'ZONE STATUS MAP ET POINT STATUS MAP','Bonjour,\r\n \r\nPouvez-vous vérifier si la requête d’abonnement des \"Zones status map\" n’est pas envoyé de manière cyclique ? On a des \"zones status map reply\" en permanence alors que ceux-ci ne devraient être envoyés que lors d\'un changement d\'état.\r\n \r\nPour les \"points status map\": Sur le même principe que les \"zones status map\", pouvez-vous modifier les destinataires des requêtes: requête uniquement envers les ECS (et non en broadcast).\r\n \r\nMerci.\r\n \r\nCordialement.\r\n \r\nNorbert\r\n',NULL,NULL,5,NULL,4,NULL,328,2,'2020-10-16 10:26:59','2020-10-20 16:29:23','2020-10-16',100,NULL,NULL,458,1,2,0,'2020-10-20 16:21:34'),(459,3,71,'Chemin vers fichier avec donnée toujours dans le projet','Bonjour\r\n\r\nle chemin absolu ne fonctionne toujours pas je ne sais pas si vous avez vu ma derniere demande et si le code source posté apres est une réponse j ai recompilé le vpi \r\n\r\nPouvez vous me contacter LUNDI pour regler cela \r\n\r\n\r\n\r\n uStatus = GetFileParameter(\"DATA_FILENAME\", &szDataFileName);\r\n if (uStatus == Vpi_Good)\r\n {\r\n Vpi_CharA* szBuffer = Vpi_String_GetRawString(&szDataFileName);\r\n\r\n Vpi_CharA* localPath = Vpi_Null;\r\n Vpi_CharA* fileName = Vpi_Null;\r\n std::basic_string<char> myString(szBuffer);\r\n std::basic_string<char>::size_type index = 0;\r\n index = myString.rfind(\"\\\\\");\r\n if (index != std::basic_string<char>::npos)\r\n {\r\n // path\r\n std::basic_string<char> tmpStr = myString.substr(0, index + 1);\r\n\r\n localPath = (char*)malloc(tmpStr.size() + 1);\r\n if (localPath)\r\n {\r\n ZeroMemory(localPath, tmpStr.size() + 1);\r\n memcpy(localPath, tmpStr.c_str(), tmpStr.size());\r\n // fileName\r\n tmpStr = myString.substr(index + 1, myString.size() - index);\r\n\r\n fileName = (char*)malloc(tmpStr.size() + 1);\r\n if (fileName)\r\n {\r\n ZeroMemory(fileName, tmpStr.size() + 1);\r\n memcpy(fileName, tmpStr.c_str(), tmpStr.size());\r\n\r\n if ((localPath) && (fileName))\r\n {\r\n // PathName\r\n Vpi_String szPathName;\r\n Vpi_String_Initialize(&szPathName);\r\n Vpi_String_AttachCopy(&szPathName, localPath);\r\n SetDataPathName(&szPathName);\r\n Vpi_String_Clear(&szPathName);\r\n // FileName\r\n Vpi_String szFileName;\r\n Vpi_String_Initialize(&szFileName);\r\n Vpi_String_AttachCopy(&szFileName, fileName);\r\n SetDataFileName(&szFileName);\r\n Vpi_String_Clear(&szFileName);\r\n }\r\n else\r\n Vpi_Trace(m_ProxyStubConfiguration, VPI_TRACE_EXTRA_LEVEL_ERROR, \"Critical error>Memory error,DataFileName is corrupted\\n\");\r\n if (localPath)\r\n free(localPath);\r\n if (fileName)\r\n free(fileName);\r\n }\r\n }\r\n }\r\n else\r\n {\r\n uStatus = Vpi_BadInternalError;\r\n Vpi_Trace(m_ProxyStubConfiguration, VPI_TRACE_EXTRA_LEVEL_ERROR, \"Critical error>Full Data filename is corrupted\\n\");\r\n }',NULL,NULL,5,NULL,5,NULL,426,2,'2020-10-18 10:19:30','2020-10-19 13:48:21','2020-10-18',100,NULL,NULL,459,1,2,0,'2020-10-19 13:48:21'),(460,1,56,'VLE_RSTR','Bonjour,\r\n\r\nen attendant des nouvelles d\'ADP pour la mise en place des variables VLE_RSTR, pouvez-vous mettre en commentaire le code qui permet de lancer la requête sur l\'état des points appartenant au G1113 (via PID148).\r\nMerci.\r\n\r\nCdlt.\r\n\r\nNorbert',NULL,NULL,5,1,4,110,328,1,'2020-10-20 12:01:54','2020-10-20 16:20:41','2020-10-20',100,NULL,NULL,460,1,2,0,'2020-10-20 16:20:41'),(461,1,71,'Pas de soucis avec le serveur OPCUA et le chemin absolu du fichier data TEchpap par contre je n\'arrive pas a utiliser DirectAccess','Je ne parviens pas a utiliser l\'exe de demo que vous m\'avez fait passer\r\n\r\nY a t il qqes chose que je fais pas bien ?\r\n\r\nCf Copy ecran\r\n\r\nMerci \r\n\r\nDominique MOINEAU',NULL,NULL,1,NULL,4,NULL,426,1,'2020-10-20 17:13:06','2020-10-29 10:22:23','2020-10-20',0,NULL,NULL,461,1,2,0,NULL),(462,2,70,'Prise en compte de la version 1.0.5.9','Bonjour,\r\nCette évolution pour suivre votre prise en compte de la nouvelle version de la base de code.\r\nVoir screenshot dans le fichier joint.\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,424,4,NULL,1,7,'2020-10-28 21:33:40','2020-11-16 22:57:01','2020-10-28',100,NULL,NULL,462,1,2,0,'2020-11-16 22:57:01'),(463,3,75,'Problèmes/Questions pour le développement d\'un VPI pour le InternalKrnlAPI','Voici certains points de blocage que nous avons rencontré : \r\n\r\n*Projet : InternalKrnlAPI\r\n*Problème de compilation du InternalKrnlAPI (ce projet doit-il être placé dans un dossier spécifique, dans le projet OpenOPCUA (Serveur?) ) \r\n*Projet VPINullEx\r\n*\r\nJ’ai bien compris l’objectifs des classes EntryPoints, VPI Internal et VPINullEx, mais pour la classe dllmain, un élément doit il être placé pour le fonctionnement du VPI (comme dans le VPI OS) ?\r\n',NULL,NULL,6,NULL,4,NULL,432,1,'2020-10-29 13:59:12','2021-08-04 17:53:52','2020-10-29',100,NULL,NULL,463,1,2,0,'2021-08-04 17:53:52'),(464,1,56,'PERTE ESPACE ADRESSAGE','Bonjour Michel,\r\n\r\nje suis intervenu sur site le 30/10/20 suite à un appel de l\'astreinte signalant une perte de comm. entre le serveur et l\'UAE.\r\n\r\nà mon arrivée, je constate que le serveur fonctionne toujours mais il n\'y a plus d\'espace d\'adressage dans UAExpert.\r\n\r\nAprès relance du serveur, tout refonctionne à nouveau.\r\n\r\nCi-joint les logs.\r\n\r\nCordialement.\r\n\r\nNorbert',NULL,NULL,5,1,6,NULL,328,6,'2020-11-02 10:56:03','2022-02-17 18:48:06','2020-11-02',100,NULL,NULL,464,1,2,0,'2022-02-17 18:48:06'),(465,1,75,'Maquette Plant/Line','Bonjour,\r\navec la dernière base de code j\'arrive à lancer votre configuration sans problème.\r\nCependant je ne suis pas certain de comprendre votre objectif.\r\nJe vous livre une nouvelle version de la base de code dans la journée.\r\nJe vais en profiter pour vérifier le séquençage du démarrage. \r\n\r\nCordialement\r\nMichel',NULL,NULL,5,433,4,NULL,1,6,'2020-11-11 10:42:42','2021-08-30 18:10:08','2020-11-11',100,NULL,NULL,465,1,2,0,'2021-08-30 18:10:08'),(466,3,70,'Dysfonctionnement recipeList','',NULL,NULL,5,NULL,6,NULL,424,13,'2020-11-16 23:16:29','2020-12-07 18:14:04','2020-11-16',100,NULL,NULL,466,1,2,0,'2020-12-07 18:14:04'),(467,3,98,'Ximulator - generation running non stop','Bonjour Michel,\r\n\r\nSuite à votre nouvelle release de Ximulator, j\'ai fait un essai ce matin.\r\nLe fichier xml est bien monté dans le logiciel, je lance alors la génération et obtiens ceci :\r\n\r\n17/11/2020 08:58:57 XmiToNodeSet. New Project Folder17/11/2020 08:58:57 New projet folder set:C:\\Users\\U563914\\Desktop\\OPCUA_Part-2\r\n17/11/2020 08:58:57 Load XMI file: C:\\Users\\U563914\\Desktop\\OPCUA_Part-2\\Exo_Tricycle.xml\r\n17/11/2020 08:58:57 SuperType is NULL\r\n17/11/2020 08:58:57 SuperType is NULL\r\n17/11/2020 08:59:16 Generation started\r\n17/11/2020 08:59:23 Generation running\r\n17/11/2020 08:59:23 Generation of Nodeset file. Pre-steps\r\n17/11/2020 08:59:23 Generation: DataTypes\r\n17/11/2020 08:59:23 Generate UaDataTypes 9\r\n17/11/2020 08:59:24 Generation: Types from classList\r\n17/11/2020 08:59:24 Generate 5 UaTypes and attributes from the class list\r\n\r\nMalgré plusieurs essais (et une attente de 5-10 minutes à chaque fois) pas de changement. Ximulator semble tourner en arrière plan mais il n\'arrive pas à générer.\r\nJe vous met mon fichier EAP en pj.',NULL,NULL,3,1,4,NULL,450,12,'2020-11-17 09:26:41','2022-05-14 11:56:21','2020-11-17',100,NULL,NULL,467,1,2,0,'2020-11-18 23:58:58'),(468,3,98,'Génération Nodet et Doc vide','Bonjour Michel,\r\n\r\nSuite à la nouvelle version, j\'ai un problème différent de celui de Guy Alexis.\r\n\r\nMa génération se passe à priori bien, bien le fichier doc est vide et le nodeset ne contient que les alias des datatypes \"simple\" (Int / float/ ...)\r\n\r\nCi-joint le fichier Log et fichier Xml de mon tricycle ainsi que les 2 fichiers généré',NULL,NULL,5,1,4,NULL,447,5,'2020-11-17 09:40:16','2022-05-14 11:55:43','2020-11-17',100,NULL,NULL,468,1,2,0,'2020-11-17 10:24:46'),(469,1,46,'V1.0.5.8 : CoreServer trace error \"0x807A BadSequenceNumberUnknown\" when used with OpenOpcUaClientLib.dll','After deep search, it seems that, in ClientSession.cpp, PublishAsyncCallback at ligne 208, the client return a unattended Sequence number (an old one) to the server. \r\nIt is unattended because the serve message is a KeepAlive (no data to notify so no sequence number).\r\n\r\nI modified this part like that :\r\n\r\n202 if (pSessionClient->FindSubscription(pResponse->SubscriptionId, &pSubscription) == OpcUa_Good)\r\n203 {\r\n204 pSubscription->WakeupKeepAliveThreadSem();\r\n205 if (!pSubscription->IsMarkForDeletion())\r\n206 {\r\n207* //if (pResponse->NotificationMessage.SequenceNumber >= 0)\r\n208 if (pResponse->NoOfAvailableSequenceNumbers> 0) //JMC pour ne pas réempilé un Acq si KeepAliveMessage ???*\r\n209 pSubscription->AddSequenceNumber(pResponse->NotificationMessage.SequenceNumber);\r\n210 }\r\n211 }\r\n212 else\r\n\r\n\r\n\r\nI don\'t known if it\'s the good maner to solve the problem, but it solve it.',NULL,NULL,1,1,5,152,398,1,'2020-11-18 16:20:58','2020-11-18 18:59:27','2020-11-18',0,NULL,NULL,469,1,2,0,NULL),(470,3,70,'Modifications champs - variables UA','Bonjour,\r\nSuite à notre réunion teams, ci-dessous les champs que j\'aimerais modifier:\r\n> Ajout dans \"IdGunEnum\".\r\n>> <Field Name=\"Gun1\" Value=\"2\" />\r\n>> <Text>Gun1 Gun 2</Text>\r\n\r\n> Suppression dans \"RecipeEltDataType\"\r\n>> <Field Name=\"Internal_priming_vol\" DataType=\"Float\" />\r\n>> <Field Name=\"Internal_regen_vol\" DataType=\"Float\" />\r\n\r\n> Ajout d\'un champ Recipe_ID dans \"RecipeDataType\"\r\n\r\nMerci.',NULL,NULL,5,NULL,4,NULL,424,3,'2020-11-18 19:06:33','2020-11-19 22:02:21','2020-11-18',100,NULL,NULL,470,1,2,0,'2020-11-19 22:02:21'),(471,3,78,'Lecture du nodeset/Config OPCUA','Re bonjour Michel,\r\nComme demandé, voici en PJ du ticket le dossier de mon projet\r\nJ\'ai préféré ouvrir un ticket car cela vient d\'un problème, de manip ou d\'une exception quelque part (ou autre)\r\n\r\nCordialement,',NULL,NULL,5,NULL,4,NULL,451,1,'2020-11-19 15:56:50','2022-05-20 15:29:01','2020-11-19',100,NULL,NULL,471,1,2,0,'2022-05-20 15:29:01'),(472,1,70,'Dysfonctionnement opcua publish/subscribe','Bonjour,\r\nJe constate un problème avec cette version et qui était présent dans la version précédente.\r\nLe problème c\'est que le serveur ne semble pas mettre à jour les données auxquelles le client est souscrit.\r\nJ\'ai fait le test en modifiant les données dans la cache mais si je ne fais pas un refresh depuis le client, la modification n\'est pas publier.\r\n\r\n',NULL,NULL,5,NULL,4,NULL,424,7,'2020-11-24 16:20:12','2020-12-02 13:34:51','2020-11-24',100,NULL,NULL,472,1,2,0,'2020-12-02 13:34:51'),(473,1,47,'SubSystemName issue','Erreur en changeant le SubSystemName',NULL,NULL,2,1,6,NULL,1,0,'2020-12-01 10:57:31','2020-12-01 10:57:31','2020-12-01',0,NULL,NULL,473,1,2,0,NULL),(474,1,78,'Fichier Config serveur ','Bonjour Michel, \r\nLors de l\'ouverture du StartServerRelease.bat , le fichier de configuration généré avec le configurateur n\'est pas directement ouvert. \r\nAprès quelques essais, en créant un dossier \"Project\" et en y plaçant mon fichier de configuration renommé ainsi : ConfigOpenOpcUa_Release la manipulation fonctionne. \r\nSi le fichier n\'a pas le même nom , la manipulation ne fonctionne pas.\r\n\r\nScreen de l\'erreur en fichier joint \r\n',NULL,NULL,5,1,4,NULL,454,1,'2020-12-01 16:54:29','2022-05-20 15:30:39','2020-12-01',100,NULL,NULL,474,1,2,0,'2022-05-20 15:30:39'),(475,1,56,'MultiTag','Bonjour,\r\nje viens de constater que le multi-tag n\'est plus actif dans votre VPI.\r\n@Norbert. Avez vous constaté un problème ?\r\n\r\nCordialement\r\nMichel',NULL,NULL,5,NULL,4,NULL,1,1,'2020-12-01 18:05:10','2020-12-03 13:55:39','2020-12-01',100,NULL,NULL,475,1,2,0,'2020-12-03 13:55:39'),(476,1,79,'Validation accès RDP','Bonjour,\r\nCe ticket pour suivre et valider la mise en place du lien RDP.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,461,6,NULL,1,7,'2020-12-02 16:55:58','2020-12-03 10:04:36','2020-12-02',0,NULL,NULL,476,1,2,0,'2020-12-03 09:51:35'),(477,1,79,'Problème de configuration','Bonjour,\r\nj\'ai commencé à étudier votre configuration.\r\nCelle ci regroupe plusieurs sous-systèmes sur une instance du VPI.\r\nCette déclaration bien que fonctionnelle sous l\'angle du schéma SubSystem.xsd n\'est pas fonctionnelle sous l\'angle du serveur.\r\nIl faut donc déclarer 1 VPI par sous-système. Je vais modifier votre configuration et relancer les tests.\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,NULL,4,NULL,1,1,'2020-12-03 17:41:13','2020-12-09 20:08:35','2020-12-03',100,NULL,NULL,477,1,2,0,'2020-12-09 20:08:35'),(478,3,75,'Capabilité d\'OpenOpcUa d\'être addressé par des webservices','Suite aux requirements d\'eMotors, nous nous posons la question de la capabilité d\'OpenOpcUa d\'être attaqué et d\'interagir avec des webservices.\r\n\r\nEst-ce possible nativement ?\r\nEst-ce envisageable de le mettre en œuvre ?\r\nCe cas de figure a-t-il déjà été implémenté ?',NULL,NULL,5,1,5,NULL,433,2,'2020-12-04 10:39:07','2021-08-04 17:55:37','2020-12-04',100,NULL,NULL,478,1,2,0,'2021-08-04 17:55:37'),(479,1,78,'Datatype boolean','Dans le modèle ci-joint, j\'ai ajouté un UserDataType StatusDataType dans le IOValueDataType.\r\n\r\nTout fonctionne sauf le tableau (problème connu) mais également le boolean. Il est dans le nodeset, mais n\'apparait pas dans le modèle (peut-être i=0?): <Field Name=\"Completed\" DataType=\"i=0\"></Field>\r\n\r\n',NULL,NULL,5,1,4,NULL,447,1,'2020-12-07 18:13:51','2020-12-07 19:30:30','2020-12-07',100,NULL,NULL,479,1,2,0,'2020-12-07 19:30:30'),(480,1,47,'Création Nodeset avec configManager','Le fichier nodeset généré par configmanager n\'a pas la même forme que le nodeset généré par Ximulator. \r\n\r\nLa partie Alias en sortie de configmanager est vide\r\nLa partie Alias en sortie de Ximulator est completée\r\n\r\nMais ca n\'a pas l\'air de poser problème dans le serveur\r\n',NULL,NULL,5,NULL,4,NULL,447,2,'2020-12-07 18:29:39','2022-05-14 11:54:31','2020-12-07',100,NULL,NULL,480,1,2,0,'2020-12-08 14:43:09'),(481,1,79,'Memory Leak','Bonjour,\r\nje pense qu\'il y a une fuite mémoire dans l\'application. Son origine se trouve soit :\r\n* dans le VPI qans il détecte une erreur 0x800040000\r\n* dans l\'application client si elle n\'acquittent les messages de notification\r\n\r\nJe propose de laisser tourner ma la RAM est déjà à 575Mo. \r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,2,461,6,NULL,1,14,'2020-12-07 19:44:34','2021-01-18 08:17:04','2020-12-07',0,NULL,NULL,481,1,2,0,NULL),(482,3,75,'Outils OOUA','Bonjour Michel,\r\n\r\nPourriez-vous SVP mettre à notre disposition les deux outils OOUA de Configuration et d\'Instanciations présentés le 23/oct dernier ?\r\n\r\nMerci,\r\nChristophe',NULL,NULL,3,1,4,NULL,436,2,'2020-12-08 09:35:45','2021-08-04 17:56:10','2020-12-08',100,NULL,NULL,482,1,2,0,'2021-08-04 17:56:10'),(483,3,1,'Instanciations dynamiques','Bonjour Michel,\r\n\r\nDans le cadre d\'une architecture OOUA Agrégateur/Graines utilisée dans le monde de la production industrielle et mettant en œuvre un modèle opc ua propriétaire complexe, quelle serait SVP l\'approche OOUA pour pouvoir instancier dynamiquement les pièces (utilisées pour la production), les composants (créés tout au long de la production) et les produits créés (produits finis résultats de la production) ?\r\n\r\nPar ailleurs, les données opc ua liées à ces pièces/composants/produits devant être archivées sur plusieurs dizaines d\'années, comment gérer la croissance quotidienne importante de l\'Address Space tant au niveau Graines qu\'au niveau Agrégateur ? \r\n\r\nMerci,\r\nChristophe',NULL,NULL,1,1,4,NULL,436,0,'2020-12-08 09:50:39','2020-12-08 09:50:39','2020-12-08',0,NULL,NULL,483,1,2,0,NULL),(484,1,60,'Instabilité du serveur sur site RATP','Bonjour,\r\nsuite à votre mail reportant un problème de stabilité j\'ouvre ce ticket pour commercer la collecte d\'information.\r\nLe premier objectif est de comprendre le/les problème(s) pour mieux pouvoir le/les corriger\r\nMerci de me fournir des log, ficher WS lors de l\'apparition du/des problèmes(s)\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,1,355,5,NULL,1,1,'2020-12-08 11:26:28','2020-12-08 11:40:46','2020-12-08',0,NULL,NULL,484,1,2,0,NULL),(485,1,79,'Crash','Le dump est stocké sur la machine: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201208_102531.dmp\r\n\r\nJ\'ai \"simplement\" fermé UA Expert puis redémarré, car je voyais beaucoup d\'erreur (que je n\'ai hélas pas noté).',NULL,NULL,5,461,7,NULL,461,21,'2020-12-08 12:49:55','2021-04-09 18:24:16','2020-12-08',100,NULL,NULL,485,1,2,0,'2021-04-09 18:24:16'),(486,3,79,'Récupération configuration des serveurs','Bonjour,\r\n\r\nVous nous aviez parler d\'aspirer la configuration des serveurs S7/UC au démarrage et nous aurions quelques questions à ce sujet.\r\n\r\nSurtout concernant les nodes id. Cette opération permet-t-elle de récupérer l\'addressage et les/des nodes id qui nous permettrait de valider notre configuration sub-system et/ou de la créer lors d\'un premeir démarrage.\r\n\r\nMerci,\r\nC.',NULL,NULL,1,NULL,4,NULL,461,1,'2020-12-10 08:08:06','2020-12-10 08:15:12','2020-12-10',0,NULL,NULL,486,1,2,0,NULL),(487,1,79,'Chargement des VPIs avec sub-systems','Re-bonjour,\r\n\r\nJ\'ai créé un outil nous permettant de généré la config multi-sub-system et je test maintenant le procédé sur une configuration client.\r\n\r\nLa configuration contient 8 sous-systèmes, mais 7 d\'entre eux renvoi cette erreur:\r\n\r\nOpenOpcUa:ALWAYS> Vpi VPIS7.dll version: 1.0.0.4 loaded sucessfully but error occurs in GlobalStart: 0x803e0000\r\n\r\nEst-ce parceque il n\'y a pas d\'automate derrière, donc une simple erreur de connexion?\r\n\r\nSi oui, pourquoi le 8ème et dernier VPI n\'est pas d\'erreur. C\'est d\'ailleurs le seul VPI qui s\'affiche dans UA Expert quand je me connecte au serveur.\r\n\r\nCi-joint les fichiers config et une copie d\'écran du résultat dans UA Expert.\r\n\r\nPouvez-vous jeter un oeuil au fichiers de config et me dire si ils vous paraissent ok?\r\n\r\nMerci,\r\nC.',NULL,NULL,1,NULL,4,NULL,461,2,'2020-12-10 12:21:40','2020-12-10 13:10:00','2020-12-10',0,NULL,NULL,487,1,2,0,NULL),(488,1,98,'Tableau dans une variable','Bonjour Michel,\r\n\r\nJe viens de faire des essais avec Ximulator. Les tableaux compris dans un userdatatype (donc dans le dictionnaire de type) ont l\'air de fonctionner. Mais un tableau qui n\'est pas dans un userdatatype est bien déclaré sous forme de tableau (ValueRank = 1) mais le ArrayDimensions dans la déclaration de la UAVariable est toujours à 0 malgré une valeur renseigné dans le fichier UML EA.\r\n\r\n',NULL,NULL,2,1,4,NULL,447,1,'2020-12-10 17:31:50','2022-05-14 11:53:57','2020-12-10',0,NULL,NULL,488,1,2,0,NULL),(489,1,79,'Nouveau crash','[23:10:52] Exception: 80000003.BREAKPOINT\r\n[23:10:52] Exception: C0000374\r\n[23:10:52] Unhandled: C0000374\r\n[23:10:52] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201210_231052.dmp\r\n[23:10:53] Dump 1 complete: 33 MB written in 0.1 seconds\r\n[23:10:53] Dump count reached.\r\n\r\n[08:03:21] Exception: 80000003.BREAKPOINT\r\n[08:03:21] Exception: C0000374\r\n[08:03:21] Unhandled: C0000374\r\n[08:03:21] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201211_080321.dmp\r\n[08:03:21] Dump 1 complete: 10 MB written in 0.1 seconds\r\n[08:03:22] Dump count reached.',NULL,NULL,5,NULL,4,NULL,461,5,'2020-12-11 08:03:54','2021-04-09 18:35:04','2020-12-11',100,NULL,NULL,489,1,2,0,'2021-04-09 18:35:04'),(490,3,56,'Generation server','Bonjour Norbert,\r\nci-dessous le travail de préparation avant notre call de 15h ce jour.\r\nCharger les sources 1.0.5.9\r\ndécompresser dans un répertoire de votre choix\r\nlancer Visual Studio\r\nCharger le projet serveur et compiler l\'ensemble en debug 64bit\r\nCharger le projet OpenOpcUaVpiLibrary et compiler l\'ensemble en debug 64bit\r\nCharger le projet VpiTycoEx et compiler l\'ensemble en 64bit\r\nCopier les binaires, serveur et DLLs, dans un répertoire de test\r\nLancer\r\nCordialement\r\nMichel',NULL,NULL,5,328,7,NULL,1,1,'2020-12-11 14:48:07','2022-10-06 12:51:52','2020-12-11',0,NULL,NULL,490,1,2,0,'2022-10-06 12:51:52'),(491,2,79,'Accès TeamViewer','Nouveau mot de passe (reboot mise à jour PC): p52un6',NULL,NULL,1,NULL,4,NULL,461,9,'2020-12-14 09:08:12','2020-12-16 13:12:09','2020-12-14',0,NULL,NULL,491,1,2,0,NULL),(492,1,46,'V1.0.5.8 OpenOpcUaClientLib.dll : 0x0807a000 Result in TopServer 6.6 OPC Diagnostics','When i used OpenOpcµUaClientlib.dll with TopServer 6.6 OPCUAServer. I found this message in TopServer OPCUA diagnostics :\r\n12/12/2020 02:44:23.817 [opc.tcp://FBFC-SRV-OPCUA-P:49380] PublishResponse\r\n 0000000000: Event started\r\n 0000000000: Response Header: \r\n 0000000000: timestamp (UTC): 2020-12-12T01:44:23.817 \r\n 0000000000: requestHandle: 526480 \r\n 0000000000: serviceResult: 0x00000000 (Good) \r\n 0000000000: Parameters: \r\n 0000000000: subscriptionId: 9 \r\n 0000000000: availableSequenceNumbers []: Size: 0 \r\n 0000000000: moreNotifications: 0 \r\n 0000000000: notificationMessage: \r\n 0000000000: sequenceNumber: 2 \r\n 0000000000: publishTime (UTC): 2020-12-12T01:44:23.817 \r\n 0000000000: notificationData []: Size: 0 \r\n 0000000000: acknowledgementResults []: Size: 1 \r\n 0000000000: acknowledgementResults [ 0 ]: 0x807a0000 (BadSequenceNumberUnknown) \r\n 0000000000: Event complete\r\n\r\nit seemes to be the same warning that i notice with OpcUaCoreServer (see http://www.openopcua.org/redmine/issues/469)\r\n\r\ni join a more complete extract from TopServer diagnostics',NULL,NULL,1,1,4,152,398,2,'2020-12-14 11:31:33','2020-12-14 13:45:07','2020-12-14',0,NULL,NULL,492,1,2,0,NULL),(493,1,78,'ValueRank hors limite Sortie ConfigManager','Bonjour Michel,\r\n\r\nLe fichier NodeSet de Type qui sort de ConfigManager génère une erreur sur SIOME : \r\nValidation for c:\\user\\JV14239\\Documents\\OPC UA\\ATP\\OOUA_Test\\Config2\\Opc.Ua.NodeSet2.ATPLine_Ximu.xml failed: Line 7, position 131: L\'attribut \'ValueRank\' n\'est pas valide - La valeur \'4294967295\' n\'est pas valide selon son type de données \'http://opcfoundation.org/UA/2011/03/UANodeSet.xsd:ValueRank\' - La chaîne \'4294967295\' n\'est pas une valeur Int32 valide.\r\n\r\nLa valueRank est à priori trop haute et pas compatible avec un Int32',NULL,NULL,5,1,4,NULL,447,1,'2020-12-14 17:34:41','2022-05-20 15:31:33','2020-12-14',100,NULL,NULL,493,1,2,0,'2022-05-20 15:31:33'),(494,1,43,'CurrencyUnitType cause a crash on stop ','When i setup the VpiUAClient CurrencyUnitType cause a crash when i stop the application.\r\nThe UAVariable transporting the CurrencyUnitType seems release twice or not properly initialized.\r\n',NULL,NULL,1,1,4,NULL,1,0,'2020-12-14 21:42:20','2020-12-14 21:42:20','2020-12-14',0,NULL,NULL,494,1,2,0,NULL),(495,2,42,'Add function to load configration without restoration','Add a new feature during the call to OpenOpcUa_LoadConfig\r\nA new parameter (OpcUa_Boolean) allows to restore or not the configuration\r\nRestore meaning :\r\nTrue: Load, connect, createSubscriptio and add monitoredItems.\r\nFalse: Load only',NULL,NULL,2,1,4,NULL,1,0,'2020-12-15 22:19:50','2020-12-15 22:19:50','2020-12-15',50,NULL,NULL,495,1,2,0,NULL),(496,1,79,'Crash avec popup','Ci-joint le dump concernant un nouveau crash aujourd\'hui.\r\n\r\n[12:57:58] Exception: 80000003.BREAKPOINT\r\n[12:57:58] Exception: C0000374\r\n[12:57:58] Unhandled: C0000374\r\n[12:57:58] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201216_125758.dmp\r\n[12:57:58] Dump 1 complete: 10 MB written in 0.2 seconds\r\n[12:57:58] Dump count reached.\r\n\r\nCordialement,\r\nCédric Counotte.',NULL,NULL,1,NULL,4,NULL,461,0,'2020-12-16 13:51:53','2020-12-16 13:51:53','2020-12-16',0,NULL,NULL,496,1,2,0,NULL),(497,2,42,'Adjust the parentNodeId - TBD implement in a better way. Note 12/2020','Change the code in function OpenOpcUa_BrowseEx.\r\nLine 3549\r\n<pre>\r\nif ((!pReferenceDescription->IsForward) \r\n && (pReferenceDescription->NodeId.NodeId.Identifier.Numeric != 0)\r\n && (pReferenceDescription->ReferenceTypeId.Identifier.Numeric==35)\r\n && (pReferenceDescription->ReferenceTypeId.Identifier.Numeric == 45)\r\n && (pReferenceDescription->ReferenceTypeId.Identifier.Numeric == 46)\r\n && (pReferenceDescription->ReferenceTypeId.Identifier.Numeric == 47))\r\n</pre>',NULL,NULL,1,1,5,NULL,1,0,'2020-12-16 21:46:16','2020-12-16 21:46:16','2020-12-16',0,NULL,NULL,497,1,2,0,NULL),(498,1,79,'Exceptions 6 à répétition','Procdump rapporte des exceptions fréquentes, alors même qu\'aucun clients n\'est utilisé. Cette nuit, uniquement notre application tournaient (2 clients, l\'un local, l\'autre déporté sur un PC distant).\r\n\r\n[13:20:31] Exception: 00000006\r\n[13:41:22] Exception: 00000006\r\n[16:52:47] Exception: 00000006\r\n[21:59:38] Exception: 00000006\r\n\r\n',NULL,NULL,1,NULL,4,NULL,461,0,'2020-12-17 08:04:35','2020-12-17 08:04:35','2020-12-17',0,NULL,NULL,498,1,2,0,NULL),(499,3,79,'Test client','Nous avons un client ou les problèmes OpenOPCUA sont particulièrement nombreux et nous aimerions donc (avec son accord) installé la version du serveur la plus récente.\r\n\r\nPourriez-vous mettre à jour le serveur (ou nous fournir les binaires) sur la machine de test, que nous puissions vérifier la correction des différents crash relevés et ainsi l\'installer chez ce client?\r\n\r\nMerci,\r\nCédric Counotte.',NULL,NULL,1,NULL,5,NULL,461,2,'2020-12-17 08:07:08','2020-12-17 08:28:43','2020-12-17',0,NULL,NULL,499,1,2,0,NULL),(500,1,46,'V1.0.5.8 : Unprotected push_back in CClientApplication::AddLoggerMessage(CLoggerMessage* pLoggerMessage)','m_loggerMessageList is consumed in InternalMessageThread in protected maner by m_hloggerMessageListMutex.\r\n\r\nBut m_loggerMessageList loading is not protected in AddLoggerMessage.\r\n\r\nI propose the following correction :\r\n\r\nvoid CClientApplication::AddLoggerMessage(CLoggerMessage* pLoggerMessage)\r\n{\r\n OpcUa_Mutex_Lock(m_hMessageLoggerMutex); //JMC ++ Protection du stockage dans la liste accédée par InternalMessagethread\r\n m_LoggerMessageList.push_back(pLoggerMessage);\r\n OpcUa_Mutex_Unlock(m_hMessageLoggerMutex); //JMC++\r\n}',NULL,NULL,5,NULL,4,NULL,398,1,'2020-12-17 14:23:06','2020-12-17 14:26:29','2020-12-17',100,NULL,NULL,500,1,2,0,'2020-12-17 14:26:29'),(501,1,46,'V1.0.5.8: memory leak in CSubscriptionClient::CreateMonitoredItemFragment','In CSubscriptionClient::CreateMonitoredItemFragment, a part of resources release is comment (lines 232 to 241).\r\nI sugest to uncomment :\r\n //Release resources\r\n /* JMC reactivation liberation des ressources */\r\n if (hMonitoredItems)\r\n OpcUa_Free(hMonitoredItems);\r\n for (OpcUa_UInt32 ii = 0; ii < NoOfItemsToCreate; ii++) \r\n { \r\n if (pItemsToCreateRequest[ii].RequestedParameters.Filter.Body.EncodeableObject.Object)\r\n OpcUa_Free(pItemsToCreateRequest[ii].RequestedParameters.Filter.Body.EncodeableObject.Object);\r\n OpcUa_NodeId_Clear(&(pItemsToCreateRequest[ii].ItemToMonitor.NodeId)); \r\n } \r\n OpcUa_Free(pItemsToCreateRequest);/**/',NULL,NULL,1,NULL,4,NULL,398,0,'2020-12-17 14:32:09','2020-12-17 14:32:09','2020-12-17',0,NULL,NULL,501,1,2,0,NULL),(502,1,46,'V1.0.5.8: memory leak in CApplication::LoadPFXCertificate','Certificate and private key ByteString allocated by \"OpcUa_Certificate_LoadPrivateKeyFromFile\" are not released in all cases.\r\n\r\nI suggest to release the two ByteStrings at line 435 :\r\n\r\n433 else\r\n434 uStatus = OpcUa_BadCertificateUseNotAllowed; // Here this mean that no certificate match the CommonName\r\n435 OpcUa_ByteString_Clear(&aCertificate); //JMC++\r\n436 OpcUa_ByteString_Clear(&(aPrivateKey.Key)); //JMC++\r\n437 }\r\n438 else\r\n439 OpcUa_Trace(m_pTraceConfiguration, OPCUA_TRACE_EXTRA_LEVEL_ERROR, \"Impossible to load PrivateKey From %s\\n\", pszFullFileName);\r\n',NULL,NULL,5,NULL,3,NULL,398,1,'2020-12-17 14:43:06','2020-12-17 14:45:51','2020-12-17',100,NULL,NULL,502,1,2,0,'2020-12-17 14:45:51'),(503,1,79,'Crash C0000005','[21:10:52] Exception: C0000005.ACCESS_VIOLATION\r\n[21:10:52] Unhandled: C0000005.ACCESS_VIOLATION\r\n[21:10:52] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201217_211052.dmp\r\n[21:10:53] Dump 1 complete: 131 MB written in 0.6 seconds\r\n[21:10:53] Dump count reached.\r\n\r\nCi-joint le dump mentionné.\r\n\r\nPas de UAExpert, 2 clients sans activité sur la machine.',NULL,NULL,1,NULL,4,NULL,461,2,'2020-12-18 09:06:04','2021-01-18 13:02:14','2020-12-18',0,NULL,NULL,503,1,2,0,NULL),(504,1,79,'Ecrasement des données à chaque démarrage!','Nous avons découvert un problème fonctionnel important avec la nouvelle version du serveur.\r\n\r\nToutes les données des automates sont remises à zero à chaque démarrage du serveur, en particulier la recette, voir copie d\'écran ci-joint.\r\n\r\nJ\'ai donc testé avec l\'ancienne version, aucun soucis au démarrage du serveur, les valeurs persistent.',NULL,NULL,5,1,6,NULL,461,12,'2020-12-18 09:59:04','2020-12-22 15:17:41','2020-12-18',100,NULL,NULL,504,1,2,0,'2020-12-22 15:17:41'),(505,1,46,'OpenOpcUa Client : Memoryleak during auto reconnect process','I finish to correct all detected memory leaks which apear durring auto reconnect process.\r\nIt still remain the error on sequencenumber\r\nImpacted files are :\r\nApplication.cpp (sharedlib)\r\nsessionbase.cpp (sharedlib)\r\nClientApplicaiton.cpp (ClientLib)\r\nClientSession.cpp (ClientLib)\r\nSubscriptionClient.cpp (ClientLib)\r\nI submit the files, joined to this demand with my integration report\r\n',NULL,NULL,5,1,4,152,398,3,'2020-12-22 16:34:38','2020-12-23 08:39:41','2020-12-22',100,NULL,NULL,505,1,2,0,'2020-12-22 17:54:20'),(506,1,79,'Situation au 31/12','Bonjour,\r\nje viens de me connecter (31/12 14h00 heure locale) pour surveiller le serveur.\r\nSuite à ma dernière mise à jour le serveur fonctionnait depuis plus de 48h sans problème.\r\nJe note que deux instances du serveur sont actives\r\n!clipboard-202012311404-9xoxt.png!\r\n\r\nMes questions :\r\n* Pourquoi y a-t-il deux instances ?\r\n* Comment la dernière instances s\'est arrêtée ?\r\nDans l\'attente je vous souhaite un bon réveillons et je vous donne rendez vous l\'année prochaine.\r\n\r\nBien cordialement\r\nMichel Condemine',NULL,NULL,1,461,4,NULL,1,3,'2020-12-31 14:08:17','2021-01-04 09:32:02','2020-12-31',0,NULL,NULL,506,1,2,0,NULL),(507,1,79,'Crash C0000374','[09:38:58] Exception: 80000003.BREAKPOINT\r\n[09:38:58] Exception: C0000374\r\n[09:38:58] Unhandled: C0000374\r\n[09:38:58] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210107_093858.dmp\r\n[09:38:58] Dump 1 complete: 10 MB written in 0.2 seconds\r\n[09:38:58] Dump count reached.\r\n\r\n\r\nToujours en utilisant UA Expert.',NULL,NULL,5,1,4,NULL,461,8,'2021-01-07 09:42:17','2021-04-09 18:34:11','2021-01-07',100,NULL,NULL,507,1,2,0,'2021-04-09 18:34:11'),(508,3,58,'[CHUBB] Certification OPC-UA','Monsieur Condemine,\r\nSuite à votre réponse par mail nous avons déplacé le chargement du fichier \'Opc.Ua.NodeSet2.CTT.xml\' et les erreurs dans le log sont bien supprimées, merci.\r\nPouvez-vous nous fournir les fichiers OPC Foundation à jour ?\r\nDe notre côté le setup spécial certification est prêt, nous allons le mettre à jour en fonction de vos retours.\r\nMerci!',NULL,NULL,5,1,6,82,347,1,'2021-01-08 17:04:56','2022-03-27 23:35:03','2021-01-08',100,NULL,NULL,508,1,2,0,'2022-03-27 23:35:03'),(509,3,58,'[CHUBB] Certification OPC-UA','Bonjour monsieur Condemine,\r\n\r\nNous mettons à votre disposition en fichier joint un zip contenant un setup d\'installation spécifique à la certification OPC-UA.\r\nLe zip contient le setup (Setup_Concentrateur_ADP_32bits_2.0.1.6-CertificationOpcUa.exe) ainsi que les divers setups des prérequis.\r\nLe fichier des types CTT est intégré dans le projet chargé au démarrage du serveur.\r\nNous avons mis à jour les nodesets avec la version 1.03.\r\nCela vous permet de commencer les tests de certification.\r\nNous mettrons éventuellement à jour le serveur avec la dernière version de la pile OPC-UA si nous avons le temps par rapport aux dead lines de CHUBB.\r\n\r\nCordialement,\r\nOlivier PESLE.',NULL,NULL,5,1,6,NULL,347,7,'2021-01-11 18:48:27','2022-03-27 23:34:33','2021-01-11',100,NULL,NULL,509,1,2,0,'2022-03-27 23:34:33'),(510,1,79,'OOUAVpiLibrary Trace Issue','Bonjour,\r\nj\'ai désactivé la trace sur les Vpi que je suspecte être à l\'origine de problèmes de stabilité.\r\nLa fonction Vpi_Trace_Internal est court-circuitée dan VpiTrace.cpp ligne 353 \r\n\r\nA suivre\r\n\r\nCordialement',NULL,NULL,2,1,4,NULL,1,0,'2021-01-12 13:28:03','2021-01-12 13:28:03','2021-01-12',0,NULL,NULL,510,1,2,0,NULL),(511,2,98,'Vérifier que Ximulator ajoute la référence HasTypeDefinition','Vérifier que Ximulator ajoute la référence HasTypeDefinition',NULL,NULL,5,1,4,NULL,1,2,'2021-01-12 13:54:55','2022-05-14 11:52:57','2021-01-12',100,NULL,NULL,511,1,2,0,'2022-05-14 11:52:57'),(512,1,73,'Problème VPI','Bonjour Monsieur Condemine, \r\n\r\nJ\'ai actuellement 3 problèmes sur le VPI que j\'ai mis en place.\r\n\r\nContexte : Je veux communiquer entre un automate et le logiciel Avisio en passant par le serveur OPCua. Pour cela 2 VPI ont été créé, un VPI \r\n(ModbusAviso-00200) entre Avisio et le serveur OPCua fait par Alexis et un autre VPI (Modbusautomate00300) entre l\'automate et le serveur OPCua fait par moi.\r\n\r\n1er problème : Sur le VPI (Modbusautomate00300) en effectuant mes tests, j\'ai constaté que je n\'arrive pas à trouver l\'adresse de la variable \"DB1.DBD42\". C\'est à dire que j\'ai affecté des valeurs à mon automate, à l\'adresse 0130016 doit se trouver la valeur 42, mais à la place j\'ai la valeur 46 qui se trouve être la valeur de l\'adresse d\'après soit 0130018. J\'ai donc un décalage sur mes adresses.\r\n\r\n2ème problème : En rajoutant mes variables une par une, à la variable \"DB1.DBD82\" j\'ai observé sous Wireshark un code d\'erreur \"Illegal data address\" et les valeurs dans mon automate ne s\'affichent pas sur Avisio.\r\n\r\n3ème problème : A chaque redémarrage du serveur OPCua comme mes variables sont déclarées en Input-Output, cela force les valeurs dans mon automate à 0. Le problème est que si je déclare mes variables en Input, les valeurs dans mon automate ne s\'affichent pas sur Avisio quand je lance le serveur OPCua. \r\n\r\nVous Trouverez en fichier joint le projet en Zip.\r\n\r\n',NULL,NULL,3,1,5,NULL,459,3,'2021-01-12 18:12:49','2021-03-02 15:17:25','2021-01-12',100,NULL,NULL,512,1,2,0,'2021-03-02 15:17:25'),(513,1,79,'Connexion impossible','Le process du serveur est lancé, aucun crash depuis 13h32.\r\n\r\nJ\'ai activé les diagnostiques, vérifié les données de diag dans UAExpert, puis désactivé les diagnostiques. Jusque là tout semble aller bien.\r\n\r\nPuis j\'ai voulu réactiver les diagnostiques. Là UA Expert s\'est bloqué et a fini par affiché un timeout write...\r\n\r\nDepuis notre client n\'arrive plus à ce connecter, ni UA Expert. Redémarrage manuel du serveur nécessaire.',NULL,NULL,5,1,4,NULL,461,12,'2021-01-13 14:45:28','2021-01-18 08:15:54','2021-01-13',100,NULL,NULL,513,1,2,0,'2021-01-14 16:26:04'),(514,1,75,'Plantage serveur sur ingestion fichier NodeSet incorrect','Ingestion d\'un fichier NodeSet2 avec un Node mal défini. \r\nErreur = syntaxe incorrecte (i=xxxx -> 4 fois la lettre \"x\") dans l\'énoncé d\'une reference.\r\n\r\nDump de l\'un des Nodes concernés.\r\n <UAObject NodeId=\"ns=1;i=6972\" BrowseName=\"Default Binary\">\r\n <DisplayName>Default Binary</DisplayName>\r\n <References>\r\n <Reference ReferenceType=\"HasTypeDefinition\" IsForward=\"true\">i=76</Reference>\r\n <Reference ReferenceType=\"HasDescription\" IsForward=\"true\">ns=1;i=xxxx</Reference>\r\n <Reference ReferenceType=\"HasEncoding\" IsForward=\"false\">ns=1;i=261</Reference>\r\n </References>\r\n </UAObject>\r\n\r\nEn retirant les nodes concernés, le serveur réussi à démarrer.\r\n',NULL,NULL,5,1,3,NULL,433,2,'2021-01-13 14:51:31','2023-02-08 18:57:33','2021-01-13',100,NULL,NULL,514,1,2,0,'2023-02-08 18:57:33'),(515,1,73,'Echange de données','Bonjour Monsieur Condemine, \r\n\r\nAvant de vous expliquer le nouveau problème, tous les problèmes rencontrés depuis le début du projet sont corrigés, mais j\'ai une petite incompréhension sur une erreur que j\'ai corrigée. Quand je passe d\'un registre en int à un registre en float sur le VPI, j\'utilise la même adresse, cependant j\'ai bien 2 valeurs différentes par exemple 13 pour le registre int et 14 pour le registre float alors que j\'utilise la même adresse pour les 2 registres. \r\n\r\nLe problème rencontré est le suivant :\r\n\r\nObjectif :Echanger entre le logiciel de supervision et l\'automate en passant par le serveur OPCua. \r\n\r\nTout d\'abord j\'ai connecté le logiciel de supervision à l\'automate pour voir si j\'arrive à échanger des informations, c\'est le cas.\r\n \r\nEnsuite j\'ai fait le même test mais cette fois-ci avec le serveur OPCua entre le logiciel de supervision et l\'automate. J\'ai donc forcé la première voie sur le logiciel de supervision pour que sur l\'automate le 1er registre se force à la valeur affectée par le logiciel de supervision, mais la valeur de l\'automate reste la inchangée. \r\n\r\nJ\'ai donc ensuite ouvert le client OPCua et j\'ai constaté que la valeur forcée est bien prise en compte par un registre du VPI, mais la valeur du 1er registre de l\'automate reste inchangée. \r\n\r\nDans un second temps j\'ai modifié la valeur directement sur le Client OPCua, la nouvelle valeur que j\'ai saisi se remplace directement par la valeur forcée sur le logiciel de supervision, mais l\'automate lui a changé la valeur de son 1er registre par la valeur que j\'ai remplacé à la main sur le Client OPcua et non celle forcée par la supervision. \r\n\r\nJ\'arrive donc à communiquer entre la supervision et le serveur, du client OPCua à l\'automate mais pas de la supervision à l\'automate en passant par le serveur OCPua.\r\n\r\nMerci de votre retour. \r\n\r\nCordialement, \r\nAlexandre Macé\r\n\r\n\r\n',NULL,NULL,5,1,4,NULL,459,2,'2021-01-14 18:04:52','2021-03-02 15:13:54','2021-01-14',100,NULL,NULL,515,1,2,0,'2021-03-02 15:13:54'),(516,3,58,'Certification OPC-UA : Nouveaux fichiers types ADP pour correction problèmes WriteMask','Monsieur Condemine,\r\n\r\nComme convenu, ci-joint les fichiers des types ADP corrigeant le problème de WriteMask et UserWriteMask non cohérents\r\n\r\nCordialement,\r\nOlivier Pesle.',NULL,NULL,1,NULL,4,NULL,347,0,'2021-01-15 15:46:12','2021-01-15 15:46:12','2021-01-15',0,NULL,NULL,516,1,2,0,NULL),(517,3,58,'Certification OPC-UA','Bonjour monsieur Condemine,\r\n\r\nAvez-vous pu tester le serveur avec les fichiers de type ADP corrigés envoyés vendredi ?\r\nSi vous ne les avez pas reçu, comme il semble que je n\'avais rempli le champ \"Assigné à\" de mon dernier message, au cas où je les joins ici.\r\n\r\nQuand pensez-vous pouvoir nous envoyer les sources de la dernière version du serveur ?\r\n\r\nEn vous remerciant, cordialement,\r\nOlivier Pesle.\r\n',NULL,NULL,1,1,5,NULL,347,0,'2021-01-18 14:28:11','2021-01-18 14:28:11','2021-01-18',0,NULL,NULL,517,1,2,0,NULL),(518,1,73,'Log démarrage serveur ','',NULL,NULL,5,1,4,NULL,459,2,'2021-01-18 16:55:13','2021-04-09 18:21:27','2021-01-18',100,NULL,NULL,518,1,2,0,'2021-04-09 18:21:27'),(519,1,79,'Développement client et anomalie avec les diagnostiques','Je développe actuellement un client OPCUA (avec la librairie de la fondation), et je remarque certains problèmes lorsque les diagnostiques sont actifs.\r\n\r\nA savoir:\r\n\r\n1- Lorsque le client met en place 2 souscriptions avec le même nom, le serveur crash. J\'ai donc ajouté le GetHashCode() sur le DisplayName dans le code suivant:\r\n\r\n m_subscription = new Subscription();\r\n\r\n m_subscription.DisplayName = \"OPCUA Subscription\" + m_subscription.GetHashCode();\r\n m_subscription.PublishingEnabled = true;\r\n m_subscription.PublishingInterval = 1000;\r\n\r\n m_session.AddSubscription(m_subscription);\r\n\r\n m_subscription.Create();\r\n\r\n\r\n2- Quand je fais un Thread.Sleep(20000), soit 20 secondes, les diagnostiques de la session disparaissent totalement, toutes les valeurs affichent N/A pour toutes les souscriptions.\r\n\r\n3- Quand je déconnecte la première souscription, le serveur plante:\r\n\r\n m_subscription.SetPublishingMode(false);\r\n\r\n m_subscription.ApplyChanges();\r\n\r\n m_subscription = null;\r\n\r\n4- Si je crée plusieurs sessions avec le même nom d\'application, une seule session apparaît dans les diagnostiques, pas forcément la première créé.\r\n\r\n\r\n\r\nJe voulais valider le comportement du client, que toutes les sessions et souscriptions soient bien fermé, mais cela est impossible vue les problèmes rencontré ci-dessus.',NULL,NULL,1,NULL,4,NULL,461,1,'2021-01-19 14:44:25','2021-01-19 14:55:52','2021-01-19',0,NULL,NULL,519,1,2,0,NULL),(520,3,58,'Certification OPC-UA','Monsieur Condemine,\r\n\r\nComme convenu, ci-joint un zip avec les binaires recompilés avec la dernière version 1.0.5.9 RC03.\r\nLes fichiers doivent remplacer ceux présents dans le répertoire « C:\\Program Files (x86)\\CHUBB\\Concentrateur ADP Certification OPC-UA ».\r\n\r\nQuelques petites choses à mettre à jour sur la version reçue, constatées à la compilation et à l’exécution :\r\n* Dans le projet « OpenOpcUaVpiLibrary.vcxproj », il reste une référence à un répertoire VS2013 dans le post-build en Win32/Release.\r\n* Le Vpi ne génère plus de fichier de log, il y’a apparemment un ‘return’ au début de la fonction « Vpi_Void VPI_DLLCALL Vpi_Trace_Internal(void* pProxyStubConfiguration, Vpi_UInt32 a_uTraceLevel, Vpi_CharA* a_sMessage) » qui empêche l’écriture.\r\n\r\nSinon le serveur se lance bien, j’ai pu me connecter avec UAExpert et parcourir l’arborescence.\r\n\r\nDans l’attente de vos retours,\r\ncordialement,\r\nOlivier Pesle.\r\n',NULL,NULL,1,1,5,NULL,347,2,'2021-01-20 12:26:37','2021-01-25 16:58:03','2021-01-20',0,NULL,NULL,520,1,2,0,NULL),(521,1,79,'Valeurs non a jour!','Bonjour,\r\n\r\nNous constatons que certaines valeurs ne sont pas a jour quand elles sont modifiées par le client puis modifiés par le serveur.\r\n\r\nCeci est très problématique et rends la solution totalement non fiable.\r\n\r\nPouvez-vous regardé s\'il vous plait?\r\n\r\n\r\nNous avons ce problème sur le node id suivant (quelques soit la machine):\r\n<Tag Name=\"RecipeSynchro\" Id=\"ns=13;s=SubSystem 12 OVEN BOTTOM.RECIPE.RecipeSynchro\" Type=\"Int16\" AccessRight=\"Input_Output\" Address=\"DB03E9.0002\" />\r\n\r\nL\'interface y écrit la valeur 4, ce qui déclenche un programme sur les automates qui après opération écrit 0 dans ce node id. L\'interface continu de voir 4.\r\n\r\nChez un client nous avons du ajouter un délai entre 200 et 500 ms sur tous les programmes automates avant de passer la valeur à 0.',NULL,NULL,3,NULL,7,NULL,461,2,'2021-01-20 13:48:22','2021-01-21 09:12:05','2021-01-20',100,NULL,NULL,521,1,2,0,'2021-01-21 00:06:08'),(522,1,77,'Test ','Test for Sylvain',NULL,NULL,1,NULL,4,NULL,1,0,'2021-01-21 10:24:03','2021-01-21 10:24:03','2021-01-21',0,NULL,NULL,522,1,2,0,NULL),(523,1,73,'Etat serveur ','Bonjour Monsieur Condemine, \r\n\r\nJe reviens vers vous pour savoir si vous avez eu le temps de regarder le problème sur le serveur OPCua depuis le 18/01 à cause du remplacement des fichiers du serveur OPCua pour la communication inter-vpi.\r\n\r\nDans l\'attente de votre réponse.\r\n\r\nCordialement \r\nAlexandre macé',NULL,NULL,5,1,5,NULL,459,2,'2021-01-21 17:49:36','2021-01-21 22:11:10','2021-01-21',100,NULL,NULL,523,1,2,0,'2021-01-21 22:11:10'),(524,3,75,'Utilisation des alarmes OpenOpcUa ','Bonjour M. Condemine\r\n\r\nNous tentons d\'utiliser les alarmes OpenOpcua. \r\nNous avons bien pu implémenter les alarmes de type LimitAlarm comme vous l\'avez fait dans la démo Alarms and Conditions\r\nOr, en implémentant une alarme OffNormalType (comme dans la norme opcua et pas comme dans la démo en tant que alarme booléenne), lorsque nous lui donnons assignons une variable NormalState et InputNode comme dans la norme, ça ne fonctionne pas comme prévu. \r\n\r\nVoici la déclaration de notre alarme : \r\n\r\n!clipboard-202101281528-cwjgd.png!\r\n\r\n!clipboard-202101281529-kawwx.png!\r\n\r\net voici le nœud auquel l\'alarme est rattachée : \r\n\r\n!clipboard-202101281530-tu4kn.png!\r\n\r\n\r\net son objet Event Source auquel on s\'abonne:\r\n\r\n!clipboard-202101281531-2wuod.png!\r\n \r\n\r\n\r\nDans l\'implémentation OpenOpcUa, le NormalState est il pris en compte ou bien le OffNormalType est-il simplement une alarme booléenne?\r\nSi oui, auriez vous un exemple de comment déclarer une variable de type NodeId avec sa valeur? \r\nLes autres types d\'alarmes de la norme sont elles implémentées ? \r\n\r\nMerci d\'avance \r\nMichael\r\nDéveloppeur Inetum',NULL,NULL,5,432,4,NULL,432,6,'2021-01-28 15:32:31','2021-05-03 14:29:26','2021-01-28',100,NULL,NULL,524,1,2,0,'2021-05-03 14:29:26'),(525,1,43,'WS reputation OOUACoreServer','Symantec detect OOUACoreServer as a malware\r\n!clipboard-202101282221-huieu.png!\r\n',NULL,NULL,5,1,6,NULL,1,2,'2021-01-28 22:21:46','2022-03-28 00:22:23','2021-01-28',100,NULL,NULL,525,1,2,0,'2022-03-28 00:22:23'),(526,1,43,'Conflict between VpiUAClient and CTT ','uStatus = OpcUa_BadSequenceNumberUnknown; // OpcUa_BadSequenceNumberUnknown for CTT but OpcUa_Good for Vpi_UaClient so ... ; Change this during the test phase of the VpiUaClient.\r\nIt seems to have a conflict between the VpiUaClient and the expected CTT behavior.\r\nSee SessionServer.cpp line 2331',NULL,NULL,2,1,6,NULL,1,0,'2021-01-31 23:24:47','2021-01-31 23:24:47','2021-01-31',0,NULL,NULL,526,1,2,0,NULL),(527,3,75,'Questions utilisation VFI CSV ','Bonjour, \r\n\r\nJ\'espère que vous allez bien\r\nNous manipulons le VfiCsv que vous nous avez partagé dur Redmine le 4 septembre dernier. \r\n\r\nNous avons réussi à la faire fonctionner et à la plugger à notre serveur de démo mais nous avons 2 questions:\r\n\r\n- vous nous avez précédemment indiqué que le ficher de configuration prend le nom du Archive Id que l\'on met dans le fichier ouprj. \r\nOr sur la démo que vous nous avez fournie, l\'archive ID est \"(ns=1,i=200) et le fichier .dat (CSV00200.dat). Y-a-t-il uniquement le i que l\'on met? ou bien le nom du fichier doit-il être du type (CSV01200.dat)\r\n\r\n- lorsque nous intégrons le VfiCsv, à notre démo, nous avons procédé de la même manière que vous. Or cela ne marchait pas le temps que nous rajoutons dans le nœud à historiser le paramètre Historizing=true, paramètre que vous n\'avez pas dû mettre dans votre démo CSV. Comment vous êtes vous affranchis de ce besoin ? \r\n\r\n\r\nMerci beaucoup ,\r\n\r\nMichael de l\'équipe Inetum\r\n\r\n\r\n',NULL,NULL,5,NULL,4,NULL,432,2,'2021-02-02 10:07:49','2021-02-12 18:15:03','2021-02-02',0,NULL,NULL,527,1,2,0,'2021-02-12 17:56:23'),(528,3,58,'Certification OPC-UA','Bonjour monsieur Condemine,\r\n\r\nLes binaires utilisés pour la certification sont-ils disponibles, ainsi que le code source ?\r\nPouvons-nous les récupérer sur RedMine ?\r\n\r\nCordialement,\r\nOlivier Pesle',NULL,NULL,1,1,5,80,347,0,'2021-02-05 14:43:32','2021-02-05 14:43:32','2021-02-05',0,NULL,NULL,528,1,2,0,NULL),(529,1,78,'EOLMachineType Modèle Assembly','Bonjour,\r\nla classe EOLMachineType est mal formée dans le modèle Assembly.\r\nElle n\'hérite de rien. \r\nAfin de générer correctement le modèle à partir de la dernière version EA j\'ai corrigé l\'héritage.\r\nEOLMachineType hérite de MachineType. \r\nMerci de confirmer ou de corriger.\r\n\r\nCordialement\r\nMichel',NULL,NULL,3,454,6,NULL,1,2,'2021-02-10 00:26:38','2021-02-15 11:03:11','2021-02-10',100,NULL,NULL,529,1,2,0,'2021-02-15 11:03:11'),(530,1,78,'Types orphelins','Bonjour,\r\nj\'ouvre ce ticket pour tracker et éventuellement supprimer les types orphelins. \r\nUn type orphelin est un type qui n\'est pas utilisé dans le modèle.\r\n\r\nAutoIdDeviceType : Conserver/supprimer ?\r\n\r\nCordialement\r\nMichel',NULL,NULL,3,NULL,6,NULL,1,2,'2021-02-10 13:32:25','2021-02-19 14:53:32','2021-02-10',100,NULL,NULL,530,1,2,0,'2021-02-19 14:53:32'),(531,1,78,'ElectricConsumptionDataType','Ce dataType me semble inutilement complexe.\r\nIl contient 3 attributs U,I et P.\r\nEst ce que quelqu\'un pourrait m\'expliquer pourquoi U,I et P sont des IOValueDataType et pas de float ?\r\n\r\nCordialement\r\nMichel',NULL,NULL,3,NULL,4,NULL,1,2,'2021-02-10 13:49:36','2021-02-15 11:02:07','2021-02-10',100,NULL,NULL,531,1,2,0,'2021-02-15 11:02:07'),(532,1,46,'policy Basic128Rsa15, mode Sign : periodic rsa_sign error','When using security policy Basic128Rsa15 with Sign option, every 45 minutes there is rsa_sign err in log file like :\r\n\r\n15:51:00.241Z ERROR *** RSA_Private_Sign: error:0D07207B:asn1 encoding routines:ASN1_get_object:header too long ***\r\n16:36:03.142Z ERROR *** RSA_Private_Sign: error:0D068066:asn1 encoding routines:asn1_check_tlen:bad object header ***\r\n17:21:05.749Z ERROR *** RSA_Private_Sign: error:0D07207B:asn1 encoding routines:ASN1_get_object:header too long ***\r\n18:06:08.331Z ERROR *** RSA_Private_Sign: error:04093004:rsa routines:old_rsa_priv_decode:RSA lib ***\r\n18:51:11.006Z ERROR *** RSA_Private_Sign: error:0D07803A:asn1 encoding routines:asn1_item_embed_d2i:nested asn1 error ***\r\n19:36:13.800Z ERROR *** RSA_Private_Sign: error:0D0680A8:asn1 encoding routines:asn1_check_tlen:wrong tag ***\r\n\r\nafter each error, session are close and reconnect fine, but some time, program crash.',NULL,NULL,3,NULL,6,NULL,398,12,'2021-02-10 15:50:49','2021-04-29 22:17:52','2021-02-10',90,NULL,NULL,532,1,2,0,'2021-04-29 22:17:52'),(533,1,77,'Sécurité dans OPC UA','Ajouter Annexe : Sécurité dans OPC UA',NULL,NULL,5,443,5,NULL,1,1,'2021-02-17 09:15:28','2021-02-17 10:08:32','2021-02-17',100,NULL,NULL,533,1,2,0,'2021-02-17 10:08:32'),(534,3,75,'Agrégation de plusieurs serveurs graines ','Bonjour M. Condemine,\r\n\r\nNous utilisons la dernière version reçue de VpiUaClient livrée sous OpenOpcUa_1_0_5_9_RC07_INETUM.zip(02/12/2021 05:48 PM).\r\n\r\nNous avons mis en place une maquette contenant un serveur agrégateur et 3 serveurs graines (de type Simulation livré Simulation_2020_Release_x64.zip 09/04/2020 02:52 PM).\r\n\r\nNous avons effectué une conf de type automatique. \r\nNous constatons que les 3 Address Space des 3 serveurs graines sont bien aspirés par contre la souscription auprès des valeurs ne fonctionne que sur un des serveurs graines. Nous constatons également dans le noeud Objects -> OpenOpcuaSystem -> VpiSet que la déclaration des 3 Sous-systèmes n\'est pas intègre:\r\n\r\n!clipboard-202102191639-v4wdf.png!\r\n\r\nSans surprise, le serveur graine pour lequel la souscription fonctionne est celui qui a la déclaration la plus propre dans le VpiSet et le premier Vpi déclaré dans le fichier de configuration ouaprj. \r\n\r\nLa maquette est également jointe (Multi client.zip)\r\n\r\n\r\nPar ailleurs, nous observons dans la dernière version (du VpliUaClient) uniquement que l\'aspiration n\'est plus attachée sur le nœud pointé par la configuration (fichier .dat), mais directement sous Objects. La méthode de configuration a t-elle évolué? \r\n\r\nMerci d\'avance, \r\n\r\nMichael et Nicolas \r\n\r\n ',NULL,NULL,3,NULL,4,NULL,432,2,'2021-02-19 16:47:48','2021-02-19 19:03:52','2021-02-19',100,NULL,NULL,534,1,2,0,'2021-02-19 19:03:52'),(535,3,75,'Lancement de la Demo SQL Server','Bonjour M.Condemine, \r\n\r\nJ\'essaye de lancer la démo Sql que vous nous avez fournie (Demo-SQL-HA_x64_Debug.zip 02/05/2021 04:10 PM) après avoir changé les éléments de connexion à la BDD (avec une BDD Microsoft SQL Express locale). \r\n\r\nJ\'ai une erreur indiquant que certains dll de Debug (MSVCP120D.dll et MSVCR120D.dll) de Visual Studio 2013 manquent (et je suis en 2019).\r\n \r\nPourriez-vous nous fournir une version Release (ou bien le source afin que j\'essaye de la compiler en Release)? Ou bien serait-il mieux que je fasse une installation de VS 2013 ? \r\n\r\n\r\nTrès bonne journée à vous, \r\n\r\nMichael',NULL,NULL,5,NULL,4,NULL,432,14,'2021-02-23 11:26:34','2021-03-03 15:17:34','2021-02-23',100,NULL,NULL,535,1,2,0,'2021-03-03 15:17:34'),(536,3,81,'ConnectionDesignType ','Bonjour,\r\nquelques information sur le ConnectionDesignType.\r\nHierarchie : \r\n!clipboard-202102241456-nnqpr.png!\r\n\r\nA suivre\r\nMichel Condemine',NULL,NULL,2,NULL,4,NULL,1,0,'2021-02-24 14:56:49','2021-02-24 14:56:49','2021-02-24',0,NULL,NULL,536,1,2,0,NULL),(537,3,75,'Nouvelle configuration VpiUaClnt en mode automatique','Bonjour,\r\nComme convenu, un redmine pour tracer notre besoin de comprendre comment configurer le VpiUaClient en mode automatique \"dernier cri\", en particulier quant au Node d\'accrochage.\r\nPour mémoire : en appliquant la configuration \"ancienne\", l\'aspiration est accrochée directement sous Objects, et plus sous le Node configuré dans le fichier .dat sous ROOT001.',NULL,NULL,5,1,4,NULL,433,2,'2021-02-25 10:27:16','2021-03-17 08:53:04','2021-02-25',100,NULL,NULL,537,1,2,0,'2021-03-17 08:53:04'),(538,3,75,'Sécurité','Bonjour Michel,\r\n\r\nComme convenu hier durant le call hebdomadaire, j\'ouvre un ticket Redmine concernant le partage du document EDF sur la sécurité.\r\n\r\nCordialement,\r\nChristophe',NULL,NULL,5,1,4,NULL,436,7,'2021-02-26 11:52:45','2021-03-22 10:05:57','2021-02-26',100,NULL,NULL,538,1,2,0,'2021-03-17 10:25:15'),(539,1,73,'combinaison DINT puis FLOAT sur le serveur','En Modbus, lorsqu\'on lit des adresses sur un automate via le VPI, il y a un problème/décalage d\'écriture des valeurs dans le serveur sur la combinaison DINT puis FLOAT.',NULL,NULL,5,NULL,4,NULL,429,10,'2021-03-02 15:36:10','2021-04-30 17:29:31','2021-03-02',100,NULL,NULL,539,1,2,0,'2021-04-30 17:29:31'),(540,2,73,'Ecriture adresses VPI MDBMaster','standardisation de l’écriture des adresses dans le VPI MDBMaster par rapport au VPI MDBserveur.',NULL,NULL,2,NULL,4,NULL,429,1,'2021-03-02 15:37:16','2022-11-17 14:19:36','2021-03-02',0,NULL,NULL,540,1,2,0,NULL),(541,3,75,'Aide diagnostic connexion serveur OOUA à distance','Bonjour M. Condemine, \r\n\r\nNous essayons de diagnostiquer un problème de connexion sur un serveur OPC UA déployé sur une VM. La machine en question arrive à accéder à la VM serveur au niveau réseau, et le port utilisé est ouvert au niveau du Firewall. \r\n\r\nVoici une trace Wireshark de la machine qui n\'arrive pas à se connecter au serveur : \r\n!clipboard-202103030954-6hoje.png!\r\n\r\n\r\nEt voici une trace de ma machine qui arrive bien à se connecter :\r\n!clipboard-202103030954-hwfim.png!\r\n\r\nY-a-t-il un scénario où le serveur ne répond pas à un OpenSecureChannelRequest? \r\n\r\nCordialement,\r\nMichael\r\n \r\n',NULL,NULL,5,NULL,4,NULL,432,7,'2021-03-03 09:57:25','2021-03-15 09:36:47','2021-03-03',100,NULL,NULL,541,1,2,0,'2021-03-15 09:36:47'),(542,1,56,'Test en cours sru Event for ALD',' if (uiActiveGroup == 1601) // Modif on feb 3 2021. Check pending\r\n { \r\n sprintf(szAddress, \"Z%02u.Z%04u.%s\",\r\n m_pEventTypeDef->t_Node,\r\n szCa,\r\n m_pEventTypeDef->t_PhysicalPointNumber,\r\n szBuffer);\r\n }\r\n else\r\n {\r\n sprintf(szAddress, \"Z%02u.%c%04u.%s\",\r\n m_pEventTypeDef->t_Node,\r\n szCa,\r\n m_pEventTypeDef->t_PhysicalPointNumber,\r\n szBuffer);\r\n }',NULL,NULL,5,NULL,4,NULL,1,4,'2021-03-04 14:47:41','2022-05-24 14:14:11','2021-03-04',0,NULL,NULL,542,1,2,0,'2022-05-24 14:14:11'),(543,2,73,'ConfigManager','Bonjour Monsieur Condemine,\r\n\r\nJe voulais savoir si il n\'existe pas un manuel d\'utilisation pour le configManager, car je rencontre de grandes difficultés à me servir du logiciel.\r\nDans l\'attente de votre réponse. \r\n\r\nCordialement, \r\nAlexandre Macé',NULL,NULL,5,1,4,NULL,459,3,'2021-03-05 16:53:42','2022-06-13 14:39:17','2021-03-05',0,NULL,NULL,543,1,2,0,'2022-06-13 14:39:17'),(544,3,79,'Statut serveur \"Failed\" ?','Bonjour,\r\n\r\nDepuis ce matin, le serveur renvoi un statut \"Failed\". Ce statut est fournit dans le \'keep alive\' et nous permet de valider la connexion au serveur.\r\n\r\nDans l\'état notre IHM se reconnecte tout le temps au serveur et recevant un statut failed, se déconnecte et recommence.\r\n\r\nComment puis-je debugger cette situation?\r\n\r\nMerci.\r\n\r\nPS: Copie d\'écran en pièce jointe montrant le statut du serveur.',NULL,NULL,5,NULL,5,NULL,461,6,'2021-03-08 10:14:20','2021-03-18 10:20:19','2021-03-08',100,NULL,NULL,544,1,2,0,'2021-03-08 18:35:26'),(545,1,75,'Bug HistoricalAccess','Bonjour M Condemine, \r\n\r\nNous avons repéré un bug sur le HA : \r\n \r\n- en configuration Time (dans la RC 07) , la période semble être la différence entre MaxTimeInterval et MinTimeInterval ( lorsque le Timer est reset il est égal à MaxTimeInterval, on le décrémente avec le temps qu\'a duré l\'opération de vérification, et pour vérifier si le Timer a fini on le compare à MinTimeInterval \r\n\r\n\r\n- en configuration Exception, MaxTimeInterval n\'est pas pris en compte \r\n\r\n\r\nMichael \r\n',NULL,NULL,5,NULL,4,NULL,432,4,'2021-03-15 10:13:41','2021-03-17 15:12:58','2021-03-15',100,NULL,NULL,545,1,2,0,'2021-03-17 15:12:58'),(546,1,75,'Améliorations et Bugs VFI CSV','Bonjour M. Condemine, \r\n\r\nVoici nos points sur le VFI CSV (dll livrée dans démo du 4 septembre 2020) : \r\n\r\n- En mode exception archivage en double lorsque Historizing=true et UserAcessLevel=15, archivage 1 fois si UserAcessLevel=3\r\n- Le HistoryRead n\'a lieu pas lieu depuis le fichier, que depuis le cache (les StartOfArchive rentrent-ils en jeu ici? )\r\n- La période où méthode de vidage du cache est trop lente (scénario où le serveur crashe avant le vidage dans le fichier)\r\n- Un accès au code source serait vraiment débloquant pour : débogage d\'un scénario de crash du serveur lorsque beaucoup de HistoryRead avec le CoreDump , réponse à questions tels que le \"VFI suppriment-ils les fichiers qui ne sont plus de date? \", \"en crée-t-il de nouveaux?\"\r\n\r\n\r\n\r\nMichael \r\n',NULL,NULL,5,NULL,4,NULL,432,2,'2021-03-15 10:38:13','2021-03-18 00:55:47','2021-03-15',100,NULL,NULL,546,1,2,0,'2021-03-18 00:55:47'),(547,1,79,'Serveur en état \"Failed\" permanent','Le même problème (http://www.openopcua.org/redmine/issues/544) revient et je ne trouve rien pour le résoudre.\r\n\r\nJ\'ai tenté un reboot, le problème est toujours le même. \r\n\r\nL\'état du serveur et failed, UAExpert se connecte bien, mais tout autre client vérifiant l\'état du serveur ne fonctionne pas correctement.\r\n\r\nLes logs ne montrent rien d\'utile. Pourriez-vous jeter un coup d\'oeil et me dire ce qui ne va pas?\r\n\r\nMerci.',NULL,NULL,2,NULL,6,NULL,461,3,'2021-03-18 10:25:56','2021-03-19 23:36:14','2021-03-18',0,NULL,NULL,547,1,2,0,NULL),(548,1,75,'VpiUaClnt : Node browse_root dupliqué coté aggrégateur si situé sous Object coté graine','Contexte :\r\nVpiUaClnt en conf automatique.\r\nLe serveur graine est aspiré depuis un Node \"browe_root\" situé directement sous Objects.\r\n\r\nComportement\r\nL\'aspiration des fils du Node \"browse_root\" pour rattachement sous le Node \"root\" se passe correctement, mais il y a en plus (et à tort) une duplication du Node \"Browse root\" (sans fils) sous l\'Objects du serveur aggrégateur.',NULL,NULL,5,1,3,NULL,433,1,'2021-03-18 14:19:11','2022-11-04 16:02:09','2021-03-18',100,NULL,NULL,548,1,2,0,'2022-11-04 16:02:09'),(549,1,73,'Import Uavariable','Bonjour M Condemine\r\n\r\nJe rencontre actuellement des problèmes à l\'import des UaVariables sur le ConfigManager. Les problèmes sont les suivants:\r\n\r\n- 1er problème \r\nQuand j\'importe le fichier csv sur le ConfigManager, les variables importées non pas les NodeIDs déclarés dans le fichier csv et les NodeIDs donnés par défaut ne se suivent pas, ex : variable1 i=1945, variable2 i=1976, variable3 i=2010. Alors que dans le fichier csv : variable1 i=1945, variable2 i=1946, variable3 i=1947.\r\n\r\n- 2ème problème\r\nA la suite du 1er problème si je sauvegarde les variables importées, elles ne sont pas sauvegardées dans le fichier XML.\r\n\r\nAlors que si je fais toutes les déclarations de variables sur le ConfigManager à la main, les variables sont bien déclarées avec un NodeID qui se suit et à la sauvegarde du ConfigManager, les variables sont enregistrées dans le fichier XML.\r\n\r\nDans l\'attente de votre retour, \r\nAlexandre Macé\r\n',NULL,NULL,3,1,5,NULL,459,3,'2021-03-23 18:01:00','2022-11-17 14:20:07','2021-03-23',100,NULL,NULL,549,1,2,0,'2022-11-17 14:20:07'),(550,3,75,'Mise à disposition version à jour du code OOUA, incluant le code à jour du Vpi UaClnt','Bonjour Michel.\r\n\r\nNous sommes actuellement bloqués par des problèmes de redescente d\'information depuis le serveur Plant vers le serveur Line dans la mise en place de notre nouvelle Démo. \r\n\r\nNous suspectons des problèmes de cohabitation de Vpi que nous pensons probablement résolus par les corrections dont vous nous avez parlé. Pouvez vous s\'il vous plait nous mettre à disposition un niveau de code à jour, comme évoqué lors de nos réunions.\r\n\r\nMerci d\'avance.\r\n\r\nCdlt.\r\n\r\nNicolas.',NULL,NULL,5,1,6,NULL,433,1,'2021-03-25 11:46:15','2021-04-08 20:49:28','2021-03-25',100,NULL,NULL,550,1,2,0,'2021-04-08 20:49:28'),(551,2,73,'Test OPCua ','Bonjour Monsieur Condemine \r\n\r\nJe me permet de revenir vers vous sur les sujets :\r\n\r\n- La combinaison DINT puis FLOAT sur le serveur\r\n- La standardisation de l’écriture des adresses dans le VPI MDBMaster par rapport au VPI MDBserveur.\r\n\r\nDans l\'attente de votre réponse. \r\n\r\nCordialement, \r\nAlexandre macé',NULL,NULL,2,1,6,NULL,459,2,'2021-04-06 18:35:51','2022-11-17 14:22:09','2021-04-06',0,NULL,NULL,551,1,2,0,NULL),(552,1,73,'Compilation projet OpcUa sur Mac OS','Bonjour Monsieur Condemine,\r\n\r\nAprès avoir tenté de multiples solutions pour compiler le projet OPC UA sur la plateforme Mac OS, je bloque toujours sur le même problème. A savoir sans doute comme vous me l\'aviez indiqué, une directive de compilation mal positionnée dans le fichier cmakelist.txt\r\n\r\nVous m\'aviez indiqué pour la compilation de \'OpenOpcUaStack\':\r\n\r\n\"il y a manifestement une erreur dans votre plateforme de génération.\r\nstdio.h n\'est pas inclus, probablement car GNUC n\'ai pas dans les options du préprocesseur.\r\nLa ligne 288 du fichier doit etre ignorée par INC_STDIO lui même activé par _GNUC\"\r\n\r\nLors de la compilation avec Xcode sur Mac OS il apparaît que \'_GNUC_\' est bien défini mais pas \'_INC_STDIO\'\r\nQuelle est l\'option ou la ligne de code qui définie \'_INC_STDIO\' ?\r\n\r\nJ\'ai également tenté de compliler \'OpenOpcUaSharedlib\'\r\nj\'ai 3 erreurs sur le fichier \'opcua_certficates.cpp\'\r\n\r\n[ 90%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/opcua_certficates.cpp.o\r\n/Users/administrateur/Documents/OPC/OPC-UA/OpenOpcUa_1_0_5_8-B_copy/OpenOpcUaSharedLib_test/source/opcua_certficates.cpp:120:56: error: member reference base type \'fpos_t\' (aka \'long long\') is not a structure or union\r\n pBuffer = (BYTE*)OpcUa_Alloc((OpcUa_UInt32)iLength.__pos);\r\n ~~~~~~~^~~~~~\r\n/Users/administrateur/Documents/OPC/OPC-UA/OpenOpcUa_1_0_5_8-B_copy/OpenOpcUaSharedLib_test/../include/opcua/opcua_platformdefs.h:253:76: note: expanded from macro \'OpcUa_Alloc\'\r\n#define OpcUa_Alloc(xSize) OpcUa_Memory_Alloc(xSize)\r\n ^~~~~\r\n/Users/administrateur/Documents/OPC/OPC-UA/OpenOpcUa_1_0_5_8-B_copy/OpenOpcUaSharedLib_test/source/opcua_certficates.cpp:121:40: error: member reference base type \'fpos_t\' (aka \'long long\') is not a structure or union\r\n memset(pBuffer, 0, (size_t)iLength.__pos);\r\n\r\nJ\'ai essayé plusieurs solutions, installation de nouvelle machine avec nouvel OS, utilisation du compilateur natif ou installation de GCC\r\n\r\nIl semble bien que le blocage soit \'_INC_STDIO\' mais je ne trouve pas la solution\r\n\r\nMerci pour votre aide\r\n\r\nJacques Peigné\r\n',NULL,NULL,5,1,4,NULL,431,4,'2021-04-08 14:30:10','2021-04-12 19:00:37','2021-04-08',100,NULL,NULL,552,1,2,0,'2021-04-09 18:18:40'),(553,1,73,'Teams Opcua','Bonjour Monsieur Condemine,\r\n\r\nActuellement je rencontre des problèmes sur la récupération des valeurs de type int32, pouvons-nous organiser une réunion Teams suivant vos disponibilités pour voir le problème et essayer de le régler.\r\nDans l\'attente de votre retour.\r\n\r\nCordialement,\r\nAlexandre macé',NULL,NULL,5,1,4,NULL,459,2,'2021-04-09 13:27:40','2021-04-30 17:29:51','2021-04-09',100,NULL,NULL,553,1,2,0,'2021-04-30 17:29:51'),(554,3,79,'Merci pour l\'accès aux documents , je vais les étudier pour une solution d\'accès aux \'DO\'','Je vous remercie pour l\'accès, ce message afin de confirmer qu\'il fonctionne.\r\n\r\nPour info : La machine de démonstration n\'est plus accessible (elle a été mise en production), donc il n\'est plus possible d\'essayer comme vous le faisiez ces derniers mois, ni de livrer les mises a jours en directe par TeamViewer.\r\n\r\nJe vous tiens au courant par le biais de ce canal si je trouve la solution à mon problème immédiat dans la documentation (a savoir en fermant ce ticket).\r\n\r\nDescription du besoin :\r\n* Capacité de lire les sorties automate %Q2.0 .. %Q2.3 qui pilotent les \'LightTower=Balise Rouge/Orange/Vert/buzzer\' pour les visualiser sur l\'IHM.\r\n\r\n\r\nBien Cordialement\r\nJ-L\r\n',NULL,NULL,2,NULL,3,NULL,462,13,'2021-04-09 13:45:55','2021-05-12 14:27:41','2021-04-09',20,NULL,NULL,554,1,2,0,NULL),(555,1,75,'Maquette bug Plant et 2 lignes conf manuelle ','Bug avec remontée données ligne plant fonctionne mais descente plant ligne KO (de façon non régulière)',NULL,NULL,5,NULL,7,NULL,432,8,'2021-04-12 12:29:35','2021-04-14 18:24:49','2021-04-12',100,NULL,NULL,555,1,2,0,'2021-04-14 18:24:49'),(556,3,77,'P2V WOIS','Bonjour,\r\nAfin de convertir le WOIS en machine virtuelle merci de charger et d\'installer l\'outil suivant :\r\nhttps://docs.microsoft.com/fr-fr/sysinternals/downloads/disk2vhd\r\n\r\nCordialement\r\nMichel\r\n',NULL,NULL,1,443,4,NULL,1,0,'2021-04-14 09:27:24','2021-04-14 09:27:24','2021-04-14',0,NULL,NULL,556,1,2,0,NULL),(557,3,75,'Debug réception alarmes OOUA par client Genesis','Bonjour M. Condemine, \r\n\r\nJ\'ai effectué de mon côté et avec ICONICS du diagnostique sur le sujet des alarmes et évènements. Voici ce que j\'ai trouver à travers des traces Wireshark que j\'ai conservé et que l\'on peut reproduire \r\n\r\nA) Client Ua Expert \r\n\r\n1) Souscription aux évènements liés à un objet \r\n\r\nPaquet CreateMonitoredItemRequest avec 19 éléments est émis par UaExpert \r\n[0 EventId, 1 EventType, 2 SourceName, 4 Time, 5 Message , 6 ConditionName, 7 BranchId, 8 Retain, 9 DialogState , 10 QualifiedName, 11 ResponseOptionSet, 12 Default Response, 13 Acked State + Id, 14 ConfirmedState + Id , 15 ActiveState, 16 ActiveState + Id , 17 ActiveState + EffectiveDisplayName, NodeId] \r\nLe serveur répond Good\r\n\r\n2) Levée d\'une alarme en modifiant la variable surveillée par le serveur \r\n\r\nPaquet PublishResponse émis par le serveur avec 19 éléments. Le serveur a rempli les champs qu\'il connait, et laissé à nul ce qu\'il ne connait pas. \r\n\r\n\r\nB) Client Genesis \r\n\r\n1) Souscription aux évènements liés à un objet \r\n\r\nPaquet CreateMonitoredItemRequest avec 11 éléments est émis par Genesis\r\n[ 0 EventId, 1 NodeId, 2 EventType, 3 EventType (2ème fois), 4 SourceNode, 5 Time, 6 Message, 7 Severity, 8 EnabledState + Id ,9 ActiveState + Id, 10 AckedState + Id]\r\n\r\nLe serveur répond Good\r\n\r\n2) Levée d\'une alarme en modifiant la variable surveillée par le serveur \r\n\r\nPaquet PublishResponse émis par le serveur avec 7 éléments. \r\n\r\n[0 un EventId , 1 un EventType sous forme de NodeId , 2 un EventType sous forme de NodeId , 3 SourceNode , 4 Time , 5 Message, 6 Severity] \r\n\r\n\r\nC) Clients Softing et Integration Objects\r\n\r\n1) Souscription aux évènements liés à un objet\r\n\r\n9 éléments demandés\r\n\r\n2) Levée d\'une alarme en modifiant la variable surveillée par le serveur \r\n\r\n9 éléments reçus au bon endroit et dans le bon ordre\r\n\r\n\r\nJe me demande donc pourquoi le serveur n\'applique pas le même mécanisme avec Genesis qu\'avec UaExpert, (répondre avec un tableau de même taille que celui du tableau qui contient les éléments demandés, en mettant Null aux éléments pour lesquelles il n\'a pas l\'information ( NodeId, EnabledState + Id, ActiveState + Id , AckedState+ Id) ) \r\n',NULL,NULL,6,432,7,NULL,432,31,'2021-04-14 14:41:32','2021-10-29 13:10:18','2021-04-14',100,NULL,NULL,557,1,2,0,'2021-10-29 13:10:18'),(558,1,73,'Test OPCua','Bonjour M Condemine, \r\n\r\nCette semaine durant mes tests j\'ai rencontré un nouveau problème, \r\n\r\nContexte : Récupérer les valeurs de 61 variables (107 words) sur un automate à l\'aide d\'un VPI.\r\n\r\nProblème : Dans mon VPI après l\'ajout de 51 tags (75 words) si je rajoute un nouveau tag, au démarrage du serveur, il se ferme au bout de 30s - 2min.\r\n\r\nAvez-vous une idée d’où le problème pourrait venir ? \r\nDans l\'attente de votre réponse. \r\n\r\nCordialement, \r\nAlexandre Maé',NULL,NULL,5,1,4,NULL,459,3,'2021-04-22 18:16:48','2021-04-26 14:38:07','2021-04-22',100,NULL,NULL,558,1,2,0,'2021-04-26 14:38:07'),(559,3,68,'Sources VPI suite conférence','Bonsoir,\r\nMerci pour ton intervention.\r\nJ\'ai uploadé les sources de notre VPI pour que tu les recompile en 64 bits vs2017 pour la dernière version du serveur.\r\n\r\nBonne soirée',NULL,NULL,1,1,4,NULL,223,1,'2021-04-22 20:08:21','2021-04-22 20:11:02','2021-04-22',0,NULL,NULL,559,1,2,0,NULL),(560,1,73,'INT32 fichier csv','Bonjour M Condemine, \r\n\r\nDans un fichier csv, pour déclarer une UaVariable en int32 je rentre dans la partie \"Datatype\" int32, mais quand j\'importe le fichier csv dans le ConfigManager, l\'UaVariable que je voulais déclarer en int32 est déclaré en Uint32.\r\n\r\nSavez-vous quelle information faut-il rentrer dans la partie \"Datatype\" pour avoir une UaVariable de type int32. \r\nDans l\'attente de votre retour. \r\n\r\nCordialement, \r\nAlexandre Macé',NULL,NULL,5,1,4,NULL,459,1,'2021-04-29 19:00:27','2021-04-29 21:02:51','2021-04-29',100,NULL,NULL,560,1,2,0,'2021-04-29 21:02:51'),(561,2,75,'Modèle','A méditer\r\n!clipboard-202104301512-mejdj.png!\r\n',NULL,NULL,5,436,4,NULL,1,2,'2021-04-30 15:13:16','2021-08-30 18:11:23','2021-04-30',100,NULL,NULL,561,1,2,0,'2021-08-30 18:11:23'),(562,3,75,'Manipulation de l\'outil OpenOpcUaConfigManager version 0.9.1','Bonjour, \r\n\r\nJ\'ai quelques soucis en manipulant l\'outil OpenOpcUaConfigManager pour instancier des objets. \r\n\r\nJ\'utilise le projet Tricycle que vous nous avez mis à disposition. \r\n\r\nJ\'ajoute en zip le dossier Project associé. \r\nVoici les problèmes que je rencontre : \r\n\r\n- En instanciant un objet à travers l\'IHM, j\'ai un crash de l\'application au moment de la sauvegarde du Nodeset\r\n\r\n- En instanciant un objet à travers un fichier csv (import.csv dans le dossier Project), j\'ai un retour de type AddUAObjectFromCSVRecord. J\'ai essayer de manipuler le fichier CSV avec les instructions que vous nous avez donné à notre call hebdomadaire du 17 février. \r\n\r\n\r\nJ\'ai également essayer de créer un projet neuf : \r\n\r\n- Au moment de la création d\'un nouveau NodeSet et puis de l\'ajout d\'un nouvel URI pour ce fichier d\'instance, la fenêtre qui gère les URI ne fonctionne pas. \r\n\r\nUne bonne partie de ces problèmes viens surement de ma mauvaise manipulation de l\'outil. \r\n\r\nPourrais t-on convenir à un call cette semaine pour tester l\'instanciation sur cette nouvelle version? Afin que cela me sert de support pour mes prochains travaux. \r\nJe suis disponible demain, jeudi matin ou bien vendredi. \r\n\r\nTrès cordialement, \r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,4,'2021-05-04 14:26:12','2021-05-06 23:58:09','2021-05-04',100,NULL,NULL,562,1,2,0,'2021-05-06 23:58:09'),(563,1,73,'VPI et nombre de mots max protocole modbus','Bonjour M Condemine\r\n\r\nLe protocole de communication Modbus a pour taille 256 octets de données maximale. \r\nConcernant les VPI, est ce que je dois créer un VPI par com Modbus, ou bien je peux créer un VPI et affilier plusieurs coms Modbus à ce même VPI.\r\nDans l\'attente de votre réponse.\r\n\r\nCordialement\r\nAlexandre Macé\r\n\r\n',NULL,NULL,5,1,4,NULL,459,2,'2021-05-06 13:10:23','2022-06-13 14:39:35','2021-05-06',0,NULL,NULL,563,1,2,0,'2022-06-13 14:39:35'),(564,2,47,'OpenOpcuaConfigManager','Bonjour, \r\n\r\nSuite à notre discussion aujourd\'hui j\'ouvre ce ticket d\'évolution sur l\'outil OpenOpcuaConfigManager. \r\nNous souhaiterons si possible que pour l\'instanciation en CSV, nous puissions instancier un objet à partir de son type sans préciser tous ces champs (comme le fait parfaitement l\'instanciation à travers l\'IHM) \r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,2,1,4,NULL,432,2,'2021-05-07 17:31:24','2022-11-04 16:04:33','2021-05-07',0,NULL,NULL,564,1,2,0,NULL),(565,3,98,'Manipulation de l\'outil Entreprise Architect pour générer un XMI et l\'importation dans Ximulator 1.0.1.1','Bonjour, \r\n\r\nComme montré dans notre call ce matin, je retrouve la même erreur sous Ximulator indiquant : 07/05/2021 17:47:03 Critical error>Orphan class found EAID_98DB13B6_F59C_4fb5_A24C_CF6CD75B667D. It cannot be found in the current loaded xmi files\r\n\r\nMa manipulation sur Entreprise Architect est la suivante: Publish, Export XML , Export XML for current Package, Publish, UML 2.5.1 (XMI 2.5.1), Décocher Export Diagram, Export. \r\n\r\n\r\nJe met en pièce jointe un zip contenant , \r\n\r\n- le projet Entreprise architect pour Tricycle\r\n- le XMI que vous nous avez fourni avec le projet Tricycle (dossier v2 with Old XMI) qui est bien importé par Ximulator sans erreur \r\n- le XMI qu\'on a généré avec notre version du Entreprise Architect qui génère l\'erreur indiquée sur Ximulator \r\n\r\nQu\'en pensez vous? \r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,3,NULL,4,NULL,432,13,'2021-05-07 18:00:42','2022-05-14 11:52:19','2021-05-07',100,NULL,NULL,565,1,2,0,'2021-05-28 11:40:09'),(566,3,75,'Assistance compilation prohet OOUA, ClientLib et VpiUaClient pour stack ipv4','Bonjour, \r\n\r\nJ\'espère que vous allez bien. Nous essayons de mettre en place une connexion entre Serveur PM et LM sur des machines séparés avec une stack IPV4 comme on devra le faire chez le client. \r\n\r\nVoici les essais que j\'ai fait et les résultats : \r\n\r\n- compilation du projet OOUA en IPV4 et copie des binaires ipv4 dans le projet du PM (qui devra être l\'agrégateur) : au lancement du projet la ClientLib indique qu\'il lui manque des points d\'entrées vers la SharedLib \r\n!clipboard-202105251100-ixzpc.png!\r\n\r\n\r\n- copie uniquement du binaire ipv4 de la OpenOpcuaStackV1: au lancement du projet, pas d\'erreur mais la connexion PM -> LM n\'est pas étable. Le log du VPiUaClient indique des erreurs : \r\n!clipboard-202105251105-zbznt.png!\r\n\r\n\r\nPourriez vous s\'il vous plaît nous indiquer le procédure ou bien convenir assez rapidement sur une session pour nous montrer comment procéder? Nous souhaiterons montrer nos démos au client avec une architecture similaire à la sienne dans les jours qui viennent. \r\n\r\nMerci beaucoup. \r\nCordialement, \r\n\r\nMichael Ejigu',NULL,NULL,3,NULL,6,NULL,432,11,'2021-05-25 11:08:27','2021-08-04 18:03:17','2021-05-25',100,NULL,NULL,566,1,2,0,'2021-08-04 18:03:17'),(567,1,47,'Generation des Variable Types Ximulator v1.0.1.3_v1.0.1.9','Bonjour, \r\n\r\nSuite à notre modification sur le modèle hier, j\'ai réeffectué des tests. \r\n\r\nLe positif est que on a plus l\'erreur systématique dans le log \"Cannot find EMotorsBaseObjectType during call to SearchNodeClassbyBrowseName. Here we limit recursion\" \r\n\r\nJ\'ai fait les tests en générant le modèle en entier ainsi qu\'en générant séparément les packages dans l\'ordre des dépendances. \r\n\r\nDeux symptômes persistent dans les deux cas : \r\n\r\n- Message dans le log à l\'ouverture des XMI : \"Guid of the super classe cannot be found in the current xmi file. EAID_83BB1A9D_6CAA_4ef5_8832_938E3EE16E93\" \r\n\r\n- certains DataTypes ne sont pas convertis en VariableType (comme par exemple le Part_Produce_Datatype ou Traceability_result_Datatype) \r\n\r\n\r\nJ\'ai mis en PJ une maquette qui contient le projet Ximulator ainsi qu\'un serveur OOUA ingérant le ou les NodeSet de type générés. Je l\'ai fait pour les essais en générant le modèle en entier ainsi qu\'en générant les classes séparément (dossiers avec le mot clé Decomp dans le nom). Ce qui fait 4 dossiers dans le zip. \r\n\r\n\r\nTrès cordialement, \r\n\r\nMichael\r\n',NULL,NULL,3,NULL,4,NULL,432,2,'2021-06-01 11:05:42','2022-05-14 11:50:57','2021-06-01',100,NULL,NULL,567,1,2,0,'2021-06-01 17:39:33'),(568,3,75,'Questions développement de méthodes ','Bonjour M. Condemine, \r\n\r\nJe développe une méthode pour tester la cohabitation OOUA et Genesis sur les méthodes. \r\n\r\nDans toutes les déclarations de méthodes dans NodeSet de type que j\'ai trouvé (DemoMéthodes, DemoLua, Méthodes du serveur OOUA déclarées dans les NodeSet de fondation), je vois que les input et output Arguments sont déclarés sous forme de ExtensionObjects. Est-ce la seule possibilité? Ou pensez vous que je peux utiliser les types élémentaires UInt32 pour la déclaration etc.. ? Je pose cette question pour savoir si le client OPC UA a besoin de supporter les ExtensionObjects pour pouvoir appeler les méthodes en donnant ces paramètres d\'entrée et récupérant ces paramètres de sortie. \r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,NULL,4,NULL,432,1,'2021-06-01 11:28:57','2021-06-01 11:37:28','2021-06-01',100,NULL,NULL,568,1,2,0,'2021-06-01 11:37:28'),(569,3,98,'Mauvais lien entre objets du package JobOrder et le type EmotorsBaseObjectType du package Shared','Bonjour, \r\n\r\n\r\nCi-joint la maquette pour ce qu\'on a vu tout alors pendant le call lors de la génération de NodeSet de type à partir des XMI des packages SharedClasses et JobOrder : ObjectTypes manquant du package JobOrder. \r\n\r\nLa maquette contient les XMI et les xprj pour les deux packages. \r\n\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,3,NULL,4,NULL,432,2,'2021-06-04 17:56:57','2022-05-14 11:48:01','2021-06-04',100,NULL,NULL,569,1,2,0,'2021-08-04 18:04:44'),(570,3,47,'Assistance avec l\'outil OpenOpcUaConfigManager 0 9 2 (crash à l\'import et erreur pendant sauvegarde de node set d\'instances)','Bonjour, \r\n\r\nLe test qu\'on avait fait tout à l\'heure pour l\'instanciation d\'un ObjectType contenant des Datatype n\'a en fait pas fonctionné. L\'IHM montrait que le nœud était instancié mais une erreur dans le log indiquait : \r\n!clipboard-202106041805-2liyc.png!\r\n\r\n\r\n\r\nNous attendons la dernière version du ConfigManager pour retester les deux anomalies qu\'on a observé, mais voici quand même une maquette qui permet de reproduire les deux anomalies. \r\n\r\nAnomalie 1 : Import d\'un projet avec le node set de type du modèle eMotors en entier et crash de l\'outil \r\n\r\nAnomalie 2 : Erreur pendant l\'instanciation d\'un ObjectType (dans Objects, FolderType, KPI_ERP_OF) \r\n\r\n\r\nLa maquette contient l\'outil ConfigManager avec un dossier Project (Projet avec le modèle généré en entier) qui permet de tester l\'anomalie 1 et un dossier ProjectDecomp (Projet avec le modèle généré en deux parties ) qui permet de tester l\'anomalie 2. \r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n\r\n',NULL,NULL,5,NULL,4,NULL,432,14,'2021-06-04 18:12:24','2022-05-14 11:50:14','2021-06-04',100,NULL,NULL,570,1,2,0,'2021-08-04 18:06:41'),(571,1,26,'OOUAFlexClient crash when reading SessionDiagnostics with Prosys Simulation Server.','The problem occurs only with this server.\r\nNeed further investigation',NULL,NULL,1,1,4,NULL,1,0,'2021-06-04 23:01:48','2021-06-04 23:01:48','2021-06-04',0,NULL,NULL,571,1,2,0,NULL),(572,1,78,'Erreur modele','Bonjour,\r\nle Receive_Datatype hérite du EMotorsBaseObjectType. c\'est sémantiquement impossible.\r\nUn datatype ne peux pas hériter d\'un ObjectType. \r\n!clipboard-202106042326-hnxci.png!\r\n\r\nCordialement\r\nMichel Condemine\r\n',NULL,NULL,5,447,7,NULL,1,2,'2021-06-04 23:28:17','2022-05-20 15:09:52','2021-06-04',100,NULL,NULL,572,1,2,0,'2022-05-20 15:09:52'),(573,1,78,'Erreur model','Bonjour,\r\nle KPI_Maintenance_DataType est déclaré dans le modèle JobOrder et utilisé dans le modèle Shared.\r\nC\'est interdit. Il convient donc de déplacer KPI_Maintenance_DataType dans le modèle Shared.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,447,5,NULL,1,5,'2021-06-04 23:39:43','2022-05-20 15:09:34','2021-06-04',100,NULL,NULL,573,1,2,0,'2022-05-20 15:09:34'),(574,1,78,'Part_Produce_Datatype modelling error','Part_Produce_Datatype herite de EMotorBaseObjectType. C\'est impossible. Un dataType ne doit pas hériter d\'un objectType.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,447,7,NULL,1,1,'2021-06-05 00:14:54','2022-05-20 15:09:17','2021-06-05',100,NULL,NULL,574,1,2,0,'2022-05-20 15:09:17'),(575,1,78,'Erreur KPI_ERP_OF_Type','Il s\'agit d\'une erreur relativement mineur et lié à l\'ordre de génération du modèle.\r\nKPI_ERP_OF_Type et la déclaration de tous ces attributs ne doit pas se trouver dans le Package JobOrder. \r\nKPI_ERP_OF_Type utilise KPI_Maintenance_DataType qui se trouve dans la SharedClasses. \r\nIl convient donc de tout déplacer dans le package SharedClasses.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,447,6,NULL,1,2,'2021-06-05 14:31:47','2022-05-20 15:08:46','2021-06-05',100,NULL,NULL,575,1,2,0,'2022-05-20 15:08:46'),(576,1,75,'Assistance OOUAConfigManager 093 crash applciation','',NULL,NULL,5,NULL,4,NULL,432,1,'2021-06-07 14:00:12','2021-08-04 18:10:50','2021-06-07',100,NULL,NULL,576,1,2,0,'2021-08-04 18:10:50'),(577,1,78,'Ressource_SubOP_Type','Bonjour,\r\nSub_OP_Datatype contient un attribut de type Ressource_SubOP_Type.\r\nC\'est interdit. \r\nLes attributs des datatypes doivent toujours être des datatypes.\r\n\r\nCordialement\r\nMichel\r\n',NULL,NULL,5,447,4,NULL,1,2,'2021-06-08 00:18:59','2022-05-20 15:08:15','2021-06-08',100,NULL,NULL,577,1,2,0,'2022-05-20 15:08:15'),(578,3,98,'Assistance avec l\'outil Ximulator v1.0.1.5_v1.0.2.1','Bonjour M. Condemine, \r\n\r\nJ\'ai testé la nouvelle version du Ximulator avec le modèle que vous nous avez fourni ainsi que celui que Lionel nous a fourni ce matin. \r\n\r\nDans les deux cas, Ximulator crash lorsqu\'on lance la génération en indiquant des messages du type : \r\n\r\n\" 08/06/2021 14:42:02 The DataType 1:WorkingModeEnum is not properly spelled. Verify your configuration.\r\n 08/06/2021 14:42:02 Convert 1:2dDimControDataType is a variableType \"\r\n\r\nJ\'ai attaché les XMIs que j\'ai exporté en mettant comme nom de dossier 0706_4CE pour les XMIs venant du modèle que vous nous avez fourni et 0806 pour les XMI\'s venant du modèle de Lionel du 8 juin (aujourd\'hui). \r\nDans les dossiers SharedClasses, j\'ai laissé les fichiers de log de Ximulator. \r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n',NULL,NULL,5,NULL,4,NULL,432,2,'2021-06-08 14:55:45','2022-05-14 11:48:40','2021-06-08',100,NULL,NULL,578,1,2,0,'2021-08-04 17:52:56'),(579,1,78,'LaserSpotDataType','WeldingDataType utilise un dataType défini dans le modèle Stator.\r\nIll convient de déplace LaserSpotDataType.',NULL,NULL,5,447,4,NULL,1,1,'2021-06-09 00:05:43','2022-05-20 15:07:49','2021-06-09',100,NULL,NULL,579,1,2,0,'2022-05-20 15:07:49'),(580,1,78,'WeldingTech','Il manque le suffix Emum dans la déclaration de l\'enumération WeldingTech',NULL,NULL,5,447,4,NULL,1,1,'2021-06-09 00:06:24','2022-05-20 15:07:18','2021-06-09',100,NULL,NULL,580,1,2,0,'2022-05-20 15:07:18'),(581,1,78,'Erreur Modèle','Voici quatre autres erreurs détecté par XiMulator.\r\n!clipboard-202106090011-yiq8x.png!\r\n\r\nCordialement\r\nMichel',NULL,NULL,5,447,4,NULL,1,3,'2021-06-09 00:11:33','2022-05-20 15:06:56','2021-06-09',100,NULL,NULL,581,1,2,0,'2022-05-20 15:06:56'),(582,3,75,'Instanciation CSV de variable de Datatype UserDatatype ','\r\nBonjour M. Condemine, \r\n\r\nJe fabrique une maquette qui contient un objet de type MachineType pour un mapping VpiUaClient manuel avec un automate. Nous avons posé la question à Emotors si pour cette objet les variables de Datatype UserDatatype doivent être mis à plat ou non. \r\n\r\nJ\'ai une difficulté pour instancier par fichier CSV une variable de Datatype UserDatatype. \r\n\r\nPour commencer j\'instancie un ObjectType de TypeDefinition MachineType avec son component Id de Datatype EMotorsBaseDataType. \r\n\r\n\r\nVoici à quoi ressemble le fichier CSV : \r\n\r\n!clipboard-202106161436-xwckd.png!\r\n\r\nVoici les paramètres donnés pour l\'import : \r\n\r\n!clipboard-202106161441-hvatw.png!\r\n\r\nA l\'import ConfigManager 0 9 4 m\'indique dans le log que : \r\n\r\n!clipboard-202106161441-d1ijk.png!\r\n\r\nJ\'ai également essayé avec la syntaxe ns=2;i=368 pour indiquer le Datatype.\r\n\r\n\r\nJe mets en PJ une maquette contenant la config, le projet et le fichier CSV utilisé myMachine.csv\r\n\r\nAurez vous une idée pourquoi je n\'arrive pas à instancier la variable?\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n',NULL,NULL,3,NULL,4,NULL,432,1,'2021-06-16 14:46:01','2021-06-21 23:36:18','2021-06-16',100,NULL,NULL,582,1,2,0,'2021-06-21 23:36:18'),(583,3,98,'Décodage des UserDataTypes du Package JobOrder','Bonjour, \r\n\r\n\r\nNous instancions des objets de différents types pour fabriquer une maquette et manipuler des objets complexes. \r\nEn instanciant un objet du Package JobOrder (ERP_OF_Type), le serveur n\'arrive pas à décoder des Datatypes de ce package. Peut-être parce que ces Datatypes contiennent des attributs de types déclarés dans un autre package? \r\n\r\nNous avons ajouté une variable au ObjectType ERP_OF_Type. Avant il ne contenait qu\'une seule variable de type Array of ERP_OF_Datatype, maintenant il contient également une variable de type scalaire ERP_Of_Datatype. \r\n\r\nDans les deux cas, le décodage ne s\'effectue pas bien alors que pour l\'objet de type ProductionLineType, ça se passe bien. \r\n\r\n\r\nJ\'ai comparé l\'ObjectType ERP_OF_Type à ProductionLineType ainsi que leurs variables de type Datatype et Array de Datatype, mais je ne trouve rien de discordant. \r\nAuriez vous une idée pourquoi? \r\n\r\nJe mets en PJ la maquette de serveur que j\'utilise pour ces tests. \r\n\r\nCordialement, \r\n\r\nMichael \r\n\r\n',NULL,NULL,5,NULL,4,NULL,432,3,'2021-06-16 16:05:44','2022-05-14 11:45:49','2021-06-16',100,NULL,NULL,583,1,2,0,'2021-06-28 11:20:47'),(584,3,47,'Remarques OOUAConfigManager','Bonjour, \r\n\r\nVoici la liste de ce que j\'ai noté sur l’OOUAConfigManager : \r\n\r\n* Value Rank et Array Dimensions pour User Datataypes de type scalaire et array incohérents (modifs manuels nécessaires pour que la variable soit décodé par le serveur)\r\n* Pour certains Datatype l\'index de namespace comporte un décalage (+1) \r\n* AccessLevel est toujours égal à 0 \r\n* Le HasTypeDefinition n\'est pas raccordé. Lorsqu\'on le raccorde à travers l\'IHM on a une double référence en IsForward=true et IsForward=false.\r\n\r\nN\'hésitez pas à me demander si besoin de plus de précision. \r\n\r\nMichael',NULL,NULL,5,432,6,NULL,432,5,'2021-06-22 16:35:48','2022-05-14 11:44:26','2021-06-22',100,NULL,NULL,584,1,2,0,'2021-08-04 17:51:29'),(585,1,78,'Working_Hour_Dataype spelling error','Bonjour,\r\nle XiMulator viens de détecter une erreur sur Working_Hour_Datatype. \r\nIl est mal orthographié. Il manque un T dans Working_Hour_Dataype.\r\n\r\nCordialement.\r\nMichel Condemine',NULL,NULL,5,447,4,NULL,1,1,'2021-06-23 22:11:46','2021-08-19 14:55:03','2021-06-23',100,NULL,NULL,585,1,2,0,'2021-08-19 14:55:03'),(586,3,75,'Question encodage binaire opc ua de DateTime pour UserDatatypes','Bonjour M. Condemine, \r\n\r\nJe travaille en ce moment sur l\'encodage et décodage des UserDataTypes. Il me semble que les DateTime sont encodés sur 8 octets et indiquent le temps passé depuis la date 0001-01-01T00:00:00Z. \r\nAuriez vous des fonctions ou exemples qui effectuent ce genre de conversion? \r\nJe vois qu\'il existe des fonctions C tel que mktime qui font la conversion depuis des variables de type c++ time_t ou tm. Dans le cas où vous n\'avez pas d\'exemples, pensez vous que je puisse utiliser cette fonction mktime? \r\n\r\n\r\n\r\nCordialement, \r\nMichael',NULL,NULL,5,NULL,4,NULL,432,2,'2021-07-02 15:30:21','2021-07-02 17:29:17','2021-07-02',100,NULL,NULL,586,1,2,0,'2021-07-02 17:29:17'),(587,1,78,'VfiPostGres : Archivage des string ','Sur un Archivage de STring dans une base postGres, il y a bien une nouvelle ligne dans la table mais sans valeur\r\n\r\nSur lecture de l\'archivage depuis UA Expert: La lecture d\'un NodeId de type String fait crasher le serveur\r\n\r\nSur l\'image jointe: le NodeId 6019 est du type string',NULL,NULL,5,NULL,5,NULL,447,1,'2021-07-17 12:19:45','2021-07-19 18:29:51','2021-07-17',100,NULL,NULL,587,1,2,0,'2021-07-19 18:29:51'),(588,1,73,'Serveur OPCua','Bonjour M Condemine, \r\n\r\nJ\'ai rencontré un problème sur la version du ConfigManager 9_2, je n\'arrive pas à sauvegarder les UaObjets que je créer pour faire mes familles dans la partie Nodeset du ConfigManager.\r\n\r\nJe travaille donc en ce moment sur la version 9_1 du ConfigManager ou je rencontre un autre problème mais sur l\'importation de fichier csv. \r\nQuand j\'importe plusieurs fichiers csv à mon projet, le ConfigManager se ferme tout seul et à sa réouverture et je n\'arrive plus à importer de fichier csv. De plus j\'ai constaté que les tags créés à l\'importation d\'un fichier csv ne s\'enregistrent pas dans les VPI assignés. \r\n\r\nSerait-il possible de voir le problème avec vous. \r\nDans l\'attente de votre réponse.\r\n\r\nCordialement, \r\nAlexandre Macé',NULL,NULL,5,1,4,NULL,459,10,'2021-07-19 18:23:42','2021-07-22 11:17:41','2021-07-19',100,NULL,NULL,588,1,2,0,'2021-07-22 10:44:08'),(589,1,75,'Remarques OOUAConfigManager 0_9_7','Bonjour M. Condemine, \r\n\r\nJ\'espère que vous allez bien. \r\n\r\nVoici certains points non bloquants relevés sur l\'outil OOUAConfigManager 0_9_7 lors de *l\'instanciation par fichier CSV* ainsi qu\'une maquette permettant de reproduire cela \r\n\r\n1) Reference inverse HasComponent incorrecte pour noeud racine instancié par fichier CSV \r\n\r\nA partir d\'une maquette contenant un objet A, j\'instancie un objet B fils de A. (A et B n\'ont pas le même namespaceURI) *Après sauvegarde* , le noeud B a une référence inverse HasComponent vers le noeud A. Cependant cette référence ne prend pas le bon URI numérique relatif au fichier XML où il a été instancié, mais l\'id absolu de l\'URI au sein du serveur (nous devons donc le corriger manuellement après instanciation. \r\n\r\nScénario pour reproduire : \r\n\r\nInstancier le ficher csv ERPExchange.csv dans la maquette ( FileNodeset : Opc.Ua.NodeSet2.Plant.xml ; URI : http://Inetum.com/eMotors/Instances/Tremery/ERPExchange ; Séparateur \"|\" ; First Line Header :Oui cocher Numerical). Attention ne pas mapper la colonne ArraySize du fichier CSV (voir point 2) \r\nL\'objet ERP Exchange instancié aura une référence inverse HasComponent vers ns=4;i=10 plutôt que ns=3;i=10 \r\n\r\n2) Impossibilité d\'indiquer qu\'une variable est de type tableau. J\'ai essayer le champ ArraySize en le mettant à 0 mais l\'outil crash \r\n\r\nScénario pour reproduire : même scénario que point 1 en mappant la colonne ArraySize en plus (les variables Part_Produce_list (ns=http://Inetum.com/eMotors/Instances/Tremery/ERPExchange;i=17) et ERP_Of_List (ns=http://Inetum.com/eMotors/Instances/Tremery/ERPExchange;i=14) ont la colonne ArraySize valorisée \r\n\r\n3) Instanciation de variables de Datatype UserDatatype \r\n\r\nDepuis la dernière version du OOUAConfigManager, lorsque une variable est du type UserDatatype, le NodeId du Datatype rajouté n\'as pas le bon namespaceURI ni le bon ID\r\n(l\'ID du URI est l\'id absolu au sein du serveur plutôt que l\'ID relatif au fichier XML, et l\'ID du noeud est le NodeIs de la description du Datatype plutôt que celui du Datatype)\r\n\r\nScénario pour reproduire : même scénario que point 1, les variables Part_Produce_list (ns=http://Inetum.com/eMotors/Instances/Tremery/ERPExchange;i=17) et ERP_Of_List (ns=http://Inetum.com/eMotors/Instances/Tremery/ERPExchange;i=14 n\'ont pas le bon Datatype \r\n\r\n4) Nous avons testé l\'indication de l\'URI dans les fichier CSV sous forme de String plutôt que Numerical, l\'outil n\'arrive pas à les reconnaitre \r\n\r\nScénario pour tester : Instancier le ficher csv ERPExchangeString.csv dans la maquette ( FileNodeset : Opc.Ua.NodeSet2.Plant.xml ; URI : http://Inetum.com/eMotors/Instances/Tremery/ERPExchange ; Séparateur \"|\" ; First Line Header :Oui ; cocher String).\r\n\r\n5) Import de valeur par fichier CSV\r\n\r\nNous avons essayé d\'initialiser des valeurs par fichier CSV. Cela fonctionne bien pour les String mais pas les Int \r\n\r\nScénario pour tester : Importer le fichier csv ValueImportTest.csv ( FileNodeSet Opc.Ua.NodeSet2.Line1.xml, Séparateur \"|\" ; First Line Header : Oui ) \r\n\r\n\r\nDisponible pour en discuter si besoin, \r\n\r\nCordialement, \r\n\r\nMichael EJIGU\r\n',NULL,NULL,5,NULL,4,NULL,432,6,'2021-07-26 10:42:20','2021-08-04 17:49:13','2021-07-26',100,NULL,NULL,589,1,2,0,'2021-08-04 17:49:13'),(590,1,78,'VFI PostGreSql avec UDT','L\'archivage de UDT avec le VFIPostGres ne fonctionne pas.\r\nSur la maquette réalisé à l\'ATP, nous réalisons \r\n* un archivage sur 2 URI différents : OK\r\n* l\'archivage sur datatype classique (Boolean, double, float, String): OK\r\n* +l\'archivage sur UDT / Test réalisé avec l\'UDT StatusDataType du modèle eMotors : NOK+',NULL,NULL,5,1,4,NULL,447,1,'2021-07-26 13:35:06','2022-05-20 15:05:59','2021-07-26',100,NULL,NULL,590,1,2,0,'2022-05-20 15:05:59'),(591,1,75,'Crash VpiUaClient lors de synchronisation de tableau de Extension Objects','Bonjour M. Condemine, \r\n\r\nNous avons mis en place un mécanisme d\'échange d\'OF ERP entre un serveur Plant et un serveur Line. \r\n\r\nLes nœuds du serveur Line et Plant sont synchronisés avec le VpiUaClient en mode manuel. \r\n\r\nNous remarquons que lorsque le nœud de la liste des ExtensionObjects (de Datatype ERP_OF) est présent dans la configuration du VpiUaClient, on a un crash du serveur Plant. Et lorsque commentons dans les 2 fichiers de configuration le nœud, la mécanique d\'échange ce passe bien sans crash. Dans le fichier de configuration SubSystem.Uaclient-001_Release.xml, nous avons essayé d\'indiquer le Datatype du noeud ERP_Of_List (i=16) sous ns=1; i=391 (avec le namespace id relatif à la table des URI du fichier xml) mais aussi sous ns=2;i=391 (avec le namespace id qu\'il aura lorsque le serveur sera lancé). Dans les deux cas nous avons le crash. \r\n\r\nPour reproduire le scénario il faut lancer le Serveur Plant et le Serveur Line (mis en pièces jointes). Une fois démarrés, il faut depuis le serveur ligne passer la variable ERP_Of_Counter (dans LineExample, Line1Exhange, PlantToLine) a une valeur entre 0 et 4. Ceci va lancer une mécanique avec la machine à état suivantes : \r\n\r\n- Line passe ERP_Of_Counter à une valeur entre 0 et 4 \r\n- Plant vérifie si cette valeur est inferieur à 4. Si oui il met dans la variable ERPOFList X Of Erp (X=10 - Erp_OF_counter) et passe Data_Present a 1 \r\n- Line est réveillé par DataPresent =1, rajoute les OF ERP reçus dans sa liste Erp_Of_Liste_To_Do (dans LineExample) , passe DataCollected à 1 , et met à jour ERP_Of_Counter avec la taille de Erp_Of_Liste_To_Do\r\n- Plant est reveillé par DataCollected =1 et passe DataPresent = 0 \r\n- Line est reveillé par DataPresent =0 et passe DataCollected à 0\r\n\r\n\r\nDans les maquettes zippées, le nœud ERP_Of_List est enlevé des fichiers UaClnt-001-00301-0.xml et SubSystem.Uaclient-001_Release.xml\r\nPour reproduire le crash, il faut décommenter le nœud depuis les deux fichiers\r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\n',NULL,NULL,3,1,5,NULL,432,5,'2021-07-30 11:40:28','2021-08-13 10:22:41','2021-07-30',100,NULL,NULL,591,1,2,0,'2021-08-13 10:22:41'),(592,2,78,'Conversion CHAR SIEMENS en String OPC UA','',NULL,NULL,5,NULL,4,NULL,1,3,'2021-08-03 18:01:52','2021-09-03 08:31:23','2021-08-03',100,NULL,NULL,592,1,2,0,'2021-08-19 14:46:55'),(593,2,78,'Compliance valeur numérique VPIUaClient','Bonjour Michel,\r\n\r\nComme convenu voici la compliance que l\'on souhaiterait avoir dans la correspondance des attributs numérique:\r\nSource Cible\r\nInteger Uint16\r\nInt16 Uint16\r\nInt32 Uint32\r\nDouble Float\r\n',NULL,NULL,5,1,4,NULL,447,4,'2021-08-10 17:14:30','2021-09-27 14:29:56','2021-08-10',100,NULL,NULL,593,1,2,0,'2021-08-19 14:49:06'),(594,3,75,'Désactivation de la Trace','Bonjour M. Condemine, \r\n\r\n\r\nNous avons une maquette qui tourne avec un simulateur PLCSIM qui malheureusement provoque un crash de façon aléatoire. \r\n\r\nUn Dump me fait deviner que la Trace est la raison de ce crash :\r\n\r\n!clipboard-202108131900-kcqe7.png!\r\n \r\nEst-il possible de désactiver la Trace au niveau du serveur pour voir si cela résout le problème? Et si oui, comment? \r\n\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,5,'2021-08-13 19:01:54','2021-09-13 13:50:59','2021-08-13',100,NULL,NULL,594,1,2,0,'2021-08-30 18:09:29'),(595,1,73,'Importation fichier CSV OPCua','Bonjour M.Condemine,\r\n\r\nDans la version 0_9_8 du ConfigManager à l\'importation de fichier csv je dois remplir obligatoirement la ligne \"Parent\" que je ne remplis jamais d\'habitude et que je ne devais pas remplir obligatoirement dans les anciennes versions. Je n\'arrive donc pas à importer de fichier csv car j\'ai comme erreur que \"Parent\" est vide.\r\n\r\nDans l\'attente de votre réponse.\r\n\r\nCordialement \r\nAlexandre Macé',NULL,NULL,3,1,4,NULL,459,1,'2021-08-17 10:04:35','2022-11-17 14:22:30','2021-08-17',100,NULL,NULL,595,1,2,0,'2022-11-17 14:22:30'),(596,3,98,'Temps de démarrage serveur avec modèle v2.6 et Ximulator versions supérieur à v1.0.1.9_v1.0.2.7','Résultats des tests: \r\n\r\nVersion v1.0.1.9_v1.0.2.7 : \r\n\r\nTaille fichier NodeSet de type SharedClasses : 5.1MB\r\nTemps de démarrage : > 30 secondes\r\n\r\n\r\nVersion v1.0.1.9_v1.0.2.8 : \r\n\r\nTaille fichier NodeSet de type SharedClasses : 2.7MB\r\nTemps de démarrage : 17 secondes\r\n\r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,3,'2021-08-24 16:59:02','2022-05-14 11:43:17','2021-08-24',100,NULL,NULL,596,1,2,0,'2021-10-22 16:13:13'),(597,3,75,'Problème UserDatatypes dans environnement avec 2 VPI','Bonjour M. Condemine, \r\n\r\n\r\nJe travaille actuellement sur le VpiErp en partant de la base VpiXmlTemplate. \r\n\r\nAprès avoir adapté le Vpi pour parser des Of ERP, les avoir encodé et les avoir renvoyé au serveur, j\'essaye maintenant de les récupérer au niveau du VpiPlant. Au début le VpiPlant n\'était pas notifié de changements sur ces valeurs. En faisant un peu de debug, j\'ai remarqué que dans le TransferToCoreServerCache du VpiErp, lorsqu\'on appelait la pFuncNotifyCallback , on passait Vpi_Null comme paramètre Address. \r\nCeci avait comme conséquence de ne pas notifier les autres Vpi car dans le code du serveur, on ne rentrait pas dans cette condition :\r\n\r\n!clipboard-202108251640-rbcpf.png!\r\n\r\n\r\nJ\'ai donc fait les modifications nécessaires au niveau du VpiErp, pour passer un tableau d\'adresses lorsqu\'on on appelle la pFuncNotifyCallback dans le TransferToCoreServerCache, en m\'inspirant du TransferToCoreServerCache du VpiPlant et VpiLine. \r\n\r\n\r\nUne fois cette modification faite, le VpiPlant est bien notifié des changements de valeurs sur les Tags qu\'il partage avec le VpiErp. \r\nMais j\'ai un autre souci qui ressemble à celui qu\'on avait sur le ticket 591 (Crash VpiUaClient lors de synchronisation de tableau de Extension Objects) \r\n\r\nLe crash indique la callback suivante: \r\n\r\n!clipboard-202108251646-mcqoa.png!\r\n\r\n\r\nEn commentant l\'encodage du tableau d\'Extension Objects, on a plus le crash et le mécanisme d\'échange entre le VpiErp et VpiPlant fonctionne. \r\n\r\n\r\n\r\nLes corrections faites dans le cadre du ticket 591 incluent elles des modifications dans la OpenOpcUaStackV1? Pensez vous qu\'on est sur des erreurs similaires? \r\n\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,5,'2021-08-25 16:51:58','2021-09-14 22:23:03','2021-08-25',100,NULL,NULL,597,1,2,0,'2021-08-25 17:32:47'),(598,3,75,'Livrable Package OpenOpcUa_1_0_6_0_INETUM_RC01, projet OpenOpcUaVpiLibrary manquant','Rebonjour M. Condemine, \r\n\r\nDans le package de ce matin il nous manque la OpenOpcUaVpiLibrary. Pourriez vous nous le transmettre? \r\n\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,NULL,4,NULL,432,1,'2021-09-16 16:48:10','2021-09-19 15:52:54','2021-09-16',100,NULL,NULL,598,1,2,0,'2021-09-19 15:52:54'),(599,3,75,'Assistance Debug VpiUaClient ','Bonjour M. Condemine , \r\n\r\n\r\nNous avons pu avancer sur le point discuté hier. Nous n\'avons plus le message suivant : \r\n\r\n!clipboard-202109171125-y0wa8.png!\r\n\r\nLe deadlock au niveau du Serveur Ligne n\'as plus lieu non plus. \r\n\r\n\r\nCependant on a toujours le VpiPlant qui est notifié en boucle par le serveur à travers le VpiWrite. \r\n\r\nJe vois de la lib client qu\'il semble y avoir une déconnexion/reconnexion en boucle : \r\n\r\n!clipboard-202109171128-ijmwb.png!\r\n\r\n\r\nLe VpiUaClient lui indique le message suivant :\r\n\r\n!clipboard-202109171129-oyrrk.png!\r\n\r\nIl semble que le VpiPlant est notifié dû à un \"changement \" venant du VpiUaClient. \r\nAussi, le VpiUAClient ne fait pas de vraies relectures au niveau du ServeurLine (le VpiLine n\'est pas renotifié par des VpiRead en boucle) \r\nAuriez vous une idée ? Dispo pour en discuter si possible \r\n\r\nCordialement, \r\n\r\nMichael \r\n \r\n\r\n\r\n',NULL,NULL,5,NULL,4,NULL,432,2,'2021-09-17 11:45:32','2021-09-21 11:52:51','2021-09-17',100,NULL,NULL,599,1,2,0,'2021-09-21 11:52:51'),(600,1,75,'Synchronisation OOUA to PLC SIM denièere version VpiUaClient','Bonjour M. Condemine, \r\n\r\nNous faisons des tests avec la dernière version du VpiUaClient livrée dans le package 1.6.0.0 et il semble y avoir une régression \r\n\r\nLorsque nous le mettons face à PLCSIM, il a du mal à synchroniser les variables de type String( les autres types sont bons)\r\n\r\n\r\nCe sont des synchronisation de type :\r\n\r\nVariable de type string au niveau du serveur OOUA -> mappé vers une partie d\'un UDT au niveau de PLCSIM\r\n\r\n!clipboard-202109191437-qahab.png!\r\n\r\n\r\nLe message dans le log VpiUaClient est le suivant : \r\n\r\n!clipboard-202109191441-n1jja.png!\r\n\r\n\r\nUne autre remarque au niveau du nouveau VpiUaClient : \r\n\r\nLorsque dans les fichiers d\'instance on a des String qui sont \"mal initialisés\", on retrouve le message dans le log de type BadTypeMismatch en essayant d\'écrire au niveau de PLCSIM. \r\n\r\nUne \"mauvaise initialisation\" ressemble à ça : \r\n!clipboard-202109191447-ecp4t.png!\r\n\r\n\r\nC\'est OpenOpcUaConfigManager qui les génère ainsi lorsqu\'on on fait une instanciation par fichier CSV \r\nLa version précedente du VpiUaClient arrivait à contourner ce problème \r\n\r\n\r\n\r\nCordialement, \r\n\r\n\r\nMichael \r\n\r\n\r\n',NULL,NULL,5,NULL,5,NULL,432,5,'2021-09-19 14:48:26','2021-09-21 11:52:13','2021-09-19',100,NULL,NULL,600,1,2,0,'2021-09-21 11:52:13'),(601,3,75,'VpiUaClient/ClientLib PublishRequest avec Publish non activé','Bonjour, \r\n\r\n\r\nNous avons hier remarqué sur la maquette Plant-Line qu\'il y avait des PublishRequest avant que le Publish soit activé\r\n\r\nCi joint une trace Wireshark qui montre cela\r\n\r\nIl faut rajouter le port 6001 dans les protocoles OPC UA \r\n\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,1,NULL,3,NULL,432,0,'2021-09-21 11:54:48','2021-09-21 11:54:48','2021-09-21',0,NULL,NULL,601,1,2,0,NULL),(602,3,47,'Instanciation ConfigManager CSV et effet de bord sur VpiUaClient','Bonjour, \r\n\r\n\r\nLorsque l\'on fait des instanciation par fichier CSV de Variables de type String, on se retrouve avec des balises Value vides :\r\n\r\n!clipboard-202109211157-knxzf.png!\r\n\r\n\r\nCeci a comme effet de bord que le VpiUaClient essaye de faire une écriture en boucle au niveau de PLCSIM et échoue en laissant dans le log le message suivant :\r\n\r\n\r\n!clipboard-202109211158-bylmu.png!\r\n\r\nProblème contourné actuellement en éliminant toute les balises de Value vides\r\n\r\nCordialement, \r\n\r\nMichael \r\n',NULL,NULL,1,NULL,3,NULL,432,1,'2021-09-21 12:00:14','2022-11-04 16:03:51','2021-09-21',0,NULL,NULL,602,1,2,0,NULL),(603,2,75,'Développement de méthodes dans un Vpi','Bonjour M. Condemine, \r\n\r\n\r\nComme discuté hier, je travaille sur la mise en place d\'une méthode dans un Vpi. \r\n\r\nLe client OPC UA n\'arrive toujours pas à recevoir les variables de sortie. En faisant une trace Wireshark j\'ai pu voir que les OutputArguments ne sont pas remplis dans le paquet CallResponse\r\n\r\n\r\nEn regardant dans le code j\'ai trouve ceci :\r\n\r\n!clipboard-202109211710-owpvz.png!\r\n\r\nJ\'ai l\'impression que pour les appels de méthodes venant des Vpi, l\'argument pResponse n\'est pas passé comme pour l\'appel d\'une méthode développée en Lua. \r\n\r\nJ\'ai essayé de faire passer l\'argument en remplacant &outputArgument par &pResponse->Results[ii] mais ça a comme conséquence que le CallResponse n\'est pas envoyé par le serveur et le client OPC UA indique un BadTimeout\r\n\r\n\r\n\r\nCordialement,\r\n\r\nMichael',NULL,NULL,5,NULL,5,NULL,432,5,'2021-09-21 17:11:17','2021-10-29 14:08:41','2021-09-21',100,NULL,NULL,603,1,2,0,'2021-10-28 21:17:03'),(604,1,70,'Seg fault OPCUA/MQTT (VpiUaMqttJSonPub)','Bonjour, \r\nPetit problème. Une fois lancé, le serveur OPCUA plante et dans le fichier log Publisher-00150.log on a le message suivant:\r\n> 2021-09-23T09:30:46.000Z ERROR TCPSend buffer is 44800\r\n\r\nVous trouverez ci-joint les fichiers logs.\r\nJe n\'ai rien vu de particulier dans les logs du fichier \"OpenOpcUaConfigManager.log\" qui puisse m\'aider à mieux analyser le problème vous aurez probablement un meilleur expertise.',NULL,NULL,5,1,5,NULL,424,8,'2021-09-23 13:06:33','2022-02-18 15:21:35','2021-09-23',100,NULL,NULL,604,1,2,0,'2022-02-18 15:21:35'),(605,1,70,'Synchronisation OPCUA','Lorsque je me connecte sur le serveur OPCUA, je synchronise les timestamps, j\'ai un status code \"Good\",\r\nau bout d\'un certains temps, j\'ai un status code \"BadWaitingForInitialData\". Quand je fais un refresh de la data, j\'ai de nouveau un status \"Good\".\r\nEt si je change une valeur, la valeur n\'est pas enregistrée. Avez-vous une idée de l\'origine de ces phénomènes?',NULL,NULL,5,1,4,NULL,424,3,'2021-09-23 13:07:27','2021-10-28 11:53:48','2021-09-23',100,NULL,NULL,605,1,2,0,'2021-10-28 11:53:48'),(606,2,78,'Compliance UA Client Double --> Float | Array Byte --> String','Bonjour Michel,\r\n\r\nDemande d\'évolution du VPI UA Client/ A ce jour dans la configuration du subSystem il faut:\r\nDans le cas array Byte vers String indiquer dans la balise Type : le Type du serveur source\r\nDans le cas double vers Float indiquer dans la balise type : le type du serveur cible\r\n\r\nLa demande concerne une harmonisation vers serveur cible ou source\r\n\r\nMerci',NULL,NULL,3,NULL,3,NULL,447,2,'2021-09-27 20:49:12','2022-11-04 14:32:32','2021-09-27',100,NULL,NULL,606,1,2,0,'2022-11-04 14:32:32'),(607,3,75,'Allocations mémoires récurrentes et étude de fuite de mémoire','Bonjour M. Condemine, \r\n\r\n\r\nOn a identifié sur notre maquette ServeurLine - PLC SIM des allocations mémoires récurrentes hors VpiLine. Ces allocations ont lieu au niveau de la Stack (2 venant d\'appels du VpiUaClient). \r\nL\'outil que nous utilisons est l\'Outils de diagnostics de Visual Studio. \r\n\r\n\r\nSi vous avez de la disponibilité avant notre call demain soir, je suis disponible pour en discuter, \r\n\r\nVoici la pile d\'appel des allocations que j\'ai identifié : \r\n\r\n\r\n!clipboard-202110041052-rxlay.png!\r\n\r\n!clipboard-202110041052-xougb.png!\r\n\r\n!clipboard-202110041052-tdgds.png!\r\n\r\n!clipboard-202110041053-4igng.png!\r\n\r\n!clipboard-202110041053-yjp6v.png!\r\n\r\n!clipboard-202110041053-jmfbh.png!\r\n\r\n!clipboard-202110041053-qaav2.png!\r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n ',NULL,NULL,5,NULL,4,NULL,432,7,'2021-10-04 10:54:44','2021-10-22 16:11:05','2021-10-04',100,NULL,NULL,607,1,2,0,'2021-10-22 16:11:05'),(608,1,70,'Arrêt serveur OPCUA/MQTT si arrêt Broker','Après démarrage du broker et démarrage du serveur OPCUA/MQTT, le MQTT Pub publie des données sur le broker.\r\nSi on coupe la liaison MQTT Pub -> Broker (arrêt du broker), Le serveur OPCUA/MQTT s\'arrête aussi.',NULL,NULL,5,1,4,NULL,424,1,'2021-10-06 18:03:56','2022-02-18 15:21:13','2021-10-06',100,NULL,NULL,608,1,2,0,'2022-02-18 15:21:13'),(609,1,70,'libVPISk vs libVpiUaMqttJsonPub ','!clipboard-202110061820-93cyh.png!\r\nAprès avoir configurer les deux fichiers Subsystem pour libVPISk et libVpiUaMqttJsonPub je constate le scénario suivant:\r\n- Si je modifie une valeur depuis notre Main App, le client OPCUA reçoit la màj de la donnée mais pas le Broker. C\'est comme si le VpiUaMqttJsonPub n\'avait pas été notifié du changement de donnée.\r\nEt si je fais un rebrowse de la donnée depuis le client, elle disparaît.\r\n\r\n- Par contre si je modifie une valeur depuis le client OPCUA, le Broker reçoit bien la donnée.\r\nSi je fais un rebrowse de la donnée depuis le client, elle est toujours présente.\r\n\r\nIl se passe quelques chose entre les deux Vpis mais je n\'arrive pas à comprendre. Avez-vous une idée? Est-ce lié aux variables partagées R/W entre les Vpis.\r\n\r\nCi-joint une vidéo montrant le phénomène ainsi que notre config. Merci.\r\n\r\n00:15 > Démarrage du serveur et publication de la donnée \"Cyclomix EVO\" au client OPCUA. OK.\r\n\"en parallèle\" Publication d\'un Json_WriterGroup_1/$Metadata sur le broker. OK.\r\nPublication d\'un Json_WriterGroup_1 sur le broker avec un Payload Null. \"\" au lieu de \"Cyclomix EVO\". NOK.\r\n\r\n00:25 > Le rebrowse récupère une valeur nulle du serveur. NOK.\r\n\r\n00:42 > La modification de la donnée depuis le client a modifier la donnée dans le serveur OPCUA. OK. \r\n\"en parallèle\" Publication d\'un Json_WriterGroup_1 sur le broker avec la valeur modifiée. OK.\r\nLe rebrowse du client récupère une valeur du serveur. OK.\r\n\r\n\r\n00:25 > ',NULL,NULL,5,1,5,NULL,424,2,'2021-10-06 18:50:33','2021-10-28 11:53:21','2021-10-06',100,NULL,NULL,609,1,2,0,'2021-10-28 11:53:21'),(610,3,75,'Assistance connexion VpiUaClient mode Automatique','Bonjour M. Condemine, \r\n\r\nLa version actuelle du VpiUaClient en mode auto semble demander une variable appelé TRIGGER_URI et TRIGGER_IDENTIFIER\r\n\r\nA quoi servent ce noeud ?\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,1,'2021-10-08 15:40:27','2021-10-08 16:36:59','2021-10-08',100,NULL,NULL,610,1,2,0,'2021-10-08 16:36:59'),(611,3,75,'VFI Postgres','Bonjour M. Condemine \r\n\r\n\r\nAuriez vous la possibilité de nous poster le VfiPostgres dernière version en mode Debug svp? \r\n\r\nMerci,\r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,2,'2021-10-08 18:03:13','2021-10-10 18:44:08','2021-10-08',0,NULL,NULL,611,1,2,0,'2021-10-10 18:44:08'),(612,3,78,'Format des livraisons','Bonjour,\r\nest ce que je dois vous livrer les binaires au format DEBUG ou RELEASE ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,447,6,NULL,1,1,'2021-10-10 18:27:06','2022-05-20 15:42:46','2021-10-10',100,NULL,NULL,612,1,2,0,'2022-05-20 15:42:46'),(613,3,75,'Compilation de la OpenOpcUaVfiLibrary','Bonjour M. Condemine, \r\n\r\n\r\nJ\'ai un problème avec la compilation de la OpenOpcUaVfiLibrary. Visual Studio m\'indique le message suivant: \r\n\r\n!clipboard-202110111844-d5njz.png!\r\n\r\nLa VFI library dans le livrable OpenOpcUa_1_0_6_0_INETUM_RC02 est-elle à jour? J\'arrive a compiler des versions de livrables précédents, mais la maquette indique un problème au lancement du VfiPostgres : \r\n\r\n!clipboard-202110111845-tv6ez.png!\r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,NULL,4,NULL,432,2,'2021-10-11 18:46:22','2021-10-22 16:10:24','2021-10-11',100,NULL,NULL,613,1,2,0,'2021-10-22 16:10:24'),(614,3,75,'Déploiement chez le client et problème de PublishResponse','Bonjour M. Condemine, \r\n\r\n\r\nNous déployons chez le client un PM (salle serveur) et LM (salle de production) qui se trouvent sur des PC/réseaux locaux différents. Les machines sont inter-accessibles. \r\n\r\nOn a cependant un souci : \r\n\r\n- En se connectant depuis un UaExpert depuis la salle serveur au PM, tout fonctionne bien \r\n- En se connectant depuis un UaExpert depuis la salle de production au LM, tout fonctionne bien \r\n\r\n- En se connectant depuis un UaExpert depuis la salle serveur au LM: tout fonctionne appart aucun PublishResponse n\'est jamais généré par le serveur LM\r\n- En se connectant depuis un UaExpert depuis la salle de production au PM: tout fonctionne appart aucun PublishResponse n\'est jamais généré par le serveur PM\r\nLes Read, Write se passent très bien dans tous les sens. \r\n\r\n\r\nEst-ce que vous avez déjà rencontré ce genre de situation? Est-ce que une désynchronisation des horloges des deux machines pourrait être la cause? Si oui, une désynchronisation de combien de temps? \r\nSi non, avez vous d\'autres pistes? On a ouvert tout les canaux afin de vérifier qu\'un firewall n\'était pas la cause mais pas de changement. \r\n\r\nOn a déjà vu la communication fonctionner parfaitement (hier soir et ce matin) et rien ne semble avoir été modifié entre temps. \r\n\r\n\r\n\r\nCordialement, \r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,5,'2021-10-11 19:38:10','2021-10-12 17:47:12','2021-10-11',100,NULL,NULL,614,1,2,0,'2021-10-12 17:47:12'),(615,3,78,'VFI PostGre et VpiInitValue Release','Bonjour Michel,\r\nPourrions nous avoir une version du Vfi et du VpiInitValue en mode release pour les tester sur l\'ATP.\r\nMerci\r\n\r\nCordialement\r\nLosson Paul',NULL,NULL,5,1,4,NULL,455,3,'2021-10-12 10:38:11','2022-05-20 15:43:19','2021-10-12',100,NULL,NULL,615,1,2,0,'2022-05-20 15:43:19'),(617,1,78,'VpiValuesInit avec UDTs','Bonjour,\r\nNotre VpiValuesInit ne marche pas avec les UDT et tableaux d\'UDT sur notre configuration ci-joint.\r\nIl faudrait que l\'on trouve une solution, par une réunion Teams sur le LM si besoin.\r\nMerci\r\n\r\nCordialement\r\nLosson Paul\r\n\r\n(J\'avais oublié le \"assigné à\" sur la demande précédente, désolé)',NULL,NULL,5,1,5,NULL,455,3,'2021-10-14 09:18:34','2022-05-20 15:44:00','2021-10-14',100,NULL,NULL,617,1,2,0,'2022-05-20 15:44:00'),(618,3,75,'Remarques Historisation à travers Aspiration mode Auto VpiUaClient','Bonjour M. Condemine, \r\n\r\nSuite à notre call hier, voici les problèmes qu\'on a rencontré avec le VpiUaClient : \r\n\r\n1) Le nœud TRIGGER_IDENTIFIER ne rafraîchit pas l’@ Space\r\n2) Au démarrage, il stocke tous les 2 UDT qu’il trouve au niveau du serveur (même ceux qui ne sont pas aspirés)\r\n3) Après le démarrage pour que des variables de type non UDT soient stockés, il faut qu’il y ait un autre client qui est abonné aux variables que l’on veut historiser\r\n4) Après le démarrage on n’arrive pas à faire enregistrer les variables de type UDT même s’il y a un client qui s’y est souscrit\r\n\r\nInfos supplémentaires : \r\n- Dans le log, du serveur Plant, il nous indique qu’il n’aime pas les types du MaxTimeInterval et MinTimeInterval (on a laissé la configuration telle que reçue dans la maquette du VfiPostgres) \r\n- Le serveur Plant est configuré pour qu’il aspire les nœuds à partir de l’objet ProdLine1 au niveau du serveur Plant\r\n\r\n\r\nCordialement,\r\n\r\nMichael \r\n',NULL,NULL,5,NULL,4,NULL,432,3,'2021-10-14 10:45:41','2021-10-22 16:09:54','2021-10-14',100,NULL,NULL,618,1,2,0,'2021-10-22 16:09:54'),(619,3,78,'Mauvais mélange de dll ','Bonjour,\r\nLe VpiValuesInit marche avec les UDT, le problème étant que le VpiUaClient ne marche plus et ce surement à cause d\'un mauvais mélange de dll.\r\nPour que nous nous y retrouvions, pouvez vous nous fournir une maquette d\'une configuration en release avec toutes les bibliothèques nécessaire contenant les dernières versions des VpiUaClient/Vfi/VpiValuesInit.\r\nOu dans le pire des cas seulement les dll sans la partie projet.\r\nMerci\r\n\r\nCordialement\r\nLosson Paul',NULL,NULL,6,1,5,NULL,455,1,'2021-10-14 11:24:17','2022-03-29 21:51:41','2021-10-14',100,NULL,NULL,619,1,2,0,'2022-03-29 21:51:41'),(620,1,70,'Compilation ','Bonjour M. Condemine,\r\nJ\'essaye de compiler la base de code \"OpenOpcUa_1_0_6_1_SK_13-10-2021\" mais j\'obtiens les erreurs suivantes, j\'ai vérifié dans les dossiers et il n\'existe pas de fonction/macro OpcUa_DateTime_FromInt64 prenant 2 arguments. est-ce qu\'il me manque un fichier?\r\nCela dit, au vu des noms de variables dtDiff je supposes que vous vouliez utiliser le macro -OpcUa_DateTime_FromInt64- *OpcUa_DateTime_Diff*.\r\n\r\n\r\n!clipboard-202110141437-jenzh.png!\r\n\r\nSinon j\'ai aussi ces erreurs dans le VpiUaMqttJsonPub. La dernière concernant la fonction \"X509_get0_extensions\" concerne probablement openssl. utilisez-vous toujours la version 1.1.0h.\r\n\r\n\r\n!clipboard-202110141445-vqxon.png!\r\n',NULL,NULL,5,1,4,NULL,424,2,'2021-10-14 15:05:21','2021-10-15 19:05:37','2021-10-14',100,NULL,NULL,620,1,2,0,'2021-10-15 19:05:37'),(621,3,75,'VfiPgsql crash ','Bonjour, \r\n\r\nOn a un scénario qui fait crasher le serveur en indiquant une pile d\'appel au niveau du VfiPgsql. \r\n\r\nCe scénario arrive lorsque le VpiLine met à jour une liste de recette. L\'enregistrement à bien lieu mais le process crash par la suite. \r\nOn n\'a pas ce scénario lorsqu\'on met à jour la liste d\'OF ERP ni d\'OF Virtuels. \r\nLes encodages sont casi identiques pour ces 3 listes. \r\n\r\nLa pile d\'appel indiquée est la suivante : \r\n\r\n!clipboard-202110141612-cptgp.png!\r\n\r\n\r\nSauriez vous ce qui ne plaît pas au VFI? \r\n\r\nCordialement, \r\n\r\nMichael \r\n',NULL,NULL,5,432,4,NULL,432,2,'2021-10-14 16:13:07','2021-10-29 16:07:50','2021-10-14',100,NULL,NULL,621,1,2,0,'2021-10-29 16:07:50'),(622,3,75,'Crash VpiUaClient lors d\'une reconnection avec un serveur feuille qui s\'est mal arrété','Bonjour, \r\n\r\nNous avons constaté un scénario de crash du VpiUaClient. \r\n\r\nScénario: un plant est connecté à un line. \r\nLe line crash pour une raison quelconque, au redémarrage du Line, ceci provoque un crash du plant lors de la tentative de reconnexion \r\n\r\nSi vous pouvez nous fournir une dll et un pdb à jour du VpiUaClient, je pourrai vous fournir la pile d\'appel qui mène au crash\r\n\r\n\r\nCordialement,\r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,11,'2021-10-14 16:45:41','2021-10-17 14:26:51','2021-10-14',100,NULL,NULL,622,1,2,0,'2021-10-17 14:26:51'),(623,3,75,'Livraison binaires debug ipv4 ou package OpenOpcUa et vfi/vpi','Bonjour, \r\n\r\n\r\nPourriez vous svp nous fournir le nouveau package OpenOpcUA ou bien les binaires compilés IPV4 Debug? (Core, LibClient, VpiUaClient, VfiPostgres, LibVFI et LibVpi, VpiInitValue ..)\r\n\r\nPour info, dans les packages précédent, il manquait dans les propriétés de la OpenOpcUAStackV1 la définition du mot clé préprocesseur IPV4_ONLY \r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,8,'2021-10-14 17:48:31','2021-10-17 14:39:12','2021-10-14',100,NULL,NULL,623,1,2,0,'2021-10-14 18:29:52'),(624,1,78,'Souscription nombreuse variable UAClient','Bonjour,\r\n\r\nSuite à une souscription de 840 Nodes sur un PLC S7-1500. il y a des erreurs dans le LOG.\r\n\r\nEn décomposant la souscription en plusieurs fichier cela fonctionne',NULL,NULL,5,NULL,4,NULL,447,1,'2021-10-14 19:24:59','2022-05-20 15:44:33','2021-10-14',100,NULL,NULL,624,1,2,0,'2022-05-20 15:44:33'),(625,3,75,'Crash Serveur Coredump','Ci-joint le CoreDump d\'un scénario de crash',NULL,NULL,5,NULL,4,NULL,432,2,'2021-10-15 21:54:26','2021-10-15 22:17:08','2021-10-15',100,NULL,NULL,625,1,2,0,'2021-10-15 22:12:07'),(626,1,75,'Minidump crash VpiInitValue','',NULL,NULL,5,NULL,4,NULL,432,1,'2021-10-21 10:49:07','2021-10-22 16:05:46','2021-10-21',100,NULL,NULL,626,1,2,0,'2021-10-22 16:05:46'),(627,3,75,'Log ClientLib Overnight (automates déconnectés) ','Bonjour, \r\n\r\nLe ticket est sur le fait que la taille augmente toute la nuit et atteint des tailles d\'une centaine de MB) \r\n\r\nCi joint le log',NULL,NULL,5,NULL,4,NULL,432,1,'2021-10-21 11:23:54','2021-10-22 16:01:05','2021-10-21',100,NULL,NULL,627,1,2,0,'2021-10-22 16:01:05'),(628,3,75,'Captures d\'écrans crash VpiUaClient (VpiWriteValue) ','!clipboard-202110211127-pxjqo.png!\r\n\r\n\r\nCi joint la stack et l\'état du tableau des NodeIds\r\n\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,432,4,NULL,432,6,'2021-10-21 11:28:27','2021-11-05 09:49:58','2021-10-21',100,NULL,NULL,628,1,2,0,'2021-11-05 09:49:58'),(629,2,75,'Mise en place d\'un VpiParseAddIdExs pour démarrage plus rapide du VPI avec un mélange de UDT et de variables simples','Bonjour,\r\n\r\nNous souhaiterons si possible pour le démarrage plus rapide du VpiLine l\'implémentation d\'une fonction VpiParseAddIdExs \r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,1,NULL,4,NULL,432,0,'2021-10-21 11:31:25','2021-10-21 11:31:25','2021-10-21',0,NULL,NULL,629,1,2,0,NULL),(630,1,75,'VfiPgsql enregistrement \"raté\" , retours tests backoffice','Bonjour, \r\n\r\n\r\nSuite à notre discussion, voici les résultats de mes tests backoffice\r\n\r\n\r\n- En fonctionnement nominal tout est ok\r\n- Je provoque la déconnexion réseau et demande un archivage. \r\n- Je rétablit la connexion réseau et attends : la récupération n\'est pas automatique. Le VfiWarmStart n\'est pas appelé (et donc la mconn n\'est pas restituée). L\'enregistrement \"raté\" n\'est donc pas encore rétablie. \r\n- Je provoque une nouvelle demande d\'archivage. Le VfiWarmStart est appelé (logs). Et l\'enregistrement \"raté\" et la nouvelle demande d\'enregistrement se trouvent bien dans la base. \r\n\r\n\r\nIl semblerait que c\'est le Trigger d\'essai de reconnexion qu\'il faut revoir\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n- ',NULL,NULL,5,NULL,4,NULL,432,1,'2021-10-21 12:00:18','2021-10-22 15:55:51','2021-10-21',100,NULL,NULL,630,1,2,0,'2021-10-22 15:55:51'),(631,3,65,'Version Linux','Bonjour,\r\n\r\ncomme évoqué au tel, compilation sous linux du Serveur/VPI Tyco.\r\n\r\nMerci.\r\n\r\nCdlt.\r\n\r\nNorbert',NULL,NULL,5,1,4,NULL,328,1,'2021-10-21 15:20:28','2022-05-24 14:12:35','2021-10-21',0,NULL,NULL,631,1,2,0,'2022-05-24 14:12:35'),(632,3,56,'Version Linux','Bonjour,\r\n\r\ncomme évoqué au tel, compilation sous linux du Serveur/VPI Tyco.\r\n\r\nMerci.\r\n\r\nCdlt.\r\n\r\nNorbert',NULL,NULL,1,1,4,NULL,328,0,'2021-10-21 15:26:28','2021-10-21 15:26:28','2021-10-21',0,NULL,NULL,632,1,2,0,NULL),(633,3,75,'Nouveau messages VpiUaClient ','Bonjour, \r\n\r\n\r\nNous voyons apparaitre des messages dans les logs indiquant : \r\n\r\n2021-10-26T06:08:47.850Z ERROR VpiWriteValue> VpiNodeIdToOpcUaNodeId failed 0x00000\r\n\r\n\r\nQue veulent dire ces messages? \r\nJ\'ai mis en PJ les logs du VpiUaClient \r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,NULL,4,NULL,432,3,'2021-10-26 09:54:32','2021-10-28 15:00:32','2021-10-26',100,NULL,NULL,633,1,2,0,'2021-10-28 15:00:32'),(634,1,98,'Simantec and Ximulator client','!clipboard-202110271053-ztdeh.png!\r\n',NULL,NULL,5,1,4,NULL,513,3,'2021-10-27 10:53:43','2022-05-14 11:41:35','2021-10-27',100,NULL,NULL,634,1,2,0,'2022-03-21 14:26:54'),(635,1,98,'Problème Ximulator & Word','',NULL,NULL,1,1,4,NULL,510,2,'2021-10-27 12:38:59','2022-05-14 11:40:47','2021-10-27',0,NULL,NULL,635,1,2,0,NULL),(636,2,70,'Gestion extensionObject par le libVpiUaMqttJsonPub ','Manque de la gestion des données complexes (extensionObject) dans la version actuelle du libVpiUaMqttJsonPub.',NULL,NULL,5,1,4,NULL,424,1,'2021-10-28 11:02:46','2022-02-18 15:20:40','2021-10-28',100,NULL,NULL,636,1,2,0,'2022-02-18 15:20:40'),(637,1,75,'Suite Ticket 618. Enregistrement de nœuds non aspirés au démarrage d\'un serveur agrégateur mode auto et Save on change =true','Bonjour, \r\n\r\n\r\nNous avons un \"bug\" sur la configuration suivante. \r\n\r\nAu démarrage du serveur agrégateur il y a un enregistrement de tous les tableau de UDT du serveur feuille. Ceux aspirés et ceux non aspirés. \r\nDe plus ces enregistrements sont de la mauvaise forme : \r\n\r\n!clipboard-202110281216-aufv7.png!\r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,1,'2021-10-28 12:18:34','2021-11-04 18:57:21','2021-10-28',100,NULL,NULL,637,1,2,0,'2021-11-04 18:57:21'),(638,1,75,'Suite Ticket 618. Enregistrement de UDT non scalaires aspirés en configuration automatique par un serveur agrégateur','Bonjour,\r\n\r\n\r\nUn serveur agrégateur aspire les nœuds d\'un serveur feuille. \r\n\r\nCependant, même en nous abonnant sur une variable de type UDT non scalaire, le serveur agrégateur n\'enregistre pas les évolutions de l\'UDT. \r\nLorsque nous sommes en configuration simple (serveur ligne qui fait les enregistrements, la variable est bien enregistrée) \r\n\r\nSur notre maquette c\'est la variable KPI_Maintenance qui permet de tester ce cas. \r\n\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,NULL,4,NULL,432,1,'2021-10-28 12:23:22','2021-11-04 18:53:26','2021-10-28',100,NULL,NULL,638,1,2,0,'2021-11-04 18:53:26'),(639,2,75,'Suite Ticket 618. Enregistrement de variables aspirés par un serveur agrégateur sans un client qui est abonné aux nœuds','Bonjour, \r\n\r\nConfiguration :\r\n\r\nUn serveur agrégateur aspire une partie partielle de plusieurs serveurs feuilles en configuration automatique. \r\n\r\nNous cherchons un moyen de faire les historisations à travers le serveur agrégateur sans qu\'il y ait un client OPC UA abonné à tous les nœuds \r\n\r\n\r\nAuriez vous des pistes? \r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,3,NULL,4,NULL,432,4,'2021-10-28 12:28:54','2021-11-05 09:50:56','2021-10-28',100,NULL,NULL,639,1,2,0,'2021-11-04 18:55:01'),(640,1,75,'Suite Ticket 618. Aspiration et synchronisation des enums par VpiUaClient mode Auto','Sur la maquette sur les autres tickets (Suite Ticket 618), une variable de type Enum est aspirée (type sous ProductionLine1) \r\n\r\nCôté Plant on a un Int32 qui est instancié dynamiquement. \r\nLa valeur pour cette variable ne se rafraichit lorsqu\'on est souscrit côté Plant. Il faut faire un Read pour la rafraichir. \r\n\r\n\r\nCordialement,\r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,1,'2021-10-29 17:37:44','2021-11-04 15:19:01','2021-10-29',100,NULL,NULL,640,1,2,0,'2021-11-04 15:19:01'),(641,3,75,'Analyse d\'un minidump concernant le VpiValuesInit','Bonjour, \r\n\r\nJ\'espère que vous allez bien. \r\n\r\nNous avons reçu le procdump suivant du client concernant le VpiValuesInit au démarrage. \r\n\r\n\r\n!clipboard-202111021044-ouqnd.png!\r\n\r\nJe vous transmet le procdump au cas où vous aurez toujours les symboles liés à ce Vpi \r\n\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,NULL,6,NULL,432,4,'2021-11-02 10:44:59','2021-11-04 14:21:48','2021-11-02',100,NULL,NULL,641,1,2,0,'2021-11-04 14:21:48'),(642,2,75,'Démarrage synchrone des Vpi pour s\'assurer que le VpiValuesInit a fini son travail avant démarrage du VpiLine/VpiUaClient','',NULL,NULL,1,1,4,NULL,432,3,'2021-11-02 11:38:22','2021-12-08 17:10:07','2021-11-02',0,NULL,NULL,642,1,2,0,NULL),(643,3,75,'VfiPgsql crash lorsque taille enregistrement > 320 k ','Bonjour, \r\n\r\nNous avons rencontré un souci sur 2 lignes de production indiquant une pile d\'appel du VfiPgsql. \r\nLes fichiers de log du VfiPgsql n\'indiquent rien \r\n\r\nSur les 2 lignes, la taille de l\'élément à enregistrer avait atteint les 320 000 octets. \r\nJe mets en PJ 2 procdumps de chacune des lignes au cas où vous avez toujours les symboles liée au VfiPgsql v 0.0.1.8 datant du 26-10 11h09\r\n\r\n',NULL,NULL,3,NULL,4,NULL,432,1,'2021-11-03 17:23:13','2021-11-04 14:19:32','2021-11-03',100,NULL,NULL,643,1,2,0,'2021-11-04 14:19:32'),(644,3,75,'Analyse de crash ligne Rotor','Bonjour, \r\n\r\nEmotors nous a transmis un procdump et logs pour un crash qu\'ils ont eu sur la ligne Rotor. \r\n\r\nSelon eMotors, le crash a eu lieu sans la présence du personnel\r\n\r\nLa callstack est la suivante : \r\n\r\n!clipboard-202111091208-g2bl4.png!\r\n\r\nEn regardant les logs rien ne me saute aux yeux. Je ferai des tickets dans la semaine pour certains messages dans les logs serveurs qui apparaissent plusieurs fois que je ne comprends pas tout à fait. \r\n\r\nJ\'ai mis en PJ les logs ainsi que le procdump transmis par eMotors. \r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,2,NULL,4,NULL,432,15,'2021-11-09 12:12:47','2022-11-04 16:07:54','2021-11-09',0,NULL,NULL,644,1,2,0,NULL),(645,1,78,'VPIS7 - Tableau de Byte --> String','Michel\r\n\r\nSuite à nos essais sur le VPI S7, nous avons un crash lors d\'un mapping de tableau de byte vers une string. Je pense qu\'il s\'agit du même problème rencontré sur le VPI UAClient\r\n\r\nD\'autre part, pourriez-vous nous faire une livraison de ce VPI S7 en accord avec la dernière LibraryDebug livrée svp?',NULL,NULL,5,NULL,5,NULL,447,4,'2021-11-09 18:34:59','2022-05-20 15:45:23','2021-11-09',100,NULL,NULL,645,1,2,0,'2022-05-20 15:45:23'),(646,3,92,'Unit to choose in US','Verify if \"galons\" apply for the Capacity attribute in US.\r\nIf not propose another unit.',NULL,NULL,5,512,4,NULL,436,1,'2021-11-16 11:04:57','2021-11-22 22:15:48','2021-11-16',0,NULL,NULL,646,1,2,0,'2021-11-22 22:15:48'),(647,3,92,'Category for Phase','In the input/ouput list to which Category Phase should belong to?',NULL,NULL,5,510,4,NULL,436,2,'2021-11-16 11:15:40','2021-11-16 15:14:31','2021-11-16',0,NULL,NULL,647,1,2,0,'2021-11-16 15:14:31'),(648,3,92,'Category for Waste Water','In the input/ouput list to which Category Waste Water should belong to?',NULL,NULL,5,510,4,NULL,436,2,'2021-11-16 11:17:13','2021-11-16 15:48:59','2021-11-16',0,NULL,NULL,648,1,2,0,'2021-11-16 15:48:59'),(649,3,92,'Well Water','What is \"Well Water\"?',NULL,NULL,5,510,4,NULL,436,1,'2021-11-16 11:23:26','2021-11-16 15:50:36','2021-11-16',0,NULL,NULL,649,1,2,0,'2021-11-16 15:50:36'),(650,3,92,'Naming selection for Phase','At the very end, what should be the best name for \"Phase\"?\r\n\r\nShould we keep \"Phase\"?\r\nOr should it be named \"Matter state\"?\r\nOr should it be named \"Matter classification\"?\r\nOr should we propose another name (and which one)?',NULL,NULL,5,510,4,NULL,436,1,'2021-11-16 11:51:16','2021-11-16 15:10:14','2021-11-16',100,NULL,NULL,650,1,2,0,'2021-11-16 15:10:14'),(651,1,75,'Analyse de crash ligne PrepaStack 15-16 novembre','Bonjour,\r\n\r\nCi joint les mindumps déposé par eMotors. \r\n\r\nLes plus intéressants sont les 3 derniers qui ont eu lieu en fonctionnement (pour celui à 17h je ne pense pas que ce soit un crash en fonctionnement) \r\n\r\nLes logs joints correspondent normalement à ceux lié au dernier mindump. Le serveur a continué de tourner après la génération du mindump.',NULL,NULL,5,NULL,5,NULL,432,3,'2021-11-16 12:30:27','2022-11-04 16:08:37','2021-11-16',100,NULL,NULL,651,1,2,0,'2022-11-04 16:08:37'),(652,3,92,'C3_Evapo_Prod','To find/To provide some documentation related to the components that are part of the evaporator described in the C3_Evapo_Prod schema (in particular for CD01 component that is a cooling tower).',NULL,NULL,5,510,4,NULL,436,1,'2021-11-16 13:59:17','2021-11-16 16:29:15','2021-11-16',100,NULL,NULL,652,1,2,0,'2021-11-16 16:29:15'),(653,3,75,'Compréhension message log LibClient ','Bonjour, \r\n\r\n\r\nPourriez vous nous expliquer que signifie le message suivant ? : \r\n\r\nCLIENT_ERROR Call to NotificationMessageCallback failed 0x808d0000\r\n\r\nJe l\'aperçoit sur certains Subsystem et pas d\'autres. Nous sommes sur une configuration où il y a plusieurs Subsystem VpiUaClient mais tous connectés au même automate. \r\n\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,2,'2021-11-16 17:07:53','2022-11-04 16:12:44','2021-11-16',100,NULL,NULL,653,1,2,0,'2022-11-04 16:12:44'),(654,1,78,'Fichiers .log et .dmp','Bonjour,\r\n\r\nCi-joint les fichiers rapport du crash sur la ligne Prépastack récupéré ce matin (17-11-21).\r\n\r\nRaison: Démarrage de machine (Autour de 8h00).',NULL,NULL,5,489,5,NULL,489,2,'2021-11-17 09:38:19','2022-11-04 14:32:57','2021-11-17',100,NULL,NULL,654,1,2,0,'2022-11-04 14:32:57'),(655,1,78,'Crash Prepastack 17-11-21','bonjour,\r\n\r\nles fichiers logs et dmp fourni par la ligne prépara° des stacks',NULL,NULL,5,NULL,5,NULL,489,4,'2021-11-17 13:22:19','2022-11-04 14:33:23','2021-11-17',100,NULL,NULL,655,1,2,0,'2022-11-04 14:33:23'),(656,1,78,'Rapport du Crash sur la ligne Rotor 17-11-21','les fichiers log et dmp',NULL,NULL,5,NULL,5,NULL,489,2,'2021-11-17 13:31:35','2022-11-04 14:33:51','2021-11-17',100,NULL,NULL,656,1,2,0,'2022-11-04 14:33:51'),(657,3,94,'ServiceFault sur S7-1500 et UaClient','Bonjour,\r\n\r\nComme convenu j\'ai réalisé ce matin une trace WireShark sur le line Middleware prépastack pour analyser les servicesFault et GoodOverload renvoyé par le PLC de prépastack\r\n\r\nSur cette configuration, il y a 9 subsystem ua client qui s\'abonne à 106 nodes chacun\r\n\r\nPas de Ua Expert connecté pendant la capture WireSkark \r\n\r\nCommentaires sur la capture :\r\n- lancement de la capture avant démarrage du serveur\r\n- il y a eu le phénomène GoodOverLoad sur x temps au démarrage puis il a disparu.\r\n\r\nLe statutGoodOverLoad nous l\'avons à 100% des démarrage - la disparition à lieu après x temps à lieu dans 50% des cas (je n\'ai pas trouvé dans quel cas il disparaissait ou non), sinon il reste indéfiniment ',NULL,NULL,5,NULL,5,NULL,447,2,'2021-11-17 15:56:44','2022-11-04 14:34:18','2021-11-17',100,NULL,NULL,657,1,2,0,'2022-11-04 14:34:18'),(658,3,75,'Document analyse et résumé mindumps et logs serveurs','Rebonjour, \r\n\r\nSuite à notre call, ci joint un document récapitulant les mindumps et pointant vers ce que j\'ai trouvé d\'intéressant dans les logs. \r\n\r\nN\'hésitez pas à m\'indiquer si je peux faire plus pour aider\r\n\r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,2,'2021-11-17 16:59:24','2023-02-08 18:58:32','2021-11-17',100,NULL,NULL,658,1,2,0,'2023-02-08 18:58:32'),(659,1,94,'Fichiers .log et .dmp','CRASH PREPASTACK midi 18-11_21',NULL,NULL,5,489,4,NULL,489,11,'2021-11-18 15:09:14','2022-11-04 14:35:01','2021-11-18',100,NULL,NULL,659,1,2,0,'2022-11-04 14:35:01'),(660,1,94,'Fichiers .log et .dmp pour Crash d\'essai de S7','CRASH S7',NULL,NULL,5,NULL,4,NULL,489,2,'2021-11-18 15:10:24','2022-11-04 14:35:22','2021-11-18',100,NULL,NULL,660,1,2,0,'2022-11-04 14:35:22'),(661,3,94,'VPI UA Client','Bonjour,\r\n\r\nNous avons ajouté 24 Datacollect sur un PLC de la ligne Rotor en plus des 2 déjà présent)\r\n\r\nAvant la mise à jour des binaires de ce soir, le serveur n\'arrivait pas à se connecter au 26 datacollect (105 nodes par datacollect répartit en 4 subsystem de 6 et 8 Datacollect) avec une erreur de time out dans le log sur la ligne createdMonitoredItem\r\n\r\nApres x secondes, il y avait un plantage\r\n\r\nNous avons testé la dernière livraison des binaires sur ligne Rotor. \r\n\r\nLe mapping ne fonctionne toujours pas avec la même erreur mais pas de plantage après plusieurs minutes \r\n\r\nCe problème de TimeOut avait déjà été constaté, il y a plusieurs semaines sur la ligne usinage (12 Datacollect sur le mêmee susbystem), nous avons alors splitté les datacollect en 1 subsystem = 1 datacollect et ca a fonctionné.\r\n\r\nQuel est la valeur avant de déclarer le TimeOut et serait-il possible de faire un essai en l\'augmentant significativement (si possible et si oui peut-être le rendre paramétrable dans le fichier .Dat) pour vérifier si après x secondes la connexion s\'établi?\r\n\r\nJe vous envoi les Log dans ce même ticket demain matin (vendredi 19/11)\r\n\r\nLionel\r\n',NULL,NULL,5,447,4,NULL,447,31,'2021-11-18 19:48:13','2022-11-04 14:36:21','2021-11-18',100,NULL,NULL,661,1,2,0,'2022-11-04 14:36:21'),(662,1,75,'Alarmes UaExpert et Genesis','Bonjour M. Condemine, \r\n\r\n\r\nNous identifions plusieurs points sur le réception des alarmes côté Genesis et UaExpert. \r\n\r\nNotre AdressSpace ressemble à l\'image suivante: \r\n\r\n!clipboard-202111191740-dgqbq.png!\r\n\r\n\r\nToutes les variables sous List_Of_Alarm sont les booléens surveillées et l\'object notifié est l\'object Logistic ou Quality. (Est-ce un problème d\'avoir toutes les variables qui notifient un unique object?) \r\n\r\n\r\n\r\nVoici les anomalies notées: \r\n\r\n- côté UaExpert : \r\n - Pour une souscription sur un objet donné (Logistic par exemple) on ne voit sur la fenêtre Alarms de UaExpert que 1 alarme à la fois (Phénomène non présent coté Genesis, ni sur l\'onglet Events des alarmes) \r\n - Toute alarme acquittée avec un commentaire repasse dans un état non acquittée sans commentaire\r\n\r\n- côté Genesis : \r\n - Au moment de la souscription à l\'objet, les alarmes précédemment générées et toujours actives ne sont pas récupérées (est-ce lié au phénomène de Refresh neutralisé dans le serveur ? )\r\n - Presque toute alarme acquittée avec un commentaire repasse dans un état non acquitée sans commentaire (bizarrement la première alarme qui apparait a le droit de garder son état acquittée commentée) \r\n\r\n\r\nAuriez vous une disponibilité lundi pour vous montrer ça et ouvrir autant de ticket que nécessaire par problème? \r\n\r\nCordialement, \r\n\r\nMichael \r\n\r\n \r\n\r\n\r\n\r\n\r\n',NULL,NULL,2,1,4,NULL,432,2,'2021-11-19 17:51:00','2022-11-04 16:16:51','2021-11-19',0,NULL,NULL,662,1,2,0,NULL),(663,1,75,'Nouvelle version VpiUaClient et Strings','Bonjour, \r\n\r\nEn testant en backoffice, je viens de m\'apercevoir que pour les strings (String dans Adress Space, et tableau de CHAR côté automate), la communication ne fonctionne pas. \r\n\r\nLes logs VpiUaClient indiquent le message suivant (0x80110000) : \r\n\r\n\r\n\r\n!clipboard-202111221051-wndyi.png!\r\n\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,NULL,6,NULL,432,4,'2021-11-22 10:54:35','2021-11-22 19:09:45','2021-11-22',100,NULL,NULL,663,1,2,0,'2021-11-22 19:09:45'),(664,3,92,'Marble\'s attributes','What are the relevant attributes for Marble?',NULL,NULL,5,510,4,NULL,436,1,'2021-11-22 11:46:14','2022-01-03 15:05:22','2021-11-22',100,NULL,NULL,664,1,2,0,'2022-01-03 15:05:22'),(665,3,75,'Version Ximulator','Bonjour M. Condemine,\r\n\r\n\r\nPourriez vous s\'il vous plaît nous fournir une version récente de Ximulator \r\n\r\nCordialement, \r\nMichael ',NULL,NULL,5,NULL,4,NULL,432,1,'2021-11-22 15:35:50','2022-03-25 18:08:51','2021-11-22',100,NULL,NULL,665,1,2,0,'2022-03-25 18:08:51'),(666,1,70,'Arrêt serveur OPCUA/MQTT après lancement','Bonjour M. COndemine,\r\nJ\'ai effectué quelques tests avec le VpiUaMqttPub et j\'ai remarqué que le serveur plante lorsqu\'on arrive dans la fonction :\r\nVpiUaPub.cpp -> MQTT_SendPingRequest() -> SSL_write(m_SSL, pszEncodedMessage, iMessageLen)\r\nEn démarrant le serveur, si la machine arrive à faire 1 ping, puis un autre, le serveur ne plante pas.\r\nPar contre lorsqu’elle plante c\'est toujours au moment du second ping (SSL_Write).\r\nPour tester j\'ai commenté le SSL_Write du ping et j\'ai constaté que le serveur ne plante pas.\r\nJ\'ai donc utilisé le KrnlApiTester pour modifier une variable, Ce qui oblige le VpiPub à faire un MQTT_SendPublish (SSL_Write) et là, le serveur plante.\r\n\r\nJ\'ai l\'impression que le problème vient d\'un manquement dans la comm SSL. J\'ai fait quelques recherches qui mentionnent qu\'il faut faire un SSL_do_hanshake avant un SSL_Write, Mais ça c\'est avant le premier SSL_Write. Dans notre cas la connexion se fait, le premier ping est envoyé, je ne vois pas encore ce qui peut se produire après ça pour créer ce plantage.\r\n\r\n',NULL,NULL,5,1,4,NULL,424,16,'2021-11-22 18:16:46','2021-12-07 12:03:25','2021-11-22',100,NULL,NULL,666,1,2,0,'2021-12-06 12:31:23'),(667,3,92,'Lab\'s equipment','What is the list of equipment used in the Lab?',NULL,NULL,5,510,4,NULL,436,1,'2021-11-24 13:18:11','2022-01-03 15:06:04','2021-11-24',100,NULL,NULL,667,1,2,0,'2022-01-03 15:06:04'),(668,3,98,'Regénération NodeSet de Type avec XiMulator_1.0.1.9_v1.0.3.0 en partant d\"un projet précédent','Bonjour, \r\n\r\nLionel a pu nous fournir la version XiMulator_1.0.1.9_v1.0.3.0 de l\'outil Ximulator. \r\n\r\nNous avons régénéré le modèle en partant du projet Ximulator précédent afin de conserver les NodeId Maps\r\nVoici les résultats de nos essais . \r\n\r\n\r\n*+NodeIds des noeuds+*\r\n\r\nLes UserDataTypes ont conservé leur NodeIds\r\nLes VariableType mis à plats n’ont pas conservé leur NodeIds\r\nLes ObjectTypes ont conservé leur NodeIds mais les Objects qu’ils ont en Component n’ont pas conserver leur NodeIds\r\nLes Enums ont conservé leur NodeIds\r\n\r\n\r\n+*Problèmes*+ \r\n\r\n+Message dans les logs du serveur au démarrage+ :\r\n- On n’a plus les messages concernant les Dates (très bien)\r\n- 2021-11-24T13:32:56.927Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=8335 contains a forward reference with a not found target : i=0\r\n2021-11-24T13:32:56.928Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=8327 contains a forward reference with a not found target : i=0\r\n\r\n\r\n 2 UDT (ResponseAGVDataType et RequestAGVDataType) ont des Default Binary (Encoding) avec une référence HasDescription vers ns=1;i=xxxx\r\n\r\n\r\n- 2021-11-24T13:32:56.945Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=3;i=16650 contains a forward reference with a not found target : ns=3;i=8515\r\n2021-11-24T13:32:56.947Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=3;i=15229 contains a forward reference with a not found target : ns=3;i=7405\r\n2021-11-24T13:32:56.948Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=3;i=14968 contains a forward reference with a not found target : ns=3;i=7155\r\n\r\n Pour 3 Object ( RecipesExchange, UplinkErp, DownlinkErp) les liens HasTypeDefinition n’ont pas bien eu lieu. Au lieu de pointer vers les ObjecType lié au nouveau NodeSet de Type, ils ont gardé des références vers l’object du nouveau NodeSet de Type précédent\r\nExemple : Pour l’object RecipesExchange, on a un lien HasTypeDefinition vers l’object dans le nouveau NodeSet de Type précédent plutôt que vers le bon ObjectType dans ce nouveau NodeSet de Type\r\n\r\n\r\n- 2021-11-24T13:33:14.533Z SERVER_ERROR InitializeEncodeableObject>The dataType of a Variable i=18801 cannot be Abstract. Probably a modelization error\r\n2021-11-24T13:33:14.534Z SERVER_ERROR InitializeEncodeableObject>The dataType of a Variable i=18787 cannot be Abstract. Probably a modelization error\r\n2021-11-24T13:33:14.537Z SERVER_ERROR InitializeEncodeableObject>The dataType of a Variable i=2077 cannot be Abstract. Probably a modelization error\r\n\r\n Ces identifiants n’existent pas dans les NodeSetdeType. Peut-être dans les NodeSet de la Fondation ? \r\n\r\n+NodeIds Maps+\r\n\r\n- La taille des NodeId Maps a presque doublé (impact au long terme ?)\r\n\r\n+*Impact transition configuration en fin de Sprint*+ \r\n\r\nMise à jour des VariableType mis à plats référencés (FBDC et FBDR)\r\nModification des instances \r\n\r\n\r\nJe mets en PJ un zip contenant les précédents et nouveaux NodeIdMaps et NodeSet de Types.\r\n\r\nJe vous propose de garder ce nouveau NodeSet de Type pour ce Sprint. Qu\'en pensez vous? \r\n\r\nCordialement \r\n\r\nMichael\r\n',NULL,NULL,1,NULL,4,NULL,432,1,'2021-11-24 17:13:47','2022-05-14 11:26:13','2021-11-24',0,NULL,NULL,668,1,2,0,NULL),(669,3,75,'Rustine','Bonjour,\r\nLionel vient de m\'indiquer que vous aviez mis un rustine dans un code pour empêcher le crash à l\'arrêt.\r\nVous vous doutez bien que ma curiosité est titillée. \r\nPourriez vous m\'en dire plus ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,NULL,4,NULL,1,6,'2021-11-26 15:24:57','2022-11-04 16:17:43','2021-11-26',100,NULL,NULL,669,1,2,0,'2022-11-04 16:17:43'),(670,3,92,'Verify some Enums\' English traductions','Need support from Sunil to verify the English names assigned to the different Enumerations and Objects related to the PowerSupplyDataType object.',NULL,NULL,5,512,4,NULL,436,1,'2021-11-29 11:53:21','2022-01-03 15:06:37','2021-11-29',100,NULL,NULL,670,1,2,0,'2022-01-03 15:06:37'),(671,1,94,'Problème de détection du dernier Tag déclaré dans un SubSystem (Vpi)','Bonjour M. Condemine, \r\n\r\nNous avons repéré un souci sur la détection du dernier Tag déclaré dans le Subsystem dans les cas ou le Subsystem contient aussi une méthode déclarée. \r\nLe Vpi n\'est pas appelé par un ParseAddId pour ce dernier Tag. \r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,NULL,5,NULL,432,1,'2021-11-30 16:51:29','2021-12-07 20:48:17','2021-11-30',100,NULL,NULL,671,1,2,0,'2021-12-07 20:48:17'),(672,1,70,'VpiMqtt Variables','Bonjour M. Condemine,\r\nJe suis entrain de configurer une machine pour pouvoir publier des données et je remarque que le VpiUaJsonMqtt ne m\'affiche pas mes variables.\r\nJ\'ai décommenté toutes les variables comme ci-dessous, et dans la structure Json retourné par le Vpi je ne vois que #RecipeIndex, #Machine_serial_Number, #Machine_Name.\r\nA noté que toutes les variables qui ne s\'affiche pas sont:\r\nsoit des variables de type extensionobject,\r\nsoit des variables qui sont referencé dans une variable extensionobject\r\n\r\nSavez-vous pourquoi?\r\n\r\n!clipboard-202112031206-jv0rq.png!\r\n\r\nJ\'ai vérifié dans les logs du serveur et j\'ai vu les erreurs ci-dessous (Vpi_BadNodeIdExists, Vpi_ParseError).\r\n\r\n!clipboard-202112031236-offs0.png!\r\n\r\nEst-ce pour ça que le VpiUaJsonMqtt ne voit pas les variables?\r\n\r\nJ\'ai vu que le Coreserver faisait appel à la fonction VpiParseAddIdEx du VpiSK qui a déjà des adresses de variables définis en dur, est-ce normal?:\r\n\r\n!clipboard-202112031248-trwym.png!\r\n',NULL,NULL,5,1,5,NULL,424,1,'2021-12-03 12:51:54','2022-02-18 15:20:07','2021-12-03',100,NULL,NULL,672,1,2,0,'2022-02-18 15:20:07'),(673,1,70,'Crash VpiUaPub','Bonjour M. Condemine,\r\nAu démarrage du serveur j\'ai une segfault lié au VpiUaPub. Ci-dessous le debuggage.\r\nEt lorsque je n\'ai pas ce segfault, le publisher se connecte et il ne se passe plus rien. Il n\'y a pas de publish quand je modifie des variables.\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n\r\n\r\nDebuggage\r\n\r\n!clipboard-202112071343-pxnrc.png!\r\n\r\n!clipboard-202112071343-eweyx.png!\r\n ',NULL,NULL,5,1,5,NULL,424,6,'2021-12-07 13:44:46','2022-02-18 15:19:40','2021-12-07',100,NULL,NULL,673,1,2,0,'2022-02-18 15:19:40'),(674,3,75,'Cohabitation VpiInitValues et derniers binaires du serveur','Bonjour M. Condemine, \r\n\r\n\r\nNous avons des soucis avec le VpiValuesInit. \r\nAvec les livraisons de binaires de décembre, nous n\'arrivons pas à récupérer la valeur. \r\n\r\nNous sommes sur une conf où le VpiLine est désactivé. La valeur lue dans le serveur avec UaExpert est la valeur par défaut mise par le serveur. \r\nEst-il possible que le serveur écrase la valeur restituée par le VpiValuesInit ? (Peut-être que le serveur attend le passage du Device State à Good pour appeler le VpiWrite du VpiValuesInit avec les valeurs initiales?)\r\n\r\n\r\nCordialement, \r\nMichael',NULL,NULL,5,1,6,NULL,432,3,'2021-12-07 18:45:46','2022-03-27 23:27:31','2021-12-07',0,NULL,NULL,674,1,2,0,'2022-03-27 23:27:31'),(675,3,94,'Instanciation avec SIOME2.3','Bonjour,\r\n\r\nCi-joint une instanciation de la ligne COVER avec les LOGS (sans avoir réellement identifier les machine Type pour le moment <pas d\'intégration des machine de gravage , Centre usinage, Presse, ....>)\r\n\r\nJe vais poster également la dernière version de SIOME dans la partie Fichier\r\n\r\nVoici quelques erreurs que j\'ai pu identifier :\r\n2021-12-13T08:38:13.247Z SERVER_ERROR UpdateBuiltinType>You specify an incorrect NodeId: ns=2;i=14280 BrowseName=List_Sub_Of\r\n2021-12-13T08:38:13.255Z SERVER_ERROR UpdateBuiltinType>You specify an incorrect NodeId: ns=2;i=14234 BrowseName=KPI_Quality\r\n2021-12-13T08:38:13.255Z SERVER_ERROR UpdateBuiltinType>You specify an incorrect NodeId: ns=2;i=14230 BrowseName=KPI_Maintenance\r\n2021-12-13T08:38:13.255Z SERVER_ERROR UpdateBuiltinType>You specify an incorrect NodeId: ns=2;i=14231 BrowseName=KPI_Fabrication\r\n2021-12-13T08:38:13.257Z SERVER_ERROR UpdateBuiltinType>You specify an incorrect NodeId: ns=2;i=14220 BrowseName=List_ERP_OF\r\n2021-12-13T08:38:13.267Z SERVER_ERROR Configuration inconsistency.Error during Built-In type update Please check you XMLs files\r\n\r\n2021-12-13T08:38:13.833Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=1339 contains a forward reference with a not found target : i=0\r\n2021-12-13T08:38:13.833Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=1322 contains a forward reference with a not found target : i=0\r\n2021-12-13T08:38:47.847Z SERVER_ERROR Start Updating UAVariables EncodeableObject\r\n2021-12-13T08:38:47.847Z SERVER_ERROR InitializeEncodeableObject>The dataType of a Variable i=18801 cannot be Abstract. Probably a modelization error\r\n2021-12-13T08:38:47.849Z SERVER_ERROR InitializeEncodeableObject>The dataType of a Variable i=18787 cannot be Abstract. Probably a modelization error\r\n2021-12-13T08:38:47.849Z SERVER_ERROR InitializeEncodeableObject>The dataType of a Variable i=2077 cannot be Abstract. Probably a modelization error\r\n2021-12-13T08:38:47.909Z SERVER_ERROR UpdateUAVariablesEncodeableObject>Error, impossible to find ns=2;i=14280 in UADataTypeList 0x80ab0000\r\n2021-12-13T08:38:47.909Z SERVER_ERROR InitializeEncodeableObject>GetNodeIdFromDataTypeList failed. The UAVariable have no dataType \r\n2021-12-13T08:38:47.909Z SERVER_ERROR UpdateUAVariablesEncodeableObject>Error, impossible to find ns=2;i=14234 in UADataTypeList 0x80ab0000\r\n2021-12-13T08:38:47.909Z SERVER_ERROR InitializeEncodeableObject>GetNodeIdFromDataTypeList failed. The UAVariable have no dataType \r\n2021-12-13T08:38:47.909Z SERVER_ERROR UpdateUAVariablesEncodeableObject>Error, impossible to find ns=2;i=14230 in UADataTypeList 0x80ab0000\r\n2021-12-13T08:38:47.909Z SERVER_ERROR InitializeEncodeableObject>GetNodeIdFromDataTypeList failed. The UAVariable have no dataType \r\n2021-12-13T08:38:47.909Z SERVER_ERROR UpdateUAVariablesEncodeableObject>Error, impossible to find ns=2;i=14231 in UADataTypeList 0x80ab0000\r\n2021-12-13T08:38:47.909Z SERVER_ERROR InitializeEncodeableObject>GetNodeIdFromDataTypeList failed. The UAVariable have no dataType \r\n2021-12-13T08:38:47.917Z SERVER_ERROR UpdateUAVariablesEncodeableObject>Error, impossible to find ns=2;i=14220 in UADataTypeList 0x80ab0000\r\n2021-12-13T08:38:47.919Z SERVER_ERROR InitializeEncodeableObject>GetNodeIdFromDataTypeList failed. The UAVariable have no dataType \r\n2021-12-13T08:38:47.940Z SERVER_ERROR UAVariables EncodeableObject has been updated properly\r\n',NULL,NULL,5,447,4,NULL,447,3,'2021-12-13 09:47:06','2022-11-04 14:37:21','2021-12-13',100,NULL,NULL,675,1,2,0,'2022-11-04 14:37:21'),(676,3,92,'LIMS data connection','How do we connect to the LIMS (Lab Information Management System) data?',NULL,NULL,5,518,4,NULL,436,1,'2021-12-13 12:24:24','2022-01-03 15:07:08','2021-12-13',100,NULL,NULL,676,1,2,0,'2022-01-03 15:07:08'),(677,3,75,'Stabilité communication Plant to Line avec VpiUaClient en mode manuelle','Bonjour, \r\n\r\n\r\nJ\'ouvre ce ticket suite à notre call à 14h. \r\nSuite aux derniers binaires, nous avons des soucis lorsqu\'on fait communiquer des tableaux de UDT entre un serveur Plant agrégateur et un serveur ligne : le serveur Line crash \r\nAurez vous moyen de tester cela de votre côté? \r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,1,5,NULL,432,3,'2021-12-13 18:43:27','2022-03-28 00:37:02','2021-12-13',100,NULL,NULL,677,1,2,0,'2022-03-28 00:37:02'),(678,2,92,'Dernière version du fichier Entreprise Architect','Bonjour, je ne trouve pas la dernière version du fichier Entreprise Architect.',NULL,NULL,5,1,4,NULL,510,2,'2021-12-16 09:17:28','2022-01-03 13:35:30','2021-12-16',100,NULL,NULL,678,1,2,0,'2022-01-03 13:35:30'),(679,1,70,'Validation livrables','Bonjour,\r\nj\'ai livré des sources le 12/12/2021.\r\nPourriez vous me faire un retour sur sont fonctionnement dans la Cyclomix ?\r\n\r\nCordialement\r\nMichel Condemine\r\n',NULL,NULL,5,424,7,NULL,1,7,'2021-12-16 10:31:37','2022-02-18 15:19:21','2021-12-16',100,NULL,NULL,679,1,2,0,'2022-02-18 15:19:21'),(680,1,43,'ExtensionObject during write operation','ExtensionObject on write operation behave in an ODD way.\r\nI workaround th eodd behavior with the bUpdate param.\r\nSee comment below from UAVariable.cpp line 946\r\nbUpdate = OpcUa_False; // Sound odd. This is a temporary workaround in order to be able to initialize any ExtensionObject from an UAClient\r\n // What is odd ?\r\n // The internal m_pDataValue->m_pInternalDataValue already contains the writen value.\r\n // So there are no need to call m_pDataValue->UpdateValue(aVariant). But why ?\r\n // The same mechanism work fine for any other dataType',NULL,NULL,1,1,6,NULL,1,0,'2021-12-17 06:46:44','2021-12-17 06:46:44','2021-12-17',0,NULL,NULL,680,1,2,0,NULL),(681,1,55,'On en est ou avec ce projet ?','Est ce que tu peux me dire comment choisir entre ce projet et un autre et quel sont les autres ?',NULL,NULL,1,285,4,NULL,1,2,'2021-12-20 10:47:32','2021-12-20 22:03:52','2021-12-20',0,NULL,NULL,681,1,2,0,NULL),(682,1,75,'Erreur de configuration','Bonjour,\r\nvous utilisez un Trigger node dans la configuration du VpiUaClient en mode automatique.\r\nCe node doivent exister au sein du serveur graine. Ce n\'est pas la cas dans vos configuration.\r\nIl faut corriger cette erreur ASAP.\r\nJ\'ai amélioré les messages de trace pour permettre une detection plus facile de cette erreur.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,432,7,NULL,1,1,'2021-12-21 22:09:20','2022-11-04 16:18:19','2021-12-21',100,NULL,NULL,682,1,2,0,'2022-11-04 16:18:19'),(683,3,92,'Logical Model: Object CoolingTowerType','In the Logical Model, the object CoolingTower has to be completed with an expert.',NULL,NULL,5,510,4,NULL,436,3,'2022-01-03 12:53:08','2022-07-04 17:13:20','2022-01-03',100,NULL,NULL,683,1,2,0,'2022-07-04 17:13:20'),(684,3,92,'Logical Model: Object EvaporatorType','In the Logical Model, check with an expert if the object EvaporatorType has to be completed.',NULL,NULL,5,518,4,NULL,436,1,'2022-01-03 12:55:32','2022-07-04 17:12:59','2022-01-03',100,NULL,NULL,684,1,2,0,'2022-07-04 17:12:59'),(685,3,92,'Logical Model: Object CompressorType','In the Logical Model, check with an expert if object CompressorType has to be completed.',NULL,NULL,2,510,4,NULL,436,2,'2022-01-03 13:00:04','2022-07-04 17:12:37','2022-01-03',20,NULL,NULL,685,1,2,0,NULL),(686,3,92,'Logical Model: Object HeatExchangerType','In the Logical Model, check if object HeatExchangerType has to be completed.\r\n\r\nThe Companion Specification OPC 30250 is available on the drive.',NULL,NULL,5,510,4,NULL,436,2,'2022-01-03 13:07:35','2022-07-04 17:03:15','2022-01-03',100,NULL,NULL,686,1,2,0,'2022-07-04 17:03:15'),(687,1,92,'IndirectPowerDataType is a DataType with no attribute','IndirectPowerDataType is a DataType with no attribute. \r\nDo we want to keep it ?\r\nIf yes then we need to comlete it.\r\n\r\nRegards\r\nMichel',NULL,NULL,5,NULL,4,NULL,1,3,'2022-01-03 13:31:50','2022-01-03 15:44:39','2022-01-03',100,NULL,NULL,687,1,2,0,'2022-01-03 15:27:26'),(688,3,75,'Connexion UaClient Plant to Line avec derniers binaires, erreurs LibClient ','Bonjour M. Condemine, \r\n\r\n\r\nNous testons les binaires après avoir fait le nécessaire. \r\nMalheureusement la connexion Plant Line n\'aboutit pas et nous indique ce message dans le log :\r\n\r\n!clipboard-202201051628-ackvb.png!\r\n\r\nNous avons l\'impression que le dossier de Project n\'est pas passé à la LibClient par le VpiUaClient. Le paramétrage du VpiUaClient a évolué? Ou serait-ce plutôt notre configuration de test qui contient des erreurs ? \r\n\r\n\r\nCordialement, \r\nMichael',NULL,NULL,5,1,6,NULL,432,6,'2022-01-05 16:34:47','2022-03-27 23:25:14','2022-01-05',100,NULL,NULL,688,1,2,0,'2022-03-27 23:25:14'),(689,1,92,'Model organization error','Hello,\r\nthere is an error in the model organization.\r\nThe DataType KPIStringValueDataType is declare in the InputOutput Package and used in the SharedPackage.\r\nThe generation dependencies involve that shared Types must be declared in the SharedPacked.\r\nI will fixe this is in the next version of the model.\r\n\r\nRegards\r\nMichel',NULL,NULL,5,1,4,NULL,1,1,'2022-01-06 09:11:25','2022-02-09 15:11:55','2022-01-06',100,NULL,NULL,689,1,2,0,'2022-02-09 15:11:55'),(690,2,92,'File with data address for Mapping','The file with the adresses of the data in PLC is not yet finished.\r\nI need to work on it.\r\nCan you estimate when the mapping will begin and so, when this file will need to be finished?\r\nI need this information to organize my time.\r\nThanks.',NULL,NULL,5,510,4,NULL,510,3,'2022-01-06 11:44:29','2022-02-16 15:32:56','2022-01-06',100,NULL,NULL,690,1,2,0,'2022-02-16 15:32:56'),(691,1,94,'VpiS7 _ Temps de connexion','Bonjour Michel,\r\n\r\nComme convenu voici une configuration pour la connexion à une partie des CN de la ligne Stator\r\n\r\nce Zip contient toute la maquette, ainsi que les LOG de connexion du VPIS7. Environ 3mn pour la connexion à chaque CN (dépend du nombre de node) et les connexion se font en séquence:\r\nInstance VpiS7_1 puis VpiS72 ....\r\n\r\nD\'où un temps de démarrage très long si connexion sur 18 CN\r\n\r\nCordialement,\r\n\r\nLionel Claudel',NULL,NULL,3,NULL,4,NULL,447,2,'2022-01-07 20:41:45','2022-11-04 14:39:38','2022-01-07',100,NULL,NULL,691,1,2,0,'2022-11-04 14:39:38'),(692,1,78,'RequestAGVDataType','Bonjour,\r\nLe DataType RequestAGVDataType est présent deux fois dans le modèle.\r\n!clipboard-202201091433-f1hm7.png!\r\nLequel doit on conserver ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,447,4,NULL,1,3,'2022-01-09 14:34:06','2022-01-20 10:31:44','2022-01-09',0,NULL,NULL,692,1,2,0,'2022-01-20 10:31:44'),(693,1,98,'XiMulator_1.0.2.1_v1.0.3.7','Bonjour,\r\n\r\nVoici les 1ere anomalies rencontrées sur l\'utilisation de XiMulator_1.0.2.1_v1.0.3.4. J\'ai fait un test sur création de Nodeset de type pour sharedClassse / MacroModèle / RotorClasse avec comme objectif d\'instancier la ligne prépastack (j\'ai joint le nouveau modèle V19 où quelques autres erreurs étaient présentent dans RotorClasse) :\r\n\r\n1: Les objets stéréotypés FOLDER sont sous BaseObjectType | Exemple avec Folder_Station:\r\n!clipboard-202201101134-j5gza.png!\r\n!clipboard-202201101134-25ibk.png!\r\n\r\n2: Les objets qui hérites de MachineType dans SharedClasse sont sous BaseObjectType au lieu de MachineType |Exemple avec AxialPressMachineType :\r\n!clipboard-202201101142-uatv1.png!\r\n!clipboard-202201101138-l9dq9.png!\r\n!clipboard-202201101139-e35nn.png!\r\n\r\n\r\n\r\n3: Point mineur: Le Datatype StatusDatatype qui est présent dans la SharedClasse est indiqué en String au lieu de ns=1;1=xxxxx. C\'est le seul dans RotorClasse qui ressort comme cela avec l\'Enum MotorTypeEnum\r\n!clipboard-202201101137-qekuk.png!\r\n',NULL,NULL,5,1,5,NULL,447,8,'2022-01-10 11:43:15','2022-05-14 11:23:00','2022-01-10',100,NULL,NULL,693,1,2,0,'2022-03-19 18:17:44'),(694,1,92,'Last version of the model on Drive','I can\'t see the last version of the entreprise architect file on the drive.\r\nThe file with the changes made this monday.',NULL,NULL,5,1,4,NULL,510,1,'2022-01-11 13:29:15','2022-02-09 15:42:00','2022-01-11',100,NULL,NULL,694,1,2,0,'2022-02-09 15:42:00'),(695,3,75,'Cohabitation PM-LM : Crash LM dans partie Server','Bonjour Michel,\r\n\r\nDepuis notre point de synchro d\'hier, plusieurs choses ont été modifiées dans le VpiLine :\r\n- correction de mauvaises gestions de la Mutex sur SourceObjects, probablement cause d\'utilisation concurrente favorisant les crash dans la méthode de Clean examinée ensemble hier.\r\n- Débraillage complet (return; dès le début) de la méthode de clean (nous étions convenus de provoquer sciemment une fuite pour vérifier si c\'était la purge qui posait problème).\r\n\r\nLe VpiLined.dll résultant est attaché au ticket. Elle gère en outre un écho sur la console à chaque lock et unlock de la mutex sur SourceObjects.\r\n\r\nSuite à ces corrections, le LM est plus stable (plus les plantages observés dès le début ou sur descente des recettes qui descendent à nouveau toutes seules sur démarrage du plant), mais j\'obtiens quand même un plantage au bout de quelques échanges remontants fructueux. La pile d\'appel est hors VpiLine cette fois-ci.\r\n\r\nSont jointes au ticket 2 screenshots :\r\n- Screenshot du VS VpiLine en debug, avec le base de la pile d\'appel\r\n- Screenshot de la console LM au moment du crash. Les opérations applicatives ont toutes été menées à terme (y compris les répercutions du dernier échange avec le PM). Un cycle complet de la thread de transfert to coreserver a même été menée à bien. Le crash semble intervenir hors de toute prise de la mutex sur SourceObjects (donc ni Write, ni travail de la Thread en cours).',NULL,NULL,5,NULL,6,NULL,433,61,'2022-01-11 15:37:28','2022-11-04 16:20:00','2022-01-11',100,NULL,NULL,695,1,2,0,'2022-11-04 16:20:00'),(696,1,95,'Hard codage des blocs Vpi','L\'objectif est de créer de blocs dans le fichier de configuration du Vpi.\r\n','2022-01-28',NULL,5,1,4,NULL,1,2,'2022-01-12 14:03:38','2022-03-07 13:49:35','2022-01-12',100,NULL,NULL,696,1,2,0,'2022-03-07 13:49:35'),(697,1,95,'Script exécuté à fréquence fixe','Invocation de script LUA à une fréquence fixe.\r\nscript : \r\n500() execution toute les 500ms\r\n1000() execution toute les secondes\r\n\r\nTrigger Node : ==> execution d\'un script\r\n\r\n','2022-02-05',NULL,5,1,4,NULL,1,1,'2022-01-12 14:35:48','2022-07-06 17:07:49','2022-01-12',0,NULL,NULL,697,1,2,0,'2022-07-06 17:07:49'),(698,3,95,'Accès TeamViewer Cluses (CETIM)','Id TeamViewer: 114918461\r\nPassword : OPC-UA01\r\n\r\n',NULL,NULL,5,NULL,4,NULL,1,2,'2022-01-12 14:39:27','2022-03-07 13:48:22','2022-01-12',100,NULL,NULL,698,1,2,0,'2022-03-07 13:48:22'),(699,1,95,'Mise en place du systeme hordatage Csv','1 - Horodatage des variables sur le pas de temps de 500 ms dans un Csv\r\n2 - Modification du NodeSet CEA pour mise en place historical Acces sur les variables que l\'on souhaite sauvegarder lors de la démonstration.\r\n\r\nQuestion MG: possibilité de \"lancer\" et \"arreter\" l\'enregistrement des données via un client par exemple ?','2022-02-01',NULL,5,1,4,NULL,496,2,'2022-01-12 17:00:38','2022-07-06 17:07:46','2022-01-12',100,NULL,NULL,699,1,2,0,'2022-07-06 17:07:46'),(700,2,92,'Input/Output declaration/management','How to deal with Input/Output declarations/management for the different equipment concerned?\r\n\r\nThe latest changes made in the Grinder to address this point should be considered as a temporary solution.\r\nWe do need to find a generic solution.',NULL,NULL,5,NULL,4,NULL,436,1,'2022-01-13 16:36:11','2022-02-21 16:37:11','2022-01-13',100,NULL,NULL,700,1,2,0,'2022-02-21 16:37:11'),(701,1,78,'Erreur Modele','Bonjour,\r\nles objets PlantToLine et LineToPlant ne respectent pas les règles de nommage. Il manque le suffixe Type sur la déclaration des classes.\r\nPlantToLineType et LineToPlantType.\r\n\r\nBien cordialement\r\nMichel Condemine',NULL,NULL,5,447,4,NULL,1,1,'2022-01-16 23:33:01','2022-01-17 10:16:13','2022-01-16',100,NULL,NULL,701,1,2,0,'2022-01-17 10:16:13'),(702,3,94,'SessionTimeoutThread et Late situation detected','Bonjour,\r\n\r\nAprès un week-end où les LM sont resté allumé et les PLC éteints: j\'ai constaté ce lundi matin deux choses dans le LOG du server\r\n\r\nun sur un décalage d\'heure : 2022-01-16T18:20:05.140Z SERVER_ERROR GetFirstPublishRequest>m_PublishRequests late situation detected\r\nun sur un timeOut de Session: 2022-01-16T18:21:04.311Z SERVER_ERROR A session is in timeout. It will be deleted in the next loop of the CServerApplication::SessionTimeoutThread puis 2022-01-16T18:25:06.268Z SERVER_ERROR Subscription Id=10107 will be removed for timeout\r\n\r\nFichier Log en pièce jointe.\r\n\r\nPour le décalage d\'heure serait-il possible d\'ajouter dans le LOG le Node en question? afin de pouvoir identifier quel serveur source n\'est pas à la même heure que le serveur cible\r\nPour le TimeOut, je ne comprend pas l\'erreur. Pouvez-vous m\'en dire plus ? Autre point, ce lundi matin, le client UA Expert n\'était plus connecté et il était impossible de relancer la connexion sans extinction du serveur.\r\n\r\nCordialement,\r\n\r\nLionel Claudel',NULL,NULL,5,NULL,4,NULL,447,2,'2022-01-17 10:29:22','2022-11-04 14:24:02','2022-01-17',100,NULL,NULL,702,1,2,0,'2022-11-04 14:24:02'),(703,2,92,'Placement fichier sur redmine','Michel,\r\n\r\nI don\'t see how i can upload a file in redmine. I want to uload the last Logicalmodel.\r\nFor now, i upload it on Drive.\r\n\r\nI attach the file at this request.',NULL,NULL,5,1,4,NULL,510,1,'2022-01-18 09:05:27','2022-01-19 15:54:12','2022-01-18',100,NULL,NULL,703,1,2,0,'2022-01-19 15:54:12'),(704,3,97,'Schneider PLC & OPC-UA compliance','A supplier ask us what Schneider PLC to use for Verkor: Do you confirm M580 PLC is ok.\r\n\r\nMaybe M580 needs to be associated with BMENUA0100 module?\r\nWe found the following reference that seems compatible with several OPC UA features (starting p37):\r\nhttps://download.schneider-electric.com/files?p_enDocType=User+guide&p_File_Name=PHA83350.02.pdf&p_Doc_Ref=PHA83350 \r\n\r\n\r\nWhat do you think?\r\n\r\nRegards,',NULL,NULL,5,NULL,4,NULL,532,5,'2022-01-21 15:50:39','2022-02-21 10:09:58','2022-01-21',100,NULL,NULL,704,1,2,0,'2022-02-21 10:09:58'),(705,1,70,' Validation Livraison 23-1-2022','Bonjour,\r\nJ\'ai pris en compte votre livraison OpenOpcUa_1_0_7_0_SK_22-01-2022.\r\nUne fois compilé (coreServer et ses dépendances, VpiSk et ses dépendances, VpiUaMqttJsonPub et ses dépendances)et lancé sur notre cible, j\'ai l\'erreur suivante:\r\n\r\nThread 14 \"OpenOpcUaCoreSe\" received signal SIGSEGV, Segmentation fault.\r\n[Switching to Thread 0x733e3450 (LWP 1490)]\r\nstrlen () at ../sysdeps/arm/armv6t2/strlen.S:85\r\n85 sfi_breg src, \\\r\n(gdb) bt\r\n#0 strlen () at ../sysdeps/arm/armv6t2/strlen.S:85\r\n#1 0x765eab7c in Vpi_String_StrSize (a_pString=0x76973620)\r\n at /home/user/cyclomix_evo/oopcua_server/VpisSdk/OpenOpcUaVpiLibrary/source/VpiString.cpp:171\r\n#2 0x765eab28 in Vpi_String_StrLen (a_pString=0x76973620)\r\n at /home/user/cyclomix_evo/oopcua_server/VpisSdk/OpenOpcUaVpiLibrary/source/VpiString.cpp:146\r\n#3 0x733ec254 in SKReadValue (hVal=0x769742d0, uiNbToRead=1, \r\n szAliases=0x76973620, ppValues=0x733e2d9c)\r\n at /home/user/cyclomix_evo/oopcua_server/VpisSdk/VpiSk/InternalKrnlApi/sources/InternalKrnlApi.cpp:117\r\n#4 0x7682f9c0 in UASubSystem::CVpiSk::VpiSkThread (arg=0x76973e60)\r\n at /home/user/cyclomix_evo/oopcua_server/VpisSdk/VpiSk/source/VpiSk.cpp:94\r\n#5 0x765e8f40 in InternalThreadMain (a_Thread=0x76973fd8)\r\n at /home/user/cyclomix_evo/oopcua_server/VpisSdk/OpenOpcUaVpiLibrary/source/VpiInternalThread.cpp:143\r\n#6 0x765e8f0e in pthread_start (args=0x76974070)\r\n at /home/user/cyclomix_evo/oopcua_server/VpisSdk/OpenOpcUaVpiLibrary/source/VpiInternalThread.cpp:124\r\n#7 0x76dc65b0 in start_thread (arg=0x0)\r\n at /usr/src/debug/glibc/2.25-r0/git/nptl/pthread_create.c:458\r\n#8 0x76ba10fa in ?? () at ../sysdeps/unix/sysv/linux/arm/clone.S:76\r\n---Type <return> to continue, or q <return> to quit---return\r\n from /lib/libc.so.6\r\nBacktrace stopped: previous frame identical to this frame (corrupt stack?)\r\n(gdb) ',NULL,NULL,5,424,7,141,424,27,'2022-01-24 12:26:37','2022-02-18 15:18:56','2022-01-24',100,NULL,NULL,705,1,2,0,'2022-02-18 15:18:56'),(706,1,70,'Infraction sur l\'utilisation de source OpenOpcUa','Bonjour,\r\n\r\ncomme indiqué sur la page du projet OpenOpcUa et sur le projet dédié à Sames Kremlin au sein du Redmine OpenOpcUa. <pre>Le Fork de la base de code est interdit.\r\n</pre>\r\nOpenOpcUa exige de ses sponsors qu\'ils respectent deux règles :\r\n# La mention au projet OpenOpcUa doit être faite dans les documentations\r\n# Le code du serveur et de ses dépendances ne doit pas être modifié (pas de FORK de la base de code)\r\n\r\nJe constaté que vous ne respectez pas ces deux règles. \r\nPourriez vous faire le necessaire pour corriger cela ?\r\n\r\nBien cordialement\r\nMichel Condemine',NULL,NULL,5,422,5,NULL,1,1,'2022-01-25 10:37:58','2022-01-28 15:58:27','2022-01-25',0,NULL,NULL,706,1,2,0,'2022-01-28 15:58:27'),(707,1,92,'SiOME\'s errors with our Nodeset of types','Hello Michel,\r\n\r\nFYI, when trying to load the latest SharedClasses nodeset file of types with SiOME we’ve got the attached errors.\r\n\r\n\r\nBR,\r\nChris',NULL,NULL,5,1,4,NULL,436,1,'2022-01-25 18:47:06','2022-02-09 15:46:07','2022-01-25',100,NULL,NULL,707,1,2,0,'2022-02-09 15:46:07'),(708,1,78,'une erreur majeur dans le Package LogisticClasses empêche la génération complète.','Bonjour,\r\nune erreur majeur dans le Package LogisticClasses empêche la génération complète.\r\nJ\'ai passé deux jours à chercher une erreur dans le XiMulator alors que l\'erreur venait du fichier Xmi relatif aux Classes Logistiques.\r\nVoila ce que l\'on trouve dans le fichier :\r\n!clipboard-202201262058-pfdwz.png!\r\nContentDataType n\'est pas un type natif JAVA. Je ne sais pas d\'où vient cette erreur. Pour corriger il suffit de sélectionner le ContentDataType depuis la sharedClasses.\r\nLe résultat est le suivant :\r\n!clipboard-202201262101-bzflz.png!\r\n\r\nCette erreur a pu se propager aux types suivants :\r\n!clipboard-202201262103-r4a6z.png!\r\nIls sont tous déclarés de manière incorrecte.\r\nActions :\r\n# Vérifier le modèle Logistique\r\n# Comprendre l\'origine de cette erreur de modélisation. Comment est arrivé ?\r\n\r\nCordialement\r\nMichel Condemine\r\n',NULL,NULL,5,447,4,NULL,1,3,'2022-01-26 21:06:05','2022-05-14 11:02:13','2022-01-26',100,NULL,NULL,708,1,2,0,'2022-05-14 11:02:13'),(709,3,92,'Question #1 raised during the Model presentation','Here is a question raised during the Logical Model presentation that could make sense to address:\r\n\r\nDoes the model take into consideration the PIDs in cascade?',NULL,NULL,5,510,4,NULL,436,1,'2022-01-27 16:46:02','2022-01-31 15:16:37','2022-01-27',100,NULL,NULL,709,1,2,0,'2022-01-31 15:16:37'),(710,3,92,'Question #2 raised during Model presentation','Here is a question raised during the Logical Model presentation that could make sense to address:\r\n\r\nDoes the model take into consideration the vibration sensors from Asystom?',NULL,NULL,5,510,4,NULL,436,1,'2022-01-27 16:47:10','2022-01-31 15:22:07','2022-01-27',100,NULL,NULL,710,1,2,0,'2022-01-31 15:22:07'),(711,3,92,'Question #3 raised during Model presentation','Here is a question raised during the Logical Model presentation that could make sense to address:\r\n\r\nHow to take into consideration a flowmeter replacement?\r\n',NULL,NULL,5,1,4,NULL,436,3,'2022-01-27 16:48:57','2022-02-09 15:49:31','2022-01-27',100,NULL,NULL,711,1,2,0,'2022-02-09 15:49:31'),(712,3,92,'Point raised during Model presentation','Here is a remark raised during the Logical Model presentation that should be addressed:\r\n\r\nAdd the Line consumption in the model (in kwh/ton).',NULL,NULL,5,510,4,NULL,436,1,'2022-01-27 16:50:25','2022-01-31 15:57:01','2022-01-27',100,NULL,NULL,712,1,2,0,'2022-01-31 15:57:01'),(713,3,92,'Question #4 raised during Model presentation','Here is a question raised during the Logical Model presentation that could make sense to address:\r\n\r\nHow do we add calculation (for instance a heat balance) in the model?',NULL,NULL,5,1,4,NULL,436,2,'2022-01-27 16:51:38','2022-01-31 16:02:54','2022-01-27',100,NULL,NULL,713,1,2,0,'2022-01-31 16:02:54'),(714,3,92,'Question #5 raised during Model presentation','Here is a question raised during the Logical Model presentation that could make sense to address:\r\n\r\nWhat would be the impact of the calculation (e.g: real time calculations) on the OOUA server?',NULL,NULL,5,1,4,NULL,436,1,'2022-01-27 16:52:29','2022-01-31 16:08:07','2022-01-27',100,NULL,NULL,714,1,2,0,'2022-01-31 16:08:07'),(715,1,70,'libVpiUaMqttJsonPub Json Format','Bonjour,\r\nAprès analyse des premières données publiées par le publisher, j\'ai constaté certains problèmes avec le format JSON (en rouge dans les captures ci-dessous).\r\n\r\n- ua-metadata: \r\n1/Il manque les deux caractères suivant au tout début du message: < {\" >. Actuellement le début du message est : MessageId\":\"ad35..... il faudrait plutôt avoir : {\"MessageId\":\"ad35.....\r\n!clipboard-202201311615-ffkpm.png!\r\n\r\n- ua-data : \r\n1/ De même que pour ua-metadata, Il manque les deux caractères suivant au tout début du message: < {\" >.\r\n2/ Il y\'a un retour à la ligne à la fin du timestamp (après le \"Z\").\r\n!clipboard-202201311634-cminb.png!\r\n\r\n',NULL,NULL,3,1,6,NULL,424,2,'2022-01-31 16:38:35','2022-02-04 09:17:31','2022-01-31',100,NULL,NULL,715,1,2,0,'2022-02-02 10:46:54'),(716,1,95,'Remplir fichier XLSX','Bonjour,\r\nle fichier 2022-01-26-Variables Cellule OPCUA.xlsx doit etre renseigné.\r\n\r\nCordialement\r\nMichel',NULL,NULL,5,496,7,NULL,1,2,'2022-02-01 09:00:04','2022-02-14 14:35:50','2022-02-01',100,NULL,NULL,716,1,2,0,'2022-02-14 14:35:50'),(717,1,75,'Visibilité des méthodes client UaExpert','Bonjour M. Condemine, \r\n\r\n\r\nAvec les binaires du 30 janvier, nous n\'avons plus visibilité sur les input et output arguments des méthodes avec le client UaExpert. \r\nOn retrouve se problème sur les méthodes appartenant au serveur et les méthodes du projet. \r\n\r\nCordialement, \r\n\r\nMichael Ejigu',NULL,NULL,5,NULL,4,NULL,432,4,'2022-02-01 17:16:05','2022-11-04 16:20:27','2022-02-01',100,NULL,NULL,717,1,2,0,'2022-11-04 16:20:27'),(718,3,92,'Note missing in EquipmentBaseType class','There is no comment for the \"Interfaces\" attribute in the EquipmentBaseType class.',NULL,NULL,5,510,4,NULL,436,1,'2022-02-02 11:28:20','2022-02-09 15:50:32','2022-02-02',100,NULL,NULL,718,1,2,0,'2022-02-09 15:50:32'),(719,1,98,'Model generation errors with XiMulator v1.0.3.7','Hello Michel,\r\n\r\nWhen trying to generate the model with the latest version of XiMulator (v1.0.3.7) I get the following Warnings and Errors:\r\n\r\n!Model-Generation-SharedClasses-Warnings.JPG!\r\n\r\n!Model-Generation-InputOutput-Warnings.JPG!\r\n\r\n!Model-Generation-InputOutput-Errors.JPG!\r\n\r\nFYI because of the errors for InputOutput I didn\'t try to generate the nodeset file for Equipments.\r\n\r\nBR,\r\nChris',NULL,NULL,5,1,4,NULL,436,5,'2022-02-02 16:31:11','2022-05-14 11:21:16','2022-02-02',100,NULL,NULL,719,1,2,0,'2022-03-28 16:44:33'),(720,3,95,'Exemple Enumération et DEMO LUA','Bonjour Michel,\r\n\r\nSerait-il possible de me faire parvenir un bout de NODESET présentant la structure d\'une énumération pour que je compare à la structure CEA (NODSET de type)\r\nEgalement, serait-il possible de me partager la \"DEMO LUA\" pour regarder les différentes possibilités en plus de ce que l\'on a mis en place sur la cellule.\r\n\r\nMerci d\'avance,\r\n\r\nMarc\r\n','2022-02-08',NULL,5,1,4,NULL,496,3,'2022-02-03 10:47:18','2022-03-07 13:49:53','2022-02-03',100,NULL,NULL,720,1,2,0,'2022-03-07 13:49:53'),(721,1,56,'PROBLEME CREATION BASE DE DONNEES','Bonjour Michel,\r\n\r\nComme convenu voici le dossier comprenant la conf qui pose problème (fichier: OLW_FR23_2_REV1202.xml)\r\n\r\nCordialement.\r\n\r\nNorbert\r\n',NULL,NULL,1,1,5,NULL,328,0,'2022-02-03 19:16:58','2022-02-03 19:16:58','2022-02-03',0,NULL,NULL,721,1,2,0,NULL),(722,1,75,'Testeur bloqué - Need help','Bonsoir,\r\nj\'ai fait quelques tests et très rapidement le testeur est bloqué.\r\nLe serveur ne plante pas mais impossible de faire évoluer les valeurs dans ERP_Of_List_To_Do.\r\nIl contient 7 ERP_OF. Je peux ajouter des ERP_OF en appelant CopyFilePM\r\n!clipboard-202202042326-tcxj8.png!\r\nLe premier contient 108 part_produce mais n\'evolue plus quand j\'execute le script LaunchTestStepSequential.\r\nL\'invite de commande affiche ce genre d\'erreur:\r\n!clipboard-202202042335-q0l2t.png!\r\n\r\nNotez que les log dans un fichier bien plus pratique.\r\n\r\nCordialement\r\nMichel\r\n',NULL,NULL,5,432,5,NULL,1,7,'2022-02-04 23:37:15','2022-11-04 16:21:09','2022-02-04',100,NULL,NULL,722,1,2,0,'2022-11-04 16:21:09'),(723,1,92,'Model in Entreprise Architect','TemperatureMeterType is placed in SharedPackage. It\'s the only one of all the \"MeterType\". The other are placed in equipments',NULL,NULL,5,NULL,4,NULL,510,1,'2022-02-08 08:48:30','2022-02-09 16:07:31','2022-02-08',100,NULL,NULL,723,1,2,0,'2022-02-09 16:07:31'),(724,3,98,'Modèle JNEM OPC UA','Bonjour,\r\n\r\nDans le cadre du développement du modèle JNEM OPC UA, j\'ai quelques questions concernant Entreprise Architecte :\r\n\r\n- Comment mettre des objets avec un stéréotype autre que \"BaseObjectType\" ou \"FunctionnalGroupType\"? J\'aimerais créer un objet \"JNEMType\" pour mettre tous les objets dédiés au JNEM avec ce stéréotype.\r\n\r\n- Comment mettre des objets comme \"Optional\" ?\r\n\r\n- Comment fonctionne le stéréotype \"GeneratesEvent\" ? \r\n\r\n- Comment mettre un attribut avec comme type \"File\" dans EA ?\r\n\r\n- J\'arrive à créer des stéréotypes faisant référence au CS DI mais pas avec le CS Pump. Une fois le modèle construit avec Ximulator je n\'ai aucun attribut des objets ayant pour stéréotype un objet du CS Pump.\r\n\r\n- Comment gérer les différentes versions d\'un modèle OPC UA ?\r\n\r\nCordialement,\r\nMatthieu Gatine',NULL,NULL,2,1,5,NULL,492,2,'2022-02-08 10:07:50','2022-05-14 11:19:14','2022-02-08',0,NULL,NULL,724,1,2,0,NULL),(725,2,95,'Mise à jour LUA = Node Fixed Rate','Bonjour,\r\n\r\nSuite à la discussion de ce jour,\r\ndemande de modification pour intégration d\'un node permettant de modifier la vitesse d\'execution de la fonction FixedRate du script lua afin de passer de 2 secondes à 500ms.\r\n\r\n\r\nCdt,\r\n\r\nMarc','2022-02-16',NULL,5,1,4,NULL,496,3,'2022-02-09 10:58:02','2022-03-07 13:48:55','2022-02-09',0,NULL,NULL,725,1,2,0,'2022-03-07 13:48:55'),(726,3,95,'Demande Demo VPI OPCUA','Demande :\r\n\r\nVPI OPCUA pour interrogation serveur OPCUA sur un équipement en mode MANU','2022-02-16',NULL,5,1,7,NULL,496,2,'2022-02-09 10:58:52','2022-03-27 23:22:52','2022-02-09',100,NULL,NULL,726,1,2,0,'2022-03-27 23:22:52'),(727,1,75,'StructuresEmotors','Bonsoir,\r\nil y a de nombreux warning graves dans StructuresEmotors (117 au totals). Ces warning pourraient contribuer aux problèmes que nous rencontrons.\r\nun exemple :\r\n<pre>\r\ncsubassemblypart.cpp(163): warning C6386: Dépassement de mémoire tampon lors de l\'écriture sur \'*data+*data_Pointer\' : la taille accessible en écriture est \'*length\' octets, mais \'4\' octets sont peut-être écrits.\r\n</pre>\r\nMerci de supprimer tous ces warning.\r\nPar ailleurs quand vous recopiez du code OOUA merci de respecter le droit d\'auteur.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,NULL,7,NULL,1,2,'2022-02-09 20:31:34','2022-11-04 16:21:51','2022-02-09',100,NULL,NULL,727,1,2,0,'2022-11-04 16:21:51'),(728,1,75,'Warning VpiPLM','Bonjour,\r\nJe viens de regénérer le VpiPlm. Il contient de nombreux warning qu\'il faudra nettoyer. En particulier les warning C4238. \r\nCordialement\r\nMichel Condemine',NULL,NULL,5,NULL,7,NULL,1,2,'2022-02-10 11:12:30','2022-11-04 16:22:09','2022-02-10',100,NULL,NULL,728,1,2,0,'2022-11-04 16:22:09'),(729,1,75,'Warning VpiErp','Bonjour,\r\nJe viens de regénérer le VpiErp. Comme les autres Vpi. Il contient de nombreux warning qu\'il faudra nettoyer. En particulier les warning C4238.\r\nCordialement\r\nMichel Condemine',NULL,NULL,2,432,4,NULL,1,2,'2022-02-10 11:21:45','2022-11-04 16:22:36','2022-02-10',50,NULL,NULL,729,1,2,0,NULL),(730,1,97,'CPC Meaning','CPI seems to be an acronym. What is stand for ?',NULL,NULL,5,531,4,NULL,1,2,'2022-02-10 16:09:10','2022-03-08 15:09:03','2022-02-10',100,NULL,NULL,730,1,2,0,'2022-03-08 15:09:03'),(731,1,97,'Information about roll','Need detail related to cooper and aluminium roll.\r\nWhat is relevant for the process',NULL,NULL,5,531,4,NULL,1,2,'2022-02-10 16:15:13','2022-02-21 10:16:22','2022-02-10',100,NULL,NULL,731,1,2,0,'2022-02-21 10:16:22'),(732,2,47,'Add option to save project folder and log folder relatively','Create an Option entry in the detailView allowing to select :\r\n* save project folder relatively/absolutely\r\n* log folder relatively/absolutely',NULL,NULL,2,NULL,4,NULL,1,1,'2022-02-12 11:42:23','2022-02-13 10:51:59','2022-02-12',100,NULL,NULL,732,1,2,0,NULL),(733,2,47,'Project creation option','When we create the project allow to automatically creates \r\nProject and Logs folder to place project file and logs in it.\r\nThis option selection should appears in the create project wizard.',NULL,NULL,3,NULL,4,NULL,1,1,'2022-02-12 11:44:19','2022-02-13 10:51:26','2022-02-12',100,NULL,NULL,733,1,2,0,'2022-02-13 10:51:26'),(734,2,47,'Search function ','Add a search NodeId.\r\nI allows to search a NodeId in the whole addressSpace',NULL,NULL,1,NULL,4,NULL,1,0,'2022-02-13 10:48:48','2022-02-13 10:48:48','2022-02-13',0,NULL,NULL,734,1,2,0,NULL),(735,1,94,'Problème critique','Bonjour,\r\nEn travaillant sur le problème de stabilité de l\'installation je suis tombé sur un problème critique.\r\nLe problème est le suivant :\r\nIl y a une discordance entre :\r\n# l\'encodeur réalisé par INETUM qui est conforme à la structure des objets déclarés dans le dictionnaire de données du serveur.\r\n# Les dataTypes dans le modèle disponible dans le fichier UML \r\n\r\nPar exemple pour ERP_OF_Datatype.\r\nCi dessous le type visible par un client issu du dictionnaire de données\r\n!clipboard-202202131110-dmhlh.png!\r\nCi-dessous la déclaration du même objet ErpOf dans le modèle UML\r\n!clipboard-202202131114-xrqii.png!\r\n\r\nOu est la vérité ?\r\nCordialement\r\nMichel Condemine\r\n',NULL,NULL,5,NULL,7,NULL,1,3,'2022-02-13 11:15:22','2022-05-20 16:07:25','2022-02-13',100,NULL,NULL,735,1,2,0,'2022-05-20 16:07:25'),(736,3,92,'Update Excel file with Rack/Slot numbers','Need to update with PLC\'s Rack/Slot numbers the Excel file \"OPC UA Modeling – Equipments Instrumentation & data mapping.xlsx” that will be used for the mapping.',NULL,NULL,5,510,4,NULL,436,1,'2022-02-14 11:22:20','2022-02-16 15:35:20','2022-02-14',100,NULL,NULL,736,1,2,0,'2022-02-16 15:35:20'),(737,3,92,'Update Excel file with EquipmentBaseType’s attributes','Update with attributes inherited from EquipmentBaseType the Excel file “OPC UA Modeling – Equipments Instrumentation & data mapping.xlsx” that will be used for mapping.',NULL,NULL,5,510,4,NULL,436,2,'2022-02-14 11:34:27','2022-07-04 17:02:19','2022-02-14',100,NULL,NULL,737,1,2,0,'2022-07-04 17:02:19'),(738,2,92,'Add attributes to PlateDataType','Can we add some attributes to PlateDataType.\r\nLike caracteristicDataType(with multiplicity) (with name(string) and \"Value\"(string)).\r\nSo we can add some caractéristics of the equipment caracteristics see on the plate (like Nominal Speed, nominal KW, in & out speed ratio, ...)',NULL,NULL,5,436,4,NULL,510,2,'2022-02-14 14:56:32','2022-02-16 15:36:16','2022-02-14',100,NULL,NULL,738,1,2,0,'2022-02-16 15:36:16'),(739,3,95,'Get Value LUA ','Question :\r\n\r\nInitialGrafcetStep=this:GetUAValue(\"ns=9;i=6020\",13);\r\n\r\nQue signifie le 13 dans la fonction getValue ?\r\n\r\nMarc\r\n',NULL,NULL,5,1,4,NULL,496,1,'2022-02-14 15:42:31','2022-02-16 14:07:45','2022-02-14',100,NULL,NULL,739,1,2,0,'2022-02-16 14:07:45'),(740,1,97,'Roll defect handling ','How to handle defect on rolls ?\r\n',NULL,NULL,5,NULL,4,NULL,1,2,'2022-02-15 15:45:12','2022-03-08 15:08:49','2022-02-15',100,NULL,NULL,740,1,2,0,'2022-03-08 15:08:49'),(741,1,97,'VirtualMeter','Thin about virtual',NULL,NULL,2,NULL,4,NULL,1,1,'2022-02-15 15:58:42','2022-02-21 10:23:50','2022-02-15',20,NULL,NULL,741,1,2,0,NULL),(742,1,97,'Dryer','Dryer is split in 5 zones.\r\nIS each zone equivalent ?',NULL,NULL,5,533,4,NULL,1,3,'2022-02-15 16:38:06','2022-03-08 15:04:15','2022-02-15',100,NULL,NULL,742,1,2,0,'2022-03-08 15:04:15'),(743,1,97,'Need to work on Filter','Prepare a session for Filter object.\r\nStudy Air Protect solution',NULL,NULL,5,NULL,4,NULL,1,1,'2022-02-15 16:47:45','2022-03-08 14:59:36','2022-02-15',100,NULL,NULL,743,1,2,0,'2022-03-08 14:59:36'),(744,2,92,'Create methods','In the logical model the method \"SetPid\" has been created for the Pump.\r\n\r\nCreate additional methods for:\r\n• Motors\r\n• Drive\r\n• Valve\r\n• Contactor\r\n ',NULL,NULL,5,1,4,NULL,436,1,'2022-02-16 14:16:43','2022-02-21 16:35:40','2022-02-16',100,NULL,NULL,744,1,2,0,'2022-02-21 16:35:40'),(745,1,47,'Difficultés à l\'instanciation (pour le modèle Imerys)','Lors du démarrage de l\'instanciation manuelle du modèle d\'Imérys, nous rencontrons des difficultés/problèmes pour instancier les objets \"LixhePlant\" (de type FactoryType - FolderType) et \"Carbital3\" (de type DepartmentType - BaseObjectType).\r\n\r\nPour information :\r\nns = 1 ; i = 3379 = LixhePlant mais BrowseName = \"New UA Object\" dans le fichier d\'instances.\r\n\r\nns = 2 ; i = 541 = DepartmentType\r\nns = 2 ; i = 804 = Department\r\n ',NULL,NULL,2,1,4,NULL,436,2,'2022-02-17 09:10:33','2022-02-17 10:31:13','2022-02-17',0,NULL,NULL,745,1,2,0,NULL),(746,1,98,'Problèmes à la génération du modèle Imerys','Lors de la génération du modèle Imerys V1.0.5 via XiMulator 1.0.3.7 nous constatons les problèmes suivants :\r\n\r\n- Alias \"Range\" généré avec un index i = 2350 au lieu de i = 884.\r\n- inconsistance/erreur remontée par SiOME sur \"State\" ou \"StateOnOffEnum\" (i = 14647 dans le fichier nodeset de type unique Opc.Ua.NodeSet2.FullModel.xml).\r\n- non prise en compte des méthodes créées dans le modèle (absence dans le fichier nodeset de type unique Opc.Ua.NodeSet2.FullModel.xml).\r\n\r\nA noter que plusieurs Warnings sont également créés lors de la génération.',NULL,NULL,5,1,4,NULL,436,3,'2022-02-17 09:28:46','2022-03-27 21:29:27','2022-02-17',100,NULL,NULL,746,1,2,0,'2022-03-27 21:29:27'),(747,1,78,'TypeMismatch des instance Counter LM et Counter PLC','Bonjour, \r\n\r\nConcernant d\'anomalie vu sur la ligne Prepastack et après avoir appliqué des corrections de type \'UInt32\' J\'ai trouvé d\'autres défaut de \'TypeMismatch\' côté Serveur sur le fichier \'PrePastack.log\'. Je pense qu\'il n\'aime pas les nouveaux modifs, mais ce message n\'est pas toujours répétitif et le serveur est stable. Est-ce qu\'il pourrait être un point bloquant plus tard ?\r\n\r\nJe vous partage ici le fichier PrePastack.log quand même.\r\n\r\nCordialement,\r\nArash',NULL,NULL,3,NULL,4,NULL,489,1,'2022-02-17 12:12:21','2022-11-04 14:40:33','2022-02-17',100,NULL,NULL,747,1,2,0,'2022-11-04 14:40:33'),(748,1,75,'Essais sur la maquette TesteurEmotors fournie','Bonjour M. Condemine, \r\n\r\n\r\nJe fais tourner la maquette TesteurEmotors sur mon PC ainsi qu\'une VM. \r\nAu bout de quelques dizaine de minutes j\'ai eu un crash sur la VM. \r\n\r\nCi joint les dossiers de log ainsi que le mindump que j\'ai pu avoir. \r\n\r\nLes logs serveur indiquent des problèmes liés à des numéros de séquences, le VpiTesteur lui n\'est pas du tout verbose\r\n\r\n',NULL,NULL,5,NULL,4,NULL,432,1,'2022-02-17 18:33:19','2022-11-04 16:23:03','2022-02-17',100,NULL,NULL,748,1,2,0,'2022-11-04 16:23:03'),(749,1,70,'libVpiUaMqttJsonPub SSL_Read failed','Bonjour M. Condemine,\r\nJ\'ai testé la livraison du 18.02.2022.\r\nle format json est OK pour moi. \r\nMais il reste un cas où le publisher démarre, se connecte au broker puis s\'arrête. ci-joint le log de ce cas.\r\n\r\nBien cordialement,\r\nMaycko LOUIS',NULL,NULL,5,1,5,NULL,424,2,'2022-02-18 14:51:22','2022-03-24 10:22:52','2022-02-18',100,NULL,NULL,749,1,2,0,'2022-03-24 10:22:52'),(750,1,97,'VaccumDryerType','The model contains the following object dryer related :\r\n!clipboard-202202211039-bd2oo.png!\r\nWe don\'t understand the purpose of the VaccumDryer ?\r\nCan you explain ?\r\n',NULL,NULL,5,533,4,NULL,1,2,'2022-02-21 10:39:52','2022-03-08 14:44:17','2022-02-21',100,NULL,NULL,750,1,2,0,'2022-03-08 14:44:17'),(751,1,97,'PID Control object','Consider the creation of a PID control object',NULL,NULL,1,NULL,4,NULL,1,0,'2022-02-21 18:36:39','2022-02-21 18:36:39','2022-02-21',0,NULL,NULL,751,1,2,0,NULL),(752,3,92,'Methods- How to manage mapping','How to manage mapping for methods \r\n Method Start = bit Start in PLC?',NULL,NULL,5,1,4,NULL,510,1,'2022-02-23 15:33:38','2022-03-28 16:42:14','2022-02-23',100,NULL,NULL,752,1,2,0,'2022-03-28 16:42:14'),(753,1,97,'Ceramic quesiton','Bonjour,\r\nHow the Ceramic is handled in the process do you mixed kaolin and feldspath or do you recipe an already mixed slurry ?\r\n\r\nRegards\r\nMichel Condemine',NULL,NULL,1,533,5,NULL,1,1,'2022-02-23 15:47:34','2022-02-24 10:55:46','2022-02-23',0,NULL,NULL,753,1,2,0,NULL),(754,1,98,'Ximulator - Problème URI','Bonjour M. Condemine,\r\n\r\nPour faire suite à notre point sur le modèle OPC UA JNEM, nous avons relevé un problème avec Ximulator pour récupérer les URI.\r\n\r\nCordialement,\r\n\r\nMatthieu GATINE','2022-03-11',NULL,1,492,5,NULL,492,1,'2022-03-01 15:16:10','2022-05-14 11:00:51','2022-03-01',0,NULL,NULL,754,1,2,0,NULL),(756,1,75,'Méthodes Add dans la nouvelle version structuresEmotors','Bonjour Michel,\r\n\r\nNous migrons dans VpiLine les appels de nos anciennes méthodes \"AddCloneTo\" vers les nouvelles méthodes Add.\r\n\r\nPour mémoire, les anciennes méthodes AddCloneTo permettaient de faire un clone instancié par structureseMotors qui était mis dans le push_back à la place du \"patron\" original pour permettre que cet objet (qui sera détruit plus tard par structuresemotors dans le destructeur du parent) soit un objet instancié par structuresemotors et pas par une autre DLL (la destruction de l\'objet patron étant assurée par l\'appelant immédiatement après l\'appel au AddCloneTo). Ces méthodes ne géraient pas d\'exclusion.\r\n\r\nDans les nouvelles méthodes Add, la donnée est gérée de manière sécurisée (contrôle de validité + gestion d\'exclusion) mais c\'est l\'objet transmis par l\'appelant (donc instancié par lui) qui est mis dans le push_back. \r\n\r\nEst-ce que ce fonctionnement est bien celui que vous préconisez ? (en s\'appuyant sur l\'exclusion et les contrôles supplémentaires qui garantissent la sécurité de la donnée?) ou faut-il faire en sorte qu\'une ré-instanciation (s\'appuyant sur les constructeurs pas copie) soit assurée quand l\'appel vient de \"l\'extérieur\" (développement d\'une seconde méthode de Add reprenant la trame de la première mais dédiée aux appels par le SDK et réalisant en plus une ré-instanciation? une autre solution?).',NULL,NULL,5,1,4,NULL,1,1,'2022-03-03 19:06:37','2022-03-28 00:34:58','2022-03-02',100,NULL,NULL,756,1,2,0,'2022-03-28 00:34:58'),(757,1,100,'Installation de la CRT','Bonjour,\r\npour installer la CRT veuillez utiliser le setup Microsoft.\r\nIl n\'est pas pertinent de copier les DLLs une à une.\r\nJ\'espère que ce type de procédure ne sera pas enseigné aux clients.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,432,4,NULL,1,6,'2022-03-08 12:04:37','2022-10-25 10:31:28','2022-03-08',100,NULL,NULL,757,1,2,0,'2022-10-25 10:31:28'),(758,3,98,'Ajouter un identifiant à un stéréotype dans Entreprise Architect','Bonjour M. Condemine,\r\n\r\nJe cherche à ajouter un identifiant à un stéréotype pour qu\'un attribut puisse faire référence à un \"GeneratesEvent\" de type \"LimitAlarmType\" (i =2955). J\'ai essayé d\'ajouter une \"Tagged Value\" dans le modèle de stéréotype OPC UA mais cela ne fonctionne pas.\r\n\r\nQue faut-il faire pour que Ximulator reconnaisse des valeurs spécifiques pour un stéréotype.\r\n\r\nMerci d\'avance,\r\nBien cordialement,\r\nMatthieu Gatine',NULL,NULL,5,1,5,NULL,492,3,'2022-03-08 13:58:04','2022-05-14 11:23:37','2022-03-08',100,NULL,NULL,758,1,2,0,'2022-05-14 10:59:12'),(759,3,100,'Questions messages de logs VpiS7 et non remontée de certaines données','Bonjour M. Condemine, \r\n\r\n\r\nNous rencontrons un phénomène étonnant en effectuant des tests de récupération de données sur le VpiS7\r\n\r\nEn vérifiant le mapping variable par variable, on arrive bien à collecter toute données. Mais dépendant de quelles variables sont mappées par le VpiS7, dans certains ca, on ne peut pas récupérer des données. \r\n\r\nOn obtient dans ces scénarios deux types de messages de logs \r\n\r\n1 ) UpdateBlockIfNeeded - Update Start Address - Area: 1 dbNumber: 53 OldAdress: 66 newAdress: 26\r\n\r\n2) UpdateSourceObject>Configuration error BlockStart=cbc0001a Address=0x00006\r\n\r\n\r\nQuelle est la signification de ces deux messages de logs ? \r\n\r\nNous essayons en parallèle d\'effectuer une analyse Wireshark \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\n\r\n',NULL,NULL,5,1,4,NULL,432,8,'2022-03-10 09:43:08','2022-11-04 16:24:01','2022-03-10',100,NULL,NULL,759,1,2,0,'2022-11-04 16:24:01'),(760,3,100,'Questions sur VpiS7','Bonjour M . Condemine, \r\n\r\nNous avons 2 questions sur le VpiSS7. \r\n\r\n\r\n1) Par expérience le VpiUaClient ne supportait pas l\'utilisation de la même adresse dans le fichier de mapping (2 variables mappées vers la même variable côté serveur Seed). \r\nEst ce que le vpiS7 le supporte ? Nous rencontrons ce cas chez Imerys. En testant avec le simulateur, ça à l\'air de fonctionner mais nous souhaitons nous en assurer avant d\'activer le mapping pour les variables qui sont dans ce cas. \r\n\r\n\r\n2) Pour certaines variables, le type de la donnée n\'est pas le même au niveau du serveur OOUA et au niveau de l\'automates (C\'est le cas pour toutes les enums dans l\'Address Space mappés vers les automates). \r\n\r\nEst-ce que vous serez d\'accord pour effectuer certains types de conversions ? (Enum à Booléen, Enum à Int16). \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\n\r\n',NULL,NULL,5,1,4,NULL,432,2,'2022-03-10 09:49:48','2022-03-28 00:49:09','2022-03-10',100,NULL,NULL,760,1,2,0,'2022-03-28 00:49:09'),(761,1,94,'Plantage du serveur OpenOpcUa ','Bonjour,\r\n\r\nOn a ajouté quatre nouveaux nodes (Float) avec l\'option de historisation sur le nodeset des instance de ligne Rotor (A chaque changement d\'état) . Malgré que la traça d\'archivage se trouve dans la BDD OpenOPCUa, le serveur plante dès qu\'on s\'abonne à l\'une des ces variable dans l\'onglet de \"history trend view de UAExpert\".\r\n',NULL,NULL,5,489,7,NULL,489,15,'2022-03-14 14:33:21','2022-11-04 14:20:04','2022-03-14',100,NULL,NULL,761,1,2,0,'2022-11-04 14:20:04'),(762,1,92,'Add Attributes in DepartementType ','Add attributes \"equipments : EquipmentBaseType[0...*] in departmentType\r\n Inputs : InputType\r\n Outputs : OutputType',NULL,NULL,5,510,4,NULL,510,1,'2022-03-15 16:13:47','2022-03-28 16:36:12','2022-03-15',100,NULL,NULL,762,1,2,0,'2022-03-28 16:36:12'),(763,3,92,'Confirm SolidType Naming','A discussion needed with Imerys colleagues regarding the naming of SolidType object.\r\nShould it be confirmed? Or do we need to rename it (like for instance RockType)?\r\n\r\nSimilarly current naming of \"InputSolid\" attribute of \"InputType\" object and \"OutputSolid\" attribute of \"OutputType\" object have to be confirmed (or changed). ',NULL,NULL,5,518,4,NULL,436,1,'2022-03-16 16:41:54','2022-07-04 17:01:38','2022-03-16',100,NULL,NULL,763,1,2,0,'2022-07-04 17:01:38'),(764,3,100,'Logs liés au crash du 16/03 11AM (problème de connexion mqtt + souscription sur variables de datatype Range)','Bonjour, \r\n\r\nCi joint les logs au moment du crash. \r\nLe crash semble lié à un problème d\'initialisation des variables de datatype Range (indiqués dans logs serveur). \r\nPour le moment ces variables ont été commenté au niveau de la configuration ( 4 variables par Grinder)\r\n\r\nLes logs MQTT indiquent aussi un problème de connexion qui n\'est pas ré-apparu au redémarrage du serveur. \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\nInetum',NULL,NULL,2,1,4,NULL,432,19,'2022-03-17 17:00:51','2022-03-25 18:08:14','2022-03-17',100,NULL,NULL,764,1,2,0,'2022-03-19 23:00:10'),(765,1,92,'Manage attribute DriveType in equipments','Drive [0...1] : DriveType',NULL,NULL,5,NULL,4,NULL,510,2,'2022-03-21 13:19:25','2022-04-21 17:15:23','2022-03-21',100,NULL,NULL,765,1,2,0,'2022-04-21 17:15:23'),(766,1,92,'Attributes \"information\" update','How to manage \"informations\" update (e.g.: Supplier, maintenance inf...)',NULL,NULL,5,NULL,4,NULL,510,2,'2022-03-21 14:13:08','2022-07-04 17:00:40','2022-03-21',100,NULL,NULL,766,1,2,0,'2022-07-04 17:00:40'),(767,1,47,'Initialisation de valeur via fichier csv ConfigManager (Enums et DateTime)','Bonjour, \r\n\r\nNous souhaitons importer des valeurs de type enums et de type date time avec la fonctionnalité import de valeur de ConfigManager\r\n \r\nPour les Datetime, le format choisi ensemble : YYYY-MM-DD«T»HH:mm:SS«Z»\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n',NULL,NULL,2,1,4,NULL,432,1,'2022-03-22 10:01:23','2022-03-28 00:47:40','2022-03-22',0,NULL,NULL,767,1,2,0,NULL),(768,2,47,'Instanciation de variables avec CSV ( UDT de type tableau vide + valeurs par défaut à enlever )','Bonjour, \r\n\r\nEn terme d\'instanciation de variable : \r\n\r\nA) Nous ne pouvons pas instancier des tableaux de UDT vides. Nous proposons de remplacer la colonne ArraySize par deux colonnes ValueRank (qui peut être égal à -1 pour les scalaire) et ArrayDimensions. \r\n\r\nB) Nous proposons que ConfigManager ne mette plus de valeur par défaut lors de l\'instanciation de valeurs. Cela évitera de devoir enlever les valeurs par défauts pour les variables mappées avec des PLC. \r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,2,1,4,NULL,432,1,'2022-03-22 10:07:01','2022-03-28 00:46:48','2022-03-22',0,NULL,NULL,768,1,2,0,NULL),(769,2,47,'Instanciation de variables Possibilité de préciser le parent avec son nodeId','Bonjour\r\n\r\nNous rencontrons des cas où une variables appelée Location peut avoir une variable fille qui s\'appelle également Location qui lui aussi a variables filles. \r\n\r\nPour ce cas nous proposons de pouvoir préciser la colonne parent en tant que NodeId en plus qu\'en tant de BrowseName\r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,2,1,4,NULL,432,1,'2022-03-22 10:12:26','2022-03-28 00:44:46','2022-03-22',0,NULL,NULL,769,1,2,0,NULL),(770,2,98,'TypeDefinition pour UDT de type tableau mis à plats','Bonjour, \r\n\r\nComme discuté en call le 21/03, nous souhaitons trouver une solution à \"quel TypeDefinition mettre pour des variables UDT de type tableau mis à plats\" . \r\n\r\nPour chaque Datatype XDatatype, Ximulator génère une VariableType XVariableType qui correspond à la mis à plat de Datatype. \r\nDonc quand une variable de Datatype XDatatype est mise à plat on peut lui accorder un TypeDefinition XVariableType. \r\n\r\nNous proposons que Ximulator génère aussi une VaribaleType XArrayVariableType qui a sous elle un (ou plusieurs) XVariableType. \r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n',NULL,NULL,2,1,4,NULL,432,2,'2022-03-22 10:19:49','2022-05-14 10:56:24','2022-03-22',0,NULL,NULL,770,1,2,0,NULL),(771,2,100,'Mapping S7 Enums (dans addresse space) vers Int16 et Boolean (dans PLC) ','Bonjour, \r\n\r\nDans le cadre de la démo MVP. nous devons mappés des Variables de type Enum dans l\'espace d\'adressage vers des Int16 et Booléen au niveau du PLC. \r\n\r\nTel quel, la valeur est remontée mais le Datatype est écrasé. Le client UaExpert ne voit plus une enum mais un Int16 ou un Booléen et nous perdons la sémantique\r\n\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,1,4,NULL,432,5,'2022-03-22 10:28:19','2022-11-04 16:25:42','2022-03-22',100,NULL,NULL,771,1,2,0,'2022-11-04 16:25:42'),(772,1,100,'Problème de connexion Mqtt et logs','Bonjour, \r\n\r\nEn me connectant ce matin chez le client, je vois que le serveur était en freeze (Peut être dû aux problèmes du Ticket 771)\r\nCependant les logs du VpiMqtt indiquent un problème de connexion qui ne se règle pas tout seul.\r\nOn a des messages du type : \r\n\r\n2022-03-23T19:48:51.838Z ERROR MQTT_SendPublish>SSL_Write encounter an error SSL error (1) and return 4294967295. A non-recoverable, fatal error in the SSL library occurred, usually a protocol error\r\n2022-03-23T19:48:51.839Z ERROR MQTT_SendPublish failed with error 0x80050000\r\n \r\nCi joint les logs.\r\n\r\nCordialement, \r\nMichael',NULL,NULL,5,1,5,NULL,432,6,'2022-03-25 09:23:01','2022-03-30 09:59:23','2022-03-25',100,NULL,NULL,772,1,2,0,'2022-03-29 22:11:18'),(773,1,94,'Erreur Modèle','Bonjour,\r\nl\'ObjectType Machine_Traceability devrait s\'appeler Machine_Traceability_Type.\r\nJ\'ai fait la modification dans ma version du modèle. merci de faire le changement dans la version officielle.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,447,5,NULL,1,2,'2022-03-26 17:44:26','2022-03-28 10:23:21','2022-03-26',100,NULL,NULL,773,1,2,0,'2022-03-28 10:23:21'),(774,1,97,'Acronyms','Hello,\r\ncan you explain acronyms used in the Process Flow Diagram :\r\nNMP,PVDF,PD Tank, DW Storage, CMC, EPC Control, WIP, OCV, ACIR, DCIR, OCV.\r\n\r\nRegards\r\nMichel',NULL,NULL,1,NULL,7,NULL,1,1,'2022-03-28 09:24:55','2022-03-28 09:59:09','2022-03-28',0,NULL,NULL,774,1,2,0,NULL),(775,3,92,'Information Modeling: common equipment instantiation','Hello,\r\n\r\nThe Carbital 03 department is composed of 5 lines plus some equipment that are shared or common to all the lines. However the current Model version does not really include these equipment in the objects hierarchy.\r\n\r\nHow do we have to instantiate these equipment?\r\n\r\nShould we instantiate them as equipment at Carbital 03 level?\r\nOr should we change the model by creating a new level in the objects hierarchy?',NULL,NULL,5,NULL,4,NULL,436,1,'2022-03-28 13:59:51','2022-03-28 16:12:33','2022-03-28',100,NULL,NULL,775,1,2,0,'2022-03-28 16:12:33'),(776,1,70,'Validation Livraison 24-03-2022','Bonjour M. Condemine,\r\nJe suis en train de tester le Subscriber avec le DemoMqttSubscriber_Debug_SK.\r\nMon environnement de test est le suivant:\r\n\r\n!clipboard-202203281635-akkf1.png!\r\n\r\nJ\'utilise MosquittoPub pour publier des messages Json sur le Topic d\'abonnement de MqttJsonSub et ce dernier plante lorsque je publie des messages.\r\n\r\nCi-dessous la commande que j\'utilise. J\'ai supposé que MqttJsonSub s\'attendait à recevoir les mêmes formats de messages que ce que MqttJsonPub peut publier donc j\'ai essayé cette commande:\r\n\r\n> mosquitto_pub -h localhost -t OOUA/Json_WriterGroup_1 -m {\\\"MessageId\\\":\\\"e01d8274-c4f5-4654-a56d-12d92738bb39\\\",\\\"MessageType\\\":\\\"ua-data\\\",\\\"PublisherId\\\":\\\"2\\\",\\\"DataSetClassId\\\":\\\"\\\",\\\"Messages\\\":[{\\\"DataSetWriterId\\\":1,\\\"SequenceNumber\\\":1,\\\"MetaDataVersion\\\":{\\\"MajorVersion\\\":1,\\\"MinorVersion\\\":1},\\\"Timestamp\\\":\\\"2022-03-28T13:05:48.0000000Z\\\",\\\"Payload\\\":{\\\"#A_Consumption\\\":{\\\"Type\\\":6,\\\"Body\\\":92}}}]} -i testclient -d\r\n\r\nJ\'ai vérifier avec wireshark, ci-dessous le message arrivant dans le subscriber.\r\nC\'est normal que dans le subscribe request on a pas le nom du topic d\'abonnement?\r\n\r\n!clipboard-202203281644-zw1cr.png!\r\n\r\nEst-ce que je suis passé à côté de quelques choses?\r\nMerci d\'avance de votre retour.\r\n\r\nBien cordialement,\r\nMaycko LOUIS',NULL,NULL,5,1,5,NULL,424,10,'2022-03-28 16:57:05','2022-03-31 16:14:16','2022-03-28',100,NULL,NULL,776,1,2,0,'2022-03-31 16:14:16'),(777,2,92,'Naming policy for MQTT variable ','',NULL,NULL,3,NULL,4,NULL,1,1,'2022-03-28 17:00:05','2022-06-30 16:53:00','2022-03-28',100,NULL,NULL,777,1,2,0,'2022-06-30 16:53:00'),(778,3,78,'Priorités Spring 2022','1- XiMulator - Done\r\n2- Block sur VpiS7\r\n3- Alarme\r\n4- VpiS7 et UaClient doivent supprimer le caractère 0x0d en fin.\r\n5- Synchronisation de UDT mise à plat.\r\n6- VpiOData ... Option',NULL,NULL,5,1,4,NULL,1,1,'2022-03-28 18:38:50','2022-11-04 14:42:06','2022-03-28',100,NULL,NULL,778,1,2,0,'2022-11-04 14:42:06'),(779,3,75,'Comportement HDA avec Genesis','Bonjour, \r\n\r\nEn testant le HDA sur des variables numériques avec le client OPCUA Genesis64, nous tombons sur un freeze du serveur au bout d\'un certain moment. UAExpert ainsi que Genesis n\'arrivent plus à se connecter. UaExpert indique un BadCommunicationError : \r\n!clipboard-202203291423-rm9sp.png!\r\n\r\n\r\nLes logs (en PJ) serveur et VFI indiquent des erreurs liées au Historical Access dans les logs. \r\n\r\nLogs serveur \r\n\r\n!clipboard-202203291420-yrspz.png!\r\n\r\n\r\nLogs VFI \r\n\r\n!clipboard-202203291421-0c15q.png!\r\n\r\n\r\nPour info, la maquette qu\'on utilise est un maquette simple sans UDT, avec quelques instances de type Float. \r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n',NULL,NULL,5,432,4,NULL,432,8,'2022-03-29 14:24:27','2022-11-04 16:26:23','2022-03-29',100,NULL,NULL,779,1,2,0,'2022-11-04 16:26:23'),(780,3,73,'certificat','Bonjour,\r\nLorsque nous démarrons notre conf serveur, il est question d\'un certificat qui est expiré (depuis le 20/03/2022). Pouvez-vous m\'éclairer sur ce sujet ?\r\nMerci d\'avance',NULL,NULL,5,NULL,4,NULL,429,2,'2022-03-29 15:13:35','2022-03-29 16:49:41','2022-03-29',100,NULL,NULL,780,1,2,0,'2022-03-29 16:49:41'),(781,1,97,'SRS information','Hello,\r\nwe need more detail on the SRS. The idea is to select a bunch of attribute for the SRSType which is an equipment.\r\n\r\nRegards\r\nMichel',NULL,NULL,1,531,4,NULL,1,1,'2022-03-30 14:38:28','2022-03-30 14:44:54','2022-03-30',0,NULL,NULL,781,1,2,0,NULL),(782,3,92,'Projects compare for update','In Enterprise architect, how to compare two projects to make update.',NULL,NULL,5,1,4,NULL,510,1,'2022-03-31 09:33:54','2022-03-31 09:37:45','2022-03-31',100,NULL,NULL,782,1,2,0,'2022-03-31 09:37:45'),(783,3,75,'Nouveau VPI S7 et procédure/exemple de configuration','Bonjour M. Condemine, \r\n\r\n\r\nPourriez vous s\'il vous plait nous mettre à disposition le nouveau VpiS7 avec configuration manuelle des blocs? Ainsi de des exemples/procédure si possible ? \r\n\r\n\r\nCordialement,\r\n\r\nMichael',NULL,NULL,5,1,4,NULL,432,1,'2022-03-31 10:50:35','2022-03-31 12:09:14','2022-03-31',100,NULL,NULL,783,1,2,0,'2022-03-31 12:09:14'),(784,1,97,'Empty class','Need more information for CalenderingType, AirCylinderType, CameraType, CoatingReferenceBackingRollerType, CoolerType, HalfSlitterType, InsulationCoatingUnitType, WebPositionControllerType classes. \r\nFor each classes we need :\r\n* A definition (what it is about) \r\n* A list of attributes',NULL,NULL,1,533,4,NULL,1,0,'2022-03-31 15:20:22','2022-03-31 15:20:22','2022-03-31',0,NULL,NULL,784,1,2,0,NULL),(785,1,70,'MqttJsonSub crash (double free or corruption) ou (Vpi_BadNothingToDo)','Tests réalisés avec la version OpenOpcUa_1_0_7_0_SK_31-03-2022 et le DemoMqttSubscriber_Debug_Simulation.\r\nAu démarrage du serveur/subscriber, le subscriber se connecte au broker mosquitto.\r\nJ\'utilise mosquitto_pub pour publier de la data sur le topic tele/test1.\r\nLorsque je publie la variable \"OOUADemo-MQTT_String\", \r\ndans 30% des cas je vois la donnée publiée apparaitre sur un client OPCUA (UaExpert)\r\n\r\nmais dans 70% des cas, il se passe les scénarios suivants:\r\n- Soit la donnée n\'est pas traité et je vois l\'erreur suivante dans les logs : \r\n\"2022-04-04T09:38:44.000Z ERROR Critical error>TransfertToCoreServerCache failed uStatus=0x800f0000\"\r\nmême en faisant varier la valeur la variable, le subscriber m\'affiche l\'erreur 0x800f0000 (cf VpiErrors.h, Vpi_BadNothingToDo 0x800F0000)\r\n\r\n- Soit le subscriber essaye de traiter la donnée mais il plante à cause d\'un free (voir 4.zip, 6.zip, 7.zip)\r\n\r\nJe n\'ai pas eu ce problème avec les variables OOUADemo-MQTT_UInt16 et OOUADemo-MQTT_Int32.',NULL,NULL,2,1,4,NULL,424,3,'2022-04-04 12:12:43','2022-04-12 18:30:52','2022-04-04',90,NULL,NULL,785,1,2,0,NULL),(786,1,70,'MqttJsonSub String format','Lorsque le Subscriber reçoit un string, les guillemets du json sont gardés dans la valeur.\r\n\r\n!Capture.JPG!\r\n',NULL,NULL,2,1,4,NULL,424,2,'2022-04-04 12:16:50','2022-04-05 18:39:33','2022-04-04',100,NULL,NULL,786,1,2,0,NULL),(787,1,94,'VpiInitValue','Bonjour Michel,\r\n\r\nPar rapport au problème qu\'on a sur la ligne Prepastack, on à relancer le serveur avec la dernière version du dll (VpiValuesInitd version 0.0.1.0). je vous envoi le fichier log .dat de initValue',NULL,NULL,5,NULL,5,NULL,489,7,'2022-04-04 14:52:03','2022-11-04 14:17:23','2022-04-04',100,NULL,NULL,787,1,2,0,'2022-11-04 14:17:23'),(788,1,70,'MqttJsonSub crash (seg fault)','Bonjour, \r\nci-dessous un nouveau cas constaté.\r\n\r\nTests réalisés avec le DemoMqttSubscriber_Debug_SK et DemoMqttPulisher_Debug_SK. Le publisher publie sur le broker mosquitto et le Subscriber reçoit les datas.\r\nAvec les variables simple (int, string) j\'ai les mêmes problème vus avec les DemoSimumation définit dans les tickets #785 et #786.\r\nAvec le DemoSK, La variable #dataProcessVariable(ExtensionObject) est parsé/décodé correctement 1 fois sur 2. Quand ça ne fonctionne pas, j\'ai le problème de seg fault ci-joint.\r\n\r\nBien cordialement,\r\nMaycko LOUIS',NULL,NULL,1,1,4,NULL,424,0,'2022-04-05 14:46:22','2022-04-05 14:46:22','2022-04-05',0,NULL,NULL,788,1,2,0,NULL),(789,2,98,'Stéréotype multipe','Bonjour M. Condemine,\r\n\r\nComme vue ensemble, je dépose ce ticket afin d\'avoir la possibilité d\'utiliser des stéréotypes multiples dans EA et qu\'ils soient retranscrits par Ximulator.\r\n\r\nCordialement,\r\nMatthieu Gatine',NULL,NULL,5,1,4,NULL,492,1,'2022-04-06 08:45:26','2022-05-14 10:34:38','2022-04-06',100,NULL,NULL,789,1,2,0,'2022-05-14 10:34:38'),(790,1,97,'CompressorType','Work on CompressorType Attributes',NULL,NULL,1,531,4,NULL,1,0,'2022-04-06 17:10:54','2022-04-06 17:10:54','2022-04-06',0,NULL,NULL,790,1,2,0,NULL),(791,3,101,'Minidump crash ligne Rotor 06/04 et analyse ','Bonsoir M. Condemine, \r\n\r\nEmotors nous a transmis cet après-midi un minidump obtenu sur la ligne Rotor. Cette ligne Rotor tourne avec un Plant Middleware. \r\nLe minidump indique un problème au niveau de la gestion des MonitoredItems : \r\n\r\n!clipboard-202204062040-ubfpr.png!\r\n\r\nLe MonitoredItem en question est le NamespaceArray. \r\n\r\nEn regardant les logs LM, on s\'aperçoit qu\'il y a eu un timeout d\'une session client peu après que le mindump ait été généré (10h52 en CET, 8h52 en UTC). \r\nLes logs pour le moment du crash sont les logs *.bak au niveau du LM.\r\nLes logs LM indiquent aussi peu avant le crash un message de type \"TypeMismatch on ns=31;i=1013 between Vpi declaration\". Le noeud en question a été identifié. On demandera à Emotors de corriger celà. Ce type d\'erreur peut-elle donner la pile d\'appel obtenue? \r\n\r\nLes logs de la lib client au niveau du Plant (Subsystem UaClient Manuel 3) indiquent peu après la génération du mindump 2 messages \"OpcUa_ClientApi_Read failed 0x800a0000\" et montrent que le Plant essaye de se reconnecter jusqu\'à y parvenir. \r\nLes logs pour le moment du crash sont les logs *.log\r\n\r\nJ\'espère que ces informations vous aiderons. Je mets en PJ : \r\n\r\n- le minidump\r\n- les PDB et binaires utilisés \r\n- les logs LM ( .bak )\r\n- les logs PM ( .log et le subsytem correspondant à la connexion avec le LM Rotor est le Subsystem UaClnt-003).\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n',NULL,NULL,5,1,4,NULL,432,6,'2022-04-06 21:09:11','2022-08-03 17:18:27','2022-04-06',100,NULL,NULL,791,1,2,0,'2022-08-03 17:18:27'),(792,3,100,'Installation VFIPgSql','Bonjour,\r\naprès quelques tests concluant avec IMERYS. Il serait judicieux de configurer le VfiPgSql sur le MVP.\r\nPouvez vous vous en charger ?\r\n\r\nCordialement\r\nMichel Condemine','2022-04-11',NULL,5,436,7,NULL,1,3,'2022-04-07 17:10:27','2022-06-27 09:38:51','2022-04-07',100,NULL,NULL,792,1,2,0,'2022-06-27 09:38:51'),(793,1,100,'Abonnement AWS','Bonjour,\r\nAWS s\'abonne aux nodes de DataType i=884 Range\r\nCela génère l\'erreur récurrente suivante :\r\n<pre>\r\nUpdateDataSubscriptionThread>Unsupported EncodeableType i=884\r\n</pre>\r\n\r\nCette erreur finira par saturer le DD.\r\nPourriez vous étudier l\'origine du problème ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,436,6,NULL,1,4,'2022-04-07 17:42:56','2022-04-08 18:46:28','2022-04-07',100,NULL,NULL,793,1,2,0,'2022-04-08 18:46:28'),(794,1,100,'Erreur log','Bonjour,\r\nLe log contient l\'erreur suivante.\r\n<pre>\r\nconfiguration file inconsistancy. Cannot find forward reference i=47 i=2289 -->ns=1;s=50.000000\r\n</pre> \r\nCette erreur montre plusieurs choses :\r\n* Abonnement AWS 50ms\r\n* Problème serveur, ou configuration ou autre.\r\nCe node doit être un node relatif au Diagnostic.\r\nPourriez vous vérifier ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,6,436,3,NULL,1,1,'2022-04-07 17:47:29','2022-10-25 10:31:57','2022-04-07',100,NULL,NULL,794,1,2,0,'2022-10-25 10:31:57'),(795,1,97,'Attribute needed','Hello,\r\nWe need attributes for :\r\n* ActiveMaterialDataType\r\n* AdditiveDataType\r\n* BinderDataType\r\n* SolventDataType\r\n\r\nRegards\r\nMichel',NULL,NULL,1,533,7,NULL,1,1,'2022-04-08 18:03:03','2022-04-11 09:18:37','2022-04-08',0,NULL,NULL,795,1,2,0,NULL),(796,1,92,'Model used for instanciation ','Hello,\r\nI saw errors in the instanciation of the MVP.\r\nCan yo clarify :\r\n* UML model used for type generation\r\n* version of XiMulator used for generation\r\n\r\nRegards\r\nMichel Condemine',NULL,NULL,5,436,4,NULL,1,2,'2022-04-11 14:26:51','2022-06-30 16:49:10','2022-04-11',100,NULL,NULL,796,1,2,0,'2022-06-30 16:49:10'),(797,3,100,'Binaires IPV6 VFiLib et VfiPostgres','Bonjour M. Condemine, \r\n\r\nLa dernière livraison IPV6 ne contient pas les binaires VFiLib et VFIPostgres. Peut-on utiliser ceux livrés avec les binaires IPV4 ? Sinon pourrez vous s\'il vous plait nous les transmettre ? \r\n\r\n\r\nCordialement ,\r\n\r\nMichael Ejigu',NULL,NULL,5,1,4,NULL,432,1,'2022-04-12 09:45:17','2022-04-12 10:20:37','2022-04-12',100,NULL,NULL,797,1,2,0,'2022-04-12 10:20:37'),(798,1,94,'Anomalie vu dans les souscriptions','Bonjour Michel,\r\n\r\nPar rapport à l\'anomalie vue sur le serveur OPC-UA de ligne Assemblage. En fait, des fois ça arrive que le serveur rate un (ou plusieurs) subsystem(s) pendant la souscription. On a modifié les paramètres des UaClient avec Lionel en mettant:\r\n\r\nFRAGMENT_SIZE 150\r\nFRAGMENT_TIMEOUT 100\r\n\r\net ça a marché mieux (moins de crash), mais le serveur n\'est toujours pas content donc on est vigilant pendant le démarrage et on ouvre UAExpert (comme un client) une fois que le serveur se trouve dans une conditionne stable. \r\nTout ça justement pour identifier le problème.\r\n\r\nMerci bien \r\nArash.',NULL,NULL,5,489,4,NULL,489,2,'2022-04-13 18:48:55','2022-11-04 14:19:02','2022-04-13',100,NULL,NULL,798,1,2,0,'2022-11-04 14:19:02'),(799,2,92,'complete the FanType object','Complete with Motortype',NULL,NULL,5,NULL,4,NULL,510,1,'2022-04-15 10:37:24','2022-06-30 16:48:39','2022-04-15',100,NULL,NULL,799,1,2,0,'2022-06-30 16:48:39'),(800,1,92,'Create Condenseur Object','',NULL,NULL,5,NULL,4,NULL,510,1,'2022-04-15 10:37:52','2022-06-30 16:34:40','2022-04-15',100,NULL,NULL,800,1,2,0,'2022-06-30 16:34:40'),(801,3,103,'Fichier Nodeset de type Optimu','Bonjour,\r\nEst ce que le fichier nodeset contenant la définition des types pour Optimu a été généré ?\r\n* Si oui : Merci de me le fournir\r\n* Si non : Est ce que vous pouvez me fournir le fichier eapx correspond aux types exposés.\r\n\r\nLa version 2.23 du modèle en ma possession ne correspond pas au format des fichiers XML décrit dans le *CDC Connecteur Optimu* . \r\nDans tous le cas il est indispensable de corriger cette discordance.\r\n\r\nJe reste à votre disposition pour plus d\'information.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,NULL,7,NULL,1,1,'2022-04-19 13:48:31','2022-11-04 14:44:40','2022-04-19',100,NULL,NULL,801,1,2,0,'2022-11-04 14:44:40'),(802,1,92,'Ximulator - Fixing the node id\'s after change in Model','Michel,\r\n\r\nWhen we create Instances using configmanager, we have to provide the node id\'s in the csv file. If the noteset of type changes then there is a possibility that the nodeid\'s may change. This may have ripple effect on the instance we created and we will have to change the nodeid\'s in all the instance file and then recreate the instances.\r\n\r\nI was told by Michael that most of the Node id\'s remain the same but the nodeids may change for variable type. \r\n\r\nCan you please help us make this process smoother to make sure that the change in model does not impact the instances already created.\r\n\r\nThanks\r\nSunil','2022-04-30',NULL,5,1,4,NULL,512,2,'2022-04-19 21:04:41','2022-06-30 16:33:51','2022-04-19',100,NULL,NULL,802,1,2,0,'2022-06-30 16:33:51'),(803,1,92,'Add \" Grade / Production name\" attribute in Production Line object.','',NULL,NULL,3,NULL,4,NULL,510,1,'2022-04-20 09:12:15','2022-06-30 16:31:01','2022-04-20',100,NULL,NULL,803,1,2,0,'2022-06-30 16:31:01'),(804,1,89,'Issue with VPI MQTT when we configure the OOUA server as a service','',NULL,NULL,5,1,4,NULL,505,1,'2022-04-20 14:29:08','2022-05-09 20:32:29','2022-04-20',100,NULL,NULL,804,1,2,0,'2022-05-09 20:32:29'),(805,3,75,'Fourniture d\'une maquette de test d\'alarmes','Bonjour M. Condemine, \r\n\r\nNous rencontrons des difficultés à tester les alarmes avec les nouveaux binaires. \r\nNous n\'arrivons plus à les obtenir sous UaExpert. Y-a t-il eu un changement dans la configuration des alarmes ? Ou bien la souscription aux alarmes par défaut avec UaExpert ne suffit-elle plus ? \r\n\r\nAuriez vous la possibilité de nous transmettre votre maquette de test ? \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\n',NULL,NULL,5,NULL,4,NULL,432,1,'2022-04-20 17:44:07','2022-04-20 17:52:55','2022-04-20',90,NULL,NULL,805,1,2,0,'2022-04-20 17:52:55'),(806,2,100,'Proposition d\'évolution de gestions des logs ','Bonjour, \r\n\r\nCi dessous une proposition de Sunil lors d\'une session de On the job training avec Imerys\r\n\r\nPour que les logs n\'évoluent pas indéfiniment, il propose un backup/reset des fichiers de logs lorsqu\'ils atteignent une taille limite \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\n',NULL,NULL,3,NULL,3,NULL,432,2,'2022-04-20 17:51:33','2022-06-27 09:37:49','2022-04-20',100,NULL,NULL,806,1,2,0,'2022-06-27 09:37:49'),(807,2,98,'Retour sur tests faits avec Ximulator. 1.0.2.3_v1.0.4.4 et 1.0.2.3_v1.0.4.5','Bonjour \r\n\r\nParmi les nouvelles fonctionnalités listées en News : \r\n\r\n- La création des règles de modélisation (HasModellingRule), \r\nRéférence bien présente mais : 2480 optional et 66 mandatory (uniquement les méthodes) \r\n\r\n- La génération des paramètres des méthodes, OK pour InputArguments, NOK pour OutputArguments\r\n\r\n\r\n\r\nAutres remarques : \r\n\r\n- En générant en réimportant un ancien NodeIdMap généré avec une version Ximulaotor antérieure à 1.0.2.3_v1.0.4.4, les NodeIds des Enums sont conservés, ceux des Datatype, VariableType et ObjectType ne sont pas conservés\r\n\r\n- LOGS : Malgré des Warnings de type (\"Cannot find TypeDefinition for --- DataTypeName=Range\"), le bon Dataytype et TypeDefinition est mis sur ces variables\r\n\r\n- LOGS : Malgré des Warnings de type (\"Cannot find TypeDefinition for --- DataTypeName=EAID_----_-----------_----_--\") le bon TypeDefinition est mis sur ces Objects\r\n\r\n- LOGS : Quand un ObjectType est déclaré, on a ce message pour ces Components/Property : \"AddOpcUaProperty>Impossible to find the NodeClass for the nodeId ns=-;i=----- It will be forced to UAVariable \". Les déclarations ont l\'air ok\r\n\r\n- * Duplication de méthodes sous des ObjectType (Start et Stop sous EquipementBaseType ou IntegrityCheck sous SlurryType)* \r\n\r\n- *Lors de la génération du modèle v8 avec l\'option inherited attributes activée (pour utilisation avec ConfigManager IHM et SIOME), le fichier résultant contient une multitude de NodeId qui sont en doublon utilisés par différents nodes : on a plusieurs fois le message dans les logs serveur : \"SERVER_ERROR PopulateInformationModel failed. uStatus=0x80ab0000 You have already declared this NodeId: ns=2;i=328. Check you nodeSet file\"\r\n*\r\n\r\nJe mets en PJ nodesets de types/logs Ximulator pour la génération avec et sans inherited attributes ainsi que le XMI utilisé\r\n\r\n\r\nCordialement,\r\n\r\nMichael Ejigu',NULL,NULL,1,1,4,NULL,432,1,'2022-04-20 18:14:18','2022-05-14 10:36:26','2022-04-20',0,NULL,NULL,807,1,2,0,NULL),(808,1,100,'Correspondance node','Bonjour,\r\npourriez vous compléter le tableau ci-dessous ?\r\n\r\nArea Production Line PI Tag name OOUA node\r\nC3 L1 grade L1 \r\nC3 L1 3AKG01X \r\nC3 L1 3AKG02X \r\nC3 L1 3AKG03X \r\nC3 L1 3ARATIODX_L1 \r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,NULL,7,NULL,1,6,'2022-04-21 09:58:00','2022-11-03 15:48:57','2022-04-21',100,NULL,NULL,808,1,2,0,'2022-11-03 15:48:57'),(809,3,100,'Débogage sur fichier d\'instance erroné','Bonjour, \r\n\r\ncomme discuté en call ci joint la maquette. C\'est le fichier Opc.Ua.NodeSet2.LixheCarbital3PAPLine1CA3059.xml qui contient les erreurs de parsing. \r\n\r\nPour info d\'autres erreurs sont présentes dans les logs mais elles sont identifiées et corrigées. ',NULL,NULL,5,1,4,NULL,432,2,'2022-04-21 12:38:04','2022-11-04 16:27:23','2022-04-21',100,NULL,NULL,809,1,2,0,'2022-11-04 16:27:23'),(810,3,100,'Déploiement Configuration Carbital 3 (S7+ Mqtt + Vfi) et session de débogage','Bonjour M. Condemine, \r\n\r\n\r\nNous essayons de déployer une nouvelle version de la configuration Imerys. Nous rencontrons 2 soucis \r\n\r\n- pour un DB spécifique (le db 53 (en décimal) de l\'automate 31) le premier tag du fichier de mapping mappé à ce block affiche un Badcommunication Error. Tous les autres sont oks. Y a t-il un cas où on aurait ce message que pour un tag malgré le fait que la connexion soit ok ? \r\n\r\n- on n\'arrive pas à faire démarrer le VFI sur la VM Lixhe. Sut tout autres machines (Vms Inetums, Pcs personnels), le VFI démarre avec les mêmes binaires/même configuration. \r\nOn a les messages suivants dans les logs serveur qui indiquent un BadFileNotFound et le serveur se ferme tout seul: \r\n\r\n\r\n2022-04-22T14:53:04.349Z SERVER_ERROR Start Post-Parsing initialization\r\n2022-04-22T14:53:04.349Z SERVER_ERROR Start Updating UAVariablesBuiltinType\r\n2022-04-22T14:53:04.443Z SERVER_ERROR Start Updating inverse references\r\n2022-04-22T14:53:04.443Z SERVER_ERROR End Post-Parsing. Threads running...\r\n2022-04-22T14:53:04.458Z SERVER_ERROR LoadVfiLibrary failed VfiPgSqld error: 0x0007e\r\n2022-04-22T14:53:04.458Z SERVER_ERROR Critical Error>LoadVfi failed 0x81090000\r\n2022-04-22T14:53:04.458Z SERVER_ERROR Critical error> Error in initialization process. Check your log files, fixe the configuration error and restart the server\r\n2022-04-22T14:53:04.458Z SERVER_ERROR StorageThread>StorageThread Leave\r\n2022-04-22T14:53:04.458Z SERVER_WARNING StorageThread stopped properly\r\n\r\n\r\nCette VM a Postgres 14 et pgadmin4 6.2 \r\n\r\nAvez vous eu des soucis similaires lors de l\'installation du Vfi sur la VM Imerys \"Paris\"? Aurez vous un moment en début de semaine prochaine pour regarder ensemble ? (Si possible avant 16h pour que je puisse également assister ) \r\n\r\n\r\nNous laissons pour cette semaine le serveur avec mapping S7 et MQTT (une centaine de variables publiés) avec le Vfi désactivé\r\n\r\nTrès cordialement, \r\n\r\nL\'équipe Inetum\r\n',NULL,NULL,5,1,4,NULL,432,9,'2022-04-22 16:59:49','2022-04-29 12:40:38','2022-04-22',100,NULL,NULL,810,1,2,0,'2022-04-28 14:35:39'),(811,1,78,'Règles de nommage dans modèle v2.24','Bonjour,\r\nles règles de nommage en sont pas respectées dans le package QualityClasses de la v2.24 du modèle.\r\nJ\'ai créé une version 2.25 qui corrige ces problèmes (ci-joint)\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,NULL,4,NULL,1,1,'2022-04-23 15:37:46','2022-05-20 15:04:24','2022-04-23',100,NULL,NULL,811,1,2,0,'2022-05-20 15:04:24'),(812,3,100,'Traitement d\'une erreur d\'instanciation remontée par Imerys (Equipements sous ProductionLineType)','Bonjour, \r\n\r\nSunil d\'Imerys nous a remonté que notre manière d\'instancier les équipements n\'était pas conforme au modèle. \r\n\r\n!clipboard-202204251424-lb2dd.png!\r\n\r\nComme le montre l\'UML ci dessus, nous sommes d\'accord qu\'il faudrait regrouper les equipements sous un Objet Equipements. Nous nous posons la question du TypeDefinition de cet objet Equipements. \r\nNous avons l\'impression que nous ne pouvons ni mettre FolderType (car non conforme au modèle) ni mettre EquipementBaseType (Pas correct sémantiquement). \r\n\r\n\r\nQu\'en pensez vous? \r\n\r\nCordialement, \r\n\r\nMichael Ejigu',NULL,NULL,5,NULL,4,NULL,432,1,'2022-04-25 14:30:34','2022-11-04 16:27:47','2022-04-25',100,NULL,NULL,812,1,2,0,'2022-11-04 16:27:47'),(813,3,97,'Need clarification on Bolts','We suggest the following definition for bolts\r\n<pre>\r\nList of positions taken by the slotdie during the creation the electrode.\r\n</pre>\r\n\r\nCan you confirm ?\r\n\r\n!clipboard-202204271612-zs9t1.png!\r\n',NULL,NULL,2,533,4,NULL,1,3,'2022-04-27 16:13:56','2022-04-28 09:35:03','2022-04-27',0,NULL,NULL,813,1,2,0,NULL),(814,3,97,'What is CoatNipRoll in the air cylinder ?','!clipboard-202204271615-ovmpv.png!\r\n',NULL,NULL,1,533,4,NULL,1,0,'2022-04-27 16:15:55','2022-04-27 16:15:55','2022-04-27',0,NULL,NULL,814,1,2,0,NULL),(815,3,97,'CPC dataType','Question about CpcDeviation\r\n!clipboard-202204271616-jxsy9.png!\r\n',NULL,NULL,1,533,4,NULL,1,0,'2022-04-27 16:17:21','2022-04-27 16:17:21','2022-04-27',0,NULL,NULL,815,1,2,0,NULL),(816,1,97,'CoatedLayerEnum is not used in the model. Why ?','All in the subject',NULL,NULL,1,531,4,NULL,1,0,'2022-04-27 16:18:28','2022-04-27 16:18:28','2022-04-27',0,NULL,NULL,816,1,2,0,NULL),(817,3,97,'CoatingReferenceBackingRollerType','CoatingReferenceBackingRollerType.\r\nWe need a small definition of this equipment and attribute list',NULL,NULL,1,533,4,NULL,1,1,'2022-04-27 16:19:08','2022-05-12 10:27:35','2022-04-27',0,NULL,NULL,817,1,2,0,NULL),(818,1,13,'DuplicateExtensionObject problem','DuplicateExtensionObject have an issue with array.\r\nEspecially with embedded array of string. \r\nthe bug can be reproduce with SessionDiagnostics node created when EnabledFlag is true.',NULL,NULL,1,1,6,NULL,1,0,'2022-04-29 00:13:37','2022-04-29 00:13:37','2022-04-29',0,NULL,NULL,818,1,2,0,NULL),(819,3,97,'SlotDieType clarification','Regulation on slot die position and gap need to be clarify.\r\n',NULL,NULL,5,533,7,NULL,1,2,'2022-04-29 16:47:22','2022-05-12 10:26:40','2022-04-29',100,NULL,NULL,819,1,2,0,'2022-05-12 10:26:40'),(820,1,103,'Conformité des fichiers Xml avec modèle UML','Bonjour,\r\nLe schéma des fichiers XML échangés entre Gmm et OPC n\'est pas conforme au modèle.\r\nLe champ ValidityStatus est une chaine contenant True ou False. Il est déclaré comme une structure *MeasuringToolValidityStatusDataType* dans le modèle.\r\n\r\n!clipboard-202205011754-argrd.png!\r\n\r\nLe schéma Xml doit être modifié.\r\n\r\nCordialement\r\nMichel Condemine\r\n',NULL,NULL,5,549,6,NULL,1,2,'2022-05-01 17:57:18','2022-05-02 10:43:35','2022-05-01',100,NULL,NULL,820,1,2,0,'2022-05-01 18:09:09'),(821,3,78,'Test DataRequest S7 - DataRequest Problem Characterization','Bonjour, \r\n\r\nDans le cadre du test des « DataRequest », il semblerait que nous ayons des problèmes de communication entre le VPIS7 et l’automate. \r\n\r\nVous trouverez-ci joint un Powerpoint détaillant le problème, n\'hésitez pas si vous avez des questions.\r\n\r\nCordialement, \r\nLoic',NULL,NULL,3,1,5,NULL,548,6,'2022-05-03 16:47:57','2022-11-04 14:45:53','2022-05-03',100,NULL,NULL,821,1,2,0,'2022-11-04 14:45:53'),(822,3,100,'Gestion des enums par un VPI et problème de notification pour une souscription','Bonjour M. Condemine, \r\n\r\nSuite à dernier call, nous avons toujours pas résolu notre problème par rapport à la souscription sur une variable de type Enum manipulée par un VPI. \r\n\r\nNous souhaitons en discuter avec vous au prochain call mais voici les questions qu\'on se pose :\r\n\r\n\r\n- Dans le VpiParseAddIdEx, comme différencier un UDT d\'une Enum (sans statiquement lister les identifiants des enums) ? ( pour le moment nous vérifions que le TypeId passé soit cohérent, c\'est à dire dans le même namespace que le Datatype. D\'après nos tests le typeid récupéré n\'a jamais le même ns que le Datatype lorsque c\'est une Enum.\r\n\r\n- Lorsque nous le détections dans le VpiParseAddIdEx, quel Datatype doit on mettre dans le champ Datatype de la DataValue? Lorsque aucun Vpi n\'y est attaché, que est le Datatype mis par le serveur dans la DataValue? \r\n - Int 32 nous mets un message de type TypeMismatch dans les logs, et la soucription ne fonctionne pas dessus (on ne reçoit pas les changements de valeur sans lecture)\r\n - Lorsqu\'on met 29 pour énumération, le serveur n\'accepte pas cette valeur et crash lorsque des demandes de lecture sont effectuées. \r\n\r\n\r\nPour info, suite à vos conseils au dernier call, on a vérifier que le timestamp était bien mis à jour par le Vpi, c\'est bien le cas. \r\n\r\nCordialement, \r\n\r\nMichael \r\n\r\n\r\n\r\n\r\n',NULL,NULL,2,1,4,NULL,432,4,'2022-05-09 13:50:08','2022-08-05 15:23:12','2022-05-09',100,NULL,NULL,822,1,2,0,'2022-08-01 10:38:57'),(823,3,100,'Retour sur arrêt serveur 05 mai ','Bonjour M. Condemine, \r\n\r\nSuite à l\'arrêt du serveur le 05 au soir, nous avons analyser les logs :\r\n\r\n- le log serveur indique certains messages d\'erreurs dont un au moment du crash (Read failed because sessionId 34270495 doesn\'t exist). Ce message apparait aussi plusieurs fois les jours précédent sans causer de crash. D\'autres messages d\'erreurs sont aussi indiqués ( Critical Error:>CloseSecureChannel the channelId 33056268 cannot be found ; ReadVpiTags failed 0x83050000 \r\nJe mets en PJ les logs serveurs\r\n\r\nPourriez vous nous donner plus de détails sur ces messages afin que l\'on contacte su besoin AWS ? \r\n\r\n- le mqtt a bien fonctionné pendant 2 jours et puis a indiqué des erreurs de connexion pendant une journée\r\n\r\n\r\nNous avons redémarré le serveur avec les nouveaux binaires et traquons l\'évolution de la consommation mémoire. \r\nPour l\'instant : \r\n\r\n9h38 56.2 MB \r\n9h44 57.2 MB\r\n9h58 59.5 MB\r\n10h14 62.3 MB\r\n10h41 66.7 MB\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n',NULL,NULL,5,1,4,NULL,432,1,'2022-05-10 10:44:30','2022-11-04 16:30:28','2022-05-10',100,NULL,NULL,823,1,2,0,'2022-11-04 16:30:28'),(824,1,98,'Issue with Roux\'sTricycle','Erreur de génération avec XiMulator. Pb dans les aliases.\r\n<pre>\r\n10/05/2022 16:41:59 SearchNodeClass>Impossible to retrieve the NodeClass for this DataType: VehiculeType. It was probaly not already created\r\n10/05/2022 16:41:59 Cannot find VehiculeType during a call to SearchNodeClassbyBrowseName. Here we limit recursion\r\n10/05/2022 16:41:59 Cannot find VehiculeType during a call to SearchNodeClassbyBrowseName. Here we limit recursion\r\n10/05/2022 16:41:59 Cannot find TrailerType during a call to SearchNodeClassbyBrowseName. Here we limit recursion\r\n10/05/2022 16:41:59 Cannot find TrailerType during a call to SearchNodeClassbyBrowseName. Here we limit recursion\r\n</pre>',NULL,NULL,2,1,4,NULL,1,1,'2022-05-10 16:55:56','2022-05-14 10:35:23','2022-05-10',0,NULL,NULL,824,1,2,0,NULL),(825,2,47,'Instanciation des méthodes','Bonjour Michel,\r\n\r\nConcernant les évolutions possibles de ConfigManager en voici une remontée par Sunil pour Imerys qui concerne la possibilité d\'instancier des méthodes avec InputArguments et OutputArguments instanciés et valorisés (la liste des arguments fait partie de la valorisation des variables InputArguments et OutputArguments). \r\n\r\nCordialement,\r\nChris',NULL,NULL,3,1,4,NULL,436,1,'2022-05-12 11:10:24','2022-12-10 20:30:49','2022-05-12',100,NULL,NULL,825,1,2,0,'2022-12-10 20:30:49'),(826,1,98,'Ajout de nodeset après la génération','Si on ajoute un nouveau nodeset dans le modèle impliquant une modification des Uris.\r\nLe modèle ne plus généré correct. Pourquoi :\r\nXiMulator va essaye de conserver les namespaceIndex mais comme ils ont évolués le résultat est incorrecte.\r\nIl faut donc que les nouvelles Uris soient placées après les anciennes.\r\n\r\nFaire une évolution qui prennent en compte ce problème.',NULL,NULL,1,1,4,NULL,1,0,'2022-05-14 12:11:34','2022-05-14 12:11:34','2022-05-14',0,NULL,NULL,826,1,2,0,NULL),(827,3,73,'Questions dernier dépôt','Bonjour Mr. Condemine,\r\n\r\nSuite au dépôt des derniers fichiers sur le Redmine, nous avons essayé de les exploiter au maximum. Plusieurs questions me sont venues :\r\n\r\n\r\n- Le Debug est-il en quelque sorte une nouvelle version du Release que nous utilisions jusqu\'à présent, mais permettant d\'exploiter les nouveaux VPI ? Quelles autres différences existe-t-il entre le Debug et le Release ?\r\n\r\n- Quelles informations doit-on mettre dans le .dat pour exploiter le VPI UA Client et dans quel ordre ? De plus, un message d\'erreur apparaît dans les Logs : \"LoadConfigurationFile failed because SAVE_ONCHANGE parameter is not setup\", faut-il configurer ce paramètre dans le .dat ou ailleurs ?\r\n\r\n- Pour appuyer ceci, avez-vous une doc à propos de ce VPI et du VPI S7 ? De manière générale, avez-vous des docs plus à jour que celles dont nous disposons ?\r\n\r\n- Lors de notre réunion, vous avez évoqué différentes mises à jour du Config Manager, est-il possible de nous déposer la dernière version ?\r\n\r\n\r\n\r\nMerci d\'avance pour vos réponses.\r\n\r\nCordialement,\r\n\r\nValentin DUFIEF',NULL,NULL,5,1,4,NULL,565,4,'2022-05-16 15:03:15','2022-06-13 14:38:51','2022-05-16',90,NULL,NULL,827,1,2,0,'2022-06-13 14:38:51'),(828,1,92,'Model 2.0.4 attribute redundancy for container and tank for current level value','attribute redundancy for container and tank for current level value (in containerType and in TankType objects)',NULL,NULL,5,NULL,4,NULL,510,2,'2022-05-17 13:13:21','2022-07-04 16:53:09','2022-05-17',100,NULL,NULL,828,1,2,0,'2022-07-04 16:53:09'),(829,3,92,'PLC communication to server OPC UA','The industrial communication of some PLC is configured on ISO and not in TCPIP Protocol.\r\nThe server can\'t reach the PLC in ISO communication. \r\nHow to manage that? OPC UA server configurationneed to be changed or the PLC?',NULL,NULL,3,1,4,NULL,510,3,'2022-05-17 14:16:04','2022-11-15 16:23:04','2022-05-17',100,NULL,NULL,829,1,2,0,'2022-11-15 16:23:04'),(830,3,100,'Problème de connexion Vpi MQTT configuration modèle v1.0.8','Bonjour M. Condemine, \r\n\r\n\r\nNous rencontrons des soucis pour la configuration du VpiMqttJsonPub. \r\nSur l\'ancienne configuration (alignée au modèle v.1.0.6), il se connecte bien au début et publie pendant quelques jours avant d\'indiquer un problème de connexion\r\nSur la nouvelle configuration (alignée au modèle v.1.0.8), il indique dès le lancement un problème de connexion SSL \r\nLa configuration du VPI est la même pour les deux configurations de serveur. Seulement diffère les nodeset de type et l\'address Space. \r\n\r\nLe Vpi indique que la connexion est acceptée par le broker puis immédiatement un problème SSL :\r\n\r\n\r\n_2022-05-16T09:19:29.667Z ERROR LoadConfigurationFile C:\\OPCUA\\OOUA_IMERYS_MVP_C3\\Project\\\\Publisher-00160.dat succeeded\r\n2022-05-16T09:19:29.675Z ERROR Parameter from C:\\OPCUA\\OOUA_IMERYS_MVP_C3\\Project\\\\Publisher-00160.dat\r\nCACertificate :AmazonRootCA1.pem\r\nClientId:basicPubSub\r\nMetaData:1\r\nPublishRate:5000\r\nRequestTimeout:30000\r\nPingRate:202022-05-16T09:19:29.676Z ERROR TLS12Connect>Will use the client certificate FLAGSHIP-certificate.pem. Remember it must be in PEM format\r\n2022-05-16T09:19:29.676Z ERROR TLS12Connect>Will use the client key FLAGSHIP-private.pem.key. Remember it must be in PEM format\r\n2022-05-16T09:19:29.677Z ERROR TLS12Connect>FLAGSHIP-certificate.pem and FLAGSHIP-private.pem.key were properly loaded in the SSL_CTX\r\n2022-05-16T09:19:29.775Z INFO MQTT_SendConnect>Successfully sent\r\n2022-05-16T09:20:13.533Z INFO Connection accepted by the broker\r\n2022-05-16T09:20:13.534Z ERROR The last MQTT request is in Timeout after 30 sec. The Broker is not responding. Verify your connection\r\n2022-05-16T09:20:13.693Z INFO MQTT_SendPublish>Succeeded with packetIdentifier 1\r\n2022-05-16T09:20:18.552Z ERROR MQTT_SendPublish>SSL_Write encounter an error SSL error (6) and return 4294967295. The TLS/SSL connection has been closed.\r\n2022-05-16T09:20:18.553Z ERROR MQTT_SendPublish failed with error 0x80050000\r\n2022-05-16T09:20:23.539Z ERROR MQTT_SendPublish>SSL_Write encounter an error SSL error (1) and return 4294967295. A non-recoverable, fatal error in the SSL library occurred, usually a protocol error\r\n2022-05-16T09:20:23.540Z ERROR MQTT_SendPublish failed with error 0x80050000\r\n2022-05-16T09:20:28.541Z ERROR MQTT_SendPublish>SSL_Write encounter an error SSL error (1) and return 4294967295. A non-recoverable, fatal error in the SSL library occurred, usually a protocol error\r\n2022-05-16T09:20:28.543Z ERROR MQTT_SendPublish failed with error 0x80050000\r\n_\r\n\r\n\r\nLes logs et les traces Wireshark semblent pointer vers un problème au niveau du Broker. Mais quand on lance l\'ancienne configuration, le Vpi se connecte bien et publie pendant quelques jours avant d\'indiquer un message du type :\r\n\r\n_2022-05-16T09:20:28.541Z ERROR MQTT_SendPublish>SSL_Write encounter an error SSL error (1) and return 4294967295. A non-recoverable, fatal error in the SSL library occurred, usually a protocol error\r\n2022-05-16T09:20:28.543Z ERROR MQTT_SendPublish failed with error 0x80050000_\r\n\r\nEst ce que ce serait possible que le VpiMqtt nous donne plus d\'information sur cet erreur SSL ? Est-il possible que ce soit un effet de bord d\'autre chose que le SSL? Les autres fichiers de logs n\'indiquent pas de problème.\r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n ',NULL,NULL,5,432,4,NULL,432,3,'2022-05-20 13:19:43','2022-11-04 16:31:27','2022-05-20',100,NULL,NULL,830,1,2,0,'2022-11-04 16:31:27'),(831,3,100,'Fonctionnement du VFIPostgres en lançant le serveur en tant que service ','Bonjour,\r\n\r\nNous n\'arrivons pas à faire fonctionner le VFI en lançant le serveur en tant que service. \r\nLe VFI n\'indique pas de problème d\'accès à la base mais plutôt un problème par rapport au WarmStart :\r\n\r\n\r\n2022-05-17T14:19:08.007Z SERVER_ERROR StorageThread>VfiWarmStart failed 0x830f0000\r\n2022-05-17T14:19:08.008Z SERVER_ERROR StorageThread>VfiHistoryWrite encounter an error during a save on exception. uStatus=0x83050000\r\n2022-05-17T14:19:08.008Z SERVER_ERROR StorageThread>VfiHistoryWrite encounter an error during a save on exception. uStatus=0x83050000\r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,1,4,NULL,432,7,'2022-05-20 13:23:35','2022-06-24 14:44:07','2022-05-20',100,NULL,NULL,831,1,2,0,'2022-06-24 14:44:07'),(832,3,101,'Retours sur tests Alarmes UaExpert/Genesis','Bonjour M. Condemine, \r\n\r\n\r\nCi dessous un retour sur nos tests sur les alarmes. \r\n\r\nIl ne semble pas y avoir un problème sur les numéro de séquences. \r\n\r\n2 petits bugs constatés : \r\n\r\n\r\n- Lorsque il y a plus que 1 client abonné, le 2 ème ne reçoit pas les nouvelles notifications d\'alarmes. Il arrive à les avoir en faisant un Refresh. (testé avec 2 UaExpert)\r\n- Lorsque l\'on fait un Refresh, l\'heure remontée est l\'heure du Refresh et non l\'heure de la montée de l\'alarme. \r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu \r\nInetum\r\n',NULL,NULL,5,1,4,NULL,432,5,'2022-05-23 11:48:04','2022-10-25 10:18:04','2022-05-23',100,NULL,NULL,832,1,2,0,'2022-10-25 10:18:04'),(833,2,56,'Ajout groupes au NodeSet CMSI','Bonjour Michel,\r\n\r\nPouvez-vous ajouter les groupes ci-dessous dans la liste des groupes à prendre en compte lors de l\'élaboration des ASS du NodeSet CMSI:\r\n\r\nG104 (anime déjà DRG)\r\nG1090 = même fonctionnement que G1008\r\nG1191 = même fonctionnement que G1188\r\n\r\nMerci.\r\n\r\nNorbert','2022-06-10',NULL,5,1,5,110,328,1,'2022-05-24 14:07:59','2022-06-10 15:53:26','2022-05-24',100,NULL,NULL,833,1,2,0,'2022-06-10 15:53:26'),(834,3,103,'Emotors Optimu Connector - GmmToMiddleware 1.0.omi','Bonjour,\r\nle fichier Emotors Optimu Connector - GmmToMiddleware 1.0.omi a été déposé sur le Redmine OOUA.\r\n\r\nIl s\'agit d\'un fichier binaire. \r\nPourriez vous m\'en dire plus sur ce fichier ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,552,4,NULL,1,2,'2022-05-24 15:15:00','2022-11-04 14:46:51','2022-05-24',100,NULL,NULL,834,1,2,0,'2022-11-04 14:46:51'),(835,2,47,'Missing binding','Return an error on saving configuration when the Binding is missing',NULL,NULL,3,1,4,NULL,1,1,'2022-05-27 16:15:45','2022-12-10 20:30:13','2022-05-27',100,NULL,NULL,835,1,2,0,'2022-12-10 20:30:13'),(836,1,98,'Improve SearchNodeClass','SearchNodeClass cannot search completely for UAObject inheritance.\r\nImprove it\'s behavior keeping the loop Limitation active.',NULL,NULL,2,1,4,NULL,1,0,'2022-05-29 22:37:26','2022-05-29 22:37:26','2022-05-29',0,NULL,NULL,836,1,2,0,NULL),(837,1,92,'PumpType as Attirbute','Hello,\r\nPumpType contains an attribut called PumpType.\r\nThis cause an incorrect generation. I fix it by replacing PumpType attribute name by Type. See below\r\n!clipboard-202205311605-z3lg2.png!\r\n\r\nThe whole model need to be checked for other problem like this one\r\n\r\nRegards\r\nMichel Condemine',NULL,NULL,5,NULL,4,NULL,1,1,'2022-05-31 16:06:27','2022-06-30 16:27:08','2022-05-31',100,NULL,NULL,837,1,2,0,'2022-06-30 16:27:08'),(838,1,78,'VPIS7d_v1.0.2.2','Bonjour Michel,\r\n\r\nAprès avoir testé la dernière version du VPIS7 censée supprimer le caractère 13 sur la ligne Stator nous avons remarqué :\r\n\r\nLe caractère 13 semble être supprimé (Image 1) mais :\r\n - Les caractères après le caractère 13 ne sont pas supprimés (\"z\" dans l\'exemple)\r\n - Lorsqu\'avec le client on sélectionne la données, l\'espace du caractère 13 réapparait (Image 2)\r\n -> Le souhait aurez été de pouvoir réécrire directement la chaine depuis le serveur sans l\'espace\r\n\r\nCordialement\r\nLosson Paul',NULL,NULL,5,1,4,NULL,455,2,'2022-06-07 20:10:06','2022-11-04 14:47:09','2022-06-07',100,NULL,NULL,838,1,2,0,'2022-11-04 14:47:09'),(839,1,92,'InputType and OutputType issue','Hello,\r\nStereoTypes are missing on both InputType and OutputType.\r\n\r\nRergards\r\nMichel',NULL,NULL,5,NULL,4,NULL,1,1,'2022-06-07 22:19:37','2022-06-30 16:24:53','2022-06-07',100,NULL,NULL,839,1,2,0,'2022-06-30 16:24:53'),(840,3,81,'Création d\'un type \"Array of Array of String\"','Bonjour M. Condemine,\r\n\r\nJe cherche à créer une variable avec un type \"Array of Array of String\" pour stocker un tableau à 2 dimensions de \"String\". J\'ai cru comprendre qu\'il fallait utiliser le \"DataType\" \"Structure\" mais je n\'arrive pas à la définir correctement.\r\n\r\n\r\nCordialement,\r\nMatthieu Gatine',NULL,NULL,1,1,5,NULL,492,1,'2022-06-10 10:34:30','2022-06-28 17:46:25','2022-06-10',0,NULL,NULL,840,1,2,0,NULL),(841,3,73,'VPI UA Client','Bonjour,\r\n\r\nComme abordé jeudi dernier lors du premier point hebdo, vous trouverez ci-joint une version zippée du serveur sur lequel j\'obtiens l\'erreur 0x803e0000, que ce soit en essai de configuration automatique ou manuelle.\r\n\r\nMerci d\'avance pour votre aide et votre temps, \r\n\r\nValentin DUFIEF',NULL,NULL,5,1,4,NULL,565,1,'2022-06-13 14:38:35','2022-11-17 14:22:49','2022-06-13',100,NULL,NULL,841,1,2,0,'2022-11-17 14:22:49'),(842,3,78,'Certificats Open OPC UA','Bonjour Michel,\r\nEn tâche de fond je tente de faire marcher le système de certificats sur les serveur OOUA.\r\nC\'est un point que j\'aimerai souvent aborder lors de notre rendez vous du vendredi mais il y a toujours plus urgent.\r\nJ\'ai essayé de mon côté de mettre dans le dossier \\Project\\CertificateStore\\certs un certificat au format .der\r\nEt dans le dossier \\Project\\CertificateStore\\private sa clé privé au format .pem\r\nen essayant de me connecter via UAExpert le Client n\'arrive pas à charger les fichiers de certificats et j\'ai également eu des erreurs avec d\'autres clients.\r\nMa manière de procéder était elle la bonne ? Le système de certificat sous OOUA est il fonctionnel ?\r\nMerci\r\n\r\nCordialement\r\nLosson Paul',NULL,NULL,5,1,3,NULL,455,2,'2022-06-15 18:32:34','2022-11-04 14:47:29','2022-06-15',100,NULL,NULL,842,1,2,0,'2022-11-04 14:47:29'),(843,1,103,'Acces plateforme Qualaxy','Bonjour,\r\nla combinaison user/password EMOTORS/Vejk45(8i@so8! ne permet pas d\'accéder à https://infodream-maq1.infodreamgroup.com/ \r\nPourriez vous vérifier ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,NULL,7,NULL,1,2,'2022-06-16 06:43:17','2022-06-16 08:44:34','2022-06-16',100,NULL,NULL,843,1,2,0,'2022-06-16 08:44:34'),(844,1,96,'Serveur OPCUA d\'agrégation','Bonjour Michel,\r\nNous avançons dans la définition de notre Model, mais en parallèle je fais quelques tests et j\'aimerais faire un teste une architecture père fils.\r\nNous envisageons pour notre projet OPCUA a créé des petits serveurs OPCUA par appareil puis avoir un serveur père qui récupère la conf de chacun des serveurs fils et met à disposition toutes les variables.\r\nCela est-il envisageable et si oui auriez-vous un exemple de serveur client OPCUA en conf auto par hasard?\r\nLe but est de tester les temps de réponse et d\'identifier les contraintes potentielles.\r\n\r\nMerci\r\n\r\nBonne Journée\r\n\r\nCyril',NULL,NULL,1,1,4,NULL,528,0,'2022-06-16 09:04:08','2022-06-16 09:04:08','2022-06-16',0,NULL,NULL,844,1,2,0,NULL),(845,1,73,'Bug VPI MdbMaster','Bonjour,\r\n\r\nJe viens vers vous car je constate depuis hier un bug sur le VPI MdbMaster. Suite à notre conversation de Mardi, j\'ai déployé sur un PC sur site le serveur d\'Avrieux en version débug, ce qui a résolu le problème des crashs que j\'observais avec la version Release.\r\n\r\nCependant, les VPI MdbMaster que l\'on a sur le serveur ont un comportement étrange, en effet ils s\'arrêtent tout seul au bout d\'un certain temps, parfois 1 minute, parfois 10 minutes, et ceci avec plusieurs configurations différentes (interblock timeout et polling rate, certains VPI désactivés). Le VPI semble redémarrer quelques fois tout seul, mais il ne redémarre plus au bout d\'un moment. En analysant avec Wireshark, on remarque qu\'il existe toujours des requêtes sur les ports, mais que les ports renvoient une trame vide. Au final, le serveur tourne encore mais sans aucune nouvelle donnée.\r\n\r\nJe vous joins en PJ des exemples de fichier log de différents VPI, qui comportent quelques messages mais je ne sais pas comment les interpréter, ainsi que le log du VPI MbdServer que l\'on utilise, qui montre qu\'aucune nouvelle donnée ne remonte. Il semble y avoir un timeout dans les logs des VPI, mais je ne pense pas que la communication Modbus soit en cause, car je me suis connecté directement en Modbus sur les DB depuis notre logiciel de supervision et cela semble stable. Savez-vous s\'il y a un paramètre de configuration à changer de notre côté ?\r\n\r\nMerci d\'avance pour votre aide et votre temps,\r\n\r\nValentin DUFIEF',NULL,NULL,5,1,4,NULL,565,5,'2022-06-16 12:11:06','2022-11-17 14:23:02','2022-06-16',100,NULL,NULL,845,1,2,0,'2022-11-17 14:23:02'),(846,1,103,'Otention d’un Acces token','Bonjour,\r\nAfin de réaliser des tests j\'ai besoin obtenir un Acces token. \r\nMalheureusement je ne comprends pas bien la procédure décrite dans le document QualaxyApiTestsPlateforme.\r\nPourriez vous me fournir plus de détails et/ou un step-by-step.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,3,NULL,7,NULL,1,15,'2022-06-16 18:00:27','2022-06-21 10:08:36','2022-06-16',100,NULL,NULL,846,1,2,0,'2022-06-21 10:05:35'),(847,1,78,'Ximulator TypeDefinition issue','',NULL,NULL,2,1,4,NULL,1,2,'2022-06-17 17:22:59','2022-07-11 21:02:58','2022-06-17',0,NULL,NULL,847,1,2,0,NULL),(848,1,103,'Documentation','Bonjour,\r\nj\'ai bien avancé sur le Vpi et l\'architecture prend forme. J\'ai importé le schéma XSD que vous avez fournit et créé le modèle OPC UA associé.\r\nJe dois maintenant créer le Data flow et la logique fonctionnelle associé. \r\nDans l\'état, la documentation des methods REST est assez pauvre. \r\nSWAGGER est un bel outil mais il est difficile de deviner ce que fait une méthode.\r\nPourriez vous fournir plus d\'explication sur chacune d\'entre elles ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,1,550,7,NULL,1,1,'2022-06-21 22:28:38','2022-06-22 11:42:28','2022-06-21',0,NULL,NULL,848,1,2,0,NULL),(849,3,75,'ConfigManager0.1.0 sauvegarde de projet avec nodeset de type Ximulator1.0.4.9 et nodeset d instance Siome','Rebonjour,\r\n\r\nnous avons retesté avec le configManager livré et nous avons toujours un crash lors de la sauvegarde du projet.\r\nveuillez trouver ci-joint le nodeset de types et d\'instances.\r\n\r\nCordialement\r\nEquipe Inetum',NULL,NULL,5,1,4,NULL,545,2,'2022-06-22 16:20:39','2022-06-29 21:28:30','2022-06-22',100,NULL,NULL,849,1,2,0,'2022-06-29 21:28:30'),(850,1,97,'Sampling Rate | Trigger Type etc.','Do we need to define this in instantiation or nodeset ? ',NULL,NULL,2,NULL,4,NULL,572,1,'2022-06-22 17:10:14','2022-06-22 19:51:02','2022-06-22',0,NULL,NULL,850,1,2,0,NULL),(851,1,75,'Generation','Bonjour,\r\nJe viens de générer ce nodeset à partir de ce binaire.\r\n\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n',NULL,NULL,5,1,4,NULL,1,4,'2022-06-23 11:10:17','2022-08-02 16:39:57','2022-06-23',100,NULL,NULL,851,1,2,0,'2022-08-02 16:39:57'),(852,1,103,'Media type','Bonjour,\r\nquand j\'essaie d\'appeler un méthode de l\'API qui utilise des paramètres j\'obtiens un erreur 415 \"invalid media type\"\r\nJ\'en ai essayer plusieurs lequel est le bon ?\r\n\r\nmerci\r\nMichel Condemine',NULL,NULL,5,550,7,NULL,1,3,'2022-06-24 11:15:39','2022-11-04 14:49:08','2022-06-24',100,NULL,NULL,852,1,2,0,'2022-11-04 14:49:08'),(853,1,104,'Erreur lors du lancement du service','Bonjour.\r\n\r\nNous avons installé notre client en mode service windows, mais celui-ci refuse de se lancer.\r\nLe service est installé en utilisant le compte Network service. Ce compte a les droits complets sur le répertoire.\r\nA la première tentative de démarrage du service, l’erreur apparait au bout de plusieurs secondes. Les fois suivantes, l’erreur apparait tout de suite.\r\nAutre information, le server fonctionne très bien en mode console (il est lancé comme cela en ce moment).\r\n\r\nEn PJ vous trouverez un zip du dossier complet d\'installation et la copie d\'écran de l\'erreur.\r\n\r\nJ\'espère que vous aurez suffisamment d\'éléments.\r\n\r\nLe client est proche du démarrage, c\'est très impactant pour nous.\r\n\r\nMerci beaucoup.\r\n\r\n',NULL,NULL,3,553,5,NULL,553,6,'2022-06-24 16:01:10','2022-07-29 15:06:51','2022-06-24',100,NULL,NULL,853,1,2,0,'2022-07-29 15:06:51'),(854,2,103,'Résultat des tests VpiOptimu et VpiQualaxy','Bonjour,\r\n\r\nEn pièce-jointe, une description des tests exécutés sur le VpiOptimu, les résultats attendus et les résultats obtenus sur la v1.0.0.1.\r\nCela clarifiera le comportement que doit avoir le VpiOptimu.\r\n\r\nCordialement,\r\nNicolas Pierson',NULL,NULL,2,1,4,NULL,549,3,'2022-06-24 18:00:16','2022-09-23 14:26:29','2022-06-24',0,NULL,NULL,854,1,2,0,NULL),(855,3,75,'Question sur les références HasHistoricalConfiguration','Bonjour M. Condemine, \r\n\r\nEst-ce possible de déclarer la référence HasHistoricalConfiguration entre une variable et la configuration depuis le fichier d\'instance de l\'objet HistoricalConfiguration et inverser le sens de la relation et la target ? (Au lieu de leu faire depuis le fichier d\'instances de la variable vers l\'objet HistoricalConfiguration ) \r\n\r\nL\'objectif est de le faire lors de l\'historisation des nœuds supplémentaires sur la VM Imerys de Lixhe afin de pouvoir conserver ces références en cas de régénération des instances.\r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu ',NULL,NULL,5,1,4,NULL,432,2,'2022-06-27 13:46:06','2022-11-04 16:38:58','2022-06-27',100,NULL,NULL,855,1,2,0,'2022-11-04 16:38:58'),(856,1,97,'PgSql','Hello,\r\nCan you share you configuration.\r\nI wish to double check it.\r\n\r\nRegards\r\nMichel',NULL,NULL,1,572,4,NULL,1,1,'2022-06-27 21:03:23','2022-06-27 21:41:18','2022-06-27',100,NULL,NULL,856,1,2,0,NULL),(857,1,100,'Log Mqtt','Bonjour,\r\nje me suis logger sur le serveur de Lixhe et j\'ai constaté que le log que Vpi Mqtt grossit de manière trop rapide.\r\nC\'est lié au niveau de log actuellement paramétré (INFO) \r\nPourriez vous le passer en ERROR.\r\n\r\nCordialement\r\nMichel Condemine\r\n',NULL,NULL,3,546,7,NULL,1,1,'2022-06-28 09:14:44','2022-11-03 15:48:24','2022-06-28',100,NULL,NULL,857,1,2,0,'2022-11-03 15:48:24'),(858,2,92,'FlowMeterType and DensityMeter Update','Add attribute to determine %solide, Density // MassFlow, Dry MassFlow',NULL,NULL,5,NULL,6,NULL,510,1,'2022-06-28 13:56:01','2022-07-04 16:49:25','2022-06-28',100,NULL,NULL,858,1,2,0,'2022-07-04 16:49:25'),(859,1,75,'Gestion des tableaux de String par le Server et par le VpiValuesInit','Bonjour,\r\n\r\nDans le cadre d\'une US Phase 2 eMotors, nous rencontrons 2 soucis avec la gestion des tableau de string\r\n\r\n1) Initialisation d\'un tableau de String Vide manipulable par UaExpert (essayé avec dernières versions du serveur IPV4 et IPV6)\r\n\r\n2) un crash au niveau du VpiValuesInit lors de la restitution de la dernière valeur pour un tableau de String\r\n\r\n\r\n\r\nCi joint une maquette permettant de reproduire les deux comportements (il faut mettre à jour les fichiers .dat du Vfi et VpiValuesInit avec les informations de connexion à votre base)\r\n\r\n1) Pour reproduire le comportement, faire un démarrage sans VpiValuesInit, le serveur démarre mais le noeud Objects->LineUsinage_Cover->FBDSC-> TrackIdList n\'est pas valorisable par UaEcpert\r\n\r\n2) Pour reproduire le comportement, faire un démarrage sans VpiValuesInit en forçant une valeur dans le tableau (nous avons réussi à le valoriser avec notre VpiLine), le noeud est bien archivé par le VfiPostgres. Sur un redémarrage avec le VpiValuesInit activé, nous obtenons un crash avec la pile d\'appel suivante : \r\n\r\n!clipboard-202206281405-ljbkv.png!\r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu',NULL,NULL,5,1,4,NULL,432,6,'2022-06-28 14:08:18','2022-06-30 09:38:41','2022-06-28',100,NULL,NULL,859,1,2,0,'2022-06-29 22:27:10'),(860,1,103,'VpiOptimu Test P1+P4','Bonjour,\r\nsouhaitez vous qu\'un enregistrement existant puis être mise à jour à partir du fichier PLM et pas seulement créé ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,549,4,NULL,1,2,'2022-06-28 14:57:24','2022-06-29 09:55:09','2022-06-28',100,NULL,NULL,860,1,2,0,'2022-06-29 09:55:09'),(861,1,103,'Test P6','Bonjour,\r\nque souhaitez vous que l\'on fasse si le fichier PLM contient un mix d\'enregistrements valides et invalide ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,549,4,NULL,1,2,'2022-06-28 15:42:48','2022-06-29 09:55:31','2022-06-28',100,NULL,NULL,861,1,2,0,'2022-06-29 09:55:31'),(862,3,75,'Questions sur structures pour encodeur décodeur générique','Bonjour, \r\n\r\n\r\nCi dessous 3 questions sur les structures pour l\'encodeur/décodeur générique :\r\n\r\n1) Est ce que OpenOpcUa_StructureDescription et OpenOpcUa_AttributeDescription seront utilisés ou bien étaient-ce des alternatives à OpenOpcUa_Field et OpenOpcUa_Definition ?\r\n\r\n\r\n2) On a une variable dans l\'addresse space de type tableau de Recipes. \r\nEst-ce qu\'on initialise un unique OpenOpcUa_Definition pour le tableau de UDT ou bien est-ce qu\'on initialise un OpenOpcUa_Definition par élément du tableau ? \r\n\r\n3) Lorsque un UDT ERP_Of contient un attribut PartData de type tableau de PartProduce: \r\nEst-ce que l\'accès au premier partproduce ce fait à travers :\r\n \r\n- m_ppFields (le field qui concerne l\'attribut Part_Data) puis Value puis Value puis Array puis ExtensionObjectArray\r\n\r\nou bien \r\n\r\n-m_ppFields (le field qui concerne l\'attribut Part_Data) puis m_pDefinition où m_pDefinition aura autant d\'élément que de PartProduce au niveau de l\'attribut PartData de l\'ERP OF \r\n\r\nou bien \r\n\r\n- tout autre moyen ? \r\n\r\nDe plus ou aura-t-on la taille du tableau de PartProduce PartData? \r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum',NULL,NULL,5,1,4,NULL,432,1,'2022-06-28 18:03:34','2022-11-04 16:39:32','2022-06-28',100,NULL,NULL,862,1,2,0,'2022-11-04 16:39:32'),(863,1,103,'EndValidity ','Bonjour Nicolas,\r\nvous indiquez dans vos tests que EndValidity n\'est jamais MAJ.\r\ncependant sur ma plateforme il est bien MAJ. Pourrions nous avoir un point rapide dans l\'AM a ce sujet ?\r\n\r\nCordialement\r\nMichel\r\n',NULL,NULL,1,NULL,4,NULL,1,0,'2022-06-29 11:59:39','2022-06-29 11:59:39','2022-06-29',0,NULL,NULL,863,1,2,0,NULL),(864,1,100,'Erreur de configuration','Bonjour,\r\nle ConfigManager a détecté plusieurs erreurs de configuration dans les SubSystem. \r\n*Pourriez vous corriger ces erreurs ?*\r\nJ\'ai utilisé la version du 28/6/2022.\r\n\r\n<pre>\r\n2022-06-30T17:39:16.819 Critical configuration error HW-Address DB.003F.000A NodeId= ns=79;i=3300 is not properly configured uStatus : 0x80330000\r\n\r\n2022-06-30T17:39:17.418 Critical configuration error HW-Address DB.002F.01DA NodeId= ns=8;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:17.557 Critical configuration error HW-Address DB.002F.01DE.5 NodeId= ns=8;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:17.685 Critical configuration error HW-Address DB.002F.01DE.6 NodeId= ns=8;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:17.821 Critical configuration error HW-Address DB.0029.00EA NodeId= ns=10;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:17.944 Critical configuration error HW-Address DB.0029.012C NodeId= ns=10;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:18.061 Critical configuration error HW-Address DB.002F.0042 NodeId= ns=10;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:18.180 Critical configuration error HW-Address DB.002F.0046.5 NodeId= ns=10;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:18.288 Critical configuration error HW-Address DB.002F.0046.6 NodeId= ns=10;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:18.422 Critical configuration error HW-Address DB.0029.00EA NodeId= ns=21;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:18.569 Critical configuration error HW-Address DB.0029.0132 NodeId= ns=21;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:18.682 Critical configuration error HW-Address DB.002F.0042 NodeId= ns=21;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:18.798 Critical configuration error HW-Address DB.002F.0046.6 NodeId= ns=21;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:18.927 Critical configuration error HW-Address DB.002F.0058.5 NodeId= ns=21;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:19.058 Critical configuration error HW-Address DB.0029.00DE NodeId= ns=12;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:19.171 Critical configuration error HW-Address DB.0029.013E NodeId= ns=12;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:19.308 Critical configuration error HW-Address DB.002F.01CE NodeId= ns=22;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:19.428 Critical configuration error HW-Address DB.002F.01D2.5 NodeId= ns=22;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:19.560 Critical configuration error HW-Address DB.002F.01D2.6 NodeId= ns=22;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:19.675 Critical configuration error HW-Address DB.0029.00C6 NodeId= ns=39;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:19.796 Critical configuration error HW-Address DB.0029.014A NodeId= ns=39;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:19.922 Critical configuration error HW-Address DB.002F.0030 NodeId= ns=39;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:20.041 Critical configuration error HW-Address DB.002F.0034.5 NodeId= ns=39;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:20.168 Critical configuration error HW-Address DB.002F.0034.6 NodeId= ns=39;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:20.288 Critical configuration error HW-Address DB.0029.00AE NodeId= ns=41;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:20.416 Critical configuration error HW-Address DB.0029.013E NodeId= ns=41;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:20.539 Critical configuration error HW-Address DB.002F.0036 NodeId= ns=41;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:20.662 Critical configuration error HW-Address DB.002F.003A.5 NodeId= ns=41;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:20.788 Critical configuration error HW-Address DB.002F.003A.6 NodeId= ns=41;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:20.942 Critical configuration error HW-Address DB.0029.00BA NodeId= ns=43;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:21.067 Critical configuration error HW-Address DB.0029.0144 NodeId= ns=43;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:21.199 Critical configuration error HW-Address DB.002F.01D4 NodeId= ns=47;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:21.328 Critical configuration error HW-Address DB.002F.01D8.5 NodeId= ns=47;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:21.465 Critical configuration error HW-Address DB.002F.01D8.6 NodeId= ns=47;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:21.600 Critical configuration error HW-Address DB.002F.00B2.5 NodeId= ns=50;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:21.730 Critical configuration error HW-Address DB.002E.0074.0 NodeId= ns=50;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:21.855 Critical configuration error HW-Address DB.002F.00AE NodeId= ns=50;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:21.989 Critical configuration error HW-Address DB.0029.008A NodeId= ns=52;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:22.130 Critical configuration error HW-Address DB.002F.001C.5 NodeId= ns=52;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:22.268 Critical configuration error HW-Address DB.002F.001C.6 NodeId= ns=52;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:22.405 Critical configuration error HW-Address DB.002F.0018 NodeId= ns=52;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:22.541 Critical configuration error HW-Address DB.0029.00A2 NodeId= ns=53;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T17:39:22.703 Critical configuration error HW-Address DB.0029.0096 NodeId= ns=54;i=1203 is not properly configured uStatus : 0x80330000\r\n</pre>\r\n\r\n',NULL,NULL,5,546,6,NULL,1,9,'2022-06-30 17:44:49','2022-11-03 15:44:54','2022-06-30',100,NULL,NULL,864,1,2,0,'2022-11-03 15:44:54'),(865,3,75,'Appel de la VpiNotifyCallback depuis VpiLine bloquante avec Core Server 1.0.7.3 IPV4 livrée le 30/06','Bonjour, \r\n\r\nLe moyen d\'appeler la NotifyCallback a -elle changée avec la nouvelle dynamique de démarrage ? \r\n\r\nLe VpiLine n\'a pas de retour du Serveur lors de l\'appel à la NotifyCallback pour mettre à jour son Device State au démarrage du Vpi :\r\n\r\n!clipboard-202206301755-onjdc.png!\r\n\r\n\r\nCette fonction est appelée dès le lancement de la VpiLineThread. \r\n\r\nLa fonction NotifyCallback a t-elle maintenant besoin de la mutex sur la cache du Vpi ? \r\n\r\nCordialement, \r\n\r\nMichael ',NULL,NULL,5,1,4,NULL,432,9,'2022-06-30 18:04:19','2022-11-04 16:40:12','2022-06-30',100,NULL,NULL,865,1,2,0,'2022-11-04 16:40:12'),(866,3,101,'Retour Alarmes OOUA version binaire Debug-IPV4-30-06-2022-v1.0.7.3','Bonjour,\r\n\r\nCi-joint le retour sur les alarmes (2 fichiers):\r\n\r\n- Un fichier texte liste Bugs-Alarmes.\r\n- Un fichier qui contient les traces WireShark pour chaque Beug.\r\n\r\nCordialement,\r\nEquipe Inetum',NULL,NULL,5,545,4,NULL,545,3,'2022-07-01 14:35:39','2022-10-25 10:17:33','2022-07-01',100,NULL,NULL,866,1,2,0,'2022-10-25 10:17:33'),(867,3,101,'Retour Alarmes OOUA version binaire Debug-IPV4-30-06-2022-v1.0.7.3 - Beug1','\r\nBonjour, \r\n\r\nci-dessous une description du Beug1 et ci-joint les traces WireShark\r\n\r\n---------------------\r\nEnvironnement\r\n---------------------\r\n\r\n-VM WIN Emotors 8 Back Office\r\n-Serveur d’alarmes OOUA version binaire Debug-IPV4-30-06-2022-v1.0.7.3\r\n-Genesis version 10.97.1 CFR2\r\n\r\n\r\n-------------------\r\nPréconditions\r\n------------------\r\n- Configurer une IHM AlarmWorks Viewer\r\n- Se connecter à un serveur d’alarmes OOUA version binaire Debug-IPV4-30-06-2022-v1.0.7.3 via UAExpert et Genesis en client HTTP\r\n\r\n\r\nBug 1 :\r\n\r\n-----------\r\nActions\r\n-----------\r\n\r\n- Générer Deux alarmes via UAExpert\r\n- Acquitter dans Genesis une seule alarme parmi les deux alarmes générées sans la désactiver \r\n- Rafraichir la page d’alarme (navigateur web)\r\n\r\n\r\n-------------------------\r\nRésultats obtenus\r\n-------------------------\r\nLes deux alarmes ne sont plus affichées dans la page d’alarme\r\n\r\n\r\n-------------------------\r\nRésultats attendus\r\n-------------------------\r\nLes deux alarmes devraient s’afficher dans la page d’alarme.\r\n\r\nN.B : ce bug est reproductible à partir de la génération de deux alarmes et plus.\r\n\r\n-------------------------\r\nAnalyse des traces (port 3885 en OPC UA) Bug1.pcapng\r\n-------------------------\r\n\r\nCommunication Genesis filtrable par @IP 172.17.202.11\r\nCommunication UAExpert filtrable par @IP 127.0.0.1\r\n\r\nPaquets 153 et 329 = Ecriture sur les booléens par UaExpert pour lever les alarmes\r\nPaquet 161 Première Alarme\r\nPaquet 335 Deuxième Alarme\r\nPaquet 595 Réponse acquittement de l’alarme\r\nPaquet 984 CreateMonitoredItemsRequest lors de la raffraichisement de la page\r\n\r\nCordialement \r\nEquipe Inetum\r\n',NULL,NULL,3,1,4,NULL,545,6,'2022-07-01 15:35:29','2022-11-03 11:54:38','2022-07-01',100,NULL,NULL,867,1,2,0,'2022-11-03 11:54:38'),(868,3,101,'Retour Alarmes OOUA version binaire Debug-IPV4-30-06-2022-v1.0.7.3 - Beug2','Bonjour,\r\n\r\nCi-dessous une description du beug et ci-joint les traces wireShark\r\n\r\nBug 2 :\r\n\r\n-----------\r\nActions\r\n-----------\r\n\r\n- Générer une alarme via UAExpert\r\n- Acquitter l’alarme générée dans Genesis en saisissant un commentaire « toto »\r\n- Désactiver l’alarme\r\n- Régénérer la même alarme \r\n\r\n-------------------------\r\nRésultats obtenus\r\n-------------------------\r\n- L’alarme regénérée est affichée avec le commentaire « toto »\r\n- Impossible d’acquitter l’alarme\r\n\r\n-------------------------\r\nRésultats attendus\r\n-------------------------\r\n- L’alarme regénérée devrait apparaitre avec un commentaire vide.\r\n- L’alarme regénérée devrait être acquittée\r\n\r\nCordialement,\r\nEquipe Inetum\r\n',NULL,NULL,3,1,4,NULL,545,4,'2022-07-01 15:38:36','2022-10-25 10:23:12','2022-07-01',100,NULL,NULL,868,1,2,0,'2022-10-25 10:23:12'),(869,3,101,'Retour Alarmes OOUA version binaire Debug-IPV4-30-06-2022-v1.0.7.3 - Beug3','Bonjour,\r\n\r\nCi-dessous une description du beug et ci joint les traces wireshark\r\n\r\nBug 3 :\r\n\r\n-----------\r\nActions\r\n-----------\r\n\r\n- Générer une alarme via UAExpert\r\n- Acquitter l’alarme générée dans Genesis en saisissant un commentaire « toto »\r\n- Désactiver l’alarme\r\n- Régénérer la même alarme L’alarme regénérée est affichée avec le commentaire « toto » (bug 2)\r\n- Rafraichir la page d’alarme (navigateur web) Disparition du commentaire « toto » et possibilité d’acquittement\r\n- Acquitter l’alarme et la désactiver\r\n- Regénérer la même alarme\r\n\r\n-------------------------\r\nRésultats obtenus\r\n-------------------------\r\n- L’alarme regénérée n’est pas affichée\r\n- Les notifications d’alarmes ne sont plus affichées (même en générant de nouvelles alarmes)\r\n\r\n\r\n-------------------------\r\nRésultats attendus\r\n-------------------------\r\n\r\n- L’alarme regénérée devrait s’afficher\r\n-Les notifications d’alarmes devraient s’afficher en générant de nouvelles alarmes\r\n\r\n\r\n-------------------------\r\nAnalyse des traces (port 3885 en OPC UA) Bug3.pcapng à partir du rafraîchissement de la page d’alarme\r\n-------------------------\r\n\r\nCommunication Genesis filtrable par @IP 172.17.202.11\r\nCommunication UAExpert filtrable par @IP 127.0.0.1\r\n\r\nPaquet 1001 6 évènements (2 fois refreshStart, 2 fois refreshEnd, 2 fois l’Alarme)\r\nPaquet 1629 double notification de l’acquittement de l’alarme \r\nPaquet 1869 3 évènements de notification de mise à bas \r\nPaquet 2025 notification d’alarme suite à la regénéfation finale de l’alarme (qui n’est pas affichée par Genesis pour une raison inconnue)\r\n\r\n\r\n\r\nCordialement,\r\nEquipe Inetum ',NULL,NULL,3,1,4,NULL,545,2,'2022-07-01 15:41:35','2022-11-03 11:56:01','2022-07-01',100,NULL,NULL,869,1,2,0,'2022-11-03 11:56:01'),(870,1,103,'Invocation Tools POST','Bonjour,\r\nje rencontre un comportement atypique avec la methode Tools lors de la création d\'outils.\r\nLe Body de la requête est le suivant \r\n<pre><code class=\"java\">\r\n{\r\n \"shortName\": \"METCTL-050001-0499\",\r\n \"longName\": \"Étalon moyen B2\",\r\n \"typeOutillage\": \"Optimu\",\r\n \"lastValidation\": \"2022-07-03T16:11:34.392Z\",\r\n \"endValidity\": \"1601-01-01T00:00:00.000Z\",\r\n \"valide\": true,\r\n \"count\": 0,\r\n \"verificationName\": \"OptimuPasVerifInterne\"\r\n}\r\n</code></pre>\r\n\r\n*L\'outil est bien créé mais l\'appel retourne un Bad Request (400)*\r\nComme vous pouvez le noter le format de l\'heure des ISO8601 UTC comme convenu avec EMOTORS.\r\nEst ce qu\'une heure à 0 (1-1-1601) pose problème ?\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,550,7,NULL,1,4,'2022-07-03 19:47:28','2022-11-04 14:50:22','2022-07-03',100,NULL,NULL,870,1,2,0,'2022-11-04 14:50:22'),(871,2,92,'GrinderType - ','In GrinderTypeObject Replace the attribute Tank:TankType by Tank:ContainerType',NULL,NULL,5,NULL,4,NULL,510,1,'2022-07-04 13:45:45','2022-07-04 16:39:32','2022-07-04',100,NULL,NULL,871,1,2,0,'2022-07-04 16:39:32'),(872,5,103,'VPI_Optimu version IPV4','Bonjour Michel,\r\nserait-il possible d\'avoir la Maquette VPI Optimu en version IPV4 pour nos tests si cela ne vous prends pas trop de temps\r\nMerci\r\n\r\nCordialement\r\nLosson Paul',NULL,NULL,5,1,3,296,455,1,'2022-07-05 10:27:44','2022-07-06 13:45:58','2022-07-05',100,NULL,NULL,872,1,2,0,'2022-07-06 13:45:58'),(873,3,78,'Dernier modèle','Bonjour,\r\npourriez vous me faire parvenir, à des fins de tests, la dernière version du modèle.\r\n\r\nCordialement\r\nMichel Condemine',NULL,NULL,5,447,4,NULL,1,2,'2022-07-06 13:24:04','2022-07-22 14:17:26','2022-07-06',100,NULL,NULL,873,1,2,0,'2022-07-22 14:17:26'),(874,1,95,'Impossible de lancer le serveur','Bonjour,\r\n\r\nj\'ai essayé de lancer le serveur de la démo Lua sans succès\r\nProblme de DLL MSVCR120.dll manquant.\r\n!MSVRCR120.JPG!\r\n\r\nAvez-vous eu ce genre de probleme ? que faire ? \r\n\r\nmerci d\'avance, \r\n\r\nMarc\r\n',NULL,NULL,5,1,4,NULL,496,5,'2022-07-06 17:10:32','2022-07-06 17:29:41','2022-07-06',100,NULL,NULL,874,1,2,0,'2022-07-06 17:18:58'),(875,3,100,'Stabilité du serveur','Bonjour,\r\nSunil et PH me rapporte des instabilité du serveur (Crash).\r\nAvez vous surveillé le serveur ces derniers jours ?\r\n\r\nCordialement\r\nMichel',NULL,NULL,5,NULL,4,NULL,1,2,'2022-07-07 21:41:07','2022-10-25 10:30:32','2022-07-07',100,NULL,NULL,875,1,2,0,'2022-10-25 10:30:32'),(876,2,92,'EquipmentBaseType. Attribute : LocationInFactory need tobe mandatory.','For me, the attribute LocationInFactory in EquipmentBaseType should be set \"mandatory\"',NULL,NULL,1,NULL,4,NULL,510,0,'2022-07-11 15:04:07','2022-07-11 15:04:07','2022-07-11',0,NULL,NULL,876,1,2,0,NULL),(877,2,71,'Voir problème d\'enregistrement / démarrage service OPCUA time out','Comme discuté par téléphone, veuillez trouver ci attaché le zip du soft tel que sauvegardé sur notre serveuyr de données par Dominique\r\n\r\nJ\'ai ajouté un fichier cible pour la source de données (c:\\simpatic3\\simpatic\\data\\dots.ini) que j\'ai ajouté dans le fichier \r\nDont j\'ai ajouté le chemin dans c:\\OPC_UA_TECHPAP\\Project\\TechPap-00200.dat',NULL,NULL,1,1,4,NULL,575,0,'2022-07-12 14:03:56','2022-07-12 14:03:56','2022-07-12',0,NULL,NULL,877,1,2,0,NULL),(878,2,92,'PumpType --> remove Regulation attribute?','PumpType --> remove Regulation attribute? because regulation attribute is a attribute of MotorType (attribute of pump)',NULL,NULL,1,NULL,4,NULL,510,0,'2022-07-12 15:46:29','2022-07-12 15:46:29','2022-07-12',0,NULL,NULL,878,1,2,0,NULL),(879,3,101,'retour Historical Access ','Bonjour,\r\n\r\nVeuillez trouver ci-joint les traces WireShark entre genesis et le serveur HA.\r\n\r\nAnalyse des traces (port 6010 en OPC UA / 54819 Genesis)\r\npaquet 41384 demande de lecture HA par Genesis \"HistoryReadRequest\", le serveur doit répondre avec un \"HistoryReadResponse\" et un \"PublishResponse\"\r\ndans cette étape de communication ( paquet 41384) le serveur répond seulement par un \"PublishResponse\" il manque le paquet de \"HistoryReadResponse\" dans lequel il y a les valeurs des nœuds historisés. \r\n\r\n\r\nCordialement,\r\nEquipe Inetum',NULL,NULL,5,1,5,NULL,545,19,'2022-07-13 13:42:42','2022-08-03 17:16:16','2022-07-13',100,NULL,NULL,879,1,2,0,'2022-08-03 14:50:55'),(880,2,92,'Gearbox object need to be updated.','Need to add in gearbox Object, the LubrificationDeviceType. \r\nAnd add ea attribute PumpType in LubrificationDeviceType',NULL,NULL,1,NULL,4,NULL,510,0,'2022-07-14 11:18:08','2022-07-14 11:18:08','2022-07-14',0,NULL,NULL,880,1,2,0,NULL),(881,1,89,'VpiS7 Enum support','Some enum are collected from the PLC as Boolean or Int16. Enum arre always Int32 in OPC UA so the VPIS7 need to convert from Boolean to Int32 or from Int16 to Int32.\r\nIE: BS3-->StartMechanism and BS3-->Status\r\n\r\n',NULL,NULL,2,1,4,NULL,1,0,'2022-07-15 17:37:56','2022-07-15 17:37:56','2022-07-15',0,NULL,NULL,881,1,2,0,NULL),(882,1,94,'Ecriture Ack vers le PLC ne fonctionne pas','Sur la ligne Stator, nous avons un soucis où l\'écriture du Node Ack ne se passe pas en mode PostPoned\r\n\r\n',NULL,NULL,3,NULL,4,NULL,447,3,'2022-07-19 12:06:11','2022-11-04 14:16:54','2022-07-19',100,NULL,NULL,882,1,2,0,'2022-11-04 14:16:54'),(883,3,101,'Problème de chargement de VPi au delà d\'un certain nombre de tags','Bonjour, \r\n\r\nNous préparons l\'intégration de nos développements Sprint 1 avec les binaires Core Server au nom de \"Livraison Binaires Debug-IPV4 - 30-6-2022_v1.0.7.4\" et rencontrons des soucis lors du testing\r\n\r\n\r\nLe serveur semble bloqué sur le chargement du Vpis lorsque l\'on atteint un certain nombre de noeuds\r\n\r\nPour analyser j\'ai mis dans en PJ 2 Configuration, un serveur LM Small pour lequel le fichier de mapping VpiLine contient 1 Data Collect et 1 Data Request et un serveur LM Big pour lequel le fichier de mapping VpiLine contient 15 Data Collect et 3 Data Request. \r\n\r\nLa configuration LM Small démarre systématiquement. \r\nLa configuration LM Big est souvent bloquée lors du chargement du VpiLine. Lorsque la machine sur laquelle tourne le serveur est chargée, la configuration se charge avec une fréquence plus faible\r\n\r\n\r\nLe chargement ou non du VpiLine est indiqué par la présence ou non d\'un message sur la console mais peut aussi être vu au niveau des logs Serveur. \r\n\r\nEn production eMotors tourne avec jusqu\'à 80 DataCollect. \r\n\r\n\r\nJ\'ai testé les limites (qui semblent variés avec la charge et specs de la machine). Sur mon PC ça semble être vers 13 Data Collect (soit environ 1700 Tags) \r\n\r\n\r\nNous n\'avons pas testés avec les livraisons CoreServer après le 30 juin car ce sont celles que nous nous sommes entendus pour livrer à eMotors. \r\n\r\n\r\nNous vous remercions d\'avance pour votre temps, \r\n\r\nL\'équipe Inetum. \r\n\r\n',NULL,NULL,3,1,6,NULL,432,7,'2022-07-21 20:29:37','2022-07-28 09:04:19','2022-07-21',100,NULL,NULL,883,1,2,0,'2022-07-28 08:36:36'),(884,3,73,'Concaténation de nodes','Bonjour Mr Condemine,\r\n\r\nJ\'avais un point à aborder avec vous que je n\'ai pas eu le temps d\'aborder hier, je souhaitais savoir s\'il était possible à l\'intérieur du serveur de réaliser des concaténations de nodes ?\r\n\r\nJe m\'explique, je dois récupérer 16 bits d\'alarmes sur un 1500 via le VPI UA Client, ce qui ne pose aucun soucis, mais la lecture sur notre logiciel de supervision s\'effectue via un Int16. Est-il possible de concaténer les 16 bits pour obtenir un Int16, ou cette démarche doit-elle être faite en amont directement sur l\'automate ?\r\n\r\nEn vous remerciant,\r\n\r\nValentin DUFIEF ',NULL,NULL,5,NULL,4,NULL,565,5,'2022-07-26 15:28:19','2022-11-17 14:23:16','2022-07-26',100,NULL,NULL,884,1,2,0,'2022-11-17 14:23:16'),(885,3,104,'Prise en compte des null au lieu de vide','Bonjour.\r\n\r\nNotre client nous pose une question à laquelle nous avons du mal à répondre.\r\nJe vous la retranscris directement car cela vous parlera peut-être plus facilement :\r\n<pre>Coté MES nous avons changé de passerelle : passage de OI Gateway à TopServer.\r\nLa communication avec les automates SIEMENS est fonctionnelle.\r\nPar contre, lorsque nous avons réalisé sur notre plateforme des tests avec un OPC UA serveur logiciel (sans automate : Docker dans notre cas) nous rencontrons une difficulté lorsque nous écrivons des chaines de caractères vides.\r\nSi vous avez mis en place un serveur OPC UA logiciel à partir de la Stack OPC, il faut appliquer le code/correctif en pièce jointe. Dans notre Stack c’est le CustomNodeManager.\r\n</pre>\r\n\r\nLe code/correctif est c# est le suivant :\r\n<pre>\r\n/*A ajouter au NodeManager sur le serveur OPC UA (ici codé en C#) pour surcharger la méthode \"Write\" afin d\'appeler une procédure permettant de mettre \"\" en cas de String NULL*/\r\n//Correctif ecriture des strings à null par TopServer ou lieu de chaine vide\r\npublic override void Write(OperationContext context, IList<WriteValue> nodesToWrite, IList<ServiceResult> errors)\r\n{\r\n ReplaceNullSiemensStringByEmptyString(nodesToWrite);\r\n \r\n base.Write(context, nodesToWrite, errors);\r\n}\r\n\r\nprivate void ReplaceNullByEmptyString(IList<WriteValue> nodesToWrite)\r\n{\r\n var nullWriteValues = nodesToWrite.Where(x => x.Value.Value == null);\r\n foreach (var v in nullWriteValues)\r\n {\r\n v.Value.Value = \"\";\r\n }\r\n}\r\n</pre>\r\n\r\nMerci d\'avance pour votre aide.\r\n',NULL,NULL,5,NULL,5,NULL,553,3,'2022-07-28 17:43:59','2022-07-29 11:01:24','2022-07-28',100,NULL,NULL,885,1,2,0,'2022-07-29 11:01:24'),(886,2,92,'InputType & OutputType : Add attributes ','For InputType & OutputType we need maybe to add a attribute to define the \"quantity\" of the output or input like a flow, a massflow, a weight...',NULL,NULL,5,NULL,4,NULL,510,1,'2022-07-29 11:27:44','2022-08-08 15:48:41','2022-07-29',0,NULL,NULL,886,1,2,0,'2022-08-08 15:48:41'),(887,2,92,'PumpType; Add OutputPressure attribute?','PumpType; Add OutputPressure attribute? like the OutputFlow ',NULL,NULL,5,NULL,4,NULL,510,1,'2022-07-29 11:43:33','2022-08-08 15:27:18','2022-07-29',0,NULL,NULL,887,1,2,0,'2022-08-08 15:27:18'),(888,3,104,'Gestion des chaines avec valeur null','Bonjour.\r\n\r\nje fais suite à mon précédent tickets. J\'ai eu des précisions, et en fait notre client va nous envoyer des chaines qui, si elles partent en string.empty seront transformées en null.\r\nCela semble poser soucis pour les serveur OPCUA logiciel. Ils nous ont expliqué qu\'il était possible qu\'en recevant ces valeurs null, cela soit en mesure de mettre en l\'air les variables elles mêmes.\r\n\r\nVous avez évoqué dans l\'autre ticket la gestion des valeurs null justement, s\'il y a un lien, pourriez-vous m\'expliquer comment gérer cela ?\r\n\r\nSi vous aviez la possibilité de m\'appeler sur ce sujet ce serait très sympa.\r\n\r\nj\'espère que mon message est suffisamment clair.\r\n\r\nOlivier PREVOT',NULL,NULL,5,NULL,5,NULL,553,2,'2022-07-29 14:32:33','2023-01-23 16:39:18','2022-07-29',0,NULL,NULL,888,1,2,0,'2023-01-23 16:39:18'),(889,1,43,'Documentation Serveur OOUA','Ajouter sections sur :\r\n# configuration User identity token\r\n# Archivage\r\n# Alarmes\r\n',NULL,NULL,2,1,4,NULL,1,0,'2022-08-01 14:37:00','2022-08-01 14:37:00','2022-08-01',0,NULL,NULL,889,1,2,0,NULL),(890,3,75,'Blocage démarrage serveur et chargement Vpi lorsque VpiLine et VpiValuesInit activés','Bonsoir M. Condemine \r\n\r\n\r\nNous préparons une configuration LineMiddleware contenant VfiPgsql, VpiValuesInit et VpiLine\r\n\r\nNous rencontrons un problème au démarrage du serveur qui se bloque (le chargement des Vpis est stoppés et le serveur n\'est pas accessible par un client UAExpert) \r\n\r\nLorsque VpiLine est désactivé et VpiValuesInit et VfiPgsql sont actifs, tout est ok\r\n\r\n!clipboard-202208011903-o3qtl.png!\r\n\r\nLorsque VpiValuesInit est désactivé et VpiLine et VfiPgsql sont actifs, tout est ok\r\n\r\n!clipboard-202208011903-yvltw.png!\r\n\r\nLorsque VpiLine, VpiValuesInit et VfiPgsql sont actifs, le démarrage se bloque\r\n\r\n\r\n\r\n\r\nCi joint une configuration avec tous les modules activés (les fichiers .dat du Vfi, VpiValuesInit et kpiTrConnectionInfo.txt dans Project sont peut-être à MAJ avec les informations de votre BDD postgres, mais je ne pense pas que ce soit nécessaire pour reproduire le problème rencontré)\r\nNous vous remercions pour tout indice de ce qui peut bloquer le démarrage. \r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\nInetum\r\n',NULL,NULL,5,432,6,NULL,432,10,'2022-08-01 19:06:38','2022-08-03 15:31:48','2022-08-01',100,NULL,NULL,890,1,2,0,'2022-08-03 09:28:27'),(891,3,75,'Suivi de l\'analyse reproduction et correction de l\'arrêt serveur aggrégateur en cas d\'arrêt du serveur feuille','Bonjour, \r\n\r\nVoici les informations de bases sur lesquels nous avons commencé l\'analyse\r\n\r\n\r\nPile d\'appel PM-LM (pile générée au niveau du PM)\r\n\r\n!clipboard-202208041719-egipf.png!\r\n\r\n\r\nPile d\'appel LM-automate (pile générée au niveau du LM)\r\n\r\n!clipboard-202208041720-e8yq2.png!\r\n\r\n\r\nEn PJ les minidumps et les deux dossiers nécessaires pour obtenir la pile d\'appel \r\n\r\n\r\nSuite à cette analyse vous nous avez livré des nouveaux Binaires\r\n\r\nNous faisons donc tourner en parallèle 2 confs\r\n\r\nConfNew) PM new binaires -> LM new binaires\r\nConfOld) PM old binaires -> LM old binaires (ce sont les avant derniers binaires ) \r\n\r\nSi d\'ici demain nous n\'arrivons pas à reproduire le problème sur la ConfOld, je préparerai une ConfVeryOld avec les binaires utilisés en prod par eMotors\r\n\r\nComme indiqué dans les news, avec les New binaires, le PM refuse parfois de se reconnecter avec les messages suivants\r\n\r\n2022-08-04T15:31:24.100Z CLIENT_ERROR Your XML configuration file : .\\Project\\UaClnt-ManuelLineX-00301-0.xml has been parsed\r\n2022-08-04T15:31:24.102Z CLIENT_INFO Call OpenOpcUa_GetSessions\r\n2022-08-04T15:31:24.104Z CLIENT_INFO Call OpenOpcUa_CloseSession\r\n2022-08-04T15:31:24.104Z CLIENT_ERROR WatchingThread stopped pSession=000001ABA5A98900.\r\n2022-08-04T15:31:24.106Z CLIENT_ERROR InternalWatchingThread stopped properly\r\n2022-08-04T15:31:24.107Z CLIENT_ERROR Call to OpcUa_ClientApi_DeleteMonitoredItems: 16 items\r\n2022-08-04T15:31:24.369Z CLIENT_ERROR Call to OpcUa_ClientApi_DeleteMonitoredItems done 0x00000\r\n2022-08-04T15:31:24.624Z CLIENT_ERROR KeepAliveThread Stopped\r\n2022-08-04T15:31:24.626Z CLIENT_ERROR KeepAliveThread stopped properly\r\n2022-08-04T15:31:24.627Z CLIENT_ERROR MonitoredItemsNotificationThread stopped\r\n2022-08-04T15:31:24.628Z CLIENT_ERROR MonitoredItemsNotificationThread stopped properly\r\n2022-08-04T15:31:34.630Z CLIENT_ERROR Impossible to stop the PublishingThread. Timeout\r\n2022-08-04T15:31:34.631Z CLIENT_ERROR InternalWatchingThread was already stopped\r\n2022-08-04T15:31:34.632Z CLIENT_ERROR PublishingThread stopped pSession=000001ABA5A98900.\r\n2022-08-04T15:31:45.254Z CLIENT_ERROR Impossible to stop the AutoConnectThread. Timeout 10 sec reached\r\n2022-08-04T15:34:36.146Z CLIENT_ERROR PublishingThread>Shutdown sent to the client host application. InternalServerStatus changed 0x80af0000\r\n2022-08-04T15:34:37.152Z CLIENT_ERROR PublishingThread stopped pSession=000001ABA960F120.\r\n\r\nOn fait une MAJ du ticket à 18h pour l\'état final d’aujourd’hui\r\n\r\nCordialement, \r\nL\'équipe Inetum\r\n\r\n\r\n\r\n',NULL,NULL,2,1,5,NULL,432,9,'2022-08-04 17:44:17','2022-10-11 14:18:42','2022-08-04',50,NULL,NULL,891,1,2,0,'2022-08-05 13:25:43'),(892,1,92,'OPC UA SERVER ISSUE./ Lixhe Server','OPC UA server is running as service. Stoping the service does not kill the process instantantly',NULL,NULL,2,573,3,NULL,573,2,'2022-08-05 10:34:14','2022-11-15 16:22:01','2022-08-05',0,NULL,NULL,892,1,2,0,NULL),(893,1,89,'Config manager takes lot of time for export all','Hello,\r\n\r\nConfig Manager takes time when we do Export all.Hence I tried to limit the namespace between 3 and 100 but the export csv resulted in 0 kb file. \r\n\r\nI tried with and with out delimiter still it generated 0 kb CSV file though export says completed',NULL,NULL,2,1,4,NULL,503,1,'2022-08-05 22:16:56','2022-08-07 21:55:21','2022-08-05',0,NULL,NULL,893,1,2,0,NULL),(894,1,89,'Writing data to OPC UA using UA Expert ','Hello, \r\n\r\nWe are unable to write the data to OPC UA server using Expert.Semih has already shared the configuration upload. \r\n\r\nI am creating this issue to keep track of it.',NULL,NULL,2,NULL,4,NULL,503,3,'2022-08-09 05:50:24','2022-08-09 16:31:53','2022-08-09',0,NULL,NULL,894,1,2,0,NULL),(895,3,92,'OPC UA SERVER ISSUE','How to run OPC UA Server as a Service?',NULL,NULL,1,NULL,4,NULL,573,2,'2022-08-09 10:25:09','2022-08-10 19:46:53','2022-08-09',0,NULL,NULL,895,1,2,0,NULL),(896,3,89,'Looking for feedback','Hello,\r\ni\'m working on a new presentation of OOUA and looking for feedback.\r\nIf you have time for it feel free to comment the attached document.\r\n\r\nAny help will be appreciated.\r\n\r\nKind regards\r\nMichel',NULL,NULL,2,NULL,4,NULL,1,1,'2022-08-09 15:31:59','2022-08-09 15:32:49','2022-08-09',0,NULL,NULL,896,1,2,0,NULL),(897,1,92,'PSD Data Type','PSD Data Type Issue(Inst. process)',NULL,NULL,5,1,5,NULL,573,2,'2022-08-16 15:48:33','2022-11-15 16:21:06','2022-08-16',100,NULL,NULL,897,1,2,0,'2022-11-15 16:21:06'),(898,3,101,'Echec LibClient/VpiUaClient WriteRequest sur un élément au délà d\'une certaine taille','Bonjour M. Condemine, \r\n\r\n\r\nIl nous semble avoir trouvé sur un configuration Serveur Agrégateur Serveur graine un souci : dans un certain scénario, l\'écriture semble bloquer la communication OPC UA entre les deux.\r\nLes Traces Wireshark semblent montrer un problème de segmentation (Wireshark n\'arrive pas à réassembler les paquets) de l\'information à minima lorsque la taille du paquet doit être dispatchée dans plus de 2 paquets OPC UA (chacun segmentés sur 49 messages TCP). \r\nNous affinerons sur la taille limite si besoin. \r\n\r\nLes conditions suivants semblent devoir être nécessaire pour reproduire le scénario :\r\n\r\n- serveur agrégateur et serveur graine, agrégateur écrit\r\n- écriture d\'un élément au delà d\'une certaine taille\r\n- Agrégateur et graine sur différentes machines\r\n\r\n\r\n*Aure vous svp une disponibilité demain pour en discuter? \r\n*\r\nSinon je vous mets à disposition demain matin une maquette permettant de reproduire le même comportement de votre côté. Ainsi que des traces Wireshark de ce qu\'on constate\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n\r\n\r\n\r\n\r\n',NULL,NULL,2,1,5,NULL,432,27,'2022-08-16 19:22:42','2022-10-04 15:35:18','2022-08-16',0,NULL,NULL,898,1,2,0,NULL),(899,1,92,'Model handling issue','Hello,\r\nwe discovered yesterday the the wrong or corrupted version of the Nodeset of types was used for instanciation.\r\nThe correct version was published on the Redmine on July 7.\r\nI fixed the file issue and made some basic tests. \r\nThe good new is that with the correct version the whole application seems to work properly.\r\nFor sure this have to be verify more carefully. \r\n\r\n* We need to understand what happened to the original model.\r\n* We need to clean up the existing application, file naming, URI, etc. \r\n\r\nRegards\r\nMichel',NULL,NULL,5,NULL,4,NULL,1,1,'2022-08-17 08:47:23','2022-08-17 17:28:10','2022-08-17',100,NULL,NULL,899,1,2,0,'2022-08-17 17:28:10'),(900,2,92,'Line Status ','We should add new status attributes for each line. Like Centrifuge Line is On/Off',NULL,NULL,5,NULL,4,NULL,573,1,'2022-08-17 14:29:48','2022-08-25 16:02:17','2022-08-17',0,NULL,NULL,900,1,2,0,'2022-08-25 16:02:17'),(901,2,92,'ON/OFF STATUS','Change order of status',NULL,NULL,2,573,4,NULL,573,4,'2022-08-17 16:52:31','2022-11-15 16:19:59','2022-08-17',0,NULL,NULL,901,1,2,0,NULL),(902,3,89,'UaExpert : Saving files issues.','I can\'t make a save in UaExpert. Important for me to create Document forlder to validate data.\r\n!clipboard-202208291046-uxkjl.png!\r\n',NULL,NULL,3,NULL,4,NULL,510,6,'2022-08-29 10:46:13','2022-08-29 15:10:44','2022-08-29',100,NULL,NULL,902,1,2,0,'2022-08-29 15:10:44'),(903,2,47,'Add info when csv export from Uaexpert','Adding a column with Data address (DBxx.DBDXX) in Decimal\r\nAdding a column with the VPI used for the data (to know the PLC address used)',NULL,NULL,3,NULL,4,NULL,510,1,'2022-08-29 16:37:17','2022-11-03 15:51:27','2022-08-29',100,NULL,NULL,903,1,2,0,'2022-11-03 15:51:27'),(904,2,92,'ProductType PercentSolid attibute','Attribute PercentSolid in ProductType. We put KPIDescriptionDataType. but I think a float would be enough.\r\n\r\n\r\n',NULL,NULL,1,NULL,4,NULL,510,0,'2022-08-30 09:39:36','2022-08-30 09:39:36','2022-08-30',0,NULL,NULL,904,1,2,0,NULL),(905,1,92,'MaterialBaseType; Density','In MaterialBAseType, the attribute Density is a float, need to change to DensityMeterType',NULL,NULL,1,NULL,4,NULL,510,0,'2022-08-30 09:40:55','2022-08-30 09:40:55','2022-08-30',0,NULL,NULL,905,1,2,0,NULL),(906,1,92,'PlateDataType : AdditionnalAttributes','Attribute AdditionnalAttributes need to be optional',NULL,NULL,1,NULL,4,NULL,510,0,'2022-08-30 09:56:14','2022-08-30 09:56:14','2022-08-30',0,NULL,NULL,906,1,2,0,NULL),(907,1,89,'Instanciation issues ','In carbital 3, the Folder CommonEquipmentsLine is write CommontEquipmentsLine',NULL,NULL,1,NULL,4,NULL,510,0,'2022-08-30 10:11:10','2022-08-30 10:11:10','2022-08-30',0,NULL,NULL,907,1,2,0,NULL),(908,1,89,'ProductionLine','I don\'t understend why, the productionline are not a \"ObjectType\" in the three and are \"folders\"',NULL,NULL,5,NULL,4,NULL,510,2,'2022-08-30 10:14:47','2022-09-08 14:22:25','2022-08-30',100,NULL,NULL,908,1,2,0,'2022-09-08 14:22:25'),(909,1,78,'Problème de communication entre les deux serveur OOUA (SODEL et LM)','Bonjour Michel,\r\n\r\n\r\nJe viens d\'ajouter le mapping entre le serveur OOUA du banc Sodel et le serveur de la ligne Assemblage. J\'avais un souci par rapport de ça. En fait, le mapping marche que dans un sens (Depuis le LM vers Sodel). Dans le nodset des instances, on a vérifié les correspondance ci-dessous :\r\n\r\nSODEL : AccessLevel=\"15\" UserAccessLevel=\"15\"\r\nLM: AccessLevel=\"3\" UserAccessLevel=\"3\"\r\n\r\nAinsi que AccessRight=\"Input_Output\" dans les subsystems (pareil sur les deux)\r\n\r\nJ\'ai relancé le serveur du LM en appliquant la même modification qui se trouve dans les nodeset des instances de SODEL (avec toujours AccessLevel=\"15\" UserAccessLevel=\"15\") sur le nodeset des instances du LM (uniquement sur OP402.02), mais je n\'ai pas abouti d\'établir la communication proprement.\r\n\r\nEst-ce vous auriez du temps libre pour que je vous partage l\'écran et je vous explique tout ça?\r\n\r\nN.B: Veuillez trouver en pièce jointe, ensemble des fichiers log et projet si besoin.\r\n\r\nMerci bien,\r\nArash.',NULL,NULL,5,NULL,5,NULL,489,8,'2022-09-06 09:17:41','2022-09-08 09:25:34','2022-09-06',100,NULL,NULL,909,1,2,0,'2022-09-08 09:25:34'),(910,1,78,'VpiValueInit','if (Vpi_Base64_Decode(pszVal, &iByteCount, &pBytes) == 0) \r\npBytes not freed ==> leak',NULL,NULL,2,1,5,NULL,1,0,'2022-09-06 17:14:20','2022-09-06 17:14:20','2022-09-06',0,NULL,NULL,910,1,2,0,NULL),(911,1,89,'Instanciation issues for FEEDPLANT Departement','!feedplant_Instanciation.JPG!\r\nTHe feed plant instantion seems to be strange. With 2 Autogeuns2 Production Line.?',NULL,NULL,5,573,4,NULL,510,4,'2022-09-08 14:06:13','2022-09-08 14:22:07','2022-09-08',100,NULL,NULL,911,1,2,0,'2022-09-08 14:22:07'),(912,1,101,'PJ pour reproduction crash contextuel avec nouvelle version du DecodeBase64','',NULL,NULL,5,NULL,4,NULL,432,2,'2022-09-08 16:09:57','2022-09-15 15:18:45','2022-09-08',100,NULL,NULL,912,1,2,0,'2022-09-15 15:18:45'),(913,3,101,'crash Ximilator version 1.0.2.5_v1.0.5.4 lors de génération de nodeset de type ','Bonjour M Condemine,\r\n\r\nLors de la création de nodeset de type Emotors modèle V2.30draft2, Ximulator génére bien les nodesets de type pour SharedClasses par contre crash au moment de génération des nodesets de type pour logistique.\r\n\r\nje vous envoie ci joint le fichier de logs et les fichier XMI SharedClasses et Logistique \r\n\r\nCordialement,\r\nEquipe Inetum\r\n ',NULL,NULL,5,1,5,NULL,545,5,'2022-09-08 16:48:47','2022-09-13 16:49:06','2022-09-08',100,NULL,NULL,913,1,2,0,'2022-09-12 18:04:57'),(914,3,92,'Multiple remote connections issues on server 100','only two remote connections possible on the server 100. If i want to connect, i need to eject someone.',NULL,NULL,1,NULL,4,NULL,510,0,'2022-09-09 12:11:25','2022-09-09 12:11:25','2022-09-09',0,NULL,NULL,914,1,2,0,NULL),(915,3,101,'Configuration des AccessLevel et AccessRight d\'une variable et d\'un tag ','Bonjour, \r\n\r\nNous avons rencontré un souci lors des déploiements des derniers binaires 4CE sur la ligne Stator\r\n\r\nNous réalisons que c\'est lié aux AccessLevel et AccessRight que l\'on peut mettre sur une variable ou un Tag\r\n\r\nConstat : \r\n\r\nLorsque au niveau de l\'instance sur une variable booléenne appelée AknowledgeData on donne les droits 2 (Write) et qu\'on marque le tag en temps que Output sur le fichier de mapping VpiLine, lorsque le VpiLine envoi un NotifyCallback sur cette variable, le statut BadInvalidArgument est renvoyé par le serveur et la valeur n\'est pas prise en compte par le serveur. \r\n\r\nPourquoi la configuration est-elle ainsi ? : \r\n\r\nEn production sur la ligne Stator, on tournait actuellement sur les binaires 4CE de avril. \r\nAvec le serveur d\'avril la configuration était ainsi et fonctionnait: \r\nInstance : CurrentWrite\r\nTag VpiLine Output\r\nTag VpiS7 Output\r\n\r\nLe besoin était que le VpiLine puisse écrire sur ce booléen et mettre à jour la cache de serveur et que le VpiS7 soit notifié par le serveur du changement d\'état de la variable et l\'écrit au niveau de l\'automate\r\n\r\nPour ce besoin, la configuration est-elle correcte? Est-ce que le retour fait par le serveur au niveau du VpiNotifyCallback pour le pResult spécifique à la variable booléenne (BadInvalidArgument) est correct? \r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\n\r\n ',NULL,NULL,5,432,5,NULL,432,13,'2022-09-14 17:32:37','2022-11-04 16:42:38','2022-09-14',100,NULL,NULL,915,1,2,0,'2022-11-04 16:42:38'),(916,1,96,'Demo_VpiUaClnt_AutoCfg_Release_x64','problème de fonctionnement discuté en réunion teams',NULL,NULL,1,NULL,4,NULL,528,0,'2022-09-15 15:15:15','2022-09-15 15:15:15','2022-09-15',0,NULL,NULL,916,1,2,0,NULL),(917,1,89,'Config Manager','Hello Michel,\r\n\r\nWhenever I try, I am facing this problem',NULL,NULL,5,NULL,6,NULL,573,2,'2022-09-20 10:11:07','2022-09-20 13:30:15','2022-09-20',0,NULL,NULL,917,1,2,0,'2022-09-20 13:30:15'),(918,1,92,'Lixhe Server Comm Error with PLC 30','Hello Michel,\r\n\r\nWe have many errors to comm with PLC 30. Do you have chance to check what is the problem?',NULL,NULL,5,1,5,NULL,573,1,'2022-09-21 09:38:14','2022-11-15 16:18:59','2022-09-21',100,NULL,NULL,918,1,2,0,'2022-11-15 16:18:59'),(919,1,92,'Object Valve - Instanciation ?','I don\'t understand the instanciation of the object valve with additionnal equipment with product? Maybe we need to add the attribute Product on the model? Or use Inputs / outputs attributes to mapped the density.\r\n!clipboard-202209211125-pdvkp.png!\r\n',NULL,NULL,1,NULL,4,NULL,510,0,'2022-09-21 11:26:02','2022-09-21 11:26:02','2022-09-21',0,NULL,NULL,919,1,2,0,NULL),(920,1,92,'Instanciation issue Grinder object','Why additionnal equipment for Drive in grinder object? Because Drive is a attribute of MotorsType\r\n\r\n!clipboard-202209211143-hctvs.png!\r\n',NULL,NULL,1,NULL,4,NULL,510,0,'2022-09-21 11:43:42','2022-09-21 11:43:42','2022-09-21',0,NULL,NULL,920,1,2,0,NULL),(921,1,94,'Perte de données sur ligne Rotor','Bonjour Michel,\r\n\r\nNous avons mis à jour les binaires sur l\'ensemble de nos lignes vers le 12/09/22.\r\n\r\nDepuis cette mise à jour, nous avons des comportements anormaux sur la ligne Rotor essentiellement et légèrement sur la ligne d\'assemblage (mais pas sur les autres lignes à priori)\r\n\r\nLes comportements anormaux rencontrés :\r\n* la ligne informe le serveur de la présence de données avec le bit DataAvailable\r\n* mais l\'automate reçoit un front sur le boolean AckData qui donne l\'information de supprimer les datas de traçabilité sans pour autant que l\'UDT ERP_OF_list soir mis à jour par le Vpiline \r\n\r\nInetum à repérer ce log dans le UAClient :\r\n_2022-09-20T15:51:23.399Z ERROR VpiUaClnt is facing an illegal situation.\r\n2022-09-20T15:51:44.522Z ERROR VpiUaClient is trying to handle the illegal situation. 0x3dc4b860 has been closed properly\r\n2022-09-20T15:51:55.629Z ERROR VpiUaClient is trying to handle the illegal situation. 0x3e6716c0 has been closed properly\r\n2022-09-20T15:51:55.629Z ERROR OpenOpcUa ClientConnection cannot be Restored uStatusUa=0x830c0000\r\n2022-09-20T15:52:03.607Z ERROR OpenOpcUa_LoadConfig succeed. for file .\\Project\\UaClnt-AUTO10-PRESS-00301-0.xml\r\n2022-09-20T15:52:07.913Z ERROR OpenOpcUa ClientConnection was Restored properly\r\n2022-09-20T15:52:07.991Z ERROR OnNotificationMessage> receive 547 changes_\r\n\r\nLorsque nous revenons sur les binaires de Mai, nous n\'avons plus ce phénomène\r\n\r\nNous avons testé plusieurs choses mais sans succès :\r\n* Configuration avec binaires OOUA à jour et Binaires Inetum de Mai \r\n* Configuration avec binaires OOUA et Inetum à jour en mettant les Nodes écrit seulement par le VPiLine en OutPut dans les fichiers UAClient (comme Stator)\r\n\r\nCeci devient une priorité car nous perdons des données de traçabilité. Comment pouvons-nous procéder pour avancer de sujet? Nous ne sommes pas persuadé de reproduire ce problème avec PLCSIM\r\n\r\nLionel \r\n',NULL,NULL,3,NULL,6,NULL,447,5,'2022-09-28 11:37:02','2022-11-04 14:16:05','2022-09-28',100,NULL,NULL,921,1,2,0,'2022-11-04 14:16:05'),(922,3,101,'Pile d\'appel arrêt serveur VpiValuesInit dès le démarrage du LM','Niveau du serveur : Serveur OOUA en version 1.0.7.9\r\n\r\nPile d\'appel arrêt serveur VpiValuesInit dès le démarrage du LM (obtenue avec les dll et pdb de la delivery 1.7.0.9).\r\nRedémarrage serveur suivant sans Vfi ni VpiLine : OK\r\nRedémarrage serveur suivant avec la conf complète : OK\r\n\r\nProcDump et screenshot de la pile d\'appel joints.',NULL,NULL,2,1,4,NULL,433,8,'2022-09-30 17:54:51','2022-11-09 17:36:29','2022-09-30',0,NULL,NULL,922,1,2,0,NULL),(923,1,92,'OPC UA SERVER MQTT Error','Hello Michel,\r\n\r\nWhen I activated the mqtt line in the OOPRJ file, this error happen.',NULL,NULL,3,1,6,NULL,573,11,'2022-10-04 11:43:23','2022-11-03 10:48:13','2022-10-04',100,NULL,NULL,923,1,2,0,'2022-11-03 10:48:13'),(924,3,81,'Exception deviation','Bonjour Michel,\r\nje souhaiterai faire une enregistrement Csv sur changement de valeur.\r\nJ\'ai repris le fichier Xml (HA configuration) et je ne sais comment remplir les variables suivantes :\r\n\r\nMaxTimeInterval\r\nMinTimeInterval\r\nExceptionDeviation\r\nExceptionDeviationFormat\r\n\r\nSerait-il possible d\'avoir un \"How to\" pour la config ?\r\nMin et max time sont-ils en millisec ?\r\n\r\nExceptionDeviation est-ce un seuil en % de variation de la valeur ?\r\n\r\nque signifie ExceptionDeviationFormat ?\r\n\r\nAvez-vous un document concernant le vfi Csv ?\r\n\r\n\r\nCdt,\r\n\r\nMarc GOMEZ\r\n\r\n','2022-10-07',NULL,5,1,5,NULL,496,3,'2022-10-04 14:41:10','2022-10-18 17:29:02','2022-10-04',100,0,NULL,924,1,2,0,'2022-10-18 17:29:02'),(925,1,81,'VPI MODBUS Lecture Manu de BLOCK >999','Bonjour Michel,\r\n\r\nJai un problème pour de la lecture de bloc ModBus en Manuel ayant une adresse >999.\r\nJe souhaite associer à trois UA Variables INT32 des valeurs issus de registres ModBus. (Adresses 38;62 et 1055)\r\nEn Manuel j\'obtiens la liaison avec les deux premiers blocs. (j\'ai pu valider par rapport a ModBus Doctor et Serveur Web => OK)\r\nEn automatique, j\'obtiens la liaison avec le dernier bloc, à l\'adresse 1055 mais je perds l\'affichage les deux autres variables (int 32 en 0038 et int 32 en 0062)\r\n\r\nfichier .dat : \r\n\r\nIP_ADDRESS 172.17.14.14\r\nPORT 502\r\nBYTE_ORDER BIG_ENDIAN\r\nINTERBLOCK_TIMEOUT 50\r\nTCP_NODELAY TRUE\r\nPOLLING_RATE 1000\r\nBLOCK_MODE MANU\r\nNUMBER_OF_BLOCK 3\r\nBLOCK_001 38-42,06,4 (pour la lecture 0140026)\r\nBLOCK_002 62-66,06,4 (pour la lecture 014003E)\r\nBLOCK_003 1055-1059,06,4 (pour la lecture 014041F) => l bloc problématique\r\n\r\n\r\nLa première ligne du log disparait lors d\'un essai avec bloc<999\r\n\r\n\r\nlog du .dat :\r\n\r\n2022-10-04T15:31:22.653Z ERROR LoadConfigurationFile>Critical error your block is not properly declared. See documentation\r\n2022-10-04T15:31:22.668Z ERROR Bocks shall be setup manualy\r\n2022-10-04T15:31:22.668Z ERROR VpiGlobalStart called 0x00000\r\n2022-10-04T15:31:22.684Z ERROR Inconsistent situation in Manual Block configuration. The Tag 014041F is not in declared block\r\n2022-10-04T15:31:22.699Z ERROR VpiColdStart\r\n2022-10-04T15:31:22.699Z ERROR BlockInfo: StartAddress:38 Size: 10 byte(s) BlockDataType: 6 FunctionCode: 4 Address : 38\r\n2022-10-04T15:31:22.699Z ERROR BlockInfo: StartAddress:62 Size: 10 byte(s) BlockDataType: 6 FunctionCode: 4 Address : 62\r\n2022-10-04T15:31:22.721Z ERROR TCPSend buffer is 65536\r\n2022-10-04T15:31:22.721Z ERROR PLCLevelThread started \r\n2022-10-04T15:31:22.737Z ERROR ListeningThread started \r\n\r\n\r\nà votre disposition,\r\n\r\nMarc\r\n','2022-10-07',NULL,2,1,5,NULL,496,1,'2022-10-04 17:44:24','2022-10-05 09:08:12','2022-10-04',0,NULL,NULL,925,1,2,0,NULL),(926,1,96,'Aggregation issue','',NULL,NULL,1,1,4,NULL,1,2,'2022-10-06 16:13:59','2022-10-06 17:28:33','2022-10-06',0,NULL,NULL,926,1,2,0,NULL),(927,1,56,'Arrêt intempestif du serveur','Bonjour Michel,\r\n\r\nLors d\'un démarrage du serveur ce jour, celui-ci s\'est arrêté sans raison (apparente).\r\n\r\nCi-joint le fichier dump.\r\n\r\nCdlt.',NULL,NULL,1,1,5,NULL,328,0,'2022-10-06 19:13:31','2022-10-06 19:13:31','2022-10-06',0,NULL,NULL,927,1,2,0,NULL),(928,1,56,'Récupération aléatoire de l\'état des variables EN_SRV des points','Bonjour Michel,\r\n\r\ncela fait déjà plusieurs fois que lors du démarrage du serveur, la récupération de l\'état EN_SRV des points ne se fait pas bien.\r\n\r\nEst-il possible de modifier la requête correspondante ?\r\n\r\nCdlt.\r\n',NULL,NULL,1,1,4,NULL,328,0,'2022-10-06 19:19:23','2022-10-06 19:19:23','2022-10-06',0,NULL,NULL,928,1,2,0,NULL),(929,1,56,'Fichiers Logs volumineux','Bonjour Michel,\r\n\r\nEst-il possible d\'optimiser le niveau ERROR des fichiers logs du VPI de manière à ne remonter que les erreurs importantes ?\r\n\r\nCi-joint un exemple de log.\r\n\r\nCdlt.',NULL,NULL,1,1,4,NULL,328,0,'2022-10-06 19:25:54','2022-10-06 19:25:54','2022-10-06',0,NULL,NULL,929,1,2,0,NULL),(930,3,92,'Questions','Modeling\r\nHow to Update the model?\r\nHow to Merge the models?\r\nWhat is the differences between has component and has property?\r\nModel Versioning\r\nInstantiation\r\nHow to do it with ConfigManager\r\nWork Mechanism of OOPRJ File\r\nWork Mechanism of Nodeset File\r\nMapping\r\nHow to do it with ConfigManager\r\nWork Mechanism of DAT File\r\nWork Mechanism of Subsytem File\r\nS7\r\nSQL\r\nValueInit\r\nMQTT PUB SUB\r\nOPC DA\r\nMethods\r\nHistorizing\r\nHow to do it with ConfigManager\r\nWork Mechanism of Nodeset File\r\nHow to create a table in the DB\r\nValueInit\r\nPublishing\r\nWork Mechanism of DAT File\r\nWork Mechanism of Subsytem File\r\nCertificates\r\nSubscribing\r\nWork Mechanism of DAT File\r\nWork Mechanism of Subsytem File\r\nCertificates\r\nAWS IoT Core\r\nServer\r\nHow to Run as a service the Server\r\nBinaries\r\nManuel Data Entry\r\nFailover Mechanism\r\nRedundancy\r\n',NULL,NULL,5,NULL,4,NULL,573,1,'2022-10-07 11:49:50','2022-11-15 16:15:58','2022-10-07',100,NULL,NULL,930,1,2,0,'2022-11-15 16:15:58'),(931,1,78,'Leak on VpiS7','Check Leak on Write ',NULL,NULL,6,1,4,NULL,1,1,'2022-10-07 14:00:39','2022-11-04 14:15:14','2022-10-07',100,NULL,NULL,931,1,2,0,'2022-11-04 14:15:14'),(932,3,101,'Scénario de mauvais démarrage et blocage connection PM/LM','Bonjour, \r\n\r\nNous venons de retrouver un scénario de démarrage assez étrange\r\n\r\nPM:\r\nVpiPlant, VpiPlm, VpiErp, VpiUaClient\r\n\r\nLM\r\nVpiValuesInit (32 noeuds) VpiLine (2062 noeuds) \r\n\r\n\r\nDans certains cas, lorsque nous démarrons le LM et le PM en même temps, nous retrouvons les messages suivants et la connexion LM et PM reste bloquée. (Pour info dans ce scénario le VpiValuesInit et déclaré avant le VpiLine - voir dernières remarques #solutions de contournement)\r\n\r\n2022-10-10T12:30:46.399Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2022-10-10T12:30:46.399Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2022-10-10T12:30:46.401Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2022-10-10T12:30:46.402Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2022-10-10T12:30:46.403Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n\r\n\r\nSolutions de contournements trouvés: \r\n\r\n- décaler le démarrage entre le PM et LM\r\n- déclarer le VpiLine en premier au niveau du LM \r\n\r\n\r\neMotors nous avait dans le passé annoncé des soucis de démarrage si le VpiLine n\'était pas déclaré en premier, sans plus de détails -chose qu\'on trouvait assez étrange- c\'est peut être le même scénario\r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n',NULL,NULL,1,1,4,NULL,432,4,'2022-10-10 14:43:22','2022-10-20 19:59:51','2022-10-10',0,NULL,NULL,932,1,2,0,NULL),(933,1,78,'\"float\" convertis en \"Double\" par Ximulator','Bonjour,\r\n\r\nPeut-être une régression : \r\nAvec la dernière version de Ximulator (1.0.5.5), le type \"float\" (avec minuscule) dans Enterprise Architect est converti en \"Double\" dans les NodeSet. Alors que le type \"Float\" (avec majuscule) donne bien \"Float\" dans les NodeSet.\r\nIl faudrait avoir \"Float\" dans les 2 cas.\r\n\r\nCordialement,\r\nNicolas Pierson',NULL,NULL,5,NULL,6,NULL,549,3,'2022-10-12 11:31:00','2022-10-14 17:33:07','2022-10-12',100,NULL,NULL,933,1,2,0,'2022-10-14 17:33:07'),(934,1,73,'Bug VPI UAClient \"BadDisconnect\"','Bonjour,\r\n\r\nJe reviens vers vous concernant le comportement du VPI OPCUA Client que j\'ai observé depuis un moment et qui s\'est reproduit durant la nuit. En effet, il y a eu un redémarrage de l\'ordinateur hébergeant le serveur et aucune donnée n\'est remontée car le VPI est resté en \"BadDisconnect\", sans redémarrer. Les variables qui sont intégrés au VPI UA Client se mettent en \"BadCommunication\".\r\n \r\nIl a fallu que je redémarre le serveur 3 fois avant que ça ne passe en \"Good\" ce matin et que ça refonctionne. Les logs du serveur au moment du bug ne donnent aucune information, si ce n\'est que le fichier .dat a été chargé correctement (je vous joins les deux fichiers logs en PJ). Je vous joins également la configuration actuelle du serveur, le VPI est en configuration manuelle. J\'ai également essayé avec la version 1.0.8.0 du serveur mais ça ne change rien. \r\n\r\nCordialement,\r\n\r\nValentin DUFIEF',NULL,NULL,5,1,6,NULL,565,3,'2022-10-14 10:01:30','2022-10-28 15:07:50','2022-10-14',0,NULL,NULL,934,1,2,0,'2022-10-28 15:07:50'),(935,3,101,'Messages de type m_PublishRequests late situation detected on session (null) lors d\'un démarrage avec UaExpert de connecté','Bonjour, \r\n\r\nNous avons sur certains démarrage une série de messages de type m_PublishRequests late situation detected on session (null) si jamais un UaExpert (sur même hôte que LM) essaye de faire des connexion pendant le démarrage\r\n\r\nNous en apercevons aussi sur des logs de la production\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum',NULL,NULL,5,1,4,NULL,432,3,'2022-10-17 16:27:28','2022-10-17 17:20:46','2022-10-17',100,NULL,NULL,935,1,2,0,'2022-10-17 17:20:46'),(936,1,78,'Ximulator 1.0.5.7 : Attributs Id comme Int32 au lieu de String','Bonjour,\r\n\r\nLa version 1.0.5.7 de Ximulator a bien corrigé les attributs appelés simplement \"Id\" qui ressortaient en DataType NodeId dans SIOME. Par contre, ils obtiennent maintenant le type Int32 même si ce sont des String/string dans Enterprise Architect.',NULL,NULL,1,NULL,5,NULL,549,0,'2022-10-17 18:55:27','2022-10-17 18:55:27','2022-10-17',0,NULL,NULL,936,1,2,0,NULL),(937,1,81,'Paramètres HistoricalDataConfigurationType','Bonjour M. Condemine,\r\n\r\nJ\'utilise le VPI PostgreSQL et je souhaite faire un enregistrement périodique des données. Pour cela, j\'utilise les attributs MaxTimeInterval et MinTimeInterval. Mais pendant mes tests, cela ne fonctionne pas.\r\n\r\nDe plus, j\'ai voulu essayé avec un ExceptionDeviationFormat = PERCENT_OF_VALUE_1 mais avec ce paramètre l\'enregistrement ne se fait plus.\r\n\r\nMerci d\'avance pour vos réponses,\r\nCordialement,\r\nMatthieu Gatine\r\n',NULL,NULL,2,1,6,NULL,492,2,'2022-11-04 14:17:14','2022-11-07 09:18:04','2022-11-04',0,NULL,NULL,937,1,2,0,NULL),(938,1,78,'Priorités Q4 2022','Priorités\r\n1- Encodeur/décodeur\r\n2- VpiQualaxy Serveur\r\n3- Synchronisation de UDT mise à plat.\r\n4- VpiOData ... Option',NULL,NULL,2,NULL,4,NULL,1,1,'2022-11-04 14:43:35','2022-11-04 14:44:09','2022-11-04',0,NULL,NULL,938,1,2,0,NULL),(939,1,78,'Message inccorecte sur TAG contenant une methode','Critical Error>%s Impossible to find %s In the server AddressSpace. Check you configuration\r\nPrendre en compte les \"METHOD\" associé aux Vpis',NULL,NULL,2,1,4,NULL,1,0,'2022-11-04 14:57:33','2022-11-04 14:57:33','2022-11-04',0,NULL,NULL,939,1,2,0,NULL),(940,1,78,'Ximulateur - Argument Ouput - erreur synthaxe','Bonjour Michel,\r\n\r\nNous avons constaté que dans le nodeset de type généré par Ximulateur il manque un \"s\" à la fin de OutputArguments\r\n\r\nVoir Screenshot ci-joint\r\n\r\nCette erreur de synthaxe empêche d\'avoir le retour des méthodes à minima depuis UA expert\r\n\r\nCordialement\r\n\r\nLionel Claudel',NULL,NULL,5,1,5,NULL,447,1,'2022-11-09 10:16:09','2022-11-09 10:30:14','2022-11-09',100,NULL,NULL,940,1,2,0,'2022-11-09 10:30:14'),(941,3,101,'VpiRead appelé sur une Variable marquée en Output dans Subsytem','Bonjour, \r\n\r\nSuite à notre call nous avons essayé la configuration conseillée\r\n\r\nMalgré le fait que la variable Tracking_Id est marquée en Output dans le fichier Subsystem, nous sommes quand même appelé par un VpiRead sur cette variable\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,2,1,4,NULL,432,2,'2022-11-09 17:22:18','2022-11-18 16:50:56','2022-11-09',80,NULL,NULL,941,1,2,0,NULL),(942,3,101,'Source Timestamp de DataValue mise à jour à chaque lecture dans la cache serveur avec VpiNotifyCallback','Bonjour, \r\n\r\nDans le cadre des développements du VpiLine, eMotors nous demande d\'avoir un temps X paramétrable afin que à chaque front montant, nous vérifions que la valeur est figée depuis X temps. \r\n\r\nPour ce faire, nous comparons le timestamp source de la DataValue retournée par lecture (par VpiNotifyCallback) à l\'heure actuelle. \r\n\r\nNous constatons cependant que le timestamp source retourné est constamment réactualisé alors que personne n\'a mis à jour sa valeur \r\n\r\n(Pour info, le timestamp source visible par un Client lui ne bouge pas = comportement souhaité) \r\n\r\nCordialement, \r\n\r\nMichael\r\n',NULL,NULL,5,1,4,NULL,432,2,'2022-11-10 15:55:47','2022-11-10 16:04:02','2022-11-10',100,NULL,NULL,942,1,2,0,'2022-11-10 16:02:15'),(943,1,108,'Cloud OPC UA Server Dump File','Hello Michel,\r\nWhen I stop the cloud server there is a debug error. I attached the screenshot',NULL,NULL,2,1,5,NULL,573,5,'2022-11-14 11:14:39','2023-01-16 08:47:00','2022-11-14',0,NULL,NULL,943,1,2,0,NULL),(944,1,101,'Aide diagnostique retour BadNotFound sur lecture par client UaExpert sur un nœud ','Bonjour, \r\n\r\nNous avons besoin de votre aide afin de pouvoir diagnostiquer sur la configuration Pre-prod eMotors, pourquoi nous avons un retour BadNotFound sur lecture d\'une variable dans l\'Address Space\r\n!clipboard-202211141220-7jo6e.png!\r\n\r\nCi-joint une config avec serveur/VpiLine \r\n\r\nAvant de la lancer, veuillez svp configurer le fichier kpiTrConnectionInfo.txt dans le dossier Project. \r\nLe noeud est bien lisible lorsque le VpiLine n\'est pas activé.\r\n\r\nLe noeud en question : \r\n!clipboard-202211141221-grl6n.png!\r\n\r\n\r\nUn nœud de même type/même fonction qui lui est lisible : \r\n!clipboard-202211141221-umhbn.png!\r\n\r\n\r\n\r\n\r\n\r\n',NULL,NULL,1,1,5,NULL,432,1,'2022-11-14 12:22:46','2022-11-14 12:29:36','2022-11-14',0,NULL,NULL,944,1,2,0,NULL),(945,1,89,'Cloud OPC UA Server PG admin password','Hello Michel,\r\n\r\nI dont know why but I cant connect the db with PGADMIN. There is a password error. I used your password but it doesnt work. you can find my screenshot below.',NULL,NULL,5,1,4,NULL,573,1,'2022-11-15 15:54:55','2022-11-15 16:12:13','2022-11-15',100,NULL,NULL,945,1,2,0,'2022-11-15 16:12:13'),(946,1,73,'Crash serveur EngineeringUnit','Bonjour,\r\n\r\nComme convenu, ticket à propos du bug de l\'EnginneringUnit, le serveur crash quand on essaye de la consulter sur un client. Le serveur et le minidump associé dans le .zip joint. \r\n\r\nMerci !',NULL,NULL,1,NULL,4,NULL,565,0,'2022-11-17 15:22:00','2022-11-17 15:22:00','2022-11-17',0,NULL,NULL,946,1,2,0,NULL),(947,3,75,'Retours sur tests Alarmes Genesis Serveur 1.0.8.1','Bonjour, \r\n\r\nNous avons pu effectuer des tests sur la VM Cloud et nous pensons voir le bout du tunnel merci beaucoup pour votre travail. \r\n\r\nNous avons juste un constat pour le moment : \r\n\r\nLorsque nous acquittons avec un commentaire et nous rafraichissons la page, nous ne voyons plus le commentaire (test effectué avec Genesis).\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n',NULL,NULL,2,1,4,NULL,432,6,'2022-11-18 11:44:26','2022-12-07 19:05:02','2022-11-18',0,NULL,NULL,947,1,2,0,NULL),(948,3,101,'Récapitulatif piles d\'appels arrêt serveur Ligne Assemblage','',NULL,NULL,2,1,4,NULL,432,9,'2022-11-18 17:40:11','2022-11-25 10:47:44','2022-11-18',0,NULL,NULL,948,1,2,0,NULL),(949,1,101,'Consommation mémoire serveur d\'alarmes sur machine Cloud','Bonjour, \r\n\r\nJe remarque sur le serveur OOUA que l\'on utilise pour les tests de l\'alarming consomme actuellement 8.6 Go de Ram. \r\n!clipboard-202211251109-yymen.png!\r\nLe serveur tourne depuis hier\r\n\r\n\r\nJe vois dans les logs ce type de messages de niveau Error : 2022-11-24T16:54:14.723Z SERVER_ERROR InitializeEventsFieldsEx:Severity>SearchIndexInEventFieldsByBrowseName return an out of range index 8\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n',NULL,NULL,3,1,4,NULL,432,2,'2022-11-25 11:10:03','2022-12-07 19:08:54','2022-11-25',100,NULL,NULL,949,1,2,0,'2022-12-07 19:08:54'),(950,3,101,'Scénario de non synchronisation connexion Graine Aggrégateur (sens Graine Aggrégateur) ','J\'ouvre ce ticket pour tracer nos échanges/investigations\r\n\r\nComme montré on a un scénario ou apparait une dé synchro\r\n\r\nScénario de non sychro synchro : \r\n\r\nPlusieurs VPIs plus VFI sur serveur Graine\r\nDémarrage Graine et Aggrégateur en même temps\r\n\r\nPistes: \r\n- Désynchronisation des handle entre VpiUaClient et ClientLib\r\n\r\nActions : \r\n\r\n- Nous devons essayer de voir si suite à cette non -synchro, le fait de provoquer une coupure réseau et de la restituer répare le scénario\r\n- Palliatif possible short term : Faire en sorte que ResetSessionState resynchronise les handles\r\n- Besoin de monter une session (pour possiblement faire du débogage attaché au process)\r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum ',NULL,NULL,2,1,4,NULL,432,37,'2022-11-25 19:25:25','2022-12-07 11:41:35','2022-11-25',0,NULL,NULL,950,1,2,0,NULL),(951,1,89,'OPCUA GRAFANA','',NULL,NULL,2,1,7,NULL,510,3,'2022-11-28 14:49:27','2022-12-04 22:46:08','2022-11-28',0,NULL,NULL,951,1,2,0,NULL),(952,1,89,'OPC UA Server new version','Hello Michel, \r\n\r\nI deployed new binaries yesterday but the server not working well then I had to change with old binaries. The problem is the connection to UA Clients. The server didn\'t give a response to the clients. ',NULL,NULL,2,1,5,NULL,573,2,'2022-12-01 11:34:08','2023-01-02 09:55:44','2022-12-01',100,NULL,NULL,952,1,2,0,NULL),(953,1,89,'Uri vs PostGreSQLTableName','Hello,\r\nAs we discuss month ago the URI are too long for PostGreSQL.\r\nThe PostGreSQL limit is 64 characters. The current URI contains useless and unappropriated element.\r\nThis problem prevents the OOUA HA layer to behave properly on both storage and in extraction.\r\n!clipboard-202212052039-jc4p6.png!\r\n\r\nPlease fix the configuration ASAP. This is critical now.\r\n\r\nRegards\r\nMichel',NULL,NULL,5,573,7,NULL,1,1,'2022-12-05 20:40:26','2022-12-09 12:53:13','2022-12-05',0,NULL,NULL,953,1,2,0,'2022-12-09 12:53:13'),(954,1,89,'ValueInit Error','Hello Michel,\r\n\r\nWhen I called the ValueInit, I saw this errors in the logs\r\n\r\n2022-12-06T10:03:34.769Z ERROR LoadConfigurationFile failed because SAVE_ONCHANGE parameter is not setup\r\n2022-12-06T10:03:34.771Z ERROR Warning on LoadConfigurationFile>TRIGGER_URI is not specified. So the reconfiguration cannot be requested from a client\r\n2022-12-06T10:03:34.771Z ERROR LoadConfigurationFile C:\\OPCUA\\OOUA_IMERYS_PROD\\Project\\ValuesInit-00200.dat failed 0x80ab0000.\r\n\r\nWhat is the problem?',NULL,NULL,2,1,5,NULL,573,2,'2022-12-06 11:16:40','2023-01-02 09:55:30','2022-12-06',100,NULL,NULL,954,1,2,0,NULL),(955,3,101,'Scénario de non synchronisation connexion Graine Aggrégateur (crash serveur graine)','Bonjour, \r\n\r\nNous faisons suite au ticket 950 avec un autre cas identifié \r\nDans le même contexte de démarrage que le ticket (950); nous avions rencontré un crash du serveur graine \r\n\r\nLe scénario est un démarrage simultané du PM et LM\r\n\r\nEn PJ 3 cas qu\'on avait rencontré\r\nJe devrais avoir les binaires/symboles si besoin\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n\r\n\r\n\r\n',NULL,NULL,1,1,4,NULL,432,0,'2022-12-07 11:40:27','2022-12-07 11:40:27','2022-12-07',0,NULL,NULL,955,1,2,0,NULL),(956,3,101,'Scénario de non synchronisation connexion Graine Aggrégateur (cas de blocage bidirectionnel)','Bonjour, \r\n\r\n\r\nNous faisons suite au ticket 950 avec un autre cas identifié \r\nDans le même contexte de démarrage que le ticket (950); nous avions rencontré un très rare blocage bidirectionnel \r\n\r\nLe scénario est un démarrage simultané du PM et LM\r\n\r\nEn PJ les logs et trace pour un cas qu\'on a rencontré\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n',NULL,NULL,1,1,4,NULL,432,0,'2022-12-07 11:40:29','2022-12-07 11:40:29','2022-12-07',0,NULL,NULL,956,1,2,0,NULL),(957,3,73,'Squelette VPI ','Bonjour,\r\n\r\nDans le cadre d\'un éventuel futur développement/adaptation des VPI, est-il possible de nous envoyer le code source du squelette du VPI MQTT pour commencer à regarder comment il est conçu et pour comprendre comment il fonctionne ?\r\n\r\nMerci à vous !\r\n\r\nValentin',NULL,NULL,1,NULL,4,NULL,565,1,'2022-12-08 10:07:47','2023-01-04 17:21:44','2022-12-08',0,NULL,NULL,957,1,2,0,NULL),(958,1,89,'Service Timeout','',NULL,NULL,1,1,5,NULL,573,0,'2022-12-08 16:33:29','2022-12-08 16:33:29','2022-12-08',0,NULL,NULL,958,1,2,0,NULL),(959,1,47,'Same NodeId in a Type','When a Node define in a Type is using the same NodeId. IT\'s then not necessary to create 2 different node in the instances.\r\nThe nodeId shall be shared. See level in TankType for an exemple of the issue.',NULL,NULL,2,1,4,NULL,1,0,'2022-12-10 20:33:34','2022-12-10 20:33:34','2022-12-10',0,NULL,NULL,959,1,2,0,NULL),(960,1,89,'ISO TCP PLC Connection','Hello Michel,\r\n\r\nI cant be able to connect this plc via OPC UA CLIENT. Do you have a chance to check the connections?\r\n\r\n',NULL,NULL,5,1,4,NULL,573,4,'2022-12-12 11:20:51','2023-01-10 13:10:10','2022-12-12',0,NULL,NULL,960,1,2,0,'2023-01-10 13:10:10'),(961,3,75,'Sychronisation démarrage VpiPlant VpiValuesInit','Bonjour, \r\n\r\nPour les raisons expliqués en call, nous souhaitons savoir à quel moment le DeviceState du VpiValuesInit est mis à Vpi_Good (constructeur VpiInternalData démarrage Vpi? fin de restitution des valeurs et mise à jour de la cache serveur?) \r\n\r\nCordialement,\r\n\r\nL\'équipe Inetum',NULL,NULL,3,1,5,NULL,432,15,'2022-12-12 17:32:11','2023-01-24 17:20:15','2022-12-12',100,NULL,NULL,961,1,2,0,'2023-01-11 18:13:16'),(962,3,108,'Grafana Error about new VFI','Hello Michel,\r\n\r\nWhen we test the new vfi with Grafana, We saw this message\r\n\r\nSystem.ArgumentOutOfRangeException: The UTC time represented when the offset is applied must be between year 0 and 10,000. (Parameter \'offset\') at System.DateTimeOffset.ValidateDate(DateTime dateTime, TimeSpan offset) at System.DateTimeOffset..ctor(DateTime dateTime) at plugin_dotnet.Field.ToArrowArray() in /drone/src/backend/DataFrame.cs:line 238 at plugin_dotnet.DataFrame.ToGprcArrowFrame() in /drone/src/backend/DataFrame.cs:line 344 at plugin_dotnet.ValueDataResponse.CreateHistoryDataResponse(Result`1 valuesResult, OpcUAQuery query, BrowsePath relativePath) in /drone/src/backend/ValueDataResponse.cs:line 62 at plugin_dotnet.DataService.ReadHistoryRaw(Session session, OpcUAQuery[] queries, NamespaceTable namespaceTable) in /drone/src/backend/DataService.cs:line 205 at plugin_dotnet.DataService.QueryData(QueryDataRequest request, ServerCallContext context) in /drone/src/backend/DataService.cs:line 363',NULL,NULL,2,1,6,NULL,573,7,'2022-12-13 14:55:52','2023-01-12 13:08:15','2022-12-13',0,NULL,NULL,962,1,2,0,NULL),(963,3,101,'Questions sur le timeout lié à l\'appel d\'une méthode','Bonjour, \r\n\r\nDans le cadre de nouvelles fonctionnalités eMotors souhaite que nous faisions un retour par méthode suite à un traitement qui peut prendre du temps\r\nLe traitement nécessiterait d\'effectuer un select en BDD et de faire un retour à travers la méthode. \r\n\r\nNous savons que le timeout lié aux méthodes peut rendre ça compliqué. Quelle est la durée du timeout? Est-elle paramétrable? Définie par le client ? \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum',NULL,NULL,1,1,4,NULL,432,1,'2022-12-16 11:23:36','2022-12-16 13:18:56','2022-12-16',0,NULL,NULL,963,1,2,0,NULL),(964,2,78,'Bufférisassion VFI ','Bonjour,\r\n\r\nSuite à notre échange, il serait judicieux de mettre en place une bufférisassion afin d\'éviter de la perte de données (cas d\'une coupure réseaux)\r\n\r\nCdt, \r\nLoic',NULL,NULL,1,NULL,4,NULL,548,0,'2022-12-16 14:49:30','2022-12-16 14:49:30','2022-12-16',0,NULL,NULL,964,1,2,0,NULL),(965,3,78,'Demande de Fichiers','Bonjour, je résume les demandes de livraisons étaient pour :\r\n- Un exemple de serveur OOUA avec script LUA\r\n- le code source d\'un serveur OOUA et des VPI utilisés par Emotors si possible (UAClient/S7/InitValue/VFI)\r\n- Le TIA Portal qu\'avait fournit Lionel\r\nMerci\r\nLosson Paul',NULL,NULL,3,NULL,4,NULL,455,1,'2022-12-16 15:02:05','2022-12-22 18:05:10','2022-12-16',0,NULL,NULL,965,1,2,0,'2022-12-22 18:05:10'),(966,1,75,'Problème de recherche de TypeId lors d\'une souscription à l\'envoi du paquet','Bonjour, \r\n\r\nsuite au call d\'aujourd\'hui un ticket pour ne pas oublié le problème identifié et la solution (passer TypeId en NodeId au lieu de Int32)\r\n\r\n!clipboard-202212231549-lnrbd.png!\r\n',NULL,NULL,1,1,4,NULL,432,1,'2022-12-23 15:50:11','2022-12-23 15:50:48','2022-12-23',0,NULL,NULL,966,1,2,0,NULL),(967,1,78,'Regéneration Ximulateur','Bonjour Michel\r\n\r\nComme évoqué ce jour, voici un bug que nous avons rencontré dans Ximulateur.\r\nLors de la regénération du Porjet (dans l\'exemple 2.30.6_fix1) - nous avons dans un niveau profond du modèle des datatypes qui passent en basedatatype:\r\n!clipboard-202212232021-ezqtt.png!\r\n\r\nNous avons cette erreur au niveau ProductionLine/Station/CD_Type/Machine_Type/Traceability/Traceability_Data/Control_Value/Control_Value\r\n\r\n\r\nAlors que si on part d\'un projet de 0 (exemple V2.32_draft5) tout est ok\r\n!clipboard-202212232025-smt21.png!\r\n\r\n\r\nJe reviens sur ma demande qui n\'est peut-être pas sémantiquement correct mais sans la mise à plat des attribut dans les variables type nous serions OK avec la regénération\r\nScreenshot des variables type \r\n!clipboard-202212232027-eqcdz.png!\r\n\r\nScreenshot en partant du machine_Type remis à plat et donc sans utiliser la variable Data_Collect_variable_Type déjà mise à plat nous voyons cela dans les types\r\n!clipboard-202212232029-vl58a.png!\r\n\r\nCordialement,\r\n\r\nLionel Claudel\r\n\r\n',NULL,NULL,3,NULL,4,NULL,447,2,'2022-12-23 20:30:49','2023-01-15 16:41:18','2022-12-23',100,NULL,NULL,967,1,2,0,'2023-01-15 16:41:18'),(968,1,78,'Crash PM - VpiUaClnt','',NULL,NULL,3,NULL,4,NULL,447,15,'2022-12-28 12:04:59','2023-01-15 16:35:57','2022-12-28',100,NULL,NULL,968,1,2,0,'2023-01-15 16:35:57'),(969,1,108,'Ximulator NodeID Problem','I am trying to generate a new ImerysTypes nodeset file using V2.1.8 but When I check the differences between v2.1.5 and v2.1.8 nodeset files, a lot of nodeid are changing. Do you have a chance to generate a node-set file using model version 2.1.8?\r\n',NULL,NULL,5,573,5,NULL,573,5,'2023-01-04 10:26:05','2023-01-12 09:24:50','2023-01-04',0,NULL,NULL,969,1,2,0,'2023-01-12 09:24:50'),(970,1,78,'VpiSè non fonctionnel avec CoreServeur 8.5','Vpis Sè ne démarre pas avec coreserveur 8.5',NULL,NULL,3,NULL,4,NULL,447,1,'2023-01-13 19:48:47','2023-01-15 16:35:26','2023-01-13',100,NULL,NULL,970,1,2,0,'2023-01-15 16:35:26'),(971,1,78,'Crash Serveur sur abonnement','',NULL,NULL,2,1,4,NULL,447,2,'2023-01-13 20:58:15','2023-01-13 21:28:46','2023-01-13',0,NULL,NULL,971,1,2,0,NULL),(972,1,108,'Cloud OPC UA Server Dump File,Log,PDB','Hello Michel,\r\n\r\nThe cloud opc ua server stopped again. this is the dump file.',NULL,NULL,2,1,6,NULL,573,13,'2023-01-16 08:20:54','2023-02-16 14:52:00','2023-01-16',0,NULL,NULL,972,1,2,0,NULL),(973,1,108,'continuation point error ','Hello Michel,\r\n\r\nWhen we tested to Grafana, We saw this anomalie in the log file. I havent updated PROD server with new binaries yet. But you told me share the log.',NULL,NULL,5,1,5,NULL,573,4,'2023-01-17 10:43:09','2023-01-17 15:43:40','2023-01-17',100,NULL,NULL,973,1,2,0,'2023-01-17 15:43:40'),(974,1,78,'Probleme connexion VpiUaClient LM - PM','Avec la dernière livraison des bianires, nous n\'avons plus le problème pour la connexion et reconnexion vers les PLC mais entre le LM et le PM il arrive que la connexion se rétablie pas après un redémarrage du LM\r\nCi-joint le logs du PM en Info (mais seulement des messages Error d\'inscrit)\r\n!clipboard-202301172204-sgi1t.png!\r\n',NULL,NULL,2,1,4,NULL,447,19,'2023-01-17 22:04:23','2023-01-27 14:22:29','2023-01-17',0,NULL,NULL,974,1,2,0,NULL),(975,3,78,'VPI MQTT AWS','VPI MQTT AWS',NULL,NULL,5,NULL,4,NULL,548,4,'2023-01-19 14:57:45','2023-01-21 09:09:30','2023-01-19',100,NULL,NULL,975,1,2,0,'2023-01-21 09:09:30'),(976,3,78,'Uaclient OPC UA Simumerik ','Bonjour Michel,\r\nnous avons un problème sur une nouvelle machine sur stator\r\nEn effet cette dernière fonctionnant avec un S7-1500 et TIA Portal nous abandonnons le VPIS7 pour Uaclient\r\nOr nous avons des problèmes de communication entre les des Int16/Uint16 et des Floats/Double\r\nSeriez vous disponible ce matin pour résoudre le problème ensemble car cela est urgent\r\nMerci\r\n\r\nCordialement\r\nLosson Paul',NULL,NULL,2,NULL,6,NULL,455,14,'2023-01-20 09:20:28','2023-02-01 20:53:02','2023-01-20',0,NULL,NULL,976,1,2,0,NULL),(977,3,104,'Activation des logs pour suivre l\'évolution d\'un champ','Bonjour, \r\n\r\nEst-il possible d\'activer des logs pour surveiller les modification d\'un node ?\r\nNous avons un problème avec notre use case client. \r\nNotre application n\'a pas écrit dans le node cependant le client OPC de notre client à reçu des notifications de modification.\r\n\r\nMerci','2023-01-28',NULL,2,1,5,NULL,553,2,'2023-01-23 17:15:03','2023-01-23 20:45:47','2023-01-23',0,NULL,NULL,977,1,2,0,NULL),(978,3,78,'temps dé démarrage Serveur Long','Ci-joint la config de la ligne stator pour analyse du temps de démarrage du serveur long',NULL,NULL,1,NULL,4,NULL,447,0,'2023-01-23 17:38:12','2023-01-23 17:38:12','2023-01-23',0,NULL,NULL,978,1,2,0,NULL),(979,1,108,'OPC UA SERVER PROD PLC CONNNECTION ERROR','Hello Michel,\r\n\r\nI dont know why we lost the connection between PLC 23, 47 and the server. I added the logs and PDB',NULL,NULL,5,1,6,NULL,573,4,'2023-01-24 09:24:56','2023-02-16 11:13:44','2023-01-24',0,NULL,NULL,979,1,2,0,'2023-02-16 11:13:44'),(980,3,75,'Pile d\'appel crash serveur cas d\'usage: méthode qui prend trop de temps à s\'éxécuter','Bonjour, \r\n\r\nEmotors nous a transmis ce matin un minidump de la ligne stator. Ils nous ont passé l\'information que le crash a eu lieu au moment de l\'appel d\'une méthode OPC UA gérée par le VpiLine. Cette méthode a pris un moment à s\'exécuter et à renvoyer le retour au serveur. \r\n\r\nLa pile d\'appel obtenu est la suivante : \r\n\r\n!clipboard-202301301424-dzhzs.png!\r\n\r\nCi-joint les logs, binaires, pdbs et minidump \r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\nInetum',NULL,NULL,3,1,4,NULL,432,1,'2023-01-30 14:28:48','2023-01-30 18:33:19','2023-01-30',0,NULL,NULL,980,1,2,0,'2023-01-30 18:33:19'),(981,1,78,'Rechargement trop ancien par le VPIInitValue','Bonjour Michel,\r\nnous avons essayés sur des nodes de recharger des valeurs par le VPIInitvalue (VpiLine OFF)\r\nNous avons eu un rechargement de valeurs datant d\'il y à 2H alors que des valeurs ont été enregistrer via le VFI en base entre temps\r\nY aurit-il une piste de reflexion côté VPIInitValue ?\r\nMerci\r\n\r\nCordialement\r\nLosson Paul',NULL,NULL,2,NULL,4,NULL,455,2,'2023-01-30 17:23:42','2023-01-31 17:24:59','2023-01-30',0,NULL,NULL,981,1,2,0,NULL),(982,2,78,'Log UA client','Bonjour Michel,\r\n\r\nNous avons ce log (voir pj) qui gonfle sur la prépa stack M2.1, car l\'automate est OFF.\r\nLa dernière version de vos dll est en place sur cette ligne.\r\n\r\nAporès discussion avec Lionel, serait-il possible d\'arrêter d\'écrire cette erreur dans le log après disons 5 min ?\r\n\r\nMerci d\'avance',NULL,NULL,2,NULL,4,NULL,450,2,'2023-01-31 09:23:33','2023-01-31 10:51:47','2023-01-31',0,NULL,NULL,982,1,2,0,NULL),(983,1,73,'Intégration client OPC / Aviso','Bonjour Monsieur Condemine,\r\nJe poursuis l\'intégration du client OPC dans notre application Aviso et je rencontre quelques difficultés pour récupérer les informations en provenance d\'un projet sur le serveur OPC.\r\nParmi l\'ensemble des fonctionnalités présentes dans le code sources, pourriez vous m\'indiquer les méthodes à utiliser pour lire une configuration.\r\nJ\'aurai besoin de pouvoir lister l\'ensemble des variables définies sur un projet avec leurs caractéristiques.\r\nUn bout de code exemple serait le bienvenu.\r\nMerci pour votre aide\r\nJacques Peigné',NULL,NULL,3,1,4,NULL,431,9,'2023-02-01 14:30:37','2023-02-06 09:42:09','2023-02-01',100,NULL,NULL,983,1,2,0,'2023-02-06 09:42:09'),(984,3,75,'Pile d\'appel crash serveur cas d\'usage : lecture d\'une variable avec UaExpert configurée à plusieurs VPIs et historisées','Bonjour, \r\n\r\neMotors nous a transmis un minidump d\'un crash de serveur apparu lors de la lecture de la variable ListErpOf depuis un client UaExpert sur une machine distante. \r\n\r\nCette variable ListErpOf est : \r\n- mappée et très utilisée par le VpiLine\r\n- mappée au VpiValuesInit\r\n- configurée pour l\'historisation avec le VfiPgSql\r\n\r\nCi dessous la pile d\'appel obtenue : \r\n\r\n!clipboard-202302021407-oyivw.png!\r\n\r\n\r\nEn PJ la configuration contenant : \r\n- Logs\r\n- Minidump\r\n- Binaires et Pdb \r\n\r\nCordialement, \r\n\r\nMichael Ejigu',NULL,NULL,1,1,4,NULL,432,1,'2023-02-02 14:17:25','2023-02-03 19:27:09','2023-02-02',0,NULL,NULL,984,1,2,0,NULL),(985,3,75,'Question sur Retour VpiNotifyCallback (pour investigation issue ligne PrepaStack)','Bonjour, \r\n\r\nConcernant le cas qui arrive sur la ligne PrepaStack. \r\nJ\'ai réussi à reproduire le cas etje me rend compte qu\'on est sur une situation ou à la lecture de la cache serveur par le VpiLine, c\'est une DataValue avec un Datatype=0 et un StatusCode= 0x40920000 (BadUncertainValue) qui est renvoyé au niveau du Status Code individuel passé en argument. \r\n\r\nDans quel cas peut on avoir un StatusCode 0x40920000 au niveau du StatusCode individuel retourné par paramètre au moment de l\'appel de la VpiNotifyCallback ? \r\n\r\nLecture trop tôt? Lecture trop tard? \r\n\r\n\r\n\r\n',NULL,NULL,2,1,5,NULL,432,7,'2023-02-03 16:35:21','2023-02-10 17:40:55','2023-02-03',100,NULL,NULL,985,1,2,0,'2023-02-08 18:03:38'),(986,1,75,'Crash PM Preprod 1 02 03 23','!clipboard-202302031930-jomxl.png!\r\n\r\nLa pile d\'appel peut être retrouvée avec les PDB et binaires en PJ\r\n\r\nLogs, PDB, binaires et minidump en PJ',NULL,NULL,5,1,4,NULL,432,1,'2023-02-03 19:31:25','2023-02-13 19:11:13','2023-02-03',100,NULL,NULL,986,1,2,0,'2023-02-13 19:11:13'),(987,1,75,'Crash PM Preprod 2 03 03 23','!clipboard-202302031932-x4c79.png!\r\n\r\nLes symboles Microsoft doivent être chargés pour retrouver la pile d\'appel\r\n\r\nPDB, binaires et minidump en PJ',NULL,NULL,5,1,4,NULL,432,1,'2023-02-03 19:33:13','2023-02-13 19:09:28','2023-02-03',100,NULL,NULL,987,1,2,0,'2023-02-13 19:09:28'),(988,3,75,'Crashs LM au démarrage, mise en production de nouvelles configurations','Bonjour, \r\n\r\neMotors a ce weekend effectué la mise à jour des configurations (fonctionnalités PM/LM)\r\n\r\nIls nous ont transmis ces minidumps de crashs au démarrage du serveur (2 fois PrepaStack et 2 fois Assemblage)\r\n\r\nEn PJ un document récapitulant les piles d\'appels, les binaires, pdb minidumps\r\n\r\nAussi en PJ les logs de ce matin de chacune des 2 lignes. \r\nJ\'ai alerté eMotors sur les messages d\'erreurs des logs VFI LM Prepastack\r\n\r\nLes logs serveur Prepastack indiquent en boucle le message\r\n\r\n2023-02-06T08:27:25.366Z SERVER_ERROR GetFirstPublishRequest>m_PublishRequests late situation detected on session UaClnt_UMY_Plant\r\n\r\nLes logs serveur Assemblage indiquent en boucle le message\r\n\r\n2023-02-06T08:17:05.056Z SERVER_ERROR Critical Error>Client/Sever timestamp desynchronisation. A publish request IsTimeouted.\r\n It will be mark for deletion. Client in the past. \r\n Difference=30.000000 sec \r\n ReceiveTime=2023-02-06T08:17:05.056Z SendTime=2023-02-06T08:16:42.055Z\r\n Tolerance 30.000000 sec\r\n\r\n\r\nCordialement,\r\n\r\nMichael Ejigu',NULL,NULL,5,1,3,NULL,432,7,'2023-02-06 11:48:01','2023-02-07 11:37:12','2023-02-06',100,NULL,NULL,988,1,2,0,'2023-02-07 11:32:36'),(989,3,75,'Problème encodage de String suite à mise en production VpiLine nouvelle architecture','Bonjour, \r\n\r\neMotors nous a communiqué avoir rencontré à 2 reprises un souci en production lors de l\'insertion en base de donnée de la tracabilité par le VpiLine \r\n\r\nCette donnée est remontée depuis l\'automate avec VpiUaClient ou VpiS7. \r\n\r\nAnciennement on était notifié du changement d\'état de cette variable par un VpiWrite, maintenant nous la récupérons en polling\r\n\r\n\r\nIl semblerait qu\'un traitement soit fait pour les strings avant l\'appel d\'un VpiWrite et qu\'il n\'y ait pas ce traitement lorsque nous la consultons en polling \r\n\r\nPour info les caractères causant un problème sont les caractères 0xb0 (°) et Oxb6\r\n\r\nUn enregistrement retrouvé avec l\'ancien VpiLine contient un * au lieu d\'un ° \r\n\r\nConfirmez vous cette différence entre la notification par VpiWrite et la lecture en polling ? \r\n\r\nCordialement,\r\n\r\nMichael\r\n',NULL,NULL,5,1,5,NULL,432,5,'2023-02-07 15:37:27','2023-02-07 18:45:56','2023-02-07',100,NULL,NULL,989,1,2,0,'2023-02-07 16:31:34'),(990,2,78,'VPI KPI ','Bonjour Michel, \r\n\r\nSuite à notre échange de ce jour, ci-joint l\'expression de besoin. \r\n\r\nL\'idée serait de compter les front montants à True pour les nodes Result_Ok et Result_Nok afin d\'incrémenter un compteur pour connaitre les pièces OK/NOK par OP et par journée de travail et shift. \r\n\r\nN\'hésitez pas si vous avez des questions. \r\n\r\nCdt, \r\nLoic',NULL,NULL,2,1,4,NULL,548,5,'2023-02-10 17:49:48','2023-02-17 18:38:51','2023-02-10',0,NULL,NULL,990,1,2,0,NULL),(991,3,75,'Questions sur logs UaExpert connecté serveur OOUA','Bonjour M. Condemine, \r\n\r\n\r\nContexte : pour le choix de la communication ODATA entre PM et l\'ERP, nous utilisons Bridgeworx de Genesis (temporairement) \r\nBridgeworx rencontre parfois des soucis d\'écriture ou de lecture dans l\'AS du PM (ce qui cause certains effaits de bord) \r\n\r\nEn essayant de reproduire le souci constaté par eMotors en prod, nous constatons que à l\'heure ou BridgeWorX rencontre des souci, UaExpert indique des logs de ce type : \r\n\r\n!clipboard-202302101815-lo6gg.png!\r\n\r\n\r\nAuriez vous des infos sur ce ConnectionWarningWatchdogTimeout ou bien OpcUa_Channel_ResponseAvailable avec un retour 0x800A0000 ? \r\nLes logs PM étaient en Server_Debug (ce qui a pour effet de n\'afficher que les Warning et Info), je l\'ai passé en SERVER_INFO pour avoir les également les Erreurs\r\nIl n\'y avait pas de messages indiquant de problème en mode Info/Warning.\r\n\r\nJe chercherai de mon côté des infos dessus sur le web en début de semaine prochaine\r\n\r\n\r\nCordialement, \r\n\r\nMichael',NULL,NULL,5,1,4,NULL,432,1,'2023-02-10 18:20:58','2023-02-11 11:32:50','2023-02-10',100,NULL,NULL,991,1,2,0,'2023-02-11 11:32:50'),(992,3,75,'Crash LM Stator Production weekend','Bonjour,\r\n\r\neMotors nous a transmis un minidump avec la pile d\'appel suivante\r\n\r\n\r\n!clipboard-202302131536-ussys.png!\r\n\r\n\r\nPas d\'erreur indiquée dans les logs au moment du crash, je pense que ça fait suite à de l\'activité normale (mise à jour de ListErpOf par VpiLine) \r\n\r\n\r\nOn retrouve ici la même pile d\'appel que le ticket 986 (crash PM preprod) \r\n\r\n\r\nLe minidump semple indiquer que pInternalDataValue->Value.Value.Array.Value.ExtensionObjectArray[0].Body, pInternalDataValue->Value.Value.Array.Value.ExtensionObjectArray[0].Body.Binary et pInternalDataValue->Value.Value.Array.Value.ExtensionObjectArray[0].Body.Binary.Data\r\n\r\nsont nuls malgré la vérification ligne précédente :\r\n\r\n!clipboard-202302131539-codv7.png!\r\n\r\n\r\nDans le cas du ticket 986 , ces 3 éléments sont non nuls mais il y a quand même eu un crash sur le memcmp\r\n\r\nEn PJ minidump, binaires et logs \r\n\r\n\r\nCordialement, \r\nMichael Ejigu \r\nInetum\r\n\r\n\r\n',NULL,NULL,2,1,5,NULL,432,22,'2023-02-13 15:48:20','2023-02-17 09:51:00','2023-02-13',0,NULL,NULL,992,1,2,0,NULL),(993,1,75,'Potentiel régréssion SessionDiagnostics ','Bonjour, \r\n\r\nPour des besoin d\'investigations nous avons essayé d\'activé le ServerDiagnostics en passant à True la variable EnableFlag\r\n\r\nEn backoffice et en prod nous avons un crash lors de l\'activation. \r\n\r\nPourrais vous svp vérifier de votre côté qu\'il n y ait pas de régression ? \r\n\r\nCordialement, \r\n\r\nMichael Ejigu',NULL,NULL,2,1,4,NULL,432,4,'2023-02-13 18:15:12','2023-02-14 18:29:23','2023-02-13',0,NULL,NULL,993,1,2,0,NULL),(994,3,75,'Assistance investigations problèmes de sessions Bridgeworx-PlantMiddleware','Ce ticket pour tracer nos échanges lors de la réunion en fin d\'aprem \r\n\r\n\r\nConstats : \r\n\r\nCôté Bridgeworx, la gestion des sessions n\'est pas nominale\r\nConstat 1 : Potentiellement plusieurs sessions crées sur le même SecureChannel \r\nConstat 2 : Potentiellement des CloseSecureChannel sans CloseSession\r\n\r\n\r\nCôté serveur OOUA il y a potentiellement une désychronisation entre le nombre réel de sessions actives et les informations dans ServerDiagnostics ( CurrentSessionCount et liste sous SessionsDiagnosticsSummary) \r\n\r\nEn PJ la capture ( Il y a les échanges entre Bridgeworx et PM mais aussi entre le PM et le Workbench Iconics avec pour nom de session WIN-ICONICS1 ) \r\n\r\n\r\nActions : \r\n\r\n- côté Inetum investiguer/améliorer la gestion des sessions par Bridgeworx\r\n- côté 4CE voir si ce qui est constaté avec Bridgeworx ceci est reproductible avec le testeur de la CTT \r\n\r\nNous vous tenons au courant de nos investigations Bridgeworx\r\nJe vous mets quand même en Assignee pour que vous ayez le ticket sur votre liste \r\n\r\nCordialement, \r\n\r\nMichael\r\n',NULL,NULL,1,1,4,NULL,432,1,'2023-02-14 18:40:51','2023-02-15 17:49:39','2023-02-14',0,NULL,NULL,994,1,2,0,NULL),(995,1,75,'Problème VFI enregistrement tableaux de taille >10 000 découvert en backoffice','Bonjour, \r\n\r\nDésolé de l\'inondation de tickets\r\n\r\nCe matin au redémarrage PM nous voyons qu\'un tableau n\'est pas bien restitué par VpiValuesInit, logs :\r\n\r\n2023-02-15T08:48:43.314Z ERROR ExtractDataFromSqlServer>Critical error on the SQL extraction. Your table should be corrupted: 0x830c0000\r\n2023-02-15T08:48:43.392Z ERROR TransfertToCoreServerCache,7/7 to transfert\r\n2023-02-15T08:48:43.434Z ERROR 7 nodes TransfertToCoreServerCache uStatus=0x00000\r\n\r\nAprès analyse des enregistrements nous remarquons un problème lorsque le nombre d\'éléments dépasse 10 000 éléments \r\n\r\nmoins de 10 000 : \r\n\r\n\r\n!clipboard-202302151024-lwq9f.png!\r\n\r\nplus que 10 000 : \r\n\r\n!clipboard-202302151024-xaii9.png!\r\n\r\n\r\nEn PJ un csv de l\'enregistrement OK (GOOD) , un NOK (BAD) et un qui montre le passage de Ok à NOk (Good to bad)\r\n\r\nProblème pas encore remonté à eMotors ni apparu en Production\r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n',NULL,NULL,2,1,6,NULL,432,12,'2023-02-15 10:28:32','2023-02-16 15:57:46','2023-02-15',0,NULL,NULL,995,1,2,0,NULL),(996,1,1,'OPCUA did not create tables on new PostgreSQL DB on AWS EC2 Instance ','',NULL,NULL,1,1,4,NULL,503,0,'2023-02-16 14:06:12','2023-02-16 14:06:12','2023-02-16',0,NULL,NULL,996,1,2,0,NULL),(997,3,73,'Problème initialisation VFI PgSql','Bonjour,\r\n\r\nJ\'ai déployé sur un chantier un serveur pour tester notre modèle. Nous voulions activer une mise en base de données, cependant je n\'arrive pas à faire fonctionner le VFI correctement, les logs du serveur m\'indiquant :\r\n\r\n\"2023-02-17T08:36:22.751Z SERVER_ERROR LoadVfiLibrary failed VfiPgSqld error: 0x0007e\r\n2023-02-17T08:36:22.751Z SERVER_ERROR Critical Error>LoadVfi failed 0x81090000\"\r\n\r\nJe n\'obtiens même pas de log pour le VFI en lui même. J\'ai l\'impression d\'avoir réalisé correctement la configuration : j\'ai créé le fichier .dat, ajouté un nodeset HAConfiguration, déclaré le VFI dans le fichier oouaprj. J\'ai vérifié plusieurs fois, je ne sais pas d\'où le problème peut venir.\r\nJe vous mets en pièce jointe la configuration du serveur.\r\n\r\nMerci d\'avance pour votre aide,\r\n\r\nValentin DUFIEF',NULL,NULL,1,NULL,4,NULL,565,0,'2023-02-17 09:55:49','2023-02-17 09:55:49','2023-02-17',0,NULL,NULL,997,1,2,0,NULL),(998,1,108,'MQTT Subscriber Auto Data Syncronization','Hello Michel,\r\n\r\nI tested the MQTT subscriber. When the server stops and restarts, The server can\'t be able to fill in the data when the server isn\'t working. How we cant protect data lose.\r\n\r\n',NULL,NULL,1,1,6,NULL,573,0,'2023-02-17 11:07:53','2023-02-17 11:07:53','2023-02-17',0,NULL,NULL,998,1,2,0,NULL),(999,2,108,'OPC UA Server Docker Image','Hello Michel,\r\n\r\nI know it\'s on your list. I just created an issue for the following. \r\n\r\nBest Regards','2023-02-28',NULL,1,1,4,NULL,573,1,'2023-02-17 11:15:41','2023-02-17 11:15:58','2023-02-17',0,NULL,NULL,999,1,2,0,NULL),(1000,3,75,'Crash LM Backoffice Binaires serveur 1.0.9.1 (Livraison Binaires Debug-IPV4 - 16-02-2023_v1.0.8.5)','Rebonjour, \r\n\r\nNous avons eu un crash sur le LM en backoffice. \r\n\r\nNouvelle pile :\r\n\r\n!clipboard-202302171424-qw97u.png!\r\n\r\nJ\'avais activé la session Diagnositics pour pouvoir monitorer le nombre de sessions\r\n\r\nEn PJ logs Minidump et Binaires',NULL,NULL,1,1,4,NULL,432,0,'2023-02-17 14:29:47','2023-02-17 14:29:47','2023-02-17',0,NULL,NULL,1000,1,2,0,NULL);
/*!40000 ALTER TABLE `issues` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `journal_details`
--
DROP TABLE IF EXISTS `journal_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `journal_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`journal_id` int(11) NOT NULL DEFAULT '0',
`property` varchar(30) NOT NULL DEFAULT '',
`prop_key` varchar(30) NOT NULL DEFAULT '',
`old_value` longtext,
`value` longtext,
PRIMARY KEY (`id`),
KEY `journal_details_journal_id` (`journal_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2682 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `journal_details`
--
LOCK TABLES `journal_details` WRITE;
/*!40000 ALTER TABLE `journal_details` DISABLE KEYS */;
INSERT INTO `journal_details` VALUES (1,1,'attr','status_id','1','3'),(2,1,'attr','done_ratio','0','100'),(3,2,'attr','status_id','1','2'),(4,3,'attr','done_ratio','0','100'),(5,4,'attr','status_id','2','3'),(6,5,'attr','status_id','1','5'),(7,6,'attr','status_id','1','3'),(8,6,'attr','done_ratio','0','100'),(9,7,'attr','done_ratio','0','100'),(10,8,'attr','done_ratio','0','50'),(11,9,'attachment','19',NULL,'register-unregisterNodes.png'),(12,9,'attr','done_ratio','50','100'),(13,10,'attr','assigned_to_id',NULL,'1'),(14,15,'attr','status_id','1','2'),(15,15,'attr','assigned_to_id',NULL,'1'),(16,15,'attr','priority_id','4','3'),(17,16,'attr','status_id','1','3'),(18,17,'attr','status_id','1','5'),(19,18,'attachment','43',NULL,'wiresharkLog.pcapng'),(20,20,'attr','status_id','1','5'),(21,21,'attr','status_id','3','5'),(22,22,'attr','status_id','3','5'),(23,23,'attr','status_id','3','5'),(24,25,'attr','status_id','1','2'),(25,25,'attr','assigned_to_id',NULL,'1'),(26,30,'attr','status_id','2','3'),(27,30,'attr','priority_id','4','3'),(28,31,'attr','status_id','1','3'),(29,31,'attr','assigned_to_id',NULL,'1'),(30,34,'attr','status_id','1','2'),(31,35,'attr','status_id','2','3'),(32,36,'attr','status_id','1','2'),(33,39,'attachment','56',NULL,'0001-Prevent-memory-leaks-in-OpenOpcUaCoreServer.patch'),(34,40,'attr','status_id','1','5'),(35,41,'attr','status_id','1','6'),(36,42,'attr','status_id','1','3'),(37,43,'attr','status_id','2','3'),(38,44,'attr','status_id','1','5'),(39,45,'attr','assigned_to_id',NULL,'1'),(40,46,'attr','status_id','1','3'),(41,47,'attr','due_date',NULL,'2017-03-16'),(42,47,'attr','priority_id','4','5'),(43,47,'attr','done_ratio','0','20'),(44,47,'attr','parent_id',NULL,'37'),(45,49,'attr','assigned_to_id',NULL,'1'),(46,51,'attr','status_id','1','3'),(47,51,'attr','assigned_to_id',NULL,'1'),(48,51,'attr','done_ratio','0','100'),(49,52,'attr','status_id','1','3'),(50,52,'attr','assigned_to_id',NULL,'1'),(51,53,'attr','status_id','1','3'),(52,53,'attr','assigned_to_id',NULL,'1'),(53,53,'attr','done_ratio','0','100'),(54,54,'attr','assigned_to_id',NULL,'22'),(55,55,'attachment','67',NULL,'0005-On-Linux-OpcUa_CharW-is-4-bytes-wide.patch'),(56,57,'attachment','68',NULL,'0008-CQueuedPublishMessage-FillXXX-Extend-allocation-for-.patch'),(57,58,'attachment','69',NULL,'0009-Fix-undefined-behaviour-due-to-uninitialised-variabl.patch'),(58,61,'attachment','70',NULL,'0013-Prevent-memory-leaks-in-CDefinition-DuplicateXXX.patch'),(59,62,'attachment','71',NULL,'0012-Prevent-memory-leaks-in-OpenOpcUaCoreServer.patch'),(60,63,'attr','description','\r\nScenario:-\r\nOn Loading IEC61850 DemoProject the IEC_61850_CID_UANodeset8.XML - Click on the Root>DataObjects - The tool crashes.','Scenario:-\r\nOn Loading IEC61850 DemoProject the IEC_61850_CID_UANodeset8.XML - Click on the Root>DataObjects - The tool crashes.'),(61,63,'attr','assigned_to_id',NULL,'1'),(62,63,'attr','fixed_version_id',NULL,'8'),(63,65,'attr','status_id','1','3'),(64,65,'attr','done_ratio','0','100'),(65,66,'attr','status_id','1','6'),(66,66,'attr','assigned_to_id',NULL,'1'),(67,66,'attr','fixed_version_id',NULL,'8'),(68,68,'attachment','92',NULL,'VPINodeset.xml'),(69,68,'attachment','93',NULL,'ConfigOpenOpcUa.xml'),(70,68,'attachment','94',NULL,'SubSystem.xml'),(71,69,'attr','status_id','1','3'),(72,69,'attr','done_ratio','0','100'),(73,70,'attr','status_id','1','6'),(74,70,'attr','done_ratio','0','100'),(75,71,'attr','status_id','1','2'),(76,71,'attr','fixed_version_id',NULL,'12'),(77,72,'attr','status_id','1','2'),(78,72,'attr','fixed_version_id',NULL,'12'),(79,73,'attr','status_id','1','3'),(80,73,'attr','done_ratio','0','100'),(81,74,'attr','status_id','1','2'),(82,74,'attr','fixed_version_id',NULL,'12'),(83,74,'attr','done_ratio','0','50'),(84,75,'attr','status_id','6','2'),(85,75,'attr','done_ratio','100','50'),(86,81,'attr','status_id','1','2'),(87,81,'attr','priority_id','4','6'),(88,82,'attr','status_id','2','3'),(89,82,'attr','done_ratio','0','100'),(90,83,'attr','assigned_to_id',NULL,'1'),(91,83,'attr','done_ratio','0','50'),(92,84,'attr','status_id','2','3'),(93,84,'attr','done_ratio','50','90'),(94,85,'attr','done_ratio','0','90'),(95,86,'attr','status_id','3','5'),(96,87,'attr','status_id','2','5'),(97,87,'attr','done_ratio','50','100'),(98,88,'attr','status_id','3','5'),(99,89,'attr','status_id','3','5'),(100,90,'attr','status_id','3','5'),(101,91,'attr','status_id','3','2'),(102,92,'attr','status_id','1','3'),(103,93,'attr','status_id','1','5'),(104,93,'attr','fixed_version_id',NULL,'13'),(105,93,'attr','done_ratio','0','100'),(106,94,'attr','status_id','1','3'),(107,94,'attr','fixed_version_id',NULL,'13'),(108,94,'attr','done_ratio','0','100'),(109,95,'attr','status_id','2','5'),(110,95,'attr','done_ratio','50','100'),(111,96,'attr','status_id','2','3'),(112,97,'attr','status_id','1','3'),(113,97,'attr','fixed_version_id',NULL,'13'),(114,98,'attr','status_id','1','3'),(115,98,'attr','assigned_to_id',NULL,'1'),(116,98,'attr','fixed_version_id',NULL,'13'),(117,98,'attr','done_ratio','0','100'),(118,100,'attr','status_id','1','2'),(119,100,'attr','done_ratio','0','100'),(120,101,'attr','assigned_to_id',NULL,'1'),(121,102,'attr','assigned_to_id',NULL,'1'),(122,102,'attr','fixed_version_id',NULL,'13'),(123,103,'attr','priority_id','4','3'),(124,106,'attachment','110',NULL,'Graph.PNG'),(125,106,'attachment','111',NULL,'Capture_MAP.PNG'),(126,106,'attachment','112',NULL,'patch_std_map.patch'),(127,108,'attr','due_date',NULL,'2016-02-05'),(128,108,'attr','status_id','1','2'),(129,108,'attr','assigned_to_id',NULL,'1'),(130,108,'attr','priority_id','4','6'),(131,108,'attr','fixed_version_id',NULL,'13'),(132,109,'attr','assigned_to_id',NULL,'1'),(133,109,'attr','fixed_version_id',NULL,'13'),(134,110,'attr','status_id','1','2'),(135,111,'attachment','115',NULL,'vpi-config.zip'),(136,112,'attr','status_id','1','3'),(137,112,'attr','done_ratio','0','100'),(138,112,'attr','estimated_hours',NULL,'1.0'),(139,114,'attr','assigned_to_id',NULL,'1'),(140,117,'attr','status_id','1','3'),(141,117,'attr','done_ratio','0','100'),(142,118,'attr','fixed_version_id',NULL,'13'),(143,122,'attachment','134',NULL,'backtrace.txt'),(144,123,'attachment','135',NULL,'VPINodeset.xml'),(145,124,'attr','status_id','1','3'),(146,124,'attr','done_ratio','0','100'),(147,126,'attr','assigned_to_id',NULL,'1'),(148,126,'attr','fixed_version_id',NULL,'13'),(149,127,'attr','status_id','1','2'),(150,127,'attr','assigned_to_id',NULL,'1'),(151,127,'attr','priority_id','4','6'),(152,127,'attr','done_ratio','0','10'),(153,128,'attachment','139',NULL,'Opc.Ua.NodeSet.GTW.xml'),(154,129,'attachment','156',NULL,'valgrind_3.log'),(155,133,'attr','priority_id','4','6'),(156,135,'attr','status_id','1','2'),(157,136,'attr','status_id','1','3'),(158,136,'attr','assigned_to_id',NULL,'1'),(159,136,'attr','done_ratio','0','100'),(160,138,'attr','status_id','1','4'),(161,139,'attr','status_id','1','5'),(162,140,'attr','status_id','2','3'),(163,140,'attr','done_ratio','0','100'),(164,141,'attr','status_id','2','5'),(165,141,'attr','done_ratio','90','100'),(166,142,'attr','done_ratio','90','100'),(167,143,'attr','status_id','2','5'),(168,144,'attr','status_id','1','3'),(169,144,'attr','done_ratio','0','100'),(170,151,'attr','status_id','1','3'),(171,151,'attr','done_ratio','0','100'),(172,152,'attr','done_ratio','0','90'),(173,153,'attachment','179',NULL,'Wireshark (Ecriture multi nodeid - Node1 OK - Node2 NON).pcapng'),(174,153,'attachment','180',NULL,'Wireshark (Ecriture simple nodeid - OK).pcapng'),(175,153,'attachment','181',NULL,'Wireshark (Lecture multi nodeid - Node1 OK - Node2 NON).pcapng'),(176,154,'attr','status_id','1','3'),(177,154,'attr','done_ratio','90','100'),(178,155,'attr','status_id','1','3'),(179,155,'attr','assigned_to_id',NULL,'269'),(180,155,'attr','fixed_version_id',NULL,'22'),(181,155,'attr','done_ratio','0','100'),(182,157,'attr','status_id','1','3'),(183,157,'attr','done_ratio','0','100'),(184,157,'attr','estimated_hours',NULL,'2.0'),(185,158,'attr','status_id','3','5'),(186,159,'attr','status_id','1','3'),(187,159,'attr','done_ratio','0','100'),(188,160,'attachment','221',NULL,'OpenOpcUaCoreServer.log'),(189,160,'attachment','222',NULL,'VPIMdbMaster00200.log'),(190,162,'attachment','225',NULL,'VPIMdbString0.png'),(191,162,'attachment','226',NULL,'VPIMdbString1.png'),(192,163,'attr','done_ratio','0','90'),(193,164,'attr','due_date',NULL,'2016-12-16'),(194,166,'attr','description','\r\nJ\'ai effectué un essai de lecture et d\'écriture d\'un Node de type String.\r\n\r\nLa lecture fonctionne mais l\'écriture ne fonctionne pas complètement.\r\n\r\nCi-joint la capture wireshark.\r\n\r\nValeur test (taille 17) : \"Test string OPCUA\"\r\nValeur Hex : 0x54 0x65 0x73 0x74 0x20 0x73 0x74 0x72 0x69 0x6E 0x67 0x20 0x4F 0x50 0x43 0x55 0x41\r\n\r\nLa valeur écriture est \"t string OPCUA\"\r\n','J\'ai effectué un essai de lecture et d\'écriture d\'un Node de type String.\r\n\r\nLa lecture fonctionne mais l\'écriture ne fonctionne pas complètement.\r\n\r\nCi-joint la capture wireshark.\r\n\r\nValeur test (taille 17) : \"Test string OPCUA\"\r\nValeur Hex : 0x54 0x65 0x73 0x74 0x20 0x73 0x74 0x72 0x69 0x6E 0x67 0x20 0x4F 0x50 0x43 0x55 0x41\r\n\r\nLa valeur écriture est \"t string OPCUA\"\r\n'),(195,166,'attr','assigned_to_id',NULL,'1'),(196,167,'attr','status_id','1','3'),(197,167,'attr','done_ratio','0','100'),(198,168,'attr','status_id','1','5'),(199,168,'attr','done_ratio','0','100'),(200,169,'attr','assigned_to_id',NULL,'1'),(201,169,'attr','done_ratio','0','100'),(202,170,'attr','status_id','1','2'),(203,170,'attr','assigned_to_id',NULL,'1'),(204,170,'attr','done_ratio','0','10'),(205,171,'attr','priority_id','6','5'),(206,172,'attr','status_id','1','4'),(207,172,'attr','done_ratio','0','100'),(208,174,'attr','done_ratio','0','100'),(209,176,'attachment','253',NULL,'OpenOpcUaClientLib.cpp'),(210,181,'attr','status_id','5','2'),(211,182,'attr','assigned_to_id',NULL,'1'),(212,183,'attr','status_id','1','6'),(213,184,'attr','status_id','3','5'),(214,185,'attr','status_id','1','3'),(215,185,'attr','done_ratio','0','100'),(216,186,'attr','status_id','1','5'),(217,189,'attachment','305',NULL,'OpenOPCUA.zip'),(218,191,'attr','done_ratio','0','70'),(219,192,'attr','status_id','1','3'),(220,192,'attr','done_ratio','0','100'),(221,195,'attr','status_id','1','3'),(222,195,'attr','assigned_to_id',NULL,'1'),(223,195,'attr','done_ratio','0','100'),(224,196,'attr','status_id','1','3'),(225,196,'attr','assigned_to_id',NULL,'1'),(226,196,'attr','done_ratio','0','100'),(227,197,'attr','status_id','1','3'),(228,197,'attr','assigned_to_id',NULL,'1'),(229,197,'attr','done_ratio','0','100'),(230,198,'attr','status_id','1','6'),(231,201,'attachment','358',NULL,'TestModbus_JFD.zip'),(232,201,'attr','status_id','3','2'),(233,202,'attr','assigned_to_id',NULL,'1'),(234,203,'attr','description','\r\nErreurs dans le CSSI_ADP_P2 : \r\n\r\n* Erreur au niveau de L_SSI \r\n* LSType est fils de L_SSIType, \r\n\r\nJe pense qu\'il manque également la définition de L_SSIType dans l\'annexe ','Erreurs dans le CSSI_ADP_P2 : \r\n\r\n* Erreur au niveau de L_SSI \r\n* LSType est fils de L_SSIType, \r\n\r\nJe pense qu\'il manque également la définition de L_SSIType dans l\'annexe '),(235,203,'attr','assigned_to_id',NULL,'1'),(236,205,'attr','assigned_to_id',NULL,'1'),(237,207,'attachment','365',NULL,'AidiagSubSystem001.rar'),(238,209,'attachment','366',NULL,'OPC_UA AGREGAT_V3.zip'),(239,215,'attr','status_id','1','6'),(240,215,'attr','priority_id','4','3'),(241,222,'attachment','384',NULL,'BuildLog.htm'),(242,227,'attr','status_id','1','2'),(243,227,'attr','assigned_to_id',NULL,'1'),(244,227,'attr','priority_id','4','3'),(245,228,'attr','status_id','1','5'),(246,229,'attachment','387',NULL,'OPC UA Secure connecting (1).png'),(247,229,'attachment','388',NULL,'OPC UA Secure connecting (2).png'),(248,229,'attachment','389',NULL,'OPC UA Secure connecting (3).png'),(249,229,'attachment','390',NULL,'OPC UA Secure connecting (4).png'),(250,234,'attr','status_id','2','5'),(251,239,'attachment','414',NULL,'s.png'),(252,239,'attachment','415',NULL,'test1.rar'),(253,241,'attr','assigned_to_id',NULL,'1'),(254,242,'attr','status_id','1','3'),(255,242,'attr','fixed_version_id',NULL,'63'),(256,243,'attr','status_id','1','2'),(257,243,'attr','assigned_to_id',NULL,'303'),(258,244,'attr','status_id','2','5'),(259,245,'attachment','436',NULL,'ce.png'),(260,245,'attachment','437',NULL,'Opc.Ua.NodeSet2.AnalogItem.xml'),(261,246,'attr','status_id','1','2'),(262,246,'attr','assigned_to_id',NULL,'1'),(263,247,'attr','description','\r\nLe CMSI ne correspond pas au CMSIType \r\n(manque les infos ACTIF, ARR_DRG_SON,....','Le CMSI ne correspond pas au CMSIType \r\n(manque les infos ACTIF, ARR_DRG_SON,....'),(264,247,'attr','status_id','1','5'),(265,247,'attr','assigned_to_id',NULL,'1'),(266,249,'attr','assigned_to_id',NULL,'328'),(267,250,'attr','assigned_to_id',NULL,'304'),(268,251,'attr','status_id','1','2'),(269,251,'attr','done_ratio','0','30'),(270,254,'attachment','447',NULL,'PROG_DE_BASE_NF_Site_wide_data_Group_Descriptions_Report.csv'),(271,256,'attr','status_id','1','5'),(272,256,'attr','done_ratio','0','100'),(273,257,'attr','status_id','1','5'),(274,260,'attachment','451',NULL,'Demo-Test avec AUTO_POPULATE FALSE.zip'),(275,261,'attr','status_id','1','5'),(276,262,'attr','assigned_to_id',NULL,'1'),(277,263,'attr','assigned_to_id',NULL,'1'),(278,265,'attr','status_id','2','3'),(279,265,'attr','fixed_version_id',NULL,'71'),(280,265,'attr','done_ratio','0','100'),(281,266,'attr','done_ratio','0','100'),(282,267,'attr','status_id','1','5'),(283,268,'attr','status_id','3','5'),(284,269,'attr','status_id','3','5'),(285,270,'attr','assigned_to_id',NULL,'1'),(286,270,'attr','fixed_version_id',NULL,'71'),(287,270,'attr','done_ratio','0','80'),(288,271,'attr','status_id','1','3'),(289,271,'attr','fixed_version_id',NULL,'71'),(290,271,'attr','done_ratio','0','100'),(291,272,'attr','assigned_to_id',NULL,'1'),(292,274,'attr','status_id','1','3'),(293,274,'attr','done_ratio','0','100'),(294,275,'attr','status_id','1','6'),(295,275,'attr','done_ratio','0','100'),(296,276,'attr','status_id','1','3'),(297,276,'attr','assigned_to_id',NULL,'1'),(298,276,'attr','done_ratio','0','100'),(299,279,'attr','status_id','3','5'),(300,280,'attr','status_id','3','5'),(301,281,'attr','assigned_to_id',NULL,'1'),(302,282,'attachment','499',NULL,'OpenOpcUaCoreServer.log'),(303,282,'attachment','500',NULL,'20171128_crash.png'),(304,282,'attachment','501',NULL,'crash-information.zip'),(305,285,'attachment','503',NULL,'0001-fixing-bug-on-Binding-node-attribute-order-in-xml-pr.patch'),(306,288,'attr','assigned_to_id',NULL,'1'),(307,289,'attr','status_id','1','3'),(308,289,'attr','done_ratio','0','100'),(309,290,'attr','status_id','1','3'),(310,290,'attr','fixed_version_id',NULL,'71'),(311,290,'attr','done_ratio','0','100'),(312,291,'attr','status_id','1','6'),(313,292,'attr','done_ratio','0','100'),(314,293,'attr','assigned_to_id',NULL,'1'),(315,295,'attr','status_id','1','3'),(316,295,'attr','done_ratio','0','100'),(317,296,'attr','status_id','1','3'),(318,296,'attr','done_ratio','0','100'),(319,297,'attr','status_id','1','2'),(320,297,'attr','done_ratio','0','50'),(321,299,'attr','done_ratio','0','100'),(322,300,'attr','status_id','1','5'),(323,301,'attr','status_id','1','5'),(324,301,'attr','done_ratio','0','100'),(325,302,'attr','done_ratio','0','50'),(326,303,'attr','status_id','1','5'),(327,303,'attr','done_ratio','0','100'),(328,304,'attr','status_id','1','5'),(329,304,'attr','done_ratio','0','100'),(330,305,'attr','status_id','3','5'),(331,306,'attr','status_id','1','5'),(332,307,'attr','status_id','1','6'),(333,308,'attr','status_id','1','5'),(334,309,'attr','status_id','1','5'),(335,309,'attr','done_ratio','50','100'),(336,310,'attr','status_id','2','5'),(337,311,'attr','done_ratio','0','50'),(338,312,'attr','status_id','1','5'),(339,312,'attr','done_ratio','0','100'),(340,313,'attr','status_id','3','5'),(341,314,'attr','status_id','3','5'),(342,315,'attr','status_id','3','5'),(343,316,'attr','status_id','2','5'),(344,317,'attr','assigned_to_id',NULL,'1'),(345,318,'attr','status_id','1','5'),(346,318,'attr','assigned_to_id',NULL,'1'),(347,319,'attr','status_id','1','5'),(348,320,'attachment','556',NULL,'opc_procellics.xmi'),(349,321,'attachment','560',NULL,'diagrammeDeClasse.PNG'),(350,323,'attr','status_id','1','3'),(351,323,'attr','done_ratio','0','100'),(352,324,'attachment','576',NULL,'Capture-18-12-2017-13UTC.zip'),(353,329,'attachment','583',NULL,'Catégories_souscription.jpg'),(354,330,'attachment','586',NULL,'RapidService.zip'),(355,336,'attachment','597',NULL,'ManagementDAClient.zip'),(356,338,'attr','status_id','1','5'),(357,338,'attr','done_ratio','0','100'),(358,344,'attachment','602',NULL,'stdafxHeaderPic.png'),(359,351,'attachment','605',NULL,'opcua-compile-error.PNG'),(360,353,'attachment','612',NULL,'clientError.jpg'),(361,359,'attr','assigned_to_id',NULL,'1'),(362,364,'attr','status_id','1','5'),(363,364,'attr','done_ratio','0','100'),(364,365,'attr','assigned_to_id',NULL,'1'),(365,373,'attachment','614',NULL,'clientLibHeaderIncludeError.png'),(366,381,'attachment','616',NULL,'test.tar.gz'),(367,384,'attr','status_id','1','5'),(368,384,'attr','done_ratio','0','100'),(369,385,'attr','status_id','1','5'),(370,385,'attr','done_ratio','0','100'),(371,386,'attr','status_id','2','5'),(372,386,'attr','done_ratio','30','100'),(373,390,'attr','status_id','1','5'),(374,390,'attr','done_ratio','0','100'),(375,392,'attr','status_id','1','5'),(376,392,'attr','done_ratio','0','100'),(377,395,'attr','status_id','1','5'),(378,402,'attr','status_id','1','5'),(379,402,'attr','done_ratio','0','100'),(380,403,'attr','status_id','1','2'),(381,404,'attr','status_id','1','2'),(382,405,'attr','status_id','1','2'),(383,406,'attr','status_id','1','2'),(384,407,'attr','status_id','1','2'),(385,408,'attr','status_id','1','2'),(386,409,'attr','status_id','1','2'),(387,410,'attr','status_id','1','2'),(388,417,'attachment','628',NULL,'openopc-cross-compiler.png'),(389,417,'attachment','629',NULL,'opcua-compile-error.PNG'),(390,417,'attachment','630',NULL,'opcua-compile-byteOrder-code-1.png'),(391,417,'attachment','631',NULL,'opcua-compile-byteOrder-code-2.png'),(392,419,'attr','done_ratio','0','100'),(393,420,'attr','status_id','1','5'),(394,420,'attr','priority_id','4','3'),(395,421,'attr','due_date',NULL,'2018-01-29'),(396,424,'attr','status_id','1','3'),(397,424,'attr','done_ratio','0','100'),(398,426,'attr','assigned_to_id',NULL,'1'),(399,431,'attachment','642',NULL,'PPCTest-26-01.pptx'),(400,434,'attachment','643',NULL,'OpenOpcUaTerminalClient_fixRequired.zip'),(401,440,'attr','assigned_to_id',NULL,'1'),(402,443,'attr','status_id','1','5'),(403,447,'attr','status_id','1','5'),(404,447,'attr','done_ratio','0','100'),(405,453,'attr','status_id','1','5'),(406,453,'attr','done_ratio','0','100'),(407,454,'attr','status_id','1','5'),(408,454,'attr','done_ratio','0','100'),(409,455,'attr','status_id','1','5'),(410,455,'attr','done_ratio','0','100'),(411,461,'attr','status_id','1','5'),(412,461,'attr','done_ratio','0','100'),(413,463,'attr','status_id','1','2'),(414,467,'attr','status_id','1','3'),(415,469,'attr','status_id','1','3'),(416,469,'attr','done_ratio','0','100'),(417,470,'attr','status_id','1','5'),(418,470,'attr','done_ratio','0','100'),(419,471,'attr','status_id','1','5'),(420,471,'attr','done_ratio','0','100'),(421,472,'attr','status_id','2','5'),(422,472,'attr','done_ratio','0','100'),(423,473,'attr','status_id','1','5'),(424,473,'attr','done_ratio','0','100'),(425,474,'attr','status_id','1','5'),(426,474,'attr','done_ratio','0','100'),(427,475,'attr','priority_id','6','7'),(428,476,'attr','priority_id','4','6'),(429,477,'attachment','669',NULL,'client-exception.png'),(430,477,'attachment','670',NULL,'client-exception2.png'),(431,484,'attachment','672',NULL,'client-crash.png'),(432,484,'attachment','673',NULL,'dashboard.jpg'),(433,484,'attachment','674',NULL,'quick_start_access_server.jpg'),(434,484,'attachment','675',NULL,'no published.jpg'),(435,487,'attr','status_id','3','2'),(436,487,'attr','done_ratio','100','70'),(437,488,'attachment','677',NULL,'patch.diff'),(438,494,'attachment','682',NULL,'debian.png'),(439,494,'attachment','683',NULL,'OpenOpcUaTerminalClientDebian.log'),(440,494,'attachment','684',NULL,'Windows.png'),(441,494,'attachment','685',NULL,'OpenOpcUaTerminalClientWindows.log'),(442,498,'attr','status_id','1','5'),(443,499,'attr','status_id','1','3'),(444,499,'attr','done_ratio','0','100'),(445,500,'attr','status_id','1','2'),(446,500,'attr','done_ratio','0','100'),(447,501,'attachment','688',NULL,'image001.jpg'),(448,501,'attr','status_id','1','2'),(449,501,'attr','done_ratio','0','80'),(450,502,'attr','status_id','1','2'),(451,502,'attr','done_ratio','0','90'),(452,505,'attr','status_id','1','2'),(453,505,'attr','assigned_to_id',NULL,'1'),(454,506,'attr','status_id','1','2'),(455,509,'attr','status_id','1','5'),(456,509,'attr','done_ratio','0','100'),(457,510,'attr','status_id','1','5'),(458,512,'attr','fixed_version_id',NULL,'4'),(459,514,'attr','status_id','1','5'),(460,514,'attr','done_ratio','0','100'),(461,515,'attr','due_date',NULL,'2018-03-06'),(462,517,'attr','status_id','2','5'),(463,517,'attr','assigned_to_id',NULL,'1'),(464,517,'attr','done_ratio','0','100'),(465,518,'attr','status_id','2','4'),(466,518,'attr','done_ratio','0','90'),(467,520,'attr','status_id','4','5'),(468,520,'attr','done_ratio','90','100'),(469,522,'attr','status_id','1','5'),(470,522,'attr','done_ratio','0','100'),(471,523,'attr','status_id','1','5'),(472,523,'attr','done_ratio','0','100'),(473,524,'attr','status_id','1','5'),(474,524,'attr','done_ratio','0','100'),(475,525,'attr','status_id','1','5'),(476,525,'attr','done_ratio','0','100'),(477,526,'attr','status_id','2','5'),(478,526,'attr','done_ratio','0','100'),(479,527,'attr','status_id','2','5'),(480,527,'attr','done_ratio','0','100'),(481,528,'attr','status_id','2','5'),(482,528,'attr','done_ratio','0','100'),(483,534,'attachment','702',NULL,'OpenOpcUaClientLib.cpp'),(484,539,'attr','assigned_to_id',NULL,'1'),(485,540,'attr','status_id','1','5'),(486,540,'attr','done_ratio','0','100'),(487,541,'attr','status_id','1','5'),(488,541,'attr','done_ratio','0','100'),(489,542,'attr','status_id','3','5'),(490,544,'attr','status_id','1','5'),(491,545,'attr','status_id','2','5'),(492,545,'attr','done_ratio','80','100'),(493,546,'attr','status_id','2','5'),(494,547,'attr','status_id','3','5'),(495,549,'attr','status_id','1','2'),(496,549,'attr','done_ratio','0','90'),(497,550,'attr','done_ratio','90','0'),(498,552,'attr','status_id','1','5'),(499,553,'attachment','715',NULL,'VpiModbus00200.log'),(500,557,'attr','assigned_to_id',NULL,'333'),(501,559,'attachment','721',NULL,'CreateSubscription.pdf'),(502,562,'attachment','727',NULL,'OPCUA-Configuration.zip'),(503,563,'attr','status_id','1','2'),(504,563,'attr','done_ratio','0','90'),(505,564,'attr','status_id','1','4'),(506,564,'attr','assigned_to_id',NULL,'1'),(507,565,'attr','status_id','1','5'),(508,565,'attr','done_ratio','0','90'),(509,566,'attr','status_id','1','5'),(510,566,'attr','done_ratio','0','100'),(511,567,'attr','status_id','1','5'),(512,567,'attr','done_ratio','0','100'),(513,568,'attr','status_id','1','2'),(514,568,'attr','assigned_to_id',NULL,'1'),(515,568,'attr','done_ratio','0','10'),(516,569,'attr','status_id','2','5'),(517,569,'attr','done_ratio','70','100'),(518,572,'attr','status_id','1','5'),(519,572,'attr','done_ratio','0','100'),(520,574,'attr','status_id','2','3'),(521,574,'attr','done_ratio','90','100'),(522,576,'attr','status_id','3','5'),(523,576,'attr','done_ratio','0','100'),(524,577,'attr','status_id','1','3'),(525,577,'attr','done_ratio','50','100'),(526,578,'attr','status_id','1','3'),(527,578,'attr','done_ratio','0','100'),(528,581,'attr','status_id','1','5'),(529,581,'attr','done_ratio','0','100'),(530,583,'attr','status_id','1','5'),(531,583,'attr','done_ratio','0','100'),(532,586,'attachment','766',NULL,'L_ECS.jpg'),(533,587,'attr','status_id','1','5'),(534,587,'attr','done_ratio','0','100'),(535,588,'attr','status_id','1','2'),(536,588,'attr','done_ratio','0','50'),(537,589,'attr','done_ratio','0','80'),(538,590,'attr','status_id','1','2'),(539,590,'attr','done_ratio','0','90'),(540,591,'attr','status_id','1','2'),(541,591,'attr','assigned_to_id','1','328'),(542,591,'attr','priority_id','4','7'),(543,592,'attr','status_id','1','5'),(544,592,'attr','done_ratio','0','100'),(545,595,'attr','status_id','1','5'),(546,595,'attr','done_ratio','0','100'),(547,596,'attr','status_id','1','5'),(548,596,'attr','done_ratio','0','100'),(549,597,'attr','status_id','2','5'),(550,597,'attr','done_ratio','0','100'),(551,598,'attr','status_id','2','5'),(552,598,'attr','done_ratio','0','100'),(553,599,'attr','status_id','2','5'),(554,599,'attr','done_ratio','0','100'),(555,600,'attr','status_id','2','5'),(556,600,'attr','done_ratio','0','100'),(557,601,'attr','status_id','2','5'),(558,601,'attr','done_ratio','0','100'),(559,602,'attr','done_ratio','50','80'),(560,603,'attr','status_id','1','5'),(561,603,'attr','done_ratio','0','100'),(562,604,'attr','status_id','1','3'),(563,604,'attr','done_ratio','0','100'),(564,605,'attr','status_id','2','5'),(565,605,'attr','done_ratio','0','100'),(566,606,'attr','status_id','1','5'),(567,606,'attr','done_ratio','0','100'),(568,607,'attr','status_id','1','5'),(569,607,'attr','done_ratio','0','100'),(570,608,'attr','status_id','1','5'),(571,608,'attr','done_ratio','0','100'),(572,609,'attr','status_id','3','5'),(573,610,'attr','status_id','1','5'),(574,610,'attr','done_ratio','70','100'),(575,611,'attr','status_id','1','5'),(576,611,'attr','done_ratio','0','100'),(577,612,'attr','status_id','1','5'),(578,612,'attr','done_ratio','0','100'),(579,613,'attr','status_id','1','5'),(580,613,'attr','done_ratio','0','100'),(581,614,'attr','status_id','1','5'),(582,614,'attr','done_ratio','0','100'),(583,615,'attr','status_id','1','5'),(584,615,'attr','done_ratio','0','100'),(585,616,'attr','status_id','1','5'),(586,616,'attr','done_ratio','0','100'),(587,617,'attr','status_id','1','5'),(588,617,'attr','done_ratio','0','100'),(589,618,'attr','status_id','1','5'),(590,618,'attr','done_ratio','0','100'),(591,619,'attr','status_id','1','5'),(592,619,'attr','done_ratio','0','100'),(593,620,'attr','status_id','3','5'),(594,621,'attr','status_id','2','5'),(595,621,'attr','done_ratio','50','100'),(596,622,'attr','status_id','3','5'),(597,623,'attr','status_id','1','5'),(598,623,'attr','done_ratio','0','100'),(599,624,'attr','status_id','3','5'),(600,625,'attr','status_id','1','5'),(601,625,'attr','done_ratio','0','100'),(602,626,'attr','status_id','3','5'),(603,628,'attr','assigned_to_id','315','1'),(604,629,'attr','status_id','1','5'),(605,629,'attr','done_ratio','0','100'),(606,631,'attr','status_id','1','5'),(607,631,'attr','done_ratio','30','100'),(608,632,'attr','status_id','1','5'),(609,632,'attr','done_ratio','0','100'),(610,633,'attr','status_id','1','5'),(611,633,'attr','done_ratio','0','100'),(612,634,'attr','status_id','3','5'),(613,635,'attr','status_id','3','5'),(614,636,'attr','status_id','3','5'),(615,637,'attr','status_id','3','5'),(616,638,'attr','status_id','1','5'),(617,638,'attr','done_ratio','0','100'),(618,639,'attr','due_date','2018-01-25','2018-05-16'),(619,643,'attr','status_id','1','5'),(620,643,'attr','done_ratio','0','100'),(621,644,'attr','assigned_to_id',NULL,'331'),(622,646,'attachment','804',NULL,'procellics-02-05-2018.xmi'),(623,648,'attr','status_id','1','5'),(624,648,'attr','done_ratio','0','100'),(625,649,'attr','status_id','1','5'),(626,649,'attr','done_ratio','0','100'),(627,650,'attr','status_id','1','5'),(628,650,'attr','done_ratio','0','100'),(629,651,'attr','status_id','1','5'),(630,651,'attr','done_ratio','0','100'),(631,652,'attachment','814',NULL,'CPF_L04.log'),(632,655,'attr','assigned_to_id',NULL,'1'),(633,656,'attr','status_id','1','5'),(634,656,'attr','done_ratio','0','100'),(635,657,'attr','status_id','1','5'),(636,657,'attr','done_ratio','0','100'),(637,660,'attr','status_id','1','2'),(638,661,'attr','status_id','1','2'),(639,662,'attr','status_id','1','2'),(640,663,'attr','status_id','1','3'),(641,663,'attr','done_ratio','0','100'),(642,664,'attachment','933',NULL,'Test_Config_Maxi.zip'),(643,665,'attr','status_id','2','3'),(644,665,'attr','done_ratio','10','100'),(645,667,'attr','status_id','1','2'),(646,670,'attr','status_id','1','5'),(647,671,'attr','assigned_to_id','328','1'),(648,673,'attr','status_id','1','5'),(649,673,'attr','done_ratio','0','100'),(650,674,'attr','status_id','1','5'),(651,674,'attr','priority_id','6','3'),(652,674,'attr','done_ratio','0','100'),(653,675,'attr','status_id','1','2'),(654,675,'attr','done_ratio','0','80'),(655,677,'attr','status_id','1','3'),(656,677,'attr','done_ratio','0','100'),(657,678,'attr','status_id','1','2'),(658,681,'attr','status_id','1','2'),(659,683,'attr','status_id','1','2'),(660,684,'attr','status_id','1','5'),(661,684,'attr','done_ratio','0','100'),(662,685,'attr','status_id','1','3'),(663,685,'attr','done_ratio','0','100'),(664,686,'attr','status_id','2','5'),(665,686,'attr','done_ratio','0','100'),(666,687,'attachment','1056',NULL,'xml.rar'),(667,688,'attr','status_id','1','5'),(668,688,'attr','done_ratio','0','100'),(669,689,'attr','status_id','1','3'),(670,689,'attr','done_ratio','0','100'),(671,697,'attachment','1066',NULL,'Main.cpp'),(672,700,'attachment','1067',NULL,'Main.cpp'),(673,706,'attr','status_id','1','5'),(674,707,'attr','done_ratio','0','100'),(675,708,'attr','status_id','1','5'),(676,708,'attr','done_ratio','0','100'),(677,709,'attr','status_id','1','5'),(678,709,'attr','done_ratio','0','100'),(679,710,'attr','status_id','1','5'),(680,710,'attr','done_ratio','0','100'),(681,711,'attr','status_id','1','2'),(682,711,'attr','done_ratio','0','100'),(683,713,'attr','status_id','3','5'),(684,714,'attr','status_id','1','5'),(685,714,'attr','done_ratio','0','100'),(686,715,'attr','status_id','1','5'),(687,715,'attr','done_ratio','0','100'),(688,716,'attr','status_id','1','5'),(689,716,'attr','done_ratio','0','100'),(690,717,'attr','status_id','1','5'),(691,717,'attr','done_ratio','0','100'),(692,718,'attr','status_id','1','5'),(693,718,'attr','done_ratio','0','100'),(694,719,'attr','status_id','1','2'),(695,720,'attr','status_id','1','5'),(696,724,'attachment','1116',NULL,'OPCUA certificats BadSignature.docx'),(697,727,'attr','status_id','2','5'),(698,727,'attr','done_ratio','0','100'),(699,728,'attr','status_id','1','5'),(700,728,'attr','done_ratio','0','100'),(701,729,'attr','status_id','1','5'),(702,729,'attr','done_ratio','0','100'),(703,730,'attr','status_id','1','5'),(704,730,'attr','done_ratio','0','100'),(705,731,'attr','status_id','1','6'),(706,732,'attr','status_id','3','5'),(707,733,'attr','status_id','2','5'),(708,734,'attachment','1142',NULL,'TEST VARIABLES OPC UA TYCO VPIEX 0.0.1.0- ESSAIS DU 190419.xlsx'),(709,735,'attachment','1144',NULL,'TEST VARIABLES OPC UA TYCO VPIEX 0.0.1.0- ESSAIS DU 220419.xlsx'),(710,735,'attr','status_id','1','2'),(711,736,'attachment','1147',NULL,'TEST VARIABLES OPC UA TYCO VPIEX 0.0.1.1- ESSAIS DU 230419.xlsx'),(712,737,'attr','done_ratio','0','60'),(713,738,'attachment','1148',NULL,'CPF_L04.log'),(714,740,'attachment','1149',NULL,'CMakeLists.txt'),(715,742,'attr','status_id','1','2'),(716,743,'attr','status_id','1','2'),(717,744,'attr','status_id','1','2'),(718,744,'attr','done_ratio','0','100'),(719,747,'attr','status_id','1','2'),(720,748,'attachment','1150',NULL,'Capture.JPG'),(721,750,'attr','status_id','1','3'),(722,750,'attr','done_ratio','0','100'),(723,751,'attr','status_id','2','5'),(724,751,'attr','done_ratio','60','100'),(725,753,'attachment','1152',NULL,'Tyco-00200.log'),(726,753,'attr','done_ratio','100','10'),(727,754,'attr','done_ratio','100','90'),(728,756,'attr','done_ratio','10','100'),(729,764,'attr','status_id','2','5'),(730,766,'attr','done_ratio','0','100'),(731,767,'attr','status_id','1','5'),(732,767,'attr','done_ratio','0','90'),(733,768,'attr','done_ratio','90','100'),(734,769,'attr','status_id','2','3'),(735,769,'attr','done_ratio','0','90'),(736,770,'attr','status_id','2','5'),(737,771,'attr','status_id','1','5'),(738,771,'attr','done_ratio','0','100'),(739,772,'attr','status_id','1','5'),(740,772,'attr','done_ratio','0','100'),(741,775,'attr','status_id','1','5'),(742,775,'attr','done_ratio','0','100'),(743,776,'attr','status_id','1','5'),(744,776,'attr','done_ratio','0','100'),(745,777,'attr','status_id','2','5'),(746,777,'attr','done_ratio','0','100'),(747,778,'attr','status_id','1','5'),(748,778,'attr','done_ratio','0','100'),(749,779,'attr','status_id','1','5'),(750,779,'attr','done_ratio','0','100'),(751,780,'attr','done_ratio','0','90'),(752,781,'attr','done_ratio','0','90'),(753,782,'attr','status_id','2','5'),(754,783,'attr','done_ratio','80','100'),(755,784,'attr','status_id','1','5'),(756,785,'attr','status_id','2','5'),(757,785,'attr','done_ratio','80','100'),(758,786,'attr','status_id','1','5'),(759,786,'attr','done_ratio','0','100'),(760,787,'attr','status_id','1','5'),(761,789,'attr','status_id','1','5'),(762,789,'attr','done_ratio','0','100'),(763,790,'attr','status_id','3','5'),(764,791,'attr','status_id','1','5'),(765,791,'attr','done_ratio','0','100'),(766,792,'attr','status_id','3','5'),(767,792,'attr','done_ratio','90','100'),(768,793,'attr','status_id','5','2'),(769,794,'attr','status_id','1','5'),(770,794,'attr','done_ratio','0','100'),(771,795,'attr','done_ratio','100','50'),(772,799,'attr','status_id','1','5'),(773,799,'attr','done_ratio','0','100'),(774,800,'attr','fixed_version_id',NULL,'110'),(775,802,'attr','status_id','1','2'),(776,802,'attr','done_ratio','0','10'),(777,804,'attr','status_id','1','2'),(778,804,'attr','done_ratio','0','40'),(779,805,'attr','done_ratio','0','100'),(780,806,'attr','status_id','1','3'),(781,806,'attr','done_ratio','0','100'),(782,810,'attr','status_id','1','2'),(783,810,'attr','done_ratio','0','50'),(784,824,'attr','status_id','2','5'),(785,824,'attr','done_ratio','10','100'),(786,825,'attr','status_id','2','5'),(787,825,'attr','done_ratio','40','100'),(788,828,'attr','status_id','1','4'),(789,828,'attr','done_ratio','0','100'),(790,829,'attr','status_id','3','5'),(791,830,'attr','status_id','1','5'),(792,831,'attr','status_id','4','5'),(793,832,'attr','status_id','1','5'),(794,832,'attr','done_ratio','0','100'),(795,833,'attr','status_id','1','5'),(796,833,'attr','done_ratio','0','100'),(797,834,'attr','status_id','1','5'),(798,834,'attr','done_ratio','0','100'),(799,835,'attr','status_id','1','5'),(800,835,'attr','done_ratio','0','100'),(801,836,'attr','status_id','1','5'),(802,836,'attr','done_ratio','0','100'),(803,837,'attr','status_id','1','5'),(804,837,'attr','done_ratio','0','100'),(805,838,'attr','status_id','2','5'),(806,840,'attr','status_id','1','2'),(807,843,'attachment','1178',NULL,'UaExpert_OldCert.log'),(808,843,'attachment','1179',NULL,'UaExpert_NewCert.log'),(809,843,'attachment','1180',NULL,'CPF_L04.log'),(810,844,'attr','status_id','1','2'),(811,850,'attr','status_id','2','3'),(812,850,'attr','done_ratio','0','90'),(813,855,'attr','status_id','1','2'),(814,855,'attr','done_ratio','0','100'),(815,867,'attr','status_id','1','5'),(816,867,'attr','done_ratio','0','100'),(817,868,'attr','status_id','1','2'),(818,870,'attachment','1214',NULL,'CPF_L04.pfx'),(819,870,'attachment','1215',NULL,'CPF_L04.der'),(820,875,'attachment','1216',NULL,'Capture.PNG'),(821,881,'attachment','1217',NULL,'Capture.PNG'),(822,896,'attr','status_id','1','2'),(823,902,'attr','status_id','1','3'),(824,902,'attr','done_ratio','0','100'),(825,902,'attr','estimated_hours',NULL,'2.0'),(826,905,'attachment','1246',NULL,'valgrind_1.0.5.7_RC09'),(827,908,'attr','status_id','1','5'),(828,908,'attr','done_ratio','0','100'),(829,909,'attr','status_id','3','5'),(830,910,'attr','status_id','1','5'),(831,910,'attr','done_ratio','0','100'),(832,911,'attr','done_ratio','10','100'),(833,913,'attr','status_id','2','3'),(834,913,'attr','done_ratio','0','100'),(835,916,'attr','status_id','1','2'),(836,918,'attachment','1255',NULL,'Simulation_2019.zip'),(837,920,'attr','status_id','1','2'),(838,920,'attr','done_ratio','0','70'),(839,925,'attr','status_id','2','5'),(840,925,'attr','done_ratio','0','100'),(841,927,'attr','status_id','1','4'),(842,929,'attr','status_id','1','2'),(843,934,'attr','status_id','1','2'),(844,935,'attachment','1268',NULL,'OLW.xml'),(845,936,'attr','status_id','1','5'),(846,936,'attr','done_ratio','0','100'),(847,941,'attachment','1286',NULL,'ConfigOpenOpcUa.oouaprj'),(848,941,'attr','status_id','1','3'),(849,943,'attr','status_id','1','5'),(850,943,'attr','done_ratio','0','100'),(851,945,'attr','status_id','1','6'),(852,945,'attr','done_ratio','0','100'),(853,946,'attr','status_id','2','5'),(854,946,'attr','done_ratio','90','100'),(855,947,'attachment','1291',NULL,'ListCommand_SK.pptx'),(856,948,'attr','status_id','1','5'),(857,948,'attr','done_ratio','0','100'),(858,950,'attr','status_id','1','5'),(859,950,'attr','done_ratio','0','100'),(860,951,'attr','status_id','1','2'),(861,951,'attr','done_ratio','0','50'),(862,952,'attr','status_id','1','5'),(863,952,'attr','assigned_to_id',NULL,'1'),(864,952,'attr','done_ratio','0','100'),(865,953,'attr','status_id','1','5'),(866,953,'attr','done_ratio','0','100'),(867,956,'attr','status_id','1','5'),(868,956,'attr','done_ratio','0','100'),(869,957,'attr','status_id','1','5'),(870,957,'attr','done_ratio','0','100'),(871,958,'attr','status_id','1','2'),(872,959,'attr','status_id','1','2'),(873,959,'attr','done_ratio','0','100'),(874,960,'attr','status_id','1','2'),(875,961,'attachment','1338',NULL,'CaptureTP001.PNG'),(876,961,'attr','done_ratio','0','90'),(877,962,'attr','status_id','1','3'),(878,962,'attr','done_ratio','0','90'),(879,964,'attr','status_id','1','2'),(880,968,'attr','status_id','1','3'),(881,968,'attr','done_ratio','0','100'),(882,969,'attachment','1349',NULL,'Opc.Ua.NodeSet2.CTT.xml'),(883,969,'attr','status_id','1','3'),(884,969,'attr','done_ratio','0','100'),(885,970,'attr','status_id','1','3'),(886,970,'attr','done_ratio','0','100'),(887,971,'attr','status_id','1','3'),(888,971,'attr','done_ratio','0','90'),(889,972,'attr','status_id','1','3'),(890,972,'attr','done_ratio','0','100'),(891,973,'attachment','1351',NULL,'CertificateFixed.PNG'),(892,973,'attr','status_id','1','3'),(893,973,'attr','assigned_to_id',NULL,'1'),(894,973,'attr','done_ratio','0','100'),(895,974,'attachment','1352',NULL,'ReadIndex.jpg'),(896,975,'attachment','1353',NULL,'ReadIndexOPCF_SampleClient.png'),(897,976,'attr','status_id','1','2'),(898,976,'attr','done_ratio','0','50'),(899,979,'attachment','1356',NULL,'Definition_ServerNonce.PNG'),(900,981,'attachment','1357',NULL,'DataEncoding.PNG'),(901,981,'attr','assigned_to_id','1','430'),(902,983,'attr','assigned_to_id','430','1'),(903,984,'attr','status_id','1','2'),(904,986,'attr','status_id','1','3'),(905,986,'attr','done_ratio','0','100'),(906,987,'attr','status_id','1','2'),(907,987,'attr','assigned_to_id',NULL,'1'),(908,988,'attr','status_id','1','2'),(909,988,'attr','assigned_to_id',NULL,'1'),(910,994,'attachment','1391',NULL,'Backtrace debugger.txt'),(911,994,'attachment','1392',NULL,'Pile d_execution Console.txt'),(912,998,'attachment','1413',NULL,'WiresharkKEP-OOUA.PNG'),(913,998,'attachment','1414',NULL,'UAX-KEP-OOUA.PNG'),(914,1009,'attr','status_id','1','3'),(915,1009,'attr','done_ratio','0','100'),(916,1010,'attr','status_id','1','5'),(917,1010,'attr','done_ratio','0','100'),(918,1011,'attr','status_id','1','5'),(919,1012,'attr','status_id','1','5'),(920,1013,'attr','status_id','1','5'),(921,1013,'attr','done_ratio','0','100'),(922,1014,'attr','status_id','1','5'),(923,1014,'attr','done_ratio','0','100'),(924,1015,'attr','status_id','2','5'),(925,1015,'attr','done_ratio','90','100'),(926,1016,'attr','status_id','1','5'),(927,1016,'attr','done_ratio','0','100'),(928,1017,'attr','status_id','3','5'),(929,1018,'attr','status_id','2','5'),(930,1018,'attr','done_ratio','0','100'),(931,1019,'attr','status_id','2','5'),(932,1020,'attr','status_id','1','5'),(933,1020,'attr','done_ratio','0','100'),(934,1021,'attr','status_id','1','5'),(935,1022,'attr','assigned_to_id',NULL,'1'),(936,1022,'attr','fixed_version_id',NULL,'110'),(937,1023,'attr','status_id','1','5'),(938,1023,'attr','done_ratio','0','100'),(939,1024,'attr','status_id','1','5'),(940,1024,'attr','done_ratio','0','100'),(941,1031,'attachment','1446',NULL,'Cyclomix-00200.log'),(942,1031,'attachment','1447',NULL,'OPCUASKServer.log'),(943,1034,'attr','status_id','1','2'),(944,1034,'attr','priority_id','4','6'),(945,1037,'attr','assigned_to_id',NULL,'1'),(946,1039,'attachment','1451',NULL,'CMake.rtf'),(947,1039,'attachment','1452',NULL,'Make.rtf'),(948,1041,'attachment','1462',NULL,'Ano-465.png'),(949,1042,'attachment','1463',NULL,'PlantAvantLancementLine.PNG'),(950,1042,'attachment','1464',NULL,'PlantApresLancementLine.PNG'),(951,1043,'attachment','1467',NULL,'RecipeDataType_badstruct.png'),(952,1045,'attr','status_id','1','5'),(953,1045,'attr','done_ratio','0','100'),(954,1047,'attachment','1479',NULL,'XiMulator.PNG'),(955,1047,'attr','status_id','1','2'),(956,1048,'attachment','1480',NULL,'XiMulator.PNG'),(957,1048,'attr','status_id','1','2'),(958,1050,'attachment','1482',NULL,'Opc.Ua.NodeSet2.TricycleLionel.zip'),(959,1051,'attr','status_id','2','5'),(960,1051,'attr','done_ratio','0','100'),(961,1052,'attachment','1483',NULL,'Exo_Tricycle.xml'),(962,1052,'attachment','1484',NULL,'2020-11-17 10_35_48-Xsimulator.png'),(963,1053,'attachment','1485',NULL,'EXO_Tricycle.PNG'),(964,1053,'attr','done_ratio','0','50'),(965,1057,'attachment','1487',NULL,'Exo_Tricycle_V2_Conf.doc'),(966,1059,'attachment','1488',NULL,'Exo_Tricycle_V2_Gen.xml'),(967,1059,'attachment','1489',NULL,'Exo_Tricyle_V2.EAP'),(968,1064,'attr','status_id','2','3'),(969,1064,'attr','done_ratio','50','100'),(970,1066,'attr','status_id','1','5'),(971,1066,'attr','done_ratio','0','100'),(972,1067,'attr','status_id','1','2'),(973,1067,'attr','done_ratio','0','60'),(974,1068,'attr','status_id','2','5'),(975,1068,'attr','done_ratio','60','100'),(976,1069,'attachment','1503',NULL,'recipeDataType.PNG'),(977,1070,'attr','status_id','1','2'),(978,1070,'attr','done_ratio','0','60'),(979,1078,'attr','status_id','1','5'),(980,1078,'attr','done_ratio','0','100'),(981,1081,'attachment','1515',NULL,'Modele-UML.png'),(982,1082,'attachment','1516',NULL,'IMG_20201202_161336.jpg'),(983,1084,'attachment','1517',NULL,'clipboard-202012022123-ezmsc.png'),(984,1087,'attachment','1518',NULL,'clipboard-202012030946-4m3nz.png'),(985,1087,'attr','status_id','1','5'),(986,1089,'attr','status_id','2','5'),(987,1089,'attr','done_ratio','0','100'),(988,1094,'attachment','1528',NULL,'Opc.Ua.NodeSet2.SK_Model_7-12-2020.xml'),(989,1095,'attr','status_id','2','5'),(990,1095,'attr','done_ratio','60','100'),(991,1096,'attr','status_id','1','5'),(992,1096,'attr','done_ratio','0','100'),(993,1100,'attachment','1534',NULL,'clipboard-202012081146-cnrmy.png'),(994,1100,'attr','assigned_to_id',NULL,'461'),(995,1103,'attachment','1535',NULL,'republish_uaexpert.png'),(996,1106,'attachment','1537',NULL,'UAExpert_issues.log'),(997,1111,'attr','status_id','1','5'),(998,1111,'attr','done_ratio','0','100'),(999,1118,'attr','assigned_to_id',NULL,'461'),(1000,1118,'attr','priority_id','4','7'),(1001,1122,'attr','project_id','1','75'),(1002,1126,'attr','status_id','1','5'),(1003,1126,'attr','done_ratio','0','100'),(1004,1139,'attachment','1559',NULL,'OpenOpcUaCoreServer_Release.exe_201214_091011.dmp.zip'),(1005,1139,'attachment','1560',NULL,'OpenOpcUaCoreServer_Release.exe_201214_083515.dmp.zip'),(1006,1148,'attachment','1561',NULL,'diag_ua.png'),(1007,1152,'attr','status_id','1','5'),(1008,1152,'attr','done_ratio','0','100'),(1009,1153,'attr','status_id','1','5'),(1010,1153,'attr','done_ratio','0','100'),(1011,1158,'attachment','1570',NULL,'clipboard-202012220209-kigb4.png'),(1012,1158,'attachment','1571',NULL,'clipboard-202012220209-8vs4i.png'),(1013,1159,'attr','assigned_to_id',NULL,'1'),(1014,1164,'attachment','1572',NULL,'nodeset_width.png'),(1015,1165,'attachment','1573',NULL,'nodeset_width_0.png'),(1016,1165,'attachment','1574',NULL,'12E_address_content.png'),(1017,1166,'attr','status_id','1','5'),(1018,1166,'attr','done_ratio','0','100'),(1019,1167,'attr','status_id','1','5'),(1020,1167,'attr','done_ratio','0','100'),(1021,1177,'attr','status_id','1','2'),(1022,1177,'attr','assigned_to_id',NULL,'1'),(1023,1178,'attachment','1580',NULL,'OpenOpcUaCoreServer_Release.exe_210107.zip'),(1024,1179,'attachment','1584',NULL,'OpenOpcUaCoreServer_Release.exe_210108.zip'),(1025,1180,'attachment','1585',NULL,'OpenOpcUaCoreServer_Release.exe_210108_102935.zip'),(1026,1181,'attachment','1586',NULL,'OpenOpcUaCoreServer_Release.exe_210108-2.zip'),(1027,1183,'attachment','1588',NULL,'CTT_Result_CHUBB_OOUA_1.0.5.9_12-1-2021.xlsx'),(1028,1183,'attachment','1589',NULL,'clipboard-202101121805-nabiy.png'),(1029,1186,'attachment','1591',NULL,'balise value.png'),(1030,1186,'attachment','1592',NULL,'Conf Test serveur OPC UA.zip'),(1031,1189,'attr','status_id','1','2'),(1032,1189,'attr','assigned_to_id',NULL,'1'),(1033,1189,'attr','done_ratio','0','20'),(1034,1192,'attachment','1593',NULL,'CTT_CHUBB.results.xml'),(1035,1201,'attr','status_id','2','5'),(1036,1201,'attr','done_ratio','20','100'),(1037,1203,'attr','status_id','1','2'),(1038,1203,'attr','done_ratio','0','50'),(1039,1204,'attachment','1604',NULL,'crash.png'),(1040,1204,'attachment','1605',NULL,'memory_leaks.png'),(1041,1205,'attachment','1606',NULL,'memory_leaks.png'),(1042,1206,'attachment','1607',NULL,'crash.png'),(1043,1206,'attachment','1608',NULL,'crash1.png'),(1044,1209,'attr','status_id','1','3'),(1045,1209,'attr','done_ratio','0','100'),(1046,1212,'attr','status_id','1','5'),(1047,1212,'attr','done_ratio','0','100'),(1048,1213,'attachment','1628',NULL,'clipboard-202101251542-dhp8t.png'),(1049,1214,'attachment','1630',NULL,'Concentrateur ADP Certification OPC-UA-2.7z'),(1050,1215,'attachment','1640',NULL,'convertDerEnPem.bat'),(1051,1215,'attachment','1641',NULL,'convertPemEnPfx.bat'),(1052,1216,'attachment','1643',NULL,'CohabitationNOK-VpiPlant.png'),(1053,1219,'attachment','1659',NULL,'M4069.PNG'),(1054,1219,'attachment','1660',NULL,'M4079.JPG'),(1055,1219,'attachment','1661',NULL,'M4070.PNG'),(1056,1223,'attachment','1662',NULL,'M4079_20210204_Tail.log'),(1057,1225,'attr','status_id','1','2'),(1058,1225,'attr','done_ratio','0','10'),(1059,1226,'attr','status_id','1','5'),(1060,1230,'attr','status_id','1','3'),(1061,1230,'attr','done_ratio','0','100'),(1062,1232,'attr','status_id','1','3'),(1063,1232,'attr','done_ratio','0','100'),(1064,1235,'attr','status_id','2','5'),(1065,1235,'attr','done_ratio','0','100'),(1066,1236,'attachment','1681',NULL,'Maquette alarmes.zip'),(1067,1237,'attr','status_id','1','3'),(1068,1237,'attr','done_ratio','0','100'),(1069,1238,'attachment','1684',NULL,'clipboard-202102191728-oqxfg.png'),(1070,1238,'attachment','1685',NULL,'clipboard-202102191729-zfhp1.png'),(1071,1239,'attr','status_id','1','3'),(1072,1239,'attr','done_ratio','0','100'),(1073,1240,'attachment','1689',NULL,'clipboard-202102230840-j4bny.png'),(1074,1246,'attachment','1706',NULL,'clipboard-202103011527-emvge.png'),(1075,1248,'attachment','1708',NULL,'clipboard-202103011754-mq8hg.png'),(1076,1248,'attachment','1709',NULL,'clipboard-202103011754-vg0zb.png'),(1077,1250,'attachment','1710',NULL,'clipboard-202103020956-rtiym.png'),(1078,1252,'attr','status_id','2','5'),(1079,1252,'attr','done_ratio','50','100'),(1080,1253,'attr','status_id','1','2'),(1081,1253,'attr','done_ratio','0','50'),(1082,1254,'attr','status_id','1','3'),(1083,1254,'attr','done_ratio','0','100'),(1084,1255,'attr','status_id','1','5'),(1085,1255,'attr','done_ratio','0','100'),(1086,1257,'attr','status_id','2','3'),(1087,1257,'attr','done_ratio','0','100'),(1088,1258,'attr','status_id','1','2'),(1089,1258,'attr','done_ratio','0','50'),(1090,1259,'attachment','1713',NULL,'clipboard-202103031034-pr2bb.png'),(1091,1259,'attachment','1714',NULL,'clipboard-202103031035-fyqbz.png'),(1092,1259,'attachment','1715',NULL,'clipboard-202103031037-wq3tt.png'),(1093,1259,'attachment','1716',NULL,'clipboard-202103031048-dxca6.png'),(1094,1261,'attr','status_id','1','2'),(1095,1261,'attr','done_ratio','0','10'),(1096,1265,'attr','status_id','1','5'),(1097,1265,'attr','done_ratio','0','100'),(1098,1268,'attachment','1717',NULL,'clipboard-202103031620-2td8b.png'),(1099,1268,'attachment','1718',NULL,'clipboard-202103031625-g96um.png'),(1100,1270,'attachment','1721',NULL,'OpenOpcUaCoreServer_Release.exe_210305_164129.dmp'),(1101,1271,'attachment','1723',NULL,'OpenOpcUaCoreServer_Release.exe_210305_181716.dmp'),(1102,1272,'attr','status_id','1','2'),(1103,1273,'attachment','1727',NULL,'ExelsiusServer.log'),(1104,1276,'attachment','1728',NULL,'Maquette exemple Alarme à Seuil.zip'),(1105,1277,'attr','status_id','2','5'),(1106,1277,'attr','done_ratio','0','100'),(1107,1278,'attachment','1733',NULL,'OpenOpcUaCoreServer_Release.exe_210309_141859.zip'),(1108,1279,'attr','status_id','1','5'),(1109,1279,'attr','done_ratio','0','100'),(1110,1280,'attr','status_id','2','5'),(1111,1280,'attr','done_ratio','0','100'),(1112,1281,'attr','status_id','2','5'),(1113,1281,'attr','done_ratio','10','100'),(1114,1283,'attachment','1740',NULL,'Maquette exemple Vfi Csv Debug.zip'),(1115,1284,'attachment','1741',NULL,'Maquette exemple Securité LoginPassword.zip'),(1116,1285,'attachment','1745',NULL,'Demo_VpiUaClnt_AutoCfg_Debug_x64.zip'),(1117,1286,'attr','status_id','1','5'),(1118,1286,'attr','done_ratio','0','100'),(1119,1288,'attr','status_id','1','5'),(1120,1288,'attr','done_ratio','0','100'),(1121,1289,'attachment','1747',NULL,'clipboard-202103171158-9kbs6.png'),(1122,1289,'attachment','1748',NULL,'clipboard-202103171159-e2edq.png'),(1123,1290,'attachment','1749',NULL,'Maquette exemple Securité LoginPassword Checked.zip'),(1124,1292,'attr','status_id','1','2'),(1125,1292,'attr','done_ratio','0','50'),(1126,1295,'attr','status_id','2','5'),(1127,1295,'attr','done_ratio','50','100'),(1128,1296,'attr','status_id','1','5'),(1129,1296,'attr','done_ratio','0','100'),(1130,1298,'attr','status_id','1','2'),(1131,1299,'attachment','1752',NULL,'clipboard-202103181407-xb1m5.png'),(1132,1301,'attachment','1756',NULL,'clipboard-202103220955-g0qij.png'),(1133,1301,'attachment','1757',NULL,'clipboard-202103220955-8yilz.png'),(1134,1303,'attachment','1763',NULL,'clipboard-202104061851-iz7oi.png'),(1135,1303,'attr','tracker_id','3','2'),(1136,1303,'attr','status_id','1','2'),(1137,1304,'attr','status_id','1','5'),(1138,1304,'attr','done_ratio','0','100'),(1139,1306,'attr','status_id','1','2'),(1140,1308,'attr','status_id','1','5'),(1141,1308,'attr','done_ratio','0','100'),(1142,1309,'attr','status_id','1','2'),(1143,1309,'attr','done_ratio','0','90'),(1144,1310,'attr','status_id','2','5'),(1145,1310,'attr','done_ratio','50','100'),(1146,1311,'attr','status_id','2','5'),(1147,1311,'attr','done_ratio','0','100'),(1148,1312,'attr','status_id','2','5'),(1149,1312,'attr','done_ratio','50','100'),(1150,1313,'attr','status_id','1','5'),(1151,1313,'attr','done_ratio','0','100'),(1152,1314,'attr','status_id','2','5'),(1153,1314,'attr','done_ratio','0','100'),(1154,1315,'attr','status_id','1','5'),(1155,1315,'attr','done_ratio','0','100'),(1156,1317,'attachment','1773',NULL,'Demo v2.1-Test descente nok_MC12-04.zip'),(1157,1318,'attachment','1774',NULL,'clipboard-202104121839-txplu.png'),(1158,1321,'attachment','1776',NULL,'clipboard-202104121910-ddhl7.png'),(1159,1324,'attachment','1781',NULL,'Maquette avec Workaround 14-4-2021.zip'),(1160,1324,'attr','status_id','1','2'),(1161,1324,'attr','priority_id','4','7'),(1162,1325,'attr','tracker_id','1','3'),(1163,1325,'attr','status_id','1','2'),(1164,1328,'attr','status_id','2','5'),(1165,1328,'attr','done_ratio','0','100'),(1166,1331,'attachment','1782',NULL,'Genesis Alarmes.pcapng'),(1167,1331,'attachment','1783',NULL,'clipboard-202104150957-8zycc.png'),(1168,1331,'attachment','1784',NULL,'clipboard-202104151000-74cih.png'),(1169,1332,'attachment','1785',NULL,'clipboard-202104151452-midwb.png'),(1170,1335,'attr','status_id','2','5'),(1171,1335,'attr','done_ratio','0','100'),(1172,1339,'attachment','1788',NULL,'clipboard-202104151800-uek53.png'),(1173,1340,'attachment','1790',NULL,'clipboard-202104151803-0taly.png'),(1174,1340,'attachment','1791',NULL,'Genesis Alarmes.pcapng'),(1175,1340,'attachment','1792',NULL,'Screenshots paquets 1661 et 2027.pdf'),(1176,1350,'attr','status_id','1','5'),(1177,1350,'attr','done_ratio','0','100'),(1178,1357,'attachment','1803',NULL,'CreateMonitoredItemRequest.txt'),(1179,1357,'attachment','1802',NULL,'OffNormalAlarmType.txt'),(1180,1358,'attr','status_id','1','5'),(1181,1358,'attr','done_ratio','0','100'),(1182,1359,'attr','status_id','1','3'),(1183,1359,'attr','done_ratio','0','90'),(1184,1360,'attachment','1817',NULL,'clipboard-202104300939-mukyc.png'),(1185,1362,'attachment','1819',NULL,'clipboard-202104301044-krz0w.png'),(1186,1362,'attachment','1820',NULL,'clipboard-202104301045-z6cts.png'),(1187,1362,'attr','status_id','1','2'),(1188,1362,'attr','done_ratio','0','20'),(1189,1363,'attachment','1822',NULL,'Client OPCua.png'),(1190,1363,'attachment','1821',NULL,'ModScan32.png'),(1191,1363,'attachment','1826',NULL,'Valeurs automate en passant par serveur OPcua.png'),(1192,1363,'attachment','1823',NULL,'Valeurs automate sans passer par serveur OPCua.png'),(1193,1363,'attachment','1824',NULL,'Valeurs automate.PNG'),(1194,1363,'attachment','1825',NULL,'Valeus automate 2.PNG'),(1195,1363,'attachment','1827',NULL,'Serveur OPCua d_Avrieux.zip'),(1196,1364,'attr','status_id','1','2'),(1197,1364,'attr','done_ratio','0','20'),(1198,1370,'attr','status_id','2','5'),(1199,1370,'attr','done_ratio','20','100'),(1200,1371,'attr','status_id','2','5'),(1201,1371,'attr','done_ratio','0','100'),(1202,1372,'attr','status_id','2','5'),(1203,1372,'attr','done_ratio','10','100'),(1204,1373,'attachment','1837',NULL,'sp402sitycouae1.pfx'),(1205,1377,'attachment','1841',NULL,'clipboard-202105062335-lbpdp.png'),(1206,1377,'attachment','1842',NULL,'clipboard-202105062337-y88zh.png'),(1207,1378,'attachment','1843',NULL,'clipboard-202105062353-akwje.png'),(1208,1378,'attr','status_id','1','5'),(1209,1378,'attr','done_ratio','0','100'),(1210,1379,'attr','status_id','5','2'),(1211,1379,'attr','done_ratio','100','90'),(1212,1381,'attr','status_id','1','3'),(1213,1381,'attr','done_ratio','0','100'),(1214,1392,'attachment','1855',NULL,'clipboard-202105251842-6rzhk.png'),(1215,1393,'attachment','1856',NULL,'clipboard-202105251858-j7zou.png'),(1216,1393,'attachment','1857',NULL,'clipboard-202105251859-nstky.png'),(1217,1393,'attachment','1858',NULL,'clipboard-202105251900-6qqm6.png'),(1218,1395,'attachment','1860',NULL,'clipboard-202105261024-yfaqe.png'),(1219,1397,'attachment','1862',NULL,'clipboard-202105271122-z1irj.png'),(1220,1397,'attachment','1863',NULL,'Model.xml'),(1221,1403,'attr','status_id','3','2'),(1222,1404,'attachment','1865',NULL,'OutputXimulatorModel.zip'),(1223,1405,'attachment','1866',NULL,'clipboard-202105281112-bs9ro.png'),(1224,1406,'attr','status_id','2','3'),(1225,1407,'attr','status_id','1','5'),(1226,1407,'attr','done_ratio','0','100'),(1227,1408,'attr','status_id','1','3'),(1228,1408,'attr','done_ratio','0','100'),(1229,1409,'attr','status_id','1','2'),(1230,1409,'attr','done_ratio','0','50'),(1231,1410,'attachment','1887',NULL,'Maquette Inetum with OpenOpcUaConfigManager_Delivrable Beta_0_9_3_Release_x64.zip'),(1232,1417,'attachment','1894',NULL,'Tools.zip'),(1233,1429,'attr','status_id','1','3'),(1234,1429,'attr','done_ratio','0','100'),(1235,1432,'attr','assigned_to_id',NULL,'432'),(1236,1432,'attr','priority_id','4','6'),(1237,1434,'attr','status_id','1','5'),(1238,1434,'attr','done_ratio','0','100'),(1239,1435,'attachment','1933',NULL,'clipboard-202106301319-foq2n.png'),(1240,1435,'attachment','1934',NULL,'clipboard-202106301321-unq8m.png'),(1241,1437,'attr','status_id','1','5'),(1242,1437,'attr','done_ratio','0','100'),(1243,1438,'attr','status_id','1','5'),(1244,1438,'attr','done_ratio','0','100'),(1245,1440,'attachment','1958',NULL,'DB30.csv'),(1246,1440,'attachment','1959',NULL,'DB31.csv'),(1247,1440,'attachment','1960',NULL,'DB32.csv'),(1248,1440,'attachment','1961',NULL,'DB33.csv'),(1249,1440,'attachment','1962',NULL,'DB34.csv'),(1250,1440,'attachment','1963',NULL,'Serveur OPCua d_Avrieux avec ramification V3.zip'),(1251,1447,'attr','status_id','1','5'),(1252,1447,'attr','done_ratio','0','100'),(1253,1449,'attr','status_id','1','2'),(1254,1449,'attr','done_ratio','0','20'),(1255,1454,'attr','status_id','2','5'),(1256,1454,'attr','done_ratio','20','100'),(1257,1455,'attr','status_id','1','5'),(1258,1455,'attr','done_ratio','0','100'),(1259,1456,'attr','status_id','1','5'),(1260,1456,'attr','done_ratio','0','100'),(1261,1457,'attr','status_id','2','5'),(1262,1457,'attr','done_ratio','0','100'),(1263,1458,'attr','status_id','1','6'),(1264,1458,'attr','done_ratio','0','100'),(1265,1459,'attr','status_id','1','2'),(1266,1460,'attr','status_id','1','5'),(1267,1460,'attr','done_ratio','0','100'),(1268,1461,'attr','status_id','1','3'),(1269,1461,'attr','done_ratio','0','100'),(1270,1463,'attr','status_id','1','2'),(1271,1463,'attr','assigned_to_id',NULL,'1'),(1272,1464,'attr','status_id','1','3'),(1273,1464,'attr','done_ratio','0','100'),(1274,1465,'attr','status_id','1','3'),(1275,1465,'attr','done_ratio','0','100'),(1276,1466,'attr','status_id','2','5'),(1277,1466,'attr','done_ratio','50','100'),(1278,1467,'attr','status_id','1','5'),(1279,1467,'attr','done_ratio','0','100'),(1280,1469,'attr','status_id','1','2'),(1281,1469,'attr','done_ratio','0','50'),(1282,1473,'attr','status_id','2','3'),(1283,1473,'attr','assigned_to_id',NULL,'1'),(1284,1473,'attr','done_ratio','50','100'),(1285,1474,'attr','status_id','1','5'),(1286,1474,'attr','done_ratio','0','100'),(1287,1477,'attr','tracker_id','1','2'),(1288,1477,'attr','status_id','1','5'),(1289,1477,'attr','done_ratio','0','100'),(1290,1478,'attr','tracker_id','1','2'),(1291,1478,'attr','status_id','1','5'),(1292,1478,'attr','done_ratio','0','100'),(1293,1479,'attr','status_id','1','5'),(1294,1479,'attr','done_ratio','0','100'),(1295,1480,'attr','status_id','5','2'),(1296,1480,'attr','done_ratio','100','70'),(1297,1481,'attr','assigned_to_id',NULL,'432'),(1298,1482,'attr','status_id','1','5'),(1299,1482,'attr','done_ratio','0','100'),(1300,1483,'attr','status_id','2','5'),(1301,1483,'attr','done_ratio','70','100'),(1302,1484,'attr','status_id','2','5'),(1303,1484,'attr','done_ratio','0','100'),(1304,1485,'attr','status_id','2','5'),(1305,1485,'attr','done_ratio','90','100'),(1306,1486,'attr','status_id','1','5'),(1307,1486,'attr','done_ratio','0','100'),(1308,1487,'attachment','2029',NULL,'clipboard-202109021058-zreqv.png'),(1309,1487,'attachment','2030',NULL,'clipboard-202109021058-hmwx9.png'),(1310,1489,'attachment','2032',NULL,'20210902_150437.jpg'),(1311,1489,'attachment','2031',NULL,'20210902_150502.jpg'),(1312,1490,'attachment','2038',NULL,'clipboard-202109131349-zzeyl.png'),(1313,1492,'attachment','2039',NULL,'clipboard-202109131757-t84mw.png'),(1314,1494,'attachment','2040',NULL,'clipboard-202109142219-cstc6.png'),(1315,1494,'attachment','2041',NULL,'clipboard-202109142221-o14rf.png'),(1316,1494,'attachment','2042',NULL,'clipboard-202109142222-bqq3q.png'),(1317,1496,'attr','status_id','1','5'),(1318,1496,'attr','done_ratio','0','100'),(1319,1497,'attachment','2053',NULL,'clipboard-202109191755-ou9in.png'),(1320,1497,'attr','status_id','1','2'),(1321,1497,'attr','done_ratio','0','50'),(1322,1502,'attr','status_id','2','5'),(1323,1502,'attr','done_ratio','50','100'),(1324,1503,'attr','status_id','1','5'),(1325,1503,'attr','done_ratio','0','100'),(1326,1505,'attr','status_id','1','2'),(1327,1505,'attr','done_ratio','0','10'),(1328,1506,'attr','status_id','1','2'),(1329,1506,'attr','done_ratio','0','20'),(1330,1507,'attachment','2065',NULL,'OpenOpcUaConfigManager.log'),(1331,1507,'attachment','2064',NULL,'Publisher-00150.log'),(1332,1508,'attachment','2066',NULL,'Requests and responses analyze OPENOPCUA.xlsx'),(1333,1508,'attachment','2067',NULL,'clipboard-202109231838-txgqv.png'),(1334,1508,'attr','status_id','5','2'),(1335,1508,'attr','priority_id','4','7'),(1336,1509,'attachment','2068',NULL,'clipboard-202109241418-jezpy.png'),(1337,1509,'attachment','2069',NULL,'clipboard-202109241420-7xj1t.png'),(1338,1509,'attachment','2070',NULL,'Debug Alarmes.zip'),(1339,1510,'attachment','2072',NULL,'test45.tcpdump'),(1340,1510,'attachment','2071',NULL,'testX.tcpdump'),(1341,1512,'attr','status_id','1','2'),(1342,1515,'attachment','2082',NULL,'clipboard-202110041602-al8zu.png'),(1343,1516,'attr','done_ratio','10','70'),(1344,1518,'attachment','2084',NULL,'Maquette Ticket 607.zip'),(1345,1519,'attachment','2095',NULL,'TestLeak.xlsx'),(1346,1519,'attr','done_ratio','0','90'),(1347,1521,'attr','status_id','1','5'),(1348,1521,'attr','done_ratio','0','100'),(1349,1523,'attr','status_id','1','5'),(1350,1525,'attr','status_id','1','2'),(1351,1528,'attr','status_id','1','2'),(1352,1531,'attr','status_id','2','5'),(1353,1531,'attr','done_ratio','0','100'),(1354,1533,'attachment','2115',NULL,'VpiInitValues_UDT_14-10-2021.zip'),(1355,1533,'attr','status_id','1','2'),(1356,1533,'attr','done_ratio','0','90'),(1357,1534,'attr','status_id','1','2'),(1358,1536,'attr','status_id','1','5'),(1359,1536,'attr','done_ratio','0','100'),(1360,1537,'attr','status_id','1','2'),(1361,1537,'attr','done_ratio','0','30'),(1362,1538,'attachment','2119',NULL,'OpenOpcUaCoreServer_Debug.exe_211014_192425.dmp'),(1363,1539,'attachment','2120',NULL,'OpenOpcUaCoreServer_Debug.exe_211014_193640.dmp'),(1364,1543,'attachment','2121',NULL,'Logs.zip'),(1365,1544,'attachment','2122',NULL,'Logs.zip'),(1366,1545,'attachment','2123',NULL,'Logs.zip'),(1367,1548,'attr','status_id','2','5'),(1368,1548,'attr','done_ratio','0','100'),(1369,1549,'attr','status_id','1','5'),(1370,1549,'attr','done_ratio','0','100'),(1371,1550,'attachment','2130',NULL,'OpenOpcUaCoreServer_Debug.exe_211015_221315.dmp'),(1372,1551,'attr','done_ratio','0','30'),(1373,1556,'attr','status_id','2','5'),(1374,1556,'attr','done_ratio','30','100'),(1375,1557,'attachment','2132',NULL,'clipboard-202110171430-nbvev.png'),(1376,1559,'attr','status_id','1','5'),(1377,1559,'attr','done_ratio','0','100'),(1378,1560,'attr','status_id','1','5'),(1379,1560,'attr','done_ratio','0','100'),(1380,1561,'attr','status_id','1','5'),(1381,1561,'attr','done_ratio','0','100'),(1382,1562,'attr','status_id','1','2'),(1383,1562,'attr','assigned_to_id',NULL,'432'),(1384,1563,'attr','status_id','1','5'),(1385,1563,'attr','done_ratio','30','100'),(1386,1564,'attr','status_id','1','5'),(1387,1564,'attr','done_ratio','0','100'),(1388,1565,'attr','status_id','2','5'),(1389,1565,'attr','done_ratio','90','100'),(1390,1566,'attr','status_id','1','5'),(1391,1566,'attr','done_ratio','0','100'),(1392,1567,'attachment','2165',NULL,'UaClnt-002-00601.log'),(1393,1572,'attr','status_id','1','5'),(1394,1572,'attr','done_ratio','0','100'),(1395,1573,'attr','status_id','2','5'),(1396,1573,'attr','done_ratio','20','100'),(1397,1574,'attr','status_id','1','5'),(1398,1574,'attr','done_ratio','0','100'),(1399,1575,'attachment','2183',NULL,'clipboard-202110282116-namz5.png'),(1400,1575,'attr','tracker_id','3','2'),(1401,1575,'attr','status_id','1','5'),(1402,1575,'attr','done_ratio','0','100'),(1403,1578,'attr','status_id','2','6'),(1404,1583,'attr','status_id','2','5'),(1405,1583,'attr','done_ratio','0','100'),(1406,1584,'attr','status_id','1','2'),(1407,1584,'attr','done_ratio','0','50'),(1408,1585,'attr','status_id','1','2'),(1409,1585,'attr','priority_id','4','6'),(1410,1585,'attr','done_ratio','0','50'),(1411,1589,'attr','status_id','1','3'),(1412,1589,'attr','done_ratio','0','100'),(1413,1590,'attr','status_id','2','5'),(1414,1590,'attr','done_ratio','50','100'),(1415,1591,'attr','status_id','1','5'),(1416,1591,'attr','done_ratio','0','100'),(1417,1592,'attr','status_id','1','2'),(1418,1592,'attr','done_ratio','0','40'),(1419,1593,'attachment','2195',NULL,'clipboard-202111041848-k9kx0.png'),(1420,1593,'attr','status_id','1','5'),(1421,1593,'attr','done_ratio','0','100'),(1422,1594,'attr','status_id','2','3'),(1423,1594,'attr','done_ratio','40','100'),(1424,1595,'attr','status_id','1','5'),(1425,1595,'attr','done_ratio','0','100'),(1426,1596,'attr','assigned_to_id',NULL,'432'),(1427,1599,'attr','status_id','2','5'),(1428,1599,'attr','done_ratio','50','100'),(1429,1601,'attr','status_id','1','2'),(1430,1610,'attachment','2214',NULL,'clipboard-202111102253-hwxiu.png'),(1431,1610,'attachment','2215',NULL,'clipboard-202111102255-xhpuc.png'),(1432,1612,'attr','done_ratio','0','100'),(1433,1613,'attachment','2220',NULL,'clipboard-202111151028-nc6b3.png'),(1434,1613,'attachment','2221',NULL,'clipboard-202111151028-rcvna.png'),(1435,1615,'attachment','2223',NULL,'UaExpert_VPiS7.png'),(1436,1615,'attachment','2224',NULL,'Logs.zip'),(1437,1618,'attr','tracker_id','1','3'),(1438,1619,'attr','status_id','1','5'),(1439,1619,'attr','done_ratio','0','100'),(1440,1620,'attr','status_id','1','2'),(1441,1621,'attr','status_id','2','5'),(1442,1622,'attr','status_id','1','5'),(1443,1623,'attr','status_id','1','5'),(1444,1624,'attr','status_id','1','5'),(1445,1624,'attr','done_ratio','0','100'),(1446,1627,'attachment','2232','OpenOpcUaCoreServer_Debug.exe_211117_104821.dmp',NULL),(1447,1628,'attachment','2233',NULL,'CRASH PREPASTACK 17-11-21.zip'),(1448,1633,'attr','status_id','1','2'),(1449,1634,'attachment','2244',NULL,'PREPASTACK 19-11-21.zip'),(1450,1634,'attachment','2245',NULL,'USINAGE 19-11-21.zip'),(1451,1635,'attachment','2246',NULL,'clipboard-202111191159-oxzxt.png'),(1452,1635,'attachment','2247',NULL,'clipboard-202111191205-xzr0z.png'),(1453,1635,'attachment','2248',NULL,'clipboard-202111191205-xn97l.png'),(1454,1635,'attachment','2249',NULL,'Logs ligne d_usinage.zip'),(1455,1635,'attachment','2250',NULL,'Rotor 18-19novemebre.zip'),(1456,1636,'attachment','2259',NULL,'clipboard-202111221104-kpivk.png'),(1457,1639,'attr','status_id','1','2'),(1458,1640,'attachment','2262',NULL,'rotor221121.zip'),(1459,1641,'attr','status_id','1','5'),(1460,1641,'attr','done_ratio','0','100'),(1461,1646,'attachment','2264',NULL,'clipboard-202111222158-i5dpv.png'),(1462,1647,'attr','status_id','1','5'),(1463,1648,'attachment','2265',NULL,'clipboard-202111222232-txkoj.png'),(1464,1650,'attachment','2266',NULL,'Logs.zip'),(1465,1653,'attachment','2267',NULL,'RotorM3M4_MODULE1NEW.zip'),(1466,1659,'attachment','2268',NULL,'clipboard-202111241014-1prhx.png'),(1467,1662,'attachment','2269',NULL,'rotor2411211442.zip'),(1468,1663,'attachment','2270',NULL,'rotor2411211513.zip'),(1469,1665,'attachment','2273',NULL,'rotor2411211742.zip'),(1470,1667,'attachment','2274',NULL,'Wireshark.zip'),(1471,1674,'attachment','2278',NULL,'clipboard-202111251858-rqlpo.png'),(1472,1674,'attachment','2279',NULL,'clipboard-202111251859-e0jta.png'),(1473,1676,'attachment','2280',NULL,'clipboard-202111261123-23iv7.png'),(1474,1680,'attachment','2281',NULL,'clipboard-202111271219-lj7jh.png'),(1475,1680,'attachment','2282',NULL,'Serveur_Test_PLCSIM.zip'),(1476,1680,'attachment','2283',NULL,'PLCSIM_POC_DT_Test.zip'),(1477,1688,'attachment','2289',NULL,'PREPAOpenOpcUaCoreServer_Debug.exe_211130_172420.zip'),(1478,1688,'attachment','2290',NULL,'PREPALogs.zip'),(1479,1688,'attachment','2291',NULL,'PREPAOpenOpcUaCoreServer_Debug.exe_211130_170118.zip'),(1480,1688,'attachment','2292',NULL,'ROTORLogs.zip'),(1481,1688,'attachment','2293',NULL,'ROTOROpenOpcUaCoreServer_Debug.exe_211129_192446.zip'),(1482,1688,'attachment','2294',NULL,'ROTOROpenOpcUaCoreServer_Debug.exe_211129_194237.zip'),(1483,1688,'attachment','2295',NULL,'Diagnostic PLC PREPASTACK.txt'),(1484,1690,'attachment','2314',NULL,'SIGFAULT8.JPG'),(1485,1690,'attachment','2315',NULL,'SIGFAULT9.JPG'),(1486,1690,'attachment','2316',NULL,'SIGFAULT10.JPG'),(1487,1690,'attachment','2317',NULL,'SIGFAULT11.JPG'),(1488,1693,'attr','status_id','2','5'),(1489,1693,'attr','done_ratio','0','100'),(1490,1698,'attr','status_id','1','5'),(1491,1698,'attr','done_ratio','0','100'),(1492,1701,'attachment','2334',NULL,'Opc.Ua.NodeSet2.SK_Instance.xml'),(1493,1701,'attachment','2333',NULL,'Opc.Ua.NodeSet2.SK_Model_07-11-2021.xml'),(1494,1701,'attachment','2335',NULL,'Opc.Ua.SubSystem.MqttPub.xml'),(1495,1701,'attachment','2336',NULL,'Opc.Ua.SubSystem.Sk.xml'),(1496,1701,'attachment','2337',NULL,'ConfigOpenOpcUa.oouaprj'),(1497,1704,'attachment','2338',NULL,'clipboard-202112081431-pwi3x.png'),(1498,1704,'attachment','2339',NULL,'clipboard-202112081445-juozi.png'),(1499,1705,'attr','assigned_to_id',NULL,'1'),(1500,1707,'attachment','2349',NULL,'clipboard-202112170706-wfpmi.png'),(1501,1707,'attachment','2350',NULL,'clipboard-202112170707-gvhmp.png'),(1502,1707,'attachment','2351',NULL,'clipboard-202112170708-ophuo.png'),(1503,1709,'attachment','2354',NULL,'1.zip'),(1504,1709,'attachment','2353',NULL,'2.zip'),(1505,1714,'attachment','2355',NULL,'clipboard-202112211159-qlhk1.png'),(1506,1717,'attr','subject','Logical Model: Object HeatExchangerrType','Logical Model: Object HeatExchangerType'),(1507,1718,'attr','subject','Logical Model: Object CoolingTower','Logical Model: Object CoolingTowerType'),(1508,1720,'attr','status_id','1','5'),(1509,1720,'attr','done_ratio','0','100'),(1510,1721,'attr','status_id','1','5'),(1511,1721,'attr','done_ratio','0','100'),(1512,1722,'attr','status_id','1','5'),(1513,1722,'attr','done_ratio','0','100'),(1514,1723,'attr','status_id','1','5'),(1515,1723,'attr','done_ratio','0','100'),(1516,1724,'attr','status_id','1','5'),(1517,1724,'attr','done_ratio','0','100'),(1518,1726,'attr','status_id','1','5'),(1519,1726,'attr','done_ratio','0','100'),(1520,1734,'attachment','2380',NULL,'clipboard-202201100915-4teu2.png'),(1521,1734,'attachment','2381',NULL,'Emotor-LogicalModel-OPCUA_V2.19.eapx'),(1522,1734,'attr','status_id','1','5'),(1523,1735,'attachment','2395',NULL,'Emotor-LogicalModel-OPCUA_V2.19.eapx'),(1524,1738,'attachment','2399',NULL,'clipboard-202201121849-pbheg.png'),(1525,1738,'attachment','2400',NULL,'clipboard-202201121849-phejq.png'),(1526,1739,'attachment','2394','VPILined.dll',NULL),(1527,1740,'attachment','2401',NULL,'StructuresEmotorsd.dll'),(1528,1740,'attachment','2402',NULL,'VPILined.dll'),(1529,1741,'attachment','2407',NULL,'clipboard-202201131702-9mixy.png'),(1530,1743,'attachment','2423',NULL,'Emotor-LogicalModel-OPCUA_V2.20.eapx'),(1531,1743,'attr','status_id','1','5'),(1532,1743,'attr','done_ratio','0','100'),(1533,1744,'attachment','2425',NULL,'22-01-17-BinairesLM.zip'),(1534,1747,'attachment','2427',NULL,'clipboard-202201182248-bi0es.png'),(1535,1747,'attr','status_id','5','2'),(1536,1748,'attr','status_id','1','5'),(1537,1748,'attr','done_ratio','0','100'),(1538,1749,'attachment','2432',NULL,'Emotor-LogicalModel-OPCUA_V2.21.eapx'),(1539,1749,'attr','status_id','2','5'),(1540,1753,'attachment','2435',NULL,'clipboard-202201211829-ufczw.png'),(1541,1753,'attr','subject','XiMulator_1.0.2.1_v1.0.3.4','XiMulator_1.0.2.1_v1.0.3.5'),(1542,1754,'attachment','2436',NULL,'PackageDebugInetumE2E_21-Jan-22.zip'),(1543,1757,'attachment','2442',NULL,'oouaApp.zip'),(1544,1758,'attr','assigned_to_id','1','424'),(1545,1760,'attachment','2444',NULL,'DemoMqttPublisher_Debug_SK.zip'),(1546,1761,'attachment','2447',NULL,'clipboard-202201251945-jsuhx.png'),(1547,1761,'attachment','2448',NULL,'clipboard-202201251947-1a9tv.png'),(1548,1763,'attachment','2449',NULL,'clipboard-202201261026-phlqx.png'),(1549,1765,'attachment','2451',NULL,'clipboard-202201261747-so0sa.png'),(1550,1767,'attachment','2455',NULL,'clipboard-202201271714-okagx.png'),(1551,1767,'attachment','2456',NULL,'Emotor-LogicalModel-OPCUA_V2.22.eapx'),(1552,1768,'attachment','2459',NULL,'InetumDebugE2E2701.zip'),(1553,1769,'attachment','2460',NULL,'clipboard-202201281018-aywmr.png'),(1554,1770,'attachment','2464',NULL,'clipboard-202201281528-wba0d.png'),(1555,1770,'attachment','2465',NULL,'clipboard-202201281529-xkamv.png'),(1556,1771,'attr','status_id','1','5'),(1557,1772,'attachment','2466',NULL,'clipboard-202201281602-m5dkx.png'),(1558,1774,'attachment','2467',NULL,'InetumDebugE2E2801.zip'),(1559,1774,'attachment','2468',NULL,'clipboard-202201281831-wdezr.png'),(1560,1774,'attachment','2469',NULL,'clipboard-202201281834-auuqn.png'),(1561,1774,'attachment','2470',NULL,'clipboard-202201281834-hx5yk.png'),(1562,1775,'attachment','2471',NULL,'clipboard-202201282150-5wylu.png'),(1563,1775,'attachment','2472',NULL,'VpiUaPub.cpp'),(1564,1775,'attr','priority_id','4','7'),(1565,1776,'attachment','2473',NULL,'Snapshot #1.dsnapshot'),(1566,1779,'attr','status_id','1','5'),(1567,1779,'attr','done_ratio','0','100'),(1568,1780,'attr','status_id','1','5'),(1569,1780,'attr','done_ratio','0','100'),(1570,1781,'attachment','2480',NULL,'clipboard-202201311524-0waud.png'),(1571,1782,'attachment','2481',NULL,'Brainstorm.pptx'),(1572,1782,'attr','status_id','1','2'),(1573,1782,'attr','done_ratio','0','70'),(1574,1783,'attr','status_id','1','5'),(1575,1783,'attr','done_ratio','0','100'),(1576,1785,'attr','status_id','1','5'),(1577,1785,'attr','done_ratio','0','100'),(1578,1786,'attr','status_id','1','5'),(1579,1786,'attr','done_ratio','0','100'),(1580,1791,'attr','assigned_to_id',NULL,'1'),(1581,1792,'attachment','2487',NULL,'clipboard-202202011720-48bvm.png'),(1582,1792,'attr','assigned_to_id','1',NULL),(1583,1794,'attachment','2488',NULL,'clipboard-202202011753-d25cl.png'),(1584,1795,'attachment','2489',NULL,'OpenOpcUaCoreServer_COVER_Debug.exe_220201_161122.dmp'),(1585,1796,'attachment','2490',NULL,'OpenOpcUaCoreServer_COVER_Debug.exe_220201_180943.dmp'),(1586,1796,'attachment','2491',NULL,'OpenOpcUaCoreServer_COVER_Debug.exe_220201_181435.dmp'),(1587,1798,'attachment','2500',NULL,'clipboard-202202021044-whjtk.png'),(1588,1798,'attr','status_id','1','3'),(1589,1798,'attr','done_ratio','0','100'),(1590,1799,'attachment','2506',NULL,'DebugInetum0202.zip'),(1591,1804,'attachment','2519',NULL,'clipboard-202202031150-ninaw.png'),(1592,1804,'attachment','2520',NULL,'clipboard-202202031150-tnahj.png'),(1593,1805,'attachment','2523',NULL,'clipboard-202202031916-lrvwi.png'),(1594,1805,'attachment','2524',NULL,'clipboard-202202031929-ugvxz.png'),(1595,1805,'attachment','2525',NULL,'clipboard-202202031931-r7kiw.png'),(1596,1805,'attr','subject','XiMulator_1.0.2.1_v1.0.3.5','XiMulator_1.0.2.1_v1.0.3.7'),(1597,1806,'attachment','2526',NULL,'TesteurLua-2022-02-03.zip'),(1598,1807,'attachment','2527',NULL,'clipboard-202202040909-dpqph.png'),(1599,1810,'attachment','2528',NULL,'clipboard-202202040949-0ttpp.png'),(1600,1811,'attachment','2529',NULL,'PDB-LM.zip'),(1601,1812,'attachment','2530',NULL,'LivraisonDeleak040211h25.zip'),(1602,1813,'attachment','2533',NULL,'StructureEmotorsCorrectionInsertDate.zip'),(1603,1814,'attachment','2534',NULL,'StructureEmotorsCorrectionInsertDate.zip'),(1604,1816,'attachment','2538',NULL,'clipboard-202202051324-epwul.png'),(1605,1818,'attachment','2539',NULL,'clipboard-202202051347-hbbtg.png'),(1606,1818,'attachment','2540',NULL,'clipboard-202202051356-nihkh.png'),(1607,1820,'attachment','2541',NULL,'VpiLinesource0702.zip'),(1608,1821,'attachment','2542',NULL,'StructuresEmotorssource.zip'),(1609,1822,'attachment','2543',NULL,'StructuresEmotorssource.zip'),(1610,1824,'attachment','2548',NULL,'ShareInetumLMBinaries0702.zip'),(1611,1826,'attachment','2549',NULL,'AWS-00160.log'),(1612,1826,'attachment','2550',NULL,'clipboard-202202072020-gg4jt.png'),(1613,1826,'attachment','2551',NULL,'clipboard-202202072021-qr8t1.png'),(1614,1827,'attachment','2553',NULL,'clipboard-202202072140-lmnkp.png'),(1615,1828,'attachment','2554',NULL,'clipboard-202202072256-zya0g.png'),(1616,1828,'attachment','2555',NULL,'clipboard-202202072257-yzqhu.png'),(1617,1829,'attachment','2557',NULL,'clipboard-202202080916-8awld.png'),(1618,1829,'attachment','2558',NULL,'clipboard-202202080917-4ht4c.png'),(1619,1830,'attachment','2560',NULL,'ShareMichel-2022-02-08-10h47.zip'),(1620,1831,'attachment','2561',NULL,'ShareMichel-2022-02-08-11h27.zip'),(1621,1832,'attachment','2563',NULL,'ShareMichel-Vpi Plant-2022-02-08-19h15.zip'),(1622,1833,'attr','assigned_to_id',NULL,'1'),(1623,1833,'attr','priority_id','4','5'),(1624,1834,'attr','tracker_id','1','3'),(1625,1835,'attachment','2564',NULL,'ShareMichel-ScriptTesteur-2022-02-09-11h15.zip'),(1626,1836,'attr','assigned_to_id','1','433'),(1627,1839,'attr','assigned_to_id','433',NULL),(1628,1840,'attr','assigned_to_id',NULL,'1'),(1629,1841,'attr','assigned_to_id',NULL,'1'),(1630,1843,'attr','status_id','1','5'),(1631,1843,'attr','done_ratio','0','100'),(1632,1844,'attr','assigned_to_id','1','510'),(1633,1845,'attr','status_id','1','5'),(1634,1845,'attr','done_ratio','0','100'),(1635,1846,'attr','status_id','1','5'),(1636,1846,'attr','done_ratio','0','100'),(1637,1847,'attachment','2565',NULL,'clipboard-202202091548-hm4sy.png'),(1638,1847,'attachment','2566',NULL,'clipboard-202202091548-2u71b.png'),(1639,1848,'attr','status_id','2','5'),(1640,1848,'attr','done_ratio','70','100'),(1641,1849,'attr','status_id','1','5'),(1642,1849,'attr','done_ratio','0','100'),(1643,1850,'attr','status_id','1','5'),(1644,1850,'attr','done_ratio','0','100'),(1645,1851,'attachment','2567',NULL,'ModelGeneration-Test-Feb-7.zip'),(1646,1852,'attachment','2570',NULL,'ShareMichel-DeltaSourcesLM-2022-02-09-19h45.zip'),(1647,1853,'attachment','2571',NULL,'VpiLine-26000.log'),(1648,1860,'attachment','2573',NULL,'clipboard-202202101151-nu6c7.png'),(1649,1860,'attachment','2574',NULL,'clipboard-202202101152-omitw.png'),(1650,1860,'attachment','2575',NULL,'clipboard-202202101153-gdckh.png'),(1651,1865,'attachment','2581',NULL,'clipboard-202202101616-6zgdi.png'),(1652,1867,'attachment','2586',NULL,'clipboard-202202111323-z9o2b.png'),(1653,1869,'attachment','2587',NULL,'IotHub-00170-NOK-OK.log'),(1654,1869,'attachment','2588',NULL,'IotHub-00170-OK-OK.log'),(1655,1869,'attachment','2589',NULL,'IotHub-00170_MetadataTrue.log'),(1656,1869,'attachment','2590',NULL,'Sans titre.png'),(1657,1870,'attr','status_id','1','3'),(1658,1870,'attr','done_ratio','0','100'),(1659,1871,'attr','status_id','1','2'),(1660,1871,'attr','done_ratio','0','100'),(1661,1872,'attachment','2594',NULL,'clipboard-202202131132-zuexi.png'),(1662,1874,'attr','done_ratio','0','100'),(1663,1875,'attr','done_ratio','0','100'),(1664,1876,'attr','done_ratio','0','100'),(1665,1877,'attr','done_ratio','0','100'),(1666,1878,'attr','done_ratio','0','100'),(1667,1879,'attr','status_id','1','5'),(1668,1881,'attachment','2597',NULL,'structuresv2.h'),(1669,1883,'attr','status_id','1','5'),(1670,1883,'attr','done_ratio','0','100'),(1671,1884,'attr','tracker_id','3','2'),(1672,1885,'attr','priority_id','4','7'),(1673,1886,'attr','status_id','1','5'),(1674,1886,'attr','done_ratio','0','100'),(1675,1887,'attr','status_id','1','5'),(1676,1887,'attr','done_ratio','0','100'),(1677,1888,'attr','status_id','1','5'),(1678,1888,'attr','done_ratio','0','100'),(1679,1889,'attr','status_id','1','2'),(1680,1891,'attr','status_id','2','5'),(1681,1894,'attachment','2607',NULL,'Utilisation des Methodes de structuresemotors.txt'),(1682,1896,'attr','status_id','2','5'),(1683,1896,'attr','done_ratio','0','100'),(1684,1899,'attr','status_id','1','5'),(1685,1899,'attr','done_ratio','0','100'),(1686,1900,'attr','status_id','1','5'),(1687,1900,'attr','done_ratio','0','100'),(1688,1901,'attr','status_id','1','5'),(1689,1901,'attr','done_ratio','0','100'),(1690,1902,'attr','status_id','1','5'),(1691,1902,'attr','done_ratio','0','100'),(1692,1903,'attr','status_id','1','5'),(1693,1903,'attr','done_ratio','0','100'),(1694,1904,'attr','status_id','1','5'),(1695,1904,'attr','done_ratio','0','100'),(1696,1905,'attr','status_id','2','5'),(1697,1905,'attr','done_ratio','70','100'),(1698,1906,'attr','status_id','1','5'),(1699,1906,'attr','done_ratio','0','100'),(1700,1907,'attr','status_id','1','5'),(1701,1907,'attr','done_ratio','0','100'),(1702,1908,'attr','status_id','1','5'),(1703,1908,'attr','done_ratio','0','100'),(1704,1909,'attr','status_id','1','2'),(1705,1909,'attr','done_ratio','0','20'),(1706,1910,'attr','assigned_to_id',NULL,'533'),(1707,1911,'attr','status_id','1','5'),(1708,1911,'attr','done_ratio','0','100'),(1709,1912,'attr','status_id','1','5'),(1710,1912,'attr','done_ratio','0','100'),(1711,1913,'attachment','2625',NULL,'clipboard-202202220030-csjse.png'),(1712,1913,'attr','status_id','1','2'),(1713,1913,'attr','done_ratio','0','30'),(1714,1915,'attachment','2635',NULL,'Nozzles on Coater.PNG'),(1716,1918,'relation','copied_from',NULL,'755'),(1717,1919,'attr','status_id','1','5'),(1718,1920,'attr','status_id','1','5'),(1719,1921,'attr','status_id','1','5'),(1720,1922,'attr','status_id','1','5'),(1721,1927,'attr','status_id','1','5'),(1722,1927,'attr','done_ratio','0','100'),(1723,1928,'attr','status_id','1','5'),(1724,1928,'attr','done_ratio','0','100'),(1725,1929,'attr','status_id','1','5'),(1726,1929,'attr','done_ratio','0','100'),(1727,1931,'attr','status_id','1','5'),(1728,1931,'attr','done_ratio','0','100'),(1729,1932,'attr','status_id','1','5'),(1730,1932,'attr','done_ratio','0','100'),(1731,1934,'attr','status_id','1','2'),(1732,1940,'attachment','2688',NULL,'OpenOpcUaCoreServer_Debug.exe_220315_093552.zip'),(1733,1940,'attr','priority_id','5','4'),(1734,1941,'attr','status_id','1','2'),(1735,1943,'attr','done_ratio','0','50'),(1736,1944,'attachment','2698',NULL,'Historization ROTOR.zip'),(1737,1945,'attachment','2702',NULL,'Logs - 17 mar 6 pm.zip'),(1738,1949,'attachment','2706',NULL,'OpenOpcUaCoreServer_Release.exe_220317_184841.dmp'),(1739,1951,'attachment','2707',NULL,'demo_Imerys18-03-22.zip'),(1740,1953,'attachment','2708',NULL,'Traces Crash 18-03.zip'),(1741,1955,'attachment','2711',NULL,'Traces et logs Crash 18-03 18h.zip'),(1742,1956,'attachment','2713',NULL,'OpenOpcUaCoreServer_Debug.exe_220318_185225.dmp'),(1743,1957,'attr','status_id','1','2'),(1744,1957,'attr','done_ratio','0','20'),(1745,1958,'attachment','2714',NULL,'OpenOpcUaCoreServer_Debug.exe_220319_165645.dmp'),(1746,1960,'attr','status_id','1','5'),(1747,1960,'attr','done_ratio','0','100'),(1748,1962,'attr','status_id','2','5'),(1749,1962,'attr','done_ratio','20','100'),(1750,1964,'attr','priority_id','5','4'),(1751,1967,'attr','status_id','1','5'),(1752,1967,'attr','done_ratio','0','100'),(1753,1968,'attr','status_id','1','2'),(1754,1968,'attr','done_ratio','0','50'),(1755,1969,'attachment','2731',NULL,'clipboard-202203221434-btkyd.png'),(1756,1971,'attr','priority_id','3','4'),(1757,1972,'attachment','2743',NULL,'Maquette SampleData.zip'),(1758,1972,'attr','assigned_to_id',NULL,'1'),(1759,1973,'attr','status_id','1','5'),(1760,1973,'attr','done_ratio','0','100'),(1761,1974,'attr','status_id','5','2'),(1762,1975,'attr','status_id','1','5'),(1763,1975,'attr','done_ratio','0','100'),(1764,1976,'attr','status_id','2','5'),(1765,1976,'attr','done_ratio','30','100'),(1766,1977,'attr','status_id','1','5'),(1767,1977,'attr','done_ratio','0','100'),(1768,1978,'attr','status_id','1','5'),(1769,1978,'attr','done_ratio','0','100'),(1770,1979,'attr','status_id','1','5'),(1771,1979,'attr','done_ratio','0','100'),(1772,1980,'attr','status_id','1','5'),(1773,1981,'attr','status_id','1','5'),(1774,1981,'attr','done_ratio','0','100'),(1775,1982,'attr','status_id','1','5'),(1776,1982,'attr','done_ratio','0','100'),(1777,1983,'attr','status_id','2','5'),(1778,1983,'attr','done_ratio','0','100'),(1779,1984,'attr','status_id','2','5'),(1780,1984,'attr','done_ratio','0','100'),(1781,1986,'attr','status_id','1','5'),(1782,1986,'attr','done_ratio','0','100'),(1783,1988,'attr','status_id','1','2'),(1784,1988,'attr','done_ratio','0','50'),(1785,1989,'attr','status_id','1','5'),(1786,1989,'attr','done_ratio','0','100'),(1787,1990,'attr','status_id','1','5'),(1788,1990,'attr','done_ratio','0','100'),(1789,1991,'attr','status_id','1','2'),(1790,1991,'attr','done_ratio','0','90'),(1791,1992,'attr','status_id','1','2'),(1792,1993,'attr','project_id','75','47'),(1793,1993,'attr','status_id','1','2'),(1794,1994,'attr','tracker_id','1','2'),(1795,1994,'attr','project_id','75','47'),(1796,1994,'attr','status_id','1','2'),(1797,1995,'attr','project_id','75','47'),(1798,1995,'attr','status_id','1','2'),(1799,1996,'attr','status_id','2','5'),(1800,1996,'attr','done_ratio','0','100'),(1801,1997,'attr','status_id','1','2'),(1802,1998,'attachment','2765',NULL,'PD-Mixer.gif'),(1803,1998,'attachment','2766',NULL,'edge-position-control-system01.jpg'),(1804,1999,'attachment','2767',NULL,'clipboard-202203281022-j6oxu.png'),(1805,2000,'attr','status_id','1','5'),(1806,2000,'attr','done_ratio','0','100'),(1807,2001,'attr','status_id','1','5'),(1808,2001,'attr','done_ratio','0','100'),(1809,2003,'attr','status_id','1','5'),(1810,2003,'attr','done_ratio','0','100'),(1811,2004,'attr','status_id','1','5'),(1812,2004,'attr','done_ratio','0','100'),(1813,2005,'attr','status_id','1','5'),(1814,2005,'attr','done_ratio','0','100'),(1815,2011,'attachment','2774',NULL,'clipboard-202203281746-ltjwq.png'),(1816,2012,'attachment','2775',NULL,'1.zip'),(1817,2012,'attachment','2776',NULL,'2.zip'),(1818,2015,'attr','assigned_to_id',NULL,'1'),(1819,2017,'attr','status_id','1','5'),(1820,2017,'attr','done_ratio','0','100'),(1821,2019,'attachment','2810',NULL,'3.zip'),(1822,2020,'attr','status_id','1','6'),(1823,2020,'attr','done_ratio','0','100'),(1824,2022,'attr','status_id','2','5'),(1825,2022,'attr','done_ratio','50','100'),(1826,2025,'attachment','2813',NULL,'13249Y01 Rev0 Cathode_Preliminary.pdf'),(1827,2025,'attachment','2814',NULL,'13250Y01 Rev0 Anode_Preliminary.pdf'),(1828,2026,'attr','status_id','1','5'),(1829,2026,'attr','done_ratio','0','100'),(1830,2027,'attr','status_id','1','5'),(1831,2027,'attr','done_ratio','0','100'),(1832,2028,'attr','status_id','1','5'),(1833,2028,'attr','done_ratio','0','100'),(1834,2030,'attachment','2831',NULL,'VpiValuesInit-25000.log'),(1835,2031,'attr','status_id','1','2'),(1836,2031,'attr','done_ratio','0','90'),(1837,2032,'attr','status_id','1','2'),(1838,2032,'attr','done_ratio','0','100'),(1839,2033,'attachment','2845',NULL,'OneDrive_1_05-04-2022.zip'),(1840,2033,'attachment','2846',NULL,'clipboard-202204051725-mt8op.png'),(1841,2036,'attr','status_id','1','2'),(1842,2038,'attr','status_id','1','2'),(1843,2038,'attr','assigned_to_id',NULL,'1'),(1844,2040,'attachment','2854',NULL,'demo_ImerysDebugTicket759.zip'),(1845,2040,'attachment','2853',NULL,'VpiS7Logs.zip'),(1846,2041,'attr','status_id','1','2'),(1847,2046,'attr','status_id','1','2'),(1848,2046,'attr','done_ratio','0','90'),(1849,2048,'attr','status_id','2','5'),(1850,2048,'attr','done_ratio','90','100'),(1851,2051,'attr','status_id','1','5'),(1852,2051,'attr','done_ratio','0','100'),(1853,2053,'attachment','2892',NULL,'Rotor1204.zip'),(1854,2054,'attr','subject','Add attribute to MotorsType','Manage attribute DriveType in equipments'),(1855,2056,'attr','status_id','1','5'),(1856,2056,'attr','done_ratio','0','90'),(1857,2057,'attr','status_id','1','2'),(1858,2061,'attachment','2917',NULL,'clipboard-202204211057-weclf.png'),(1859,2063,'attr','status_id','1','5'),(1860,2063,'attr','done_ratio','0','100'),(1861,2066,'attachment','2930',NULL,'clipboard-202204221732-ivoq5.png'),(1862,2066,'attachment','2931',NULL,'clipboard-202204221732-kl6rk.png'),(1863,2072,'attachment','2939',NULL,'clipboard-202204271628-nahyo.png'),(1864,2075,'attr','status_id','1','5'),(1865,2075,'attr','done_ratio','0','100'),(1866,2076,'attr','status_id','2','5'),(1867,2076,'attr','done_ratio','0','100'),(1868,2077,'attachment','2946',NULL,'msvcr120.dll'),(1869,2078,'attr','status_id','1','5'),(1870,2078,'attr','done_ratio','0','100'),(1871,2080,'attr','project_id','103','1'),(1872,2081,'attr','project_id','1','78'),(1873,2084,'attr','status_id','1','5'),(1874,2084,'attr','done_ratio','0','100'),(1875,2086,'attr','status_id','1','5'),(1876,2086,'attr','done_ratio','0','100'),(1877,2088,'attr','status_id','1','5'),(1878,2088,'attr','done_ratio','0','100'),(1879,2089,'attr','project_id','49','98'),(1880,2090,'attr','project_id','100','98'),(1881,2092,'attr','assigned_to_id',NULL,'436'),(1882,2093,'attr','project_id','75','98'),(1883,2094,'attr','status_id','2','5'),(1884,2094,'attr','done_ratio','0','100'),(1885,2095,'attr','project_id','81','98'),(1886,2095,'attr','assigned_to_id','1','492'),(1887,2096,'attr','status_id','1','5'),(1888,2096,'attr','done_ratio','0','100'),(1889,2097,'attr','project_id','81','98'),(1890,2097,'attr','status_id','1','2'),(1891,2098,'attr','project_id','92','98'),(1892,2099,'attr','project_id','94','98'),(1893,2100,'attr','project_id','81','98'),(1894,2101,'attr','project_id','94','98'),(1895,2102,'attr','project_id','89','98'),(1896,2103,'attr','project_id','89','98'),(1897,2105,'attr','project_id','75','98'),(1898,2106,'attr','project_id','75','47'),(1899,2107,'attr','project_id','75','98'),(1900,2108,'attr','project_id','75','98'),(1901,2109,'attr','project_id','75','98'),(1902,2110,'attr','project_id','75','47'),(1903,2111,'attr','project_id','75','47'),(1904,2112,'attr','project_id','75','98'),(1905,2113,'attr','project_id','15','98'),(1906,2113,'attr','status_id','2','5'),(1907,2113,'attr','done_ratio','0','100'),(1908,2114,'attr','project_id','78','98'),(1909,2114,'attr','status_id','1','2'),(1910,2115,'attr','project_id','78','47'),(1911,2116,'attr','project_id','78','98'),(1912,2117,'attr','project_id','78','98'),(1913,2118,'attr','assigned_to_id',NULL,'1'),(1914,2119,'attr','status_id','1','2'),(1915,2119,'attr','done_ratio','0','90'),(1916,2120,'attr','assigned_to_id',NULL,'1'),(1917,2122,'attr','tracker_id','1','2'),(1918,2123,'attr','status_id','1','5'),(1919,2123,'attr','done_ratio','0','100'),(1920,2124,'attr','status_id','1','5'),(1921,2124,'attr','done_ratio','0','100'),(1922,2126,'attr','status_id','1','5'),(1923,2126,'attr','done_ratio','0','100'),(1924,2127,'attr','status_id','1','5'),(1925,2127,'attr','done_ratio','0','100'),(1926,2128,'attr','status_id','1','5'),(1927,2128,'attr','done_ratio','0','100'),(1928,2129,'attr','status_id','1','5'),(1929,2129,'attr','done_ratio','0','100'),(1930,2130,'attr','status_id','1','5'),(1931,2130,'attr','done_ratio','0','100'),(1932,2131,'attr','status_id','1','5'),(1933,2131,'attr','done_ratio','0','100'),(1934,2132,'attr','status_id','1','5'),(1935,2132,'attr','done_ratio','0','100'),(1936,2133,'attr','status_id','1','5'),(1937,2133,'attr','done_ratio','0','100'),(1938,2134,'attr','status_id','1','5'),(1939,2134,'attr','done_ratio','0','100'),(1940,2135,'attr','status_id','1','5'),(1941,2135,'attr','done_ratio','0','100'),(1942,2136,'attr','status_id','1','5'),(1943,2136,'attr','done_ratio','0','100'),(1944,2137,'attr','status_id','1','2'),(1945,2137,'attr','done_ratio','0','90'),(1946,2138,'attr','status_id','1','5'),(1947,2138,'attr','done_ratio','0','100'),(1948,2139,'attr','status_id','2','5'),(1949,2139,'attr','done_ratio','0','100'),(1950,2140,'attr','status_id','2','5'),(1951,2140,'attr','done_ratio','90','100'),(1952,2141,'attr','status_id','1','5'),(1953,2141,'attr','done_ratio','0','100'),(1954,2142,'attr','status_id','1','5'),(1955,2143,'attr','status_id','1','2'),(1956,2143,'attr','done_ratio','0','90'),(1957,2144,'attr','status_id','1','2'),(1958,2144,'attr','done_ratio','0','90'),(1959,2145,'attr','status_id','1','2'),(1960,2145,'attr','done_ratio','0','90'),(1961,2146,'attr','status_id','1','2'),(1962,2146,'attr','done_ratio','0','90'),(1963,2147,'attr','status_id','1','2'),(1964,2147,'attr','assigned_to_id',NULL,'489'),(1965,2147,'attr','done_ratio','0','90'),(1966,2148,'attr','status_id','1','2'),(1967,2148,'attr','done_ratio','0','90'),(1968,2149,'attr','assigned_to_id',NULL,'447'),(1969,2149,'attr','done_ratio','0','90'),(1970,2150,'attr','status_id','1','2'),(1971,2150,'attr','assigned_to_id',NULL,'447'),(1972,2151,'attr','status_id','1','2'),(1973,2151,'attr','done_ratio','0','90'),(1974,2153,'attr','status_id','1','5'),(1975,2153,'attr','done_ratio','0','100'),(1976,2154,'attr','assigned_to_id',NULL,'489'),(1977,2154,'attr','priority_id','4','7'),(1978,2155,'attr','done_ratio','0','10'),(1979,2156,'attr','status_id','1','2'),(1980,2156,'attr','assigned_to_id',NULL,'489'),(1981,2158,'attr','status_id','2','5'),(1982,2159,'attr','status_id','1','5'),(1983,2160,'attr','status_id','1','5'),(1984,2162,'attr','status_id','1','5'),(1985,2162,'attr','done_ratio','0','100'),(1986,2163,'attr','status_id','1','5'),(1987,2163,'attr','done_ratio','0','100'),(1988,2164,'attr','done_ratio','0','50'),(1989,2165,'attachment','3037',NULL,'clipboard-202205301639-7yemo.png'),(1990,2165,'attachment','3038',NULL,'CONSOELECTRIQUE_avec_historization.zip'),(1991,2167,'attachment','3040',NULL,'clipboard-202205311127-hlqmb.png'),(1992,2168,'attr','status_id','1','2'),(1993,2169,'attachment','3046',NULL,'ISO2.JPG'),(1994,2169,'attachment','3047',NULL,'ISO.JPG'),(1995,2170,'attachment','3050',NULL,'Ximulateur.zip'),(1996,2171,'attachment','3057',NULL,'OpenOpcUaCoreServer_Debug.exe_220603_184901.zip'),(1997,2172,'attr','status_id','1','5'),(1998,2172,'attr','done_ratio','0','100'),(1999,2173,'attr','status_id','2','5'),(2000,2174,'attr','status_id','2','5'),(2001,2175,'attr','status_id','1','5'),(2002,2178,'attr','status_id','1','5'),(2003,2178,'attr','done_ratio','0','100'),(2004,2184,'attr','status_id','1','5'),(2005,2184,'attr','done_ratio','0','100'),(2006,2185,'attachment','3096',NULL,'clipboard-202206171119-g0lgz.png'),(2007,2187,'attr','status_id','1','2'),(2008,2188,'attr','status_id','5','2'),(2009,2188,'attr','done_ratio','100','80'),(2010,2189,'attachment','3100',NULL,'clipboard-202206192239-1nntd.png'),(2011,2189,'attachment','3101',NULL,'clipboard-202206192240-elraf.png'),(2012,2192,'attachment','3102',NULL,'clipboard-202206201104-umq8g.jpg'),(2013,2196,'attr','status_id','2','3'),(2014,2196,'attr','done_ratio','80','100'),(2015,2199,'attachment','3105',NULL,'3_Structure des Objets -EN.pdf'),(2016,2201,'attr','status_id','1','2'),(2017,2202,'attachment','3118',NULL,'clipboard-202206231135-nttxh.png'),(2018,2202,'attachment','3119',NULL,'clipboard-202206231135-wtue0.png'),(2019,2202,'attachment','3120',NULL,'OOUA_IMERYS_MVP_C3_1.0.8.zip'),(2020,2202,'attr','status_id','1','2'),(2021,2202,'attr','assigned_to_id','1','432'),(2022,2205,'attachment','3122',NULL,'clipboard-202206231518-nzrm6.png'),(2023,2206,'attachment','3123',NULL,'clipboard-202206231530-hctsc.png'),(2024,2207,'attr','status_id','1','2'),(2025,2207,'attr','done_ratio','0','90'),(2026,2208,'attachment','3127',NULL,'clipboard-202206241139-h6y2f.png'),(2027,2211,'attr','status_id','2','5'),(2028,2211,'attr','done_ratio','90','100'),(2029,2212,'attachment','3128',NULL,'clipboard-202206241448-nuooa.png'),(2030,2213,'attachment','3132',NULL,'clipboard-202206241726-r1qne.png'),(2031,2213,'attachment','3133',NULL,'clipboard-202206241727-ro4n7.png'),(2032,2214,'attr','tracker_id','1','3'),(2033,2216,'attr','status_id','1','2'),(2034,2216,'attr','priority_id','3','4'),(2035,2217,'attr','assigned_to_id','1','432'),(2036,2218,'attr','status_id','5','2'),(2037,2219,'attachment','3136',NULL,'clipboard-202206270937-rn1we.png'),(2038,2219,'attr','status_id','2','3'),(2039,2219,'attr','done_ratio','0','100'),(2040,2220,'attr','tracker_id','2','3'),(2041,2220,'attr','status_id','1','5'),(2042,2220,'attr','done_ratio','0','100'),(2043,2221,'attr','status_id','1','2'),(2044,2221,'attr','done_ratio','0','100'),(2045,2222,'attachment','3141',NULL,'Demo_v0.0.2.1.zip'),(2046,2222,'attr','done_ratio','0','100'),(2047,2223,'attachment','3146',NULL,'clipboard-202206281410-k66ng.png'),(2048,2228,'attachment','3154',NULL,'Serveur JNEM - 28-06-2022.zip'),(2049,2229,'attr','status_id','2','5'),(2050,2229,'attr','done_ratio','0','100'),(2051,2230,'attr','status_id','1','5'),(2052,2230,'attr','done_ratio','0','100'),(2053,2231,'attachment','3157',NULL,'Tests_VpiOptimu_V1.0.0.2.docx'),(2054,2231,'attr','status_id','1','2'),(2055,2232,'attr','status_id','1','5'),(2056,2232,'attr','done_ratio','0','100'),(2057,2234,'attr','status_id','1','5'),(2058,2234,'attr','done_ratio','0','100'),(2059,2235,'attachment','3161',NULL,'clipboard-202206300919-k6unq.png'),(2060,2235,'attr','priority_id','5','4'),(2061,2239,'attr','status_id','1','5'),(2062,2239,'attr','done_ratio','0','100'),(2063,2240,'attr','status_id','2','5'),(2064,2240,'attr','done_ratio','20','100'),(2065,2241,'attr','status_id','1','3'),(2066,2241,'attr','done_ratio','0','100'),(2067,2243,'attr','status_id','1','5'),(2068,2243,'attr','done_ratio','0','100'),(2069,2244,'attr','status_id','1','5'),(2070,2244,'attr','done_ratio','0','100'),(2071,2245,'attr','status_id','1','5'),(2072,2245,'attr','done_ratio','0','100'),(2073,2246,'attr','status_id','1','5'),(2074,2246,'attr','done_ratio','0','100'),(2075,2247,'attr','status_id','1','3'),(2076,2247,'attr','done_ratio','0','100'),(2077,2249,'attr','status_id','1','2'),(2078,2253,'attr','priority_id','5','4'),(2079,2257,'attr','status_id','1','2'),(2080,2262,'attr','assigned_to_id','1','545'),(2081,2269,'attr','status_id','1','5'),(2082,2269,'attr','done_ratio','0','100'),(2083,2270,'attr','status_id','5','2'),(2084,2270,'attr','done_ratio','100','60'),(2085,2272,'attr','status_id','1','5'),(2086,2272,'attr','done_ratio','0','100'),(2087,2273,'attr','status_id','1','5'),(2088,2273,'attr','done_ratio','0','100'),(2089,2274,'attr','status_id','1','5'),(2090,2274,'attr','done_ratio','0','100'),(2091,2275,'attr','status_id','1','5'),(2092,2275,'attr','done_ratio','0','100'),(2093,2276,'attr','status_id','1','5'),(2094,2276,'attr','done_ratio','0','100'),(2095,2277,'attr','status_id','2','5'),(2096,2277,'attr','done_ratio','50','100'),(2097,2278,'attr','status_id','1','5'),(2098,2278,'attr','done_ratio','0','100'),(2099,2279,'attr','status_id','1','2'),(2100,2279,'attr','done_ratio','0','20'),(2101,2280,'attr','status_id','1','5'),(2102,2280,'attr','done_ratio','0','100'),(2103,2281,'attr','status_id','1','5'),(2104,2281,'attr','done_ratio','0','100'),(2105,2282,'attachment','3194',NULL,'Livraison Binaires Debug-IPV4 - 6-7-2022_v1.0.7.4.zip'),(2106,2282,'attr','status_id','1','5'),(2107,2282,'attr','done_ratio','0','100'),(2108,2283,'attr','status_id','1','5'),(2109,2284,'attr','status_id','1','5'),(2110,2286,'attr','status_id','1','2'),(2111,2288,'attr','status_id','2','5'),(2112,2289,'attr','done_ratio','0','100'),(2113,2290,'attachment','3197',NULL,'clipboard-202207061744-yjkvf.png'),(2114,2293,'attachment','3199',NULL,'Jeux de test Emotors.zip'),(2115,2293,'attachment','3200',NULL,'Tests_VpiOptimu_V1.0.0.3.docx'),(2116,2297,'attr','assigned_to_id','1','545'),(2117,2300,'attachment','3227',NULL,'HATest.log'),(2118,2300,'attachment','3226',NULL,'SQL-00200.log'),(2119,2301,'attr','assigned_to_id','545','1'),(2120,2302,'attachment','3232',NULL,'clipboard-202207211445-zkfym.png'),(2121,2302,'attr','assigned_to_id',NULL,'546'),(2122,2304,'attr','status_id','1','2'),(2123,2306,'attr','done_ratio','0','100'),(2124,2307,'attr','status_id','1','5'),(2125,2308,'attachment','3246',NULL,'01.PNG'),(2126,2308,'attachment','3244',NULL,'HATest.log'),(2127,2308,'attachment','3245',NULL,'SQL-00200.log'),(2128,2309,'attr','status_id','1','2'),(2129,2310,'attachment','3250',NULL,'exemple.PNG'),(2130,2315,'attr','status_id','2','3'),(2131,2315,'attr','done_ratio','0','100'),(2132,2316,'attr','assigned_to_id','1','545'),(2133,2322,'attachment','3254',NULL,'crashServeurHA_html.zip'),(2134,2325,'attr','status_id','1','2'),(2135,2328,'attr','status_id','1','5'),(2136,2328,'attr','done_ratio','0','100'),(2137,2329,'attachment','3262',NULL,'crashHA.zip'),(2138,2330,'attr','tracker_id','1','3'),(2139,2332,'attr','status_id','2','3'),(2140,2332,'attr','done_ratio','0','100'),(2141,2337,'attr','status_id','1','5'),(2142,2337,'attr','done_ratio','0','100'),(2143,2340,'attr','status_id','1','2'),(2144,2342,'attr','assigned_to_id',NULL,'545'),(2145,2347,'attr','assigned_to_id','545','1'),(2146,2348,'attr','status_id','1','5'),(2147,2348,'attr','done_ratio','0','100'),(2148,2349,'attr','assigned_to_id','1','432'),(2149,2351,'attr','status_id','2','5'),(2150,2351,'attr','done_ratio','0','100'),(2151,2352,'attachment','3278',NULL,'traceWireSharkHA-ReponseIncomplete.pcapng'),(2152,2352,'attachment','3279',NULL,'HATest-Binaires03-08.zip'),(2153,2352,'attachment','3280',NULL,'pgadmin.JPG'),(2154,2352,'attachment','3281',NULL,'UAExpert.JPG'),(2155,2352,'attr','assigned_to_id','545','1'),(2156,2352,'attr','priority_id','4','5'),(2157,2354,'attr','status_id','1','5'),(2158,2354,'attr','done_ratio','0','100'),(2159,2358,'attr','status_id','2','5'),(2160,2358,'attr','done_ratio','50','100'),(2161,2359,'attr','assigned_to_id','432','1'),(2162,2360,'attr','status_id','1','2'),(2163,2360,'attr','assigned_to_id',NULL,'1'),(2164,2360,'attr','priority_id','6','3'),(2165,2362,'attr','status_id','1','5'),(2166,2362,'attr','done_ratio','0','100'),(2167,2363,'attr','done_ratio','100','50'),(2168,2364,'attr','status_id','5','2'),(2169,2366,'attr','status_id','5','2'),(2170,2367,'attr','status_id','1','2'),(2171,2367,'attr','assigned_to_id',NULL,'1'),(2172,2368,'attr','status_id','1','5'),(2173,2369,'attr','status_id','1','5'),(2174,2370,'attr','status_id','1','2'),(2175,2371,'attr','tracker_id','1','3'),(2176,2372,'attachment','3295',NULL,'1-OpenOpcUa Project - US.pdf'),(2177,2374,'attachment','3296',NULL,'clipboard-202208091630-kzt9x.png'),(2178,2374,'attachment','3297',NULL,'clipboard-202208091630-qcupj.png'),(2179,2374,'attachment','3298',NULL,'clipboard-202208091631-wxdus.png'),(2180,2375,'attachment','3301',NULL,'OOUA_IMERYS_TestSemih_CheckedMC.zip'),(2181,2376,'attr','assigned_to_id',NULL,'1'),(2182,2377,'attr','status_id','1','2'),(2183,2378,'attr','status_id','1','5'),(2184,2378,'attr','done_ratio','0','100'),(2185,2379,'attachment','3305',NULL,'clipboard-202208171723-zh0il.png'),(2186,2379,'attachment','3306',NULL,'clipboard-202208171731-ibifz.png'),(2187,2379,'attachment','3307',NULL,'clipboard-202208171731-w4gfe.png'),(2188,2385,'attachment','3308',NULL,'clipboard-202208181418-lehyy.png'),(2189,2385,'attachment','3309',NULL,'Plant.log'),(2190,2386,'attachment','3310',NULL,'OpenOpcUaStackV1d.dll'),(2191,2393,'attachment','3312',NULL,'OpenOpcUaStackV1d.dll'),(2192,2394,'attachment','3313',NULL,'Plant.log'),(2193,2394,'attachment','3314',NULL,'clipboard-202208181728-vq6ib.png'),(2194,2398,'attachment','3315',NULL,'clipboard-202208191646-hi4st.png'),(2195,2398,'attachment','3318',NULL,'Plant08-19-14-10.bak'),(2196,2398,'attachment','3316',NULL,'UaClnt-Assembly.bak'),(2197,2398,'attachment','3317',NULL,'UaClnt-Assembly-01901.bak'),(2198,2401,'attr','assigned_to_id',NULL,'510'),(2199,2404,'attr','assigned_to_id','510','1'),(2200,2405,'attr','status_id','1','5'),(2201,2408,'attachment','3325',NULL,'clipboard-202208291136-iiso9.png'),(2202,2412,'attr','status_id','1','3'),(2203,2412,'attr','done_ratio','0','100'),(2204,2413,'attr','status_id','1','2'),(2205,2414,'attr','status_id','1','2'),(2206,2417,'attachment','3355',NULL,'OOUA.zip'),(2207,2419,'attachment','3360',NULL,'Test_Crash_Sodel.zip'),(2208,2420,'attachment','3361',NULL,'clipboard-202209072245-icr3q.png'),(2209,2420,'attachment','3362',NULL,'clipboard-202209072246-4p6tc.png'),(2210,2421,'attr','status_id','2','5'),(2211,2421,'attr','done_ratio','0','100'),(2212,2422,'attachment','3366',NULL,'FEEDPLANT.PNG'),(2213,2424,'attachment','3368',NULL,'clipboard-202209081421-9m0uc.png'),(2214,2425,'attr','status_id','1','5'),(2215,2425,'attr','done_ratio','0','100'),(2216,2426,'attr','status_id','2','5'),(2217,2426,'attr','done_ratio','0','100'),(2218,2428,'attachment','3376',NULL,'Emotor-LogicalModel-OPCUA_V2.30draft2.eapx'),(2219,2431,'attr','status_id','1','5'),(2220,2431,'attr','done_ratio','0','100'),(2221,2433,'attr','status_id','1','5'),(2222,2433,'attr','done_ratio','0','100'),(2223,2435,'attachment','3387',NULL,'Schéma flux LM S7.pptx'),(2224,2436,'attr','status_id','1','5'),(2225,2436,'attr','done_ratio','0','100'),(2226,2437,'attr','status_id','5','2'),(2227,2438,'attr','assigned_to_id','1','432'),(2228,2439,'attachment','3391',NULL,'Schéma flux LM S7 V2.pptx'),(2229,2441,'attachment','3392',NULL,'Schéma flux LM S7-MC.pptx'),(2230,2447,'attr','status_id','1','5'),(2231,2448,'attachment','3406',NULL,'Tests_VpiOptimu_V1.0.0.5 & VpiQualaxyClient_V1.0.0.2.docx'),(2232,2448,'attachment','3407',NULL,'Jeux de test Emotors.zip'),(2233,2448,'attr','subject','Résultat des tests VpiOptimu','Résultat des tests VpiOptimu et VpiQualaxy'),(2234,2449,'attr','status_id','1','2'),(2235,2452,'attachment','3418',NULL,'dump_891.docx'),(2236,2454,'attr','status_id','1','2'),(2237,2457,'attachment','3420',NULL,'Recap pb de gammeV3.xlsx'),(2238,2459,'attr','status_id','1','2'),(2239,2461,'attachment','3421',NULL,'clipboard-202210052049-vry6x.png'),(2240,2462,'attr','status_id','2','5'),(2241,2463,'attachment','3428',NULL,'OpenOpcUaCoreServer_Release_agg.exe_221006_164302.dmp'),(2242,2464,'attachment','3429',NULL,'c660l.zip'),(2243,2464,'attachment','3430',NULL,'portugal.zip'),(2244,2464,'attachment','3431',NULL,'stripper.zip'),(2245,2465,'attr','status_id','1','5'),(2246,2466,'attr','status_id','1','5'),(2247,2467,'attr','status_id','2','5'),(2248,2468,'attr','status_id','2','5'),(2249,2469,'attachment','3435',NULL,'clipboard-202210071456-dp5oy.png'),(2250,2469,'attachment','3436',NULL,'clipboard-202210071457-s0orv.png'),(2251,2469,'attachment','3437',NULL,'clipboard-202210071457-mhwy8.png'),(2252,2469,'attachment','3438',NULL,'clipboard-202210071457-uhlhe.png'),(2253,2472,'attr','status_id','1','2'),(2254,2474,'attr','status_id','2','5'),(2255,2474,'attr','done_ratio','0','100'),(2256,2475,'attachment','3468',NULL,'932.zip'),(2257,2476,'attr','priority_id','3','4'),(2258,2477,'attr','status_id','1','2'),(2259,2479,'attr','status_id','2','5'),(2260,2479,'attr','done_ratio','0','100'),(2261,2480,'attr','assigned_to_id',NULL,'1'),(2262,2480,'attr','priority_id','4','6'),(2263,2481,'attr','status_id','1','5'),(2264,2481,'attr','done_ratio','0','100'),(2265,2482,'attachment','3473',NULL,'newss.PNG'),(2266,2482,'attr','priority_id','5','6'),(2267,2484,'attr','status_id','1','2'),(2268,2486,'attachment','3477',NULL,'OpenOpcUaCoreServer_Debug_01.exe_221021_110551.zip'),(2269,2487,'attachment','3478',NULL,'Livraison Binaires Debug-IPV4 - 21-10-2022_v1.0.8.0.zip'),(2270,2487,'attr','status_id','1','2'),(2271,2488,'attr','status_id','1','2'),(2272,2489,'attr','status_id','1','5'),(2273,2489,'attr','done_ratio','0','100'),(2274,2490,'attr','status_id','2','5'),(2275,2491,'attr','status_id','2','3'),(2276,2491,'attr','done_ratio','0','100'),(2277,2492,'attr','status_id','1','5'),(2278,2492,'attr','done_ratio','0','100'),(2279,2493,'attr','status_id','1','5'),(2280,2493,'attr','done_ratio','0','100'),(2281,2494,'attr','status_id','1','6'),(2282,2494,'attr','done_ratio','0','100'),(2283,2495,'attr','status_id','2','5'),(2284,2496,'attachment','3484',NULL,'OpenOpcUaCoreServer_Debug_01.exe_221031_153809.zip'),(2285,2497,'attachment','3485',NULL,'OSSL_Libs.zip'),(2286,2498,'attachment','3486',NULL,'OpenOpcUaCoreServer_Debug_01.exe_221031_161754.zip'),(2287,2499,'attachment','3487',NULL,'VpiUaMqttJsonPubd_0.0.0.7.zip'),(2288,2500,'attachment','3490',NULL,'OpenOpcUaCoreServer_Debug_01.exe_221102_150643.zip'),(2289,2501,'attachment','3492',NULL,'VpiUaMqttJsonPubd_0.0.0.8.zip'),(2290,2502,'attr','status_id','2','3'),(2291,2502,'attr','done_ratio','0','100'),(2292,2503,'attachment','3493',NULL,'clipboard-202211031154-a0xef.png'),(2293,2503,'attr','status_id','2','3'),(2294,2503,'attr','done_ratio','60','100'),(2295,2504,'attr','status_id','1','3'),(2296,2504,'attr','done_ratio','0','100'),(2297,2505,'attr','status_id','2','5'),(2298,2505,'attr','done_ratio','0','100'),(2299,2506,'attr','status_id','1','2'),(2300,2507,'attr','status_id','1','2'),(2301,2508,'attr','status_id','1','3'),(2302,2508,'attr','done_ratio','0','100'),(2303,2509,'attr','status_id','1','5'),(2304,2509,'attr','done_ratio','0','100'),(2305,2510,'attr','status_id','1','3'),(2306,2510,'attr','done_ratio','0','100'),(2307,2511,'attr','status_id','2','6'),(2308,2511,'attr','done_ratio','0','100'),(2309,2512,'attr','status_id','2','3'),(2310,2512,'attr','done_ratio','0','100'),(2311,2513,'attr','status_id','1','3'),(2312,2513,'attr','done_ratio','0','100'),(2313,2514,'attr','status_id','2','5'),(2314,2514,'attr','done_ratio','10','100'),(2315,2515,'attr','status_id','2','5'),(2316,2515,'attr','done_ratio','0','100'),(2317,2516,'attr','status_id','2','5'),(2318,2516,'attr','done_ratio','50','100'),(2319,2517,'attr','status_id','1','5'),(2320,2517,'attr','done_ratio','0','100'),(2321,2518,'attr','status_id','2','3'),(2322,2518,'attr','done_ratio','90','100'),(2323,2519,'attr','status_id','2','5'),(2324,2519,'attr','done_ratio','90','100'),(2325,2520,'attr','status_id','2','5'),(2326,2520,'attr','done_ratio','90','100'),(2327,2521,'attr','status_id','2','5'),(2328,2521,'attr','done_ratio','90','100'),(2329,2522,'attr','status_id','2','5'),(2330,2522,'attr','done_ratio','90','100'),(2331,2523,'attr','status_id','2','5'),(2332,2523,'attr','done_ratio','90','100'),(2333,2524,'attr','status_id','2','5'),(2334,2524,'attr','done_ratio','90','100'),(2335,2525,'attr','status_id','2','5'),(2336,2525,'attr','done_ratio','90','100'),(2337,2526,'attr','status_id','2','5'),(2338,2526,'attr','done_ratio','0','100'),(2339,2527,'attr','status_id','2','3'),(2340,2527,'attr','done_ratio','90','100'),(2341,2528,'attr','status_id','1','3'),(2342,2528,'attr','done_ratio','0','100'),(2343,2529,'attr','status_id','1','5'),(2344,2529,'attr','done_ratio','0','100'),(2345,2530,'attr','subject','Synchronisation de UDT mise à plat','Priorités Q4 2022'),(2346,2531,'attr','status_id','1','5'),(2347,2531,'attr','done_ratio','0','100'),(2348,2532,'attr','status_id','1','3'),(2349,2532,'attr','done_ratio','0','100'),(2350,2533,'attr','status_id','1','5'),(2351,2533,'attr','done_ratio','0','100'),(2352,2534,'attr','status_id','1','5'),(2353,2534,'attr','done_ratio','0','100'),(2354,2535,'attr','status_id','2','5'),(2355,2535,'attr','done_ratio','0','100'),(2356,2536,'attr','status_id','1','5'),(2357,2536,'attr','done_ratio','0','100'),(2358,2537,'attr','status_id','1','5'),(2359,2537,'attr','done_ratio','0','100'),(2360,2538,'attr','status_id','1','5'),(2361,2538,'attr','done_ratio','0','100'),(2362,2539,'attr','project_id','75','47'),(2363,2540,'attr','project_id','75','47'),(2364,2542,'attr','status_id','1','5'),(2365,2542,'attr','done_ratio','0','100'),(2366,2543,'attr','status_id','1','5'),(2367,2543,'attr','done_ratio','0','100'),(2368,2544,'attr','status_id','1','2'),(2369,2545,'attr','status_id','1','2'),(2370,2545,'attr','assigned_to_id',NULL,'1'),(2371,2546,'attr','status_id','1','5'),(2372,2546,'attr','done_ratio','0','100'),(2373,2547,'attr','status_id','1','5'),(2374,2547,'attr','done_ratio','0','100'),(2375,2548,'attr','status_id','1','5'),(2376,2548,'attr','done_ratio','0','100'),(2377,2549,'attr','status_id','1','5'),(2378,2549,'attr','done_ratio','0','100'),(2379,2550,'attr','status_id','1','5'),(2380,2550,'attr','done_ratio','0','100'),(2381,2551,'attr','status_id','1','5'),(2382,2551,'attr','done_ratio','0','100'),(2383,2552,'attr','status_id','2','5'),(2384,2552,'attr','done_ratio','0','100'),(2385,2553,'attr','assigned_to_id',NULL,'432'),(2386,2553,'attr','done_ratio','0','50'),(2387,2554,'attr','status_id','1','5'),(2388,2554,'attr','done_ratio','0','100'),(2389,2555,'attr','status_id','2','5'),(2390,2555,'attr','done_ratio','0','100'),(2391,2556,'attr','status_id','2','5'),(2392,2556,'attr','done_ratio','90','100'),(2393,2557,'attr','status_id','2','5'),(2394,2557,'attr','done_ratio','0','100'),(2395,2558,'attr','status_id','1','5'),(2396,2558,'attr','done_ratio','0','100'),(2397,2559,'attr','status_id','1','5'),(2398,2559,'attr','done_ratio','0','100'),(2399,2560,'attr','status_id','1','5'),(2400,2560,'attr','done_ratio','0','100'),(2401,2561,'attr','status_id','2','5'),(2402,2561,'attr','done_ratio','0','100'),(2403,2562,'attr','status_id','2','5'),(2404,2563,'attr','status_id','1','5'),(2405,2563,'attr','done_ratio','0','100'),(2406,2564,'attr','status_id','2','5'),(2407,2564,'attr','done_ratio','0','100'),(2408,2565,'attr','status_id','2','5'),(2409,2567,'attr','status_id','1','2'),(2410,2568,'attachment','3495',NULL,'Serveur JNEM - 09-09-2022.zip'),(2411,2569,'attr','status_id','1','5'),(2412,2569,'attr','done_ratio','0','100'),(2413,2570,'attachment','3499',NULL,'20221109.zip'),(2414,2571,'attachment','3500',NULL,'AnalyseMiniDump.docx'),(2415,2574,'attr','status_id','1','5'),(2416,2575,'attr','done_ratio','0','100'),(2417,2576,'attr','status_id','1','2'),(2418,2576,'attr','done_ratio','0','80'),(2419,2577,'attachment','3507',NULL,'Line_Middleware_V2.zip'),(2420,2578,'attr','status_id','1','5'),(2421,2578,'attr','done_ratio','0','100'),(2422,2579,'attr','status_id','1','5'),(2423,2579,'attr','done_ratio','0','100'),(2424,2580,'attr','status_id','1','5'),(2425,2580,'attr','done_ratio','0','100'),(2426,2581,'attr','status_id','1','2'),(2427,2581,'attr','assigned_to_id','1','573'),(2428,2582,'attr','status_id','1','5'),(2429,2582,'attr','done_ratio','0','100'),(2430,2583,'attr','assigned_to_id','1','573'),(2431,2584,'attr','status_id','2','3'),(2432,2584,'attr','done_ratio','0','100'),(2433,2585,'attr','status_id','1','2'),(2434,2586,'attr','status_id','2','3'),(2435,2586,'attr','done_ratio','90','100'),(2436,2587,'attr','status_id','1','2'),(2437,2588,'attr','status_id','1','3'),(2438,2588,'attr','done_ratio','0','100'),(2439,2589,'attr','status_id','1','5'),(2440,2589,'attr','done_ratio','0','100'),(2441,2590,'attr','status_id','1','5'),(2442,2590,'attr','done_ratio','0','100'),(2443,2591,'attr','status_id','2','5'),(2444,2591,'attr','done_ratio','0','100'),(2445,2593,'attachment','3515',NULL,'clipboard-202211181741-ppzkx.png'),(2446,2593,'attachment','3516',NULL,'clipboard-202211181741-wurse.png'),(2447,2593,'attachment','3517',NULL,'clipboard-202211181741-xmqky.png'),(2448,2593,'attachment','3519',NULL,'Crash Assembly Detail.odt'),(2449,2593,'attachment','3518',NULL,'Crash Assembly Recap.odt'),(2450,2593,'attr','assigned_to_id',NULL,'1'),(2451,2594,'attachment','3520',NULL,'Crash Assembly Detail V2.odt'),(2452,2594,'attachment','3521',NULL,'Crash Assembly Recap V2.odt'),(2453,2595,'attr','status_id','1','2'),(2454,2597,'attr','status_id','1','2'),(2455,2599,'attachment','3524',NULL,'clipboard-202211251008-yhkhl.png'),(2456,2599,'attachment','3525',NULL,'OneDrive_2022-11-25.zip'),(2457,2607,'attachment','3532',NULL,'UaClnt-ManuelLineX.log'),(2458,2607,'attachment','3531',NULL,'UaClnt-ManuelLineX-00301.log'),(2459,2609,'attachment','3533',NULL,'clipboard-202211281159-sevim.png'),(2460,2609,'attachment','3534',NULL,'clipboard-202211281201-hy1cr.png'),(2461,2613,'attachment','3535',NULL,'PM LM désynchro.pcapng'),(2462,2615,'attachment','3537',NULL,'PM.zip'),(2463,2616,'attr','status_id','1','2'),(2464,2625,'attachment','3540',NULL,'Cas Comm NOK sens LM PM - OK sens PM LM.zip'),(2465,2626,'attachment','3541',NULL,'Cas Comm NOK sens LM PM - OK sens PM LM2.zip'),(2466,2631,'attachment','3543',NULL,'clipboard-202211291627-iibvr.png'),(2467,2631,'attachment','3544',NULL,'clipboard-202211291628-zuvtz.png'),(2468,2631,'attachment','3545',NULL,'OK Restitution DataChangeFilterNOK.zip'),(2469,2635,'attr','subject','OPCU GRAFANA','OPCUA GRAFANA'),(2470,2636,'attachment','3547',NULL,'OK.pcapng'),(2471,2637,'attr','status_id','1','2'),(2472,2637,'attr','priority_id','4','7'),(2473,2640,'attachment','3550',NULL,'3011Crash.zip'),(2474,2642,'attachment','3551',NULL,'clipboard-202211301459-8ve1z.png'),(2475,2644,'attachment','3552',NULL,'Crash4.zip'),(2476,2644,'attachment','3553',NULL,'3011 BlocageBi.zip'),(2477,2645,'attr','status_id','1','2'),(2478,2647,'attr','project_id','1','89'),(2479,2647,'attr','status_id','1','2'),(2480,2650,'attachment','3566',NULL,'clipboard-202212071902-lzaez.png'),(2481,2650,'attachment','3567',NULL,'clipboard-202212071902-kqqks.png'),(2482,2650,'attachment','3568',NULL,'clipboard-202212071903-ctfiv.png'),(2483,2651,'attr','status_id','1','3'),(2484,2651,'attr','done_ratio','0','100'),(2485,2652,'attr','status_id','1','5'),(2486,2653,'attr','status_id','2','3'),(2487,2653,'attr','done_ratio','0','100'),(2488,2654,'attr','status_id','1','3'),(2489,2654,'attr','done_ratio','0','100'),(2490,2655,'attr','status_id','1','5'),(2491,2655,'attr','done_ratio','0','100'),(2492,2656,'attr','status_id','1','2'),(2493,2666,'attr','status_id','5','2'),(2494,2672,'attachment','3574',NULL,'DemoLua_Debug.zip'),(2495,2672,'attachment','3575',NULL,'Sim_EKB_Install_2019_12_13.exe'),(2496,2672,'attr','status_id','1','3'),(2497,2673,'attachment','3577',NULL,'Opc.Ua.NodeSet2.Emotors.Types.Shared.xml'),(2498,2674,'attachment','3581',NULL,'clipboard-202212232003-s9izf.png'),(2499,2675,'attachment','3586',NULL,'v2.32_draft5.zip'),(2500,2675,'attachment','3587',NULL,'v2.30.6_fix1.zip'),(2501,2676,'attachment','3594',NULL,'Logs.zip'),(2502,2677,'attachment','3595',NULL,'Logs_avec_reconnection.zip'),(2503,2678,'attachment','3596',NULL,'Logs_VpiS7.zip'),(2504,2679,'attachment','3598',NULL,'Logs_PM.zip'),(2505,2680,'attachment','3601',NULL,'Erreur_Connexion.pcapng'),(2506,2680,'attachment','3600',NULL,'Logs_Wireshark.zip'),(2507,2681,'attachment','3603',NULL,'trace_Reconnexion_Ok2eme.pcapng'),(2508,2682,'attachment','3604',NULL,'Logs_Wireshark2emereco.zip'),(2509,2683,'attachment','3607',NULL,'Logs.zip'),(2510,2684,'attachment','3611',NULL,'LogsRechargementPLC_NonReconnexionau2eme.zip'),(2511,2684,'attachment','3612',NULL,'Trace_RechargementPLC.pcapng'),(2512,2685,'attachment','3613',NULL,'LogsSansVpiWarmStart.zip'),(2513,2685,'attachment','3614',NULL,'Trace_RechargementPLC_casSansVpiWarmStart.pcapng'),(2514,2686,'attr','done_ratio','0','100'),(2515,2687,'attr','done_ratio','0','100'),(2516,2688,'attr','subject','When stop the cloud server there is a debug error','Cloud OPC UA Server Dump File'),(2517,2688,'attr','priority_id','4','5'),(2518,2689,'attachment','3615',NULL,'PDB_CloudOPCUA.zip'),(2519,2692,'attachment','3621',NULL,'OpenOpcUaCoreServer_Debug.exe_230105_222215.7z'),(2520,2694,'attachment','3626',NULL,'ximulator.PNG'),(2521,2695,'attachment','3632',NULL,'Grafana Capture.pcapng'),(2522,2695,'attachment','3631',NULL,'OOUA_IMERYS_MVP_C3.log'),(2523,2696,'attachment','3633',NULL,'OOUA_IMERYS_MVP_C3.log'),(2524,2696,'attachment','3634',NULL,'SQL-00200.log'),(2525,2697,'attr','status_id','1','5'),(2526,2699,'attachment','3635',NULL,'TRACE_deconnexion.pcapng'),(2527,2700,'attr','assigned_to_id','1','573'),(2528,2701,'attr','tracker_id','1','3'),(2529,2701,'attr','project_id','89','108'),(2530,2702,'attr','project_id','89','108'),(2531,2703,'attachment','3641',NULL,'Logs_110123.zip'),(2532,2704,'attr','status_id','2','3'),(2533,2705,'attr','status_id','1','2'),(2534,2705,'attr','assigned_to_id','1','573'),(2535,2706,'attr','status_id','2','5'),(2536,2707,'attachment','3644',NULL,'OOUA_IMERYS_MVP_C3.log'),(2537,2707,'attr','assigned_to_id','573','1'),(2538,2708,'attachment','3645',NULL,'OpenOpcUaCoreServer_Debug.exe_230112_144719.zip'),(2539,2709,'attachment','3656',NULL,'OpenOpcUaCoreServer_Debug.exe_230113_210044.zip'),(2540,2710,'attachment','3657',NULL,'clipboard-202301132127-amucf.png'),(2541,2710,'attachment','3658',NULL,'clipboard-202301132127-kidpl.png'),(2542,2710,'attachment','3659',NULL,'clipboard-202301132128-filvi.png'),(2543,2710,'attr','status_id','1','2'),(2544,2710,'attr','assigned_to_id',NULL,'1'),(2545,2711,'attr','status_id','1','3'),(2546,2711,'attr','done_ratio','0','100'),(2547,2712,'attr','status_id','1','3'),(2548,2712,'attr','done_ratio','0','100'),(2549,2713,'attr','status_id','1','3'),(2550,2713,'attr','done_ratio','0','100'),(2551,2714,'attr','project_id','89','108'),(2552,2714,'attr','status_id','1','2'),(2553,2715,'attr','status_id','1','2'),(2554,2716,'attachment','3670',NULL,'PDB_1612023.zip'),(2555,2716,'attachment','3671',NULL,'Logs_1612023.zip'),(2556,2718,'attr','status_id','1','2'),(2557,2719,'attachment','3676',NULL,'cp.PNG'),(2558,2721,'attr','status_id','2','5'),(2559,2721,'attr','done_ratio','0','100'),(2560,2723,'attachment','3679',NULL,'Logs_Pc_Connexion_Pm_LM.zip'),(2561,2723,'attachment','3680',NULL,'Trace_Pb_ConnexionPM_LM.pcapng'),(2562,2723,'attachment','3681',NULL,'clipboard-202301190131-ezltk.png'),(2563,2724,'attr','status_id','1','2'),(2564,2726,'attr','status_id','1','2'),(2565,2727,'attachment','3684',NULL,'SSL.zip'),(2566,2728,'attachment','3685',NULL,'mosquitto.org.crt'),(2567,2730,'attachment','3687',NULL,'OpenOpcUaCoreServer_Debug.exe_230119_223658.zip'),(2568,2731,'attachment','3688',NULL,'Logs_BadInetrnalError_VpiAssemblyBak.zip'),(2569,2731,'attachment','3689',NULL,'Trace_Connexion_PM_BadInternalError.zip'),(2570,2732,'attr','assigned_to_id',NULL,'1'),(2571,2734,'attr','status_id','1','2'),(2572,2735,'attachment','3694',NULL,'Logs.zip'),(2573,2735,'attachment','3695',NULL,'OpenOpcUaCoreServer_Debug.exe_230120_140933.zip'),(2574,2735,'attachment','3696',NULL,'PDB.zip'),(2575,2735,'attr','subject','Cloud OPC UA Server Dump File New','Cloud OPC UA Server Dump File,Log,PDB'),(2576,2736,'attr','assigned_to_id','1','573'),(2577,2737,'attachment','3700',NULL,'clipboard-202301210512-cxykf.png'),(2578,2737,'attachment','3701',NULL,'clipboard-202301210512-w9scr.png'),(2579,2738,'attachment','3702',NULL,'Crash_LM_OpenOpcUaCoreServer_Debug.exe_230121_045751.zip'),(2580,2738,'attachment','3706',NULL,'Crash_LM_OpenOpcUaCoreServer_Debug.exe_230121_045751.zip'),(2581,2738,'attachment','3703',NULL,'Crash_PM_OpenOpcUaCoreServer_Debug.exe_230119_225302.zip'),(2582,2738,'attachment','3704',NULL,'Crash_PM_OpenOpcUaCoreServer_Debug.exe_230121_002740.zip'),(2583,2738,'attachment','3705',NULL,'Trace_Pb_ConnexionPM_LM_Crash.zip'),(2584,2738,'attachment','3707',NULL,'Crash_PM_Logs.zip'),(2585,2739,'attachment','3708',NULL,'clipboard-202301210537-sejm0.png'),(2586,2742,'attr','status_id','2','5'),(2587,2742,'attr','done_ratio','0','100'),(2588,2744,'attachment','3710',NULL,'Crash_LM_Fermeture_OpenOpcUaCoreServer_Debug.exe_230121_230525.zip'),(2589,2745,'attachment','3711',NULL,'StopWatchingThread.zip'),(2590,2745,'attachment','3712',NULL,'Trace_Pb_ConnexionPM_LM_StopWtachingThread.zip'),(2591,2746,'attachment','3713',NULL,'Crash_PM_OpenOpcUaCoreServer_Debug.exe_230121_230331.zip'),(2592,2747,'attachment','3714',NULL,'clipboard-202301212333-dpddj.png'),(2593,2748,'attachment','3715',NULL,'clipboard-202301221937-0dgpf.png'),(2594,2748,'attachment','3716',NULL,'clipboard-202301221939-pyt3u.png'),(2595,2748,'attachment','3717',NULL,'clipboard-202301221940-raqe7.png'),(2596,2749,'attachment','3719',NULL,'Logs.zip'),(2597,2749,'attachment','3720',NULL,'OpenOpcUaCoreServer_Debug.exe_230123_114949.zip'),(2598,2749,'attr','assigned_to_id','573','1'),(2599,2752,'attr','status_id','1','5'),(2600,2754,'attr','description','Bonjour, \r\n\r\nEst-il possible d\'activer des logs pour surveiller les modification d\'un node ?\r\nNous avons un problème avec notre use case client. \r\nNotre application n\'a pas écrit dans le node cependant le client OPC de notre client à reçu des notifications de modification.','Bonjour, \r\n\r\nEst-il possible d\'activer des logs pour surveiller les modification d\'un node ?\r\nNous avons un problème avec notre use case client. \r\nNotre application n\'a pas écrit dans le node cependant le client OPC de notre client à reçu des notifications de modification.\r\n\r\nMerci'),(2601,2755,'attachment','3722',NULL,'OpenOpcUaCoreServer_Debug_test.exe_230123_173335.zip'),(2602,2756,'attr','status_id','1','2'),(2603,2757,'attachment','3724',NULL,'OpenOpcUaCoreServer_Debug.exe_230123_213637.zip'),(2604,2758,'attachment','3725',NULL,'Crash_Rechargement_PLC_OpenOpcUaCoreServer_Debug.exe_230123_223637.zip'),(2605,2761,'attachment','3730',NULL,'wireshark.PNG'),(2606,2764,'attachment','3737',NULL,'OpenOpcUaCoreServer_Debug.exe_230127_141628.zip'),(2607,2765,'attr','status_id','1','2'),(2608,2766,'attr','status_id','1','3'),(2609,2768,'attr','status_id','1','2'),(2610,2769,'attachment','3741',NULL,'Test_WireShark.zip'),(2611,2770,'attachment','3742',NULL,'SinumerikOne-Lecture.pcapng'),(2612,2771,'attachment','3743',NULL,'OpenOpcUaCoreServer_Debug_test.exe_230131_122405.zip'),(2613,2772,'attachment','3746',NULL,'ApresRechargementInitValue.png'),(2614,2772,'attachment','3747',NULL,'AvantRechargementInitValue.png'),(2615,2773,'attachment','3748',NULL,'OpenOpcUaCoreServer_Debug.exe_230131_175740.zip'),(2616,2774,'attachment','3750',NULL,'ImerysPROD.log'),(2617,2774,'attachment','3749',NULL,'SQL-00200.log'),(2618,2774,'attachment','3752',NULL,'Subscriber-00160.log'),(2619,2774,'attachment','3751',NULL,'ValuesInit-00200.log'),(2620,2775,'attr','status_id','1','2'),(2621,2778,'attachment','3753',NULL,'UaClnt-001-00301.dat'),(2622,2778,'attachment','3754',NULL,'SubSystem.Uaclient-001_Release.xml'),(2623,2778,'attachment','3755',NULL,'UaClnt-001-00301-0.xml'),(2624,2779,'attachment','3756',NULL,'1-2-2023.zip'),(2625,2780,'attachment','3757',NULL,'1-2-2023_18h00.zip'),(2626,2781,'attachment','3758',NULL,'TEST UACLIENT NEW IPIN3 - 1.0.8.5.zip'),(2627,2789,'attr','status_id','2','3'),(2628,2789,'attr','done_ratio','0','100'),(2629,2790,'attachment','3772',NULL,'Crashs au démarrage.docx'),(2630,2791,'attr','status_id','1','2'),(2631,2792,'attachment','3773',NULL,'EtudeCrash_OpenOpcUaCoreServer.docx'),(2632,2794,'attachment','3774',NULL,'clipboard-202302071122-hzgh4.png'),(2633,2795,'attr','status_id','2','5'),(2634,2795,'attr','done_ratio','0','100'),(2635,2796,'attachment','3775',NULL,'Opc.Ua.NodeSet2.Emotors.Types.Shared (8).xml'),(2636,2798,'attr','tracker_id','1','3'),(2637,2799,'attr','status_id','1','5'),(2638,2799,'attr','done_ratio','0','100'),(2639,2806,'attr','status_id','1','5'),(2640,2806,'attr','done_ratio','0','100'),(2641,2807,'attachment','3778',NULL,'clipboard-202302081855-ucaui.png'),(2642,2807,'attachment','3779',NULL,'clipboard-202302081856-hltdn.png'),(2643,2807,'attachment','3780',NULL,'clipboard-202302081856-et7ga.png'),(2644,2807,'attr','status_id','1','5'),(2645,2807,'attr','done_ratio','0','100'),(2646,2808,'attr','status_id','2','5'),(2647,2808,'attr','done_ratio','0','100'),(2648,2809,'attr','status_id','5','2'),(2649,2811,'attr','status_id','1','5'),(2650,2811,'attr','done_ratio','0','100'),(2651,2812,'attr','status_id','1','2'),(2652,2813,'attr','status_id','1','2'),(2653,2814,'attr','status_id','1','5'),(2654,2814,'attr','done_ratio','0','100'),(2655,2815,'attr','status_id','1','5'),(2656,2815,'attr','done_ratio','0','100'),(2657,2818,'attachment','3793',NULL,'PM.zip'),(2658,2818,'attachment','3794',NULL,'Crash 11h24 logs bak.zip'),(2659,2819,'attachment','3795',NULL,'clipboard-202302141157-ld44b.png'),(2660,2819,'attachment','3796',NULL,'clipboard-202302141158-blslg.png'),(2661,2822,'attachment','3797',NULL,'clipboard-202302141228-v8zsl.png'),(2662,2822,'attachment','3798',NULL,'ServerDiagnosticsTest.zip'),(2663,2823,'attachment','3799',NULL,'clipboard-202302141334-3dgbb.png'),(2664,2823,'attachment','3800',NULL,'clipboard-202302141338-wuzd5.png'),(2665,2825,'attachment','3803',NULL,'Livraison Binaires Debug-IPV4 - 14-02-2023_v1.0.8.5_14h00.zip'),(2666,2825,'attachment','3804',NULL,'OpenOpcUaCoreServer_Debug_PM.exe_230214_163857.dmp.zip'),(2667,2827,'attachment','3806',NULL,'PM Backoffice Crash 15-02-23 7h35.zip'),(2668,2827,'attachment','3807',NULL,'Livraison Binaires Debug-IPV4 - 14-02-2023_v1.0.8.5_14h00.zip'),(2669,2828,'attr','status_id','1','2'),(2670,2829,'attr','assigned_to_id',NULL,'1'),(2671,2830,'attachment','3813',NULL,'clipboard-202302151116-eqpn3.png'),(2672,2830,'attr','status_id','1','2'),(2673,2838,'attachment','3814',NULL,'clipboard-202302151743-idemu.png'),(2674,2839,'attr','status_id','1','5'),(2675,2840,'attachment','3816',NULL,'Logs.zip'),(2676,2840,'attachment','3818',NULL,'OpenOpcUaCoreServer_Debug.exe_230214_111442.dmp.zip'),(2677,2840,'attachment','3817',NULL,'PDB.zip'),(2678,2855,'attachment','3821',NULL,'clipboard-202302170909-mzjly.png'),(2679,2857,'attachment','3822',NULL,'clipboard-202302170935-v3elu.png'),(2680,2859,'attr','assigned_to_id',NULL,'1'),(2681,2861,'attachment','3826',NULL,'tasks.drawio');
/*!40000 ALTER TABLE `journal_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `journals`
--
DROP TABLE IF EXISTS `journals`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `journals` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`journalized_id` int(11) NOT NULL DEFAULT '0',
`journalized_type` varchar(30) NOT NULL DEFAULT '',
`user_id` int(11) NOT NULL DEFAULT '0',
`notes` longtext,
`created_on` datetime NOT NULL,
`private_notes` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `journals_journalized_id` (`journalized_id`,`journalized_type`),
KEY `index_journals_on_user_id` (`user_id`),
KEY `index_journals_on_journalized_id` (`journalized_id`),
KEY `index_journals_on_created_on` (`created_on`)
) ENGINE=InnoDB AUTO_INCREMENT=2862 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `journals`
--
LOCK TABLES `journals` WRITE;
/*!40000 ALTER TABLE `journals` DISABLE KEYS */;
INSERT INTO `journals` VALUES (1,2,'Issue',2,'URL corrigé','2012-01-18 19:59:44',0),(2,3,'Issue',2,'','2012-01-19 10:31:49',0),(3,3,'Issue',2,'Revision 30 ok','2012-01-19 11:57:43',0),(4,3,'Issue',2,'','2012-01-19 11:57:55',0),(5,4,'Issue',2,'Erreur d\'emplacement de la requête dsl','2012-03-06 11:45:35',0),(6,5,'Issue',1,'','2012-03-13 10:23:17',0),(7,11,'Issue',1,'','2012-11-15 11:43:45',0),(8,12,'Issue',1,'','2012-11-15 11:44:36',0),(9,12,'Issue',1,'\r\nRegisterNodes and UnregisterNodes are now fully implemented tested and validated with OPC OPC FOundation UA Compliance Test Tool (CTT)\r\nEnjoy it !!\r\nMichel','2012-11-15 18:37:11',0),(10,18,'Issue',1,'Peter, \r\nthe Ignition client is trying to connect to opc.tcp://192.168.0.101:16664 this is not the URL you setup.\r\nYou configure OpenOpcua to listen on opc.tcp://peter:16664/embedded\r\nSo let change to ignition configuration to connect to opc.tcp://192.168.0.101:16664/embedded.\r\n\r\nHope it helps\r\nMichel','2014-02-22 00:24:52',0),(11,18,'Issue',164,'Michel,\r\n\r\nActually OpenOpcUa is constructing that URL from my hosts file. It had some 3dns.adobe.com entry which was causing the weird opc.tcp://3dns.adobe.com:16664/4CEUAServer URL. After cleaning up the hosts file, it took my laptops hostname (peter).\r\n\r\nI tried configuring Ignition to connect to opc.tcp://peter:16664. I can\'t point it directly to opc.tcp://peter:16664/embedded , I can only give a hostname and a port. (I think)\r\n\r\nI also tried to force OpenOpcUa to construct the url opc.tcp://192.168.0.101:16664/embedded using the hosts file with as first line \"127.0.0.1 192.168.0.101\" but I am still getting the same errors.\r\n\r\nThe Ignition client certificate is also in the CertificateStore\\certs directory.\r\n\r\n','2014-02-22 02:03:11',0),(12,18,'Issue',1,'Peter, \r\nIn the OpcOpcUaCoreServer the endpoint url is build from the information available in the XML configuration file.\r\nLet say you have :\r\n<ServerConfig ServerName=\"4CEUAServer\" xmlns=\"./ServerConfig.xsd\">\r\n <Trace Level=\"DEBUG\" Output=\"FILE\"></Trace> \r\n <Binding Protocol=\"TCP\" Port=\"16664\" Encoding=\"Binary\"/>\r\n\r\nthe endpoint url will be opc.tcp://localhost:16664/4CEUAServer. \r\nThe client MUST use this EndPoint url to connect. So you just have to configure Ignition to force him to use the correct Endpoint url.\r\n\r\nRegards\r\nMichel','2014-02-22 02:14:19',0),(13,18,'Issue',164,'Michel,\r\nThank you for the clarification. I will try and force this. Ignition does have an option to override the host name:\r\n@If specified, the host in the endpoint URL returned by the server will be ignored and the override will be used in its place.@\r\n\r\nHowever, while debugging, I noticed that not all information is coming from the XML config file.\r\nIn the example you give here, the \"localhost\" is fetched from the hosts file from the operating system.\r\nTo block certain domain names, I had some non standard entries in there and the first one was used to construct the endpoint URL. In my case that was not localhost.\r\n\r\nThe part of the code where it gets that entry is the \"getnameinfo\" call in OpenOpcUaSharedLib/source/opcua_certificates.cpp, line 2882.\r\n\r\nIf I modify the hosts file, the endpoint url changes (if I remove the generated certificate).\r\n\r\nAnyway, I will experiment some more and keep you updated.','2014-02-22 12:30:24',0),(14,18,'Issue',1,'Peter,\r\nTo clarify, let me suggest the following :\r\n1- Configure the IP address instead of the Hostname. Both works but it will remove resolution problems\r\n2- You have to use full Endpoint url ie:opc.tcp://192.168.0.1:16664/4CEUAServer\r\n\r\nRemember that is project is based on sponsoring and feedback.\r\n\r\nRegards\r\nMichel Condemine\r\nOpenOpcUa Project Leader\r\n+33 (0)4 67 79 07 37\r\n','2014-02-22 13:40:14',0),(15,19,'Issue',1,'I s\'agit d\'une caractéristique du VpiModbus. Cependant, je vais chercher une solution a ce petit problème.','2014-03-10 08:58:17',0),(16,20,'Issue',1,'Bonjour,\r\nLes nodeIds dans les fichiers NodeSet respectent le Schema UANodeSet.xsd.\r\npour déclarer une NodeId en utilisant le format chaine il faut déclarer :\r\nns=Equipement;*s*=Liste\r\nAttention ce type de déclaration n\'est très pratique à utiliser. \r\nIl semble a priori plus simple mais il est au finale moins souple.\r\n\r\nCe genre de considération sont abordées durant les workshop OpenOpcUa.\r\n\r\nCordialement\r\nMichel','2014-03-10 18:04:50',0),(17,21,'Issue',1,'Voir #20','2014-03-10 18:05:57',0),(18,18,'Issue',164,'Michel,\r\n\r\njust to add some more information:\r\nI understand ignition or any other client should use the correct endpoint url to set up a connection, but it is actually failing one step before that I think.\r\n\r\nUsing wireshark (which has a opc ua decoder) I see the getEndpointsRequest and the getEndpointsResponse.\r\n\r\nThe response contains an empty array of endpoints so ignition does not know which endpoint url to connect to.\r\n\r\nIf my understanding is correct, ignition is requesting the endpoint urls with this request (and is asking them on opc.tcp://<ip address>:16664 since it does not have the endpoint url yet) and is expecting to get the full endpoint URL you mentioned (like opc.tcp://192.168.0.1:16664/4CEUAServer) to set up a secure channel and session.\r\n\r\nI\'ll see if I can debug this a little or even get it working.\r\n\r\nattached is an example log captured with wireshark.','2014-03-13 01:07:43',0),(19,18,'Issue',1,'Peter,\r\nThe Ignition Moderator is right. The server is not suppose to provide a null EndPoint Description. \r\nBut the client is suppose to use the correct endpoint in its request. The Ignition client *is not using* the EndPoint URL of the server.\r\nIgnition client request for *opc.tcp://moefie:16664* so the answer is empty because based on your configuration the correct endpoint url is *opc.tcp://moefie:16664/embedded*\r\n\r\nI hope it helps\r\n\r\nRegards\r\nMichel','2014-03-13 02:09:56',0),(20,13,'Issue',1,'','2014-05-22 13:28:51',0),(21,5,'Issue',1,'','2014-05-22 13:29:12',0),(22,3,'Issue',1,'','2014-05-22 13:29:30',0),(23,2,'Issue',1,'The subversion is open to Gold sponsors only.','2014-05-22 13:30:47',0),(24,14,'Issue',1,'The source can be downloaded from the download section of the website.','2014-05-22 13:33:37',0),(25,23,'Issue',1,'Hello,\r\nThe project can be build on VS2005 to VS2013.\r\nVC++ Express is a special case.\r\nThe resource file are for the versioning of the projet and for the BuildInfo Object Node. So it includes \"afxres.h\". \r\nThis file is not mandatory and could be remove. In the Linux version \"_GNUC_\" this feature is not supported. \r\nI agree that a multiplatform solution will be welcome. \r\nAny suggestion ?\r\n\r\nRegards\r\nMichel\r\n','2014-05-26 08:18:34',0),(26,23,'Issue',149,'I\'ve managed to build the shared libraries, stack and client api on a centos box.\r\n\r\nChecking now. The server openopcuacoreserver doesn\'t appear to build though. Is that what you are trying to get going?','2014-05-26 08:44:33',0),(27,23,'Issue',1,'Hello,\r\n@Beau: Here the problem is resource related.\r\nOn a more general perspective. The OpenOpcUaCoreServer and all its Libraries can easily be build on any Linux target.\r\nThe deliverable targeted a Debian 32bits. So you have to make minor changes on other Linux.\r\n\r\nRegards\r\nMichel','2014-05-26 08:50:55',0),(28,23,'Issue',149,'Yep. I was just trying to figure out what he was building. So I could compare to my setup.\r\n\r\nI\'ve only had to make a few tweaks to make it work on 64bit systems. (Forcing GCC to compile 32bit annoyed me so I tweaked the source to compile), but I\'m exclusively using it as a client library for now.','2014-05-26 09:13:15',0),(29,23,'Issue',193,'hello Gentlmen \r\n I was trying to biuld on VC++ Express 2013 Client SDK. stdafx.h at some point didn\'t create problem but resource file did cause express doesn\'t support them. next it\'s not possible to build further because some dependancy libraries are provided in a compiled(linked) form. and they are compiled with 2012(v10) ccmpiler. the linker of 2013 failes to link against that libraries.','2014-05-26 11:04:21',0),(30,23,'Issue',1,'Hello,\r\nAs i said previously.\r\nJust remove the resource files to build with VS Express.\r\nVS Express doesn\'t support this feature and it\'s not 100% mandatory for the server and its dependencies.\r\n\r\nThanks,\r\nMichel','2014-05-26 11:09:02',0),(31,25,'Issue',1,'Hello,\r\nThank you for your feedback.\r\nThis function is obsolet and was removed from the 1.0.2.3 code base.\r\n\r\nRegards\r\nMichel','2014-05-27 16:57:26',0),(32,24,'Issue',193,'please close this issue it\'s dublicate','2014-07-02 09:32:07',0),(33,29,'Issue',1,'Hello,\r\nThe version 1.0.2.4 fix this issue and others for the Linux build.\r\nEach sponsor will receive the download link next week.\r\n\r\nRegards\r\nMichel','2015-02-20 11:27:21',0),(34,33,'Issue',1,'Will add the fix in the 1.0.2.4.\r\nThank you','2015-02-20 11:34:36',0),(35,33,'Issue',1,'Hello,\r\nThe change is accepted and put in the 1.0.2.4.\r\nThank you Anders\r\n\r\nRegards,\r\nMichel','2015-02-20 15:52:49',0),(36,37,'Issue',1,'Hello,\r\nThere are no leak here. \r\nWe cannot copy in a none allocated piece of memory.\r\nThe free of the cloned string will be made later in the server.\r\nRegards,\r\nMichel','2015-02-23 17:36:24',0),(37,37,'Issue',219,'The statement <pre>void* apVoid = OpcUa_Alloc(4);</pre> declares a pointer, allocates a buffer and writes the address into the pointer.\r\nThe next statement <pre>memcpy(&apVoid, *pVoidBuf, 4);</pre> overwrites the content of @apVoid@ so it now points to a different address.\r\nThe original content of @apVoid@ (the address of the freshly allocated buffer) is lost.','2015-02-23 20:37:32',0),(38,37,'Issue',1,'Hello Anders,\r\nYou are right, \r\nWill check this in detail tomorrow.\r\nThank you for your feedback.\r\n\r\nBest regards,\r\nMichel','2015-02-23 22:16:15',0),(39,37,'Issue',219,'There are some more instances of the same problem:\r\n\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/Definition.cpp b/OpenOpcUaCoreServer/source/Definition.cpp\r\n--- a/OpenOpcUaCoreServer/source/Definition.cpp\r\n+++ b/OpenOpcUaCoreServer/source/Definition.cpp\r\n@@ -351,7 +351,7 @@ OpcUa_StatusCode CDefinition::DuplicateExtensionObject(OpcUa_ExtensionObject* pE\r\n ((OpcUa_Byte*&)pVoidResult) += 4; // \r\n // Copy the Data\r\n ((OpcUa_Byte*&)pVoidBuf) += 4;\r\n- void* apVoid = OpcUa_Alloc(4);\r\n+ void* apVoid;\r\n memcpy(&apVoid, pVoidBuf, 4);\r\n if (pByteString->Length > 0)\r\n {\r\n@@ -431,7 +431,7 @@ OpcUa_StatusCode CDefinition::DuplicateExtensionObject(OpcUa_ExtensionObject* pE\r\n ((OpcUa_Byte*&)pVoidResult) += 4;\r\n ((OpcUa_Byte*&)pVoidBuf) += 4;\r\n // Now the content of the array\r\n- void* apVoid = OpcUa_Alloc(4);\r\n+ void* apVoid;\r\n memcpy(&apVoid, pVoidBuf, 4);\r\n OpcUa_String* pString = (OpcUa_String*)OpcUa_Alloc(sizeof(OpcUa_String)*iuNoOf);\r\n if (pString)\r\n</pre>\r\n<pre class=\"diff\">\r\ndiff --git a/OpenOpcUaCoreServer/source/Main.cpp b/OpenOpcUaCoreServer/source/Main.cpp\r\n--- a/OpenOpcUaCoreServer/source/Main.cpp\r\n+++ b/OpenOpcUaCoreServer/source/Main.cpp\r\n@@ -1918,7 +1918,7 @@ OpcUa_StatusCode CopyBuiltInType(const OpcUa_Int32 ifieldSize, const OpcUa_Byte\r\n // ZeroMemory(pLocalizedText->Locale.strContent, pLocalizedText->Locale.uLength + 1);\r\n // // Copy the content\r\n // ((OpcUa_Byte*&)*pVoidBufSource) += 4;\r\n- // void* apVoid = OpcUa_Alloc(4);\r\n+ // void* apVoid;\r\n // memcpy(&apVoid, *pVoidBufSource, 4);\r\n // OpcUa_MemCpy((pLocalizedText->Locale.strContent), pLocalizedText->Locale.uLength, ((void*)(apVoid)), pLocalizedText->Locale.uLength);\r\n // OpcUa_MemCpy(pVoidBufTarget, 4, &(pLocalizedText->Locale.strContent), 4);\r\n@@ -1940,7 +1940,7 @@ OpcUa_StatusCode CopyBuiltInType(const OpcUa_Int32 ifieldSize, const OpcUa_Byte\r\n // ZeroMemory(pLocalizedText->Text.strContent, pLocalizedText->Text.uLength + 1);\r\n // // Copy the content\r\n // ((OpcUa_Byte*&)*pVoidBufSource) += 4;\r\n- // void* apVoid1 = OpcUa_Alloc(4);\r\n+ // void* apVoid1;\r\n // memcpy(&apVoid1, *pVoidBufSource, 4);\r\n // OpcUa_MemCpy((pLocalizedText->Text.strContent), pLocalizedText->Text.uLength, ((void*)(apVoid1)), pLocalizedText->Text.uLength);\r\n // OpcUa_MemCpy(pVoidBufTarget, 4, &(pLocalizedText->Text.strContent), 4);\r\n@@ -1978,7 +1978,7 @@ OpcUa_StatusCode CopyBuiltInType(const OpcUa_Int32 ifieldSize, const OpcUa_Byte\r\n ZeroMemory(pString->strContent, pString->uLength + 1);\r\n ((OpcUa_Byte*&)*pVoidBufSource) += 4;\r\n // Copy the content\r\n- void* apVoid = OpcUa_Alloc(4);\r\n+ void* apVoid;\r\n memcpy(&apVoid, *pVoidBufSource, 4);\r\n OpcUa_MemCpy((pString->strContent), pString->uLength, ((void*)(apVoid)), pString->uLength);\r\n OpcUa_MemCpy(*pVoidBufTarget, 4, &(pString->strContent), 4);\r\n@@ -2001,7 +2001,7 @@ OpcUa_StatusCode CopyBuiltInType(const OpcUa_Int32 ifieldSize, const OpcUa_Byte\r\n ZeroMemory(pString->uReserved4, pString->uReserved2 + 1);\r\n ((OpcUa_Byte*&)*pVoidBufSource) += 4;\r\n // Copy the content\r\n- void* apVoid = OpcUa_Alloc(4);\r\n+ void* apVoid;\r\n memcpy(&apVoid, *pVoidBufSource, 4);\r\n OpcUa_MemCpy((pString->uReserved4), pString->uReserved2, ((void*)(apVoid)), pString->uReserved2);\r\n OpcUa_MemCpy(*pVoidBufTarget, 4, &(pString->uReserved4), 4);\r\n@@ -2056,7 +2056,7 @@ OpcUa_StatusCode CopyBuiltInType(const OpcUa_Int32 ifieldSize, const OpcUa_Byte\r\n ZeroMemory(aNodeId.Identifier.String.strContent, aNodeId.Identifier.String.uLength + 1);\r\n // Copy the content\r\n ((OpcUa_Byte*&)*pVoidBufSource) += 4;\r\n- void* apVoid = OpcUa_Alloc(4);\r\n+ void* apVoid;\r\n memcpy(&apVoid, *pVoidBufSource, 4);\r\n OpcUa_MemCpy((aNodeId.Identifier.String.strContent), aNodeId.Identifier.String.uLength, ((void*)(apVoid)), aNodeId.Identifier.String.uLength);\r\n OpcUa_MemCpy(*pVoidBufTarget, 4, &(aNodeId.Identifier.String.strContent), 4);\r\n@@ -2079,7 +2079,7 @@ OpcUa_StatusCode CopyBuiltInType(const OpcUa_Int32 ifieldSize, const OpcUa_Byte\r\n ZeroMemory(pString->uReserved4, pString->uReserved2 + 1);\r\n // Copy the content\r\n ((OpcUa_Byte*&)*pVoidBufSource) += 4;\r\n- void* apVoid = OpcUa_Alloc(4);\r\n+ void* apVoid;\r\n memcpy(&apVoid, *pVoidBufSource, 4);\r\n OpcUa_MemCpy((pString->uReserved4), pString->uReserved2, ((void*)(apVoid)), pString->uReserved2);\r\n OpcUa_MemCpy(*pVoidBufTarget, 4, &(pString->uReserved4), 4);\r\n</pre>','2015-02-24 10:36:36',0),(40,17,'Issue',1,'Fixed in 1.0.2.3','2015-02-24 14:14:56',0),(41,18,'Issue',1,'Ignition use -1 instead of 0 the tells that a array is empty. (ProfileUris on GetEndpoints)\r\nThis was confusing for the server. I put a workaround and everything works fine now.\r\nIgnition should fix his client.\r\nuse OpenOpcUa >=1.0.2.3 to access this fix.','2015-02-24 14:19:39',0),(42,9,'Issue',1,'In OpenOpcUa 1.0.2.3 you can disable the LDS.\r\nUse the following line in your config file\r\n<pre>\r\n<LDSRegistration Active=\"False\" Interval=\"120\"></LDSRegistration>\r\n</pre>\r\nThe current LDS version from OPC Foundation is not working properly and this service is rather useless.','2015-02-24 14:22:39',0),(43,12,'Issue',1,'Register and UnregisterNodes are nox fully supported.','2015-02-24 14:29:58',0),(44,1,'Issue',1,'This is not directly related to OpenOpcUa. The server can load the S95 NodeSet without any problem.\r\nEnjoy \r\nMichel','2015-02-25 14:41:03',0),(45,6,'Issue',1,'','2015-02-25 14:42:16',0),(46,7,'Issue',1,'Fixed a longtime agon it the OpenOpcUaClientLibrary.\r\nThanks to Jean Bruno for its contribution.\r\n\r\nMichel','2015-02-25 14:43:44',0),(47,38,'Issue',1,'I will review and test this peace of code later.\r\nThank you Anders for your contribution.\r\n\r\nMichel','2015-02-25 16:11:11',0),(48,41,'Issue',1,'Hello,\r\nThank you to report this issue. It was already reported. \r\nThis is a minor problem that will be fix in the 1.0.2.5. \r\nA workaround is available in the OpenOpcUa best practise.\r\nThank you for your support.\r\n\r\nRegards,\r\nMichel','2015-03-24 17:07:09',0),(49,42,'Issue',1,'Hello Constantino,\r\nThank you for your feedback.\r\nThe server generated certificate UTC based and verify date UTC based. So it should work.\r\nAny way i will double check that.\r\n\r\nRegards\r\nMichel','2015-03-25 22:52:26',0),(50,44,'Issue',1,'Hello,\r\nthank you for your feedback.\r\nI will improve the startup sequence. \r\nThe idea is to load UANodeSet files first and then to startup VPIs\r\n\r\nRegards\r\nMichel','2015-03-27 16:04:07',0),(51,45,'Issue',1,'Hello,\r\nI changed the behavior of the function so now it wil generate not only messages in the log file but il will also return error code the the function. Each error code according to the error it get reestablishing he OPC UA connection.\r\n\r\nEnjoy it\r\nMichel','2015-04-01 22:48:25',0),(52,24,'Issue',1,'Hello,\r\nthe version 1.0.2.5 can be generator on VS2013 professionnal or Express without any problem.\r\nI can also be built easly with cmake on Linux, Debian, Ubuntu, fedora, etc....\r\n\r\nEnjoy it\r\nMichel ','2015-04-01 22:53:16',0),(53,43,'Issue',1,'The new 1.0.2.6 fix this issue. \r\nAll sponsors can access it today in ther private project : OpenOpcUa Sponsors\r\n\r\nContact me for more detail\r\nMichel','2015-04-03 15:17:23',0),(54,46,'Issue',1,'','2015-04-07 21:50:17',0),(55,29,'Issue',219,'The problem still exists in 1.0.2.8.\r\n','2015-08-05 17:17:23',0),(56,30,'Issue',219,'The problem still exists in 1.0.2.8.','2015-08-05 17:33:23',0),(57,32,'Issue',219,'The problem still exists in 1.0.2.8.','2015-08-05 17:49:09',0),(58,34,'Issue',219,'The problem still exists at a few places in 1.0.2.8 (patch 0010-OpcUa_Alloc... is no longer needed)','2015-08-05 17:55:11',0),(59,35,'Issue',219,'The problem still exists in 1.0.2.8.','2015-08-05 17:56:18',0),(60,36,'Issue',219,'The problem still exists in 1.0.2.8.','2015-08-05 17:57:28',0),(61,38,'Issue',219,'One instance of the problem still exists in 1.0.2.8.','2015-08-07 12:08:42',0),(62,37,'Issue',219,'Problem partly still exists in 1.0.2.8 (patch 0001-Prevent-memory-leak-in-CDefinition-DuplicateString.patch is no longer needed)','2015-08-07 12:14:34',0),(63,51,'Issue',1,'Hello Navdeep,\r\nCouple of remarks/question.\r\n1- You are suppose to load the file called : 61850Demo.xml\r\n2- DataObjects is not a child of Root\r\n3- Are you using the version Beta 3.2 ?*\r\n\r\nRegards\r\nMichel\r\n','2015-08-21 16:53:18',0),(64,51,'Issue',239,'1- You are suppose to load the file called : 61850Demo.xml - Yes\r\n2- DataObjects is not a child of Root - Yes you are right - Its Root > Objects > IEC61850 DataObjects\r\n3- Are you using the version Beta 3.2 ?* - Yes','2015-08-21 16:57:53',0),(65,51,'Issue',1,'Navdeep, \r\nthe problem is now fixed.\r\nI\'m releasing the version Beta 3.3.\r\n\r\nRegards\r\nMichel','2015-08-21 17:07:34',0),(66,58,'Issue',1,'Hello,\r\nTo create a new configuration you have two options :\r\n# Press the button new.\r\n# Select File-->New !!\r\nThen follow the wizard...\r\n\r\nRegards\r\nMichel','2015-08-26 16:21:03',0),(67,66,'Issue',1,'Valentin,\r\nIt seems that you to server are running on the same box listening on the same port.\r\n* opc.tcp://sup1:16664/OpenOpcUaCoreServer.\r\n* opc.tcp://sup1:16664/OpenOpcUaCoreServer.\r\nCan you confirm that ?\r\n\r\nRegards\r\nMichel','2015-11-18 15:17:06',0),(68,66,'Issue',246,'Michel,\r\n\r\nThe log files are from the same server \"opc.tcp://sup1:16664/OpenOpcUaCoreServer\". We don\'t see the other server in the log.\r\n\r\nThe client just did the same subscriptions twice but the server had different behaviors:\r\n* case 1 : it worked, we can see the subscription\r\n* case 2 : it didn\'t work, we can see that the server received the subscriptions but did nothing after.\r\n\r\nPlease, find attached the configuration used by the both server.\r\n','2015-11-18 15:24:49',0),(69,61,'Issue',1,'Hello,\r\nThe problem was introduce when tracking memory leak in the client layer.\r\nThe problem is now fixed and will be available in the next deliver.\r\n\r\nRegards\r\nMichel','2015-11-23 09:45:12',0),(70,62,'Issue',1,'Hello,\r\nI cannot reproduce the problem. \r\nThe problem is rejected but not close. Provide me more detail in order the make this happen on my testing platform.\r\n\r\nRegards\r\nMichel','2015-11-23 09:52:21',0),(71,65,'Issue',1,'I cannot reproduce it on my Windows or Linux target.\r\nYour call stack show the it comes from the DeleteSuscription call.Can you provide me more detail on you client implementation.\r\nDo you have sample code ?\r\n\r\nRegards\r\nMichel\r\n','2015-11-23 09:56:35',0),(72,66,'Issue',1,'I\'m investigation the problem. Will let you know soon.','2015-11-23 09:59:15',0),(73,63,'Issue',1,'Hello,\r\nI changed the generation for a new algo.\r\nIt come from MurmurHash project. more detail here https://code.google.com/p/smhasher/wiki/MurmurHash\r\n\r\nI\'m using MurmurHash3.\r\n\r\nFeel free to test and to provide feedback.\r\n\r\nRegards\r\nMichel','2015-11-23 10:55:38',0),(74,64,'Issue',1,'Hello,\r\nI cannot reproduce the problem.\r\nI tested on Debian, Ubuntu and raspBian.\r\nCan you provide more information on you testing platform.\r\n\r\nRegards\r\nMichel','2015-11-23 11:01:53',0),(75,62,'Issue',1,'','2015-11-23 15:32:59',0),(76,64,'Issue',246,'* Platform : CentOS 7-1503 (also called CentOS 7.1)\r\n* Scenario : connect/disconnect multiple time from client','2015-11-23 15:44:48',0),(77,67,'Issue',1,'Hello, \r\nyour log say OpenOpcUa_ReadAttributes failed : uStatus=0x80270000.\r\n0x80270000 means OpcUa_BadSessionNotActivated. \r\nCan you double check that the session is really activated ?\r\n\r\nYou also receive a OpcUa_BadSessionIdInvalid 0x80250000.\r\nI suggest you to investigate in this direction.\r\n\r\nWhy are you using 4840 on the B&R server ? \r\n4840 is a reserve port for discovery see OPC UA 1.03 spec part 6 table 39. \r\nIt\'s not suppose to be used by server for none discovery services.\r\n\r\nRegards\r\nMichel','2015-12-01 14:06:39',0),(78,67,'Issue',243,'Thanks for the quick response Michel, I have reviewed this error message, but the session creation and activation calls are successful. \r\n30-11-2015 13:21:48, Session activated\r\n30-11-2015 13:21:48, CreateSession successful\r\n\r\nEven, I have tried re-creating and activating session before the ReadOpcValue function. For both functions, OpenOpcUa_CreateSession and OpenOpcUa_ActivateSession, I have received uStatus as 0. \r\n\r\nAnother point is, though I am using the OpenOpcUaQuickClient, i am not able to browse the variables. Please see the OpenOPCUA.png attached.\r\n\r\nThanks,\r\nPavan\r\n','2015-12-02 10:27:54',0),(79,67,'Issue',1,'Hello Pavan,\r\nI need you to verify the following.\r\nAfter the call to OpenOpcUa_CreateSession and to OpenOpcUa_ActivateSession you receive OpcUa_Good ?\r\nWhat are the value of your session ?\r\nYou said that you cannot browse using the OpenOpcUaQuickClient. But is the OpenOpcUaQuickClient connected ?\r\nCan you check in the error windows of the OpenOpcUaQuickClient ?\r\n\r\nRegards\r\nMichel','2015-12-03 20:55:58',0),(80,67,'Issue',243,'Hello Michel,\r\n\r\nHere are my comments\r\n\r\nAfter the call to OpenOpcUa_CreateSession and to OpenOpcUa_ActivateSession you receive OpcUa_Good ?\r\nPavan : Yes. I receive the uStatus as OpcUa_Good (0).\r\n\r\nWhat are the value of your session ?\r\nPavan : I don\'t have the exact session value. What are the possible valid values are and how to trace the error based on the session value?\r\n\r\nYou said that you cannot browse using the OpenOpcUaQuickClient. But is the OpenOpcUaQuickClient connected ?\r\nPavan : Yes, it was connected, but the when I tried to read the \"Objects\" tree was blank (Not expanding)\r\n\r\nCan you check in the error windows of the OpenOpcUaQuickClient ?\r\nPavan : In the Message window it was showing \"Logger Message Activated\". Nothing was logged in the OpenOpcUaQuickClient.log (was of 0 KB)\r\n\r\nIn your earlier comment you mentioned about the port no. 4840 is reserved. But the B&R X20 PLC is using that port. Will that make any difference while reading values using OpenOPCUA code? the softing client is able to read values from the B&R X20 PLC on port 4840.\r\nThanks In advance for your reply.\r\n\r\nBest Regards\r\nPavan Pawar','2015-12-04 15:02:10',0),(81,67,'Issue',1,'Hello Pavan,\r\nLet\'s organize a gotomeeting to collect more information on your issue.\r\nAre you avaible on Monday ?\r\n\r\nRegards\r\nMichel','2015-12-05 12:15:42',0),(82,65,'Issue',1,'Hello,\r\nThe new version of the codebase fix this problem.\r\nBut your client is not using the API in the proper way.\r\nYou are adding and removing your monitoredItems one by one. This imply negative side effect.\r\nThe OpenOpcUaClientLibrary is made to add and remove a large number of monitoredItems in one call.\r\n\r\nRegards\r\nMichel','2015-12-08 22:54:47',0),(83,67,'Issue',1,'','2015-12-08 22:55:41',0),(84,62,'Issue',1,'Hello,\r\nBased on my recent tests this issue is now fixed.\r\nI\'m waiting for your validation.\r\nRegards\r\nMichel','2015-12-08 23:04:27',0),(85,66,'Issue',1,'Seems fixed in the 1.0.4.0.\r\nI\'m waiting for your feedback\r\n\r\nRegards\r\nMichel','2015-12-10 16:47:37',0),(86,65,'Issue',1,'Fixed in 1.0.4.0 ','2015-12-10 16:48:33',0),(87,64,'Issue',1,'Fixed in 1.0.4.0\r\nIf you reproduce it. I will reopen it','2015-12-10 16:49:38',0),(88,63,'Issue',1,'Fixed by a 32 pointer.\r\nSo 64bits target are not supported in 1.0.4.0.\r\nWill work on it if needed for next version.\r\nI\'m waiting for feedback.\r\n\r\nRegards\r\nMichel','2015-12-10 16:51:21',0),(89,61,'Issue',1,'Fixed in 1.0.4.0','2015-12-10 16:52:13',0),(90,51,'Issue',1,'Fixed in the last beta of the OpenOpcUaConfigManager','2015-12-10 16:53:06',0),(91,62,'Issue',1,'','2015-12-17 20:05:02',0),(92,71,'Issue',1,'Hello,\r\nThis new API support DataChangeFilter but the server was confuse by the DataChangeFilter on some dataType.\r\nI fixed it in the server and will be release in the next beta.\r\n\r\nEnjoy it\r\nMichel','2015-12-18 09:09:48',0),(93,69,'Issue',1,'Hello,\r\nI fix the code by adding an extra test and by using m_SubscriptionList.size() instead of nNoOfResults.\r\nThe OpenOpcUaLibrary will be more robust. But if it happens in your client it probably show Something wrong in your app.\r\n\r\nEnjoy\r\nMichel','2015-12-18 09:38:24',0),(94,70,'Issue',1,'I add a new test around this portion of code.\r\nThis will be a workaround fixing your issue.\r\nContact me if you get side effects\r\n\r\nRegards\r\nMichel','2015-12-18 10:50:42',0),(95,67,'Issue',1,'Hello Pavan,\r\nYour WireShark trace was very useful and clearly show a setting issue in the server.\r\nThe activate session failed and the server return OpcUa_BadIdentityTokenRejected 0x80210000\r\n \r\nRegards\r\nMichel\r\n','2015-12-21 12:06:47',0),(96,62,'Issue',1,'Fixed in the new RC1 of the OpenOpcUaCodebase 1.0.4.0','2016-01-04 22:56:07',0),(97,68,'Issue',1,'','2016-01-04 22:57:11',0),(98,72,'Issue',1,'Hello,\r\nThe 1.0.2.8 is a quite old version of the server. We drove a huge deleaking campaign for the 1.0.3.x version.\r\nI advise you to update your server to the last version 1.0.4.0.\r\n\r\nKind regards\r\nMichel Condemine','2016-01-05 10:53:24',0),(99,72,'Issue',231,'Ok thanks.\r\n\r\n\r\nWhere can I find the last version 1.0.4.0 (binary and source) ?\r\nIt doesn\'t appear in http://www.openopcua.org/download/download.html.\r\n\r\nBest Regards\r\nSEE- Jacquement\r\n','2016-01-05 11:09:53',0),(100,73,'Issue',1,'Hello,\r\nDocumentation and examples will be provided during the webinar.\r\nI will send a Doodle today.\r\n\r\nRegards\r\nMichel','2016-01-05 15:03:51',0),(101,75,'Issue',1,'Hello,\r\nThank you for your feedback.\r\nWhat kind of extra message do you wish ?\r\n\r\nRegards\r\nMichel','2016-01-19 14:45:46',0),(102,74,'Issue',1,'Hello,\r\nThaank you for you feedback.\r\nThis is more a warning than an error. I will remove it in the 1.0.4.0 release.\r\n\r\nRegards\r\nMichel','2016-01-19 14:47:32',0),(103,77,'Issue',1,'Hi,\r\nas i said. A short term solution is to use the numerical representation of nodeids instead of string representation.\r\nIn a med/short term version i will replace vector by map. This was already planned a long time ago.\r\n\r\nRegards\r\nMichel','2016-01-25 17:07:29',0),(104,76,'Issue',1,'Valentin\r\ncan you explain : \r\n# How your % cpu graph can be 140% ?\r\n# Did you tried without VPI ?\r\n# Did you test with alternate client ?\r\n\r\nRegards\r\nMichel\r\n\r\n','2016-01-25 17:13:09',0),(105,76,'Issue',246,'1. 2 cores (it shows the relation to the power of 1 core). So it can be up to 200%\r\n2. No. But I tried without client and with the same VPI. Memory doesn\'t move. So I assume it\'s the problem come from the communication Client/Server\r\n3. No. But I can retry with the reference client :).','2016-01-25 17:22:06',0),(106,77,'Issue',246,'I did the modification for the variable vector. It took me 2 hours (1h30 to analyze, 30min to do it).\r\nFor my 8000 nodes configuration, I divided the load time by 2 (15s to 7s) and the %CPU has a mean of 13% (instead of 70%)\r\n\r\nI joined the patch so you can apply it to the lasted version (1.0.4.0.RC3).\r\n\r\n\r\nBefore:\r\n\'Graph.PNG\'\r\n\r\nAfter:\r\n\'Capture_MAP.PNG\'\r\n\r\n\r\n','2016-01-27 09:36:20',0),(107,77,'Issue',1,'Valentin,\r\nI remind you that it is forbidden to fork OpenOpcUa. So Let consider your modification as a temporary workaround for your own need\r\nMore of that there are issues :\r\n* Your naming convention are not fitting in the OpenOpcUa naming convention.\r\n* Your implemention is just for CUAVariable\r\n* In the development Schedule this is a suppose to be part of the UANodeManager integration in the 1.0.5.0\r\n\r\nRegards\r\nMichel','2016-01-27 09:54:55',0),(108,78,'Issue',1,'Hello,\r\nThank you for your feedback.\r\nI will fix this for the 1.0.4.0 release.\r\n\r\nKind regards\r\nMichel','2016-01-28 16:33:32',0),(109,79,'Issue',1,'Hello,\r\nThank you for your feedback.\r\nThis problem is already on my plate.\r\nI will take a carefull look at your proposal.\r\n\r\nRegards\r\nMichel','2016-02-03 11:53:35',0),(110,79,'Issue',1,'Hello,\r\nOne semaphore is enough in this case.\r\nI made several test with various Vpi and the VpiGlobalStop is called properly.\r\nTo be sure i just add a new message in the VpiReaderThread when the GlobalStop is called :\r\n_OpcUa_Trace(OPCUA_TRACE_SERVER_LEVEL_ERROR, \"GlobalStop was called to stop the Vpi uStatus=0x%05x\\n\", uStatus)\r\n_\r\nSo i ran a Vpi config with the new message and got :\r\n|1840| 15:54:02.232Z GlobalStop was called to stop the Vpi uStatus=0x00000\r\n\r\nCan you provide me a configuration to reproduce your problem ?\r\n\r\nRegards\r\nMichel','2016-02-03 16:58:58',0),(111,79,'Issue',250,'Hi Michel,\r\n\r\ni have attached a zip with out configuration and 3 logfiles. If a opc client is connetced to the server the shutdown seems to be totally different. \r\n1) Client is connected : Shutdown is very quick ( less than 1 second ). Stopping VpiWriteThread and EventsThread seems not to be called.\r\n2) Not Client is connected, without patch : Shutdown takes more than 5 seconds. EventsThread seems to stop ok, but VpiGlobalStop is not called. \r\n3) Not Client is connected, with my patch : Shutdown takes more than 5 seconds. VpiGlobalStop is called.\r\n\r\nPlease be aware that our target system has very poor performance ( Intel Atom with 2 cores at 600Mhz ). The timing behavior between two threads can be totally diffent if you compare it to a core i7 desktop PC. \r\n\r\nThe VPI Screduler looks like that :\r\n\r\nVpiReaderThread()\r\n{\r\n while(doRun)\r\n {\r\n Mutex_lock( Mutex )\r\n doSomething ...\r\n Mutex_unlock( Mutex )\r\n\r\n time calculation \r\n Sema_wait( Sema ) \r\n }\r\n\r\n VpiGlobalStop();\r\n\r\n Sema_post ( Sema ) \r\n}\r\n\r\nStopVpiReaderThread()\r\n{\r\n Mutex_lock( Mutex ) \r\n doRun = false;\r\n Sema_post ( Sema )\r\n Sema_wait( Sema ) \r\n delete VpiReaderThread\r\n Mutex_unlock( Mutex )\r\n}\r\n\r\nYour code with one semaphore can only work if VpiReaderThread waits on the semaphore when Sema_post is called. And the scheduler has to wake the VpiReaderThread immediately after Sema_post is called. If the scheduler continues with StopVpiReaderThread before waking the VpiReaderThread the VpiReaderThread function will not wait for the thread to be finished. The thread will be deleted before VpiGlobalStop is called.\r\n\r\nIn my opinion you cannot rely on a special scheduler strategy. The code must work in every scheduler strategy. \r\n\r\nRegards,\r\nThomas','2016-02-04 10:00:57',0),(112,81,'Issue',1,'Hello,\r\nI Fixed it in the 1.0.4.0 RC15.\r\nPlease validate... \r\n\r\nRegards\r\nMichel','2016-04-12 20:01:52',0),(113,81,'Issue',246,'Hello Michel,\r\n\r\nSeems fixed in RC15.\r\nWhat about the bonus ? Maybe in another version ?\r\n\r\nRegards\r\n','2016-04-13 15:29:11',0),(114,84,'Issue',1,'Hello,\r\nI never see such a problem. \r\nDid you already tried without your Vpi ?\r\n\r\nRegards\r\nMichel\r\n','2016-05-23 16:37:02',0),(115,84,'Issue',250,'Hello Michel,\r\n\r\nI tried with the simulation config of the webinar and I got the same error. \r\n\r\nWe are running the server on an embedded linux. But even if I use OpenSuse Linux 13.1 I got the same error. The error occurs while deleting the pMonitoredItemServer ( SubscriptionServer.cpp Line 1187 ).\r\n\r\nThe embedded Linux uses gcc 4.8,2 with libc 2.18. The Suse Linux uses gcc 4.8.1 with libc 2.18.\r\n\r\nDid you try the RC16 server on a Linux ? Maybe the microsoft compiler and the gcc behave defferent.\r\n\r\nRegards Thomas','2016-05-24 11:29:05',0),(116,84,'Issue',1,'Hello Thomas,\r\nI will try to replicate on a Debian and will let you know.\r\n\r\nKind regards\r\nMichel','2016-05-24 11:46:26',0),(117,85,'Issue',1,'Hello Valentin,\r\nThe last version is the RC16. Please check with it.\r\n\r\nRegards\r\nMichel','2016-06-01 11:17:39',0),(118,86,'Issue',1,'Hello,\r\ni will take a look at it.\r\nBut the Browsename is Mandatory. IT CANNOT BE EMPTY\r\n\r\nWill try to check that in the parser. Because the server should handle wrong configuration :)\r\n\r\nRegards\r\nMichel','2016-06-01 11:28:05',0),(119,85,'Issue',246,'It seems to work on RC16.\r\nThanks.','2016-06-01 11:34:11',0),(120,86,'Issue',246,'Hello,\r\n\r\nEven if it is mandatory it was working without it in RC12.\r\nIf you want to change this behavior, please do it on the next version and write it in a changelog and not between 2 releases candidates.\r\n\r\nRC are just there to fix major bugs before final version without adding new code (add functionalities).\r\n\r\nRegards,\r\nValentin','2016-06-01 11:57:43',0),(121,86,'Issue',1,'Valentin,\r\ncan you provide me a corrupted file for testing.\r\nBTW, the changes are made my way, my rules..\r\n\r\nRegards\r\nMichel','2016-06-01 12:02:30',0),(122,84,'Issue',246,'Hello all,\r\n\r\nWe have the same problem here. \r\n* OS : CentOS 7.1.\r\n* gcc : 4.8.3\r\n\r\nPlease find attached our backtrace which contains complementary information.\r\n\r\nHope it helps.\r\n\r\nRegards,\r\nValentin','2016-06-01 16:27:13',0),(123,86,'Issue',246,'Please, find attached the requested file.\r\n\r\nRegards,\r\nValentin','2016-06-01 16:32:22',0),(124,86,'Issue',1,'Valentin,\r\nThe BrowseName is definitivly missing in your file.\r\nI will be surprise if the previous version could work properly without it.\r\nBrowseName is mandatory according to the UA spec and UANodeSet schema.\r\nI just fix it to make the server more flexible. But a those node will be ignore !\r\n\r\nRegards\r\nMichel','2016-06-01 16:54:44',0),(125,86,'Issue',1,'Hello,\r\nI just change the implementation. \r\nThe server will show node even with an empty BrowseName.\r\nBut the behavior if multiple node are declare that way is impredictible.\r\nClient cannot use TranslateBrowsePathToNodeId because this service is based on the browseName.\r\nSo the server accept, warning as i do !!!\r\n\r\nRegards\r\nMichel','2016-06-01 16:59:52',0),(126,88,'Issue',1,'Hello Raymond,\r\nCan you send me aconfiguration for testing.\r\n\r\nRegards\r\nMichel','2016-06-03 17:01:26',0),(127,89,'Issue',1,'Hello Kai,\r\nThank you to pointing this to me.\r\nYou are right there are someting wrong here.\r\nWill fix it for the next release.\r\n\r\nRegards\r\nMichel','2016-06-09 20:20:49',0),(128,88,'Issue',229,'Here attached the configuration file.\r\nthe OpenOpcUaCoreServer.exe version is 1.0.2.4','2016-06-28 16:20:04',0),(129,84,'Issue',250,'Hello Michel,\r\n\r\nthe gnu libc checks malloc() and free() calls by default. If you free a memory that was not allocated with alloc the libc terminates the application with a stack dump. I think the microsoft libc does not check the calls.\r\n\r\nI did some debugging with the valgrind memcheck tool and i found this bug and some other memory leaks. \r\n\r\nThe following code line refer to the 1.0.4.2 Version. \r\n\r\n1) *OpenOpcUaCoreServer/source/MonitoredItemServer.cpp Line 124*\r\n\r\nOpcUa_Mutex_Lock(OpcUa_Mutex hMutex) and OpcUa_Mutex_Unlock(OpcUa_Mutex hMutex) need an OpcUa_Mutex als Parameter but OpcUa_Mutex_Delete(OpcUa_Mutex* phMutex) need the adress of an OpcUa_Mutex.\r\n\r\nSo the correct call has to be OpcUa_Mutex_Unlock(m_TriggeredItemIdListMutex);\r\n\r\nThis bug causes the termination at client disconnect.\r\n\r\n2) *OpenOpcUaSharedLib/source/Application.cpp Line 299*\r\n\r\nYour _GNUC_ implementation of FindFirstFile() uses the linix call readdir() to get the file informations. The filename d_name of the returned struct dirent is already a 8 bit char string.\r\n\r\nIn Line 299 OpcUa_String_WtoA() tries to convert this string again. The function wcslen seeks 0x0000 as the end of a wide string but this end does not occur in the 8 bit string. This results in the next error. \r\n\r\nIn my opinion the variable asFilename is not used in the _GNUC_ case so the line 299 is senseless and can be removed.\r\n\r\n3) *Stopping threads*\r\nAn illegal memory access occures when stopping the thead e.g the UpdateSubscriptionThread. I see the problem but i did not get the solution yet so I attached the valgrind memcheck output.\r\n\r\nin the function CSubscriptionServer::StopUpdateSubscriptionThread() you set the abort flag m_bRunUpdateDataSubscriptionThread and wait for the Semaphore m_hUpdateSubscriptionThreadSafeSem. After the semaphore is triggered the threas object is deleted with OpcUa_Thread_Delete()\r\n\r\nThe thread function CSubscriptionServer::UpdateDataSubscriptionThread() calls OpcUa_Semaphore_Post() as the last instruction which causes the main thread to wake up again and delete the thread objekt. But this is not really the last instruction of the thread context. UpdateDataSubscriptionThread() returns into the InternalThreadMain() function ( OpenOpcUaStackV1/source/opcua_thread.c line 87 ). In this function you access mutex Thread->Mutex and the semaphore Thread->ShutdownEvent but the memory may be already released by StopUpdateSubscriptionThread().\r\n\r\nI hope these hints help you to improve the core server.\r\n\r\nBest regards\r\n\r\nThomas \r\n ','2016-08-05 11:19:31',0),(130,84,'Issue',219,'FWIW note-5 number 2 (the FindFirstFile() issue) was reported as issue #30 last year.','2016-08-05 11:47:54',0),(131,84,'Issue',1,'Hello thank you for your feedback,\r\nthe point 1 is already fixed in the current version with code you mention.\r\nKai what version are you using ?\r\n\r\nRegards\r\nMichel','2016-08-05 11:51:52',0),(132,84,'Issue',250,'Hello Michel,\r\n\r\nI am using Version 1.0.4.2 from 11.07.2016. In this Version the bug is not fixed. Is there a newer one that i can\'t see in redmine ?','2016-08-08 08:40:01',0),(133,91,'Issue',1,'Bonjour,\r\nJe suis en cours d\'investigation sur ce problème.\r\nJe ne rencontre pas de problème sur un M340 et sur un simulateur modbus (Mod_RSsim)\r\n\r\nOn en parle lundi lors du prochain meeting.\r\n\r\nCordialement\r\nMichel','2016-08-25 17:37:42',0),(134,91,'Issue',1,'Bonjour,\r\nmerci de tester la version 1.0.0.6\r\nCordialement\r\nMichel','2016-08-29 17:18:16',0),(135,88,'Issue',1,'Hello,\r\ni cannot reproduce the problem with the version 1.4.2.256 of UAExpert.\r\nHAve you try with this version ?\r\n\r\nRegards\r\nMichel\r\n\r\n','2016-09-03 00:10:39',0),(136,87,'Issue',1,'Hello,\r\nthis problem is fixed in the 1.0.4.3.\r\nThe SourceName is based on the SourceNode browseName\r\nRegards\r\nMichel','2016-09-06 17:48:11',0),(137,92,'Issue',1,'Hello Adrien,\r\ncan you provide mode detail on the context of this crash ?\r\nDo you have a callstack ?\r\n\r\nFor your information. The date in the log is perfectly correct. IT\'s a UTC date.\r\n\r\nRegards\r\nMichel','2016-09-08 14:04:01',0),(138,96,'Issue',1,'Hello,\r\nYour scenario is a debug scenario that cannot happens in runtime.\r\nIt possible that according to you subscription parameter the server is facing an odd case.\r\nCan you provide information on the subscription active during your debugging session.\r\n\r\nI advise you to update your codebase Server and Vpi to 1.0.4.3.\r\nRegards\r\nMichel\r\n','2016-09-15 19:54:23',0),(139,92,'Issue',1,'Nothing to do with those information.\r\n','2016-09-15 19:58:05',0),(140,88,'Issue',1,'','2016-09-15 19:58:46',0),(141,66,'Issue',1,'','2016-09-15 19:59:24',0),(142,62,'Issue',1,'','2016-09-15 19:59:42',0),(143,73,'Issue',1,'','2016-09-15 20:00:58',0),(144,41,'Issue',1,'Fix in 1.0.4.x.\r\nPlease update','2016-09-15 20:02:48',0),(145,96,'Issue',226,'Hello,\r\n\r\nThe scenario indicates how to reproduce it easily in dev environnement.\r\nThe reported problem happens in production, where there is no debuging tools.\r\n\r\n It possible that according to you subscription parameter the server is facing an odd case.\r\n Can you provide information on the subscription active during your debugging session.\r\n* we have OPC_TIMEOUT 7500, this is the limit reached by the lifetime function\r\n* where can i see thins information in logs or in the debugger ?\r\n\r\nHere are the threads for information. Threads 4 & 6 are exited at the begining.\r\n\r\n 19 Thread 0xf69ffb40 (LWP 30296) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 18 Thread 0xf6d2ab40 (LWP 30210) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 16 Thread 0xf6d66b40 (LWP 29272) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n* 15 Thread 0xf6d84b40 (LWP 29266) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 14 Thread 0xf6da2b40 (LWP 29264) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 13 Thread 0xf6dc0b40 (LWP 29263) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 12 Thread 0xf758cb40 (LWP 29261) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 11 Thread 0xf71a5b40 (LWP 28306) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 10 Thread 0xf71c3b40 (LWP 28304) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 9 Thread 0xf71e1b40 (LWP 28285) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 8 Thread 0xf71ffb40 (LWP 28282) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 7 Thread 0xf7532b40 (LWP 28279) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 5 Thread 0xf756eb40 (LWP 28270) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 3 Thread 0xf75cbb40 (LWP 26662) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 2 Thread 0xf75e9b40 (LWP 26661) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n 1 Thread 0xf75eb780 (LWP 26569) \"OpenOpcUaCoreSe\" 0xf7fdc430 in __kernel_vsyscall ()\r\n','2016-09-16 07:49:23',0),(146,92,'Issue',226,'Please reopoen the ticket, the problem is still present in production.\r\n\r\nI do my best to get a callstack, but this is difficult in our environment.','2016-09-16 07:55:25',0),(147,96,'Issue',1,'Hello,\r\n# You have to update your code base to 1.0.4.3\r\n# The subscription parameter are controled by clients included timeout.\r\n# I tried to reproduce on Windows and Linux but i cannot\r\n\r\nFor a deeper investigation i suggest you reactivate your support contract.\r\n\r\nRegards\r\nMichel','2016-09-16 14:33:22',0),(148,96,'Issue',226,'Michel Condemine Admin wrote:\r\n> Hello,\r\n> # You have to update your code base to 1.0.4.3\r\n> # The subscription parameter are controled by clients included timeout.\r\n> # I tried to reproduce on Windows and Linux but i cannot\r\n> \r\n> For a deeper investigation i suggest you reactivate your support contract.\r\n> \r\n> Regards\r\n> Michel\r\n\r\nHello,\r\nI don\'t see the link to download current or older releases to update my code base.\r\n','2016-09-16 14:53:02',0),(149,96,'Issue',1,'Hello,\r\nThe new codebase is in the download section.\r\nBut i don\'t think you can access it any more. Please subscribe\r\n\r\nRegards','2016-09-22 08:21:16',0),(150,91,'Issue',254,'Le nombre d’élément à régler dans le subsystem, fonctionne uniquement en lecture. Dans mon exemple il est réglé à 4\r\nDans les traces en PJ on voit que j’écris ‘hello world’ et que je relis que ‘hell’\r\nPar contre dans UAExpert il n’y a que ‘hel’ qui s’affiche soit 3 éléments donc on a perdu un élément dans le traitement. \r\n \r\nJ’ai refait cette exemple avec 3 éléments dans le subsystem, on écrit toujours ‘hello world’, on relie ‘hel’ et on affiche ‘he’.\r\n','2016-09-22 17:33:49',0),(151,95,'Issue',1,'','2016-10-10 08:45:09',0),(152,91,'Issue',1,'Bonjour,\r\nPourriez vous tester, avant notre call de mercredi, la nouvelle version disponible dans le section file.TestModbus_1_0_0_6.zip\r\n\r\nCordialement\r\nMichel Condemine','2016-10-10 18:10:05',0),(153,97,'Issue',269,'Bonjour,\r\n\r\nDepuis la dernière réunion : \r\n\r\n* Nous avions un conflit entre Vpi Cooperl le Vip S7. Vous aviez effectué une correction mais je ne sais pas si d\'autres modifications sont en cours. Nous avons désactivé le Vip S7 pour pouvoir faire nos essais.\r\n\r\n* On souhaite recevoir une trame de retour lors de l\'écriture d\'une nodeId (Je pense que c\'est votre point \"2- format écriture\").\r\n\r\n* Concernant le code d\'erreur. Il faudrait prévoir dans la playload un code retour 0=OK, 0<> Erreur (Votre point \"1- Code erreur\").\r\n\r\n* Je n\'ai pas réussi à lire ou écrire un tableau de NodeID. L\'écriture du premier node est effecutée mais pas celle du second. Je dois fais encore quelques essais aujourd\'hui concernant ce sujet. Je vous transmet la trame après avoir fait quelques essais. \r\n\r\nCi joint les captures Wireshark afin de faire abstraction abstraction l\'outils de test. \r\n \r\nSuite à votre dernier mail de ce main concernant le codage en binaire. Pouvez vous modifier le document word avec la payload et le nouveau Vpi Cooperl.\r\n\r\n \r\nCordialement,\r\nYvonnick MORICE','2016-10-11 11:50:41',0),(154,91,'Issue',1,'Fixed in VpiMdbMaster 1.0.0.7','2016-11-03 12:10:41',0),(155,101,'Issue',1,'Bonjour,\r\npour la gestion de la version du VpiCooperl il suffit de créer une UAVariable dans l\'espace d\'adressage du serveur OpenOpcUa de type string qui contiendra le n° de version du Vpi. L\'AS400 pourra interroger ce node pour connaître le n° de version. Concernant le n° de version du serveur vous pouvez interroger le node i=2265.\r\n\r\nCordialement\r\nMichel\r\n','2016-11-21 11:32:50',0),(156,91,'Issue',254,'Bonjour Michel,\r\n\r\nAs-tu trouvé le temps de passer les 16#20 en 16#00 pour remplir la chaine de caractère ?\r\nEt peux-tu partager ta documentation sur ce VPI ?\r\n\r\nMerci d\'avance','2016-11-25 11:12:01',0),(157,103,'Issue',1,'','2016-11-26 10:43:32',0),(158,91,'Issue',1,'','2016-11-28 08:59:46',0),(159,90,'Issue',1,'','2016-11-28 09:00:29',0),(160,91,'Issue',254,'Après plusieurs écriture (4 écritures), le serveur Release plante.\r\nAvec Wireshark on voit que le serveur plante avant d\'envoyer la trame d\'écriture.\r\nEn pj les fichier log.\r\n','2016-11-28 10:24:30',0),(161,104,'Issue',1,'Bonjour,\r\nil ne s\'agit pas d\'une erreur mais d\'information. \r\nElle indique que le fichier des script LUA est absent.\r\n\r\nCordialement\r\nMichel\r\n','2016-11-28 13:56:21',0),(162,91,'Issue',254,'Avec la version 1.0.0.9, le serveur plante toujours.\r\nEn PJ les imprime écran de la fenêtre de plantage et une vue avec VS','2016-11-28 17:50:35',0),(163,104,'Issue',1,'Test en cours','2016-11-30 12:10:25',0),(164,100,'Issue',1,'','2016-11-30 13:54:38',0),(165,107,'Issue',1,'Bonjour,\r\nquelques questions :\r\n1- Avez vous testé la version release ou debug ?\r\n2- Pourquoi souhaitez modifier les AccessLevel et les paramètres d\'archivage ?\r\n3- Les log sont le moyen d\'indiquer les erreurs. Souvenez vous que le serveur en production tourne en tant que service.\r\n4- L\'outil de configuration est l\'OpenOpcUaConfigManager. Il est toujours en version préliminaire. \r\nIl peut être fourni dans l\'état mais reste en dehors de cette prestation.\r\nPourriez vous fournir les log en cas de crash.\r\n\r\nCordialement\r\nMichel Condemine','2016-12-10 16:57:58',0),(166,106,'Issue',269,'','2016-12-14 10:46:14',0),(167,107,'Issue',1,'','2016-12-16 11:41:15',0),(168,102,'Issue',1,'','2016-12-16 11:41:48',0),(169,108,'Issue',1,'Hello,\r\nCannot reproduce this with 1.0.4.6.\r\n\r\nBR\r\nMichel','2016-12-16 11:43:37',0),(170,112,'Issue',1,'Hi,\r\nthank you for this feedback.\r\nI will review it and let you know if it\'s accepted.\r\n\r\nBR\r\nMichel','2016-12-21 19:12:30',0),(171,91,'Issue',254,'Avec la version 1.0.0.9v2, le serveur ne plante pas.\r\nMais il reste un problème lors de l\'écriture de caractères blanc (0x00).\r\nSur une chaine de 6 caractères, si j\'écris 5 caractère ex : \"abcde\", les 5 caractères sont bien passé à l\'automate.\r\nPuis si j\'écris 3 caractères ex : \"abc\", dans l\'automate j\'ai \"abc e\". il y a bien un blanc (0x00) à la place du \"d\", mais le \"e\" n\'a pas été effacé.\r\n\r\nCette anomalie n\'apparait que lorsque l\'on écriture 2 fois de suite des chaines de longueur impaire, avec la seconde plus court que la première.','2016-12-22 16:59:12',0),(172,113,'Issue',1,'Hello,\r\nThis need to be clarify. The API behave correctly.\r\nThe main input parameter is m_ClientHandle .The API keep it unchanged in the output m_MonitoredItemId. The API create a handle called m_hMonitoredItem\r\nIn notifications the API will use this m_hMonitoredItem to notify your application. The m_ClientHandle and m_MonitoredItemId are not used\r\n\r\n\r\nINPUT structure\r\n typedef struct _OpcUa_MonitoredItemToCreate\r\n {\r\n OpcUa_NodeId m_NodeId;\r\n OpcUa_UInt32 m_AttributeId;\r\n OpcUa_String m_IndexRange;\r\n OpcUa_MonitoringMode m_MonitoringMode;\r\n OpcUa_UInt32 m_ClientHandle;\r\n OpcUa_Double m_SamplingInterval;\r\n OpcUa_UInt32 m_DeadbandType;\r\n OpcUa_Double m_DeadbandValue;\r\n OpcUa_Byte m_DatachangeTrigger;\r\n OpcUa_UInt32 m_QueueSize;\r\n OpcUa_Boolean m_DiscardOldest;\r\n OpcUa_TimestampsToReturn m_TimestampsToReturn;\r\n }\r\n OpcUa_MonitoredItemToCreate;\r\nOUTPUT structure\r\n typedef struct _OpcUa_MonitoredItemCreated\r\n {\r\n OpcUa_StatusCode m_Result;\r\n OpcUa_UInt32 m_MonitoredItemId;\r\n OpcUa_Double m_RevisedSamplingInterval;\r\n OpcUa_UInt32 m_pRevisedQueueSize;\r\n OpcUa_Handle m_hMonitoredItem;\r\n } OpcUa_MonitoredItemCreated;\r\n\r\nBR\r\nMichel','2017-01-09 14:26:25',0),(173,113,'Issue',283,'This information is not correct. The value that the API puts in the output m_MonitoredItemId is *NOT* the ClientHandle passed in the OpcUa_MonitoredItemToCreate. The block of code that I originally pointed out overwrites that value. The value passed back in m_MonitoredItemId is generated by the API in a call to OpcUa_ClientApi_CreateMonitoredItems (SubscriptionClient.cpp:150). Please reopen this ticket.\r\n','2017-02-01 14:50:47',0),(174,114,'Issue',1,'I just release a new demo for RPI B+ based on the 1.0.4.6 of OpenOpcUaCoreServer.\r\nRun the server by launching \r\nsh StartOpenOpcUaCoreServer.sh\r\n\r\nEnjoy It\r\nMichel\r\n','2017-02-02 20:14:51',0),(175,115,'Issue',1,'Hello Andre,\r\nThank you for your contribution.\r\nThen Base64 APIs was already added to the next version 1.0.4.7.\r\nCan you just shared your OpenOpcUaClientLib.cpp i will integrate it in the coming version.\r\n\r\nRegards\r\nMichel','2017-02-02 21:31:16',0),(176,115,'Issue',283,'Hi Michel,\r\nPlease find attached my current OpenOpcUaClientLib.cpp\r\nThank you.','2017-02-03 13:45:48',0),(177,115,'Issue',1,'Thank you André,\r\nI just added the code in the 1.0.4.7 for guid and opaque support in OpenOpcUa_StringToNodeId. \r\nI never facing a server using the guid and opaque representation.\r\nDid you test the format and the leak ?\r\nDo you have this need ?\r\n\r\nRegards\r\nMichel','2017-02-03 14:04:34',0),(178,115,'Issue',283,'Hi Michel,\r\nThe client we\'re developing with OpenOpcUa is to replace our current client that already supports it.\r\nOur customers can use that client with any server. Since the change was not big, we think it is better to provide that functionality than to receive calls saying that we broke something.\r\nThank you','2017-02-03 14:08:06',0),(179,115,'Issue',283,'Regarding tests, I have created unit tests in our source code to verify the results of the function.','2017-02-03 14:09:08',0),(180,91,'Issue',254,'avec la version 1.0.1.0, on a toujours le même problème qu\'avec la 1.0.0.9v2','2017-02-24 17:30:17',0),(181,91,'Issue',1,'Je suppose que tu as testé la release. \r\nCette version date de novembre 2016. J\' ai recompilé seulement la version debug. \r\nJe corrige et en poste une autre ce WE.\r\n\r\n\r\nCordialement\r\nMichel','2017-02-24 18:14:29',0),(182,116,'Issue',1,'Hello,\r\nthe current version of the library is 1.0.4.7.\r\nI need to update the demo on the website. I will try to publish a new one later this week.\r\nHonestly i don\'t remember the version used to build the 1.0.3.2. But regarding OpenSSL this was probably a 0.98\r\n\r\nI hope it helps\r\nRegards\r\nMichel','2017-03-22 09:47:39',0),(183,111,'Issue',1,'','2017-03-22 09:49:56',0),(184,107,'Issue',1,'','2017-03-22 10:00:05',0),(185,106,'Issue',1,'','2017-03-22 10:02:27',0),(186,94,'Issue',1,'','2017-03-22 16:19:52',0),(187,91,'Issue',254,'la lecture de string sur un chiffre impair de byte ne fonctionne pas.\r\nLorsque je déclare dans le subsystem une node de 5 éléments de byte, la valeur du node string dans le serveur n\'est que de 4 caractères.\r\nSi je passe à 6 éléments, j\'ai bien 6 caractères.\r\n','2017-05-03 17:28:43',0),(188,117,'Issue',269,'Bonjour,\r\n\r\nSuite à la réception de la nouvelle version. \r\nJ\'ai testé rapidement l\'abonnement qui fonctionne mais je n\'ai pas encore effectué l\'intégration des nouveautés dans la version AS400, c\'est pour cette raison qu\'il n\'y pas eu des retour de notre part. \r\n\r\nJe compte effectuer l\'intégration dans la version AS400 et tester les nouveautés mardi et mercredi prochain (9-10 mai).\r\n\r\nJe te tiens au courant des résultats des tests :\r\n* Abonnement\r\n* Désabonnement\r\n* Monter en charge\r\n* Perte connexion\r\n* Time out TCP\r\n\r\nJ\'aurai aimé testé la version MOXA en même temps, j\'en parle à Patrick.\r\n\r\nCordialement\r\nYvonnick','2017-05-03 18:30:59',0),(189,91,'Issue',254,'Ok pour les string.\r\nAvec la version 1.0.1.9, il y a un problème lors de la création des blocs Int16.\r\nIl y a un node en adresse 1102 (0x44E, ns=2;i=131, ItemCadenceReelle) qui n\'est dans aucun block.\r\n\r\nLes blocks INT16 créés sont\r\n - 1001 à 1034\r\n - 1002 à 1062\r\n - 1063 à 1066\r\n - 1125 à 1128\r\n\r\nLes adresses des nodes Int16 sont : 1001, 1002, 1003, 1004, 1008, 1011, 1012, 1015, 1016, 1017, 1018, 1019, 1020, 1022, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1034, 1040, 1041, 1042, 1043, 1044, 1050, 1051, 1060, 1063, 1064, 1102, 1125, 1126.','2017-06-12 11:16:04',0),(190,121,'Issue',1,'§6.3.1.3 / NOM (ObjectType) ok\r\n§6.3.2.1/LIBELLE au lieu de NOM (ObjectType)et absent dans SSI P2 ok\r\n§6.3.4/ECSType (ObjectType) \r\nJe ne comprends pas.\r\n§6.3.7/ELTType devient ELT (ObjectType) \r\nje ne comprends pas.\r\n§6.3.9/ZoneDeDetectionType ? (ObjectType)\r\nje ne comprends pas.\r\n§6.3.10/LIBELLE et non ZONE DE COUVERTURE (ObjectType)\r\nJe ne vois pas ce problème\r\n§6.3.11/ASSTYPE devient ASS comme au §6.3.5 ObjectType devient variable . J\'ai corrigé l\'annexe F\r\n§6.3.12.6 LIBELLE (ObjectType)\r\nLe libelle est correct dans ma version de l\'annexe F. Je ne comprends pas ObjectType\r\n§6.3.12.4 POS_ATT (SSI P2)\r\nJe ne comprends pas\r\n§6.3.12.3 DFT_POS_ATT (ObjectType)\r\nIl s\'agit de DFT_POS_SECU. Les n° de paragraphe de ma version semble différent.\r\n§6.3.16.1 LIBELLE (ObjectType)\r\nJe ne comprends pas. Ma version semble correcte\r\n§6.3.17.5 DFT_POS_SECU ajouté à l\'annexe F (fait)\r\nBien présent dans ma version\r\n§6.3.19.1 LIBELLE (ObjectType)\r\nBien présent dans ma version\r\n§6.3.21.9 LIBELLE (ObjectType)','2017-06-21 19:22:20',0),(191,121,'Issue',1,'','2017-06-21 19:24:31',0),(192,120,'Issue',1,'J\'ai ajouté la déclaration du type. Les references sur ce type dans chaque instance et le libellé','2017-06-21 21:40:04',0),(193,123,'Issue',1,'Le fichier doit contenir d\'autres infomations. Il faut aussi verifier que la CRT VS2013 est bien installée bien sur ','2017-06-27 16:59:51',0),(194,123,'Issue',1,'Bonjour,\r\nUne petite précision. \r\nLa version actuellement distribuée de la base de code OpenOpcUa, aussi bien chez Renault et chez Prosyst, est une version 32bits. \r\nIl convient donc d\'installer la CRT VS2013 32bits.\r\nDans une version plus industrielle une procédure d\'installation sera mise à disposition. \r\nElle permettra d\'installer le serveur, ses VPIs, VFIs et autres dépendances.\r\n\r\nJe précise aussi que le code peut être généré en version 64bits sans difficulté.\r\n\r\nCordialement\r\nMichel','2017-06-27 17:37:41',0),(195,122,'Issue',1,'','2017-06-28 09:51:33',0),(196,123,'Issue',1,'','2017-06-28 09:52:20',0),(197,125,'Issue',1,'Bonjour,\r\nle problème est corrigé dans la version 1.0.2.4 du VpiMdbMaster.\r\nCette version s\'harmonise mieux avec le serveur 1.0.5.0 bien qu\'elle fonctionne avec les versions précédentes. \r\nLes deux binaires sont sur le Redmine dans la section Files.\r\n\r\nEnjoy it\r\nMichel\r\n','2017-07-05 00:13:41',0),(198,128,'Issue',1,'Idem 125','2017-07-05 09:26:30',0),(199,125,'Issue',1,'Bonjour,\r\nJ\'ai toujours des difficultés avec la prise du paramètre BYTE_ORDER, même après mise à jour du serveur en 1.0.5.0 et du VPI en 1.0.2.4.\r\nD\'autre part j\'ai des erreurs dans les logs du VPI : VpiReadValue called failed + Protocol Error. We expected a len of 2 we got 1\r\nJe ne sais pas si c\'est lié à mon projet qui a plusieurs variable qui pointe sur les même adresses mais avec des format différent !\r\nEn PJ mon projet test qui pointe sur un esclave modbus local (127.0.0.1) + les Logs du VPI','2017-07-05 09:27:15',0),(200,125,'Issue',1,'Bonjour,\r\n@Jean-Francois: \r\nje suis en train de valider ta configuration.\r\nest ce que tu pourrais passer du mode Both au Mode Subscribe ?\r\n\r\nCordialement\r\nMichel','2017-07-05 10:30:38',0),(201,125,'Issue',1,'Jean Francois,\r\nest ce que tu utilises bien la version 1.0.2.4 ?\r\nEst ce que le node Version sous VpiSet contiennent bien 1.0.2.4 ?\r\n\r\nPS: attention les instances doivent toujours être fille de Objects.\r\n\r\nCi-joint une configuration de test en release et en debug. Utilise StartServerRelease.bat ou StartServerDebug.bat pour lancer le projet\r\n\r\nCordialement\r\nMichel','2017-07-05 11:58:18',0),(202,129,'Issue',1,'Bonjour,\r\nIl n\'y a aucune limite dans le nombre de changement d\'état que tu envoies au serveur lors d\'un appel a la fonction callback.\r\nLe VpiSafir comme le VpiNullEx ne sont que des exemples qui ne valent pas en dehors de leurs contexte d\'utilisation. Entre nous les Vpi en .Net c\'est pas terrible, vraiment pas terrible. perf minable, code énorme...beurk !!!!\r\n\r\nLe remplissage des queues est géré par le serveur en fonction des demandes du client. Sous l\'angle du Vpi tu n\'as et tu ne dois avoir aucun contrôle sur les queueSize. Les Queue size concerne la relation client/serveur uniquement. \r\nSi pas de client, pas de queue et donc pas de queuesize.\r\n\r\nPar ailleurs c\'est pas parce que le client demande une queue size de 10 que le serveur doit le faire. Il y a les profiles dans OPC UA...; Mais c\'est un autre sujet.\r\n\r\nDonc je répète :\r\nIl n\'y a aucune limite dans le nombre de changement d\'état que tu envoies au serveur lors d\'un appel à la fonction callback. \r\nLe serveur se débrouillera.\r\n\r\nCordialement\r\nMichel\r\n','2017-07-07 17:33:51',0),(203,133,'Issue',1,'Bonjour,\r\nL_SSI est un EspaceType. Il ne manque pas sa définition. Il s\'agit d\'un EspaceType\r\nLSType n\'est pas \"fils de\" mais il \"hérite de\"\r\n\r\nEn résumé je ne vois pas de problème.\r\n\r\nCordialement\r\nMichel','2017-07-19 11:23:41',0),(204,133,'Issue',1,'Mettre à jour P2 selon fichier. AddressSpace.pptx slide 3.\r\n\r\n!!','2017-07-19 11:46:20',0),(205,135,'Issue',1,'Bonjour Damien,\r\nSi je comprends bien ton temps de démarrage est des 3min pour 5000 nodes sans VPI ?\r\nsur ces 3 min \r\n- 56 sec se passe dans le xml4CE_SAXParseBegin reparti entre :\r\n * 22 secondes dans le XML_Parse\r\n * 34 secondes à lire le fichier \r\nQuestion 1. Est ce correcte ?\r\nQuestion 2 : Ou sont dépensé les 2 autres minutes. Sachant que le reste du traitement est du post-parsing déjà threadé ?\r\n\r\nCordialement\r\nMichel\r\n','2017-07-19 18:17:49',0),(206,136,'Issue',319,'Le problème est partiellement corrigé, c\'était un problème de NameSpace. Maintenant la connexion est correcte mais dans le client UAExpert il n\'y a pas de rafraichissement des valeurs - Statuscode=Good.','2017-07-20 16:00:24',0),(207,135,'Issue',303,'Michel,\r\nVoici une trace un peu plus détaillée des différents temps.\r\n\r\n/SDCA:0/:ConfigOpenOpcUa.xml\r\n(29585)LoadUaServerConfiguration=23\r\n/SDCA:0/:OpcUaNodeSet2Part3.xml\r\n/SDCA:0/:OpcUaNodeSet2Part4.xml\r\n/SDCA:0/:OpcUaNodeSet2Part5.xml\r\n/SDCA:0/:AidiagNodeSet.xml\r\n(105499)LoadNodeSetFiles=75913\r\n(105500)LoadSimulationFiles=0\r\n(105500)LoadSubSystemFiles=0\r\n/SDCA:0/:AidiagSubSystem001.xml\r\n(159753)LoadUaServerSubsystems=54212\r\n\r\nLa valeur entre () est le temps en milliseconde depuis le reboot du coupleur.\r\nOn peut donc dire que l\'analyse des XML prend 159-29=130 secondes réparties en 75s pour les fichiers NodeSet (1s+4s+12s+57s) et 54s pour le fichier SubSystem.\r\nLe VPI est bien lancé aussi.\r\nJe prends des mesures plus détaillées pour AidiagNodeSet.xml(57s) et AidiagSubSystem001.xml(54s) et je reviens vers toi...\r\nEn effet, je pensais\r\nMerci.\r\n\r\nDamien\r\n','2017-07-20 17:48:28',0),(208,135,'Issue',303,'Michel,\r\nJ\'ai trouvé la raison d\'une partie du pb : pour le fichier AidiagSubSystem001.xml, le temps de 54s est en grande partie(48s) pris par l\'accès au fichier.\r\nSi j\'appelle la fonction LoadUaServerSubsystems en synchrone à la suite des autres et non pas dans le thread créée par LoadSubSystemFiles, alors le temps d\'analyse pour ce fichier est de 6s seulement.\r\nL\'accès à mon système de fichier sur la SDCard doit donc être très lent lorsqu\'il est fait depuis un thread n\'ayant peut être pas une priorité importante...\r\nA suivre...\r\nDamien.','2017-07-21 10:45:17',0),(209,136,'Issue',319,'Bonjour,\r\n\r\nJe n\'arrive pas à paramétrer le VPI UA Client pour qu\'il collecte les données dans deux serveurs distants. J\'ai mis en pièce jointe le projet. Le répertoire contient également les deux projets implantés sur les PC distants. Merci pour ton aide.\r\nCordialement,\r\nBernard BRICE','2017-07-21 14:43:50',0),(210,136,'Issue',1,'Bonjour Bernard,\r\nje travail actuellement sur une toute nouvelle version du VPpiUaClient.\r\nJe peux te proposer d\'organiser un gotomeeting en fin d\'AM (17h). En attendant\r\nEst ce qu\'UAExpert distant reçoit les valeurs ?\r\nEst ce que les heures sont bien synchronisées ?\r\nQue dit une trace WireShark ?\r\n\r\nCordialement\r\nMichel','2017-07-21 14:48:37',0),(211,136,'Issue',319,'Bonjour Michel,\r\nJe ne suis pas disponible cet après-midi. Oui, UA Expert distant lis les valeurs dans les deux serveurs (les heures sont donc bien synchronisées). Je vais essayer lundi matin de mettre en service WireShark pour pousser l\'analyse.\r\n\r\nCordialement,\r\nBernard','2017-07-21 14:56:49',0),(212,135,'Issue',1,'Damien, \r\nconcernant le chargement de la partie SubSystem j\'ai réalisé des modifications qui pourraient sensiblement t\'aider.\r\n# Appel du parsing pour plusieurs Tag à la fois. La signature est la suivante. Vpi_StatusCode VpiParseAddIds(Vpi_Handle hVpi, Vpi_UInt32 UiNbOfNodeId, Vpi_ParseStruct* pParseStruct)\r\n# J\'ai aussi implémenté les fonctions qui permettent de peupler l\'espace d\'adressage depuis le Vpi.\r\nPlusieurs contraintes :\r\n# Il faut passer à la version 1.0.5.0 qui est assez différente de la version que tu utilises\r\n\r\nCordialement\r\nMichel\r\n','2017-07-21 15:01:20',0),(213,135,'Issue',303,'Michel,\r\nPeux-tu me dire où je peux trouver la 1.0.5.0 ?\r\nMerci.\r\nDamien','2017-07-24 17:02:39',0),(214,135,'Issue',1,'Bonjour,\r\nLa version 1.0.5.0 est en cours de développement.\r\nElle sera libérée à la fin de l’été.\r\n\r\n\r\nBien cordialement\r\nMichel Condemine\r\nTel : 04 67 79 07 37\r\n','2017-07-24 17:42:55',0),(215,139,'Issue',1,'Bonjour,\r\nle byte order est corrigé dans la version 1.0.2.5.\r\nLe mode de fonctionnement actuelle me semble satisfaisant car les devices sont, soit LITTLE, soit BIG ENDIAN, jamais les deux a la fois.\r\n\r\nCordialement\r\nMichel','2017-07-31 09:17:42',0),(216,139,'Issue',304,'En effet, le choix du mode peut rester dans le fichier dat.\r\n\r\n_Hors, voici le résultat de nos tests de la version 1.0.2.5:_\r\n> avec vpi configuré avec BYTE_ORDER LITTLE_ENDIAN et une variable 32bit:\r\n> - dans l\'API %MW1=0x3344 et %WM2=0x1122\r\n> - dans le client, la valeur lue est 0x11223344 (287454020 affiché)\r\n> - dans le client, on copie/colle la valeur affichée, %MW1 et %MW2 ne changent pas\r\n> \r\n> avec BYTE_ORDER BIG_ENDIAN:\r\n> - dans l\'API %MW1=0x3344 et %WM2=0x1122\r\n> - dans le client, la valeur lue est 0x22114433 (571556915 affiché)\r\n> - dans le client, on copie/colle la valeur affichée, %MW1=0x4433 et %MW2=0x2211\r\n\r\n_Voici ce que nous souhaiterions pour la manipulation d\'un entier 32bit:_\r\n> avec BYTE_ORDER BIG_ENDIAN et unité atomique = 2octets:\r\n> - dans l\'API %MW1=0x3344 et %WM2=0x1122\r\n> - dans le client, la valeur lue devrait être 0x33441122 (860098850 devrait être affiché)\r\n> - dans le client, on copie/colle la valeur affichée, %MW1 et %MW2 ne devraient pas changer\r\n\r\nje suis disponible pour en discuter.','2017-07-31 11:50:47',0),(217,139,'Issue',1,'Bonjour,\r\nje te propose d\'en parler demain lors du call.\r\nMais si tu déclares deux MW - MW1 et MW2 il s\'agit de deux mots de 16bit. Le Vpi les traitent individuellement. Ce qui me semble parfaitement cohérent.\r\nPourrais tu afficher ta configuration. Je parle de ton fichier SubSystem.\r\n\r\nCordialement\r\nMichel\r\n','2017-07-31 12:04:24',0),(218,139,'Issue',304,'Bonjour Michel,\r\n\r\nVoici la configuration du VPI :\r\n <SubSystem SubSystemId=\"ns=1;i=200\" SubSystemName=\"NRJ\" VpiName=\"VPIMdbMaster\" AccessMode=\"Subscribe\">\r\n <Tag Id=\"ns=1;i=100\" Name=\"V0\" Description=\"V0\" Type=\"Int32\" AccessRight=\"Input_Output\" Address=\"0130001\" />\r\n </SubSystem>\r\n\r\nAvec cette configuration, je m\'attends à ce que le VPI lise les 4 octets (Int32) à partir de l\'adresse 1 et que les octets soient rangés dans l\'ordre spécifié dans BYTE_ORDER ou autre. Aussi, dans cette configuration, on ne fait pas référence à des mots de 16 bits, même si, techniquement, dans mon exemple, les 4 octets sont répartis dans 2 mots contiguës de 16 bits à partir de l\'adresse 1.\r\n\r\nGhislain\r\n','2017-07-31 14:24:40',0),(219,139,'Issue',1,'Bonjour,\nje viens de publier une nouvelle version du VpiMdbMaster.\nElle prend en compte les mots de 32bit en big endian et corrige les problèmes d\'écriture.\n\nMerci de tester et me faire un retour ASAP\n\nCordialement\nMichel','2017-08-02 18:03:25',0),(220,139,'Issue',304,'Bonjour Michel,\r\n\r\nEn big_endian\r\n- le float contient maintenant la bonne valeur. (OK)\r\n- Dans le client, si on rentre la même valeur pour un item int32, la valeur ne change pas. (OK)\r\n- Par contre, si on rentre la même valeur pour un item float, la valeur permute entre 2.31659e-038 et 9.68774 par exemple. (NOK)\r\n\r\nCordialement,\r\nGhislain\r\n\r\n','2017-08-03 10:04:34',0),(221,140,'Issue',1,'Hello,\r\nthe CE built shall be made with VS2008 using the solution called OpenOpcUa_WCE6.sln.\r\nThe solution is part of the zip file. You have to :\r\n1- install the SDK for your target\r\n2- load the OpenOpcUa_WCE6.sln solution\r\n3- adjust some path in the solution \r\n4- Build\r\n\r\nI hope it helps\r\nMichel\r\n','2017-08-18 11:21:00',0),(222,140,'Issue',325,'hi,\r\nthank you for answering my question.\r\n\r\ni do above step and compile some lib such as (XmlSaxParser,OpenOpcUaStackV1,OpenOpcUaSharedLib,LuaLib) but when compile OpenOpcUaCoreServer get error.\r\nerror log attached.\r\n\r\nalso,i get follow error in OpenOpcUaSharedLib into opcua_certficates.cpp for PFXExportCertStoreEx() function:\r\n\r\n1>opcua_certficates.obj : error LNK2001: unresolved external symbol __imp__PFXExportCertStoreEx\r\n1>XPacSDK_CE (x86)\\Debug/OpenOpcUaSharedLib.dll : fatal error LNK1120: 1 unresolved externals\r\n\r\nRegards\r\nBehzad\r\n','2017-08-19 14:36:10',0),(223,140,'Issue',1,'Hello,\r\nOpenOpcUaCoreServer use OpenSSL. \r\nSo you have to build OpenSSL on your CE target in order to build the OpenOpcUaSharedlib and then the server itself.\r\n\r\nRegards\r\nMichel','2017-08-19 15:24:57',0),(224,140,'Issue',325,'hello,\r\nwhats this error in openopcuacoreserver :\r\n\r\n1>EventsEngine.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>Field.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>HaEngine.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>LuaDebugger.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>LuaRestoreStack.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>LuaScript.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>LuaThis.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>LuaVirtualMachine.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>Main.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>MonitoredItemServer.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>OpenOpcUaScript.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>ServerApplication.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>SessionServer.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>SimulatedGroup.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>StackCallbacks.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>SubscriptionServer.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>UAEventNotificationList.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>UAInformationModel.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>UAVariable.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>VPIScheduler.obj : error LNK2005: _errno already defined in Definition.obj\r\n1>VpiTag.obj : error LNK2005: _errno already defined in Definition.obj','2017-08-19 16:12:12',0),(225,140,'Issue',1,'This is an error with errno. \r\nCheck your dependencies.\r\n\r\nBR\r\nMichel','2017-08-19 21:15:32',0),(226,140,'Issue',325,'Dear sir,\nAfter I getting your code, I tried to compile and link it for windows 7 platform.\nExecuting your OPC UA server on Windows 7 was successful.\n\nBut I have problem on compiling and linking it for Windows CE.\nWe have a specific SDK for our Windows CE based device. So we can NOT link for that.\n\nSo please provide us a step by step procedure and all required files (e.g: your Windows CE SDK) that how we can compile and link OPC UA for Windows CE.\nFor example which Windows SDK did you use in Visual Studio 2008 to compile your source.\nAlso can you provide me a compiled and linked OPC UA (exe) that can be execute on Windows CE.\n\nRegards\nBehzad','2017-08-20 09:03:44',0),(227,142,'Issue',1,'Hello,\r\nSSL socket works fine at least on Windows and Linux. \r\nI can investigate on CE but based on recent CE implementation it seem to work properly.\r\nKeep in mind that for technical support you need to upgrade your sponsorship.\r\nRemember that blue sponsorship is for non-commercial use.\r\nRegards\r\nMichel','2017-08-29 13:30:46',0),(228,140,'Issue',1,'','2017-08-29 14:13:00',0),(229,142,'Issue',325,'Dear Sir,\r\nCan I have an exe file of your OPC UA server for Windows 32, please.\r\nI attached my problem screen shots.\r\n','2017-08-29 14:44:23',0),(231,142,'Issue',1,'Vous faites une erreur d\'interprétation.\r\nPar ailleurs merci de me pas utiliser le Redmine pour ce genre d\'échange.\r\nLe redmine est réservé au suivi des incident de support.\r\nMichel Condemine\r\n','2017-08-29 17:50:43',0),(232,142,'Issue',325,'C\'est noté !','2017-08-29 18:09:08',0),(233,142,'Issue',1,'I just double checked the support of sign&encrytp in OpenOpcUa.\r\nI confirm that messages are properly encrypted. \r\nPlease think twice before writing this kind of wrong allegation.\r\n\r\nRegards\r\nMichel','2017-08-29 20:03:26',0),(234,142,'Issue',1,'','2017-08-30 13:46:24',0),(235,129,'Issue',303,'Michel,\r\nJ\'ai refait des tests concernant ce sujet \"queue size\" et je n\'arrive pas à valider le fonctionnement des queues.\r\nDans le thread de mon VPI, j\'incrémente un item de 1 toutes les 50ms avec à chaque évolution un appel à pFuncNotifyCallback pour notifier le serveur.\r\nAvec le client UA Expert, je vois toutes les évolutions si je règle le \"Publishing Interval\" de \"Subscription Settings\" à 50. Cela parait normal. Si je règle ce paramètre sur 1000, je vois une valeur toutes les secondes avec un incrément de 20 (1000/50). Cela est normal aussi car l\'UA Expert n\'affiche que la valeur courante. Par contre, si je fais le test avec notre client UA Aidmap 2 qu\'à fait Ghislain, et qui est censé dépiler les queues à chaque \"Publish Interval\", je ne retrouve pas toutes les valeurs intermédiaires.\r\nJ\'ai fait des captures Wireshark avec le filtre \"OPCUA\" et je constate que toutes les secondes, la réponse PublishResponse ne contient à chaque fois qu\'une seule notification au lieu de 20:\r\nNotificationData: Array of ExtensionObject\r\n ArraySize: 1\r\n [0]: ExtensionObject\r\n TypeId: ExpandedNodeId\r\n EncodingMask: 0x01, has binary body\r\n DataChangeNotification: DataChangeNotification\r\n MonitoredItems: Array of MonitoredItemNotification\r\n ArraySize: 1\r\n [0]: MonitoredItemNotification\r\n ClientHandle: 5\r\n Value: DataValue\r\n DiagnosticInfos: Array of DiagnosticInfo\r\n ArraySize: 0\r\nLes paramètres utilisés dans le client sont les suivants :\r\nSubscription Settings\r\n Publish Interval = 1000\r\n Life Time Count = 2400\r\n Max Keep Alive Count = 10\r\nMonitored Item Settings\r\n Sampling Interval = 250\r\n Queue Size = 10\r\nJe ne vois pas ce qui cloche et où il peut y avoir un problème.\r\nMerci d\'avance pour ton aide.\r\nDamien\r\n\r\n','2017-08-31 17:50:55',0),(236,143,'Issue',304,'Bonjour Michel,\r\n\r\nLa correction à ce problème est attendue en priorité.\r\n\r\nGhislain','2017-09-14 17:32:53',0),(237,143,'Issue',1,'Bonjour,\r\nje viens de regarder la configuration.\r\nQuelques questions préliminaires\r\nPourquoi séparer les différents fichiers dans des repertoires particulier ?\r\nA quoi correspond le nom de chaque répertoire ?\r\nCordialement\r\nMichel','2017-09-14 20:51:06',0),(238,143,'Issue',1,'(Re) Bonjour,\r\nJe viens de tenter de tester ta configuration. \r\nMalheureusement il manque le serveur wrapper et sa configuration.\r\nMerci de me fournir une configuration complète composé.\r\n1- du serveur graine et sa configuration\r\n2- du serveur racine et sa configuration\r\n\r\nPar ailleurs afin de se concentrer sur le problème que vous avez identifié merci d\'enlever les elements de configuration inutiles. j\'entends par là, archive, event, etc.\r\n\r\nCordialement\r\nMichel\r\n','2017-09-14 21:27:48',0),(239,143,'Issue',304,'Bonjour Michel\r\n\r\nJe me permets de réserver la réponse à ta question préliminaire pour plus tard.\r\n\r\nAussi, tu trouveras ci-joint:\r\n- une copie d\'écran qui met en évidence le problème : la variable Double1 qui est actualisée et la variable Double2 qui ne l\'est pas\r\n- un nouveau jeu de tests avec 2 serveurs opc TestEmpty et TestDouble\r\n>> - lancer les 2 StartServerRelease.bat\r\n>> - dans un client, ajouter les variables TestDouble/Double1 et TestDouble/Double2 du serveur TestDouble\r\n>> - ces deux variables recopient la valeur de la variable OpenOpcUaSystem/Trace/TraceOutput de TestEmpty \r\n\r\nCordialement\r\nGhislain','2017-09-15 10:32:52',0),(240,143,'Issue',304,'Bonjour Michel,\r\n\r\nAfin de mieux s\'y retrouver plus rapidement, nous avons l\'habitude de séparer les fichiers de paramétrages des fichier binaires dans des répertoires différents.\r\n\r\nJ\'ai aussi ajouté un nouveau jeu de test épuré avec l\'archive _test1.rar_ dont le fonctionnement est décrit dans le message #4.\r\nArrives-tu à reproduire le phénomène ?\r\n\r\nCordialement,\r\nGhislain\r\n','2017-09-18 09:41:40',0),(241,143,'Issue',1,'Bonjour,\r\nj\'arrive à reproduire le comportement. \r\nIl ne s\'agit pas d\'un bug mais d\'un comportement normal.\r\nIl VPI se comporte ainsi par conception. Plusieurs solutions existent dans le version actuelle pour contourner ce problème.\r\nUne évolution sera apportée à la version en cours de réalisation.\r\n\r\nCordialement\r\nMichel\r\n\r\n\r\n\r\n','2017-09-18 14:51:53',0),(242,143,'Issue',1,'Bonjour,\r\nl\'amélioration est implémentée dans la version 1.0.0.1. \r\nElle sera livré pour le 15 octobre.\r\nCordialement\r\nMichel','2017-09-18 19:58:33',0),(243,137,'Issue',1,'Bonjour Damien,\r\n\r\nLe VpiSafir est un squelette de Vpi pour réaliser des Vpi en code mixe, C++ Natif/C++ CLI.\r\nL\'usage de ce type de Vpi mixe Natif/.Net doit être limité. Ils doivent être réservé à la réalisation de Vpi pour du code .Net existant.\r\n* En aucun cas un nouveau VPI ne doit être réalisé ainsi.\r\n* En aucun cas un VPI VXWorks doit utilisé le VpiSafir comme modèle.\r\nEn ce qui concerne l\'amélioration des performances de la fonction de notification callback j\'aurais besoin d\'une maquette de test sous Windows ou sous Linux.\r\n\r\nCordialement\r\nMichel\r\n','2017-09-18 20:20:48',0),(244,137,'Issue',1,'','2017-09-20 14:17:04',0),(245,147,'Issue',304,'','2017-09-27 17:51:52',0),(246,147,'Issue',1,'Bonjour,\r\nRenault t\'a demandé de tester les AnalogItemType ?\r\nJe pensais que vous ne souhaitiez que vous focaliser sur des cas d\'usages simples.\r\nEst ce que mon hypothèse était la bonne ?\r\nJe connais ce problème qui sera pris en charge ultérieurement.\r\n\r\nCordialement\r\nMichel\r\n\r\n\r\n','2017-09-27 18:15:39',0),(247,134,'Issue',1,'Corrigé dans la maquette P2 de septembre 2017','2017-09-28 23:03:29',0),(248,132,'Issue',1,'Bonjour, \r\nêtes vous certaine ?\r\n\r\nCordialement\r\nMichel\r\n','2017-09-28 23:20:13',0),(249,149,'Issue',1,'','2017-10-02 15:41:31',0),(250,154,'Issue',1,'Bonjour,\r\nIl ne s\'agit pas de StatusCodes officiels.\r\nTu peux les ajouter dans un header propre a ton Vpi.\r\nJ\'attire ton attention sur le fait qu\'OpenOpcUa est en licence LGPL et ne peut être modifié en ce sens.\r\n\r\nCordialement\r\nMichel\r\n','2017-10-04 17:31:44',0),(251,151,'Issue',1,'J\'ai utilisé les codes de groupe pour trouver la valeur associée.\r\n* Est ce la bonne méthode ?\r\n* Existe il une autre approche ?','2017-10-04 20:43:16',0),(252,154,'Issue',304,'Bonjour Michel,\r\n\r\nIl semble que le code 0x81060000 (BadHostUnknown) soit quand même géré par le serveur.\r\nSerait-il possible qu\'il gère aussi le code 0x81100000 (BadLicenseNotAvailable) ?\r\nCeci me serait utile, car j\'ai un VPI qui passe par un driver fourni par une société tiers, et ce driver peut présenter un défaut de licence.\r\n\r\nCordialement,\r\nGhislain','2017-10-05 08:34:04',0),(253,153,'Issue',328,'Je pense que le n° de node (= adresse centrale) se trouve dans le header.\r\nL\'adresse physique se trouve dans les mots D+5 à D+36, si le point est concerné par la requête il passe à 1.\r\n\r\nExemple: je demande les points en dérangement sur le bus B à l\'aide du tableau \"point status map request\", si l\'adresse 6 de ce bus est en dérangement, je recevrai dans D+5 la valeur: 0010 0000 (le bit à 1 represente le point 6) soit la valeur 32 en décimale ou 0x20\r\n\r\nsi tous les bits sont à 1, on aura la valeur 255','2017-10-05 14:09:16',0),(254,155,'Issue',328,'Ci-joint liste des groupes utilisées dans notre maquette','2017-10-05 14:24:45',0),(255,152,'Issue',328,'Si on n\'utilise pas les adresses logiques (notre cas), il faut mettre 0 pour le logical point number et 254 pour la logical point zone\r\nLa point information request sert à avoir plus de détails sur les points, a première vue je ne vois pas d’intérêt à l\'utiliser...','2017-10-05 15:17:11',0),(256,155,'Issue',1,'','2017-10-05 20:47:27',0),(257,156,'Issue',1,'See file section','2017-10-06 14:58:36',0),(258,157,'Issue',304,'Bonjour Michel,\r\n\r\nVoici quelques précisions pour reproduire le problème :\r\n1- [optionnel] lancer : _Demo-TestEmpty\\StartServerRelease.bat\r\n2- lancer : _Demo-TestDouble\\StartServer_Debug.bat\r\n_\r\nL\'erreur est affichée dans le log de _Demo-TestDouble_.\r\nLe VpiUaClnt ne rafraichit pas les UaVariables.\r\n\r\nCordialement,\r\nGhislain','2017-10-09 08:56:53',0),(259,157,'Issue',1,'Bonjour,\r\nTa configuration n\'est pas bonne.\r\nIl faut indiquer au Vpi le mode de fonctionnement qu\'il doit adopter\r\nAutomatique ou Manuel.\r\nCela se fait au travers sur paramètre AUTO_POPULATE\r\nCi-dessous un exemple de fichier\r\nAUTO_POPULATE FALSE\r\nXML_FILE_CLIENT_CFG .\\UaClntd-001-00200-0.xml\r\nPOLLING_RATE 500\r\n\r\nCodialement\r\nMichel','2017-10-09 09:27:31',0),(260,157,'Issue',304,'Rebonjour,\r\n\r\nMerci Michel, ta réponse m\'a décoincé.\r\nMaintenant, le serveur démarre (PJ _Demo-Test avec AUTO_POPULATE FALSE.zip_).\r\nAprès avoir démarré _Demo-TestEmpty_ et _Demo-TestDouble_,\r\ndans UAExpert, la valeur de l\'UAVariable _Double1_ de _Demo-TestDouble_ a une qualité égale à BadInvalidState et ne passe jamais à good.\r\nJ\'ai cherché, mais je ne trouve pas la raison.\r\nQu\'en penses-tu ? \r\n\r\nCordialement,\r\nGhislain\r\n\r\n','2017-10-09 10:37:42',0),(261,157,'Issue',1,'Je viens de faire le test. \r\nIl n\'y a aucun problème ...','2017-10-11 14:00:31',0),(262,160,'Issue',314,'','2017-10-19 16:20:06',0),(263,159,'Issue',1,'','2017-10-25 14:07:32',0),(264,167,'Issue',314,'VpiUaClient','2017-10-31 15:52:14',0),(265,147,'Issue',1,'Corrigé dans la version 1.0.5.1 et >','2017-11-08 18:24:39',0),(266,143,'Issue',1,'','2017-11-08 18:25:56',0),(267,154,'Issue',1,'','2017-11-08 18:26:45',0),(268,147,'Issue',1,'','2017-11-08 18:26:59',0),(269,143,'Issue',1,'','2017-11-08 18:27:21',0),(270,170,'Issue',1,'Bonjour,\r\nPourriez vous m\'indiquer la fonction ou la méthode associé a ce message.\r\na premiere vu il semble qu\'il concerne la conversion Vpi_RawSocket vers Socket.\r\n\r\nSi c\'est bien le cas Il s\'agit plus d\'un warning que d\'un erreur de compilation de l\'OpenOpcUaVpiLibrary.\r\nje vous invite a ajouter -fpermissive dans le CMakeLists.txt ?\r\n\r\nJe ferais une passe avant de release la 1.0.5.2\r\n\r\nCordialement\r\nMichel','2017-11-17 09:46:09',0),(271,165,'Issue',1,'','2017-11-17 09:57:05',0),(272,169,'Issue',1,'','2017-11-17 09:59:20',0),(273,174,'Issue',1,'Pour info... Cette consommation n\'apparait pas si le plug-in UAE n\'est pas connecté.\r\n','2017-11-22 02:49:22',0),(274,174,'Issue',1,'Bonjour,\r\nbonne nouvelle ce problème de fuite mémoire est maintenant réglé.\r\nLe serveur fonctionne avec les 4 simulateurs et consomme +/- 46mb (stable) lorsque l\'UAE est connecté\r\n\r\nNext step... Prise en compte des noms de tables et création de la table de correspondance. \r\n\r\nEnjoy\r\nMichel','2017-11-23 13:51:34',0),(275,163,'Issue',1,'Non reproductible','2017-11-23 14:05:14',0),(276,175,'Issue',1,'','2017-11-27 13:32:42',0),(277,175,'Issue',2,'We downloaded the Demo-Release_1.0.5.2.zip file and tried to execute the application.\r\n\r\nThe server starts, I can connect to it through UAExpert but I can\'t execute OpenOpcUa_DirectAccess.exe :\r\n- first time, it crashed\r\n- now, it shows nothing and then crash (a few seconds after).\r\n\r\nSo, we are not able to test the Vpi.\r\n\r\nBruno','2017-11-27 17:38:44',0),(278,175,'Issue',1,'Let\'s try to understand that first.\r\n1-Send me server log\r\n2- What the crash means ?\r\n can you clarify ?\r\nDo you keep the folder unchange ?\r\n\r\nRegards\r\nMichel\r\n\r\n\r\n','2017-11-27 19:47:33',0),(279,174,'Issue',1,'','2017-11-27 22:43:14',0),(280,165,'Issue',1,'','2017-11-27 22:43:37',0),(281,179,'Issue',269,'','2017-11-28 08:38:00',0),(282,175,'Issue',2,'1 - Send me server log\n\nin attached files\n\n2 - What the crash means ?\ncan you clarify ?\n\nCrash means \"OpenOpcUa_DirectAccess.exe jhas stop working\" (screenshot and information in attached files)\nThe server does not need to be executed, OpenOpcUa_DirectAccess.exe crashes.\n\n3 - Do you keep the folder unchange ?\n\n-> Yes','2017-11-28 09:05:57',0),(283,175,'Issue',1,'Je vais poster la version debug.\r\nmerci d\'essayer avec celle-ci.\r\n','2017-11-28 09:18:57',0),(284,179,'Issue',1,'Bonjour,\r\nce message d\'erreur apparaît quand le node i=2255 (NamespaceArray) du serveur OOUA contient une donnée malformée. \r\n2255 doit contenir un tableau d\'au moins 1 chaine.\r\nEst ce que tu peux utiliser un client et regarder ce qu\'il contient ?\r\nCordialement\r\nMichel','2017-11-28 09:33:13',0),(285,175,'Issue',2,'MSVCR120D.dll missing...\r\n\r\nEn revanche, la nouvelle version fonctionne avec mes tests : Bonne nouvelle !\r\n\r\nUn autre souci : dépendant de l\'ordre dans lequel sont rentrés les paramètres xml, le serveur plante (a cessé de fonctionner).\r\n\r\nPour le reproduire, dans le fichier oouaprj, remplacer la ligne :\r\n<Binding Protocol=\"TCP\" Port=\"2605\" Encoding=\"Binary\"></Binding>\r\n\r\npar la ligne \r\n\r\n<Binding Encoding=\"Binary\" Port=\"2605\" Protocol=\"TCP\"/>\r\n\r\nAyant trouvé l\'origine du bug dans le fichier \"OpenOpcUaCoreServer/source/UABinding.cpp\", je t\'envoie en attaché, un patch correctif.\r\n\r\nPourrait-on avoir les versions release 32 et 64 des binaires corrigés ?\r\n\r\nMerci d\'avance,\r\n\r\nBruno','2017-11-28 09:51:13',0),(286,175,'Issue',1,'MSVCR120D.dll oui, version debug pour VS2013.\r\nJe connais le problème relatif a l\'ordre de déclaration des paramètres. \r\nIl s\'agit d\'un problème mineur. L\'ordre doit être respecté.\r\nCordialement\r\nMichel\r\n','2017-11-28 09:59:20',0),(287,175,'Issue',2,'Pour MSVCR120D.dll, oui, dll débug pour VS2013. Je crois que ce n\'est pas la seule nécessaire, d\'ailleurs.\r\n\r\nNous n\'avons pas Visual Studio 2013 ici, pourrais-tu nous envoyer les dll debug nécessaires pour faire tourner l\'application que tu as compilée ?\r\n\r\nJ\'utilise Qt pour générer le fichier oouaprj final pour lancer le serveur.\r\nCe dernier ne me propose pas de ré ordonner les attributs.\r\n\r\nCe qui est d\'ailleurs normale, la lecture d\'un fichier xml doit être insensible à l\'ordre des attributs.\r\n\r\nEst-il possible de le corriger dans les prochaines release que tu nous envoies ?\r\n\r\nSinon, nous sommes preneurs des sources de cette version qui a l\'air de fonctionner à merveille !\r\n\r\nMerci d\'avance,\r\n\r\nBruno','2017-11-28 10:17:54',0),(288,183,'Issue',1,'Je regarde rapidement','2017-12-01 11:04:16',0),(289,183,'Issue',1,'Bonjour,\r\nje viens de corriger cette régression.\r\nLa correction sera disponible dans la prochaine livraison.\r\n\r\ncordialement\r\nMichel','2017-12-01 14:36:36',0),(290,184,'Issue',1,'Bonjour,\r\nje viens de corriger cette régression.\r\nLa correction sera disponible dans la prochaine livraison.\r\n\r\ncordialement\r\nMichel','2017-12-01 14:37:39',0),(291,180,'Issue',1,'Impossible de reproduire le problème avec la 1.0.5.2 en ma possession','2017-12-01 16:16:32',0),(292,180,'Issue',1,'','2017-12-01 16:16:40',0),(293,185,'Issue',1,'Bonjour,\r\nce problème corrigé dans le version 1.0.5.2 beta3.Elle sera disponible avec la prochaine livraison.\r\nIl convient de verifier la bonne configuration de votre machine au sein du réseau, Domaine ou fichier host.\r\nCordialement\r\nMichel','2017-12-01 16:20:43',0),(294,170,'Issue',2,'Bonjour,\r\nEn effet il s\'agit bien de Vpi_RawSocket.\r\nL\'ajout de -fpermissive a bien transformé les erreurs en warnings et la compilation s\'est fait avec succès.\r\nEn modifiant les CMakeLists.txt, je suis arrivé à obtenir une lib dynamique .so de mon VPI.\r\nAvez-vous des nouvelles de la version 1.0.5.2 ?\r\n\r\nCdlt,\r\nF. Rochette','2017-12-01 18:02:47',0),(295,182,'Issue',1,'Bonsoir,\r\nle problème est résolu. J\'ai déployé et testé la mise à jour.\r\nCordialement\r\nMichel','2017-12-03 22:48:43',0),(296,176,'Issue',1,'Il faudra vérifier la configuration dans les SSI.\r\nL\'harmonisateur s\'en fait simplement l\'echo.\r\n\r\nCordialement\r\nMichek','2017-12-03 22:50:34',0),(297,181,'Issue',1,'Bonsoir,\r\nj\'ai fait le test avec la version déployé ce soir (3/12/2017) sans réussir a reproduire le problème.\r\nIl faudrait faire plus de test à partir du 4/12/2012\r\n\r\nCordialement\r\nMichel','2017-12-03 22:52:55',0),(298,179,'Issue',269,'Bonjour,\r\n\r\nLe node 2255 ne se trouve pas dans notre configuration mais dans le Opc.Ua.NodeSet2.Part5.xml.\r\n\r\nJ\'ai essayé de la mettre en commentaire mais ça ne passe pas.\r\n','2017-12-04 14:33:40',0),(299,146,'Issue',254,'','2017-12-07 16:46:08',0),(300,146,'Issue',254,'','2017-12-07 16:46:24',0),(301,145,'Issue',254,'','2017-12-07 16:47:42',0),(302,118,'Issue',254,'','2017-12-07 16:48:56',0),(303,186,'Issue',1,'Ce message apparaît pour les nodes déclarés dans le fichier de configuration de la couche client mais que ne sont pas utilisés dans le Vpi.\r\nIl s\'agit donc plus d\'un message d\'information que d\'une erreur.','2017-12-10 16:05:44',0),(304,187,'Issue',1,'','2017-12-10 16:12:58',0),(305,183,'Issue',1,'','2017-12-10 16:16:10',0),(306,159,'Issue',1,'','2017-12-10 16:16:30',0),(307,144,'Issue',1,'','2017-12-10 16:16:54',0),(308,190,'Issue',1,'','2017-12-10 16:25:36',0),(309,118,'Issue',1,'','2017-12-10 16:26:05',0),(310,91,'Issue',1,'','2017-12-10 16:26:23',0),(311,189,'Issue',1,'Impossible de reproduire le problème en utilisant le simulateur modbus','2017-12-10 16:31:48',0),(312,185,'Issue',1,'','2017-12-10 16:36:59',0),(313,184,'Issue',1,'','2017-12-10 16:37:12',0),(314,123,'Issue',1,'','2017-12-10 16:37:35',0),(315,122,'Issue',1,'','2017-12-10 16:37:50',0),(316,125,'Issue',1,'','2017-12-10 16:38:07',0),(317,126,'Issue',1,'','2017-12-10 16:38:29',0),(318,127,'Issue',1,'','2017-12-10 16:38:50',0),(319,136,'Issue',1,'','2017-12-10 16:39:06',0),(320,178,'Issue',331,'MAJ : Nouveau fichier XMI, ajout d\'un attribut.','2017-12-11 10:12:53',0),(321,178,'Issue',331,'Comme convenu, notre dernier diagramme de classe qui correspond au précédent XMI.\r\nN\'hésitez pas à la moindre interrogation. ','2017-12-11 12:07:21',0),(322,195,'Issue',1,'L\'harmonisateur n\'était pas tombé. Le plug-in ne s\'est sans doute pas déconnecté proprement.\r\nJe vais analyser la nouvelle trace et vous tiendrai au courant.\r\nL\'harmonisateur tourne en tant que service de Windows et redémarre automatiquement en cas de crash.\r\n\r\nMichel','2017-12-18 19:02:39',0),(323,195,'Issue',1,'','2017-12-18 19:03:03',0),(324,197,'Issue',1,'ci-joint la trace associé','2017-12-19 01:35:18',0),(325,199,'Issue',1,'Hello,\r\nI just create a new fresh UBUNTU 17.02 32bits. Note that apt-get is working on UBUNTU\r\n• Apt-get cmake\r\n• Apt-get libssl-dev\r\n• Build the stack no error. See screenshot below. Note that this is a 32bit UBUNTU. So maybe the problem is here with your box\r\nSo the issue you are facing to is coming from a confusion between 32bits and 64bits part of OpenSSL that seems mixed on UBUNTU 64bit targets.\r\nMy advise for now, as a first step, is to focus on 32bits and to move to 64bits in a second step.\r\nWhat do you think ?\r\n\r\nRegards\r\nMichel','2017-12-20 07:46:18',0),(326,199,'Issue',333,'Hi Michel,\r\n\r\nOK. Let us focus on 32-bit OS for now and learn the API first.\r\nThen will move on to 64 bit OS.\r\nThanks, \r\n\r\nJason ','2017-12-20 08:05:41',0),(327,199,'Issue',1,'Hello,\r\nthe final 1.0.5.2 is almost ready. \r\nI\'m fixing the last detail. It will be publish max on next Monday.\r\nIf a Release Candidate is ready before Monday. i will provide it to you guy first.\r\n\r\nKind regards\r\nMichel','2017-12-20 08:11:16',0),(328,199,'Issue',333,'Thanks Michel\r\nLooking forward to it','2017-12-20 08:35:14',0),(329,197,'Issue',329,'1. Si on parle des recommandations données par Michel lors de la journée d\'intégration du jeudi 7/12 et notées sur le bout de papier ci-joint, la demande d’ADP a finalement été la suivante :\r\na) L\'analyse réalisée par 4CE montre que le Plug-In crée 26 souscriptions uniques contenant 31907 MonitoredItems chacune ie 829582 MonitoredItems au total.\r\n- Le plug-in dysfonctionne\r\n- Il créerait des souscriptions qu’il ne surveillerait pas.\r\n- Une fois créées il les laisserait à l’état de fantômes et attendrait que le serveur les détruise après timeout.\r\n- Les paramètres des souscriptions seraient fantaisistes.\r\nb) Comme préconisé, réduire le nombre de monitoredItem ajoutés lors d’un appel. Essayer une montée en charge (de 5000 à 15000 monitoredItems par appel) et voir ce que cela donne.\r\nc) Rendre paramétrable les souscriptions par type de variables (ALM, DRG, DFT, DFT_BATT, DFT_L_ECS...). Voir pièce jointe.\r\nPar défaut mettre tout à 100ms. On affinera après.\r\n\r\nNous avons implémenté le point c). Si cela ne concerne pas ces sujets, *merci de préciser*.\r\n\r\n2. Dire que les paramètres sont inadaptés ou fantaisistes, ne nous permet pas d’avancer. *Merci de préciser* les paramètres à utiliser.\r\n\r\n3. *Merci de préciser* les paramètres demandés pas ADP ? Est-ce que ça rejoint le point 1 plus haut ?\r\n\r\n4. C’est effectivement un problème. Nous devons attendre le retour de congés de Thibaut le 08/01/18.\r\n\r\nPI, vue du côté d’Egidium, on a l’impression qu’on continue de nous cacher la copie, malgré le contrat de support souscrit. Nous n’avons appris que très tardivement l’histoire des \"26 souscriptions\" (point a) alors qu’il devait être connu depuis longtemps. Pour nous les corrections étaient en cours côté harmonisateur. Les discussions sur ce point (gestion de l\'erreur lors du déclenchement du timeout) n\'ont pas abouties et il conviendra de les reprendre indépendamment du fait qu\'on nous ait demandé de découper les souscriptions en plus petits paquets (points b et c).\r\n\r\nSi j\'avais eu connaissance de ce problème avant la journée d’intégration d\'un vrai concentrateur, j\'aurais surement annulé notre participation pour ne pas nous saborder.\r\n\r\nIl en est de même concernant les paramètres inadaptés ou fantaisistes. Nous devons avoir l’information sur ce qui est recommandé.','2017-12-21 17:57:45',0),(330,201,'Issue',1,'Bonjour,\r\nil vous manque le serveur source. En piece jointe\r\nCordialement\r\nMichel','2017-12-22 08:41:04',0),(331,193,'Issue',333,'Hi Michel,\r\n\r\nAny updates regarding the UTF-8 or Corean 949 encoding support in code base?\r\n\r\nThanks and Happy New Year~,\r\n\r\nJason ','2017-12-29 09:43:22',0),(332,203,'Issue',1,'Hello Jason,\r\nI had a restful vacation too short but restful.\r\nI wish you a happy new year may you succeed on both personal and professional plan.\r\n\r\nI spend couple of hour working on the codebase but the 1.0.5.2 is not ready.\r\nI will spring this week to release it. So i can provide a final version on monday.\r\nRegarding the next session (number 4). Is that ok for you to have it on friday 5 10am or on wednesday 10 10am ?\r\n\r\nkind regards\r\nMichel','2018-01-02 10:09:42',0),(333,203,'Issue',333,'Thanks Michel.\r\nIn that case, why don\'t you focus on finishing 1.0.5.2 this week.\r\nWe could do the call on early next week after the release...\r\nWe would need to work with the latest release anyway.\r\n\r\nThanks,\r\n\r\nJason ','2018-01-03 03:11:21',0),(334,201,'Issue',331,'Bonjour,\r\nNous lançons le serveur source fourni par vos soins, puis le .bat, cependant nous avons toujours le même résultat et les mêmes fichiers logs avec les mêmes erreurs, nous ne devons pas nous y prendre correctement ?\r\n\r\nEn vous souhaitant nos meilleurs voeux 2018. \r\nCordialement\r\nMargaux','2018-01-03 11:11:58',0),(335,203,'Issue',333,'Hi Michel,\r\n\r\nAny updates you could share with us regarding latest release?\r\nHave a good weekend,\r\n\r\nJason ','2018-01-05 05:30:43',0),(336,201,'Issue',1,'Ci-joint client DA COM','2018-01-05 15:09:09',0),(337,204,'Issue',1,'Hello,\r\nusualy when i cross compile this problem not appears.\r\nDo you set a LITTLE or BIG ENDIAN parameter ?\r\nI suppose you use BIG_ENDIAN. So just change line 35 \r\nfrom \r\n#define _LITTLE_ENDIAN OPCUA_CONFIG_YES\r\nto\r\n#define _LITTLE_ENDIAN OPCUA_CONFIG_NO\r\n\r\nI hope it helps\r\nMichel','2018-01-06 09:23:46',0),(338,202,'Issue',1,'Duplicate issue','2018-01-06 09:24:51',0),(339,203,'Issue',1,'Hello,\r\nthe new 1.0.5.2 is almost ready.\r\nThe server and the client codebase are ready.\r\nI have to fix and issue in the OpenOpcUaVpiLibrary for Linux.\r\nThis will be ready for next thuesday.\r\n\r\nRegards\r\nMichel','2018-01-06 09:26:29',0),(340,203,'Issue',333,'Hi Michel,\r\n\r\nAs we are focused on the OPC UA - in the order of Client and then Server - could you shared the latest version?\r\nThanks and looking forward to speaking with you soon\r\n\r\nJason ','2018-01-08 01:09:58',0),(341,204,'Issue',333,'Hi Michel,\r\n\r\nOk.\r\nWe would change the code as you suggested; \r\nbut as we have been testing with the old version of the 1.0.5.2, we would wait till you release the more stable version.\r\nCan you release the latest version today?\r\n\r\nJason \r\n','2018-01-08 09:42:36',0),(342,203,'Issue',1,'I just publish the RC of the 1.0.5.2 codebase in the file section.\r\nPlease let me know if your facing issues.\r\nRegards\r\nMichel\r\n','2018-01-08 09:53:17',0),(343,203,'Issue',333,'Thanks Michel.\r\nDo you think you have time this week to do a session say on Thursday this week when we have time to build the latest code.\r\n\r\nJason ','2018-01-09 01:19:21',0),(344,203,'Issue',333,'Hi Michel,\r\n\r\nI suspect that the latest release you shared is tested on Windows platform only.\r\nHave you tested on Linux box? If so, can you share with us the linux virtual machine?\r\n\r\nNow, let me share what encountered attempting to build the latest release you shared with us yesterday;\r\nFYI, we are trying to build the OpenOpcUaTerminalClient in Ubuntu14.04.5 x64 \r\n\r\n1st compile error encountered :\r\n\r\nkcjeon@ubuntu-iox:~/work.eff/OpenOpcUa_1_0_5_2/build/lib/linux/Debug$ cd ../../../\r\nkcjeon@ubuntu-iox:~/work.eff/OpenOpcUa_1_0_5_2/build$ ls\r\nCMakeCache.txt CMakeFiles Makefile OpenOpcUaClientSdk OpenOpcUaSharedLib OpenOpcUaStackV1 XMLSaxParser cmake_install.cmake lib\r\nkcjeon@ubuntu-iox:~/work.eff/OpenOpcUa_1_0_5_2/build$ make\r\n[ 7%] Built target XMLSAXParser\r\n[ 75%] Built target OpenOpcUaStack\r\n[ 92%] Built target OpenOpcUaSharedlib\r\n[ 99%] Built target OpenOpcUaClientLib\r\n[ 99%] Linking CXX executable ../bin/linux/Debug/OpenOpcUaTerminalClient\r\n../../lib/linux/Debug/libOpenOpcUaClientLib.so: undefined reference to `OpenOpcUa::CXmlParser::SearchDataTypeDefinition(_OpcUa_String, _OpenOpcUa_Definiton**)\'\r\n../../lib/linux/Debug/libOpenOpcUaClientLib.so: undefined reference to `OpenOpcUa::CXmlParser::CXmlParser(unsigned char*, long)\'\r\n../../lib/linux/Debug/libOpenOpcUaClientLib.so: undefined reference to `OpenOpcUa::CXmlParser::~CXmlParser()\'\r\n../../lib/linux/Debug/libOpenOpcUaClientLib.so: undefined reference to `OpenOpcUa::CXmlParser::IsDataTypeDictionnary()\'\r\ncollect2: error: ld returned 1 exit status\r\nmake[2]: *** [OpenOpcUaClientSdk/bin/linux/Debug/OpenOpcUaTerminalClient] Error 1\r\nmake[1]: *** [OpenOpcUaClientSdk/OpenOpcUaTerminalClient/CMakeFiles/OpenOpcUaTerminalClient.dir/all] Error 2\r\nmake: *** [all] Error 2\r\nkcjeon@ubuntu-iox:~/work.eff/OpenOpcUa_1_0_5_2/build$ nm -A lib/linux/Debug/libOpenOpcUaClientLib.so|grep IsDataTypeDictionnary\r\nlib/linux/Debug/libOpenOpcUaClientLib.so: U _ZN9OpenOpcUa10CXmlParser21IsDataTypeDictionnaryEv\r\nkcjeon@ubuntu-iox:~/work.eff/OpenOpcUa_1_0_5_2/build$\r\n\r\n\r\nWe see that OpenOpcUa::CXmlParser::SearchDataTypeDefinition etc is missing that are used in libOpenOpcUaClientLib.so.\r\nSo we added - mind you this is the same error not fixed from the previous code release - XmlAttribute.cpp, XmlElement.cpp, XmlParser.cpp to the CMakeLists.txt\r\n\r\n\r\nNow the 2nd error: \r\n\r\n[ 91%] Building CXX object OpenOpcUaClientSdk/OpenOpcUaClientLib/CMakeFiles/OpenOpcUaClientLib.dir/source/XmlElement.cpp.o\r\n/home/kcjeon/work.eff/OpenOpcUa_1_0_5_2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/XmlElement.cpp: In member function ‘OpcUa_StatusCode OpenOpcUa::CXmlElement::ExtractField(eFieldType, OpenOpcUa_Definition*)’:\r\n/home/kcjeon/work.eff/OpenOpcUa_1_0_5_2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/XmlElement.cpp:411:22: error: ‘eFieldType’ is not a class or namespace\r\n if (typeField == eFieldType::STRUCTURE_FIELD)\r\n…\r\n…\r\n…\r\n\r\nWe see this is syntactic error;. ANSI C does not use enum that way, it is MS-specific extended syntax so we fixed the code as follows; \r\n\r\n if (typeField ==STRUCTURE_FIELD) ....\r\n\r\n\r\n\r\nNow 3rd error: \r\n \r\nOpenOpcUa_1_0_5_2/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/XmlAttribute.cpp:144:49: error: ‘trim_left_copy’ was not declared in this scope\r\n std::string szString=trim_left_copy(pszVal,\" \");\r\n\r\nwe we looked at the stdafx.h file and it is #ifdefed WIN32 as attached in this message.\r\n\r\n\r\n\r\n\r\n\r\n\r\nWe have been waiting around for the correctly working code for almost 5 weeks now.\r\nOur deadline is coming near and we need you to work on this as soon as you can, please.\r\n\r\n\r\nThanks and let\'s have a call\r\n\r\nJason \r\n\r\n','2018-01-09 05:46:22',0),(345,203,'Issue',1,'Hello,\r\nFirst this version was tested on a 32bits debian.\r\nIt works on it like a charm. As i said the issue i\'m facing an issue with VpiLibrary regarding the serial port handling. I plan to fix it today at today.\r\nI remember the error with SearchDataTypeDefinition. I fix it... Let me double check that\r\n\r\nI\'m fully busy this week. I have time just now. I suggest a call next monday or tuesday.\r\n\r\nRegards\r\nMichel','2018-01-09 08:58:26',0),(346,203,'Issue',333,'Hi Michel,\n\nCan you share that Debian virtual box with us?\nAs my message shows, we are having series of issues on our end.\n\nWe have not made any code-level progress at all so far.....\n\nThanks,\n\nJason ','2018-01-09 09:06:04',0),(347,203,'Issue',1,'Hello Jason,\r\nI think i made a mistake when i synchronize the last codebase. So you haven\'t the last Linux changes.\r\nI double check it now and send you the new code base.\r\nSorry for the delay\r\nKind Regards\r\nMichel','2018-01-09 09:14:53',0),(348,203,'Issue',333,'Thanks Michel.\r\nPlease take time and ensure every fix is incorporated and all the required code files are included in the right path.\r\n\r\nThanks,\r\n\r\nJason ','2018-01-09 09:34:39',0),(349,206,'Issue',1,'merci de fournir la trace WS et les logs associés','2018-01-09 18:25:19',0),(350,206,'Issue',1,'Le dernier crash du serveur remonte au 3 janvier 2018 avec la version précédente du serveur.\r\nIl me parait indispensable étayer le contexte précis du problème rencontré.\r\nCordialement\r\nMichel','2018-01-09 19:40:41',0),(351,203,'Issue',333,'Hi Michel,\r\n\r\n\r\nThanks for sharing the RC2.\r\nWe have successfully built _OpenOpcUaTerminalClient_ in debug mode in Linux.\r\n\r\nBut we could not find the \"_OpenOpcUaQuickClient_\" project, which we have been using to learn our way around.\r\nCan you give us the OpenOpcUaQuickClinet project with us?\r\n\r\n\r\nOne more issue we need to you to dig into regarding the Byte Order;\r\nFYI, we are building a cross compilation environment to include powerpc-poky-linux compiler and\r\nwe do not explicitly set LITTLE, OR BIG ENDIAN parameters at all.\r\n \r\nwhat you suggested before that is;\r\n\r\n> usualy when i cross compile this problem not appears.\r\n> Do you set a LITTLE or BIG ENDIAN parameter ?\r\n> I suppose you use BIG_ENDIAN. So just change line 35 \r\n> from \r\n> #define _LITTLE_ENDIAN OPCUA_CONFIG_YES\r\n> to\r\n> #define _LITTLE_ENDIAN OPCUA_CONFIG_NO\r\n\r\ndoes not seem to work.\r\n\r\n\r\nI attached the error screen capture.\r\n\r\nWhat you suggested above, we suspect, does not work as the macro is validating the macro anyway\r\nas the attached screen capture show.\r\n\r\nThanks,\r\n\r\nJason \r\n\r\n\r\n\r\n\r\n\r\n','2018-01-10 06:32:46',0),(352,203,'Issue',333,'Hi Michel,\r\n\r\nSorry my bad.\r\nWe found the OpenOpcUaQuickClient\r\nThanks\r\n\r\nJason ','2018-01-10 09:21:08',0),(353,203,'Issue',333,'Hi Michel,\n\n\nKnow you are quite tied up this week, but we ran into project build error with \"OpenOPCQuickClient project\" as the screen captured attached shows.\nFollowing your previous instructions in the slide, we are building projects and using the resulting libraries to build the \"OpenOPCQuickClient\" project.\n\nThe error messages are in Korean so here are the translations;\n\n27 error C2660: \'OpenOpcUa_VariantToString\' : the method/function does not use 1 argument. \nd:\\test_folder\\openopcua_1_0_5_2_rc2\\openopcua_1_0_5_2\\openopcuaclientsdk\\openopcuaquickclient\\source\\uaquickclientdlg.cpp 336 1 OpenOpcUaQuickClient\n\n\n32 error C2664: \'OpcUa_StatusCode OpenOpcUa_ActivateSession(OpcUa_Handle,OpcUa_Handle,OpcUa_UserTokenType,OpcUa_String *,OpcUa_String *,OpcUa_String *,OpcUa_ByteString *)\' : can not cast 3rd argument from \'OpcUa_UserTokenPolicy *\' to \'OpcUa_UserTokenType\'\n d:\\test_folder\\openopcua_1_0_5_2_rc2\\openopcua_1_0_5_2\\openopcuaclientsdk\\openopcuaquickclient\\source\\uaquickclientdlg.cpp 1287 1 OpenOpcUaQuickClient\n\n\nYour immediate attention to this would be much appreciated.\nAnd while you are at it, could you run the QuickClient yourself and ensure it compiles and works?\n\n*FYI, we have our own deadlines with our client as well.\nAnd unfortunately, we are already running the risk of NOT meeting the delivery time.*\n\nThanks,\n\nJason \n','2018-01-11 07:34:04',0),(354,203,'Issue',1,'Hello,\r\nThank you for your feedback. the OpenOpcUa_VariantToString uses 4 parameters.\r\nI copy in the file section an update of the MFC project.\r\nNot the best starting point in my opinion.\r\n\r\nRegards\r\nMichel','2018-01-11 07:46:49',0),(355,203,'Issue',333,'Michel,\r\n\r\nPlease ensure that we get working codes......\r\nThis is somewhat frustrating, not to mention time-consuming.\r\n\r\nNow, what do you think is the best starting point, then?\r\nWe are open to the recommendation.\r\nWe are eager to learn and proceed with our own development.\r\n\r\nAnd do us a favor and show us how to read multiple tags in a single request, please.\r\n\r\nThanks,\r\n\r\nJason \r\n','2018-01-11 09:10:43',0),(356,203,'Issue',1,'Jason,\r\ni got you point about ensuring that the code is working.\r\nIf you want to start with client development the TerminalClient is a better sample the QuickClient.\r\nRemember that the QuickClient is a MFC client.\r\nRegarding your question about multiple read. I\'m confuse. A client is suppose to subscribe to server not the read.\r\nRead is reserve for special case.\r\n\r\nMy advice finaly is to define you client project and to implement using the client API.\r\n\r\nRegards\r\nMichel\r\n','2018-01-11 13:19:02',0),(357,208,'Issue',1,'Je suis d\'accord sur le fait qu\'il faut corriger ces problèmes.\r\nMais il est indispensable de valider le processus de connexion du plug-in\r\n\r\nCordialement\r\nMichel','2018-01-11 13:25:17',0),(358,209,'Issue',1,'I s\'agit probablement d\'un problème de handle.\r\nJe pense qu\'UAExpert, en cas de perte de connexion, reste sur de vieux handle.\r\nA vérifier\r\n\r\nCordialement\r\nMichel','2018-01-11 13:31:27',0),(359,209,'Issue',1,'','2018-01-11 13:31:38',0),(360,203,'Issue',333,'Michel,\r\n\r\nThanks.\r\nCould you point us to any tutorial or examples of the \"subscription\" usng hte client API?\r\nOr any documentations of the Client API for programmers? \r\n\r\nThanks,\r\n\r\nJason ','2018-01-11 13:43:42',0),(361,203,'Issue',1,'The Terminal client handle all.. Subscritpion/read/write etc....','2018-01-11 13:45:39',0),(362,208,'Issue',345,'Une piste à confirmer avant de clore le ticket.\r\nPotentiellement intéressant pour Thibault si son client avait le même comportement qu\'UAexpert\r\nPotentiellement intéressant pour Michel car sur le coup ça semble aussi perturber l\'harmonisateur.\r\n\r\nHier sur la base de l\'harmonisateur, on arrivait pas à avoir un comportement cohérent avec le plugin. \r\nAu bout d\'un moment on a remis en direct sur concentrateur et là sans dire que tout était dans les règles on avait un fonctionnement cohérent qui nous permettait de progresser. \r\n\r\nMoi même j\'étais surpris par l\'aspect assez systématique de non remontée et croisement de donnée que je n\'avais jamais eu à cette hauteur depuis la livraison du 03/01.\r\n\r\nMais je crois que c\'est tout bête. Quand on ne joue qu\'avec le concentrateur en direct et que l\'on s\'abonne sur une ALM par cliquer-glisser dans UA Expert, on s\'abonne bien à ALM. On change la valeur et le plugin comprend bien.\r\n\r\nPar contre quand on s\'abonne à ALM de l\'harmonisateur dans UAexpert si on ne développe pas avant ou en sélectionnant plusieurs item on s\'abonne à quelque chose d\'instable et à partir de là on part dans de l\'incohérent pour tous.\r\n\r\nMerci d\'essayer et de voir si c\'est bien le cas. \r\n\r\n','2018-01-11 16:14:19',0),(363,209,'Issue',345,'Je pense que tu peux clore celui là vu observation sur 208. ','2018-01-11 16:17:59',0),(364,209,'Issue',1,'','2018-01-11 21:13:06',0),(365,208,'Issue',1,'Bonjour Patrick,\r\nje ne suis pas certain de comprendre la description du problème.\r\nEst ce que tu veux dire que si tu ne te connectes/abonnes qu\'a un simulateur tu n\'as pas de problème mais que si tu te connectes/abonnes a l\'harmo tu as des problèmes ?\r\nJ\'ai fait plein d\'essais avec les 4 simulateurs et l\'harmo sans rencontrer de problèmes. Pourrais tu joindres les fichiers de log quand tu produit ce problème ? \r\n\r\nCordialement\r\nMichel','2018-01-11 21:29:32',0),(366,203,'Issue',333,'Thanks \r\nWe are digging into it but wondering if there were anything else.\r\n\r\nJason ','2018-01-12 00:03:14',0),(367,210,'Issue',333,'Hi Michel,\r\n\r\nJust a short note;\r\nI know you are tied up this week but let me ask you to pay attention to this issue at your earliest convenience, S\'il vous plaît.\r\n\r\n\r\nMerci,\r\n\r\nJason','2018-01-12 03:09:28',0),(368,210,'Issue',333,'Hi Michel,\r\n\r\nJust a short note to communicate with you on the urgency of the need to access \"OpenOpcUaClientSdk\" in C.\r\nIf you could at least give us a time line when we could expect to receive the updated header file...\r\n\r\nIn the initial messages we exchanged, you wrote me that OpenOpcUa supports C with a long list client facets supported in the codebase.\r\nWe need to build alpha version by the end of next week and we are really running out of time here\r\nYour immediate attention on this issue is critical.\r\n\r\nMerci\r\n\r\nJason \r\n\r\n','2018-01-13 03:44:46',0),(369,210,'Issue',1,'Hi, \r\nlet have a call on Monday. I can try Monday 11pm my time. What do you think ?\r\nRegarding C and C++. The OpenOpcUaSdkClient.h is pure C. The Library itself is written in C++ but when you are using it from an application it\'s C and only C.\r\nJust look at OpenOpcUaSdkClient.h there are only C structure and API.\r\nBest regards\r\nMichel','2018-01-13 20:52:50',0),(370,210,'Issue',333,'Hi Michel,\r\n\r\nWe will review the OpenOpcUaSdkClient.h file again.\r\nMy engineer who\'s been working on the OpenOpcUa told me otherwise.\r\n\r\nMonday 11PM so that\'s arund 7 AM Tue. our time.\r\nWe will find a way to speak with you.\r\n\r\nThanks,\r\n\r\nJason','2018-01-14 02:32:49',0),(371,210,'Issue',333,'MIchel.\r\n\r\nwe reviewed the code again and captured a couple of screens and shared them with you via emails (to michelc@4ce-industry.com)\r\nUnless we are looking at the wrong part of the file, we could not make gcc compile the client library.\r\n\r\nI strong suggest that you try and change the source code file extension of the terminal client into *.c and compile it with gcc yourself to see the difficulties we are having.\r\n\r\nThanks,\r\n\r\nJason ','2018-01-14 06:11:32',0),(372,210,'Issue',1,'Hello Jason,\r\nAs is said to you in november 24. (see your @mail history)\r\n*The client toolkit is written in C++ but you can call it from any C apps. This is a C style API.*\r\n\r\nSo you have to use G++ to built the library and then you can use GCC in pure C create client apps.\r\n\r\nKind regards,\r\nMichel \r\n','2018-01-14 11:08:26',0),(373,210,'Issue',333,'Hi MIchel,\r\n\r\nYes that\'s my understanding and we are trying to figure that out.\r\n\r\nFYI, we did compile the client sdk lib in g++ to make so files.\r\nThe problems occur as shown in my previous email when we include the client sdk header file..\r\n\r\nI think we might need your more specific guidance in our next call.\r\nAnd if you could convert the c++ terminal client into C, it would help us see what we are missing.\r\n\r\nLooking forward to speaking with you in a few days.\r\n\r\n\r\nJason','2018-01-14 11:23:06',0),(374,204,'Issue',333,'Hi Michel,\r\n\r\nAny updates on the byte ordering?\r\nAs I emailed you previously, what you suggested does NOT work;\r\n\r\n_So just change line 35 from \r\n#define _LITTLE_ENDIAN OPCUA_CONFIG_YES\r\nto\r\n#define _LITTLE_ENDIAN OPCUA_CONFIG_NO\r\n_\r\n\r\nWith our limited understanding of the code structure, it would be difficult for us to fix this at the moment.\r\n\r\nAnd I am going to create a small C client application to show you the issues we are experiencing regarding the Client Lib header file compiled in gcc.\r\n\r\nBest,\r\n\r\nJason \r\n','2018-01-15 01:54:55',0),(375,210,'Issue',333,'Michel,\r\n\r\nI have sent another email (to michelc@4ce-industry.com) with test C application that would demonstrate the issues we are experiencing on our end with SDKClient.h - the client library.\r\n\r\nPlease take time to go through it guide us to the correct path to fix this.\r\n\r\nMerci,\r\n\r\nJason \r\n\r\n\r\n\r\n ','2018-01-15 02:46:46',0),(376,210,'Issue',333,'One more thing, Michel.\r\nLet\'s save the call scheduled for tomorrow for some other time.\r\n\r\nOnce you take a look at the compile issues - sdk client library and byte ordering - then we could have a call to go over the fix.\r\n\r\nThanks,\r\n\r\nJason','2018-01-15 05:07:48',0),(377,210,'Issue',333,'Jason Noh wrote:\r\n> Michel,\r\n> \r\n> I have sent another email (to michelc@4ce-industry.com) with test C application that would demonstrate the issues we are experiencing on our end with SDKClient.h - the client library.\r\n> \r\n> Please take time to go through it guide us to the correct path to fix this.\r\n> \r\n> Merci,\r\n> \r\n> Jason\r\n\r\nHave you tried the codes we sent yet Michel?','2018-01-15 12:51:12',0),(378,210,'Issue',1,'Hello,\r\nI\'m just back in my office after 2 weeks traveling.\r\nI will try to take a look at your code later this week.\r\nIt could be helpful is you can provide me a cmakelists.txt according to you sample.\r\n\r\nRegards\r\nMichel','2018-01-15 13:16:42',0),(379,210,'Issue',333,'Michel.\r\n\r\nThe gz file contains all the required libs and test application for you to compile.\r\nWill share the cmakelist.txt file tomorrow morning.\r\n*And let me ask you, we need this to work as soon as it is possible.*++\r\nAnd there are two issues we encounter so far - sdk client library and byte ordering.\r\n\r\nThanks,\r\n\r\nJason','2018-01-15 13:40:09',0),(380,210,'Issue',1,'You can add file to ticket.\r\nThis is always better than using my @mail\r\nJust because i have too many @mail in my box.','2018-01-15 13:50:50',0),(381,210,'Issue',1,'','2018-01-15 13:51:11',0),(382,200,'Issue',328,'FAIT','2018-01-15 17:37:23',0),(383,212,'Issue',1,'Bonjour,\r\nje peux mettre en place une thread qui fera un diff du fichier subsystem et passera MODIF_BD à True en cas de différence.\r\nLa thread sera exécuté à une fréquence paramétrable.\r\n\r\ncordialement\r\nMichel','2018-01-15 18:04:55',0),(384,200,'Issue',1,'','2018-01-15 18:26:45',0),(385,158,'Issue',328,'Cela correspond aux redémarrage des centrales (quand on les met sous tension par exemple)','2018-01-15 19:30:07',0),(386,151,'Issue',328,'','2018-01-15 19:31:36',0),(387,210,'Issue',333,'Michel Condemine Admin wrote:\r\n> You can add file to ticket.\r\n> This is always better than using my @mail\r\n> Just because i have too many @mail in my box.\r\n\r\n\r\nMichel,\r\n\r\nAs you can see for yourself, the email has other screen shots and I figured it would be easier for me to explain the issues that way.\r\nWill keep it in mind.\r\nThanks for adding the C test applcation src file.\r\nYou see, you dont need the cmakelist.txt file.\r\n\r\nLooking forward to hearing from you.\r\n\r\nMerci,\r\n\r\nJason ','2018-01-15 21:29:33',0),(388,204,'Issue',333,'Jason Noh wrote:\r\n> Hi Michel,\r\n> \r\n> Any updates on the byte ordering?\r\n> As I emailed you previously, what you suggested does NOT work;\r\n> \r\n> _So just change line 35 from \r\n> #define _LITTLE_ENDIAN OPCUA_CONFIG_YES\r\n> to\r\n> #define _LITTLE_ENDIAN OPCUA_CONFIG_NO\r\n> _\r\n> \r\n> With our limited understanding of the code structure, it would be difficult for us to fix this at the moment.\r\n> \r\n> And I am going to create a small C client application to show you the issues we are experiencing regarding the Client Lib header file compiled in gcc.\r\n> \r\n> Best,\r\n> \r\n> Jason\r\n\r\nMichel,\r\n\r\nWe also need you to look into this issue as well.\r\nAnd if you come up with any fix on the our test C application accessing Client SDK Lib, please let us know.\r\n\r\nThanks\r\n\r\nJason ','2018-01-16 07:29:28',0),(389,210,'Issue',1,'Hello,\r\njust posted a new codebase. It fixe issues related to the client API.The TerminalClient is made of a main.c\r\nI need more information from you about the bigendian issue you are facing to.\r\nLet\'s setup a call this week to clarify this.\r\nI will close issue 210 for now.\r\n\r\nBest regards\r\nMichel\r\n','2018-01-16 12:21:28',0),(390,210,'Issue',1,'','2018-01-16 12:21:44',0),(391,216,'Issue',316,'nota bene: Avant l\'attêt du plgin, je supprime les objets monitorés des souscriptions, puis je supprime les souscriptions','2018-01-16 16:40:50',0),(392,216,'Issue',1,'','2018-01-16 20:49:30',0),(393,210,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello,\r\n> just posted a new codebase. It fixe issues related to the client API.The TerminalClient is made of a main.c\r\n> I need more information from you about the bigendian issue you are facing to.\r\n> Let\'s setup a call this week to clarify this.\r\n> I will close issue 210 for now.\r\n> \r\n> Best regards\r\n> Michel\r\n\r\nThanks Michel.\r\nLet us give it a spin this morning and get back to you.\r\nAnd as to the call schedule, let me speak with KC who is leading the OPC UA work, and get back to you.\r\n\r\nMerci,\r\n\r\nJason ','2018-01-17 00:37:06',0),(394,210,'Issue',333,'Jason Noh wrote:\r\n> Michel Condemine Admin wrote:\r\n> > Hello,\r\n> > just posted a new codebase. It fixe issues related to the client API.The TerminalClient is made of a main.c\r\n> > I need more information from you about the bigendian issue you are facing to.\r\n> > Let\'s setup a call this week to clarify this.\r\n> > I will close issue 210 for now.\r\n> > \r\n> > Best regards\r\n> > Michel\r\n> \r\n> Thanks Michel.\r\n> Let us give it a spin this morning and get back to you.\r\n> And as to the call schedule, let me speak with KC who is leading the OPC UA work, and get back to you.\r\n> \r\n> Merci,\r\n> \r\n> Jason\r\n\r\n\r\nHi Michel,\r\n\r\nFYI, we have successfully built the C client with the Client SDK Library from your new code base.\r\nThanks. Let us proceed with some more testing/development and get back to you.\r\n\r\nRegarding call on byte ordering, why dont\' we schedule a call early next week as your schedule allows?\r\n\r\nMerci,\r\n\r\nJason \r\n','2018-01-17 08:02:55',0),(395,218,'Issue',328,'','2018-01-17 19:15:25',0),(396,218,'Issue',328,'a priori ce mauvais fonctionnement est lié au plantage du serveur suite à un CMD_REINIT','2018-01-17 19:39:20',0),(397,211,'Issue',1,'Représente un défaut matériel sur le SSI. Défaut carte, défaut de communication (par exemple RS, etc.). \nVerifier que le carte de N°41 (sur la maquette) répond au demande Supervision Request.','2018-01-19 14:18:42',0),(398,212,'Issue',1,'Creation de l\'adresse @MODIF_BD. Un diff sera réalisé sur le fichier System pour déterminer un modification de la configuration.\r\nSi changement de taille ==> @MODIF_BD = 1 sinon @MODIF_BD=0\r\nOn vérifie à la vitesse de la synchro horaire. \r\n','2018-01-19 14:25:24',0),(399,213,'Issue',1,'LA modification sera réalisée en ce sens si les centrales acceptent de répondre individuellement aux demandes','2018-01-19 14:26:33',0),(400,214,'Issue',1,'Voir packet 201 et utiliser LocalFault et PanelInFault pour coder le DRG_GEN','2018-01-19 14:33:42',0),(401,215,'Issue',1,'A vérifier\nVérifier la lecture du libelle des Zones et autres','2018-01-19 14:36:04',0),(402,217,'Issue',1,'','2018-01-19 14:47:54',0),(403,211,'Issue',1,'','2018-01-19 14:48:25',0),(404,212,'Issue',1,'','2018-01-19 14:48:40',0),(405,213,'Issue',1,'','2018-01-19 14:49:00',0),(406,214,'Issue',1,'','2018-01-19 14:49:28',0),(407,215,'Issue',1,'','2018-01-19 14:49:45',0),(408,219,'Issue',1,'Cette variable est un ! HS. On utilisera a même adresse que pour l\'HS sa representation sera inversée','2018-01-19 14:50:53',0),(409,220,'Issue',1,'A vérifier','2018-01-19 14:52:28',0),(410,221,'Issue',1,'Groupe 1000 à été ajouté..; Test en cours','2018-01-19 14:53:16',0),(411,222,'Issue',1,'Hello, \r\nYou can stop the publish by calling OpenOpcUa_SetPublishingMode. The last parameter control publish Active/Inactive (True/False).\r\nRegarding your code. I suggest we review it during a call.\r\nThe training are made for that.\r\n\r\nWe are you available next week ?\r\n\r\n주말 잘 보내세요\r\nMichel','2018-01-19 16:08:31',0),(412,215,'Issue',1,'On reçoit tous les libellés des ECS, ELT, ZD et des CMSI, ASS. \r\nIl manque les ZC, ZF,L_SSI. D\'après la documentation. Le protocol permet de lire les points, les zones et les textes associé au \"Panel\".\r\nDans quelle categorie rentre les ZC, les ZF et les L_SSI ?\r\n','2018-01-19 17:34:52',0),(413,222,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello, \r\n> You can stop the publish by calling OpenOpcUa_SetPublishingMode. The last parameter control publish Active/Inactive (True/False).\r\n> Regarding your code. I suggest we review it during a call.\r\n> The training are made for that.\r\n> \r\n> We are you available next week ?\r\n> \r\n> 주말 잘 보내세요\r\n> Michel\r\n\r\n\r\nHello Michel,\r\n\r\nThanks. Let us know when you are available to have a session with us early next week.\r\nWe will be there. We are eager students.\r\n\r\nMerci,\r\n\r\nJason','2018-01-19 22:58:15',0),(414,224,'Issue',1,'Michel Condemine Admin wrote:\r\n> Bonjour,\r\n> j\'ai besoin d\'une clarification de la part de votre R&D sur l\'interprétation des State Information Reply.\r\n> Les données reçues n\'ont pas beaucoup de sens. \r\n> Par exemple :ECS en dérangement et HS sur la face avant.\r\n> Monitored State Bitmap = 1101 1111 0000 1111 0000 0010 0000 0000\r\n> State Information Bitmap =0000 0110 0000 0011 0000 0000 0000 0000(0x2010000)\r\n> Cette demande est URGENTE\r\n> Cordialement\r\n> Michel\r\n\r\nComplément d\'information\r\nNode=1 \'\\x1\' m_pStateInformation32bitsReplyTypeDef=0x02e543e0 {t_MonitoredStatesBitmap=3742302720 t_StateInformationBitmap=100859904 }\r\nNode=21 \'\\x15\' m_pStateInformation32bitsReplyTypeDef=0x02e55728 {t_MonitoredStatesBitmap=3742302720 t_StateInformationBitmap=33619968 }','2018-01-20 15:49:17',0),(415,222,'Issue',333,'Michel,\r\n\r\nHow about Monday or Tuesday next week for us to have a call where we could go over the test code and the byte ordering issues.\r\nLet me know what your schedule early next week looks like.\r\n\r\nMerci,\r\n\r\nJason ','2018-01-21 06:44:17',0),(416,222,'Issue',333,'Good morning Michel,\r\n\r\nIn preparation for our call tomorrow, let me share the agenda so that all of us know where we are jumping into to make the most of the call.\r\n\r\n\r\n1. Fix segmentation fault in modified terminal client or a tutorial on how to correctly conduct tag subscription - start, stop, pause, resume, remove the subscription (full life cycle management of it) \r\n\r\n2. As a client, the application must support multiple OPC UA server and many tags in the servers.\r\n Can you show us how to do that? Or if you have any tutorials of it, please share it with us.\r\n\r\n\r\nLooking forward to speaking with you tomorrow,\r\n\r\nMerci,\r\n\r\nJason ','2018-01-22 02:00:04',0),(417,204,'Issue',333,'Hi Michel,\r\n\r\nLet us share some more information regarding the byte ordering issue in cross compile tool chain we are building;\r\n\r\n1. we are using powerpc-poky-linux-gcc compiler for our cross compile environment (refer to the attached picture for its info),\r\n2. when we tried to build the lastest version of the OpenOpcUa, we run into error that emits \"error Both BIG_ENDIAN and LITTLE_ENDIAN defind!\",\r\n3. the code that causes the compile error is attached as a picture named byte-ordering issue code -1. See the code line 26\r\n (/...../usr/include/bits/endian.h in our virtual machine)\r\n4. another code attached as byte-ordering issue code -2 which is from \"/include/opcua/opcua_platformdefs.h\" defines _LITTLE_ENDIAN. And the suggested flag of \"OPCUA_CONFIG_YES, OPCUA_CONFIG_NO\" does not have any implication.\r\n\r\nWe believe this would describe the byte ordering issue we have in our cross compile environment.\r\n\r\nMerci,\r\n\r\nJason \r\n','2018-01-22 03:15:36',0),(418,222,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello, \r\n> You can stop the publish by calling OpenOpcUa_SetPublishingMode. The last parameter control publish Active/Inactive (True/False).\r\n> Regarding your code. I suggest we review it during a call.\r\n> The training are made for that.\r\n> \r\n> We are you available next week ?\r\n> \r\n> 주말 잘 보내세요\r\n> Michel\r\n\r\nMichel,\r\n\r\nAn easy question for you regarding the \"ShutdonwCallback\" function in OpenOpcUaTerminalClient; \r\nI see that the SetShutdownCallback assigns the callback function called on session close.\r\nWhat\'s curious is that the assigned OnShutdownMessage gets called once on startup and again on state changes as well as session close (is this correct behavior the function called in every state changes?)\r\n\r\nI guess the question is if there is any quick way to convert the string state code into number type.\r\n\r\nMerci,\r\n\r\nJason \r\n\r\n','2018-01-22 03:32:48',0),(419,225,'Issue',254,'','2018-01-22 17:38:34',0),(420,225,'Issue',254,'','2018-01-22 17:38:50',0),(421,188,'Issue',254,'Même sans le VpiModbus, le service plante à la fin de l\'arrêt.','2018-01-23 16:25:58',0),(422,227,'Issue',333,'Hi Michel,\r\n\r\nOk.Let us have a call on this on Friday as you suggested.\r\nAnd when you have fixed this please inform us even before the call.\r\n\r\nMerci,\r\n\r\nJason','2018-01-24 00:23:35',0),(423,232,'Issue',1,'Bonjour,\r\nCette fonctionnalité est maintenant disponible dans la version 1.0.5.2.\r\nAjoutez le paramètre ProjectFolder=\"[FULL_PATH]\" dans le fichier principal de configuraiton.\r\n\r\nCordialement\r\nMichel','2018-01-24 23:00:47',0),(424,232,'Issue',1,'','2018-01-24 23:01:08',0),(425,227,'Issue',333,'Jason Noh wrote:\r\n> Hi Michel,\r\n> \r\n> Ok.Let us have a call on this on Friday as you suggested.\r\n> And when you have fixed this please inform us even before the call.\r\n> \r\n> Merci,\r\n> \r\n> Jason\r\n\r\nHi Michel\r\nAny progress regarding the segment fault yet?\r\nThanks,\r\n\r\nJason \r\n\r\n\r\n','2018-01-25 05:39:15',0),(426,222,'Issue',333,'Hi Michel\r\n\r\nWe see that you have uploaded the updated codes of the OpenOpcUa.\r\nWe tested the code with the updated Terminal test client only to see the same segement fault error.\r\nCan you tell us what is uppdated?\r\n\r\nMerci,\r\n\r\nJason ','2018-01-25 07:18:19',0),(427,222,'Issue',333,'Jason Noh wrote:\r\n> Hi Michel\r\n> \r\n> We see that you have uploaded the updated codes of the OpenOpcUa.\r\n> We tested the code with the updated Terminal test client only to see the same segement fault error.\r\n> Can you tell us what is uppdated?\r\n> \r\n> Merci,\r\n> \r\n> Jason\r\n\r\nA correction; the frequency of core dump is quite reduced.\r\nBut sadly it still happens.\r\n\r\nMerci,\r\n\r\nJason ','2018-01-25 10:02:06',0),(428,222,'Issue',1,'Hi,\r\nI\'m currently trying to reproduce on Windows\r\nI let you know in couple of min\r\n\r\nRegards\r\nMichel','2018-01-25 10:04:16',0),(429,222,'Issue',1,'Hello Jason,\r\nI run your code on windows without any error.\r\nI will try on Linux\r\n\r\nRegards\r\nMichel\r\n','2018-01-25 10:57:58',0),(430,222,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello Jason,\r\n> I run your code on windows without any error.\r\n> I will try on Linux\r\n> \r\n> Regards\r\n> Michel\r\n\r\nMichel,\r\n\r\nYou mean with the updated code base you put on the File section?\r\nWe are using the same code and if you run the test code several times, you would see.\r\nBut as I said, the number of segment fault occurance certainly reduced.\r\n\r\nMerci,\r\n\r\nJason ','2018-01-25 11:01:35',0),(431,204,'Issue',1,'Hello,\r\ncan you review the attached file and proceed.\r\n\r\nKind regards\r\nMichel','2018-01-26 10:18:10',0),(432,222,'Issue',333,'Michel,\r\n\r\nDo us a favor and please let us know the changes you made in the code so that we could follow it up ourselves.\r\nAnd let me remind you that clear fix or remediation of the Byte Ordering is still pending.\r\n\r\nI remember that you informing me in one of the initial emails we exchanged that the client lib support quite an extensive array of facets;\r\n\"This is the OPC UA Certified Stack.\r\nFacet name\r\n• Core Client Facet\r\n• Base Client Behaviour Facet\r\n• Discovery Client Behaviour Facet\r\n• AddressSpace Lookup Client Facet\r\n• Entry-Level Support Client Facet\r\n• Entry-Level Support Client Facet\r\n• Documentation - Client.\r\n• Attribute Read Client Facet (all mandatory) \r\no Attribute Client Read Complex\r\n• Attribute Write Client Face\r\n• DataChange Subscriber Client Facet\r\n• DataAccess Client Facet\r\n• UA-TCP UA-SC UA Binary\r\n• Attribute Client Historical Facet\r\n• Historical Access Client Browse\r\n• Historical Access Client Read Raw\r\n• User Token Anonymous Facet\r\n• User Token X509\r\n• User Token User/Password\r\n• Method Client Facet\r\n• Node Management Client Face\r\n• Advanced Type Programming Client Facet\r\n• Diagnostic Client Facet\r\n\r\n\r\nWe need to move on.beyond connection and simple tag reading.\r\n\r\n\r\n\r\nLet me take another approach and ask question;\r\ndo you have any client who has tried your client lib so far?\r\nAre we the first one?\r\n\r\n\r\nMerci\r\n\r\nJason \r\n\r\n\r\n ','2018-01-26 10:37:49',0),(433,222,'Issue',1,'Hello,\r\nEven if the server is more my first concern. You are far to be the first one on the client side.\r\nThe client library is used in more than 50 real installation. Mainly on Windows and X86 Linux.\r\nSo your PPC is a first one.\r\n\r\nRegards\r\nMichel','2018-01-26 10:44:50',0),(434,222,'Issue',1,'Here is the sample, running on my debian without any problem.\r\nNo segfault, just the subscribe value coming from the server it subscribe to.\r\nThe subscribe node is currenttime i=2258.\r\n\r\nRegards\r\nMichel\r\n','2018-01-26 11:01:13',0),(435,222,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello,\r\n> Even if the server is more my first concern. You are far to be the first one on the client side.\r\n> The client library is used in more than 50 real installation. Mainly on Windows and X86 Linux.\r\n> So your PPC is a first one.\r\n> \r\n> Regards\r\n> Michel\r\n\r\n\r\nThanks Michel\r\n\r\nPoint us to the right direction and we will do further testings and let\'s make a PPC port of OpenOpcUa.\r\nThanks,\r\n\r\nJason ','2018-01-26 11:32:42',0),(436,222,'Issue',333,'Michel Condemine Admin wrote:\r\n> Here is the sample, running on my debian without any problem.\r\n> No segfault, just the subscribe value coming from the server it subscribe to.\r\n> The subscribe node is currenttime i=2258.\r\n> \r\n> Regards\r\n> Michel\r\n\r\nMerci Michel.\r\nIt\'s late on Friday here.\r\nLet us give it a spin 1st thing Monday morning.\r\n\r\nJason ','2018-01-26 11:33:55',0),(437,224,'Issue',1,'Bonjour,\r\nj\'ai obtenu la réponse de votre R&D et je peux enfin traiter les StateInformation.\r\nIl reste maintenant a exploiter ces données.\r\nPour ADP nous avons besoin de ALM_GEN, DRG_GEN qui viennent sans doute de but 0 et 1.\r\nSur les 22 bits exploitables cela n\'en fait que deux d\'utilisé. \r\nQue peux ton faire des 20 autres ?\r\nAuriez vous plus d\'information sur la sémantique des ces points ?\r\nCordialement\r\nMichel','2018-01-26 13:22:42',0),(438,224,'Issue',328,'Nous n\'avons besoin que des bits 0;1;7;8 \r\nLes autres bits n\'ont pas d\'utilité pour notre application.\r\n\r\ncordialement.\r\n\r\nNorbert.','2018-01-26 17:40:31',0),(439,233,'Issue',1,'Bonjour,\r\nje vous remercie pour ce document. \r\nL\'extraction depuis les EventLogData ne sera possible que s\'ils sont générés par les centrales.\r\nIl me semble que l\'utilisation des Event, donc des groupes offres une meilleure chance de résultat.\r\nJe vais essayer d\'implémenter les deux. Vous ferez le tests.\r\n\r\nCordialement\r\nMichel\r\n','2018-01-28 17:06:36',0),(440,233,'Issue',328,'','2018-01-28 17:10:35',0),(441,233,'Issue',328,'Bonjour,\r\n\r\nla centrale est normalement configurée pour envoyer les events log data vers le serveur.\r\nLe problème c\'est que par exemple pour DFT_POS_ATT et POS_ATT c\'est le même groupe (1000) qui génère les 2 événements, si vraiment les event log data ne sont pas exploitable il faudra alors dans ce cas interpréter l\'état du POS_ATT (comme expliqué dans mon email de vendredi).\r\n\r\nJe serai Lundi à Rungis sur la maquette \"recette usine\", si vous avez déjà une évolution d\'ici là, n\'hésitez pas à me la faire parvenir.\r\n\r\nBien cordialement.\r\n\r\nNorbert','2018-01-28 17:25:04',0),(442,223,'Issue',328,'Cet issue est toujours en cours ?\r\nsi oui, quels sont les autres valeurs de l\'adresse: Channel, Point Category et Point Number ?','2018-01-28 17:34:26',0),(443,150,'Issue',328,'Voir issue 224','2018-01-28 17:35:51',0),(444,233,'Issue',1,'L\'utilisation des groupes doit être unique.\r\ndans votre proposition les groupes 1000, 1004 et 1036 sont utilisés pour coder deux informations différentes.\r\nCe n\'est donc pas utilisable. Chaque groupe doit être associé à une information unique.\r\n- ASS>DFT_POS_ATTENTE 1004\r\n- ASS>DFT_POS_SECU 1000\r\n- ASS>POS_SECU 1000\r\n- ASS>POS_ATTENTE 1004\r\n- ZS>DFT_POS_ATTENTE 1036\r\n- ZS>POS_ATTENTE 1036\r\nPar ailleurs veuillez faire correspondre les libellés au libellés ADP.\r\n\r\nCordialement\r\nMichel','2018-01-29 01:03:03',0),(445,222,'Issue',333,'Michel,\r\n\r\nWe looked at your new \"fixed\" code and it appears that you have updated the client library.\r\nCould you share with us the updated/fixed lib codes so that we could build them ourselves?\r\n\r\nWe will test your updated code to see if SegFault is fixed and get back to you later,\r\n\r\nMerci,\r\n\r\nJason ','2018-01-29 05:04:46',0),(446,222,'Issue',336,'Jason Noh wrote:\r\n> Michel,\r\n> \r\n> We looked at your new \"fixed\" code and it appears that you have updated the client library.\r\n> Could you share with us the updated/fixed lib codes so that we could build them ourselves?\r\n> \r\n> We will test your updated code to see if SegFault is fixed and get back to you later,\r\n> \r\n> Merci,\r\n> \r\n> Jason\r\n\r\n\r\n\r\nMichel, \r\n\r\ni have tested the attachment.\r\n\r\nhowever, the OpenOpenUa Shared Library you built is linked to ssl@0.9.8.\r\nso I can not create terminal client.\r\n\r\ndid you change a cmake script?\r\nwould you give me the changed build script and full source?\r\n\r\nMerci,\r\n\r\nkyucheol\r\n\r\n\r\n','2018-01-29 06:56:21',0),(447,235,'Issue',1,'','2018-01-29 17:40:51',0),(448,204,'Issue',333,'Michel,\r\n\r\nI think we need to have a call where I would join so that we could get to the bottom of this;\r\nwhat we are looking for from you is not a stopgap but a reliable, permanent fix where the changes we or you made in response to some issues are fully regression-tested and well integrated into the code base.\r\nI believe as a library builder, you yourself is interested in solid reliable fix, rather than quick, temporary fix.\r\nI have seen my own share of quick fix causing unexpected issues at the wrong time in the wrong places.\r\n\r\n\r\nNow with that said, I must say that I am getting a bit uneasy with the recent exchanges in regard to the SegFault and Byte Ordering issue.\r\nI assume that you have other sponsors to take care of and other important businesses to attend to, but these are fundamental lib issues that would impact other sponsors and clients of your code base.\r\n\r\n\r\nPlease help us test/fix the code and proceed with our intended OPC UA Client development for our client.\r\n\r\nPlease let me know when you are available this week for a session.\r\n\r\nMerci,\r\n\r\nJason ','2018-01-30 00:31:59',0),(449,204,'Issue',1,'Hello Jason,\r\nWe can have a quick call right now if you want https://global.gotomeeting.com/join/825648541. \r\nI understand your concern and maybe there are a misunderstanding on the codebase i provided to you.\r\nI sent you several version of the 1.0.5.2. Each of them was a beta of the 1.0.5.2. Those preliminary version was shared by a couple of sponsor. But until last week the official OpenOpcUa Codebase was 1.0.4.7. I was thinking that you can use the beta and help in make the release more stable and tested.\r\nThe PPC target cause specific issues seg-fault and byte-ordering. the code is little-endian first.\r\nSo i propose the following plan \r\n- First let fix the seg fault.\r\n- Second let fix the byte ordering.\r\nI though we made progress on the Seg-Fault and i understand your byte-ordering issue. I will work on it.\r\n\r\nJust to finish. I have several sponsors but all are equaly important. Just first come are first serve.\r\n\r\nYou can count on my support. I will never let you down.\r\n\r\nKind regards\r\nMichel','2018-01-30 09:14:30',0),(450,204,'Issue',335,'Michel \r\nare you suggesting we do a call now? \r\nI have just walked out if the office for meetings outside.\r\nLet us schdule in advance so that I could clear block of time to get to the bottom of the issue.\r\n\r\nThanks\r\n\r\nJason','2018-01-30 10:03:19',0),(451,204,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello Jason,\r\n> We can have a quick call right now if you want https://global.gotomeeting.com/join/825648541. \r\n> I understand your concern and maybe there are a misunderstanding on the codebase i provided to you.\r\n> I sent you several version of the 1.0.5.2. Each of them was a beta of the 1.0.5.2. Those preliminary version was shared by a couple of sponsor. But until last week the official OpenOpcUa Codebase was 1.0.4.7. I was thinking that you can use the beta and help in make the release more stable and tested.\r\n\r\nMichel,\r\n\r\nThanks but if I remember correctly, you advised us that as lastest version has quite an improvement from the 1.0.4.7, that we start with 1.0.5.2.\r\nAnyway, we are willing to work with lastest version and help you make it stable.\r\nAnd let me emphasis, when you share the fix, please share with us the code and a brief ReadMe as well so that we could build it and test it on ourselves as well.\r\nThe laste SegFault fix, we can\'t even run it. It causes SegFualt right from the start.\r\n\r\n\r\n> The PPC target cause specific issues seg-fault and byte-ordering. the code is little-endian first.\r\n> So i propose the following plan \r\n> - First let fix the seg fault.\r\n> - Second let fix the byte ordering.\r\n> I though we made progress on the Seg-Fault and i understand your byte-ordering issue. I will work on it.\r\n\r\nSound good.\r\nPlease share with us the fixed code with brief readme describing what\'s fixed.\r\n \r\n> Just to finish. I have several sponsors but all are equaly important. Just first come are first serve.\r\n> You can count on my support. I will never let you down.\r\n\r\nNo doubt about it.\r\nIt\'s just that we are running out of time on our end.\r\n\r\nMerci,\r\n\r\nJason \r\n\r\n> \r\n> Kind regards\r\n> Michel\r\n\r\n','2018-01-31 01:31:09',0),(452,204,'Issue',333,'Michel,\r\n\r\nPlease do share the code that you said you fixed the Seg Fault;\r\nI am still waiting for it.\r\nThe libs you shared does NOT work on our end.\r\nGive us the code and we will diff what\'s different/changed and build it ourselves.\r\n\r\nMerci,\r\n\r\n\r\nJason ','2018-01-31 13:48:47',0),(453,205,'Issue',1,'Terminée','2018-02-01 09:32:46',0),(454,201,'Issue',1,'','2018-02-01 09:33:22',0),(455,198,'Issue',1,'','2018-02-01 09:33:52',0),(456,204,'Issue',333,'Jason Noh wrote:\r\n> Michel,\r\n> \r\n> Please do share the code that you said you fixed the Seg Fault;\r\n> I am still waiting for it.\r\n> The libs you shared does NOT work on our end.\r\n> Give us the code and we will diff what\'s different/changed and build it ourselves.\r\n> \r\n> Merci,\r\n> \r\n> \r\n> Jason\r\n\r\nMichel,\r\n\r\nCan you share the your latest SegFault-fixed code with us?\r\n\r\nMerci,\r\n\r\nJason ','2018-02-01 10:33:22',0),(457,204,'Issue',1,'Jason,there are a confusion here.\nThe code that cause issue was the client itself and not the library.\nI didn\'t change anything in the library just build the TerminalClient you change and make it work on the Debian.\nAre you available tomorow morning 9am for a call ?\nhttps://global.gotomeeting.com/join/843217333 \nBTW, the code you asked was posted on january 26 here :http://www.openopcua.org/redmine/attachments/643/OpenOpcUaTerminalClient_fixRequired.zip\nRegards\nMichel \n','2018-02-01 12:00:47',0),(458,204,'Issue',333,'Michel,\n\nOK so let me get this.\nYou did not change any code in the library and just built the TerminalClstient we modified for testing.\nAnd you made the the client work on the Debian? (we noticed that you downgraded the OpenSSL lib from ver 1.0.0. to 0.9.8) \n\nSo tell us what you did to make the client to work on Debian without changing the code?\nOr to put it differently, what is it that you did to make it work?\n*FYI, on our end, your so-called fixed TerminalClient does NOT work*. I told you that already in my previous post.\nThat is why I am asking what is the changes you make, if not in code, in run time environment.\nHow can you expect us to verify if the issue is fixed without telling us what to change or simple \"readme first\" type guide?\nWe are not mind readers you know? This is really frustrating.\n\n\nNow with that said, you mean 9AM tomorrow France time? That is 6PM for us tomorrow.\nI will be be there. And please come to the meeting prepared; so far my impression is that you are shooting off your belt not making any preparation in advance. Please prepare some \"readme first type doc\" for tomorrow so that there would not be any more confusions from now on.\n\nAs I repeatedly pointed out, we are running out of time.. no that\'s misstatement; we are already behind our schedule still trying to make subscription of OPC tags to work correctly... Long way to go.\n\nTalk to you tomorrow,\n\nMerci,\n\nJason \n\n','2018-02-01 12:53:05',0),(459,204,'Issue',1,'Let\'s focus on one point.\r\nThe so called terminal client works. The issue was just to build your version of it.\r\nSo,I just fixed the CMake to make it works. \r\n\r\nIs that clear ?\r\nRegards\r\nMichel','2018-02-01 15:04:19',0),(460,204,'Issue',333,'Michel,\r\n\r\nLet me run the diff on CMake this morning when I get to the office.\r\nAnd again please from this time on, share the changelist or readme when you share the code or fix.\r\n\r\nTalk to you tonight\r\n\r\nMerci,\r\n\r\nJason\r\n\r\n','2018-02-01 21:22:40',0),(461,206,'Issue',1,'','2018-02-01 23:02:41',0),(462,237,'Issue',1,'Hello,\r\nI will release a new codebase. \r\nI spent couple of days working on the client API.\r\nThe new version contains a lot of changes.\r\nSo my advise is to not waste times on the previous deliverable\r\n\r\nRegards\r\nMichel','2018-02-07 13:11:54',0),(463,237,'Issue',1,'','2018-02-07 13:12:09',0),(464,237,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello,\r\n> I will release a new codebase. \r\n> I spent couple of days working on the client API.\r\n> The new version contains a lot of changes.\r\n> So my advise is to not waste times on the previous deliverable\r\n> \r\n> Regards\r\n> Michel\r\n\r\nThanks Michel.\r\nCan you tell us when you think you would be able to release the new code base?\r\n\r\nMerci,\r\n\r\nJason ','2018-02-07 13:39:51',0),(465,237,'Issue',1,'Hello,\r\nthe code and test are finish on Windows.Next step are :\r\n1- Build on Linux\r\n2- Test on Linux\r\n3- Package\r\n4- Deliver \r\n\r\nSo i wish to release it for our next call on Friday. \r\nIn the case everything is not ready Friday morning we can finish together during the call.\r\n\r\nRegards\r\nMichel','2018-02-07 13:45:44',0),(466,237,'Issue',333,'Great!\r\nLooking forward to it.\r\n\r\nMerci,\r\n\r\nJason ','2018-02-07 13:50:22',0),(467,231,'Issue',254,'','2018-02-08 15:54:36',0),(468,237,'Issue',1,'Hello,\r\nI just posted the new codebase Ver 1.0.5.3 Beta01.\r\nI tested both Server, Client API. They are working fine on Windows 10 and Linux debian.\r\nThe client was tested with your version of the TerminalClient. \r\nWill demonstrate during the next morning call. So in a couple of hours now.\r\nRegards\r\nMichel\r\n','2018-02-08 21:19:16',0),(469,222,'Issue',1,'','2018-02-08 21:19:43',0),(470,227,'Issue',1,'','2018-02-08 21:20:15',0),(471,239,'Issue',1,'','2018-02-09 09:12:04',0),(472,237,'Issue',1,'','2018-02-09 09:13:51',0),(473,199,'Issue',1,'','2018-02-09 09:16:10',0),(474,203,'Issue',1,'','2018-02-09 09:17:08',0),(475,222,'Issue',1,'','2018-02-09 09:18:30',0),(476,238,'Issue',1,'','2018-02-09 09:18:46',0),(477,222,'Issue',336,'Michel\n\nI have encountered exceptions while running TerminalClient built from OpenOpcUa_1_0_5_3 source without modifications. Please find screenshots attached.\n\none more thing.\ncould you tell me about your build environments such as ubuntu linux version and gcc version?\n\n\nMerci\n\nkyucheol','2018-02-12 06:49:48',0),(478,222,'Issue',1,'Replace line 194 OpenOpcUa_AutoConnectMecanismState(OpcUa_True); by OpenOpcUa_AutoConnectMecanismState(OpcUa_False);\r\nThen built and run it again?\r\n','2018-02-12 09:33:05',0),(479,222,'Issue',336,'Michel \r\n\r\nI got same result regardless of OpenOpcUa_AutoConnectMecanismState value.\r\n\r\nMerci \r\n\r\nkyucheol\r\n','2018-02-12 09:49:34',0),(480,222,'Issue',1,'Can you clarify the context of the crash ?\r\nIs it everytime you run the TerminalClient ?\r\nIs it more often ?\r\nYour screenshot show both after the last iteration 5.\r\nJust to be sure. Can you try with a other server running remoty on a Windows machine ?\r\n\r\nRegards\r\nMichel\r\n','2018-02-12 10:51:12',0),(481,222,'Issue',336,'Michel\r\n\r\nCan you clarify the context of the crash ?\r\n> we just run a terminal client without modify.\r\nIs it everytime you run the TerminalClient ?\r\n> no\r\nIs it more often ?\r\n> seems a bit less.\r\nYour screenshot show both after the last iteration 5.\r\n> no, we ran 10 iterations.\r\nJust to be sure. Can you try with a other server running remoty on a Windows machine ?\r\n> yes, we are aready test on two different windows machines. \r\n\r\nMerci \r\nkyucheol\r\n','2018-02-12 11:05:56',0),(482,222,'Issue',1,'There are only 5 iterations in the Terminal client i sent.\r\nfor( int i = 0 ; i < 5 ; i++ ) line 239\r\n\r\nJust download .Net client from the OPC Foundation website\r\nhttps://opcfoundation.org/developer-tools/developer-kits-unified-architecture/sample-applications/\r\nThen setup a remove connection and let me know\r\n\r\nRegards\r\nMichel','2018-02-12 11:13:32',0),(483,222,'Issue',336,'Michel\r\n\r\nyou are correct.\r\n\r\nit happens within 5 iterations.\r\nbut it\'s not always\r\nso we just increased it to 10 for debugging.\r\n\r\nand we don\'t have account to download.\r\n\r\ni wonder if you could upload it here?\r\n\r\nmerci\r\nkyucheol\r\n\r\n\r\n\r\n','2018-02-12 11:26:13',0),(484,222,'Issue',336,'Michel\r\n\r\ni installed a program you uploaded.\r\nand test.\r\n\r\nclient crashed. \r\nand\r\non some interations we are not getting published data print out.\r\n\r\nplease find screenshots attached.\r\n\r\nmerci\r\nKyucheol','2018-02-12 12:20:26',0),(485,222,'Issue',333,'Michel Condemine Admin wrote:\r\n> There are only 5 iterations in the Terminal client i sent.\r\n> for( int i = 0 ; i < 5 ; i++ ) line 239\r\n> \r\n> Just download .Net client from the OPC Foundation website\r\n> https://opcfoundation.org/developer-tools/developer-kits-unified-architecture/sample-applications/\r\n> Then setup a remove connection and let me know\r\n> \r\n> Regards\r\n> Michel\r\n\r\nMichel,\r\n\r\nJust out of curiosity, is there any reason why you seem to care about the number of iterations?\r\nFrom my perspective, the number of iterations - given the correct parameters to the client lib - must not affect its behavior.\r\nIf you agree, please run the test with sat 50 iterations on our end before sharing the code with us.\r\nNeedless to say, I must insist that you assign high priority to resolving this issue for us.\r\n\r\nAnd as I requested in the first test, show us how to stop/pause/resume/delete the subscription correctly.\r\n\r\n\r\nMerci,\r\n\r\nJason','2018-02-12 14:07:14',0),(486,222,'Issue',1,'Hello Jason\r\nAs we discuss last night. I ran a 2500 loop. Unfortunatly my PC turn off by itself during the night.\r\nBut before i went to bed i got your crash after 447 loop.\r\nThe crash happen on \"tpp.c:63: __pthread_tpp_change_priority.....\" \r\nSo, I was re-running with gdb when the pc turn-off\r\nI need the callstack in order to investigate the problem. I just restart the test.\r\nI Google a little bit and i didn\'t find any relevant informations.\r\nIt could be something purely Linux related. I need first to be sure of that. So i will run the same test on a Windows machine.\r\nRegards\r\nMichel','2018-02-13 09:55:43',0),(487,222,'Issue',1,'','2018-02-13 09:56:05',0),(488,241,'Issue',333,'','2018-02-13 11:27:32',0),(489,241,'Issue',1,'Hello, \r\nthank you for your feedback.\r\n0x80250000 means BadSessionIdInvalid \r\nI integrate the strExtension and FileName missing initialization.\r\nRegarding the OpcUa_Int64 replacement. I need to consider this on several different perspective. So it cannot be integrated in short term.\r\nFinally,\r\nYou delete a mutex in StopMonitoredItemsNotificationThread. You have to argue on this. I not agree. We have to wait the proper moment to delete the MonitoredItemsNotificationThread.\r\nYour last change in OpcUa_Thread_Delete make me nervous. But i\'m considering the possibility of an issue here. \r\nLet me drive some tests..\r\n\r\nregards\r\nMichel','2018-02-13 11:54:55',0),(490,241,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello, \r\n> thank you for your feedback.\r\n> 0x80250000 means BadSessionIdInvalid \r\n> I integrate the strExtension and FileName missing initialization.\r\n> Regarding the OpcUa_Int64 replacement. I need to consider this on several different perspective. So it cannot be integrated in short term.\r\n> Finally,\r\n> You delete a mutex in StopMonitoredItemsNotificationThread. You have to argue on this. I not agree. We have to wait the proper moment to delete the MonitoredItemsNotificationThread.\r\n> Your last change in OpcUa_Thread_Delete make me nervous. But i\'m considering the possibility of an issue here. \r\n> Let me drive some tests..\r\n> \r\n> regards\r\n> Michel\r\n\r\n\r\nMichel,\r\n\r\nThanks and as I wrote, the changes are for our review. \r\nWe do not have the whole picture and based on the limited testing we did, we are making suggestions.\r\nThe final decision to pull the changes in is surely up to you.\r\n\r\nMerci,\r\n\r\nJason ','2018-02-13 12:10:12',0),(491,222,'Issue',1,'Got the crash.\r\nHere the callstack to keep on track\r\n<pre>\r\n#1 0xb7a59781 in raise () from /lib/i686/cmov/libc.so.6\r\n#2 0xb7a5cbb2 in abort () from /lib/i686/cmov/libc.so.6\r\n#3 0xb7a8fe75 in ?? () from /lib/i686/cmov/libc.so.6\r\n#4 0xb7a99f71 in ?? () from /lib/i686/cmov/libc.so.6\r\n#5 0xb7a9cd75 in ?? () from /lib/i686/cmov/libc.so.6\r\n#6 0xb7a9e97c in malloc () from /lib/i686/cmov/libc.so.6\r\n#7 0xb7a8acef in ?? () from /lib/i686/cmov/libc.so.6\r\n#8 0xb7a8adbc in fopen () from /lib/i686/cmov/libc.so.6\r\n#9 0xb7df87ca in OpcUa_Trace_Internal (pProxyStubConfiguration=0x804c088, a_sMessage=0xb7e56020 \"KeepAliveThread stopped properly\\n\")\r\n at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaStackV1/source/opcua_trace.c:322\r\n#10 0xb7df8684 in OpcUa_Trace (pProxyStubConfiguration=0x804c088, a_uTraceLevel=512, a_sFormat=0xb7fcd280 \"KeepAliveThread stopped properly\\n\")\r\n at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaStackV1/source/opcua_trace.c:280\r\n#11 0xb7fa9313 in OpenOpcUa::UACoreClient::CSubscriptionClient::StopKeepAliveThread (this=0x806f100) at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/SubscriptionClient.cpp:1436\r\n#12 0xb7fa5bb0 in ~CSubscriptionClient (this=0x806f100, __in_chrg=<value optimized out>) at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/SubscriptionClient.cpp:93\r\n#13 0xb7fb198c in OpenOpcUa::UACoreClient::CSessionClient::RemoveSubscription (this=0x8059fb0, pSubscription=0x806f100)\r\n at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/ClientSession.cpp:2372\r\n#14 0xb7fafed7 in OpenOpcUa::UACoreClient::CSessionClient::DeleteSubscription (this=0x8059fb0, pSubscription=0x806f100, bForceRemove=1 \'\\001\')\r\n at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/ClientSession.cpp:1529\r\n#15 0xb7fb9d26 in OpenOpcUa_DeleteSubscription (hApplication=0x804c008, hSession=0x8059fb0, hSubscription=0x806f100)\r\n at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp:874\r\n#16 0x0804a02a in main (argc=1, argv=0xbffff444) at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaClientSdk/OpenOpcUaTerminalClient/source/main.c:273\r\n</pre>\r\nThe keepalive mecanism is something new in the client lib. \r\nRegards\r\nMichel','2018-02-13 13:56:46',0),(492,222,'Issue',1,'Just a not for information and logging.\r\nThe Issue is Linux only Pthread related.\r\nIt occurs on mutex handling.\r\nBelow a callstack \r\n<pre>\r\n#0 0xb7fe2424 in __kernel_vsyscall ()\r\n#1 0xb7a59781 in raise () from /lib/i686/cmov/libc.so.6\r\n#2 0xb7a5cbb2 in abort () from /lib/i686/cmov/libc.so.6\r\n#3 0xb7a528e8 in __assert_fail () from /lib/i686/cmov/libc.so.6\r\n#4 0xb7d2bf0e in pthread_mutex_lock () from /lib/i686/cmov/libpthread.so.0\r\n#5 0xb7e17d7a in OpcUa_Mutex_Lock (hMutex=0x8068710)\r\n at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaStackV1/source/opcua_core.c:228\r\n#6 0xb7d8828f in InternalThreadMain (a_Thread=0x80733a8)\r\n at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaStackV1/source/opcua_thread.c:101\r\n#7 0xb7de792a in pthread_start (args=0x8072a20)\r\n at /home/debian/Desktop/OpenOpcUa_1_0_5_3/OpenOpcUaStackV1/source/opcua_p_thread.c:105\r\n#8 0xb7d29955 in start_thread () from /lib/i686/cmov/libpthread.so.0\r\n#9 0xb7afb1de in clone () from /lib/i686/cmov/libc.so.6\r\n</pre>\r\nNeed more investigation.\r\n@SDPLEX: Can you provide me more callstack\r\n\r\nRegards\r\nMichel','2018-02-13 13:57:21',0),(493,222,'Issue',333,'Michel Condemine Admin wrote:\n> Just a not for information and logging.\n> The Issue is Linux only Pthread related.\n> It occurs on mutex handling.\n> Below a callstack \n> [...]\n> Need more investigation.\n> @SDPLEX: Can you provide me more callstack\n> \n> Regards\n> Michel\n\nGreat.\nWe are making progress.\nAs the crash leaves log entries of \"pthread....\" we were suspecting of it.\n\nWe will share the coredump from our end as well.\n\nMerci,\n\nJason ','2018-02-13 17:38:02',0),(494,222,'Issue',1,'Hello,\r\ngood news this morning.\r\nI ran a 2500 loop. on Windows and Linux without any problem. (See attached screen shot and log)\r\nI will change the code to add a create/close session in the loop.\r\nThe rerun the same 2500 loop.\r\nIf this succeed i will deliver the 1.0.5.3 RC1\r\nFeel free to ask for more information\r\nRegards\r\nMichel','2018-02-14 09:22:33',0),(495,222,'Issue',333,'Hi Michel,\r\n\r\nThanks for the update.\r\nWe are having our fingers crossed.\r\n\r\nLooking forward to the updates.\r\n\r\nMerci,\r\n\r\nJason ','2018-02-14 16:19:47',0),(496,243,'Issue',1,'Bonjour,\r\nIl y a 4 questions. \r\nJe préfère que vous ouvriez 1 ticket par question.\r\nCela me permettra de répondre avec plus de précision\r\n\r\nCordialement\r\nMichel Condemine','2018-02-16 10:20:48',0),(497,244,'Issue',1,'Bonjour,\r\nsi les variables sont ReadOnly dans le modèle elles ne peuvent être changées. \r\nVous pouvez peut-être passer par le Vpi pour y définir un mode \"Simulation\". Dans ce cas vous pourrez changer les valeurs depuis le Vpi. \r\nMais jamais depuis un client sans modifier le modèle lui-même. \r\n\r\ncordialement\r\nMichel Condemine\r\n ','2018-02-16 10:44:47',0),(498,243,'Issue',348,'Questions rapportées individuellement.','2018-02-16 10:45:24',0),(499,245,'Issue',1,'Bonjour,\r\nIl s\'agit d\'une demande, insistante, d\'ADP. Le node LIBELLE est utilisé par le SIG.\r\nIl est redondant du DisplayName.... Une longue histoire\r\ncordialement\r\nMichel Condemine','2018-02-16 10:46:32',0),(500,246,'Issue',1,'Les arrêts pompier seront ajoutés ASAP.\r\nLes autres changement sont déjà réalisés.\r\ncordialement\r\nMichel Condemine','2018-02-16 10:47:40',0),(501,247,'Issue',1,'Bonjour,\r\nl\'espace d\'adressage OPC UA est un maillage.\r\nCependant vous retrouverez ce genre d\'organisation dans le serveur OPC UA que vous avez à réaliser.\r\nvoir image ci-jointe\r\n\r\ncordialement\r\nMichel Condemine\r\n','2018-02-16 10:51:56',0),(502,244,'Issue',1,'','2018-02-16 10:52:21',0),(503,251,'Issue',333,'kyu cheol jeon wrote:\r\n> Michael\r\n> \r\n> It looks like the following code block is tied to 32-bit compilation. \r\n> We\'d like to make it work in 64-bit build but we\'re having trouble following the code. \r\n> So I\'d like to ask you to explain the logic behind the code so that we can port it to 64-bit.\r\n> \r\n> OpenOpcUaClientSdk\\OpenOpcUaClientLib\\source\\stdafx.cpp:319~392\r\n> [...]\r\n> \r\n> Thanks, \r\n> kyucheol\r\n\r\n\r\nMichel,\r\n\r\nAs we make headway expanding the test codes to learn the APIs, we run into some issues;\r\nwe will share our findings and observations as them come.\r\n\r\nWith regards 64-bit support, memory allocations and subsequent data parsing/concat/chopping would have to be reviewed for its validity as well.\r\nAny pointers from you on this would be much appreciated.\r\n\r\nMerci,\r\n\r\nJason ','2018-02-22 07:25:57',0),(504,251,'Issue',1,'Hello,\r\nthis piece of code must remains unchanged for 64bits. It build on 64bits on Windows without any problem.\r\nCan you clarify you issue ?\r\n\r\nRegards\r\nMichel','2018-02-26 14:53:57',0),(505,251,'Issue',1,'','2018-02-26 14:54:27',0),(506,248,'Issue',1,'Can you provide more information ?\r\nWhen AutoConnectMecanismState is activated the Library will try to automaticaly reconnect if the Session goes down.\r\nIn that case the Session Id can change.\r\nI hope it help\r\nRegards\r\nMichel\r\n','2018-02-26 14:57:53',0),(507,249,'Issue',1,'Bonjour,\r\nje vous propose d\'organiser cette 3ème journée en GotoMeeting durant la semaine 10. Jeudi 9 ou vendredi 9\r\n\r\nCordialement\r\nMichel Condemione','2018-02-27 10:55:28',0),(508,250,'Issue',1,'Je ne pense pas que cela pose le moindre problème.','2018-02-27 10:56:42',0),(509,250,'Issue',349,'Merci pour votre réponse.','2018-02-27 13:29:15',0),(510,249,'Issue',349,'Bonjour,\r\n\r\nOk pour jeudi 8 en Gotomeeting.\r\n\r\nCordialement,\r\nVivien Raynal','2018-02-27 13:31:41',0),(511,251,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello,\r\n> this piece of code must remains unchanged for 64bits. It build on 64bits on Windows without any problem.\r\n> Can you clarify you issue ?\r\n> \r\n> Regards\r\n> Michel\r\n\r\n규철님,\r\n\r\n자기는 Windows 64 bit컴파일이 문제가 없다고 코드 수정을 하지 말라는데....\r\n이것 관련 Michel에게 전달해 줄 만한게 있을까요?','2018-02-28 03:24:02',0),(512,251,'Issue',333,'Michel Condemine Admin wrote:\r\n> Hello,\r\n> this piece of code must remains unchanged for 64bits. It build on 64bits on Windows without any problem.\r\n> Can you clarify you issue ?\r\n> \r\n> Regards\r\n> Michel\r\n\r\n\r\nMichel\r\n\r\nHere is further info for you to move on on the issue raised above;\r\n\r\nThe below shows the call stack of the Memory crash.\r\nAnd variable *pVoidResult* is not used and does not even _freed_ ++running the risk of memory leak.\r\n\r\nMemory Crash Call stack : \r\n[Thread debugging using libthread_db enabled]\r\nUsing host libthread_db library \"/lib/x86_64-linux-gnu/libthread_db.so.1\".\r\n\r\nwarning: the debug information found in \"/lib64/ld-2.19.so\" does not match \"/lib64/ld-linux-x86-64.so.2\" (CRC mismatch).\r\n\r\nCore was generated by `bin/linux/Debug_x86_64/ClientTest/ClientTest\'.\r\nProgram terminated with signal SIGSEGV, Segmentation fault.\r\n#0 __memcpy_sse2_unaligned () at ../sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S:33\r\n33 ../sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: No such file or directory.\r\n(gdb) where\r\n#0 __memcpy_sse2_unaligned () at ../sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S:33\r\n#1 0x00007f203eefa868 in OpcUa_P_Memory_MemCpy (pBuffer=0x17e2860, nSizeInBytes=256, pSource=0x13, nCount=256) at /home/kcjeon/work.eff/OpenOpcUa_1_0_5_3_RC2_2_steve/OpenOpcUaStackV1/source/opcua_p_memory.c:113\r\n#2 0x00007f203eef735d in OpcUa_Memory_MemCpy (a_pBuffer=0x17e2860, a_nSizeInBytes=256, a_pSource=0x13, a_nCount=256) at /home/kcjeon/work.eff/OpenOpcUa_1_0_5_3_RC2_2_steve/OpenOpcUaStackV1/source/opcua_memory.c:105\r\n#3 0x00007f203f939519 in InternalExtractString (pValue=0x17e0dcc, pString=0x17e0bd8) at /home/kcjeon/work.eff/OpenOpcUa_1_0_5_3_RC2_2_steve/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/stdafx.cpp:352\r\n#4 0x00007f203f932493 in OpenOpcUa_GetInstanceValue (pSourceNodeId=0x7ffe0b2a9cf0, pDefinition=0x19d1c20, rawValue=..., ppVariantVal=0x7ffe0b2a9cc8)\r\n at /home/kcjeon/work.eff/OpenOpcUa_1_0_5_3_RC2_2_steve/OpenOpcUaClientSdk/OpenOpcUaClientLib/source/OpenOpcUaClientLib.cpp:4215\r\n\r\n \r\n\r\nThe cause of the memory crash above seems to be the following function that populates the Socket Raw data into the structure.\r\n\r\nOpenOpcUaStackV1, opcua_types.c:25562~25587\r\n\r\n/*============================================================================\r\n* OpcUa_ServerStatusDataType_Decode\r\n*===========================================================================*/\r\nOpcUa_StatusCode OpcUa_ServerStatusDataType_Decode(OpcUa_ServerStatusDataType* a_pValue, OpcUa_Decoder* a_pDecoder)\r\n{ \r\n OpcUa_InitializeStatus(OpcUa_Module_Serializer, \"ServerStatusDataType_Decode\");\r\n\r\n OpcUa_ReturnErrorIfArgumentNull(a_pValue);\r\n OpcUa_ReturnErrorIfArgumentNull(a_pDecoder);\r\n\r\n OpcUa_ServerStatusDataType_Initialize(a_pValue);\r\n\r\n OpcUa_Field_Read(DateTime, StartTime);\r\n OpcUa_Field_Read(DateTime, CurrentTime);\r\n OpcUa_Field_ReadEnumerated(OpcUa_ServerState, State);\r\n OpcUa_Field_ReadEncodeable(OpcUa_BuildInfo, BuildInfo);\r\n OpcUa_Field_Read(UInt32, SecondsTillShutdown);\r\n OpcUa_Field_Read(LocalizedText, ShutdownReason);\r\n\r\n OpcUa_ReturnStatusCode;\r\n OpcUa_BeginErrorHandling;\r\n\r\n OpcUa_ServerStatusDataType_Clear(a_pValue);\r\n\r\n OpcUa_FinishErrorHandling;\r\n}\r\n\r\n\r\n\r\nIn the above function, GCC 64bit compiler seems to add 4 bytes for alignment to the structure OpcUa_ServerStatusDataType and \r\nthat addition of 4 Bytes are ignored/not handled in the function causing the memory crash.\r\n \r\nThe following shows the added 4 bytes by the GCC 64bit compiler to the OpcUa_ServerStatusDataTyp as you could follow in the gdb analytics \r\n\r\n\r\nBreakpoint 1, OpcUa_ServerStatusDataType_Decode (a_pValue=0x7ffff0013670, a_pDecoder=0x7ffff0013dc0) at /home/kcjeon/work.eff/OpenOpcUa_1_0_5_3_RC2_2_steve/OpenOpcUaStackV1/source/opcua_types.c:25567\r\n25567 OpcUa_InitializeStatus(OpcUa_Module_Serializer, \"ServerStatusDataType_Decode\");\r\n(gdb) print sizeof(*a_pValue)\r\n$1 = 152\r\n(gdb) ptype a_pValue\r\ntype = struct _OpcUa_ServerStatusDataType {\r\n OpcUa_DateTime StartTime;\r\n OpcUa_DateTime CurrentTime;\r\n OpcUa_ServerState State;\r\n OpcUa_BuildInfo BuildInfo;\r\n OpcUa_UInt32 SecondsTillShutdown;\r\n OpcUa_LocalizedText ShutdownReason;\r\n} *\r\n(gdb) print &(a_pValue->StartTime)\r\n$2 = (OpcUa_DateTime *) 0x7ffff0013670\r\n(gdb) print &(a_pValue->CurrentTime)\r\n$3 = (OpcUa_DateTime *) 0x7ffff0013678\r\n(gdb) print &(a_pValue->State)\r\n$4 = (OpcUa_ServerState *) 0x7ffff0013680\r\n(gdb) print &(a_pValue->BuildInfo)\r\n$5 = (OpcUa_BuildInfo *) 0x7ffff0013688\r\n(gdb) print &(a_pValue->SecondsTillShutdown)\r\n$6 = (OpcUa_UInt32 *) 0x7ffff00136e0\r\n(gdb) print &(a_pValue->ShutdownReason)\r\n$7 = (OpcUa_LocalizedText *) 0x7ffff00136e8\r\n(gdb) ptype a_pValue->State\r\ntype = enum _OpcUa_ServerState {OpcUa_ServerState_Running, OpcUa_ServerState_Failed, OpcUa_ServerState_NoConfiguration, OpcUa_ServerState_Suspended, OpcUa_ServerState_Shutdown, OpcUa_ServerState_Test, OpcUa_ServerState_CommunicationFault,\r\n OpcUa_ServerState_Unknown, _OpcUa_ServerState_MaxEnumerationValue = 2147483647}\r\n(gdb)\r\n\r\n\r\n\r\nIn short, we think the GCC 64bit compiler in the Linux attempting to align the structures cause the size difference of 8 bytes in struct _OpcUa_ServerStatusDataType.State, struct _OpcUa_ServerStatusDataType.BuildInfo and that needs to be handled properly\r\n\r\n\r\n\r\nMerci,\r\n\r\nJason \r\n\r\n\r\n\r\n','2018-03-01 08:05:52',0),(513,248,'Issue',333,'Michel Condemine Admin wrote:\r\n> Can you provide more information ?\r\n> When AutoConnectMecanismState is activated the Library will try to automaticaly reconnect if the Session goes down.\r\n> In that case the Session Id can change.\r\n> I hope it help\r\n> Regards\r\n> Michel\r\n\r\n\r\nMichel,\r\n\r\nIn our code, how could we notified of the SessionID change?\r\nIf Session ID changes all the related structures must be reflected of this change or connection must be re-established?\r\nThis sort of brisk answer does NOT help us at all in the absence of usable technical documentations. \r\nI would expect more of you.\r\n\r\n\r\nAll we have been doing is testing and debugging supposedly widely-used, reliable, OPC Foucndation-compliant lib, \r\nrather than writing our application code for the last 4 months.\r\n\r\nAs I have repeatedly telling you, this not what we were led to believe and signed up for.\r\nI would certainly expect much more than this from you.\r\n\r\n\r\n\r\nJason \r\n','2018-03-01 08:12:02',0),(514,193,'Issue',1,'','2018-03-03 14:44:42',0),(515,251,'Issue',1,'Hello,\r\ni will work on this on monday and let you know\r\nRegards\r\nMichel','2018-03-03 14:49:43',0),(516,248,'Issue',1,'There are no mecanism informing automaticaly that the sessioNId changes . This is a good advice for evolution. I will try to add this for the next deliver. You can also disable the autoconnect mecanism and handled the reconnection in your own code.\r\n','2018-03-03 14:55:23',0),(517,248,'Issue',1,'','2018-03-03 14:56:09',0),(518,251,'Issue',1,'Hello,\r\nI review your code callstack and it seems that you are trying to use OpenOpcUa_GetInstanceValue.\r\nExplain me the context of what you are trying to do. It will be helpfull in order to Guide you.\r\n\r\nSo first, *forget this function*. This API is made to handle a case that you are probably not facing to.\r\n\r\nIf you want to read a node value just use OpenOpcUa_ReadAttributes as demonstrate in the terminalClient sample. But this is better to subscribe to it again it was demonstrate in the sample.\r\nYou tells me that _\"The test we do is ONLY THE NORMAL CASES in limited, controlled environment\"_\r\nSo, Why are you wasting your time with this API ?\r\nThis API is not made for normal case.\r\n\r\nI\'m waiting for you clarification\r\nKind regards\r\nMichel\r\n\r\n\r\n','2018-03-04 15:52:42',0),(519,251,'Issue',333,'Michel Condemine Admin wrote:\n> Hello,\n> I review your code callstack and it seems that you are trying to use OpenOpcUa_GetInstanceValue.\n> Explain me the context of what you are trying to do. It will be helpfull in order to Guide you.\n> \n> So first, *forget this function*. This API is made to handle a case that you are probably not facing to.\n> \n> If you want to read a node value just use OpenOpcUa_ReadAttributes as demonstrate in the terminalClient sample. But this is better to subscribe to it again it was demonstrate in the sample.\n> You tells me that _\"The test we do is ONLY THE NORMAL CASES in limited, controlled environment\"_\n> So, Why are you wasting your time with this API ?\n> This API is not made for normal case.\n> \n> I\'m waiting for you clarification\n> Kind regards\n> Michel\n\nMichel\n\nLet me provide you the context;\n\n* We need to support secure connection, *NOT* anonymous connection; we got to support secure connection at least using user id and password, preferably certificates along with detailed properties of the Server connected for convenience.\n* Once securely connected, we need to provide tag discovery and/or browsing \n* Once tags are browsed, we need to display tag attributes, data type to name one for instance of the tags so that user could decide which tag to read/write and subscribe.\n* And of course with all of the above, we need to manage the life cycle of the connection and tag subscription to ensure the client is reliable and robust such as auto-reconnect, persisting configurations for user convenience. \n\nAll in all, not much more than what you would expect from any client applications to any server.\nBut of course, this is bit more than what your simplistic terminal client demonstrates.\n\n\nNow that that said, we need proper API documentations and/or code tutorials where we could learn the types of APIs and how they are used.\nThankfully we analyzed the QtClient you shared with us and learned that the \"GetInstanceValue\" function is used in tag discovery and gather Server properties.\n\nMichel, please stop being reactive and give us a good working client sample other than QtClient.\nOr show us in code or tutorial how to use client APIs correctly to support *reliably* the above functionalities.\n\nMerci,\n\nJason ','2018-03-05 02:25:57',0),(520,251,'Issue',1,'Hello,\r\nNow that is have concrete question and i understand the context let me close this issue and open 4 new one.\r\nOne for each question.\r\n\r\nRegards\r\nMichel','2018-03-05 09:38:48',0),(521,253,'Issue',1,'Hello,\r\nthank you for this feedback.\r\nI will study it and integrate in \"My way\" in the code base.\r\n\r\nregards\r\nMichel Condemine','2018-03-05 12:04:56',0),(522,233,'Issue',328,'','2018-03-05 13:20:44',0),(523,234,'Issue',328,'','2018-03-05 13:25:27',0),(524,224,'Issue',328,'','2018-03-05 13:26:08',0),(525,223,'Issue',328,'','2018-03-05 18:01:15',0),(526,221,'Issue',328,'','2018-03-05 18:02:09',0),(527,220,'Issue',328,'','2018-03-05 18:02:35',0),(528,219,'Issue',328,'','2018-03-05 18:03:08',0),(529,253,'Issue',1,'Hello,\r\nI\'m studying your diff. The first part line 1-> 180 is almost 100% ok.\r\nBut the part starting from line 186 --> 510 make me nervous.\r\nCan you send me you OpenOpcUaClientLib.cpp. I will made my own diff. The file you post shows it\'s limits.\r\n\r\nRegards\r\nMichel Condemine','2018-03-05 18:03:46',0),(530,256,'Issue',333,'Michel,\r\n\r\nYes we have been analyzing the QtClient code and that certainly helped us get a better grip on the additional APIs on Tag Browsing.\r\nThanks,\r\n\r\n\r\n규철님,\r\n위 코드 보면 Node에 data type도 담고 있네요.\r\nDSLink에 $DataTyep 표현하는 것을 단순히 utility 함수를 통해 Varient를 String으로 변환하는 것 말고 위 것 참조해 봅시다\r\n\r\nJason ','2018-03-05 22:41:20',0),(531,255,'Issue',333,'Yes this code helped us make progress.\r\nThanks\r\n\r\nMichel','2018-03-05 22:44:56',0),(532,256,'Issue',336,'michel\r\n\r\nWe normally read attributes as you suggested. However, since the Value attribute itself may have multiple values, ServerStatus for instance, we call OpenOpcUa_GetInstanceValue to get the list of variants for Value attribute as in OpenOpcUaFlexClient.\r\n\r\nRegards\r\nkyucheol','2018-03-06 02:30:10',0),(533,256,'Issue',333,'kyu cheol jeon wrote:\r\n> michel\r\n> \r\n> We normally read attributes as you suggested. However, since the Value attribute itself may have multiple values, ServerStatus for instance, we call OpenOpcUa_GetInstanceValue to get the list of variants for Value attribute as in OpenOpcUaFlexClient.\r\n> \r\n> Regards\r\n> kyucheol\r\n\r\nMichel,\r\n\r\nAs KC pointed out, we need some further details of the Value attributes and by analyzing the QtClient we realized that function \"OpenOpcUa_GetInstanceValue\" provides more info, hence we used it. And the function with 64 bit compiler, displayed some unexpected issues.\r\nThe underlying questions are 1) how could we obtain most data on the Tag - tag original data type and how to convert the data type going beyond the simple conversion into String, 2) how to fix the 64 bit errors.\r\n\r\nThanks\r\n\r\nJason ','2018-03-06 05:37:11',0),(534,253,'Issue',336,'michel\r\n\r\nI attached the my OpenOpcUaClientLib.cpp \r\n\r\nRegards\r\nkyucheol ','2018-03-06 05:59:03',0),(535,256,'Issue',336,'Michel\r\n\r\nI hava a question.\r\nAre there functions in OpenOpcUa client library to test or check if session and subscription the client is accessing are valid on the connected server?\r\n\r\nRegards\r\nkyucheol','2018-03-06 07:06:24',0),(536,256,'Issue',1,'Hello,\r\nYou can use OpenOpcUa_GetSessions to retrieve the session List and OpenOpcUa_GetSubscriptions to retrieve the list of subscription in a session.\r\nThose functions are working but I need to double check it according to the recent changes.\r\n\r\nRegards\r\nMichel Condemine\r\n','2018-03-06 09:20:29',0),(537,256,'Issue',1,'I tried to separate your question one ticket for each of them.\r\nPlease try to not mixed. It\'s confusing. Beside that you point here something fundamental that you need to understand.\r\nLet me create a news for that\r\n\r\nRegards\r\nMichel Condemine','2018-03-06 09:24:26',0),(538,256,'Issue',333,'Understood Michel.\r\nWe will keep an issue focused with its own thread of q&a.\r\n\r\nRegards,\r\n\r\nJason ','2018-03-06 09:41:29',0),(539,262,'Issue',328,'','2018-03-06 14:49:20',0),(540,236,'Issue',1,'','2018-03-07 00:15:47',0),(541,178,'Issue',1,'','2018-03-07 00:16:18',0),(542,175,'Issue',1,'','2018-03-07 00:16:47',0),(543,265,'Issue',333,'Michel,\n\nI did some reading up on the spec and realized I need to update the query;\n\nCan you show us how to parse out the \"opaque and GUID node identifier type\"?\nWhat we could do for now based on your code tutorials is the following two types : numeric and string identifier type ;\n\n- ns=2;s=MyTemperature\n namespace index 2, string identifier\n\n- i=2045\n namespace index 0, numeric identifier\n\nBut when it comes to GUID and opaque value, we are still a bit lost;\n\n- ns=1;g=09087e75-8e5e-499b-954f-f2a9603db28a\n namespace index 1, GUID identifier\n\n- ns=1;b=M/RbKBsRVkePCePcx24oRA==\'\n namespace index 1, Opaque/ByteString identifier\n\n\nWhile you are at this, could you show us how to configure the Server XML files so that we could add tags with GUID and Opaque data type in the Simulator as well?\n\nThanks,\n\nJason ','2018-03-07 01:50:23',0),(544,153,'Issue',328,'','2018-03-07 11:02:26',0),(545,247,'Issue',1,'','2018-03-08 16:19:32',0),(546,246,'Issue',1,'','2018-03-08 16:20:07',0),(547,245,'Issue',1,'','2018-03-08 16:22:32',0),(548,263,'Issue',333,'Michel,\r\n\r\nAny guidance on the arguments, what are they for and how we could best utilize to support various uses cases?\r\n\r\nThanks,\r\n\r\nJason','2018-03-09 09:42:07',0),(549,265,'Issue',1,'Hellon\r\nIt seems that you are not lost at all.\r\nIf you want to declare an Opaque or a Guid NodeId just do it.\r\nReplace an existing nodeid or create a new node.\r\n<pre>\r\n <UAObject NodeId=\"ns=2;g=345891C7-A2F3-4833-A5D3-569077772AEB\" BrowseName=\"01-A002\" WriteMask=\"00\" UserWriteMask=\"00\" EventNotifier=\"false\">\r\n <DisplayName>01-A002</DisplayName>\r\n <Description>01-A002</Description>\r\n <References>\r\n <Reference ReferenceType=\"i=47\" IsForward=\"false\">ns=2;i=511</Reference>\r\n <Reference ReferenceType=\"i=40\" IsForward=\"true\">ns=4;i=5600</Reference></References></UAObject>\r\n</pre>\r\n\r\nI will make some test on it later this week end.\r\n\r\nRegards\r\nMichel Condemine','2018-03-09 09:44:22',0),(550,265,'Issue',333,'Michel,\r\n\r\nAny idea when we could get the example/tutorial showing how to configure tags with GUID and Opaque node type on the simulator\r\nand access those new node types through the client lib? \r\n\r\nThanks,\r\n\r\nJason ','2018-03-09 09:44:53',0),(551,268,'Issue',1,'Bonjour,\r\nLes fichiers nodeset de types ne sont pas contractuels.\r\nJe vous invite a remplacer EventNotifier=\"false\" par EventNotifier=\"0\" et EventNotifier=\"true\" par EventNotifier=\"1\"\r\n\r\nde plus, votre outil devrait montrer un certain degré de flexibilité et s\'adapter à des erreur mineurs.\r\nCordialement\r\nMichel Condemine','2018-03-09 14:35:55',0),(552,268,'Issue',349,'Bonjour,\r\n\r\nJe vous remercie pour votre réponse rapide. \r\nOn a fait la modif :-)\r\n\r\nBon weekend.\r\n\r\nCordialement,\r\nVivien Raynal','2018-03-09 14:56:27',0),(553,230,'Issue',254,'Je te joins le fichier log du VPI pour aide au diagnostique.\r\n\r\nOn peut voir dedans que le VPI reçoit une écriture de plusieurs valeurs venant de l\'OpenOpcUaCoreServer.\r\n\"|5248| 2018-01-23T09:44:35.296Z VpiWriteValue nb of Node To write : 11\"\r\nC\'est lorsque le VPI reçoit plusieurs valeurs du serveur qu\'il les écrit une par une sans attendre la tempo \"Publish interval\" entre les \"Write Single Register\" Modbus.','2018-03-09 15:07:04',0),(554,269,'Issue',1,'Bonjour Michel. Ces éléments font partie d’un socle commun à tous les projets nommé « OPCUARenault », si il est exporté pour chaque projet il va y avoir des doublons. Ne faudrait-il pas mettre ce paquet dans un projet vide et en faire un export xmi puis nodeset et mettre cet export nodeset en entrée du XMIToNodeSet et excluant le paquet « OPCUARenault » dans les autres exports ? Je ne suis pas sûr que cela soit une bonne méthode car cela peut-être laborieux dans le cas de versions successives. As-tu une meilleure idée ?\r\nCordialement.\r\n','2018-03-09 17:59:17',0),(555,269,'Issue',1,'Il est indispensable que n\'apparaisse dans les fichiers XMI que les classes et instances a convertir.\nLe BatteryCharger ne devrait contenir que les objets qui le concernent. Je propose que tu supprimes les objets inutiles.\n\nCordialement\nMichel','2018-03-09 18:04:18',0),(556,269,'Issue',1,'Bonjour Luc,\r\nje comprends ta proposition qui revient a créer un NodeSet pour le Profile Renault SAS.\r\nCependant lors de l\'export les objets ne doivent être présent dans le fichier XMI et la c\'est \"UML driven\". Il est donc impératif de les supprimer du modèles UML.\r\nJ\'ai un autre problème avec BatteryChargerResultsParameterSetType qui n\'a pas de stéreotype. Je pense que tu souhaites en faire un ObjectType.\r\nEst ce que tu peux me le confirmer \r\n\r\nCordialement\r\nMichel\r\n','2018-03-12 11:57:41',0),(557,265,'Issue',333,'Michel,\r\n\r\nNow that we could configure OPC Tags with GUID and Opaque Node ID type, we have another questions that follows;\r\n\r\n- NodeID Type: the whole reason we asked you about the GUID and Opaque Node ID Type is that with those id type, different data type could be referenced by it, such as user-defined data types. You mentioned in one of the responses to our queries that OpenOPCUa has \"dictionary\" that would help correctly read/parse the user-defined data types. Is this feature implemented yet? Any examples how to read user-defined data types?\r\n\r\n\r\nMerci,\r\n\r\nJason \r\n','2018-03-13 07:51:00',0),(558,263,'Issue',333,'Michel,\r\n\r\nAny guidance on this function?\r\n\r\nJason ','2018-03-13 10:58:59',0),(559,263,'Issue',1,'Hello Jason,\r\nThose function need to be set up according to your needs.\r\nSee attached document for details.\r\n\r\nRegards\r\nMichel Condemine\r\n','2018-03-13 11:24:25',0),(560,266,'Issue',331,'Bonjour,\r\n\r\nNous avions vu ensemble que des instances de ConfigurationType et DeviceType étaient plus adéquates pour exprimer notre besoin. Je ne me souviens plus des détails il me semble que c\'était dans l\'idée où un model utilise un type de configuration, de même qu\'il est relatif à un type de device (un laser et un sepctro)\r\nMerci pour la démo, je regarde rapidement. \r\n\r\nCordialement\r\nMargaux','2018-03-13 14:05:29',0),(561,263,'Issue',333,'Merci Michel','2018-03-14 01:46:06',0),(562,276,'Issue',353,'Désolé le zip joint n\'était pas le bon...','2018-03-19 11:32:57',0),(563,230,'Issue',1,'A tester par AG','2018-03-19 14:38:40',0),(564,272,'Issue',1,'Hello,\nFirst in OPC UA we talk about Alarm&Condition (A&C).For now the OpenOpcUaClientLibrary is not supporting A&C.\nIt can be available soon. \nRegarding HA feature use HistoryRead. HistoryUpdate is not implemented.\n\nRegards\nMichel Condemine\n','2018-03-19 23:36:11',0),(565,273,'Issue',1,'Hello,\r\nfor method call you have a full example in the FlexClient. Just use OpenOpcUaCall.\r\nFor browsing server over the network you are suppose to use the GDS. Global Discovery Server. This server is not part of OpenOpcUa project.\r\nIt\'s deliver by the OPC Foundation under RCL licence.\r\n\r\nRegards\r\nMichel Condemine','2018-03-19 23:39:46',0),(566,263,'Issue',1,'','2018-03-19 23:40:23',0),(567,275,'Issue',1,'IT seems 274 and 275 are the same. So will close 275','2018-03-19 23:44:36',0),(568,274,'Issue',1,'','2018-03-19 23:45:21',0),(569,222,'Issue',1,'','2018-03-19 23:47:37',0),(570,273,'Issue',333,'Thanks Michel','2018-03-20 02:43:17',0),(571,274,'Issue',333,'Hi MIchel,\r\n\r\n\r\nJust a short note to remind you that we are awaiting your guideance/tutorial on Enumberations and QualifiedName data types.\r\nThanks\r\n\r\nJason ','2018-03-23 00:20:57',0),(572,277,'Issue',1,'','2018-03-23 14:07:57',0),(573,274,'Issue',333,'Hi Michel,\r\n\r\nAny updates on tutorials showing how to access Enumeration and QualifiedName data types?\r\nThose are only data types that we are having issues now.\r\n\r\nOnce it is done, we need to move on to writing to all the data types completing the read/write cycle.\r\n\r\nMerci,\r\n\r\nJason \r\n','2018-03-26 02:50:10',0),(574,230,'Issue',254,'Avec le package du 26/03/2018, le problème est résolu','2018-03-27 09:30:18',0),(575,228,'Issue',254,'Nous avons vu qu\'il y a des blocs orphelins déclarés dans les logs du vpi.\r\nIl se peut que ces blocs modifie la valeur en cour dans le vpi.','2018-03-27 09:34:20',0),(576,231,'Issue',254,'','2018-03-27 11:48:41',0),(577,189,'Issue',254,'','2018-03-27 11:50:03',0),(578,188,'Issue',254,'','2018-03-27 11:51:11',0),(579,271,'Issue',254,'Vu avec Michel le 3/04/2018, les espace ne sont pas géré dans le chemin du fichier','2018-04-03 14:40:24',0),(580,281,'Issue',254,'Je viens de refaire le test, même après 5 minutes avec le PLC débranché, le DeviceState reste à good','2018-04-03 16:25:57',0),(581,278,'Issue',1,'','2018-04-04 13:48:14',0),(582,284,'Issue',353,'Il y a également une erreur dans le chargement de la configuration que je n\'arrive pas à résoudre.\r\n|CPF_L04.log| 2018-04-05T07:45:55.343Z Now will try to parse: .\\NodeSet2CPFInstances\\Opc.Ua.NodeSet2.CPF1.xml\r\n|CPF_L04.log| 2018-04-05T07:45:55.348Z Please respect the UANodeSet.xsd schema\r\n|CPF_L04.log| 2018-04-05T07:45:55.348Z xmlNodeSetCharacterDataHandler: unexpected situation. Please contact OpenOpcUa Team leader ns=5;s=CPF1_TrainEntree uStatus=0x80ab0000\r\n|CPF_L04.log| 2018-04-05T07:45:55.351Z Please respect the UANodeSet.xsd schema\r\n|CPF_L04.log| 2018-04-05T07:45:55.351Z xmlNodeSetCharacterDataHandler: unexpected situation. Please contact OpenOpcUa Team leader ns=5;s=CPF1_TrainSortie uStatus=0x80ab0000\r\n|CPF_L04.log| 2018-04-05T07:45:55.364Z Your XML configuration file : .\\NodeSet2CPFInstances\\Opc.Ua.NodeSet2.CPF1.xml has been parsed. AddressSpace initialization result=0x80020000\r\n\r\nCordialement.','2018-04-05 09:42:07',0),(583,269,'Issue',1,'','2018-04-05 10:54:25',0),(584,286,'Issue',353,'A déplacer dans Assistance, ce n\'est pas une Evolution désolé.','2018-04-09 14:53:05',0),(585,286,'Issue',1,'Bonjour,\r\nEn partant du principe que sur votre affaire la redondance OPC UA n\'est pas supportée. La valeur ne sera pas initialisée. \r\nLe client OPC UA lira un statuscode correspondant. Cependant si votre client souhaite une valeur par défaut dans serviceLevel (255). \r\nJe pourrai faire un evolution pour une prochaine version.\r\nParlons en lors du prochain call.\r\n\r\nCordialement\r\nMichel Condemine','2018-04-09 15:25:56',0),(586,287,'Issue',1,'Bonjour,\r\nL_ECS est une valeur de l\'énumération des EspaceType. \r\nJe ne comprends pas pourquoi il y a une VariableType L_ECSType dans l\'annexe 1.\r\n\r\nJe suis dispo cette AM (10-4) a partir de 16h\r\n\r\nCordialement\r\nMichel','2018-04-10 12:01:56',0),(587,252,'Issue',1,'Cette fonctionnalité fonctionne correctement dans la version 1.0.5.3 du serveur.\r\nUn effet de bord peut être induit par le VpiTyco cette fonctionanlité a été validé avec le VpiTyco 0.0.7.6\r\n\r\nCordialement\r\nMichel','2018-04-10 21:34:05',0),(588,258,'Issue',1,'En utilisant l\'affectation multiple on peut prendre en compte le cas des ALD, et MS. \r\nQuid de ALM_RSTR et de ACTI ?\r\nPour les front descendant. Vous m\'avez demandé de remettre à zéro (FALSE) les nodes d\'adresse ALD et MS.\r\nQuid de ALM_RSTR et de ACTI ?','2018-04-10 21:39:29',0),(589,259,'Issue',1,'Bonjour, \r\nJ\'ai ajouté une variable interne m_bPanelOnline qui permet d\'indiquer si la centrale est En/Hors service. Cette variable est opérationnelle. Il ne reste plus qu\'a déterminer le mécanisme de configuration :\r\n* Client OPC UA, en utilisant l\'adresse @CENTRALE_HS pour indiquer au VPI que la centrale est HS ?\r\n* En utilisant le fichier complémentaire de configuration\r\n* Autre ?\r\n\r\nCordialement\r\nMichel','2018-04-10 21:49:31',0),(590,260,'Issue',1,'Bonjour,\r\nl\'outil de configuration est l\'OpenOpcUaConfigManager. Bien que cette notion soit subjective, Il me semble assez simple a utiliser.\r\nCependant le bug à la sauvegarde le rend inutilisable. Cette correction sera réalisée dans les meilleurs délais.\r\nUne version ultérieure supportera l\'instanciation des types. \r\nd\'autres evolutions majeures pourront faire l\'objet d\'un autre contrat.\r\n\r\nCordialement\r\nMichel','2018-04-10 22:39:04',0),(591,261,'Issue',1,'Ce fonctionnement est contraire à votre protocol de communication. \r\nPourriez vous me confirmer en réponse a ce message que vous acceptez une implementation en opposition au fonctionnement de MXSpeak.\r\n\r\nEnsuite, merci de m\'indiquer les EventCode et les N° de groupes pour lesquels vous souhaitez que j\'ignore le front descendant.\r\nDans ce cas il faudra modifier la fonction de réarmement est ajouter toutes les ALM de la centrale réarmée.\r\n\r\nN\'hésitez pas à me contacter pour plus d\'explication\r\n\r\nCordialement\r\nMichel','2018-04-10 22:46:46',0),(592,262,'Issue',1,'Au réarmement l\'ensemble les variables,DFT_POS_SECU / POS_SECU / POS_ATT / DFT_POS_ATT pour une centrale donnée repassent a FALSE.\r\nCe reset correspond aux adresses configuré dans le fichier SubSystem\r\n\r\nCordialement\r\nMichel','2018-04-10 23:05:32',0),(593,286,'Issue',353,'Bonjour,\r\nNon ce n\'est pas la peine, pour la simulation j\'ai positionné la valeur dans le fichier NodeSet, et ensuite je le ferai par le Vpi.\r\nJe voulais juste évoquer un point pas clair sur la norme concernant cette variable qui n\'est évoquée que dans le cas de redondance alors que potentiellement elle peut avoir son Intérêt en mode mono-serveur.\r\n\r\nCordialement.\r\nF. TOURRET','2018-04-11 07:48:05',0),(594,288,'Issue',1,'Bonjour,\r\nLes Nodes ServiceLevel et NamespaceArray existe dans le serveur. Ils sont chargés a partir de Opc.Ua.NodeSet2.Part5.xml.\r\nVous n\'avez pas à les créer.\r\nSi vous êtes parti de l\'un des exemples. La cache du Vpi est une instance d\'un CSourceObjectList. \r\nCette instance se trouve habituellement dans la classe principale associé au VPI\r\nCSourceObjectList m_SourceObjects; // m_SourceObjects est la cache du Vpi\r\n\r\nCordialement\r\nMichel Condemine','2018-04-11 08:44:08',0),(595,149,'Issue',1,'','2018-04-11 16:37:48',0),(596,152,'Issue',1,'','2018-04-11 16:38:08',0),(597,211,'Issue',1,'','2018-04-11 16:38:40',0),(598,212,'Issue',1,'','2018-04-11 16:39:14',0),(599,213,'Issue',1,'','2018-04-11 16:39:39',0),(600,214,'Issue',1,'','2018-04-11 16:40:06',0),(601,215,'Issue',1,'','2018-04-11 16:40:24',0),(602,258,'Issue',1,'NF finalise les tests sur ALD / ALM_RSTR / ACTIF / MS en utilisant la plateforme de Rungis. \r\nIl faut utiliser le multitag pour déclarer les différentes addresses.','2018-04-11 17:09:44',0),(603,287,'Issue',1,'','2018-04-13 00:26:24',0),(604,267,'Issue',1,'','2018-04-13 00:26:58',0),(605,264,'Issue',1,'','2018-04-13 00:27:30',0),(606,197,'Issue',1,'','2018-04-13 00:28:29',0),(607,196,'Issue',1,'','2018-04-13 00:28:48',0),(608,119,'Issue',1,'','2018-04-13 00:29:18',0),(609,120,'Issue',1,'','2018-04-13 00:29:33',0),(610,121,'Issue',1,'','2018-04-13 00:29:53',0),(611,124,'Issue',1,'','2018-04-13 00:30:12',0),(612,132,'Issue',1,'','2018-04-13 00:30:28',0),(613,133,'Issue',1,'','2018-04-13 00:30:49',0),(614,138,'Issue',1,'','2018-04-13 00:31:08',0),(615,160,'Issue',1,'','2018-04-13 00:31:26',0),(616,161,'Issue',1,'','2018-04-13 00:31:49',0),(617,162,'Issue',1,'','2018-04-13 00:32:46',0),(618,167,'Issue',1,'','2018-04-13 00:34:12',0),(619,173,'Issue',1,'','2018-04-13 00:34:35',0),(620,176,'Issue',1,'','2018-04-13 00:35:01',0),(621,181,'Issue',1,'','2018-04-13 00:35:42',0),(622,182,'Issue',1,'','2018-04-13 00:36:07',0),(623,191,'Issue',1,'','2018-04-13 00:36:28',0),(624,195,'Issue',1,'','2018-04-13 00:36:53',0),(625,208,'Issue',1,'','2018-04-13 00:37:16',0),(626,267,'Issue',1,'','2018-04-13 00:38:05',0),(627,292,'Issue',345,'Bonjour Michel,\r\n\r\nEffectivement hier soir ne te voyant pas connecté je n\'ai pas pris le temps de t\'informer mais nous avons eu une petite malchance.\r\n\r\nEgidium a livré une nouvelle version dans la journée et hier soir il nous fallait initialiser cette nouvelle version et j\'étais dispo que tard.\r\n\r\nPar manque de chance en cours de route nous avons eu un redémarrage des serveurs et en l\'absence de Kamel on a pas pu faire les manip nécessaires pour relancer des services qui nous permettaient de finaliser.\r\n\r\nSauf à découvrir un sujet plus lourd, ceci devrait être rétabli dès l\'arrivée de Kamel ce matin et on va pouvoir finaliser l\'installation. Te tiens informé\r\n\r\n\r\n ','2018-04-13 08:16:26',0),(628,294,'Issue',315,'Bonjour, \r\n\r\nEffectivement, bug identifié cette semaine.\r\nModif intégrée dans annexe 1 F.04 \r\nCHUBB et SIEMENS informés\r\nTYCO action Michel \r\nFINSECUR, vérifier via harmonisateur si OK ','2018-04-13 10:45:57',0),(629,292,'Issue',1,'','2018-04-13 12:00:22',0),(630,291,'Issue',2,'Bonjour Michel,\r\n\r\nLes modifications apportées m\'ont été expliquées par Margaux. Ok pour moi sur les modifications qui sont effectivement plus pertinentes.\r\n\r\nBonne fin d\'après-midi,\r\n\r\nCordialement,\r\n\r\nLaure','2018-04-16 15:24:09',0),(631,289,'Issue',254,'','2018-04-18 16:05:41',0),(632,282,'Issue',254,'','2018-04-18 16:06:09',0),(633,281,'Issue',254,'','2018-04-18 16:06:29',0),(634,188,'Issue',254,'','2018-04-18 16:07:34',0),(635,189,'Issue',254,'','2018-04-18 16:07:51',0),(636,230,'Issue',254,'','2018-04-18 16:08:37',0),(637,232,'Issue',254,'','2018-04-18 16:08:58',0),(638,270,'Issue',254,'','2018-04-26 14:07:44',0),(639,226,'Issue',254,'','2018-04-26 14:09:05',0),(640,297,'Issue',1,'Hello Jason,\r\nThis is not the way it works. I work in the following way\r\n1- You submit your changes\r\n2- I review it\r\n3- I integrate you changes or not. (for info your last changes in the stack about threading introduce a lot of issues. I advice to remove it ASAP)\r\n4- I deliver a new version\r\n\r\nRegards\r\nMichel Condemine','2018-04-26 16:43:29',0),(641,298,'Issue',254,'Avec le VpiModbus tout est OK','2018-04-27 16:18:39',0),(642,297,'Issue',333,'Understood Mike.\r\nLet us run the diff and share the results with you via this.\r\n\r\nMerci,\r\n\r\nJason ','2018-04-30 01:20:24',0),(643,291,'Issue',1,'','2018-05-02 14:04:33',0),(644,266,'Issue',1,'Ajouter attribut Configuration dans Model et Attribut Lazer (DEviceType) et Analyzer (DeviceType)','2018-05-02 14:31:17',0),(645,296,'Issue',1,'Préparer un demo composé de VpiComDa et VpiDirectAccess\r\n\r\n','2018-05-02 14:32:30',0),(646,266,'Issue',331,'Voilà, à voir si c\'est correct. ','2018-05-02 15:23:50',0),(647,261,'Issue',1,'Bonjour,\r\nJ\'ai fait la correction mais j\'attends toujours votre confirmation dans ce fil.\r\n\r\nCordialement\r\nMichel','2018-05-03 15:21:32',0),(648,298,'Issue',254,'','2018-05-04 15:41:41',0),(649,240,'Issue',254,'','2018-05-04 15:42:31',0),(650,271,'Issue',254,'','2018-05-04 15:43:35',0),(651,280,'Issue',254,'','2018-05-04 15:44:34',0),(652,300,'Issue',353,'Je vous joint également les logs du serveur.','2018-05-07 13:18:14',0),(653,300,'Issue',1,'Bonjour,\r\nVous me fournissez assez peu d\'information pour comprendre le contexte associé aux problèmes que vous rencontrez. Cependant :\r\nPour le point 1. \r\nEst-ce que DF_TRAIN et DG_TRAIN sont associé a un VPI ?\r\nSi oui, c\'est le serveur qui après l\'appel à VpiWriteValue reçoit du VPI UncertainInitialValue. C\'est donc votre VPI qui retourne ce statusCode.\r\n\r\nPoint 2.\r\nLeur mécanisme et l\'usage du Republish est inapproprié.\r\nLe serveur répond Bad_MessageNotAvailable lors d\'un appel à Republish quand le message a déjà été acquitté par le client.\r\nCe qui est tout à fait normal. Il n\'y a rien d\'anormal dans le serveur.\r\n\r\nCordialement\r\nMichel Condemine ','2018-05-07 13:59:05',0),(654,300,'Issue',353,'Bonjour,\r\n\r\nPb résolu, merci de fermerl\'incident.\r\n\r\nCordialement.\r\nF. TOURRET','2018-05-24 16:16:06',0),(655,304,'Issue',254,'','2018-05-31 15:01:48',0),(656,306,'Issue',1,'','2018-06-08 14:38:17',0),(657,305,'Issue',1,'','2018-06-08 14:38:41',0),(658,312,'Issue',1,'Ce code se trouve dans la stack. Cette fonctionnalité ne doit pas être désactivé. \r\nSa désactivation provoquerait une importante fuite mémoire.\r\n\r\nCordialement\r\nMichel','2018-07-06 17:37:28',0),(659,312,'Issue',303,'Michel,\r\nPeut-on alors élargir la tolérance sur les différences entre ces deux dates ?\r\nMerci.\r\nDamien.','2018-07-10 10:56:21',0),(660,313,'Issue',1,'Bonjour,\r\nje viens de corriger le problème du 64bits.\r\nJe publierai une beta version de la base de code demain (3 aout 2018)\r\nmerci de la tester ASAP.\r\n\r\nCordialement\r\nMichel Condemine','2018-08-02 17:46:25',0),(661,315,'Issue',1,'je vais apporter une modification dans le serveur pour prendre en charge ce type d’erreur. A savoir :\n- Pas de démarrage du serveur sur le ProjectFolder est invalide\n- Log d’un message si les fichiers de configuration n’existe pas.\n','2018-08-21 10:46:15',0),(662,316,'Issue',1,'','2018-08-21 10:46:34',0),(663,318,'Issue',1,'Corrigé dans la version 1.0.5.6 conformément a votre retour.','2018-08-29 14:23:39',0),(664,316,'Issue',346,'Suite à notre conversation téléphonique de lundi dernier (27 aout 2018), voici une nouvelle version du projet contenant la très grosse base d\'instances.\r\n\r\nCordialement','2018-08-31 14:22:50',0),(665,274,'Issue',1,'Check the last codebase 1.0.5.6','2018-09-21 11:50:37',0),(666,322,'Issue',1,'Question 1:\r\nAvons nous fait une erreur en déclarant le père d\'un objet comme ceci ?\r\nNon. Le serveur s\'occupe d\'inverser les références. Vous devez déclarer les objets conformément a l\'annexe 1. Il ne faut pas déclarer de reference, ComponentOf. \r\nPourriez vous m\'en dire plus sur les essais réalisé avec l\'harmonisateur.\r\nQuestion 2\r\nEst-ce que cela peut effectivement être un problème pour l\'harmonisateur si un objet ne contient pas de \"ComponentOf\" ?\r\nNon\r\n\r\nPS: Votre contrat d\'assistance et de suivi est terminée. Merci de penser à le renouveler\r\n\r\nCordialement\r\nMichel Condemine','2018-09-24 18:19:21',0),(667,323,'Issue',1,'Hello Helmut,\r\nDo you run the IPV6 version of the Library of the IPV4 ?\r\n\r\nThe IPV6 of OOUA client library is not supporting the IPV4 version of the endpoint. I mean opc.tcp:xxx.xxx.xxx.xxx:port\r\nYou also have to keep in mind the ip address in endpoints will not allow secure connections.\r\n\r\nRegards\r\nMichel\r\n','2018-09-28 15:50:33',0),(668,261,'Issue',328,'mode de fonctionnement confirmé et accepté','2018-10-02 11:48:52',0),(669,307,'Issue',328,'Pouvez-vous me préciser ici ,comment fonctionne L_SSI et ce qu\'il faut dans le subsystem pour qu\'il fonctionne.','2018-10-02 11:53:36',0),(670,307,'Issue',328,'Après entretien téléphonique avec Michel:\r\nil faut que @MODIF_BD soit présent dans le subsystem pour lancer la \"maintenance thread\"(=\"COMMON_THREAD\" X6).\r\nExemple:\r\n<Tag Id=\"ns=1;i=17\" Name=\"MODIF_BD\" Description=\"Indique que la base de données du serveur OPC\" Type=\"Boolean\" AccessRight=\"Input_Output\" Address=\"@MODIF_BD\"></Tag>\r\nil faut également que les paramètres ci-dessous soient présent dans le fichier dat:\r\nSUPERVISION_REQUEST_THREAD_RATE 40000\r\nCOMMON_THREAD_RATE 15000\r\n\r\n\r\n','2018-10-02 18:30:33',0),(671,261,'Issue',328,'Vérifier s\'il n\'y a pas d\'autres groupes qui activent/désactivent ALM\r\nexemple: le groupe 34 activait ALM et le désactivait, ce qui provoquait une disparition du détecteur en alarme dans l\'UAE.','2018-10-02 19:09:00',0),(672,259,'Issue',328,'Le plus simple serait en utilisant le fichier .dat. \r\nQue faut-il mettre dans le fichier ?\r\nà terme, il serait intéressant que ce fichier soit renseigné via une petite interface afin d\'éviter les erreurs de saisie.','2018-10-02 19:15:10',0),(673,331,'Issue',1,'Bonjour Norbert,\r\nL\'erreur est lié à l\'evolution du fichier principale de configuration.\r\nVous utilisez une ancienne configuration avec le nouvel outil. \r\nCorrigez votre fichier de configuration (oouaprj) en tenant compte des nouvelles options de paramétrage.\r\n\r\nCordialement\r\nMichel\r\n\r\n','2018-11-10 14:17:10',0),(674,329,'Issue',1,'Bonjour,\r\nje pense avoir apporté plus d\'explication dans mon dernier @mail. \r\nPour créer un nouveau VPI je vous invite à vous reportez à la documentation : How to create your own Vpi.pdf et à utiliser les exemples de la base de code.\r\n\r\nCordialement\r\nMichel Condemine','2018-11-12 18:06:59',0),(675,335,'Issue',1,'Bonjour,\r\nj\'ai testé la distribution 1.0.5.6 RC02 en utilisant un VPI qui invoque les fonctions de peuplement de l\'espace d\'adressage.\r\nJe n\'ai pas pu reproduire votre problème. Il ne faut pas et sous aucun prétexte ajouter des fichiers issue de la Stack dans le VpiSdk.\r\nLA stack et les Vpi sont totalement independant et doivent le rester. Je pense que votre projet est corrompu. \r\nJe vous propose de consacrer la prochaine heure de call a corriger votre envoronement de developpement.\r\n\r\nCordialemùent\r\nMichel Condemine\r\n\r\n','2018-11-14 22:40:45',0),(676,335,'Issue',361,'Bonjour,\r\n\r\nJe ne comprend pas. En 1.0.5.6, il y a une mise à jour des fonctions de peuplement qui attendent un LocalizedText en argument. Les fonctions permettant de manipuler ce type ne sont pas déclarées dans le fichier openopcuavpisdk.h importé dans les Vpi. Je les ai ajoutées sur la base de ce qui existe pour la gestion du type Vpi_String:\r\n\r\ndonc dans openopcuavpisdk.h, j\'ai rajouté :\r\n\r\nextern \"C\"\r\n{\r\n Vpi_Void VPI_DLLCALL Vpi_LocalizedText_Initialize(Vpi_LocalizedText* pValue);\r\n Vpi_Void VPI_DLLCALL Vpi_LocalizedText_Clear(Vpi_LocalizedText* pValue);\r\n Vpi_StatusCode VPI_DLLCALL Vpi_LocalizedText_CopyTo(const Vpi_LocalizedText* pSource, Vpi_LocalizedText* pDestination);\r\n Vpi_Int VPI_DLLCALL Vpi_LocalizedText_Compare(const Vpi_LocalizedText* pValue1, const Vpi_LocalizedText* pValue2);\r\n} \r\n\r\nCela ne suffit pas puisque comme indiqué à la précédent conversation, le compilateur indique un problème de LINK. \r\n\r\nJe viens de regarder ce matin, les fonction manipulant le type LocalizedText ne sont pas exportées (comme vous l\'aviez constaté) dans le projet OpenOpcUaVpiLibrary. \r\n\r\nJ\'ai modifié le projet pour qu\'il exporte ces fonctions\r\n\r\nJ\'ai ouvert le Vpi_NullEx et tenté de faire un appel à l\'une des fonctions manipulant le type LocalizedText, avec ces modifications le projet compile correctement.\r\n\r\nConcernant les fichiers que j\'importe de la stack ce sont juste des fichiers .h qui contiennent juste des #define de constantes OpcUA qui n\'existent pas à la fin de VPI.h, rien d\'autre.\r\n\r\nCordialement,\r\n\r\nFrancesco DEMURU\r\n','2018-11-15 09:51:52',0),(677,337,'Issue',1,'Bonjour,\r\nJe vous remercie pour ce retour.\r\nLe commentaire n\'état pas en accord avec la valeur.\r\nJ\'ai corrigé cette erreur. Elle sera disponible dans la 1.0.5.6 RC4\r\n\r\n\r\nCordialement\r\nMichel Condemine','2018-11-29 18:04:39',0),(678,339,'Issue',1,'','2018-12-03 11:54:21',0),(679,340,'Issue',1,'Bonsoir,\r\nIl s\'agit d\'un bug dans le client de l\'UAE qui n\'envoie pas assez de publish.\r\nLe serveur veut notifier un/des changement(s) d\'état mais il n\'a pas de publishRequest à disposition.\r\nCordialement\r\nMichel Condemine','2018-12-04 19:40:46',0),(680,340,'Issue',346,'Bonjour,\r\n\r\nJe vous remercie beaucoup pour votre réponse rapide.\r\n\r\nCHUBB et ADP nous indiquent qu\'il n\'y a pas ce problème avec l\'harmonisateur et avec le concentrateur de Tyco. Cela signifie-t-il que vous avez dû faire des modifications spécifiques sur le serveur pour passer au travers de ce bug de l\'UAE ? \r\n\r\nCordialement,','2018-12-05 11:50:43',0),(681,340,'Issue',1,'Bonjour,\r\nle client de l\'UAE n\'est pas très \"stable\" et ne respecte pas les règles de l\'art en matière d\'interaction avec les serveurs OPC UA.\r\nJ\'ai du réaliser de nombreuses modifications pour prendre en compte son comportement.\r\nLa décision d\'ADP d\'écarter l\'harmonisateur est la porte ouverte à des problèmes conséquents. Je désapprouve techniquement leur choix mais me dois de le respecter.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2018-12-05 11:56:18',0),(682,340,'Issue',1,'Pourriez vous me fournir le minidump du crash et les symboles associés ?','2018-12-05 15:13:20',0),(683,341,'Issue',1,'Bonsoir Norbert,\r\nNumérotons les problèmes. J\'ajoute les commentaires en italique. \r\n# DFT_BATT ou DFT_SECT : ne fonctionne plus, j’ai l’impression que les « events » ne sont plus pris en compte, pouvez-vous vérifier ?\r\n_J\'ai lancé mes centrales. Je recu DFT_BATT sur l\'ECS une fois. Ce qui est correcte car la LED est allumé.Masi depuis plus rien.\r\n# LS\\EN_SRV : j’ai mis 13 et 37 dans la liste du fichier dat mais seulement la centrale 13 a la variable EN_SRV à True (à creuser : dans le log on voit que le VPI met Z37.A0999.EN_SRV à 0) \r\n_Donc 13 est en service et pas 37. Il doit y avoir une correlation avec le problème n°5. J\'ai noté une confusion dans le code entre LS_XXX.DFT et L_ECS.DFT_L_ECS et le node d\'adresse Zxx.P0000.DFT_PANEL. Il faut revoir cela.\r\n# ARR_DRG_SON : commande OK mais pas de retour à False, le problème doit venir encore une fois du fait que la commande vient du concentrateur, cela doit être le nœud 51 qui doit arriver avec l’EV_LD 456. Si on associe en multi-tag l’adresse du bouton arrêt buzzer (voir le subsystem dans mon dossier ci-joint : Address=\"Z37.L0006.ARR_DRG_SON\"), et bien dans ce cas-là si on appuie sur le bouton la variable passe bien à False. _Ici je ne peux rien faire_\r\n# ECS\\CMD_REINIT : Commande OK et retour à False OK . Très bien\r\n# CMSI\\CMD_REINIT : Commande OK mais pas de retour à False. _Sans doute en lien avec la centrale qui reste HS._\r\n\r\nSur mes centrales. \r\nJ\'ai la CMSI en defaut bat (led allumé) mais pas l\'ECS (led éteinte). Cependant je n\'ai pas de batterie.\r\nAu démarrage les centrales se réarment toute seules.\r\nElle sonnent en permanence. Il est difficile de faire des tests.\r\n\r\nQu\'en pensez vous ?\r\nCordialement\r\nMichel\r\n\r\n','2018-12-05 18:13:35',0),(684,300,'Issue',1,'','2018-12-07 10:06:26',0),(685,286,'Issue',1,'Bonjour,\r\nDans la version 1.0.5.6 le service Level est positionné sur le chargement du Vpi à fonctionné correctement.\r\nIl fonctionne aussi de paire avec le Node STATE.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2018-12-07 10:08:22',0),(686,340,'Issue',1,'Bonjour,\r\nJe pense que le problème est maintenant réglé.\r\nJe ferme donc cet incident.\r\n\r\ncordialement\r\nMichel Condemine','2018-12-08 17:33:35',0),(687,349,'Issue',374,'Ajout des fichiers xml du serveur agrégateur avec la configuration vpimodbus','2018-12-20 16:19:04',0),(688,349,'Issue',1,'Bonjour,\r\nJe viens de corriger le problème.\r\nIl régression dans le code du serveur. Il faudra cependant surveiller que le workaround apporté dan ServerApplication.cpp n\'a pas d\'effet de bord.\r\n\r\nBonne année 2019\r\nMichel','2018-12-30 17:44:49',0),(689,350,'Issue',1,'J\'ai simplement supprimé le code.\r\nIl n\'y a plus de variable interne dans le Vpi. Elle sont toutes prise en charge par le CoreServer.\r\n\r\nCordialement\r\nMichel','2018-12-30 17:46:29',0),(690,343,'Issue',353,'Bonjour,\r\n\r\nProblème toujours présent dans la release 1.0.5.6.\r\n\r\nCordialement.\r\n','2019-01-11 14:28:55',0),(691,343,'Issue',1,'Bonjour,\r\nPourriez vous m\'en dire plus sur votre methodologie de génération ?\r\nJe vous confirme que le serveur se compile et s\'execute sans problème sous debian 9 X64\r\nCordialement\r\nMichel Condemine\r\n','2019-01-12 10:26:35',0),(692,343,'Issue',353,'Bonjour,\r\n\r\nJe confirme également sous Debian 9.\r\nJe compile de la même manière : ./buidAll.sh\r\n\r\nPeut-être lié à GCC ou libc ?\r\ngcc (Debian 4.9.2-10) 4.9.2\r\nii libc-bin 2.19-18+deb8u7 amd64 GNU C Library: Binaries\r\nii libc-dev-bin 2.19-18+deb8u7 amd64 GNU C Library: Development binaries\r\nii libc6:amd64 2.19-18+deb8u7 amd64 GNU C Library: Shared libraries\r\nii libc6-dbg:amd64 2.19-18+deb8u7 amd64 GNU C Library: detached debugging symbols\r\nii libc6-dev:amd64 2.19-18+deb8u7 amd64 GNU C Library: Development Libraries and Header Files\r\n\r\n\r\nCordialement\r\nF. TOURRET','2019-01-14 09:33:42',0),(693,343,'Issue',1,'Bonjour,\r\nj\'avoue ne pas comprendre votre problème.\r\nEst ce toujours relatif à la compilation 64bits ?\r\nLa structure OpcUa_ServerState est-elle inconnue ?\r\ngcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516\r\nCi-dessous un build Debian 9 64 bits. Vous pouvez voir qu\'il n\'y a aucune erreur et presque pas de Warning.\r\n\r\n\r\ndebian@debian:~/OpenOpcUa/OpenOpcUa_1_0_5_6$ sh buildAll.sh \r\nGlobal OpenOpcUaServer and dependencies generation\r\nXMLSaxParser generation\r\n-- CMAKE_C_FLAGS: -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -Wall -g -ggdb\r\n-- CMAKE_CXX_FLAGS: -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -Wall -g -ggdb\r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/XMLSaxParser\r\n[ 12%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmlop.c.o\r\n[ 25%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmlrole.c.o\r\n[ 37%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmltok.c.o\r\n[ 50%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmlparse.c.o\r\n[ 62%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmltok_ns.c.o\r\n[ 75%] Building CXX object CMakeFiles/XMLSAXParser.dir/source/SAXParser_Helper.cpp.o\r\n[ 87%] Building CXX object CMakeFiles/XMLSAXParser.dir/source/XMLSAXParser.cpp.o\r\n[100%] Linking CXX shared library /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/lib/linux/Debug/libXMLSAXParser.so\r\n[100%] Built target XMLSAXParser\r\nLuaLib generation\r\n-- CMAKE_CXX_FLAGS: \r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/LuaLib\r\n[ 3%] Building C object CMakeFiles/LuaLib.dir/source/crt.c.o\r\n[ 6%] Building C object CMakeFiles/LuaLib.dir/source/lapi.c.o\r\n[ 9%] Building C object CMakeFiles/LuaLib.dir/source/lauxlib.c.o\r\n[ 12%] Building C object CMakeFiles/LuaLib.dir/source/lbaselib.c.o\r\n[ 16%] Building C object CMakeFiles/LuaLib.dir/source/lcode.c.o\r\n[ 19%] Building C object CMakeFiles/LuaLib.dir/source/ldblib.c.o\r\n[ 22%] Building C object CMakeFiles/LuaLib.dir/source/ldebug.c.o\r\n[ 25%] Building C object CMakeFiles/LuaLib.dir/source/ldo.c.o\r\n[ 29%] Building C object CMakeFiles/LuaLib.dir/source/ldump.c.o\r\n[ 32%] Building C object CMakeFiles/LuaLib.dir/source/lfunc.c.o\r\n[ 35%] Building C object CMakeFiles/LuaLib.dir/source/lgc.c.o\r\n[ 38%] Building C object CMakeFiles/LuaLib.dir/source/liolib.c.o\r\n[ 41%] Building C object CMakeFiles/LuaLib.dir/source/llex.c.o\r\n[ 45%] Building C object CMakeFiles/LuaLib.dir/source/lmathlib.c.o\r\n[ 48%] Building C object CMakeFiles/LuaLib.dir/source/lmem.c.o\r\n[ 51%] Building C object CMakeFiles/LuaLib.dir/source/loadlib.c.o\r\n[ 54%] Building C object CMakeFiles/LuaLib.dir/source/lobject.c.o\r\n[ 58%] Building C object CMakeFiles/LuaLib.dir/source/locale.c.o\r\n[ 61%] Building C object CMakeFiles/LuaLib.dir/source/lopcodes.c.o\r\n[ 64%] Building C object CMakeFiles/LuaLib.dir/source/lparser.c.o\r\n[ 67%] Building C object CMakeFiles/LuaLib.dir/source/lstate.c.o\r\n[ 70%] Building C object CMakeFiles/LuaLib.dir/source/lstring.c.o\r\n[ 74%] Building C object CMakeFiles/LuaLib.dir/source/lstrlib.c.o\r\n[ 77%] Building C object CMakeFiles/LuaLib.dir/source/ltable.c.o\r\n[ 80%] Building C object CMakeFiles/LuaLib.dir/source/ltablib.c.o\r\n[ 83%] Building C object CMakeFiles/LuaLib.dir/source/ltests.c.o\r\n[ 87%] Building C object CMakeFiles/LuaLib.dir/source/ltm.c.o\r\n[ 90%] Building C object CMakeFiles/LuaLib.dir/source/lundump.c.o\r\n[ 93%] Building C object CMakeFiles/LuaLib.dir/source/lvm.c.o\r\n[ 96%] Building C object CMakeFiles/LuaLib.dir/source/lzio.c.o\r\n[100%] Linking C static library /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/lib/linux/Debug/libLuaLib.a\r\n[100%] Built target LuaLib\r\nOpenOpcUaStack generation\r\n-- Found OpenSSL: /usr/local/lib/libssl.so;/usr/local/lib/libcrypto.so (found version \"1.1.0h\") \r\n-- Found OpenSSL: /usr/local/lib/libssl.so;/usr/local/lib/libcrypto.so (found suitable version \"1.1.0h\", minimum required is \"1.1\") \r\n-- openssl include dirs : \r\n-- CMAKE_C_FLAGS: -D_GNU_SOURCE -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -D_DEBUG -Wall -g -ggdb\r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/OpenOpcUaStackV1\r\n[ 1%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_asynccallstate.c.o\r\n[ 2%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_base64.c.o\r\n[ 3%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_binarydecoder.c.o\r\n[ 4%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_binaryencoder.c.o\r\n[ 5%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_buffer.c.o\r\n[ 6%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_builtintypes.c.o\r\n[ 7%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_channel.c.o\r\n[ 8%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_clientapi.c.o\r\n[ 10%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_connection.c.o\r\n[ 11%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_core.c.o\r\n[ 12%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_crypto.c.o\r\n[ 13%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_datetime.c.o\r\n[ 14%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_decoder.c.o\r\n[ 15%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_encodeableobject.c.o\r\n[ 16%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_encoder.c.o\r\n[ 17%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_endpoint.c.o\r\n[ 18%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_endpoint_ex.c.o\r\n[ 20%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_enumeratedtype.c.o\r\n[ 21%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_extensionobject.c.o\r\n[ 22%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_guid.c.o\r\n[ 23%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_connection.c.o\r\n[ 24%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_internal.c.o\r\n[ 25%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_listener.c.o\r\n[ 26%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_listener_connectionmanager.c.o\r\n[ 27%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_secureconnection.c.o\r\n[ 28%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_httpsstream.c.o\r\n[ 30%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_httpstream.c.o\r\n[ 31%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_list.c.o\r\n[ 32%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_listener.c.o\r\n[ 33%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_memory.c.o\r\n[ 34%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_memorystream.c.o\r\n[ 35%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_messagecontext.c.o\r\n[ 36%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_binary.c.o\r\n[ 37%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_cryptofactory.c.o\r\n[ 38%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_datetime.c.o\r\n[ 40%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_guid.c.o\r\n[ 41%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_interface.c.o\r\n[ 42%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_internal.c.o\r\n[ 43%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_libxml2.c.o\r\n[ 44%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_memory.c.o\r\n[ 45%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl.c.o\r\n[ 46%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_3des.c.o\r\n[ 47%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_aes.c.o\r\n[ 48%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_ecdsa.c.o\r\n[ 50%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_hmac_sha.c.o\r\n[ 51%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_pki.c.o\r\n[ 52%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_random.c.o\r\n[ 53%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_rsa.c.o\r\n[ 54%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_sha.c.o\r\n[ 55%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_x509.c.o\r\n[ 56%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_pki_nosecurity.c.o\r\n[ 57%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_pkifactory.c.o\r\n[ 58%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_securitypolicy_none.c.o\r\n[ 60%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_socket.c.o\r\n[ 61%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_socket_interface.c.o\r\n[ 62%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_socket_internal.c.o\r\n[ 63%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_string.c.o\r\n[ 64%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_thread.c.o\r\n[ 65%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_timer.c.o\r\n[ 66%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_utilities.c.o\r\n[ 67%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_win32_pki.c.o\r\n[ 68%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_wincrypt_random.c.o\r\n[ 70%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_proxystub.c.o\r\n[ 71%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securechannel.c.o\r\n[ 72%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_secureconnection.c.o\r\n[ 73%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securelistener.c.o\r\n[ 74%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securelistener_channelmanager.c.o\r\n[ 75%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securelistener_policymanager.c.o\r\n[ 76%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securestream.c.o\r\n[ 77%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_serverapi.c.o\r\n[ 78%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_servicetable.c.o\r\n[ 80%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_stream.c.o\r\n[ 81%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_string.c.o\r\n[ 82%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_stringtable.c.o\r\n[ 83%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcpconnection.c.o\r\n[ 84%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcplistener.c.o\r\n[ 85%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcplistener_connectionmanager.c.o\r\n[ 86%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcpsecurechannel.c.o\r\n[ 87%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcpstream.c.o\r\n[ 88%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_thread.c.o\r\n[ 90%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_threadpool.c.o\r\n[ 91%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_timer.c.o\r\n[ 92%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_trace.c.o\r\n[ 93%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_types.c.o\r\n[ 94%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_utilities.c.o\r\n[ 95%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_xmldecoder.c.o\r\n[ 96%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_xmlencoder.c.o\r\n[ 97%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_xmlreader.c.o\r\n[ 98%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_xmlwriter.c.o\r\n[100%] Linking C shared library /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/lib/linux/Debug/libOpenOpcUaStack.so\r\n[100%] Built target OpenOpcUaStack\r\nOpenOpcUaSharedLib generation\r\n-- Found OpenSSL: /usr/local/lib/libssl.so;/usr/local/lib/libcrypto.so (found version \"1.1.0h\") \r\n-- Found OpenSSL: /usr/local/lib/libssl.so;/usr/local/lib/libcrypto.so (found suitable version \"1.1.0h\", minimum required is \"1.1\") \r\n-- OpenSSL Found : TRUE\r\n-- OpenSSL Include Directory : /usr/local/include\r\n-- OpenSSL Librairies : /usr/local/lib/libssl.so;/usr/local/lib/libcrypto.so\r\n-- CMAKE_CXX_FLAGS: -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -D_OS_FREE -Wall -g -ggdb\r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/OpenOpcUaSharedLib\r\n[ 4%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/Application.cpp.o\r\n/home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/OpenOpcUaSharedLib/source/Application.cpp: In member function ‘OpcUa_Key* OpenOpcUa::UASharedLib::CApplication::GetPublicKey(OpcUa_ByteString*)’:\r\n/home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/OpenOpcUaSharedLib/source/Application.cpp:1171:16: warning: statement has no effect [-Wunused-value]\r\n pPublicKey->Key;\r\n ~~~~~~~~~~~~^~~\r\n/home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/OpenOpcUaSharedLib/source/Application.cpp:1172:16: warning: statement has no effect [-Wunused-value]\r\n pPublicKey->Type;\r\n ~~~~~~~~~~~~^~~~\r\n[ 9%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/BuildInfo.cpp.o\r\n[ 13%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/Channel.cpp.o\r\n[ 18%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/CryptoUtils.cpp.o\r\n[ 22%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/DataValue.cpp.o\r\n[ 27%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/EndpointDescription.cpp.o\r\n[ 31%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/ExtensionObject.cpp.o\r\n[ 36%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/FileVersionInfo.cpp.o\r\n[ 40%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/MonitoredItemBase.cpp.o\r\n[ 45%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/NumericRange.cpp.o\r\n[ 50%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/OpenOpcUa.cpp.o\r\n[ 54%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/ServerStatus.cpp.o\r\n[ 59%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/SessionBase.cpp.o\r\n[ 63%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/SessionDiagnosticsDataType.cpp.o\r\n[ 68%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/SessionSecurityDiagnosticsDataType.cpp.o\r\n[ 72%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/Subscription.cpp.o\r\n[ 77%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/SubscriptionDiagnosticsDataType.cpp.o\r\n[ 81%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/UserTokenPolicy.cpp.o\r\n[ 86%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/Utils.cpp.o\r\n[ 90%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/opcua_certficates.cpp.o\r\n[ 95%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/stdafx.cpp.o\r\n[100%] Linking CXX shared library /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/lib/linux/Debug/libOpenOpcUaSharedlib.so\r\n[100%] Built target OpenOpcUaSharedlib\r\nOpenOpcUaCoreServer generation\r\n-- Found OpenSSL: /usr/local/lib/libssl.so;/usr/local/lib/libcrypto.so (found version \"1.1.0h\") \r\n-- Found OpenSSL: /usr/local/lib/libssl.so;/usr/local/lib/libcrypto.so (found suitable version \"1.1.0h\", minimum required is \"1.1\") \r\n-- OpenSSL Found: TRUE\r\n-- OpenSSL include dir: /usr/local/include\r\n-- OpenSSL librairie: /usr/local/lib/libssl.so;/usr/local/lib/libcrypto.so\r\n-- CMAKE_CXX_FLAGS: -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -D___cplusplus -D_DEBUG -D_OS_FREE -Wall -g -ggdb -ldl -rdynamic\r\n-- src path : /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer\r\n-- OpenOpcUaCoreServer_SOURCE_DIR is: /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer\r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer\r\n[ 1%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/Alias.cpp.o\r\n[ 3%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/ContinuationPoint.cpp.o\r\n[ 5%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/Definition.cpp.o\r\n[ 6%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/EventDefinition.cpp.o\r\n[ 8%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/EventsEngine.cpp.o\r\n[ 10%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/Field.cpp.o\r\n[ 11%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/HaEngine.cpp.o\r\n[ 13%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/LuaDebugger.cpp.o\r\n[ 15%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/LuaRestoreStack.cpp.o\r\n[ 16%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/LuaScript.cpp.o\r\n[ 18%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/LuaThis.cpp.o\r\n[ 20%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/LuaVirtualMachine.cpp.o\r\n[ 21%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/Main.cpp.o\r\n[ 23%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/MonitoredItemServer.cpp.o\r\n[ 25%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/MurmurHash3.cpp.o\r\n[ 26%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/NamespaceUri.cpp.o\r\n[ 28%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/OpenOpcUaScript.cpp.o\r\n[ 30%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/QueueRequest.cpp.o\r\n[ 31%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/QueuedCallRequest.cpp.o\r\n[ 33%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/QueuedHistoryReadRequest.cpp.o\r\n[ 35%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/QueuedPublishRequest.cpp.o\r\n[ 36%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/QueuedQueryFirstRequest.cpp.o\r\n[ 38%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/QueuedQueryNextRequest.cpp.o\r\n[ 40%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/QueuedReadRequest.cpp.o\r\n[ 41%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/RefCountedNodeId.cpp.o\r\n[ 43%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/SecureChannel.cpp.o\r\n[ 45%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/ServerApplication.cpp.o\r\n[ 46%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/ServiceModule.cpp.o\r\n[ 48%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/SessionServer.cpp.o\r\n[ 50%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/SimulatedGroup.cpp.o\r\n[ 51%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/SimulatedNode.cpp.o\r\n[ 53%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/StackCallbacks.cpp.o\r\n[ 55%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/SubscribedTagDetail.cpp.o\r\n[ 56%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/SubscriptionServer.cpp.o\r\n[ 58%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UABase.cpp.o\r\n[ 60%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UABinding.cpp.o\r\n[ 61%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UADataChangeNotification.cpp.o\r\n[ 63%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UADataType.cpp.o\r\n[ 65%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAEventNotificationList.cpp.o\r\n[ 66%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAHistorianVariable.cpp.o\r\n[ 68%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAInformationModel.cpp.o\r\n[ 70%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAMethod.cpp.o\r\n[ 71%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAMonitoredItemNotification.cpp.o\r\n[ 73%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAObject.cpp.o\r\n[ 75%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAObjectType.cpp.o\r\n[ 76%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAReference.cpp.o\r\n[ 78%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAReferenceType.cpp.o\r\n[ 80%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAStatusChangeNotification.cpp.o\r\n[ 81%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAVariable.cpp.o\r\n[ 83%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAVariableType.cpp.o\r\n[ 85%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAView.cpp.o\r\n[ 86%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VPIScheduler.cpp.o\r\n[ 88%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VpiDataValue.cpp.o\r\n[ 90%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VpiDevice.cpp.o\r\n[ 91%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VpiDispatchedTag.cpp.o\r\n[ 93%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VpiFuncCaller.cpp.o\r\n[ 95%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VpiTag.cpp.o\r\n[ 96%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VpiWriteObject.cpp.o\r\n[ 98%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/stdafx.cpp.o\r\n[100%] Linking CXX executable /home/debian/OpenOpcUa/OpenOpcUa_1_0_5_6/bin/linux/Debug/OpenOpcUaCoreServer\r\n[100%] Built target OpenOpcUaCoreServer\r\nall file was generated\r\nOpenOpcUaCoreServer\r\nlibLuaLib.a libOpenOpcUaClientLib.so libOpenOpcUaSharedlib.so libOpenOpcUaStack.so libOpenOpcUaVfiLibrary.so libOpenOpcUaVpiLibrary.so libVFIXxx.so libVPINullEx.so libVPINull.so libXMLSAXParser.so\r\ndebian@debian:~/OpenOpcUa/OpenOpcUa_1_0_5_6$ \r\n','2019-01-14 13:00:37',0),(694,343,'Issue',353,'Ci-joint la trace de la compilation sous Debian 8.6 x64 sans modifier aucun fichiers sources.\r\nftourret@debian-027:~/OpenOpcUa_1_0_5_6$ ./buildAll.sh \r\nGlobal OpenOpcUaServer and dependencies generation\r\nXMLSaxParser generation\r\n-- CMAKE_C_FLAGS: -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -Wall -g -ggdb\r\n-- CMAKE_CXX_FLAGS: -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -Wall -g -ggdb\r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/ftourret/OpenOpcUa_1_0_5_6/XMLSaxParser\r\n[ 14%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmlop.c.o\r\n[ 28%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmlrole.c.o\r\n[ 42%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmltok.c.o\r\n[ 57%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmlparse.c.o\r\n[ 71%] Building C object CMakeFiles/XMLSAXParser.dir/XmlShared/xmltok_ns.c.o\r\n[ 85%] Building CXX object CMakeFiles/XMLSAXParser.dir/source/SAXParser_Helper.cpp.o\r\n[100%] Building CXX object CMakeFiles/XMLSAXParser.dir/source/XMLSAXParser.cpp.o\r\nLinking CXX shared library /home/ftourret/OpenOpcUa_1_0_5_6/lib/linux/Debug/libXMLSAXParser.so\r\n[100%] Built target XMLSAXParser\r\nLuaLib generation\r\n-- CMAKE_CXX_FLAGS: \r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/ftourret/OpenOpcUa_1_0_5_6/LuaLib\r\n[ 3%] Building C object CMakeFiles/LuaLib.dir/source/lcode.c.o\r\n[ 6%] Building C object CMakeFiles/LuaLib.dir/source/lstate.c.o\r\n[ 10%] Building C object CMakeFiles/LuaLib.dir/source/lparser.c.o\r\n[ 13%] Building C object CMakeFiles/LuaLib.dir/source/lgc.c.o\r\n[ 16%] Building C object CMakeFiles/LuaLib.dir/source/lobject.c.o\r\n[ 20%] Building C object CMakeFiles/LuaLib.dir/source/lstring.c.o\r\n[ 23%] Building C object CMakeFiles/LuaLib.dir/source/ldump.c.o\r\n[ 26%] Building C object CMakeFiles/LuaLib.dir/source/ltablib.c.o\r\n[ 30%] Building C object CMakeFiles/LuaLib.dir/source/lundump.c.o\r\n[ 33%] Building C object CMakeFiles/LuaLib.dir/source/llex.c.o\r\n[ 36%] Building C object CMakeFiles/LuaLib.dir/source/ldo.c.o\r\n[ 40%] Building C object CMakeFiles/LuaLib.dir/source/lmathlib.c.o\r\n[ 43%] Building C object CMakeFiles/LuaLib.dir/source/lauxlib.c.o\r\n[ 46%] Building C object CMakeFiles/LuaLib.dir/source/lfunc.c.o\r\n[ 50%] Building C object CMakeFiles/LuaLib.dir/source/ldebug.c.o\r\n[ 53%] Building C object CMakeFiles/LuaLib.dir/source/loadlib.c.o\r\n[ 56%] Building C object CMakeFiles/LuaLib.dir/source/lapi.c.o\r\n[ 60%] Building C object CMakeFiles/LuaLib.dir/source/lstrlib.c.o\r\n[ 63%] Building C object CMakeFiles/LuaLib.dir/source/lzio.c.o\r\n[ 66%] Building C object CMakeFiles/LuaLib.dir/source/ldblib.c.o\r\n[ 70%] Building C object CMakeFiles/LuaLib.dir/source/crt.c.o\r\n[ 73%] Building C object CMakeFiles/LuaLib.dir/source/ltable.c.o\r\nIn file included from /home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/source/ltable.c:36:0:\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/source/ltable.c: In function ‘luaH_mainposition’:\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/include/llimits.h:72:23: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]\r\n #define IntPoint(p) ((lu_hash)(p))\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/include/ltable.h:13:32: note: in definition of macro ‘gnode’\r\n #define gnode(t,i) (&(t)->node[i])\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/source/ltable.c:71:26: note: in expansion of macro ‘hashmod’\r\n #define hashpointer(t,p) hashmod(t, IntPoint(p))\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/source/ltable.c:71:37: note: in expansion of macro ‘IntPoint’\r\n #define hashpointer(t,p) hashmod(t, IntPoint(p))\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/source/ltable.c:108:14: note: in expansion of macro ‘hashpointer’\r\n return hashpointer(t, pvalue(key));\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/include/llimits.h:72:23: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]\r\n #define IntPoint(p) ((lu_hash)(p))\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/include/ltable.h:13:32: note: in definition of macro ‘gnode’\r\n #define gnode(t,i) (&(t)->node[i])\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/source/ltable.c:71:26: note: in expansion of macro ‘hashmod’\r\n #define hashpointer(t,p) hashmod(t, IntPoint(p))\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/source/ltable.c:71:37: note: in expansion of macro ‘IntPoint’\r\n #define hashpointer(t,p) hashmod(t, IntPoint(p))\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/LuaLib/source/ltable.c:110:14: note: in expansion of macro ‘hashpointer’\r\n return hashpointer(t, gcvalue(key));\r\n ^\r\n[ 76%] Building C object CMakeFiles/LuaLib.dir/source/lmem.c.o\r\n[ 80%] Building C object CMakeFiles/LuaLib.dir/source/liolib.c.o\r\n[ 83%] Building C object CMakeFiles/LuaLib.dir/source/lopcodes.c.o\r\n[ 86%] Building C object CMakeFiles/LuaLib.dir/source/lvm.c.o\r\n[ 90%] Building C object CMakeFiles/LuaLib.dir/source/lbaselib.c.o\r\n[ 93%] Building C object CMakeFiles/LuaLib.dir/source/locale.c.o\r\n[ 96%] Building C object CMakeFiles/LuaLib.dir/source/ltm.c.o\r\n[100%] Building C object CMakeFiles/LuaLib.dir/source/ltests.c.o\r\nLinking C static library /home/ftourret/OpenOpcUa_1_0_5_6/lib/linux/Debug/libLuaLib.a\r\n[100%] Built target LuaLib\r\nOpenOpcUaStack generation\r\n-- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so (found version \"1.1.0f\") \r\n-- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so (found suitable version \"1.1.0f\", minimum required is \"1.1\") \r\n-- openssl include dirs : \r\n-- CMAKE_C_FLAGS: -D_GNU_SOURCE -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -D_DEBUG -Wall -g -ggdb\r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaStackV1\r\n[ 1%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_threadpool.c.o\r\n[ 2%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_xmlencoder.c.o\r\n[ 3%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_messagecontext.c.o\r\n[ 4%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_list.c.o\r\n[ 5%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_listener_connectionmanager.c.o\r\n[ 6%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_builtintypes.c.o\r\n[ 7%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_string.c.o\r\n[ 8%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_xmlwriter.c.o\r\n[ 10%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_x509.c.o\r\n[ 11%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_wincrypt_random.c.o\r\n[ 12%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_httpsstream.c.o\r\n[ 13%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_listener.c.o\r\n[ 14%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_memorystream.c.o\r\n[ 15%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_utilities.c.o\r\n[ 16%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_channel.c.o\r\n[ 17%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_ecdsa.c.o\r\n[ 19%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_core.c.o\r\n[ 20%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_timer.c.o\r\n[ 21%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_datetime.c.o\r\n[ 22%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_encoder.c.o\r\n[ 23%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcpconnection.c.o\r\n[ 24%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_socket.c.o\r\n[ 25%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_crypto.c.o\r\n[ 26%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_3des.c.o\r\n[ 28%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_trace.c.o\r\n[ 29%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_memory.c.o\r\n[ 30%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_secureconnection.c.o\r\n[ 31%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_xmlreader.c.o\r\n[ 32%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_thread.c.o\r\n[ 33%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_servicetable.c.o\r\n[ 34%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_datetime.c.o\r\n[ 35%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_sha.c.o\r\n[ 37%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_timer.c.o\r\n[ 38%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcplistener.c.o\r\n[ 39%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_win32_pki.c.o\r\n[ 40%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_libxml2.c.o\r\n[ 41%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securelistener.c.o\r\n[ 42%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_buffer.c.o\r\n[ 43%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_pki.c.o\r\n[ 44%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_enumeratedtype.c.o\r\n[ 46%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securestream.c.o\r\n[ 47%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_binary.c.o\r\n[ 48%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_stream.c.o\r\n[ 49%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_endpoint.c.o\r\n[ 50%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_pki_nosecurity.c.o\r\n[ 51%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_hmac_sha.c.o\r\n[ 52%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_aes.c.o\r\n[ 53%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_encodeableobject.c.o\r\n[ 55%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_httpstream.c.o\r\n[ 56%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcplistener_connectionmanager.c.o\r\n[ 57%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_socket_interface.c.o\r\n[ 58%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_thread.c.o\r\n[ 59%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_internal.c.o\r\n[ 60%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_base64.c.o\r\n[ 61%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_types.c.o\r\n[ 62%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_serverapi.c.o\r\n[ 64%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcpsecurechannel.c.o\r\n[ 65%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securechannel.c.o\r\n[ 66%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_endpoint_ex.c.o\r\n[ 67%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securelistener_policymanager.c.o\r\n[ 68%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_connection.c.o\r\n[ 69%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_decoder.c.o\r\n[ 70%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_guid.c.o\r\n[ 71%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_guid.c.o\r\n[ 73%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_internal.c.o\r\n[ 74%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_connection.c.o\r\n[ 75%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_socket_internal.c.o\r\n[ 76%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_secureconnection.c.o\r\n[ 77%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_https_listener.c.o\r\n[ 78%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_securelistener_channelmanager.c.o\r\n[ 79%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl.c.o\r\n[ 80%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_string.c.o\r\n[ 82%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_xmldecoder.c.o\r\n[ 83%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_cryptofactory.c.o\r\n[ 84%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_random.c.o\r\n[ 85%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_openssl_rsa.c.o\r\n[ 86%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_stringtable.c.o\r\n[ 87%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_utilities.c.o\r\n[ 88%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_interface.c.o\r\n[ 89%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_binaryencoder.c.o\r\n[ 91%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_securitypolicy_none.c.o\r\n[ 92%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_tcpstream.c.o\r\n[ 93%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_asynccallstate.c.o\r\n[ 94%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_extensionobject.c.o\r\n[ 95%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_binarydecoder.c.o\r\n[ 96%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_p_pkifactory.c.o\r\n[ 97%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_clientapi.c.o\r\n[ 98%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_proxystub.c.o\r\n[100%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_memory.c.o\r\nLinking C shared library /home/ftourret/OpenOpcUa_1_0_5_6/lib/linux/Debug/libOpenOpcUaStack.so\r\n[100%] Built target OpenOpcUaStack\r\nOpenOpcUaSharedLib generation\r\n-- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so (found version \"1.1.0f\") \r\n-- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so (found suitable version \"1.1.0f\", minimum required is \"1.1\") \r\n-- OpenSSL Found : TRUE\r\n-- OpenSSL Include Directory : /usr/include\r\n-- OpenSSL Librairies : /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so\r\n-- CMAKE_CXX_FLAGS: -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -D_OS_FREE -Wall -g -ggdb\r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaSharedLib\r\n[ 4%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/SessionSecurityDiagnosticsDataType.cpp.o\r\n[ 9%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/EndpointDescription.cpp.o\r\n[ 14%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/ServerStatus.cpp.o\r\n[ 19%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/SessionDiagnosticsDataType.cpp.o\r\n[ 23%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/SessionBase.cpp.o\r\n[ 28%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/opcua_certficates.cpp.o\r\n[ 33%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/Utils.cpp.o\r\n[ 38%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/FileVersionInfo.cpp.o\r\n[ 42%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/UserTokenPolicy.cpp.o\r\n[ 47%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/CryptoUtils.cpp.o\r\n[ 52%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/DataValue.cpp.o\r\n[ 57%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/Application.cpp.o\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaSharedLib/source/Application.cpp: In member function ‘OpcUa_Key* OpenOpcUa::UASharedLib::CApplication::GetPublicKey(OpcUa_ByteString*)’:\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaSharedLib/source/Application.cpp:1171:19: warning: statement has no effect [-Wunused-value]\r\n pPublicKey->Key;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaSharedLib/source/Application.cpp:1172:20: warning: statement has no effect [-Wunused-value]\r\n pPublicKey->Type;\r\n ^\r\n[ 61%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/OpenOpcUa.cpp.o\r\n[ 66%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/NumericRange.cpp.o\r\n[ 71%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/MonitoredItemBase.cpp.o\r\n[ 76%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/SubscriptionDiagnosticsDataType.cpp.o\r\n[ 80%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/BuildInfo.cpp.o\r\n[ 85%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/stdafx.cpp.o\r\n[ 90%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/Subscription.cpp.o\r\n[ 95%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/ExtensionObject.cpp.o\r\n[100%] Building CXX object CMakeFiles/OpenOpcUaSharedlib.dir/source/Channel.cpp.o\r\nLinking CXX shared library /home/ftourret/OpenOpcUa_1_0_5_6/lib/linux/Debug/libOpenOpcUaSharedlib.so\r\n[100%] Built target OpenOpcUaSharedlib\r\nOpenOpcUaCoreServer generation\r\n-- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so (found version \"1.1.0f\") \r\n-- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so (found suitable version \"1.1.0f\", minimum required is \"1.1\") \r\n-- OpenSSL Found: TRUE\r\n-- OpenSSL include dir: /usr/include\r\n-- OpenSSL librairie: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so\r\n-- CMAKE_CXX_FLAGS: -D__USE_UNIX98 -D__USE_POSIX199309 -D_OPCUA_USE_POSIX -D_GNUC_ -D___cplusplus -D_DEBUG -D_OS_FREE -Wall -g -ggdb -ldl -rdynamic\r\n-- src path : /home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer\r\n-- OpenOpcUaCoreServer_SOURCE_DIR is: /home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer\r\n-- Configuring done\r\n-- Generating done\r\n-- Build files have been written to: /home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer\r\n[ 1%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/LuaRestoreStack.cpp.o\r\n[ 3%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAObjectType.cpp.o\r\n[ 5%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VpiFuncCaller.cpp.o\r\n[ 6%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAMonitoredItemNotification.cpp.o\r\n[ 8%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/QueuedCallRequest.cpp.o\r\n[ 10%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/NamespaceUri.cpp.o\r\n[ 11%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/StackCallbacks.cpp.o\r\n[ 13%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/Main.cpp.o\r\n[ 15%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/SubscribedTagDetail.cpp.o\r\n[ 16%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/LuaThis.cpp.o\r\n[ 18%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/Alias.cpp.o\r\n[ 20%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/RefCountedNodeId.cpp.o\r\n[ 22%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/ContinuationPoint.cpp.o\r\n[ 23%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/MurmurHash3.cpp.o\r\n[ 25%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAVariable.cpp.o\r\n[ 27%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VpiDevice.cpp.o\r\n[ 28%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/LuaVirtualMachine.cpp.o\r\n[ 30%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/ServiceModule.cpp.o\r\n[ 32%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/VpiDataValue.cpp.o\r\n[ 33%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/QueueRequest.cpp.o\r\n[ 35%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAReference.cpp.o\r\n[ 37%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UADataChangeNotification.cpp.o\r\n[ 38%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAMethod.cpp.o\r\n[ 40%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/SimulatedNode.cpp.o\r\n[ 42%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/UAHistorianVariable.cpp.o\r\n[ 44%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/SimulatedGroup.cpp.o\r\n[ 45%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/HaEngine.cpp.o\r\n[ 47%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/LuaScript.cpp.o\r\n[ 49%] Building CXX object CMakeFiles/OpenOpcUaCoreServer.dir/source/ServerApplication.cpp.o\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer/source/ServerApplication.cpp: In member function ‘OpcUa_StatusCode OpenOpcUa::UACoreServer::CServerApplication::CheckServerStateFromVpis()’:\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer/source/ServerApplication.cpp:8552:35: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n OpcUa_ServerState serverState = OpcUa_ServerState::OpcUa_ServerState_Running;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer/source/ServerApplication.cpp:8572:21: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_CommunicationFault;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer/source/ServerApplication.cpp:8575:21: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_Unknown;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer/source/ServerApplication.cpp:8578:21: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_Failed;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer/source/ServerApplication.cpp:8581:21: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_Shutdown;\r\n ^\r\n/home/ftourret/OpenOpcUa_1_0_5_6/OpenOpcUaCoreServer/source/ServerApplication.cpp:8588:18: error: ‘OpcUa_ServerState’ is not a class or namespace\r\n serverState = OpcUa_ServerState::OpcUa_ServerState_Test;\r\n ^\r\nCMakeFiles/OpenOpcUaCoreServer.dir/build.make:698: recipe for target \'CMakeFiles/OpenOpcUaCoreServer.dir/source/ServerApplication.cpp.o\' failed\r\nmake[2]: *** [CMakeFiles/OpenOpcUaCoreServer.dir/source/ServerApplication.cpp.o] Error 1\r\nCMakeFiles/Makefile2:60: recipe for target \'CMakeFiles/OpenOpcUaCoreServer.dir/all\' failed\r\nmake[1]: *** [CMakeFiles/OpenOpcUaCoreServer.dir/all] Error 2\r\nMakefile:72: recipe for target \'all\' failed\r\nmake: *** [all] Error 2\r\nall file was generated\r\nlibLuaLib.a libOpenOpcUaSharedlib.so libOpenOpcUaStack.so libVPINull.so libXMLSAXParser.so\r\n','2019-01-14 13:44:52',0),(695,343,'Issue',1,'Bonjour,\r\nJe pense que cela vient d\'une incompatibilité de votre version de GCC.\r\nPrenons le problème ligne 8552.\r\n\r\nremplacez OpcUa_ServerState serverState = OpcUa_ServerState::OpcUa_ServerState_Running;\r\npar OpcUa_ServerState serverState = OpcUa_ServerState_Running;\r\n\r\nrecompilez et tenez moi au courant\r\n\r\nCordialement\r\nMichel Condemine','2019-01-14 14:54:28',0),(696,343,'Issue',353,'Bien sur que ça marche en faisans cette modification, puisque je l\'ai faite en suivant vos indications de votre mail du 04/12/2018 permettant de compiler la version 1.0.5.6beta9 !!!!\r\n\r\nJe l\'ai indiqué dans mon mail du 11/01/2019.\r\n\r\nMaintenant que nous somme d\'accord sur comment compiler sous Debian 8.6. Merci de me répondre sur nos fichiers de configurations qui plante le serveur en 1.0.5.6 et qui fonctionnaient en 1.0.5.6beta9 (CF mail du 11/01/2019).\r\n\r\nCordialement.\r\n\r\n','2019-01-14 15:55:30',0),(697,343,'Issue',1,'Puisque le problème vient de votre compilateur pourquoi soulever à nouveau ce problème ?\r\nRemplacez maintenant votre Main.cpp par le fichier attaché.\r\n\r\n','2019-01-14 16:39:39',0),(698,343,'Issue',353,'Il n\'avait pas était clairement identifié que le problème venait du compilateur en décembre.\r\nComme c\'était une version beta du source on en était resté là.\r\n\r\nLe fichier joint Main.cpp, viens en remplacement de ServeurApplication.cpp on est d\'accord ?','2019-01-14 16:46:38',0),(699,343,'Issue',1,'Non, le main.cpp vient en remplacement du main.cpp existant','2019-01-14 16:56:59',0),(700,343,'Issue',1,'une erreur s\'est glissé ligne 2546 du main.cpp\r\nMerci d\'utiliser celui-ci','2019-01-14 18:10:04',0),(701,343,'Issue',353,'Bonjour,\r\n\r\nOK pour le Main.cpp.\r\n\r\nJ\'ai remplacé le Main.cpp et corrigé les OpcUa_ServerState:: dans ServerApplication.cpp.\r\n\r\nLa compilation est OK et le serveur fonctionne avec notre configuration.\r\n\r\nMerci.\r\n\r\nLe sujet peut être fermé.\r\n','2019-01-15 09:40:31',0),(702,348,'Issue',353,'Sujet à fermer','2019-01-15 09:43:23',0),(703,346,'Issue',353,'Sujet a fermer','2019-01-15 09:43:59',0),(704,344,'Issue',353,'Bonjour,\r\n\r\nProblème toujours présent dans version 1.0.5.6\r\n\r\nCordialement.','2019-01-15 09:45:35',0),(705,342,'Issue',353,'Sujet à fermer.','2019-01-15 09:46:19',0),(706,348,'Issue',1,'','2019-01-15 10:26:53',0),(707,348,'Issue',1,'','2019-01-15 10:27:04',0),(708,342,'Issue',1,'','2019-01-15 10:27:26',0),(709,346,'Issue',1,'','2019-01-15 10:27:53',0),(710,343,'Issue',1,'','2019-01-15 10:29:06',0),(711,352,'Issue',1,'Bonjour,\r\nj\'ai publié une mise à jour pour régler ce problème la semaine dernière.\r\nIl faut remplacer dans opcua_p_openssl_pki.c ligne 1192 \r\ntime_t aTime;\r\npar \r\ntime_t aTime=time(OpcUa_Null);\r\n\r\nCordialement\r\nMichel Condemine','2019-01-15 10:41:03',0),(712,352,'Issue',353,'Ok cela fonctionne.\r\nJe n\'ai pas vu et ne voit pas la publication de ce correctif.\r\n\r\nMerci.\r\n\r\nRésolu.','2019-01-15 10:59:25',0),(713,350,'Issue',1,'','2019-01-21 15:50:42',0),(714,351,'Issue',1,'','2019-01-21 15:51:10',0),(715,328,'Issue',1,'','2019-01-21 15:51:36',0),(716,327,'Issue',1,'','2019-01-21 15:51:56',0),(717,326,'Issue',1,'','2019-01-21 15:52:17',0),(718,357,'Issue',328,'Hello,\r\n\r\nThe new code is\r\nHTDEHTBSILARGYFBHQEFFQAYDSIHAMAOQT\r\n\r\nRegards,\r\n','2019-03-19 19:10:29',0),(719,360,'Issue',1,'Bonjour,\r\nJe ne rencontre pas ce problème.\r\nQue se passe-t-il que vous utilisez le certificat généré par le serveur OpenOpcUa ?\r\n\r\nCordialement\r\nMichel Condemine','2019-04-02 17:02:44',0),(720,345,'Issue',1,'Bonjour,\r\nj\'ai corrigé le problème dans la 1.0.5.7 BETA05.\r\n\r\nCordialement\r\nMichel Condemine','2019-04-02 17:39:47',0),(721,360,'Issue',353,'Bonjour,\r\n\r\nPB résolu...\r\nEn faisant les essais pour re-générer le certificat OPCUA par le serveur je me suis rendu compte qu\'il y avait 2 serveur qui tournaient. J\'en déduis donc que je me connectais toujours sur l\'ancien processus serveur qui avait en mémoire un certificat erroné. Donc quand j\'exécutais un nouveau serveur, le certificat public été bien généré mais le client UAExpert se connectait toujours sur l\'ancien processus serveur OPCUA (avec le mauvais certificat) !\r\nCe matin donc plus de problème notre certificat est donc cohérent et plus de problème de BadSignatureInvalid.\r\nOuf.\r\n\r\nDésolé pour le dérangement mais je ne comprenais plus rien.\r\nMerci pour votre aide.\r\nIncident à fermer.\r\nCordialement.\r\nF. TOURRET','2019-04-03 08:21:31',0),(722,360,'Issue',353,'Zut boulette le problème est toujours présent UAExpert était repassé en Basic128Rsa15\r\n\r\nJe vous fais un petit rapport avec les essais demandés.\r\n\r\nDésolé.','2019-04-03 09:20:46',0),(723,360,'Issue',1,'Bonjour,\r\nQuelques précisions. Lors d\'une connexion sécurisée:\r\n* Le serveur génèrera des warnings si les algo de hachage entre le client et le serveur sont différents.\r\n* Si vous utilisez le même certificat sur le client et sur le serveur vous obtiendrez des Warnings\r\n* Si vous utilisez UAExpert comme client. Vérifier la configuration des tests sur les CRL\r\n\r\nCordialement\r\nMichel Condemine','2019-04-03 09:46:52',0),(724,360,'Issue',353,'Ci-joint les essais effectués.\r\n\r\nMême problème avec le certificat généré par nos soins avec openssl ou celui généré par le serveur OPCUA.\r\n\r\nJe ne comprend pas : \"Vérifier la configuration des tests sur les CRL\".\r\nLes log serveur sont en mode STACK_ERROR est-ce le bon choix pour tracer le problème ?\r\n\r\nCordialement.\r\nF. TOURRET','2019-04-03 11:21:10',0),(725,360,'Issue',353,'Bonjour,\r\n\r\nAvez une piste ? Avez vous besoins de plus de log ?\r\nMerci pour un retour rapide, essais client le 10/04.\r\n\r\nCordialement,\r\nF. TOURRET\r\n','2019-04-05 10:28:18',0),(726,360,'Issue',1,'Bonjour M. Tourret,\r\nJe viens de corriger une erreur en Basic256 et continue mes vérifications en Basic256Sha256.\r\nJe vous tiens au courant.\r\nCordialement\r\nMichel Condemine','2019-04-09 10:23:52',0),(727,360,'Issue',1,'Fixed with 1.0.5.7_BETA05','2019-04-15 14:15:07',0),(728,361,'Issue',1,'Fixed with 1.0.5.7_BETA05','2019-04-15 14:15:33',0),(729,353,'Issue',1,'','2019-04-15 14:15:55',0),(730,344,'Issue',1,'Fixed with 1.0.5.7_BETA05','2019-04-15 14:16:19',0),(731,284,'Issue',1,'','2019-04-15 14:16:40',0),(732,286,'Issue',1,'','2019-04-15 14:16:54',0),(733,352,'Issue',1,'','2019-04-15 14:17:18',0),(734,363,'Issue',328,'Bonjour Michel,\r\n\r\nCi-joint la suite des essais.\r\nN\'hésitez pas à me contacter si besoin.\r\n\r\ncordialement','2019-04-19 20:23:28',0),(735,363,'Issue',1,'Bonjour,\r\nj\'ai corrigé de nombreux points durant ce week-end.\r\nIl reste, peut être, des problèmes que je n\'ai pas réussi a reproduire et des correctifs que je n\'ai pas pu valider. En particulier le retour a false des ARR_DRG_SON. \r\nL\'ELD 456 n\'ai pas émis par mes centrales.\r\nConcernant la création de l\'espace d\'adressage il faut encore vérifier et améliorer quelques points.\r\nEn particulier la gestion de POS_ATT et la prise en compte de groupes 1010,1011,1013,1014 et 1402. pour ces groupes des demandes de lecture (PointInformationRequest) sont réalisé mais aucune adresse ne me semble associé.\r\n\r\nMerci de regarder le document attaché.\r\n\r\nCordialement\r\nMichel','2019-04-22 11:05:55',0),(736,363,'Issue',328,'Bonjour,\r\n\r\nVoici le fichier d\'essai mis à jour.\r\n\r\nCordialement','2019-04-23 23:43:33',0),(737,363,'Issue',1,'Bonjour,\r\nje m\'occuperai de faire les modifications la semaine prochaine à mon retour a Montpellier.\r\n\r\nCordialement\r\nMichel','2019-04-24 18:07:40',0),(738,366,'Issue',353,'Bonjour,\r\nSuite aux essais que j\'ai fait ce jour.\r\nSi je me connecte sur le serveur en Basic256Sha256 avec un certificat CN = UaExpert@ATS_CEN1 pas de soucis la connexion est OK\r\nPar contre si je met le certificat du client dans UaExpert CN = ACQOPCUA@ATS_CEN1 ou ATS_CEN1 est le nom de ma machine, le certificat est rejeté systématiquement (manipulation identique chez le client).\r\nLog client :\r\n14:42:49.746 | Server Node | Server Debian VM 10.4.80.7 | Endpoint: \'opc.tcp://localhost:4880/CPF_L04\'\r\n14:42:49.746 | Server Node | Server Debian VM 10.4.80.7 | Security policy: \'http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256\'\r\n14:42:49.746 | Server Node | Server Debian VM 10.4.80.7 | ApplicationUri: \'urn:SCBGR:PISA:CPF_L04\'\r\n14:42:49.746 | Server Node | Server Debian VM 10.4.80.7 | Used UserTokenType: Anonymous\r\n14:42:49.871 | General | | [uastack] OpcUa_TcpConnection_ProcessResponse: Error Message!\r\n14:42:49.871 | General | | [uastack] OpcUa_TcpConnection_ProcessResponse: Status 0x801a0000!\r\n14:42:49.871 | Server Node | Server Debian VM 10.4.80.7 | Error \'BadCertificateUntrusted\' was returned during OpenSecureChannel\r\n14:42:49.871 | Server Node | Server Debian VM 10.4.80.7 | Connection status of server \'Server Debian VM 10.4.80.7\' changed to \'Disconnected\'.\r\n\r\nLog Serveur:\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-25T12:42:41.000Z SecureListener - PolicyManager_IsValidSecurityPolicy: Searched security policy found!\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-25T12:42:41.000Z \r\nverify error:\r\n num=18:self signed certificate\r\n depth=0\r\n /DC=ATS_CEN1/C=Fr/ST=Fr/L=Chatillon/O=Siemens/OU=ATS/CN=ACQOPCUA@ATS_CEN1\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-25T12:42:41.000Z ProcessOpenSecureChannelRequest: Client Certificate not valid! (0x801A0000)\r\n\r\nComment contourner ce problème ?\r\n\r\nEnsuite si j\'utilise le même certificat (qui fonctionne) pour l\'authentification, la connexion ne fonctionne pas.\r\nLog client :\r\n15:20:21.347 | Server Node | Server Debian VM 10.4.80.7 | Endpoint: \'opc.tcp://localhost:4880/CPF_L04\'\r\n15:20:21.347 | Server Node | Server Debian VM 10.4.80.7 | Security policy: \'http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256\'\r\n15:20:21.347 | Server Node | Server Debian VM 10.4.80.7 | ApplicationUri: \'urn:SCBGR:PISA:CPF_L04\'\r\n15:20:21.347 | Server Node | Server Debian VM 10.4.80.7 | Used UserTokenType: Certificate\r\n15:20:21.893 | Server Node | Server Debian VM 10.4.80.7 | Error \'BadIdentityTokenRejected\' was returned during ActivateSession\r\n15:20:21.909 | Server Node | Server Debian VM 10.4.80.7 | Connection status of server \'Server Debian VM 10.4.80.7\' changed to \'Disconnected\'.\r\n\r\nLog Serveur :\r\nVoir fichier joint\r\n\r\nMerci pour votre aide.\r\n\r\ncordialement,\r\nF. TOURRET\r\n','2019-04-25 15:35:36',0),(739,367,'Issue',353,'Bonjour,\r\n\r\nJ\'ai fait la modification pour pouvoir compiler, par contre ce Vpi ne se charge toujours pas dans le serveur !\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z Server is listening on IPV4 at :\r\n opc.tcp://localhost:4880/CPF_L04.\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z 1562 Nodes in the addressSpace split in \r\n 258 Objects 1047 Variables 0 Views 21 Methods \r\n 65 ObjectTypes 23 ReferenceTypes 114 DataTypes 34 VariableTypes\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z Press Q or q to exit.\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z Server Endpoint open. It\'s now listening at opc.tcp://localhost:4880/CPF_L04 with Binary Encoder\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z LoadVpiLibrary failed libVPINullEx.so error: (null)\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z Vpi version: 0.0.0.0 cannot be loaded.\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z Your XML Subsystem file : /data/ServerOpcUa/SubSystemVpi.xml has been parsed. Internal parsing result=0x00000\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z Subsystems were properly loaded\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z Start Updating UAVariables EncodeableObject\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z UAVariables EncodeableObject has been updated properly\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z Start Updating DataTypes EncodingType\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z DataTypes EncodingType has been updated properly\r\n|/log/ServerOpcUa/CPF_L04.log| 2019-04-26T06:25:07.000Z End Post-Parsing initialization\r\n\r\nCordialement,\r\nF. TOURRET','2019-04-26 08:26:01',0),(740,367,'Issue',1,'Bonjour,\nJ\'ai fais des tests sous Debian 9. Le VpiNullEx se charge correctement. J\'ai réalisé un autre Vpi plus complexe (TCP Serveur). Il se charge lui aussi correctement, aussi bien sous Debian 9 que sous CentOS 7.\nJe me demande si le CMakeLists.txt que vous utilisez est correctement formé ?\nvoir fichier ci-joint ?\nest ce que votre fichier de configuration du sous-système est correcte ?\nCordialement\nMichel Condemine','2019-04-26 10:35:50',0),(741,367,'Issue',353,'Ok cela fonctionne, il manquait la ligne importante :\r\nfind_library(VpiLibPath OpenOpcUaVpiLibrary ${LIBRARY_OUTPUT_PATH})\r\n\r\nMerci.\r\n\r\nJe vais donc maintenant préparer toutes la partie initialisation des nodes.\r\n\r\nBon Week-End.','2019-04-26 16:37:07',0),(742,373,'Issue',1,'Je ne pense pas que l\'on puisse utiliser cette approche, car si aucun groupe n\'est actif sur la centrale maitre il n\'y aura pas de réponse à la demande de PointInformationRequest.\r\n\r\n','2019-04-29 15:15:16',0),(743,376,'Issue',1,'La condition de création des AP sera :\r\nSi la zone contient le texte \"AP\" et que l\'un des points de cette zone appartient au groupe 1402 alors l\'AP sera créé.\r\nJ\'attends votre confirmation','2019-04-29 15:21:22',0),(744,375,'Issue',1,'Corrigé dans la version 0.0.1.2.\r\nUn bool n\'était pas initialisé lors de la creation automatiques de variables.\r\nMerci de faire le test et de clore l\'incident.','2019-04-29 15:46:07',0),(745,376,'Issue',328,'Après vérification, le mot AP n\'apparait pas forcément dans le nom de la zone donc il faut uniquement vérifier si un point avec le G1402 existe dans les Xbus des Rbus des CMSI maitres (channel 1, channel adress= 0 à 15, point category 2), si un point existe, il faut créer un AP avec comme n° de zone, le n° de zone attribuée à ce point. ','2019-04-29 15:57:03',0),(746,372,'Issue',1,'Avec le fichier de configuration OLW_FR23_2_REV746_DP8.xml\r\nj\'obtiens quelques mutlitag sur DFT_POS_ATT\r\n|4936| 2019-04-29T13:59:14.089Z MultiTag: 371/CCF TRIBAGAGE NodeId: ns=9;i=11907 Address:Z33.B0030.DFT_POS_ATT\r\n|4936| 2019-04-29T13:59:15.795Z MultiTag: 3784/Ved120N NodeId: ns=9;i=13879 Address:Z39.A0223.DFT_POS_ATT\r\n\r\nSuis-je supposé avoir d\'autres multitag sur cette révision ?','2019-04-29 16:03:01',0),(747,369,'Issue',1,'Il s\'agit du groupe 4 ?\r\nPar contre je ne peux pas associer deux libellés ADP à un groupe. je vais utilisé la même adresse.','2019-04-29 16:24:38',0),(748,372,'Issue',328,'Oui, \r\n\r\npar exemple dans la capture ci-jointe, pour la centrale 33, il y a un node A016 à créer et des multitags pour les adresses 16,15 et 1. \r\n ','2019-04-29 16:51:43',0),(749,369,'Issue',328,'Oui, il s\'agit du groupe 4, cet Event fonctionne déjà actuellement.\r\nEffectivement, il faudrait utiliser la même adresse pour les 2 nodes ARR_ALM_SON et ARR_DRG_SON.','2019-04-29 17:05:07',0),(750,372,'Issue',1,'Corrigé dans la version 0.0.1.2\r\nExemple de multitag généré par le VpiTycoEx\r\n* |17104| 2019-04-29T17:26:56.224Z FirstTag B2590/CCFAE002-V64N NodeId: ns=9;i=11293 Address:Z31.C0030.DFT_POS_ATT\r\n* |17104| 2019-04-29T17:26:56.225Z FirstTag B2590/CCFAE002-V64N NodeId: ns=9;i=11294 Address:Z31.C0030.DFT_POS_SECU\r\n* |17104| 2019-04-29T17:26:56.226Z FirstTag B2590/CCFAE002-V64N NodeId: ns=9;i=11295 Address:Z31.C0030.DRG\r\n* |17104| 2019-04-29T17:26:56.226Z FirstTag B2590/CCFAE002-V64N NodeId: ns=9;i=11296 Address:Z31.C0030.POS_ATT\r\n* |17104| 2019-04-29T17:26:56.228Z FirstTag B2590/CCFAE002-V64N NodeId: ns=9;i=11297 Address:Z31.C0030.POS_SECU\r\n* |17104| 2019-04-29T17:26:56.315Z MultiTag: B2590/CCFAE002-V64N NodeId: ns=9;i=11295 Address:Z31.C0025.DRG\r\n* |17104| 2019-04-29T17:26:56.315Z MultiTag: B2590/CCFAE002-V64N NodeId: ns=9;i=11296 Address:Z31.C0025.POS_ATT\r\n* |17104| 2019-04-29T17:26:56.315Z MultiTag: B2590/CCFAE002-V64N NodeId: ns=9;i=11293 Address:Z31.C0025.DFT_POS_ATT\r\n* |17104| 2019-04-29T17:26:56.315Z MultiTag: B2590/CCFAE002-V64N NodeId: ns=9;i=11295 Address:Z31.C0029.DRG\r\n* |17104| 2019-04-29T17:26:56.315Z MultiTag: B2590/CCFAE002-V64N NodeId: ns=9;i=11296 Address:Z31.C0029.POS_ATT\r\n* |17104| 2019-04-29T17:26:56.315Z MultiTag: B2590/CCFAE002-V64N NodeId: ns=9;i=11293 Address:Z31.C0029.DFT_POS_ATT','2019-04-29 19:30:31',0),(751,363,'Issue',1,'Compilation des issues restante dans les Issues 368 à 378','2019-04-29 19:32:26',0),(752,372,'Issue',328,'Parfait, c\'est ce qu\'il faut.\r\nSi le groupe est différent de G1008 pour l\'adresse 25 (dans votre exemple), est ce que cela fonctionne toujours ?','2019-04-29 20:00:21',0),(753,375,'Issue',328,'Ne fonctionne toujours pas, ce n\'est pas le bon lien réseau et je ne vois pas le vpiwrite correspondant dans le log.\r\nJe vous joint le log.','2019-04-30 21:07:02',0),(754,372,'Issue',328,'Fonctionnement OK avec Vpi 0.0.1.2\r\n\r\nPar contre,si le groupe est différent de G1008 pour l\'adresse 25 (dans votre exemple), est ce que cela fonctionne toujours ?\r\n','2019-04-30 21:10:27',0),(755,373,'Issue',328,'FMSI: POS_ATT et DRG, ne fonctionnement pas correctement. \r\n\r\nOn interroge spécifiquement le G1010, on peut donc récupérer son état 0, si son état = 0 alors on met POS_ATT à True et DRG à False','2019-04-30 21:17:38',0),(756,375,'Issue',1,'J\'ai changé les paramètres d\'initialisation de la zoneLink et de n° de secteur en fonction des paramètres lues dans le fichier conSys.\r\nPar contre j\'ai laissé le groupe d\'activation à 1015 pour ZC,ZF et ZA. Y a t il une solution pour le lire dans le fichier ?\r\n<pre>\r\n2019-05-01T13:46:53.426Z INFO VpiWriteValue>Send a CMD_MS_UAE on Z37.W0033.1015.Z002.CMD_MS_UAE\r\n</pre>\r\nCes modifications seront dans la version 0.0.1.3','2019-05-01 15:58:46',0),(757,375,'Issue',1,'Je viens de recevoir votre mail et corrige les groupes d\'activation pour AP et UGA','2019-05-01 16:00:40',0),(758,375,'Issue',328,'Le groupe est bien 1015 pour les ZC, ZF\r\nPar contre pour le CMD_MS_UAE des UGA, c’est 1129\r\nEt pour le CMD_AP_UAE, c’est 1400\r\n\r\nPour les lire dans le fichier cela va être compliqué, est ce que cela est compliqué d\'ajouter dans le fichier dat, la possibilité de les rendre paramétrable, exemple:\r\nGROUPE_CMD_MS_UAE_ZS 1015\r\nGROUPE_CMD_MS_UAE_ZA 1129\r\nGROUPE_CMD_AP_UAE 1400','2019-05-01 16:09:17',0),(759,372,'Issue',1,'JE ne suis pas certain des comprendre votre question. \r\nEst ce que vous pourriez clarifier ?','2019-05-01 16:35:53',0),(760,377,'Issue',328,'Dans la réponse \"pointInformationReply\" PID149, la n° de la zone se trouve en D+14.\r\n\r\nVotre question concerne la requête ou la réponse ?','2019-05-01 16:39:07',0),(761,377,'Issue',1,'Ma question concerne la réponse.\r\nMais D+14 correspond à AreaNumber. Ce qui semble impossible compte tenu des réponses envoyé par ma CMSI.\r\nPrenons un exemple : \r\nLors de la lecture dans le fichier conSys je lis une zone numéro 1 lors de la pointInformationReply AreaNumber = 2 et LogicalPointZone=1\r\nDonc, en utilisant AreaNumber je suis incapable de fabriquer l\'adresse qui a généré le changement.\r\n* Adresse fabriqué a partir de consys : Z37.Z0001.MS\r\n* Adresse fabriqué a partir de la réponse et en utilisant AreaNumber : Z37.Z0002.MS\r\n\r\nIl y a un problème !!!\r\n','2019-05-01 16:47:11',0),(762,377,'Issue',328,'Effectivement, le n° de la zone doit plutôt se trouver dans la LogicalPointZone (D+8)\r\n','2019-05-01 17:03:16',0),(763,372,'Issue',328,'Est ce que lors du scan du fichier xml, si on trouve un point ayant le même libéllé que d\'autres points attibués à G1000 et G1004, mais dont le groupe n\'est pas G1008, ce point est-il pris en compte dans le multitag ?\r\n\r\nJe pose cette question car dans certains cas le groupe peut être différent de G1008.\r\n\r\nVoici un extrait de mon email du 12/10:\r\n\r\n3) Pour créer les adresses multi -tag de cet ASS :\r\n\r\nRechercher les adresses de point ayant le même libellé,\r\nsi le groupe attribué est G1004 alors cette adresse de point correspondra à un multi tag pour les adresses DRG, POS_ATT et DFT_POS_ATT\r\nsi le groupe attribué n’est pas G1004 alors l’adresse de point correspondra à un multi tag pour les adresses DRG.\r\n','2019-05-01 17:34:13',0),(764,375,'Issue',1,'','2019-05-02 15:15:13',0),(765,376,'Issue',1,'Un AP peut être un ZF. Il n\'apparaissait donc pas lors de la création.\r\nLe code a été modifié pour permettre la création d\'AP qui sont aussi des ZF.\r\nIl faudrait modifier, dans le cadre d\'une evolution, le DisplayName et le BrowseName pour ajouter un préfix AP_ dans libelle de la zone sur le les APType.','2019-05-02 18:16:34',0),(766,376,'Issue',1,'','2019-05-02 18:16:44',0),(767,374,'Issue',1,'','2019-05-02 18:17:11',0),(768,372,'Issue',1,'Ajout du groupe 1088 dans la création des adresses multi-tag.\r\n1004, 1008 et 1088 seront utilisées pour le multi-tag','2019-05-02 18:20:23',0),(769,369,'Issue',1,'','2019-05-02 18:27:59',0),(770,373,'Issue',1,'','2019-05-03 12:04:15',0),(771,370,'Issue',1,'Il n\'y aucune relation possible avec le Vpi','2019-05-03 12:04:51',0),(772,367,'Issue',1,'','2019-05-06 09:40:50',0),(773,371,'Issue',328,'Bonjour,\r\n\r\nj\'ai fait une modification dans la prog SSI qui ne nécessite plus d\'avoir à interroger le voyant.\r\n\r\nPar contre, il semble que le passage à False par la \"procédure de reset\" ne fonctionne pas.\r\n\r\nCordialement.','2019-05-06 17:32:05',0),(774,369,'Issue',328,'Bonjour,\r\n\r\nla commande par les 2 variables ARR_ALM_SON et ARR_DRG_SON fonctionnent.\r\n\r\nLa remise à False par l\' Event Zxx.L0006.ARR_DRG_SON ne fonctionne pas.\r\n\r\nCordialement.','2019-05-06 17:35:40',0),(775,362,'Issue',328,'Nouvelle config nommé \"MAQUETTE_VPIEX_NF\" comprenant un multitag envoyé et téléchargé le 02/05/19.','2019-05-06 17:40:44',0),(776,336,'Issue',328,'','2019-05-06 17:41:38',0),(777,341,'Issue',328,'','2019-05-06 17:44:07',0),(778,333,'Issue',328,'','2019-05-06 17:45:02',0),(779,311,'Issue',328,'','2019-05-06 17:46:07',0),(780,377,'Issue',328,'Semble OK avec D+8, reste à essayer avec plusieurs zones','2019-05-06 17:48:10',0),(781,261,'Issue',328,'Bonjour,\r\n\r\nPouvez-vous me lister tous les groupes qui passent ALM à False ?\r\n\r\nMerci.\r\n\r\nCordialement.','2019-05-06 18:00:40',0),(782,260,'Issue',328,'','2019-05-06 18:01:24',0),(783,259,'Issue',328,'OK, variable PANEL_EN_SRV à renseigner dans le fichier .dat\r\n','2019-05-06 18:04:40',0),(784,259,'Issue',328,'Voir issue #368','2019-05-06 18:06:26',0),(785,258,'Issue',328,'','2019-05-06 18:07:37',0),(786,309,'Issue',328,'','2019-05-06 18:08:16',0),(787,330,'Issue',328,'','2019-05-06 18:08:39',0),(788,375,'Issue',328,'Bonjour,\r\n\r\nIl reste les essais CMD_AP_UAE a réaliser.\r\n\r\nEst-il possible d\'ajouter la possibilité de rendre paramétrable les groupes dans le fichier .dat, par exemple:\r\nGROUPE_CMD_MS_UAE_ZS 1015\r\nGROUPE_CMD_MS_UAE_ZA 1129\r\nGROUPE_CMD_AP_UAE 1400\r\n','2019-05-06 18:16:07',0),(789,378,'Issue',1,'Bonjour,\r\nla gestion des zones est identiques sur les deux versions du Vpi.\r\nJe m\'abonne et j\'attends des informations des centrales.\r\nJ\'envoie un PID:131 quand je ne suis pas encore abonné. \r\nC\'est la reception d\'un PID:132 qui marque les zones comme abonnées.\r\nLa reception d\'un PID:132 toutes les 4 min est forcément à l\'initiative des centrales.\r\n\r\nCordialement\r\nMichel','2019-05-07 17:43:42',0),(790,372,'Issue',1,'','2019-05-07 17:44:31',0),(791,368,'Issue',1,'Fixed in 0.0.1.9','2019-05-09 15:16:16',0),(792,369,'Issue',1,'','2019-05-09 15:32:50',0),(793,375,'Issue',1,'Evolution','2019-05-09 16:17:27',0),(794,371,'Issue',328,'Bonjour,\r\n\r\nOK, bien pris en compte dans la procédure de reset maintenant.\r\n\r\nCdlt.\r\n\r\nNF','2019-05-10 11:17:18',0),(795,376,'Issue',328,'Bonjour,\r\n\r\nReste à faire sur AP:\r\n\r\nManque le prefixe AP dans le BrowseName/ DisplayName/Libellé\r\n\r\nDans la requête par groupe spécifique, remplacer G1402 par G1404 et :\r\nsi G1404 est fixe on passe CMD_AP_SSI à True, si éteint on passe CMD_MS_SSI à False\r\nsi G1404 est clignotant on passe CMD_AP_UAE à True, si éteint on passe CMD_MS_UAE à False\r\nsi G1404 est clignotant ou fixe on passe AP à True\r\n\r\nPour la commande CMD_AP_UAE: lors du passage à True par le client, activer G1405 et lors du passage à False activer à nouveau G1405, on a le retour d\'état par la requête du G1404.\r\n\r\nMerci.\r\n\r\nCdlt.\r\n','2019-05-10 11:29:10',0),(796,369,'Issue',328,'Bonjour,\r\n\r\nARR_ALM_SON ne passe pas à False sur reception d\'un EVD 456\r\n\r\nCdlt.\r\n\r\nNF','2019-05-10 11:32:21',0),(797,379,'Issue',1,'Bonjour,\r\nil ne s\'agit pas d\'une anomalie mais d\'une evolution.\r\nCordialement\r\nMichel','2019-05-10 11:46:21',0),(798,376,'Issue',1,'Bonjour,\r\nil ne s\'agit pas d\'une anomalie mais d\'une evolution.\r\nCordialement\r\nMichel','2019-05-10 11:47:06',0),(799,325,'Issue',1,'','2019-05-10 11:47:35',0),(800,261,'Issue',328,'Bonjour,\r\n\r\nLe phénomène de \"disparition\" du détecteur en alarme, c\'est à dire du passage à False de ALM sans réarmement de l\'ECS s\'est à nouveau reproduit il y 3 semaines.\r\n\r\nPouvez-vous vérifier s\'il reste des Events ou EVD qui peuvent passer ALM à False et les supprimer le cas échéant.\r\n\r\nMerci.\r\n\r\nCdlt.\r\n\r\nNF','2019-05-10 12:11:43',0),(801,383,'Issue',353,'Idem après la VpiColdStart(). \r\nPremier appel, échec pas de connexion TCP avec la source de données, le serveur passe en 1 (Failed)\r\nDeuxième appel, connexion TCP OK avec la source de données, le serveur reste en failed !\r\n\r\nFaut\'il gérer manuellement le fait de remettre l\'état du serveur à OK ? Comme le VpiDeviceState.\r\n\r\nCordialement,\r\nF. TOURRET','2019-05-13 11:19:40',0),(802,383,'Issue',1,'Bonjour,\r\nc\'est une question intéressant.\r\nDans tous les cas vous pouvez gérer le State (2259) depuis le Vpi. \r\nCependant je pourrais implémenter un comportement par défaut qui basculerai le State (2259) en fonction de l\'état de tous les Vpis pris en charge par une instance du serveur.\r\nJe vais réfléchir a cette évolution.\r\n\r\nCordialement\r\nMichel','2019-05-14 14:14:48',0),(803,384,'Issue',1,'Il y a plusieurs choses que ne vont pas dans votre code.\r\nTout tourne autour des points suivants :\r\n- Mise à jour de la cache du Vpi non réalisé\r\n- utilisation de Vpi_NodeId_Compare inutile. Comparer les pointeurs de CSourceObject. C\'est plus simple et plus performant.\r\nCordialement\r\nMichel','2019-05-14 14:23:19',0),(804,384,'Issue',1,'','2019-05-14 14:23:49',0),(805,385,'Issue',1,'0 = node identique, autre ils sont différent','2019-05-14 14:24:59',0),(806,386,'Issue',1,'eLe Vpi est responsable de sa DataCache. Donc, oui, lors d\'une fonction d\'écriture il doit mettre à jour sa cache.','2019-05-14 14:31:05',0),(807,387,'Issue',1,'Le Read alimente le DeviceState et chacun des tags pris en charge par le Vpi.\r\nSi un Read retourne !=Vpi_Good alors le serveur passe ses tags en BadDeviceFailure. \r\nCependant le Read devrait toujours retourner Good sauf erreur critique.\r\npour le Write :\r\n On WarmStart needed then prepare for a call the WarmStart otherwise update the written tag Statuscode according to the Vpi low level StatusCode (pValue->StatusCode).','2019-05-14 14:44:45',0),(808,384,'Issue',353,'Ok pour la comparaison des pointeurs, je n\'y avait pas pensé.\r\nPar contre je ne comprend pas pourquoi vous dites que le cache n\'est pas mis à jour.\r\nJ\'ai essayé de procéder comme pour le VpiDeviceState qui fonctionne bien pourtant... Je ne plante plus maintenant avec la correction ci-dessous, mais sous UAExpert je ne voit pas les statuscode changer. D’ailleurs la zone centrale de UAExpert semble mal se rafraichir...\r\n for (it = VpiCache->begin() ; it != VpiCache->end() ; it++)\r\n {\r\n // Pour chaque élément on positionne la valeur à Vpi_BadCommunicationError\r\n CSourceObject * Objet = *it; // On récupère l\'objet du vecteur\r\n Vpi_NodeId NodeId = Objet->GetNodeId(); // On récupére son Node\r\n Vpi_NodeId_CopyTo(&NodeId, &pIds[i]); // On le copie NodeId dans le tableau\r\n if (deviceState != Objet) // On ne traite pas le VpiDeviceState déjà fait\r\n {\r\n Vpi_String tmpStr;\r\n Vpi_String_Initialize(&tmpStr);\r\n Vpi_NodeId_ToString(NodeId, &tmpStr);\r\n LOG(INFO,\"Bad comm sur le node : %s\",Vpi_String_GetRawString(&tmpStr));\r\n Vpi_DataValue* tmpValue = Objet->GetValue();\r\n tmpValue->Value.Value.StatusCode = Vpi_BadCommunicationError; // On affecte le nouveau status\r\n tmpValue->Value.Value.DateTime = Vpi_DateTime_UtcNow(); // On affecte l\'heure de modification\r\n Vpi_DataValue_CopyTo(tmpValue, &pValues[i]);\r\n i++;\r\n Vpi_String_Clear(&tmpStr);\r\n }\r\n }\r\n // Libération du cache\r\n Vpi_Mutex_Unlock(pVpiDESPCCL04->m_SourceObjectMutex);\r\n\r\n // Appel de la call Back server\r\n pFuncNotifyCallback(nbelements, pIds, pValues, &pResult, Vpi_Null, Vpi_Null);\r\n','2019-05-14 15:11:02',0),(809,384,'Issue',353,'ZUT problème de copier coller...\r\n\r\n for (it = VpiCache->begin() ; it != VpiCache->end() ; it++)\r\n {\r\n // Pour chaque élément on positionne la valeur à Vpi_BadCommunicationError\r\n CSourceObject * Objet = *it; // On récupère l\'objet du vecteur\r\n Vpi_NodeId NodeId = Objet->GetNodeId(); // On récupére son Node\r\n Vpi_NodeId_CopyTo(&NodeId, &pIds[i]); // On le copie NodeId dans le tableau\r\n if (deviceState != Objet) // On ne traite pas le VpiDeviceState déjà fait\r\n {\r\n Vpi_String tmpStr;\r\n Vpi_String_Initialize(&tmpStr);\r\n Vpi_NodeId_ToString(NodeId, &tmpStr);\r\n LOG(INFO,\"Bad comm sur le node : %s\",Vpi_String_GetRawString(&tmpStr));\r\n Vpi_DataValue* tmpValue = Objet->GetValue();\r\n tmpValue->Value.Value.StatusCode = Vpi_BadCommunicationError; // On affecte le nouveau status\r\n tmpValue->Value.Value.DateTime = Vpi_DateTime_UtcNow(); // On affecte l\'heure de modification\r\n Vpi_DataValue_CopyTo(tmpValue, &pValues[i]);\r\n i++;\r\n Vpi_String_Clear(&tmpStr);\r\n }\r\n }\r\n // Libération du cache\r\n Vpi_Mutex_Unlock(pVpiDESPCCL04->m_SourceObjectMutex);\r\n\r\n // Appel de la call Back server\r\n pFuncNotifyCallback(nbelements, pIds, pValues, &pResult, Vpi_Null, Vpi_Null);\r\n','2019-05-14 15:13:47',0),(810,388,'Issue',1,'Le support du J3 est dans la section fichier.\r\nJe publierai un template demain de Vpi demain\r\nCordialement\r\nMichel','2019-05-14 16:09:23',0),(811,384,'Issue',1,'Pour le statucCode est le timestamp cela devrait être bon','2019-05-14 16:12:25',0),(812,383,'Issue',353,'J\'ai ajouté ceci dans le thread de reception de données, mais le serverSate reste à Failed (quand la coldSart à échoué un fois).\r\n\r\n // Récupération du node de l\'objet ServerState du Cache\r\n Vpi_NodeId ServerStateNodeId;\r\n Vpi_NodeId_Initialize(&ServerStateNodeId);\r\n Vpi_NodeId_CopyTo(&pVpiDESPCCL04->m_ServerStateNodeId, &ServerStateNodeId);\r\n CSourceObject* serverState = pVpiDESPCCL04->GetSourceObject(ServerStateNodeId);\r\n // Préparation de la value\r\n Vpi_DataValue* pValue = serverState->GetValue();\r\n pValue->Value.Value.Int32 = Vpi_Good;\r\n Vpi_UInt32 nbelements = 1;\r\n\r\n Vpi_StatusCode* pResult = (Vpi_StatusCode*)malloc(sizeof(Vpi_StatusCode) * nbelements); // tableau de pResult\r\n\r\n pFuncNotifyCallback(nbelements, &ServerStateNodeId, pValue, &pResult, Vpi_Null, Vpi_Null);\r\n\r\nQu\'est-ce que j\'ai loupé ?\r\n\r\nMerci','2019-05-14 16:42:33',0),(813,383,'Issue',353,'Bonjour,\r\n\r\nAvec les essais que j\'ai fait ce matin, le fait de mettre le ServerState dans le Cache du Vpi pose problème dans la VpiReadValue(). Ceci provoque alors un blocage du serveur (il ne répond plus aux demandes de UAExpert).\r\nPeut on réellement gérer le serveur State du Vpi ? Comment ?\r\n\r\nPourquoi quand VpiColdStart() et VpiWarmStart() retournent Vpi_Good le serverState ne se remet pas à Running automatiquement ?\r\n\r\nF. TOURRET','2019-05-15 09:29:58',0),(814,383,'Issue',353,'Bon j\'avais fait une boulette et je ne libérais plus le cache du Vpi, d\'ou mes soucis.\r\n\r\nDonc OK j\'ai le ServerState dans le cache du VPI mais impossible de remettre la valeur à 0 running.\r\nLe VpiDeviceState.statuscode change bien à la coupure de comm avec la source de données et au rétablissement.\r\nPar contre impossible de changer le ServerState pour le remettre à running et le StatusCode des nodes lors de la coupure de comm.\r\n\r\nvoid * ClientTCP_onDisconnect(CClientDataGen* _clientTCP, void * _params)\r\n{\r\n // Cast des paramètres dans le bon format\r\n CVpiDESPCCL04 * pVpiDESPCCL04 = (CVpiDESPCCL04*) _params;\r\n // TODO perte de connexion X\r\n // -set devicestate à WarmstartNeeded X\r\n // -set des nodeId à BadCommunicationError avec protection mutex\r\n // -Appel de la callbackserver X\r\n\r\n // On positionne le WarmStartNeed car le connexion client est coupée\r\n // Récupération du node de l\'objet DeviceState du Cache\r\n LOG(INFO,\"ClientTCP_onDisconnect\");\r\n Vpi_NodeId DeviceStateNodeId;\r\n Vpi_NodeId_Initialize(&DeviceStateNodeId);\r\n Vpi_NodeId_CopyTo(&pVpiDESPCCL04->m_DeviceStateNodeId, &DeviceStateNodeId);\r\n // Récupération du node de l\'objet ServerState du Cache\r\n Vpi_NodeId ServerStateNodeId;\r\n Vpi_NodeId_Initialize(&ServerStateNodeId);\r\n Vpi_NodeId_CopyTo(&pVpiDESPCCL04->m_ServerStateNodeId, &ServerStateNodeId);\r\n\r\n // Protection du cache\r\n Vpi_Mutex_Lock(pVpiDESPCCL04->m_SourceObjectMutex);\r\n\r\n CSourceObject* deviceState = pVpiDESPCCL04->GetSourceObject(DeviceStateNodeId);\r\n CSourceObject* serverState = pVpiDESPCCL04->GetSourceObject(ServerStateNodeId);\r\n // Préparation de la value pour deviceSate\r\n Vpi_DataValue* pDSValue = deviceState->GetValue();\r\n pDSValue->Value.Value.StatusCode = Vpi_WarmStartNeed;\r\n\r\n // CallBack du serveur\r\n PFUNCNOTIFYCALLBACK pFuncNotifyCallback = (PFUNCNOTIFYCALLBACK)pVpiDESPCCL04->GetNotifyCallback();\r\n // Construire la liste des nodes à passer à la callback\r\n CSourceObjectList* VpiCache = pVpiDESPCCL04->GetSourceObjectList();\r\n Vpi_UInt32 nbelements = VpiCache->size();\r\n vector<CSourceObject *>::iterator it;\r\n Vpi_UInt32 i = 0;\r\n Vpi_NodeId* pIds = (Vpi_NodeId*)malloc(sizeof(Vpi_NodeId) * nbelements); // tableau de pNodeIds\r\n Vpi_DataValue* pValues = (Vpi_DataValue*)malloc(sizeof(Vpi_DataValue) * nbelements); // tableau de pValues\r\n Vpi_StatusCode* pResult = (Vpi_StatusCode*)malloc(sizeof(Vpi_StatusCode) * nbelements); // tableau de pResult\r\n for (it = VpiCache->begin() ; it != VpiCache->end() ; it++)\r\n {\r\n // Pour chaque élément on positionne la valeur à Vpi_BadCommunicationError sauf DeviceState\r\n CSourceObject * Objet = *it; // On récupère l\'objet dans le vecteur\r\n Vpi_NodeId NodeId = Objet->GetNodeId(); // On récupére son Node\r\n if (Objet != serverState) // On ne met pas à jour le serverState\r\n {\r\n //Vpi_NodeId_CopyTo(&NodeId, &pIds[i]); // On le copie NodeId dans le tableau\r\n pIds[i] = NodeId;//Objet->GetNodeId();\r\n Vpi_DataValue* tmpValue = Objet->GetValue(); // recupère l\'adresse de la value\r\n Vpi_String tmpStr;\r\n Vpi_String_Initialize(&tmpStr);\r\n Vpi_NodeId_ToString(NodeId, &tmpStr);\r\n LOG(INFO,\"Node mis à jour : %s\",Vpi_String_GetRawString(&tmpStr));\r\n // Vpi_String_Clear(&tmpStr);\r\n if (Objet != deviceState) // On ne traite pas le VpiDeviceState déjà fait\r\n {\r\n tmpValue->Value.Value.DateTime = Vpi_DateTime_UtcNow(); // On affecte l\'heure de modification\r\n tmpValue->Value.Value.StatusCode = Vpi_BadCommunicationError; // On affecte le nouveau status\r\n }\r\n Vpi_DataValue_CopyTo(tmpValue, &pValues[i]);\r\n i++;\r\n }\r\n }\r\n // Libération du cache\r\n Vpi_Mutex_Unlock(pVpiDESPCCL04->m_SourceObjectMutex);\r\n\r\n // Appel de la call Back server\r\n LOG(INFO,\"ClientTCP_onDisconnect : Appel de la CallBackServer, nbnodes : %i\",i);\r\n pFuncNotifyCallback(nbelements, pIds, pValues, &pResult, Vpi_Null, Vpi_Null);\r\n\r\n return Vpi_Null;\r\n}\r\n','2019-05-15 16:28:35',0),(815,383,'Issue',1,'Ci-dessous le code d\'une méthode qui change le serverState.\r\nAttention a ne pas l\'appler depuis un point d\'entrée du Vpi.\r\n<pre>\r\nVpi_StatusCode UASubSystem::CVpiInternalData::ChangeServerState(Vpi_ServerState newState)\r\n{\r\n Vpi_StatusCode uStatus = Vpi_Good;\r\n PFUNCNOTIFYCALLBACK pFuncNotifyCallback = (PFUNCNOTIFYCALLBACK)GetNotifyCallback();\r\n if (pFuncNotifyCallback)\r\n {\r\n // Now Transfert to the OOUAServer in the node OpcUaId_Server_ServerStatus_State (2259)\r\n Vpi_NodeId vpiNodeId;\r\n Vpi_NodeId_Initialize(&vpiNodeId);\r\n vpiNodeId.Identifier.Numeric = 2259;\r\n Vpi_DataValue* pValue = (Vpi_DataValue*)malloc(sizeof(Vpi_DataValue));\r\n Vpi_DataValue_Initialize(pValue);\r\n pValue->Value.Datatype = 29;\r\n pValue->Value.Value.Int32 = newState;\r\n pValue->StatusCode = Vpi_Good;\r\n pValue->SourceTimestamp = Vpi_DateTime_UtcNow();\r\n Vpi_StatusCode* pResults = (Vpi_StatusCode*)malloc(sizeof(Vpi_StatusCode));\r\n uStatus = pFuncNotifyCallback(1, &vpiNodeId, pValue, &pResults, (Vpi_Handle)this, Vpi_Null);\r\n Vpi_DataValue_Clear(pValue);\r\n free(pValue);\r\n Vpi_NodeId_Clear(&vpiNodeId);\r\n if (pResults)\r\n free(pResults);\r\n }\r\n else\r\n uStatus = Vpi_BadInternalError;\r\n return uStatus;\r\n}\r\n</pre>\r\n\r\nCordialement\r\nMichel ','2019-05-15 16:36:55',0),(816,384,'Issue',353,'Non ça ne fonctionne pas. Le timestamp semble bien être mis à jour mais impossible de changer le statusCode des nodes.\r\nLe datetime modifie sur les nodes dans le VPi correspond au SourceTimeStamp ou ServerTimestamp ?','2019-05-15 16:42:48',0),(817,383,'Issue',353,'Super quand on sait que le datatype du serverstate est 29 tout marche !!!\r\nEt comme le Vpitype correspondant n\'est pas déclaré, je ne pouvais pas le deviner...','2019-05-15 16:45:08',0),(818,384,'Issue',1,'Vous souhaitez faire quoi avec ce code ?\r\n<pre>\r\n tmpValue->Value.Value.StatusCode = Vpi_BadCommunicationError; // On affecte le nouveau status\r\n tmpValue->Value.Value.DateTime = Vpi_DateTime_UtcNow(); // On affecte l\'heure de modification\r\n</pre>\r\n\r\nLa deuxième ligne ne changera jamais le timestamp.','2019-05-15 16:46:24',0),(819,383,'Issue',1,'Bonjour,\r\nLa definition de toutes les nodes est dans les nodeset.\r\nIl faut prendre l\'habitude de les lire.\r\n\r\nCordialement\r\nMichel\r\n','2019-05-15 16:50:04',0),(820,384,'Issue',353,'Je souhaite mettre le statusCode de tous les nodes du cache en erreur sur perte de comm avec la source de données, comme vous l\'avez conseillé lors de la formation.','2019-05-15 16:54:52',0),(821,384,'Issue',1,'Oui mais plus précisément avec \r\npValues[i].Value.Value.DateTime = Vpi_DateTime_UtcNow(); ','2019-05-15 17:09:58',0),(822,383,'Issue',353,'Ben oui erreur de novice. Comme Obelix vous êtes tombé dedans il y a longtemps, nous on démarre juste et le sujet est plutôt velu.\r\n\r\nEnfin avec ce petit exemple j\'ai résolu tout mes problèmes en 5 petites minutes (ServerState, SatusCode des node #384, etc).\r\nComme quoi le template Vpi serai le bien venu pour avancer rapidement.\r\n\r\nMerci.','2019-05-15 17:28:51',0),(823,383,'Issue',1,';)\r\nJe ferme donc le 383 et 384.\r\nJe m\'occupe aussi du template','2019-05-15 17:40:24',0),(824,383,'Issue',1,'','2019-05-15 17:40:38',0),(825,384,'Issue',1,'','2019-05-15 17:40:59',0),(826,389,'Issue',1,'Bonjour,\r\nci-dessous une réponse à tes questions \r\n-Est il possible d\'initialiser un Tableau statique de structure à une taille fixe directement dans le model?\r\n C\'est pas forcement très simple mais normalement c\'est possible. Il faudrait cependant valider le comportement avec la version 1.0.5.7 finale.\r\n-Est il possible d\'initialiser une structure à des valeurs par défauts (je n\'ai pas réussi pour l\'instant...)directement dans le model?\r\n Je pense. Je vais y réfléchir\r\n-Comment fait on avec uaexpert pour qu\'on ne puisse utiliser qu\'un utilisateur en particulier avec un login et mot de passe\r\n Pourrais tu préciser la question. Souhaites tu n\'utiliser qu\'un utilisateur ? Tu peux utiliser l\'utilisateur OpenOpcUa.\r\n-Peut on envoyer des images avec le serveur, j\'ai réussi mais des que la taille augmente le serveur se désabonne est ce normal?\r\n Ce n\'ai pas normale. J\'ai déjà constaté des limite avec UAExpert. Est ce que tu peux regarder son log ?\r\n-Je crois que je t\'avais déjà posé la question mais peut on aspirer un model d\'un serveur via un autre actuellement?\r\n Oui\r\n\r\nJ\'espère que ces réponse te permettront d\'avancer.\r\n\r\nCordialement\r\nMichel','2019-06-11 17:11:59',0),(827,389,'Issue',374,'\r\n-Je crois que je t\'avais déjà posé la question mais peut on aspirer un model d\'un serveur via un autre actuellement?\r\nOui mais comment ? as tu un exemple ?\r\n\r\nMerci,\r\n\r\nCordialement,\r\n\r\nBenoit\r\n','2019-06-11 17:20:53',0),(828,387,'Issue',1,'','2019-06-19 16:43:30',0),(829,386,'Issue',1,'','2019-06-19 16:44:00',0),(830,385,'Issue',1,'','2019-06-19 16:44:22',0),(831,387,'Issue',1,'','2019-06-19 16:44:49',0),(832,366,'Issue',1,'','2019-06-19 16:45:12',0),(833,364,'Issue',1,'','2019-06-19 16:45:44',0),(834,358,'Issue',1,'','2019-06-19 16:46:23',0),(835,347,'Issue',1,'','2019-06-19 16:46:50',0),(836,288,'Issue',1,'','2019-06-19 16:47:22',0),(837,285,'Issue',1,'','2019-06-19 16:47:58',0),(838,388,'Issue',1,'Vous avez dans la dernière beta un exemple a jour','2019-06-19 16:49:40',0),(839,382,'Issue',353,'Bonjour,\r\n\r\nPB toujours présent sur la 1.0.5.7_RC05.\r\nComme j\'ai un bug aléatoire sur le VPI, je ne peux pas utiliser sanitize car il arrête sur ce problème et donc occulte mes soucis.\r\n\r\navez vous regardé ?\r\n\r\nCordialement,\r\nF. TOURRET\r\n','2019-06-24 10:07:16',0),(840,391,'Issue',1,'Bonjour,\nje ne suis pas certain de bien comprendre. Est ce que la description ci-dessous est correcte ?\nVous avez un problème de reconnaissance des certificats du client. \nVous devez pour vous connecter :\n# modifier la date du PC client, \n# recréer le certificat du client UA\n# Vous connecter au serveur \n\nAvez vous vérifié que les fuseaux et les informations DST des machines client et serveur sont identiques ? \n\nCordialement\nMichel Condemine','2019-06-25 15:54:53',0),(841,391,'Issue',353,'Quand on créer un nouveau certificat client (pour une nouvelle machine), il est systématiquement refusé par le serveur.\r\n\r\nDu coup la manip consiste à créer un certificat \"agé\" en changeant la date du PC client.\r\nEn remettant la date correctement sur le PC client on se retrouve alors avec un certificat \"ancien\" (date de début du certificat au 01/06/2019 par exemple).\r\n\r\nLà le fonctionnement est normal. On trust le certificat côté serveur et la connexion peut se faire normalement.\r\n\r\nCela ressemble à l\'incident #352, mais j\'ai vérifier le correctif est appliqué.\r\nLes fuseaux horaires sont bons et l\'horloge est synchro entre le client et le serveur.\r\n\r\nPar contre, que sont les informations DST ?\r\n\r\nMerci.\r\n\r\nCordialement.\r\n\r\nF. TOURRET\r\n\r\n','2019-06-25 16:41:23',0),(842,391,'Issue',1,'Bonjour,\r\ndésolé pour les acronymes. DST = Daylight Saving Time. (heure d\'été, d\'heure d\'hivers).\r\nJe ne comprends pas le début de votre message. \r\n<pre>\r\nQuand on créer un nouveau certificat client (pour une nouvelle machine), il est systématiquement refusé par le serveur.\r\n</pre>\r\n\r\nC\'est normal. Il faut le déplacer depuis rejected vers cert. Y a t il autre chose ?\r\n\r\nCordialement\r\nMC','2019-06-25 16:46:45',0),(843,391,'Issue',353,'Bonjour,\r\n\r\nVous trouverez ci-joint les log Client (UaExpert) et ServeropcUa (Stack_Error).\r\n\r\nConnexion avec un nouveau certificat non Trusté, puis trusté côté serveur -> Echec de connexion.\r\nConnexion avec un ancien certificat non Trusté, puis trusté côté serveur -> Connexion OK.\r\n\r\nCordialement.\r\nF. TOURRET','2019-06-27 07:33:58',0),(844,392,'Issue',1,'Bonjour,\r\nl\'erreur 0x800A0000 correspond à OpcUa_BadTimeout. \r\nLe client semble se déconnecter. Je dirais que le serveur entre dans une sorte de deadlock.\r\nEn dehors de la modification du statuscode, la mise à jour de la cache du Vpi le doit pas être faite par la fonction d\'écriture.\r\nLa thread de lecture de la data source doit être le seul moyende mise à jour des caches du Vpi et du serveur.\r\n\r\nJ\'espère que cela vous aidera.\r\n\r\nCordialement\r\nMC','2019-06-27 12:53:37',0),(845,392,'Issue',353,'Bon si je comprend bien.\r\n\r\nLe thread métier qui tourne dans le Vpi doit surveiller :\r\n - Les données sources arrivant par TCP, faire le traitement, mettre à jour la cache VPI et appeler la CallBackServer\r\n - Les données mise à jour par les clients OpcUa par l\'intermédiaire de la VpiWriteValue (appelée par le serveur), mettre à jour la cache VPI et appeler la CallBackServer.\r\n\r\nDans ce cas il faut donc passer la liste des nodes modifiés (et les values) par la VpiWriteValue au thread métier.\r\n\r\nJ\'attends votre confirmation, car dans ce cas il va falloir que je modifie une partie de l\'architecture du VPI.','2019-06-27 15:03:12',0),(846,392,'Issue',1,'Bonjour,\r\nLe VpiWrite ne doit pas appeler la callback. \r\nLe VpiWrite doit simplement utiliser la ppValue pour retourner des valeurs au serveur. principalement Vpi_GoodCompletesAsynchronously\r\nAu risque de me répéter. Il est essentiel de ne appeler la callback depuis le VpiWrite sinon cela pourrai provoquer un deadlock.\r\n\r\nSi le write fonctionne alors la thread de lecture détectera le changement a son prochain cycle.\r\n\r\n\r\nCordialement\r\nMC','2019-06-27 15:13:09',0),(847,392,'Issue',353,'Oui c\'est bien compris.\r\n\r\nJe vous l\'ai indique dans le 1er POST, je n\'appel pas la CallBackServer depuis aucuns EntryPoints !\r\nLa VpiWriteValue, fais simplement la mise à jour du VpiCache sans appeler la CallBackServer car c\'est interdit !\r\n','2019-06-27 15:28:11',0),(848,392,'Issue',1,'Alors c\'est parfait.\r\nJ\'avais un doute car vous aviez écrit :\r\n<pre>\r\nLes données mise à jour par les clients OpcUa par l\'intermédiaire de la VpiWriteValue (appelée par le serveur), mettre à jour la cache VPI et appeler la CallBackServer.\r\n</pre>\r\n\r\nDans ce cas vérifiez que votre fonction d\'écriture s\'execute bien de manière asynchrone.\r\n\r\nCordialement \r\n','2019-06-27 15:32:07',0),(849,392,'Issue',353,'Hors contexte effectivement mais il faut lire avec le début de phrase\r\n\r\n*Le thread métier qui tourne dans le Vpi doit surveiller :*\r\n - ...\r\n - Les données mise à jour par les clients OpcUa par l\'intermédiaire de la VpiWriteValue (appelée par le serveur), mettre à jour la cache VPI et appeler la CallBackServer.\r\n\r\nDonc dans VpiWriteValue, je fait simplement ppValue[i]->StatusCode = Vpi_GoodCompletesAsynchronously;','2019-06-27 15:38:57',0),(850,392,'Issue',1,'Vous pouvez aussi mettre a jour les autres attributs du Vpi_DataValue. Cela dépend de la logique de votre Vpi.\r\nJe recommande de ne changer que le StatusCode et le TimeStampSource.','2019-06-27 16:02:03',0),(851,392,'Issue',353,'Bonjour,\r\n\r\nJ\'ai remarqué que si je fais ppValue[i]->StatusCode = Vpi_GoodCompletesAsynchronously; sur une réussite d\'émission de trame TCP, dans la VpiWriteValue, j\'ai aussi ce petit blocage du serveur de temps en temps.\r\n\r\nSi je ne fais rien, il fonctionne parfaitement. Est-ce que j\'ai oublié quelque chose ? Est-ce utile de faire une action sur ces nodes ?\r\n\r\nLes nodes écrit pas le client ne sont pas les mêmes que les nodes écrit par le VPI. Donc pour moi cela n\'a pas d\'importance si ils ne sont pas à jour dans le VpiCache.\r\n\r\nMerci.\r\n\r\nCordialement.\r\nF. TOURRET\r\n\r\n\r\n','2019-06-28 07:41:42',0),(852,392,'Issue',353,'Bonjour,\r\n\r\nJ\'ai trouvé le point de blocage dans la VpiWriteValue mais je ne comprends pas pourquoi...\r\n\r\nJ\'ai volontairement mis un sleep(10) en debut de VpiWriteValue.\r\n\r\nPremière execution 1 node modifié pas de soucis.\r\nExecution suivante X nodes modifiés et la je bloque sur le deuxième node systématiquement !\r\n\r\nLe code :\r\n\r\n<pre>\r\nVpi_StatusCode VpiWriteValue(Vpi_Handle hVpi, \r\n Vpi_UInt32 UiNbOfValueWrite, \r\n Vpi_NodeId* Ids, \r\n Vpi_DataValue** ppValue)\r\n{\r\n time_t date;\r\n time(&date);\r\n string date_evenement = CConversion::timeGmtToLocalDate (date) + \" \" + CConversion::timeGmtToLocalTime(date);\r\n Vpi_StatusCode uStatus=Vpi_Good;\r\n (void)Ids;\r\n if (!hVpi)\r\n uStatus=Vpi_Bad;\r\n else\r\n {\r\n CVpiInternalData* phVpiInternalData=(CVpiInternalData*)hVpi;\r\n //(void)phVpiInternalData;\r\n Vpi_String nomVPI = phVpiInternalData->GetSubSystemName();\r\n LOG(INFO, \"%s - VpiWriteValue - debut %s - Nb nodes %i\", Vpi_String_GetRawString(&nomVPI), date_evenement.c_str(), UiNbOfValueWrite);\r\n // On récupère la classe du VPI\r\n CVpiDESPCCL04* VpiDESPCCL04 = phVpiInternalData->GetVpiDESPCCL04();\r\n if (VpiDESPCCL04->m_ClientTCP.GetEtat() != CClientDataGen::RUNNING)\r\n {\r\n // Le client n\'est pas en run, ecriture impossible\r\n LOG(ERROR, \"Ecriture impossible dans la source de données, le client TCP n\'est pas en RUNNING\");\r\n uStatus = Vpi_BadCommunicationError;\r\n }\r\n else\r\n {\r\n LOG(INFO,\"Traitement des ecritures dans la source\");\r\n sleep(10);\r\n // Traitement des écritures\r\n for (Vpi_UInt32 i = 0 ; i < UiNbOfValueWrite ; i++)\r\n {\r\n CSourceObject* tmpObject = VpiDESPCCL04->GetSourceObject(Ids[i]);\r\n // Extraction du nom de l\'objet reçu\r\n Vpi_String strtmp = tmpObject->GetAddress();\r\n // Recupération du nom de la zone\r\n string IdZoneName = findIdZone(Vpi_String_GetRawString(&strtmp));\r\n // Recupération du nom court de l\'objet\r\n string ObjShortName = findShortObjetName(Vpi_String_GetRawString(&strtmp));\r\n time(&date);\r\n string date_evenement = CConversion::timeGmtToLocalDate (date) + \" \" + CConversion::timeGmtToLocalTime(date);\r\n LOG(INFO,\"Traitement Objet : %s%s, date : %s\", ObjShortName.c_str(), IdZoneName.c_str(), date_evenement.c_str());\r\n // Gestion de la fonction DP\r\n if (ObjShortName == \"INHIBITION_DP@\")\r\n {\r\n// CCommandeFnct activDPS1(ACTIV_DPS1 + IdZoneName);\r\n// CCommandeFnct activDPS2(ACTIV_DPS2 + IdZoneName);\r\n if (ppValue[i]->Value.Value.Boolean == Vpi_True) <------- BLOCAGE ICI\r\n {\r\n // Attention RATP Inhibition true -> PISA activation false\r\n// activDPS1.SetCmd(date_evenement, 0);\r\n// activDPS2.SetCmd(date_evenement, 0);\r\n LOG(INFO,\"ACTIVATION DP : 0\");\r\n }\r\n else\r\n {\r\n// activDPS1.SetCmd(date_evenement, 1);\r\n// activDPS2.SetCmd(date_evenement, 1);\r\n LOG(INFO,\"ACTIVATION DP : 1\");\r\n }\r\n...\r\n</pre>\r\n\r\nJe bloque donc au deuxième node dans la boucle for à la lecture de la value du node\r\n if (ppValue[i]->Value.Value.Boolean == Vpi_True)\r\n\r\nJe ne comprend pas pourquoi, je fais quelque chose de pas bien à priori.\r\nJ\'en déduis donc que je lock quand la VpiWriteValue doit traiter plusieurs nodes.\r\n\r\nMerci pour votre aide.\r\n\r\nCordialement,\r\nF. TOURRET','2019-07-01 12:18:49',0),(853,392,'Issue',353,'OK j\'ai trouvé en regardant dans le VpiNullEx\r\n\r\nIl fallait que je récupère le pointeur sur le tableau de pDataValue !\r\nVpi_DataValue* pDataValue = (*ppValue)\r\n\r\nCa marche beaucoup mieux maintenant.\r\n\r\nD\'où l’utilité de nous fournir une structure de Vpi Nouvelle Génération comme modèle (#388 fermé par erreur de ma part!)\r\net nous répondre sur le #390.\r\n\r\nMerci.\r\nF. TOURRET','2019-07-01 14:18:25',0),(854,390,'Issue',353,'Bonjour,\r\nJe relance la sujet resté sans réponse.\r\nComment traitez-vous le fait que la source de données fournis un horodatage des informations à la source ?\r\n\r\nC\'est le dernier sujet qu\'il me reste à traiter pour finir le Vpi.\r\n\r\nMerci.\r\nCordialement.\r\nF. TOURRET\r\n','2019-07-22 09:01:08',0),(855,390,'Issue',1,'Bonjour,\r\nLe VpiWriteValue met a jour la cache du serveur donc votre source timestamp sera mis à jour. est ce que par hasard celui-ci n\'est pas égal a 0 ?\r\nPour convertir une chaine en date il faut utiliser les fonctions de l\'OpenopcUaVpiLibrary.\r\nCette conversion peut se faire en plusieurs étapes :\r\n# Extraire les champs de la date de votre chaine.\r\n# Placer ces champs dans un SYSTEMTIME\r\n# Convertir le SYSTEMTIME en FILETIME\r\n# Copier le FILETIME dans un Vpi_DateTime\r\n\r\nCordialement\r\nMichel Condemine','2019-07-22 09:29:20',0),(856,396,'Issue',1,'Essayez de sortir la fonction de la boucle for, ie :\r\nRemplacez :\r\nfor (int i = 0; i < sk_X509_num(pStOfX509); ++i)\r\nPar :\r\n int isk_X509_num = sk_X509_num(pStOfX509);\r\n for (int i = 0; i < isk_X509_num; ++i)\r\n\r\nSi cela fonctionne pour votre version de GCC je mettrais à jour le code.\r\nCordialement\r\nMichel Condemine','2019-09-05 08:54:28',0),(857,396,'Issue',353,'Je pensais à la même correction mais perdu ! C\'est la déclaration du int dans le for qui pose problème...\r\n\r\nIl faut donc écrire :\r\n_int i;\r\nfor (i = 0; i < sk_X509_num(pStOfX509); ++i)_\r\n\r\nPar contre j\'ai un autre soucis lors du linkage du serveur :\r\n<pre>\r\nLinking CXX executable /home/ftourret/Documents/ServerOpcUa/bin/linux/Debug/OpenOpcUaCoreServer\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/../lib/linux/Debug/libOpenOpcUaStack.so: référence indéfinie vers « X509_get0_authority_key_id »\r\ncollect2: error: ld returned 1 exit status\r\nCMakeFiles/OpenOpcUaCoreServer.dir/build.make:1510: recipe for target \'/home/ftourret/Documents/ServerOpcUa/bin/linux/Debug/OpenOpcUaCoreServer\' failed\r\nmake[2]: *** [/home/ftourret/Documents/ServerOpcUa/bin/linux/Debug/OpenOpcUaCoreServer] Error 1\r\nCMakeFiles/Makefile2:60: recipe for target \'CMakeFiles/OpenOpcUaCoreServer.dir/all\' failed\r\nmake[1]: *** [CMakeFiles/OpenOpcUaCoreServer.dir/all] Error 2\r\nMakefile:72: recipe for target \'all\' failed\r\nmake: *** [all] Error 2\r\nall file was generated\r\nlibLuaLib.a libOpenOpcUaSharedlib.so libOpenOpcUaStack.so libXMLSAXParser.so\r\n\r\n</pre>\r\nCordialement.\r\nF. TOURRET\r\n','2019-09-05 09:25:11',0),(858,396,'Issue',1,'Êtes vous certain d\'utiliser OpenSSL 1.1 ?\r\nCette fonction y est bien défini.\r\nhttps://www.openssl.org/docs/man1.1.0/man3/X509_get0_authority_key_id.html\r\nJe n\'ai aucun problème avec la Debian 9.\r\n','2019-09-05 09:28:43',0),(859,396,'Issue',1,'Pour l\'erreur initiale. Il faut positionnez votre compilateur en C99 ou en C11 comme l\'indique le message d\'erreur.\r\nC99 c\'était il y a déjà 20 ans ;)\r\n\r\n','2019-09-05 09:31:27',0),(860,396,'Issue',353,'Pour info :\r\nOpenOpcUaCoreServer generation\r\n-- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so (found version \"1.1.0f\") \r\n-- Found OpenSSL: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so (found suitable version \"1.1.0f\", minimum required is \"1.1\") \r\n-- OpenSSL Found: TRUE\r\n\r\nJe suis d\'accord pour la compilation en C99 ou C11. Pourquoi l\'option n\'est pas forcée dans le makefile alors ?','2019-09-05 09:43:54',0),(861,396,'Issue',1,'Je vais faire une RC07 qui fixera les problème de déclaration de int dans les boucle for.\r\npar contre comme vous avez bien un OpenSSL 1.1 je ne comprend pas le problème que vous rencontrez avec X509_get0_authority_key_id.\r\n\r\nCordialement\r\nMichel Condemine','2019-09-05 09:47:46',0),(862,396,'Issue',353,'Après vérification :\r\ngcc 4.9.2 (Debian 8.2) compile du C90 et du C++98 par défaut\r\ngcc 6.3.0 (Debian 9) compile du C11 et du C++14 par défaut\r\n\r\nDonc j\'ai modifier les CMakeLists.txt de la façon suivante pour être dans les mêmes conditions que gcc 6.3 (Debian 9) :\r\npour CMAKE_C_FLAGS j\'ai ajouté l\'option -std=gnu11\r\npour CMAKE_CXX_FLAGS j\'ai ajouté l\'option -std=gnu++14\r\n\r\nVoilà comme ceci nous compilons avec les mêmes options de langages ce qui est mieux car je n\'ai plus à faire les modifications comme vu dans le #343.\r\n\r\nMais j\'ai alors une autre erreur de compilation :\r\n<pre>\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/source/SessionServer.cpp: In member function ‘OpcUa_StatusCode OpenOpcUa::UACoreServer::CSessionServer::CreateSubscription(OpcUa_UInt32, OpcUa_Double, OpcUa_UInt32, OpcUa_UInt32, OpcUa_UInt32, OpcUa_Boolean, OpcUa_Byte, OpenOpcUa::UACoreServer::CSubscriptionServer**)’:\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/source/SessionServer.cpp:1296:47: error: call of overloaded ‘isnan(OpcUa_Double&)’ is ambiguous\r\n if (isnan(dblRequestedPublishingInterval))\r\n ^\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/source/SessionServer.cpp:1296:47: note: candidates are:\r\nIn file included from /usr/include/features.h:374:0,\r\n from /usr/include/stdio.h:27,\r\n from /home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/include/stdafx.h:42,\r\n from /home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/source/SessionServer.cpp:39:\r\n/usr/include/x86_64-linux-gnu/bits/mathcalls.h:234:1: note: int isnan(double)\r\n __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));\r\n ^\r\nIn file included from /home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/include/stdafx.h:191:0,\r\n from /home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/source/SessionServer.cpp:39:\r\n/usr/include/c++/4.9/cmath:626:3: note: constexpr bool std::isnan(long double)\r\n isnan(long double __x)\r\n ^\r\n/usr/include/c++/4.9/cmath:622:3: note: constexpr bool std::isnan(double)\r\n isnan(double __x)\r\n ^\r\n/usr/include/c++/4.9/cmath:618:3: note: constexpr bool std::isnan(float)\r\n isnan(float __x)\r\n ^\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/source/SessionServer.cpp: In member function ‘OpcUa_StatusCode OpenOpcUa::UACoreServer::CSessionServer::ProcessReadRequest(OpenOpcUa::UACoreServer::CQueuedReadMessage*)’:\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/source/SessionServer.cpp:4247:28: warning: unused variable ‘pDataValue’ [-Wunused-variable]\r\n CDataValue* pDataValue=pUAVariable->GetValue();\r\n ^\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/source/SessionServer.cpp: In member function ‘OpcUa_StatusCode OpenOpcUa::UACoreServer::CSessionServer::ContinuationPointLookup(OpcUa_ByteString, OpenOpcUa::UACoreServer::CContinuationPoint**)’:\r\n/home/ftourret/Documents/ServerOpcUa/OpenOpcUaCoreServer/source/SessionServer.cpp:6978:26: warning: statement has no effect [-Wunused-value]\r\n OpcUa_BadOutOfMemory;\r\n ^\r\nCMakeFiles/OpenOpcUaCoreServer.dir/build.make:721: recipe for target \'CMakeFiles/OpenOpcUaCoreServer.dir/source/SessionServer.cpp.o\' failed\r\nmake[2]: *** [CMakeFiles/OpenOpcUaCoreServer.dir/source/SessionServer.cpp.o] Error 1\r\nCMakeFiles/Makefile2:60: recipe for target \'CMakeFiles/OpenOpcUaCoreServer.dir/all\' failed\r\nmake[1]: *** [CMakeFiles/OpenOpcUaCoreServer.dir/all] Error 2\r\nMakefile:72: recipe for target \'all\' failed\r\nmake: *** [all] Error 2\r\n\r\n\r\n</pre>\r\n\r\nMerci.\r\n\r\n','2019-09-05 11:01:30',0),(863,396,'Issue',1,'Je ne suis pas trop favarable a cette modification dans le CMake. Elle d\'ailleurs apparaitre un erreur dans un portion de code qui n\'a pas changé.\r\nCependant vous pouvez ajouter un cast :\r\nif (isnan((double)dblRequestedPublishingInterval))\r\n\r\nEncore une fois il doit y avoir un autre pb. Ce code n\'a pas changé depuis la dernière version.\r\n\r\nCordialement\r\nMichel Condemine','2019-09-05 11:18:22',0),(864,396,'Issue',353,'Bon OK, je reviens donc avec la compilation par défaut en C90 et C++98.\r\n\r\nPour info en ce qui concerne le PB de linkage sur X509_get0_authority_key_id.\r\n\r\nSous Debian 9 cette fonction est bien définie dans le fichier x503v3.h (openssl 1.1.0h) mais pas dans notre version 1.1.0f...\r\nIl y a X509_get0_subject_key_id mais c\'est tout.','2019-09-05 14:44:04',0),(865,396,'Issue',1,'Si c\'est la cas il faut passer en 1.1.0 ou supérieur\r\nMais je suis surpris qu\'un fonction aussi importante n\'ai pas d\'équivalent en 1.1.0f\r\n\r\nCordialement\r\nMichel Condemine','2019-09-05 14:51:06',0),(866,396,'Issue',353,'Bonjour,\r\n\r\nOK, il y avait un problème dans le package de la libssl-dev 1.1.0f qui ne me mettait pas a jour les .h\r\nJ\'ai compilé avec la libssl 1.1.0k\r\n\r\nsujet clos, merci.\r\n\r\nCordialement.\r\n\r\nF. TOURRET.','2019-09-09 09:48:35',0),(867,396,'Issue',1,'','2019-09-09 15:29:50',0),(868,397,'Issue',1,'Bonjour,\r\nJe n\'ai pas ce problème sous Windows.\r\nJe vais faire quelques essai sous Linux et vous tiens au courant.\r\nCordialement\r\nMichel Condemine','2019-09-09 15:31:08',0),(869,397,'Issue',353,'Bonjour,\r\n\r\nJe me suis aperçu que j’avais le même soucis avec la RC5. Le serveur génère systématiquement un certificat au démarrage.\r\nAlors, j’ai mis le certificat complet en CPF_L04.pfx dans private et en plus la clé publique CPF_L04.der dans certs (ce que je ne faisais pas avant).\r\nMaintenant le serveur ne génère plus de certificat au démarrage. Est-ce la bonne pratique ?\r\nDans ce cas, il serai bien de l\'indiquer quelque part (Doc, PowerPoint formation...).\r\n\r\nMerci.\r\nCordialement.\r\nF. TOURRET\r\n','2019-09-16 07:30:18',0),(870,397,'Issue',353,'Bonjour,\r\n\r\nSans nouvelles de votre part, je galère toujours.\r\n\r\nSi le serveur génère son propre certificat, je connecte un client sans problème.\r\nSi je met mon certificat (pièce jointe) .pfx dans le private et .der dans le certs (merci de confirmer s\'il faut procéder de cette façon), là le client est systématiquement rejeté :\r\n<pre>\r\n11:50:45.253 | Server Node | Server Debian VM 10.4.80.7 | Endpoint: \'opc.tcp://SCBGR:4880/CPF_L04\'\r\n11:50:45.253 | Server Node | Server Debian VM 10.4.80.7 | Security policy: \'http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256\'\r\n11:50:45.253 | Server Node | Server Debian VM 10.4.80.7 | ApplicationUri: \'urn:SCBGR:PISA:CPF_L04\'\r\n11:50:45.253 | Server Node | Server Debian VM 10.4.80.7 | Used UserTokenType: Anonymous\r\n11:50:45.390 | General | | [uastack] OpcUa_TcpConnection_ProcessResponse: Error Message!\r\n11:50:45.390 | General | | [uastack] OpcUa_TcpConnection_ProcessResponse: Status 0x80130000!\r\n11:50:45.391 | Server Node | Server Debian VM 10.4.80.7 | Error \'BadSecurityChecksFailed\' was returned during OpenSecureChannel\r\n11:50:45.391 | Server Node | Server Debian VM 10.4.80.7 | Connection status of server \'Server Debian VM 10.4.80.7\' changed to \'Disconnected\'.\r\n</pre>\r\nEt le certificat du client se retrouve systématiquement dans rejected alors que je l\'ai précédemment placé dans certs.\r\n\r\nJ\'ai comparé les certificats auto généré et le mien, ils sont formé de la même manière... Les machines sont sur le même NTP pour la synchro horaire.\r\n\r\nAvez-vous une piste ?\r\n\r\nMerci pour votre aide.\r\n\r\nCordialement.\r\nF. TOURRET\r\n\r\n','2019-09-26 11:57:48',0),(871,397,'Issue',1,'Bonjour,\r\nJe suis en déplacement.\r\nSi vous placez le pfx dans private le serveur fabriquera le der correspondant.\r\nSi vous placez les deux fichiers déjà générés dans les bons répertoires le fichier les utilisera.\r\nJe regarderai plus en détail vos certificats lors de mon retour à Montpellier.\r\nAttention, il faut que vous utilisiez la RC07. Elle contient de nombreuses modification dans la gestion des PKI\r\nCordialement\r\nMichel Condemine','2019-09-26 12:27:32',0),(872,397,'Issue',353,'Je viens de tester avec la version RC7.\r\n\r\nJe confirme que si on ne met pas le .der dans certs correspondant au .pfx de private, le serveur re-génère un certificat provisoire (public + privé).\r\n\r\nAvec les 2 fichiers du certificat j\'arrive à fonctionner sur ma machine de dev mais pas sur la cible (même os que la dev mais sans interface graphique et le minimum installé).\r\nLa clé public du client (le même) est systématiquement rejetée.\r\nJ\'en déduit qu\'il manque quelques chose sur la cible. openssl est bien le même sur les 2 dans la même version.\r\n\r\nVoici les logs du serveur cible qui refuse le certificat client :\r\n<pre>\r\n2019-09-26T17:15:37.000Z STACK_ERROR OpcUa_SecureListener_ChannelManager_GetChannelBySecureChannelID: Searched SecureChannel with id 1855060332 NOT found!\r\n2019-09-26T17:15:37.000Z STACK_ERROR OpcUa_SecureListener_ChannelManager_GetChannelBySecureChannelID: Searched SecureChannel with id 1855060333 NOT found!\r\n2019-09-26T17:15:54.000Z STACK_ERROR OpcUa_SecureListener_ChannelManager_GetChannelBySecureChannelID: Searched SecureChannel with id 1855060334 NOT found!\r\n2019-09-26T17:15:54.000Z STACK_ERROR \r\nverify error:\r\n num=18:self signed certificate\r\n depth=0\r\n /C=FR/ST=France/L=Romagnat/O=PISA/OU=BGW/CN=UaExpert@pisa-043\r\n2019-09-26T17:15:54.000Z STACK_ERROR OpcUa_SecureListener_ValidateCertificate: Validation failed with 0x80130000\r\n2019-09-26T17:15:54.000Z STACK_ERROR ProcessOpenSecureChannelRequest: Client Certificate not valid! (0x80130000)\r\n2019-09-26T17:15:54.000Z STACK_ERROR OpcUa_SecureListener_ProcessRequest: Closing channel due error 0x80130000!\r\n</pre>\r\n\r\nJe ne comprend pas ce qui ne va pas.\r\n\r\nCordialement.\r\nF. TOURRET\r\n','2019-09-26 19:21:16',0),(873,397,'Issue',1,'Bonjour,\r\nle certificat DER que génère le serveur quand seul le PFX est présent dans le répertoire private n\'est pas un certificat provisoire.\r\nCe certificat est le certificat public associé au PFX.\r\nVotre trace indique que vous utilisez un certificat auto-signé.\r\nEst ce la cas ?\r\n\r\nCordialement\r\nMichel Condemine','2019-09-27 09:42:14',0),(874,397,'Issue',353,'Bonjour,\r\n\r\nCe matin j\'ai réinstallé la machine cible.\r\nLe serveur démarre OK, il prend bien en compte le certificat :\r\n<pre>\r\n2019-09-27T09:15:31.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-09-27T09:15:31.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-09-27T09:15:31.000Z SERVER_ERROR Root of the certificateStore: /data/ServerOpcUa/CertificateStore\r\n2019-09-27T09:15:31.000Z SERVER_ERROR Extension found in the server certificate are :\r\n2019-09-27T09:15:31.000Z SERVER_ERROR C=FR:\r\n2019-09-27T09:15:31.000Z SERVER_ERROR ST=France:\r\n2019-09-27T09:15:31.000Z SERVER_ERROR L=Romagnat:\r\n2019-09-27T09:15:31.000Z SERVER_ERROR O=PI System Automation:\r\n2019-09-27T09:15:31.000Z SERVER_ERROR OU=BGW:\r\n2019-09-27T09:15:31.000Z SERVER_ERROR CN=CPF_L04:\r\n2019-09-27T09:15:31.000Z SERVER_ERROR DC=SCBG:\r\n2019-09-27T09:15:31.000Z SERVER_ERROR Your certificate validate your server \r\n</pre>\r\n\r\nLe client se connecte, il est refusé. Je met sa clé publique dans certs, Ok le client se connecte.\r\nJ’arrête le serveur et je le redémarre, OK pas de problèmes. Reboot de la machine OK.\r\n\r\nJ\'ai juste une erreur BadCertificateHostNameInvalid côté client.\r\n\r\n<pre>\r\n11:26:14.756 | Server Node | Server SCBG 192.181 | Endpoint: \'opc.tcp://SCBG:4880/CPF_L04\'\r\n11:26:14.756 | Server Node | Server SCBG 192.181 | Security policy: \'http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256\'\r\n11:26:14.756 | Server Node | Server SCBG 192.181 | ApplicationUri: \'urn:SCBG:PISA:CPF_L04\'\r\n11:26:14.756 | Server Node | Server SCBG 192.181 | Used UserTokenType: Anonymous\r\n11:26:15.113 | General | | The hostname or IP address in the server certificate does not match the hostname or IP address the client connected to\r\n</pre>\r\n\r\nLa machine s\'appelle SCBG, j\'ai le hosts correct et le certificat correspond également... ?\r\n\r\nMerci.\r\n\r\nCordialement\r\nF. TOURRET\r\n\r\n\r\n\r\n','2019-09-27 11:28:26',0),(875,397,'Issue',353,'Oui nous utilisons bien un certificat autosigné.\r\n\r\nCe qui arrive souvent et j\'ai le cas cette après-midi sur une autre machine, c\'est que le serveur ignore les clés privés présente (ou les refuse) et il regénère un couple de clé systématiquement (voir capture jointe). Il ignore même les clés qu\'il a généré lui même précédemment.\r\n<pre>\r\n2019-09-27T11:35:13.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-09-27T11:35:13.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-09-27T11:35:13.000Z SERVER_ERROR Root of the certificateStore: /data/ServerOpcUa/CertificateStore\r\n2019-09-27T11:35:13.000Z SERVER_ERROR Your certificate in DER file not fit the private key. Will create a new one\r\n</pre>\r\n\r\nLors de l\'installation (sans reboot) tout fonctionne bien, mais suite à un reboot j\'ai le soucis ci-dessus.\r\nSur ce type de configuration je suis en double serveur :\r\nhostname SCBG1/SCBG2\r\nfichier hosts\r\n127.0.0.1 SCBGR SCBG1 ou SCBG2\r\nCertificat contenant SCBGR.\r\nJ\'ai déjà fait fonctionner cette configuration sur le RC5.\r\n\r\nDes modification empêche ce fonctionnement ?\r\n\r\nCordialement.\r\n\r\n\r\n\r\n\r\nCordialement.','2019-09-27 13:50:45',0),(876,397,'Issue',353,'Bonjour,\r\n\r\nBadCertificateHostNameInvalid résolu sur une machine monoserveur, j\'avais oublié de mettre à jour mon fichier hosts et de me connecter avec le hostname au lieu de l\'IP...\r\n\r\nLe WE fait du bien et ça remet les idées en place.\r\nReste à refaire fonctionner sur un cluster de serveur (SCBG1/SCBG2) avec une IP commune et une hostname commun. Je l\'avais déjà fais fonctionner avec la RC5.\r\n\r\nCordialement.\r\nF. TOURRET','2019-09-30 07:21:23',0),(877,397,'Issue',1,'Bonjour, \r\nFélicitation. Vous êtes bien en RC7 ?\r\n\r\nCordialement\r\nMichel Condemine','2019-09-30 07:22:52',0),(878,397,'Issue',353,'Oui en 1.0.5.7_RC7_PISA du 05/09 c\'est la seule don je dispose.','2019-09-30 11:19:03',0),(879,397,'Issue',353,'Bonjour,\r\n\r\nJe pense avoir trouvé d\'ou viens le problème après avoir fait de nombreuses manipulations.\r\n\r\nEn résumé :\r\nAu premier démarrage le serveur prend bien ma clé publique et privée (il n\'a jamais eu de client connecté donc pas de clé client dans certs).\r\nJe connecte mon client qui est rejeté. Je copie sa clé dans certs. Maintenant il est accepté. Super !\r\n\r\nJ\'arrête le serveur et je le relance, alors il me dit que sa clé publique ne correspond pas à sa clé privée. Il me génère donc un nouveau couple de clés !\r\n*Je suppose donc qu\'il prend la clé du client pour sa clé publique !!!*\r\n\r\nPour valider le test, je supprime les clés publiques clientes et toutes les clés générées par le serveur de façon à n\'avoir que CPF_L04.pfx dans private et CPF_L04.der dans certs (comme lors d\'une nouvelle installation).\r\nEt la bingo le serveur démarre sans re-générer de certificat. Je peux donc me reconnecter avec mon client une fois son certificat déplacé dans certs.\r\n\r\nDonc il semblerai bien que j\'ai identifier *le bug* sur lequel je bute depuis *plus d\'une semaine* !\r\n\r\nPouvez-vous donc vérifier au niveau du code et refaire les tests ci-dessus.\r\n\r\nJe suis disponible pour vous montrer le problème en visio si je n\'ai pas été clair.\r\n\r\nMerci\r\n\r\nCordialement.\r\nF. TOURRET\r\n\r\n','2019-10-01 17:03:19',0),(880,397,'Issue',1,'FT : En résumé :\r\nAu premier démarrage le serveur prend bien ma clé publique et privée (il n\'a jamais eu de client connecté donc pas de clé client dans certs).\r\n\r\nMC : Comment ça ?\r\nIl y la clé public du serveur\r\n\r\nFT : Je connecte mon client qui est rejeté. Je copie sa clé dans certs. Maintenant il est accepté. Super !\r\nJ\'arrête le serveur et je le relance, alors il me dit que sa clé publique ne correspond pas à sa clé privée. Il me génère donc un nouveau couple de clés !\r\n\r\nMC : NON, Ou sont passées les clés qui était présente au 1er lancement ? \r\n\r\nFT : Je suppose donc qu\'il prend la clé du client pour sa clé publique !!!\r\nPour valider le test, je supprime les clés publiques clientes et toutes les clés générées par le serveur de façon à n\'avoir que CPF_L04.pfx dans private et CPF_L04.der dans certs (comme lors d\'une nouvelle installation).\r\nEt la bingo le serveur démarre sans re-générer de certificat. Je peux donc me reconnecter avec mon client une fois son certificat déplacé dans certs.\r\n\r\nMC : C’est le comportement normal\r\n\r\nFT : Donc il semblerai bien que j\'ai identifier le bug sur lequel je bute depuis plus d\'une semaine !\r\nMC : Je ne comprends pas la description de l’étape. : « J\'arrête le serveur et je le relance, alors il me dit que sa clé publique ne correspond pas à sa clé privée. Il me génère donc un nouveau couple de clés ! »\r\n\r\nMC : Pourriez vous simplement répondre a la question : \"Ou sont passez les clés entre le 1er et le 2ème lancement ?\r\n\r\nCordialement\r\nMichel Condemine','2019-10-01 17:20:09',0),(881,397,'Issue',353,'Bonjour,\r\n\r\nJe pense qu\'il va être compliqué de se comprendre par écrit sur problème complexe. Je vous propose donc de vous faire la démonstration du problème en web conf. Non y gagnerons tous du temps !\r\nJe suis disponible, et il faudrait traiter ce problème rapidement.\r\n\r\nPour répondre à vos questions : \r\n\r\nMC : Comment ça ?\r\nIl y la clé public du serveur *OUI effectivement, car si je ne met pas la clé publique de mon certificat le serveur re-génère un couple de clés privée/publique*\r\n\r\nMC : NON, Ou sont passées les clés qui était présente au 1er lancement ?\r\n*SI dans certs il y a la clé publique du serveur + la clé publique du client et une autre clé générée par le serveur au démarrage.\r\nDans private, il y a la clé privée du serveur plus une autre générée au démarrage du serveur.\r\nAvez-vous vu ma capture d\'écran dans le poste précédent ?*\r\n\r\nMC : C’est le comportement normal\r\n*NON, je ne peux pas supprimer les clés des clients à chaque redémarrage du serveur et les copier ensuite dans certs !!!!!*\r\n\r\nJe peux vous garantir que je n\'avais pas ces soucis dans la 1.0.5.6, voir 1.0.5.7_RC04 ou RC05 à vérifier.\r\n\r\nMerci de mettre de la bonne volonté dans le pistage de ce problème et de ne pas vous braquer.\r\nJe vous assure qu\'il y a un souci et j\'ai passé beaucoup de temps à l’identifier et pour pouvoir le reproduire.\r\n\r\nJ\'aimerai que l\'on résolve ce problème de façon constructive et rapide.\r\n\r\nMerci pour votre compréhension.\r\n\r\nCordialement.\r\nF. TOURRET\r\n','2019-10-02 07:52:19',0),(882,397,'Issue',353,'Je confirme que *la version 1.0.5.7_RC05 fonctionne* et que je n\'ai *aucuns problèmes de certificats*.\r\n\r\nDans cette version le serveur ignore la clé publique qu\'on lui fourni et la génère automatiquement.\r\nElle est identique à celle que j\'avais placé dans le répertoire (correspond à vos explications et confirme vos propos).\r\n\r\n*Fonctionnement OK pour moi.*\r\n\r\nLes versions *RC6 et RC7* ont donc bien une *régression de fonctionnement*.\r\n\r\nMerci de bien vouloir prendre en compte le problème.','2019-10-02 08:29:17',0),(883,390,'Issue',353,'Bonjour,\r\n\r\nJ\'ai effectué ma conversion et j\'arrive presque au résultat puisque j\'ai juste +1h de décalage.\r\nL\'heure est OK avant _SystemTimeToFileTime_ mais +1 juste après.\r\n\r\nDans le code de la fonction _FileTimeToSystemTime_ j\'ai trouvé ceci :\r\n\r\nlpSystemTime->wHour = tmTime->tm_hour; // just delete a +1 ... Need to validate this change\r\n\r\nJe confirme qu\'il faut retrancher une heure.\r\nJe pense que cela et du au fait d\'utiliser plus haut : \r\ntmTime = gmtime(&timeTime);\r\nau lieu de :\r\ntmTime = localtime(&timeTime);\r\n\r\nJe viens de tester avec la modification et cela fonctionne.\r\nEtes vous d\'accord pour intégrer cette modification pour les 2 fonctions ? \r\n\r\nCordialement.\r\nF. TOURRET\r\n','2019-10-07 08:51:57',0),(884,390,'Issue',1,'Bonjour\r\nAttention les serveurs doivent toujours manipuler une heure UTC pas une heure locale.\r\nLa conversion UTC/Locale reste à la charge du client.\r\ngmtime == heure UTC\r\nlocalTime == heure locale\r\n\r\nCordialement\r\nMichel Condemine','2019-10-07 09:26:58',0),(885,390,'Issue',353,'OK.\r\n\r\nJ\'ai converti l\'heure de la source en UTC.\r\nCela fonctionne bien maintenant.\r\nCe que je ne comprends pas c\'est pourquoi un décalage d\'une heure seulement. Avec l\'heure d\'été cela devrait faire 2 heures entre l\'heure locale et l\'heure UTC...\r\n\r\nCordialement.\r\nF. TOURRET\r\n','2019-10-07 15:20:32',0),(886,390,'Issue',1,'Bonjour,\r\nil ne faut pas oublier d\'intégrer le DST dans la conversion UTC/Locale. \r\nEn ce moment on est encore en heure d\'été.\r\n\r\nCordialement\r\nMichel','2019-10-08 08:56:32',0),(887,397,'Issue',353,'Bonjour,\r\n\r\nAvez-vous avancé sur le sujet ?\r\n\r\nLe fait de renommer le certificat serveur (pour le mettre en dernier par ordre alpha) ne fonctionne pas toujours.\r\nJe suis obligé de prendre la RC05 pour faire mes essais.\r\n\r\nNous allons bientôt devoir déployer sur site, j\'attends la date exacte.\r\nQuand pensez-vous fournir la version release ?\r\n\r\nCordialement.\r\nF. TOURRET','2019-10-10 13:56:05',0),(888,397,'Issue',1,'Bonjour,\r\nj\'ai regardé le problème.\r\nContrairement a notre hypothèse initiale le serveur break bien sa recherche quand il trouve le bon certificat.\r\nIl faut donc que je continue la recherche. \r\nVous écrivez que le workaround ne fonctionne pas toujours. Pourriez vous m\'indiquer les cas dans lesquels il ne fonctionne pas ?\r\nCordialement\r\nMichel Condemine','2019-10-11 08:57:19',0),(889,397,'Issue',353,'Bonjour,\r\n\r\nEffectivement sur la machine sur laquelle on a fait les tests ensemble, la bidouille fonctionne.\r\n\r\nMais sur les machines pour le client, j\'ai ce comportement :\r\nSans clé publique cliente :\r\n* Start du serveur, il accepte son couple de clé pub/priv (zCPF_L04.pfx/.der).\r\n* Reject de la clé publique du client à la première connexion\r\n* Acceptation manuelle de la clé publique du client\r\n* Nouvelle connexion client OK\r\n\r\nA ce moment j\'ai, comme voulu, le couple de clé du serveur et la clé publique du client (UaExpert@pisa-043...)\r\nJe déconnecte le client et j\'arrête de serveur.\r\nPuis je relance le serveur :\r\n Le serveur re-génère un couple de clé publique + privé (du nom du serveur CPF_L04[..].pfx/.der).\r\n\r\n<pre>\r\n2019-10-11T13:38:04.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-10-11T13:38:04.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-10-11T13:38:04.000Z SERVER_ERROR Root of the certificateStore: /data/ServerOpcUa/CertificateStore\r\n2019-10-11T13:38:04.000Z SERVER_ERROR Your certificate in DER file not fit the private key. Will create a new one\r\n</pre>\r\n\r\nCordialement.\r\nF. TOURRET\r\n\r\n\r\n\r\n\r\n','2019-10-11 15:41:36',0),(890,397,'Issue',353,'Bonjour,\r\n\r\nNous devons faire l\'installation sur site le 24/10/2019. Je pars donc sur la version 1.0.5.7_RC05 pour le moment.\r\n\r\nCordialement.\r\n\r\nF. TOURRET','2019-10-16 10:07:21',0),(891,397,'Issue',1,'Bonjour,\r\nc\'est entendu. Je suis toujours en train de travailler sur la certification.\r\nJ\'ai fait quelques modifications à la demande de la fondation.\r\nJe vais travailler demain sur le serveur pour sortir une RC08.\r\n\r\nCordialement\r\nMichel Condemine','2019-10-16 10:10:39',0),(892,401,'Issue',1,'Bonjour Norbert,\r\nPensez a supprimer le repertoire CertificateStore avant de la lancer la 1.0.5.7.\r\n\r\nCordialement\r\nMichel','2019-10-16 10:12:20',0),(893,402,'Issue',328,'mot de passe du zip: @ADP01','2019-10-29 10:39:12',0),(894,401,'Issue',328,'Bonjour Michel,\r\n\r\nJe supprime bien systématiquement le dossier CertificateStore avant le démarrage.\r\n\r\nHier, après avoir changer le nom de la machine le serveur s’arrêtait systématiquement après quelques minutes lors de son démarrage et cela malgré l\'activation du mode de compatibilité.\r\nEn débranchant la liaison vers l\'UAE, il a bien démarré...\r\n\r\nPouvez-vous regarder d\'où vient le problème ?\r\n\r\nCordialement.\r\n\r\nNorbert\r\n','2019-10-31 09:30:03',0),(895,404,'Issue',353,'pour avancer dans les tests, j\'ai désactiver le VPI pour le moment.\r\n\r\nLe serveur fonctionne mais je ne peu plus connecter le client :\r\n<pre>\r\n15:49:55.111 | Server Node | Server SCBG 192.181 | ApplicationUri: \'\'\r\n15:49:55.111 | Server Node | Server SCBG 192.181 | The server does not support the configured security policy \'http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256\'.\r\n15:50:03.770 | Server Node | Server SCBG 192.181 | Used UserTokenType: Anonymous\r\n15:50:03.774 | Server Node | Server SCBG 192.181 | The server returned no certificate, all certificate checks will be skipped.\r\n15:50:03.785 | General | | [uastack] OpcUa_Channel_BeginConnect: Cannot create secure channel without certificates!\r\n15:50:03.824 | Server Node | Server SCBG 192.181 | Error \'BadInvalidArgument\' was returned during OpenSecureChannel\r\n15:50:03.828 | Server Node | Server SCBG 192.181 | Connection status of server \'Server SCBG 192.181\' changed to \'Disconnected\'.\r\n</pre>\r\n\r\nDans les log du serveur, il bien chargé son certificat :\r\n<pre>\r\n2019-11-07T14:46:39.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-11-07T14:46:39.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-11-07T14:46:39.000Z SERVER_ERROR Root of the certificateStore: /data/ServerOpcUa/CertificateStore\r\n2019-11-07T14:46:39.000Z SERVER_ERROR Extension found in the server certificate are :\r\n2019-11-07T14:46:39.000Z SERVER_ERROR C=FR:\r\n2019-11-07T14:46:39.000Z SERVER_ERROR ST=France:\r\n2019-11-07T14:46:39.000Z SERVER_ERROR L=Romagnat:\r\n2019-11-07T14:46:39.000Z SERVER_ERROR O=PI System Automation:\r\n2019-11-07T14:46:39.000Z SERVER_ERROR OU=BGW:\r\n2019-11-07T14:46:39.000Z SERVER_ERROR CN=CPF_L04:\r\n2019-11-07T14:46:39.000Z SERVER_ERROR DC=SCBG:\r\n2019-11-07T14:46:39.000Z SERVER_ERROR Your certificate validate your server \r\n</pre>\r\n\r\nIl y a des choses qui ont changé dans le fichier de configuration du serveur ?\r\n\r\nMerci.\r\n\r\nF. Tourret','2019-11-07 15:54:49',0),(896,404,'Issue',1,'Bonjour,\r\nmerci pour votre retour. Je vous confirme votre modification.\r\nConcernant votre problème de connexion.\r\nLe fichier OOUAPRJ a évolué. En particulier la balise element Binding.\r\n <Binding Protocol=\"TCP\" Port=\"16664\" Encoding=\"Binary\">\r\n <Security Policy=\"None\" Mode=\"None\"/>\r\n <Security Policy=\"Basic128Rsa15\" Mode=\"Sign\"/>\r\n <Security Policy=\"Basic128Rsa15\" Mode=\"SignEncrypt\"/>\r\n <Security Policy=\"Basic256\" Mode=\"Sign\"/>\r\n <Security Policy=\"Basic256\" Mode=\"SignEncrypt\"/>\r\n <Security Policy=\"Basic256Sha256\" Mode=\"Sign\"/>\r\n <Security Policy=\"Basic256Sha256\" Mode=\"SignEncrypt\"/>\r\n <UserToken Type=\"Anonymous\"/>\r\n <UserToken Type=\"UserName\"/>\r\n <UserToken Type=\"X509\"/>\r\n </Binding> \r\n\r\n\r\nCordialement\r\nMichel Condemine','2019-11-07 16:00:32',0),(897,404,'Issue',1,'En résumé,\r\n il faut maintenant explicitement lister les Security Policy et les UserToken que le serveur doit supporter.\r\n\r\nIl s\'agit d\'une exigence CTT. J\'ai essayer de faire une version qui soit compatible avec l\'ancienne syntaxe.\r\n\r\nCordialement\r\nMichel Condemine','2019-11-07 16:04:28',0),(898,404,'Issue',353,'OK super.\r\n\r\nJ\'ai donc corrigé mon fichier oouaprj comme ceci :\r\n<pre>\r\n <Binding Protocol=\"TCP\" Port=\"4880\" Encoding=\"Binary\">\r\n <Security Policy=\"Basic256Sha256\" Mode=\"SignEncrypt\"/>\r\n <UserToken Type=\"Anonymous\"/>\r\n </Binding>\r\n</pre>\r\n\r\nJe démarre le serveur sans certificats client.\r\nLe client est refusé est son certificat placé dans rejected => OK\r\nJe déplace le certificat du client dans certs\r\nJe tente une nouvelle connexion du client... Segmentation fault\r\n\r\nJe n\'ai toujours pas de VPI. Ai-je oublié quelque chose dans la conf ?\r\n\r\nMerci.\r\n\r\nF. TOURRET','2019-11-07 16:24:28',0),(899,404,'Issue',1,'Ooops seg fault pas bon ca. \r\nMais je ne pense pas que vous ayez oublié quelque chose.\r\nVous n\'autorisez que Basic256Sha256 en anonyme.\r\nEst ce que vous avez la call stack ?\r\n\r\nCordialement\r\nMichel Condemine','2019-11-07 16:28:45',0),(900,404,'Issue',353,'Bonjour,\r\n\r\nPour le projet ou nous n\'autorisons que la connexion Basic256Sha256 en anonyme. Mais ce matin j\'ai tout autorisé mais même résultat.\r\nQu\'entendez-vous pas vous avez la call stack ?\r\nJ\'ai compilé : libOpenOpcUaSharedlib.so, libOpenOpcUaStack.so, libOpenOpcUaVpiLibrary.so, libVPIDesPccL04.so et OpencUaCoreServer \r\n\r\nQuestion : Doit on garder _SecurityNone=False_ dans la balise _ServerConfig_ avec l\'évolution de la configuration ?\r\n\r\nPouvez-vous me donner les évolutions du VPI ou un VPI exemple pour gagner du temps. Car je pense que comme pour la configuration, il y a des choses qu\'on ne peut pas deviner.\r\n\r\nMerci.\r\n\r\nF. TOURRET','2019-11-08 07:29:39',0),(901,404,'Issue',1,'Bonjour,\r\nUn exemple de Vpi à jour est dans le livrable. (VpiNullEx)\r\n\r\nConcernant la crash. Je souhaite savoir ou il se produit et quelle séquence de fonctions déclenchent la problème.\r\n\r\nCordialement\r\nMichel Condemine','2019-11-08 08:55:50',0),(902,399,'Issue',1,'Bonjour,\r\nje viens d\'implementer cette fonctionnalité. Elle sera livrée avec le prochain package.\r\nCordialement\r\nMichel','2019-11-10 00:08:48',0),(903,404,'Issue',353,'Bonjour,\r\n\r\nConnexion en Basic256Sha256 en anonyme.\r\n\r\nJ\'ai testé sur un Debian 9 en connexion client none/none Anonymous, même constat.\r\n\r\nci-dessous le log de la stack.\r\n<pre>\r\n2019-11-12T08:40:06.000Z ALWAYS Server is listening on IPV4 at :\r\n opc.tcp://localhost:4880/CPF_L04.\r\n\r\n2019-11-12T08:40:06.000Z ALWAYS 1562 Nodes in the addressSpace split in \r\n 258 Objects 1047 Variables 0 Views 21 Methods \r\n 65 ObjectTypes 23 ReferenceTypes 114 DataTypes 34 VariableTypes\r\n2019-11-12T08:40:06.000Z ALWAYS Press Q or q to exit.\r\n\r\n2019-11-12T08:40:12.000Z STACK_ERROR OpcUa_SecureListener_ChannelManager_GetChannelBySecureChannelID: Searched SecureChannel with id 1589976011 NOT found!\r\n2019-11-12T08:40:12.000Z STACK_ERROR OpcUa_SecureListener_ChannelManager_GetChannelBySecureChannelID: Searched SecureChannel with id 1589976012 NOT found!\r\n</pre>\r\n\r\nCordialement,\r\nF. TOURRET\r\n','2019-11-12 09:39:16',0),(904,404,'Issue',1,'Bonjour,\r\nJ\'ai toujours la même question :\r\n\"Concernant la crash. Je souhaite savoir ou il se produit et quelle séquence de fonctions déclenchent la problème.\"\r\n\r\nEst ce que vous avez la pile des appels au moment du crash ?\r\n\r\nCordialement\r\nMichel Condemine','2019-11-12 09:42:44',0),(905,404,'Issue',353,'Ci-joint le résultat d’exécution sous Valgrind.\r\n\r\nIl semblerai qu\'il y ai un problème dans les nodeId à la création de session.\r\n\r\nCordialement,\r\nF. TOURRET','2019-11-12 10:47:08',0),(906,406,'Issue',1,'Bonjour,\r\nje vais te faire une livraison ce matin.\r\nIl faut cependant savoir que le fichier afxres.h est un fichier du Visual Studio. Je ne livre pas ce fichier.\r\nJ\'ai compilé sous VS2017 sans problème sur mon poste\r\n\r\nCordialement\r\nMichel','2019-11-18 09:26:01',0),(907,261,'Issue',1,'Bonjour Nobert,\r\nj\'attends toujours votre retour sur ce point ainsi que sur la dernière livraison (64bits).\r\nNotez que je suis en déplacement professionnel au USA (cote ouest) jusqu\'au 5 décembre.\r\nCordialement\r\nMichel Condemine','2019-11-18 09:43:34',0),(908,164,'Issue',1,'','2019-11-18 09:44:12',0),(909,103,'Issue',1,'','2019-11-18 09:44:52',0),(910,238,'Issue',1,'All is now 64bits on both Windows and Linux.\r\nIt was validated by a bunch of customers on both platform\r\nRegards\r\nMichel','2019-11-18 09:47:04',0),(911,89,'Issue',1,'Hi,\r\nI clean up the issue list. This was fixed more 3 years ago.\r\nEnjoy the new certified 1.0.5.7\r\nMichel','2019-11-18 09:52:14',0),(912,404,'Issue',1,'Bonjour,\r\nje viens de générer une RC11, j\'ai testé sous Debian 9 x64:\r\nSimulation en connection Window/Linux Security None OK\r\nSimulation Security None supprimé, connection en Basic256Sha256 OK\r\n\r\nJe clos cet incident et vous livre la RC11\r\nCordialement\r\nMichel Condemine\r\n','2019-11-18 10:02:19',0),(913,404,'Issue',1,'','2019-11-18 10:15:08',0),(914,405,'Issue',333,'\r\n\r\n\r\n\r\n\r\n\r\nJason Noh wrote:\r\n> Hi Michel,\r\n> \r\n> How have you been? Busy as usual?\r\n> We are finally began working on the OPC UA Server based on your project.\r\n> I remember you shared with us the \"OpenOpcUaConfigManager\", the QT-based gui tool.\r\n> \r\n> Can you share the code with us again.\r\n> \r\n> Thanks,\r\n> \r\n> Jason\r\n\r\nMichel,\r\n\r\nI received an email addressed from you but there is no contents.\r\nCan you send it again, please?\r\n\r\nThanks,\r\n\r\nJason ','2019-11-19 03:17:22',0),(915,402,'Issue',1,'Bonjour,\nje suis au USA jusqu\'au 3 décembre.\nvoici la commande pour convertir un pem en pfx.\n\nh1. PEM (.pem, .crt, .cer) to PFX\n<pre>\nopenssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile more.crt\n</pre>\nBreaking down the command:\n* openssl – the command for executing OpenSSL\n* pkcs12 – the file utility for PKCS#12 files in OpenSSL\n* export -out certificate.pfx – export and save the PFX file as certificate.pfx\n* inkey privateKey.key – use the private key file privateKey.key as the private key to combine with the certificate.\n* in certificate.crt – use certificate.crt as the certificate the private key will be combined with.\n* certfile more.crt – This is optional, this is if you have any additional certificates you would like to include in the PFX file.','2019-11-20 02:35:32',0),(916,407,'Issue',1,'Bonjour,\r\nComme indiqué j\'ai fait un teste approfondi avec une débian 9 64 bit. \r\nconnexion secure et non secure. Je n\'ai rencontré aucune seg-fault.\r\nPour mon test j\'ai utilisé les sources que j\'ai envoyé. donc je suis certain des sources.\r\nÊtes vous certain de votre méthode de build ?\r\nPar contre pour vous connecter vous devrez attendre la fin de l\'indexation des fichiers. Mais d\'après votre log cela semble correcte.\r\n\r\nVotre valgrind semble indiquer une erreur lors de la création des nodes de diagnostics. Sans en etre certain je pencherais pour un problème dans l\'intégration des derniers sources.\r\nEncore une fois je suis certain des sources que j\'ai placé sur le redmine.\r\n\r\nJe suis actuellement en déplacement en Californie. Je serai de retour le 5 décembre. Dans l\'interval je ferai de mon mieux pour vous répondre.\r\nCordialement\r\nMichel Condemine','2019-11-20 02:50:56',0),(917,407,'Issue',353,'Bonjour,\r\n\r\nPour éviter tous doutes sur la compilation, j\'ai pris vos sources que j\'ai compilé directement sous Debian 9 64 bits sans modifications.\r\nJe n\'ai pas mis de VPI non plus.\r\nbuildAll.sh. Pui scopie de toutes les lib et exécutable dans un répertoire et exécution (SécurityNone=\"TRUE\").\r\n\r\nJ\'ai repris la manipulation ce matin pour être sûr, toujours SegFault. Je ne comprend pas, notre configuration peut-elle être la cause ?\r\n\r\nAprès pour le VPI il faut aussi compiler la OpenOpcUaVpiLibrary, mais je n\'en suis pas là pour le moment.\r\n\r\nCordialement.\r\n\r\nF. TOURRET\r\n\r\n\r\n\r\n','2019-11-20 09:23:59',0),(918,407,'Issue',1,'Bonjour,\r\nje suis en plein jet-lag et profite de ce \"non-sommeil\" pour essayer de vous aider.\r\nCi-joint ma configuration de test (Simulation).\r\nPouvez vous la tester sur votre poste ?\r\nJe resterai éveillé pour les 90 min à venir.\r\n\r\nCordialement\r\nMichel Condemine','2019-11-20 11:22:00',0),(919,402,'Issue',1,'Bonjour Norbert,\nje profite de mon jet-lag pour vous aider.\nJ\'ai essayé de créer les fichiers pfx a partir de fichiers que vous avez mis dans le ZIP.\nLe problème est que vos fichiers ne sont pas bien clair.\nJ\'ai donc deux questions :\nVous souhaitez générer un pfx pour quel fichier ?\nOu se trouve la clé privée associée ?\n\nCordialement\nMichel','2019-11-20 11:29:21',0),(920,402,'Issue',1,'Bonjour,\r\nthéoriquement la séquence de commandes suivantes devraient fonctionner :\r\nStep1: \r\nopenssl x509 -outform der -in sp402sitycouae1-bundle.pem -out sp402sitycouae1-bundle.crt\r\nStep2:\r\nopenssl pkcs12 -export -out sp402sitycouae1-bundle.pfx -inkey sp402sitycouae1_key.pem -in sp402sitycouae1-bundle.crt\r\n\r\nLa première passe bien mais le seconde retourne \"unable to load certificates\"\r\n\r\nJe suis perplexe\r\n\r\nMichel','2019-11-20 11:45:00',0),(921,407,'Issue',1,'Bonjour,\r\nbonne nouvelle.\r\nJ\'ai trouvé le problème en créant votre configuration sous Windows.\r\nLe crash survient bien lors de la création des informations de diagnostique.\r\nLe client fournit pas de nom de session par défaut. La sessionName est donc vide et provoque le crash.\r\nJe vais régler ce problème. Dans l\'attente ajoutez un nom de session dans UAExpert.\r\n\r\nCordialement\r\nMichel Condemine','2019-11-20 12:40:25',0),(922,407,'Issue',353,'Bonjour,\r\n\r\nEffectivement avec la RC11 en mettant un nom de session cela fonctionne. \r\n\r\nJe suis sur le VPI qui plante et je teste la RC12 ensuite.\r\nUne chaine ne semble pas correcte dans la value d\'un node.\r\n\r\nDans VpiWriteValue au moment de récupérer la sring dans la value, plantage. Je procède comme ceci :\r\n<pre>\r\nCSourceObject* tmpObject = VpiDESPCCL04->GetSourceObject(Ids[i]);\r\n// Extraction du nom de l\'objet reçu\r\nVpi_String strtmp = tmpObject->GetAddress();\r\n...\r\nstring strValue = Vpi_String_GetRawString(&pDataValue[i].Value.Value.String);\r\n</pre>\r\nCela fonctionnait bien jusqu’à maintenant et fonctionne pour les booléens...\r\n<pre>\r\nif (pDataValue[i].Value.Value.Boolean == Vpi_True)\r\n</pre>\r\nAvez-vous une idée ?\r\n\r\nMerci.\r\n\r\nF. TOURRET\r\n','2019-11-21 08:32:58',0),(923,407,'Issue',353,'J\'ai trouvé !\r\n\r\nLa chaine était vide, donc j\'ai ajouté un test Vpi_String_IsNull avant la conversion en string.\r\n\r\nPeut-être faudrait il le tester dans Vpi_String_GetRawString et retourner une chaine vide...\r\n\r\nJe ne m\'explique pas pourquoi je n\'ai pas eu le bug avant ?\r\n\r\nCordialement,\r\nF. TOURRET','2019-11-21 10:13:20',0),(924,407,'Issue',353,'J\'ai observé un comportement curieux avec la RC12 (je pense que c\'est idem avec la RC11 et précédentes). Cela n\'engendre pas de dysfonctionnement. Tests effectués en Debian 9x64 sans VPI et sources non modifiés.\r\n\r\n1er démarrage du serveur avec seulement sa clé privé et publique. OK\r\n1er connexion client, refus de la connexion. OK. Validation manuelle du certificat client (déplacement de rejected à certs). OK\r\n2ieme connexion client OK.\r\n\r\n<pre>\r\n2019-11-21T12:51:12.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-11-21T12:51:12.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-11-21T12:51:12.000Z SERVER_ERROR Root of the certificateStore: /data/ServerOpcUa/CertificateStore\r\n2019-11-21T12:51:12.000Z SERVER_ERROR Extension found in the server certificate are :\r\n2019-11-21T12:51:12.000Z SERVER_ERROR C=FR:\r\n2019-11-21T12:51:12.000Z SERVER_ERROR ST=France:\r\n2019-11-21T12:51:12.000Z SERVER_ERROR L=Romagnat:\r\n2019-11-21T12:51:12.000Z SERVER_ERROR O=PI System Automation:\r\n2019-11-21T12:51:12.000Z SERVER_ERROR OU=BGW:\r\n2019-11-21T12:51:12.000Z SERVER_ERROR CN=CPF_L04:\r\n2019-11-21T12:51:12.000Z SERVER_ERROR DC=SCBG:\r\n2019-11-21T12:51:12.000Z SERVER_ERROR Your certificate validate your server \r\n</pre>\r\n\r\nArrêt du serveur.\r\nLe répertoire certs contient alors les certificats publiques suivant :\r\n- CPF_L04.der (généré par nos soins)\r\n- UaExpert@pisa-043 [3E013E59A4342636E1C83CF2741D03A6D09F01BA].der (clé du client générée par le serveur)\r\n\r\nAu redémarrage du serveur, il regénère sa clé client : CPF_L04 [369D3E8DD60C27A6D1A54B6610682A4691C16E39].der alors que le fichier CPF_L04.der est toujours présent.\r\n<pre>\r\n2019-11-21T12:53:14.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-11-21T12:53:14.000Z SERVER_ERROR Root =/data/ServerOpcUa/CertificateStore TrustedLocation=/certs RevokeLocation IssuerLocation=/crl RevokedIssuerLocation=/auth\r\n2019-11-21T12:53:14.000Z SERVER_ERROR Root of the certificateStore: /data/ServerOpcUa/CertificateStore\r\n2019-11-21T12:53:14.000Z SERVER_ERROR Your certificate in DER file not fit the private key. Will create a new one\r\n2019-11-21T12:53:14.000Z SERVER_ERROR Extension found in the server certificate are :\r\n2019-11-21T12:53:14.000Z SERVER_ERROR C=FR:\r\n2019-11-21T12:53:14.000Z SERVER_ERROR ST=France:\r\n2019-11-21T12:53:14.000Z SERVER_ERROR L=Romagnat:\r\n2019-11-21T12:53:14.000Z SERVER_ERROR O=PI System Automation:\r\n2019-11-21T12:53:14.000Z SERVER_ERROR OU=BGW:\r\n2019-11-21T12:53:14.000Z SERVER_ERROR CN=CPF_L04:\r\n2019-11-21T12:53:14.000Z SERVER_ERROR DC=SCBG:\r\n2019-11-21T12:53:14.000Z SERVER_ERROR Your certificate validate your server \r\n</pre>\r\n\r\nLes 2 certificats publique sont identiques.\r\n\r\nAu redémarrage suivant, il ne regénère pas d\'autre clé.\r\n\r\nJe vais sans doute ne plus mettre la clé publique, comme avant, mais c\'est curieux qu\'elle soit prise correctement qu\'au 1er démarrage. La présence de certificat client semble le perturber...\r\n\r\nA méditer.\r\n\r\nCordialement.\r\nF. TOURRET\r\n\r\n','2019-11-21 13:56:51',0),(925,407,'Issue',1,'Bonjour,\r\nJe ne suis pas certain de comprendre la nature du problème et comment le reproduire.\r\nCependant plutôt que :\r\nstring strValue = Vpi_String_GetRawString(&pDataValue[i].Value.Value.String);\r\nUtilisez\r\nVpiCharA* strValue = Vpi_String_GetRawString(&pDataValue[i].Value.Value.String);\r\n\r\nMerci d\'ouvrir un nouvel incident pour toutes suite a ce problème\r\nCordialement\r\nMichel Condemine','2019-11-22 02:10:26',0),(926,408,'Issue',1,'Bonjour, \r\ntrès bonne remarque.\r\nJe m\'en occupe de suite.\r\nLa nouvelle fonction est comme suit :\r\n<pre>\r\n/*============================================================================\r\n* Get pointer to internal raw string.\r\n*===========================================================================*/\r\nVpi_CharA* VPI_DLLCALL Vpi_String_GetRawString(const Vpi_String* a_pString)\r\n{\r\n Vpi_CharA* pszResult = Vpi_Null;\r\n if (a_pString)\r\n pszResult = _Vpi_String_GetRawString(a_pString);\r\n return pszResult;\r\n}\r\n</pre>\r\n\r\nCordialement\r\nMichel Condemine','2019-11-22 15:38:57',0),(927,409,'Issue',1,'Bonjour,\r\nIl a toujours été possible d\'initialiser les valeurs depuis le fichier NodeSet.\r\nMalheureusement cette initialisation n\'était pas propagée jusqu\'au Vpi. J\'ai corrigé cette lacune dans la RC1x.\r\nCela explique que le VpiwriteValue soit appelé au démarrage du Serveur.\r\nAfin de supprimer ces appel il faut supprimer les initialisations du/des nodeset.\r\n\r\nCordialement\r\nMichel Condemine','2019-11-22 15:57:44',0),(928,409,'Issue',353,'Bonjour,\r\n\r\nJe comprend le principe. \r\nDonc il faut supprimer l\'initialisation des noteset dans VpiParseAddId ? J\'ai testé mais VPpiWriteValue est toujours appelée.\r\n\r\n<pre>\r\n// création d\'un nouvel objet\r\nCSourceObject* pNewSourceObject = new CSourceObject();\r\nif (pNewSourceObject)\r\n{\r\n // Adresse côté serveur OPCUA\r\n pNewSourceObject->SetNodeId(Id);\r\n // récupération d\'un pointeur sur la valeur\r\n// Vpi_DataValue* pValue = (Vpi_DataValue*)malloc(sizeof(Vpi_DataValue));\r\n// if (pValue)\r\n// {\r\n// if (uStatus == Vpi_Good)\r\n// {\r\n //pValue->SourceTimestamp = Vpi_DateTime_UtcNow();\r\n //pValue->Value.Value.StatusCode = Vpi_UncertainInitialValue;\r\n //pNewSourceObject->SetValue(pValue);\r\n\r\n pNewSourceObject->SetAddress(ParsedAddress);\r\n VpiDESPCCL04->AddSourceObject(pNewSourceObject);\r\n// }\r\n// else\r\n// {\r\n// delete pNewSourceObject;\r\n// Vpi_DataValue_Clear(pValue);\r\n// free(pValue);\r\n// }\r\n...\r\n</pre>\r\n\r\nCe que je ne comprend pas, c\'est que si on a mis un status au nodeset dans la VpiParsedAddId, pourquoi le serveur change cet état à l\'appel de la VpiWriteValue et le met à Vpi_Good ?\r\n\r\nCordialement.\r\n\r\nF. TOURRET\r\n\r\n','2019-11-25 08:26:01',0),(929,411,'Issue',1,'Bonjour,\r\nnon le serveur ne les déplace pas automatiquement.\r\nCe serai peut être bien que je le fasse. Je vais y réfléchir.\r\nCordialement\r\nMichel Condemine','2019-11-25 17:22:44',0),(930,409,'Issue',1,'Bonjour,\r\nil faut supprimer les initialisations des fichiers nodeset.\r\n\r\nCordialement\r\nMichel Condemine','2019-11-25 17:27:25',0),(931,411,'Issue',353,'Bonjour,\r\n\r\nCe fonctionnement nous va très bien. Si cela venait à évoluer, il faudra nous le signaler.\r\n\r\nMerci.\r\n\r\nF. TOURRET','2019-11-26 09:06:55',0),(932,409,'Issue',353,'Bonjour,\r\n\r\nOui effectivement, c\'était logique, c\'est long est fastidieux mais ça marche les nodes dans le serveur sont à UncertainInitialValue.\r\n\r\nMais un autre problème se pose, les valeurs ne changent plus dans le serveur à la réception de données dans le VPI . J\'ai testé sur un node, si je remet une <value> dans le fichier nodeset tout refonctionne comme avant...\r\n\r\nA la réception de données de la source je met a jour l\'objet de la cache directement avant d\'appeler la CallBack avec la liste des nodes modifiés.\r\n<pre>\r\n// Récupération de l\'objet dans le cache VPI\r\nCSourceObject* ObjetEtat = pVpiDESPCCL04->GetSourceObject(AdresseEtat);\r\n// Récupération de la Value\r\nVpi_DataValue* pValueEtat = ObjetEtat->GetValue();\r\n// Mise à jour des nouvelles valeurs\r\npValueEtat->Value.Value.Boolean = True;\r\npValueEtat->StatusCode = Vpi_Good;\r\npValueEtat->SourceTimestamp = DateStringTopiDateTime(date_event);\r\n// Ajout des données à transmettre dans les vecteurs correspondants\r\nlstNodeId.push_back(ObjetEtat->GetNodeId());\r\nlstpDataValue.push_back(pValueEtat);\r\n...\r\n//Construction des paramètres pour la CallBack\r\n // Nombre d\'élément à envoyer\r\n Vpi_UInt32 nbelements = lstNodeId.size();\r\n // Dimensionnement des tableaux pour la callBack\r\n Vpi_NodeId* pIds = (Vpi_NodeId*)malloc(sizeof(Vpi_NodeId) * nbelements);\r\n Vpi_DataValue* pValues = (Vpi_DataValue*)malloc(sizeof(Vpi_DataValue) * nbelements);\r\n Vpi_StatusCode* pResults = (Vpi_StatusCode*)malloc(sizeof(Vpi_StatusCode) * nbelements); // tableau de pResult\r\n\r\n// Boucle de construction des paramètres de la CallBack\r\n for(itNodeIds = lstNodeId.begin() ; itNodeIds != lstNodeId.end() ; itNodeIds++)\r\n {\r\n pIds[i] = (*itNodeIds);\r\n Vpi_DataValue_CopyTo((*itpDataValues), &pValues[i]);\r\n itpDataValues++;\r\n i++;\r\n }\r\n...\r\npFuncNotifyCallback(nbelements, pIds, pValues, &pResults, Vpi_Null, Vpi_Null);\r\n\r\n</pre>\r\n\r\nDans la VpiParsedAdddId je met pValue->StatusCode = Vpi_Good.\r\n\r\nJe ne comprend pas ce qui cloche quand les StatusCode du serveur sont à UncertainInitialValue.\r\n\r\nMerci pour votre aide.\r\n\r\nCordialement.\r\n\r\nF. TOURRET\r\n','2019-11-26 09:51:01',0),(933,401,'Issue',328,'Bonjour Michel,\r\n\r\nSuite aux derniers essais, il semble que ce problème se produit lorsque MODIF_BD est à 1 et donc que lorsque l\'UAE vient lire les variables afin de faire la mise à jour.\r\nAvez-vous une idée sur l\'origine du problème ?\r\n\r\nCordialement.\r\n\r\nNorbert','2019-12-09 14:54:24',0),(934,401,'Issue',1,'Bonjour Norbert,\r\nJe vais livrer une nouvelle 1.0.5.7 ce sera la RC13.\r\nElle contient des corrections et améliorations sur les nouvelles fonctionnalités et suite la certification.\r\nJe ne comprends pas le problème relatif a MODIF_BD, si il est bien relatif a cette variable. Avez vous des informations de log ?\r\nCordialement\r\nMichel','2019-12-09 16:30:19',0),(935,412,'Issue',328,'Ci-joint fichier xml avec CW43 (2ème CMSI maitre)\r\n\r\nCdlt.','2019-12-16 17:17:55',0),(936,412,'Issue',1,'','2019-12-18 14:44:15',0),(937,412,'Issue',328,'OK pour la prise en compte des FMSI mais reste un problème sur les UGA','2019-12-18 19:25:18',0),(938,409,'Issue',353,'Bonjour,\r\n\r\nJe suis toujours en attente d\'une solution au problème d\'initialisation des nodes.\r\n\r\nCordialement.\r\n\r\nF. TOURRET\r\n\r\n','2019-12-20 13:56:51',0),(939,409,'Issue',1,'Bonjour,\nje pense qu\'il y a un problème dans votre ParseAddId. Les valeurs étaient initialisées dans le serveur via le nodeset.\nVérifiez que votre parseAddId place les bons types lors de l\'initialisation.\nPlacez aussi les fichiers de log dans ce ticket.\n\nCordialement\nMichel Condemine','2019-12-20 15:59:18',0),(940,409,'Issue',353,'Bonjour,\r\n\r\nJ\'ai repris le sujet ce matin.\r\nJ\'ai travaillé sur la VpiParseAddId en reprenant le code du dernier VpiNull. Il y avait effectivement une différence sur l\'allocation mémoire en fonction du type de variable.\r\n\r\nCela fonctionne comme je le souhaite maintenant. Merci.\r\n\r\nCordialement.\r\nF. TOURRET','2020-01-15 15:33:40',0),(941,413,'Issue',1,'Bonjour,\r\nvous trouverez ci-joint un fichier de configuration oouaprj.\r\nLe Vpi pour sa part prendre en compte les nouvelles signature de certaines fonctions. Toutes n\'ont pas évolué.\r\n\r\nCordialement\r\nMichel Condemine','2020-02-10 10:09:48',0),(942,414,'Issue',1,'Bonjour,\r\nil s\'agit en effet d\'une nouvelle fonctionnalité demandé par de nombreux utilisateurs.\r\nElle ne peut être désactivé. \r\nCependant si aucune variable n\'est initialisé dans le nodeset cette fonction ne sera pas utilisé.\r\n\r\nCordialement\r\nMichel Condemine','2020-02-10 10:49:35',0),(943,414,'Issue',1,'','2020-02-12 21:21:18',0),(944,415,'Issue',1,'Bonjour,\r\nADP doit vous indiquer à quoi correspond chaque fichier.\r\nPour ma part je peux vous expliquer le fonctionnement de la PKI d\'OpenOpcUaCoreServer.\r\nCette PKI se trouve dans le répertoire CertificateStore dans le racine du repertoire associé au projet (ProjectFolder)\r\nCertificateStore contient 4 sous-répertoires\r\n# auth --> certificats des l\'autorités de certification valide\r\n# certs --> liste des certificats publics valide\r\n# private --> certificat privé (pfx uniquement)\r\n# rejected certificat application client rejeté \r\n\r\nauth contient à son tour 2 sous repertoires\r\n# certs --> certificats des l\'autorités de certification valide\r\n# crl --> stockage des crl d\'autorité\r\n\r\ncerts contient 1 sous repertoire. \r\n* crl--> il contient les crl d\'application\r\nLes certificats public des applications autorisées (format DER) uniquement se trouvent directement dans certs. \r\n\r\nJ\'espère que cela vous permettra de configurer votre PKI.\r\n\r\ncordialement\r\nMichel Condemine','2020-02-12 21:31:16',0),(945,416,'Issue',1,'je ferme ce ticket car il est redondant avec le 415','2020-02-12 21:32:10',0),(946,261,'Issue',328,'fonctionnement OK','2020-02-21 18:26:32',0),(947,417,'Issue',420,'- Ajout tableau des IDs de rinçage production ( rinçage lié au recettes) \r\n- Ajout tableau des IDs de rinçage Machine ( rinçage lié à la machine )','2020-02-28 10:46:28',0),(948,420,'Issue',1,'','2020-02-28 12:54:33',0),(949,402,'Issue',1,'openssl pkcs12 -export -in sp402sitycouae1-bundle.pem -inkey sp402sitycouae1_key.pem -out test.p12','2020-02-28 17:51:04',0),(950,419,'Issue',1,'Bonjour,\r\nil ne devrait pas être necessaire de relancer le serveur.\r\nCordialement\r\nMichel Condemine','2020-03-02 11:30:31',0),(951,421,'Issue',1,'Bonjour,\r\nJe ne vois pas de problème dans la description que vous faites.\r\nLe répertoire Rejected contient les fichiers de certificats rejetés. \r\nUn administrateur qui souhaite accepter un certificat doit le recopier dans le repertoire cert.\r\nC\'EST LA PROCEDURE NORMALE.\r\n\r\nCordialement\r\nMichel Condemine','2020-03-11 17:19:00',0),(952,431,'Issue',1,'','2020-07-06 22:53:03',0),(953,422,'Issue',1,'Cet incident n\'a plus lieu d\'être. Je le ferme si vous êtes d\'accord','2020-07-15 16:04:10',0),(954,423,'Issue',1,'Bonjour, \r\nje ne suis pas certain de comprendre le problème.\r\nJe vais faire d\'autres essais pour tenter de reproduire le problème.\r\n\r\nCordialement\r\nMichel','2020-07-15 16:08:51',0),(955,424,'Issue',1,'doublon :)','2020-07-15 16:10:10',0),(956,425,'Issue',1,'Doublon !','2020-07-15 16:11:26',0),(957,424,'Issue',1,'Doublon !','2020-07-15 16:12:21',0),(958,426,'Issue',1,'Je vais creuser.','2020-07-15 16:15:08',0),(959,427,'Issue',1,'Avez vous des nouvelles de ce problèmes ?\r\nAvez vous les log ?','2020-07-15 16:18:14',0),(960,428,'Issue',1,'Bonjour,\r\nje vais vous livrer une mise à jour.\r\nLe problème est lié à un pointeur invalide. \r\nCependant le code du serveur à très légèrement évoluer et je ne peux pas malheureusement utiliser le DUMP.\r\n\r\nCordialement\r\nMichel\r\n','2020-07-15 16:23:24',0),(961,426,'Issue',1,'Bonjour,\r\nJ\'ai fait une correction afin de permettre d\'afficher la même heure en entre la valeur saisie dans le fichier et la valeur source.\r\nVoir fichier attaché\r\n\r\nCordialement\r\nMichel\r\n\r\n\r\n\r\n','2020-07-15 19:21:34',0),(962,432,'Issue',1,'Bonsoir,\r\nj\'ai installé la version 0.0.0.2 qui doit corriger le problème d\'écriture des float depuis le client UA.\r\nMerci de valider le comportement du VPI.\r\nBien cordialement\r\nMichel Condemine','2020-07-29 23:11:25',0),(963,432,'Issue',1,'Bonjour,\r\nAvez vous pu réaliser des essais sur les float avec cette version ?\r\ncordialement\r\nMichel','2020-07-30 16:30:18',0),(964,434,'Issue',1,'Bonjour,\nJe regarde de suite.\nConcernant la big-little endian. Pour l\'instant tout est en Little-Endian\n\nCordialement\nMichel','2020-07-30 16:31:34',0),(965,432,'Issue',428,'Bonjour, \r\n\r\nJ\'ai fait quelques tests qui sont concluants. \r\n\r\nCordialement, \r\n\r\nAlexis','2020-07-30 16:34:58',0),(966,434,'Issue',1,'Bonsoir,\r\nje viens de poster la version 0.0.0.3 du Vpi qui corrige le problème sur l\'interprétation des UInt32 et des Int32 bit.\r\nJe vous laisse déployer cette version .\r\nJ\'attends votre retour pour clore l\'incident.\r\n\r\nBien cordialement\r\nMichel','2020-07-30 23:18:32',0),(967,434,'Issue',428,'Bonjour, \r\nC\'est déployé de mon côté, j\'obtiens des valeurs cohérentes. \r\nBonne journée, \r\nAlexis ','2020-07-31 08:47:36',0),(968,438,'Issue',1,'Fixed in 1.0.5.9','2020-08-12 10:20:05',0),(969,439,'Issue',1,'','2020-08-12 10:22:48',0),(970,440,'Issue',1,'Update on 1.0.5.9','2020-08-12 10:24:38',0),(971,442,'Issue',1,'I just add a fake nonce 123456OpenOpcUa when a client connect with SecurityPolicy#None. It replace an empty nonce.\r\nThis need to be verified with the CTT','2020-08-12 10:34:21',0),(972,437,'Issue',1,'Fixed in 1.0.5.9.\r\nI introduce the Gloabal function (IsNodeClassAndAttributeCompliant) to verify the compatibility of nodeclass vs AttributeId\r\n','2020-08-12 12:59:17',0),(973,441,'Issue',1,'Hello,\r\nthe certificate generation is now ok.\r\nAs you can see in the screenshot, the two missing keyUsage are now added.\r\n\r\nKind regards\r\nMichel','2020-08-12 17:24:33',0),(974,435,'Issue',1,'Hello,\r\nI cannot reproduce the problem. \r\nAs you can see in the attached image. \r\nI made the test with Softing dataFeed.\r\n\r\nI will test with the OPC Foundation client just in case.\r\nRegards\r\nMichel\r\n','2020-08-12 18:09:48',0),(975,435,'Issue',1,'Just to be sure. \r\nI made the test with the OPC Foundation sample client.\r\nHere again everything is ok. (see attached file)\r\nKendi regards\r\nMichel','2020-08-12 18:19:46',0),(976,436,'Issue',1,'Hello Sebastian,\r\nI suggest to remove Byte-array from the configuration file. \r\nBoth NodeSet and CTT.\r\nWhat do you think ?\r\n\r\nRegards\r\nMichel','2020-08-13 00:14:59',0),(977,435,'Issue',430,'Hi,\r\n\r\nyou are right, it works fine when using subscriptions. You can reproduce the issue by using the Read service with these IndexRanges.','2020-08-13 07:23:18',0),(978,436,'Issue',430,'This decision is beyond of my competence. I\'ve already asked for approval but haven\'t receive an answer yet.\r\nIn general, it is required for certification that all supported opc ua features (this includes all supported DataTypes) are tested. That means, that if it is possible to create such a node, we have to test it.','2020-08-13 07:32:14',0),(979,442,'Issue',430,'I already asked whether you have to fix this issue or not. But I haven\'t receive an answer yet.\r\nAnyhow, I\'m pretty sure that this fake nonce won\'t be accepted (See definition in attached picture).','2020-08-13 07:38:29',0),(980,442,'Issue',1,'Hello,\nin order to fit the definition you provide.\nI will use a randomly generated byteString.\nThe nonce is provided on CreateSession but do you want to provide one during the ActivateSession ?\n \nRegards\nMichel','2020-08-13 15:57:20',0),(981,435,'Issue',1,'Hello Sebastian,\ni have a problem to test this.\nMy server require that the client specify properly the DataEncoding on read operation. I mean that if the encoding is not NULL. It must be someting consistent. Unfortunatly the OPC Foundation SampleClient specify an empty DataEncoding. This is incorrect. . (See attach image)\nHow did you test those read operations ?\n\nRegards\nMichel\n','2020-08-14 10:57:18',0),(982,435,'Issue',430,'I modified the SampleClient code at some places. I think the one that is relevant for this issue is:\r\n\r\nIn line 86 in the file \"Samples\\Controls.Net4\\Subscriptions\\ReadValueEditDlg.cs\", I replaced \"(EncodingCB.Text)\" with \"(null)\".','2020-08-14 11:18:13',0),(983,435,'Issue',430,'','2020-08-14 12:14:09',0),(984,445,'Issue',1,'Bonjour,\r\nIl n\'y a pas de VPI SQL mais un VFISQL pour SQLServer. \r\nPouvez vous m\'en dire plus sur l\'usage que vous souhaitez faire de ce VFI ?\r\nBien cordialement\r\nMichel','2020-08-17 17:32:56',0),(985,445,'Issue',428,'Bonjour, \r\n\r\nEn effet j\'ai corrigé dans le corps mais pas dans le titre je parlais bien du VFI. \r\n\r\nNous utilisons 4D comme base de données. 4D contient également un moteur capable de faire du SQL et j\'aurais voulu tester la compatibilité entre ce VFI et le moteur SQL de 4D pour enregistrer à intervalle régulier les données du serveur de test par exemple. \r\n\r\nCordialement, \r\n\r\nAlexis','2020-08-18 09:19:25',0),(986,447,'Issue',1,'This is now fixed in the new release.','2020-09-16 16:08:47',0),(987,448,'Issue',1,'Bonjour,\r\npourriez vous faire le test sous Windows ?\r\nDans tous les cas on en parle vendredi.\r\n\r\nCordialement\r\nMichel','2020-09-22 17:51:02',0),(988,449,'Issue',1,'Bonjour,\r\nvous avez parfaitement raison.\r\nParamétrez le fichier host sur les deux postes pour valider la connexion.\r\n\r\nCordialement\r\nMichel','2020-09-22 17:52:35',0),(989,448,'Issue',1,'Bonjour,\r\nmerci de joindre la callstack.\r\n\r\nCordialement\r\nMichel','2020-09-22 18:15:04',0),(990,448,'Issue',432,'Celui de la Console ou bien celui du débugger? \r\n\r\nMichael ','2020-09-22 18:22:25',0),(991,448,'Issue',1,'Celui du debugger serait mieux :)\r\nCordialement\r\nMichel','2020-09-22 18:49:58',0),(992,448,'Issue',1,'Bonsoir,\r\nje viens de faire le test sous Windows sans aucun problème.\r\nEncore une fois la callstack Linux serait fort utile.\r\n\r\nCordialement\r\nMichel','2020-09-22 20:36:32',0),(993,449,'Issue',432,'Votre solution a résolu le problème \r\nJe vous remercie,\r\n\r\nMichael','2020-09-23 11:34:35',0),(994,448,'Issue',432,'Voici en PJ les callstack du debugger et de la console \r\n\r\nJ\'essaye maintenant avec une instance du serveur sur la même machine windows que kepware\r\n\r\nMichael ','2020-09-23 11:36:12',0),(995,450,'Issue',1,'Bonjour,\r\nje suis en train de préparer une nouvelle livraison.\r\nElle réglera l\'ensemble des problèmes évoqués. \r\nJ\'ai ajouté des tests avec KepServerEx dans ma procédure de validation.\r\n\r\nCette nouvelle livraison sera disponible d\'ici quelques jours.\r\n\r\nCordialement\r\nMichel','2020-09-29 17:50:32',0),(996,452,'Issue',1,'Bonjour,\r\nIl n\'y a en effet pas de directive de compilation pour MACOS dans le code.\r\nSachant que MACOS est un FORK d\'UNIX. Je vous recommande de faire croire à MACOS qu\'il s\'agit d\'un LINUX en ajoutant les options du preprocesseur dans le CMAKE.\r\nCordialement\r\nMichel Condemine\r\n','2020-09-29 18:16:32',0),(997,451,'Issue',424,'Bonjour M. Condemine,\r\nSuite à votre dernière mise à jour, j\'ai testé et je n\'ai toujours aucun résultat.\r\nJ\'ai vu que vous avez implémenté la gestion du type ExtensionObject dans la fonction CopyVpiDataValueToDirectAccessDataValue mais pas dans CopyDirectAccessDataValueToVpiDataValue. Ce n\'est pas nécessaire dans cette dernière?','2020-09-30 13:09:53',0),(998,450,'Issue',1,'Bonjour,\r\nj\'ai mis en œuvre l\'agrégateur UA de KEPWARE. J\'ai utilisé le mode POLLING.\r\nSur l\'image UAX-KEP-OOUA.PNG vous verrez UAExpert connecté au serveur KEP lui-même connecté à l\'OOUACoreServer\r\nCependant celui-ci (KEP) ne fonctionne pas correctement en mode \"abonné\".\r\nEntendez pas la quel le client UA KEP que l\'on associe à un DEVICE ne realise pas correctement les demande PUBLISH.\r\nIl s\'agit peut être d\'un mauvais paramétrage de ma part. D\'après les captures wireshark que j\'ai réalisé je pencherai pour un bug KEP. (fichier joint WiresharkKEP-OOUA.PNG)\r\n\r\nCordialement\r\nMichel','2020-10-01 13:42:21',0),(999,450,'Issue',1,'Bonjour,\r\nj\'ai corrigé le problème de comportement avec le serveur KEP.\r\nCelui-ci utilise un TimeoutHint et 0 dans l\'entête des messages de \"PUBLISH\"\r\nLa spec prévoie que :\r\n<pre>\r\nThis timeout in milliseconds is used in the Client side Communication Stack to set the timeout on a per-call base.\r\nFor a Server this timeout is only a hint and can be used to cancel long running operations to free resources. If the Server detects a timeout, he can cancel the operation by sending the Service result Bad_Timeout. The Server should wait at minimum the timeout after he received the request before cancelling the operation. The Server shall check the timeoutHint parameter of a Publish request before processing a Publish response. If the request timed out, a Bad_Timeout Service result is sent and another Publish request is used.\r\nThe value of 0 indicates no timeout.\r\n</pre>\r\nJ\'ai modifié le serveur pour qu\'il accepte en le limitant ce type de comportement.\r\nCordialement\r\nMichel','2020-10-01 17:08:11',0),(1000,451,'Issue',1,'Bonjour,\r\nje travail sur une version qui devrait être disponible la semaine prochaine.\r\nElle contient de nombreux correctifs et améliorations qui devraient faire tomber la CPU. \r\nAvez vous pu identifier un cause de surcharge ?\r\nEn outre je finaliserai les essais sur l\'InternalKrnlApi dans la foulée.\r\n\r\nCordialement\r\nMichel Condemine\r\nPS: Merci d\'utiliser le redmine','2020-10-01 18:16:54',0),(1001,451,'Issue',424,'Bonjour, \r\nOk, Merci. On attend votre retour.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2020-10-02 09:27:10',0),(1002,451,'Issue',424,'Bonjour M. Condemine,\r\nAvez-vous pu regarder pour l\'utilisation de l\'ExtensionObject dans l\'internalKrnlApi ainsi que la consommation CPU du serveur?\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2020-10-12 09:27:36',0),(1003,454,'Issue',1,'Bonjour,\nLa commande que vous utilisez est correct. Auriez vous un message dans le LOG ?\nIl faut bien sur etre administrateur de son poste pour modifier le registre de Windows\nSouhaitez vous que l\'on fasse une réunion team ?\n\nCordialement\nMichel Condemine\n\nPS: Merci d\'utilisez le redmine pour le support','2020-10-12 14:56:30',0),(1004,453,'Issue',1,'Bonjour,\r\nj\'ai commencé une phase de test hier soir qui m\'a amené à réaliser une modification dans le VPI.\r\nJ\'espère vous livrer dans la journée.\r\n\r\nCordialement\r\nMichel Condemine','2020-10-13 09:53:05',0),(1005,454,'Issue',1,'Bonjour,\r\npour lancer le serveur en tant que service vous devez indiquer des chemins absolus dans les _ProjectFolder_ et _LogFolder_ dans le fichier oouaprj.\r\nCes chemins absolus sont indispensable pour permettre au serveur de trouver la configuration. \r\n\r\nCordialement\r\nMichel Condemine','2020-10-13 09:56:02',0),(1006,446,'Issue',1,'Bonjour, \r\navez vous des nouvelles sur ce sujet ?\r\nCordialement\r\nMichel','2020-10-16 09:57:01',0),(1007,451,'Issue',424,'Bonjour M. Condemine,\r\nAvez-vous pu avancer sur l\'implémentation de l\'ExtensionObject dans l\'internalKrnlApi ainsi que la consommation CPU du serveur? Merci.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2020-10-16 18:03:09',0),(1008,459,'Issue',1,'Évolution intégré dans la version 0.0.0.6\r\nCordialement\r\nMichel Condemine','2020-10-19 11:50:27',0),(1009,457,'Issue',1,'C\'est un fonctionnement qui est en harmonie avec la logique de configuration du serveur et des VPIs en générales.\r\nJ\'ai fait une modification dans la version 0.0.0.6 du VpiTP pour qu\'il fonctionne comme vous le souhaitez.\r\nCordialement\r\nMichel Condemine','2020-10-19 11:52:42',0),(1010,456,'Issue',1,'','2020-10-19 11:53:35',0),(1011,455,'Issue',1,'','2020-10-19 11:54:06',0),(1012,454,'Issue',1,'','2020-10-19 11:55:31',0),(1013,459,'Issue',1,'Résolu dans la version 0.0.0.6','2020-10-19 13:48:21',0),(1014,423,'Issue',1,'','2020-10-19 13:49:08',0),(1015,426,'Issue',1,'','2020-10-19 13:49:30',0),(1016,453,'Issue',1,'','2020-10-19 13:49:59',0),(1017,457,'Issue',1,'','2020-10-19 13:50:32',0),(1018,428,'Issue',1,'','2020-10-19 13:51:15',0),(1019,427,'Issue',1,'','2020-10-19 13:51:32',0),(1020,406,'Issue',1,'','2020-10-19 13:52:19',0),(1021,377,'Issue',328,'OK avec plusieurs zones','2020-10-20 11:44:42',0),(1022,376,'Issue',328,'Bonjour,\r\n\r\nen attendant des nouvelles d\'ADP pour la mise en place des variables AP, pouvez-vous mettre en commentaire le code qui permet de lancer la requête sur l\'état des points appartenant au G1402 (via PID148).\r\nMerci.\r\n\r\nCdlt.\r\n\r\nNorbert','2020-10-20 11:52:35',0),(1023,460,'Issue',1,'Implémenté dans la version 0.0.4.4','2020-10-20 16:20:41',0),(1024,458,'Issue',1,'vérifier et validé dans la version 0.0.4.3','2020-10-20 16:21:34',0),(1025,458,'Issue',1,'Concernant les points status map j\'ai un doute car ces requêtes permettent de resynchroniser les centrales.\r\nÊtes vous donc certain de ne les vouloir que sur les ECS ?\r\nCordialement\r\nMichel','2020-10-20 16:29:23',0),(1026,451,'Issue',424,'Bonjour M. Condemine,\r\nAvez-vous pu avancer sur l\'implémentation de l\'ExtensionObject dans l\'internalKrnlApi ainsi que la consommation CPU du serveur? ça devient urgent. Merci.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2020-10-26 11:00:24',0),(1027,451,'Issue',1,'Bonjour, \r\nje suis toujours en train de travailler sur le serveur.\r\nJ\'ai implémenté le support bidirectionnel des ExtensionObject \r\nConcernant la charge CPU avez vous pu étudier la piste que nous avions soulevé lors du dernier CALL ?\r\nPar ailleurs avez vous mis en place l\'abonnement via l\'internalKrnlApi ?\r\n\r\nCordialement\r\nMichel Condemine','2020-10-26 17:23:38',0),(1028,451,'Issue',1,'See new comment','2020-10-26 17:39:12',0),(1029,462,'Issue',424,'Bonjour M. Condemine,\r\nJ\'ai récupéré la version 1.0.5.9, je vais travailler dessus.\r\nJ\'ai vu le screenshot, c\'est exactement ce qu\'on cherchait à faire. Maintenant je vais voir pour faire la même chose depuis l\'application principale et je vous tiens au courant.\r\nMerci.\r\n\r\nCordialement,\r\nMaycko LOUIS','2020-10-29 09:59:28',0),(1030,461,'Issue',1,'Bonjour M. Moineau,\r\ndésolé pour cette réponse tardive, le système de notification du serveur Redmine était en panne.\r\nJ\'ai constaté que le DirectAccess ne fonctionne pas lorsque le serveur est installé et utilisé en tant que service.\r\nIl doit y avoir un problème de droit dans l\'accès au segment de mémoire partagé.\r\nJe vous invite à utiliser cette fonctionnalité en lançant le server en tant qu\'application.\r\nJe continue les investigations de mon côté.\r\n\r\nBien cordialement\r\nMichel Condemine','2020-10-29 10:22:23',0),(1031,462,'Issue',424,'Bonjour, J\'ai compilé la dernière version que vous avez livrer mais je n\'arrive pas à écrire dans la datacache. J\'ai regardé dans les fichiers log du serveur (voir fichiers ci-joint), et apparemment le VPI n\'arrive pas à parser les données. avez-vous fait des modifications dans le répertoire Linux_Demo que vous avez oublier d\'inclure dans la livraison? \r\n\r\nCordialement,\r\nMaycko LOUIS','2020-10-30 18:24:45',0),(1032,462,'Issue',1,'Bonjour,\r\nle répertoire Linux_Demo est un répertoire de test. Il ne fait pas partie de la livraison. je n\'ai, donc, pas oublié de le livrer.\r\nJe peux cependant vous fournir ma version Linux.\r\nA la lecture de vos log on constate une erreur de configuration récurrente. On reçoit une série de codes d\'erreur qui signifient BadNodeIdExists\r\nEntendez par là que le VpiSk tente d\'ajouter des Alias déjà configurés dans la cache de l\'internalKrnlApi.\r\nJe vous rappelle que seul le VpiSk doit configurer/peupler la cache.\r\nPourriez vous faire des tests en supprimant votre MainApp en utilisant uniquement les composants suivants :\r\n* VpiSk\r\n* InternalKrnlApi\r\n* KrnlApiTester \r\n\r\nCordialement\r\nMichel Condemine','2020-10-30 18:51:27',0),(1033,462,'Issue',424,'Bonjour,\nJ\'ai recompilé le projet et maintenant j\'ai le résultat que votre screenshot \"VPISK_Linux.PNG\". Le fait que je n\'arrivais pas écrire dans la datacache était sûrement lié à une mauvaise copie d\'une des librairies nécessaire sur notre cible.\nConcernant le test précédent, il avait été réalisé avec les composants que vous avez cités. Dans notre MainApp nous ne faisons pas appel à la fonction de peuplement de la datacache. \nJe supposes que si on arrête le serveur correctement, il y\' a un code quelques part dans le serveur/VpiSk qui s\'occupe de libérer la cache. Donc si on arrête pas le serveur correctement (ex : Ctrl - C), la cache n\'est pas libérer, donc au prochain démarrage le VpiSk va essayer d\'ajouter des Alias dans une zone déjà configurée ce qui peut donné ce genre de log. Je vais vérifier ce cas. Si c\'est bien ça, je le saurais ma pour la suite. Merci.\n\nBien Cordialement,\nMaycko LOUIS','2020-10-30 21:05:30',0),(1034,464,'Issue',1,'Bonjour Norbert,\r\nj\'ai regardé les logs et je ne vois rien qui expliquerait une disparition de l\'espace d\'adressage.\r\nPar ailleurs il n\'existe aucun mécanisme dans le serveur qui permet d\'effacer l\'espace d\'adressage.\r\nAvez vous bien rafraichi UAExpert ?\r\nQuand vous écrivez :\"_mais il n\'y a plus d\'espace d\'adressage dans UAExpert_\".\r\nAvez vous connecter UAExpert au serveur ou était il déjà connecté ?\r\n\r\nCe qui est certain c\'est que c\'est pas normal et qu\'il faut investiguer le problème.\r\n\r\nCordialement\r\nMichel','2020-11-02 11:37:24',0),(1035,464,'Issue',328,'à mon arrivée, UAExpert etait déjà connecté et l\'espace d\'adressage n\'était pas présent.\r\nJ\'ai fermé UAExpert et je l\'ai relancé toujours pas d\'espace d\'adressage.\r\nA priori, l\'espace d\'adressage n\'était pas vu non plus par l\'UAE (objet de l\'appel à l\'astreinte).\r\n\r\nil a fallu que je relance le serveur pour qu\'il reconstruise l\'espace d\'adressage.','2020-11-02 11:52:36',0),(1036,464,'Issue',1,'Très honnêtement Norbert. \r\nJe ne comprends pas comment l\'espace d\'adressage pourrait disparaitre.\r\nIl faut manifesterment plus d\'information pour comprendre ce qui s\'est passé :\r\n1- a t il vraiment disparu ?\r\n2- Si oui comment ?\r\n3- Est ce que le Browsing a rencontré un problème.\r\n\r\nSi le problème se reproduit je recommande fortement de mettre un Wireshark en activité afin de capturer la trace OPC UA.\r\n\r\nCordialement\r\nMichel Condemine','2020-11-02 12:05:21',0),(1037,452,'Issue',431,'Bonjour,\r\nJe reprends l\'étude du projet de client OPC-UA.\r\nJe ne maitrise pas l\'outils CMAKE et ne parvient pas à modifier les options de preprocesseur pour faire croire à MacOS qu\'il s\'agit d\'un LINUX.\r\nPouvez vous m\'aider et m\'en dire d\'avantage.\r\nMerci pour votre aide.\r\nJacques Peigné','2020-11-04 12:15:20',0),(1038,452,'Issue',1,'Bonjour,\r\nl\'ensemble de la documentation sur CMake est disponible à l\'adresse suivante https://cmake.org/documentation/\r\nLes options du préprocesseur sont préfixées par -D ajoutez ensuite l\'option à activer _linux dans notre cas.\r\nNous sommes d\'accord sur le fait que vous utilisez GCC et G++ pour compiler la stack.?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2020-11-04 13:51:08',0),(1039,452,'Issue',431,'Effectivement sur le Mac Os le compilateur par défaut n\'est pas GCC\r\nAprès avoir réinstallé GCC. La compilation n\'aboutit pas d\'avantage.\r\nEn PJ la sortie du CMake.rtf et Make.rtf\r\nMerci','2020-11-04 18:33:03',0),(1040,452,'Issue',1,'Bonjour,\r\nil y a manifestement une erreur dans votre plateforme de génération.\r\nstdio.h n\'est pas inclus, probablement car _GNUC_ n\'ai pas dans les options du préprocesseur.\r\nLa ligne 288 du fichier doit etre ignorée par _INC_STDIO lui même activé par _GNUC_\r\nJe vous rappel que le code ne doit en aucune façon etre modifié. Seul le cmakelist.txt doit être adapté à votre plateforme.\r\ncordialement\r\nMichel Condemine','2020-11-04 22:00:44',0),(1041,465,'Issue',433,'J’ai essayé de faire tourner votre version « MaquetteGFI-11-11-2020.zip ». \r\nEffectivement, cela démarre, mais je n’ai pas l’impression que le raccordement des nœuds aspirés par le VpiOs se fasse mieux ( ???)\r\n\r\n \r\n\r\nOn ne voit l’appel au Parse que pour les nœuds « propres » au serveur plant. Les nœuds « aspirés » ne faisant jamais l’objet d’un parse, ils ne sont pas pris en compte par le Vpi.\r\n\r\nNotre objectif est de préparer des informations d’initialisation d’ordre de fabrication dans un « patron d’ordre de fabrication » coté plant (les Node 310x). Ces informations seront lues et contrôlées par le VpiOs qui ira les recopier dans la structure « Ordre de fabrication » instanciée dans le serveur « Line » (Nodes 611x) que le serveur plant voit par aspiration par le VpiUaClnt.\r\nLe VpiOs a donc aussi besoin de voir les Node 611x (que le serveur plant voit à terme en ns=3, comme en atteste le UA expert), mais on voit ci-dessus que ces Nodes ne sont toujours pas catchés par le traitement VpiParseAddId. Ils sont donc inconnus du VpiOs qui ne peut les atteindre.\r\nNote : Dans le zip que vous m’avez renvoyé, le ClientUA2-00202-0.xml ne contenait toujours que le lien vers le Node 6111, j’ai upgradé ma version avec les autres Nodes en rajoutant des MonitoredItem :\r\n <MonitoredItem NodeId=\"ns=3;i=6111\" AttributeId=\"13\" IndexRange=\"\" MonitoringMode=\"2\" SamplingInterval=\"50\" QueueSize=\"1\" DiscardOldest=\"0\" />\r\n <MonitoredItem NodeId=\"ns=3;i=6112\" AttributeId=\"13\" IndexRange=\"\" MonitoringMode=\"2\" SamplingInterval=\"50\" QueueSize=\"1\" DiscardOldest=\"0\" />\r\n <MonitoredItem NodeId=\"ns=3;i=6115\" AttributeId=\"13\" IndexRange=\"\" MonitoringMode=\"2\" SamplingInterval=\"50\" QueueSize=\"1\" DiscardOldest=\"0\" />\r\n <MonitoredItem NodeId=\"ns=3;i=6117\" AttributeId=\"13\" IndexRange=\"\" MonitoringMode=\"2\" SamplingInterval=\"50\" QueueSize=\"1\" DiscardOldest=\"0\" />\r\n <MonitoredItem NodeId=\"ns=3;i=6101\" AttributeId=\"13\" IndexRange=\"\" MonitoringMode=\"2\" SamplingInterval=\"50\" QueueSize=\"1\" DiscardOldest=\"0\" />\r\n\r\n…mais aucun de ces Nodes n’est visible dans la fenêtre plant ci-dessus.\r\n','2020-11-12 17:38:33',0),(1042,465,'Issue',1,'Bonjour,\r\nJe ne comprends pas la phrase \"raccordement des nœuds aspirés par le VpiOs se fasse mieux\" Le VpiOs n\'aspire rien.\r\nLe screenshot ne montre que le démarrage des deux serveurs. Pour constater que des nodes ont été aspirés entre le plant et le line il faut :\r\n# Soit un client OPC UA,\r\n# Soit regarder dans les log\r\nDans les deux images ci-joint on observe l\'aspiration :\r\nPlantAvantLancementLine.PNG--> Seul les nodes du serveur plant sont visible\r\nPlantApresLancementLine.PNG --> Les nodes du serveur line ont été ajouté\r\n\r\nJe propose que vous réalisiez un petit schéma pour décrire l\'ensemble de votre maquette.\r\nJe suis dispo demain AM pour en parler.\r\nCordialement\r\nMichel\r\n','2020-11-12 19:44:49',0),(1043,462,'Issue',424,'Bonjour M. Condemine,\nJe test actuellement la partie de mon code qui est censé remplir la variable recipeList dans le serveur qui est du type RecipeDataType mais lorsque je vérifie depuis uaexpert, la structure affichée n\'est pas le bon (voir screenshot \"RecipeDataType_badstruct\"). Normalement la structure RecipeDataType devrait être ainsi:\n> String\n> RecipeEltDataType\n> FlushStepDataType\net l\'affichage que j\'ai correspond à la structure \n> RecipeEltDataType\n\nAvez-vous une idée de l\'origine possible de ce problème?. J\'ai vérifié dans les fichiers config du serveur et le NodeId que j\'écris pour les structures me semble correct.\n> DataProcessDataType : NodeId.Identifier.Numeric = +1055+ (fonctionne)\n> RecipeDataType : NodeId.Identifier.Numeric = +1022+ (ne fonctionne pas)\n\nBien Cordialement,\nMaycko LOUIS\n','2020-11-16 10:40:07',0),(1044,462,'Issue',424,'Et je vous confirme que la consommation CPU a bien diminuer. Le serveur consomme environ 5% maintenant.\nPar contre cette baisse vient du fait que le serveur met à jour les données une fois toute les 5 secondes.','2020-11-16 12:34:22',0),(1045,462,'Issue',1,'Bonjour,\r\nje vais clore cette incident.\r\nPourriez vous en ouvrir un autre pour que j\'assure au mieux la prise en compte du problème relatif au recipeList.\r\n\r\nCordialement\r\nMichel Condemine','2020-11-16 22:57:01',0),(1046,466,'Issue',424,'Bonjour M. Condemine,\r\nJe test actuellement la partie de mon code qui est censé remplir la variable recipeList dans le serveur qui est du type RecipeDataType mais lorsque je vérifie depuis uaexpert, la structure affichée n\'est pas le bon (voir screenshot \"RecipeDataType_badstruct\"). Normalement la structure RecipeDataType devrait être ainsi:\r\n\r\n> String\r\n> RecipeEltDataType\r\n> FlushStepDataType\r\n\r\net l\'affichage que j\'ai correspond à la structure\r\n\r\n> RecipeEltDataType\r\n\r\nAvez-vous une idée de l\'origine possible de ce problème?. J\'ai vérifié dans les fichiers config du serveur et le NodeId que j\'écris pour les structures me semble correct.\r\n\r\n> DataProcessDataType : NodeId.Identifier.Numeric = 1055 (fonctionne)\r\n> RecipeDataType : NodeId.Identifier.Numeric = 1022 (ne fonctionne pas)\r\n\r\nBien Cordialement,\r\nMaycko LOUIS','2020-11-16 23:17:35',0),(1047,467,'Issue',1,'Bonjour,\r\npourriez vous me fournir votre fichier xml de configuration du XiMulator ?\r\nAutre question: \r\nEst ce que votre répertoire projet contient les fichiers nodeset de la fondation, part 3, part 4, part 5 ?\r\nL\'arborescence du projet devrait ressembler au document attaché XiMulator.PNG\r\n\r\nCordialement\r\nMichel\r\n','2020-11-17 09:52:58',0),(1048,468,'Issue',1,'Bonjour,\r\nmême question que pour Guy-Alexis, Est ce que les fichiers nodeset de la fondation OPC, part3,part4 et part 5 sont dans le répertoire du projet ?\r\nvotre projet doit ressembler au screenshot attaché, XiMulator.PNG\r\nCordialement\r\nMichel','2020-11-17 09:56:25',0),(1049,468,'Issue',447,'Ah Non, en effet je n\'ai pas ces fichiers nodeset de la fondation.\r\n\r\nPouvez-vous les mettre à disposition svp?\r\n\r\nMerci,\r\n\r\n','2020-11-17 09:59:41',0),(1050,468,'Issue',1,'Bonjour,\r\nje viens de faire le test avec vos fichiers et les fichiers nodeset.\r\nCi-joint les fichiers générés. Je vais clarifier les messages d\'erreur.\r\n\r\nCordialement\r\nMichel','2020-11-17 10:24:35',0),(1051,468,'Issue',1,'','2020-11-17 10:24:46',0),(1052,467,'Issue',450,'Je n\'avais pas les fichiers nodeset de la fondation. Je les ai téléchargés.\r\nCependant, en voulant faire un nouvel essai, il m\'es impossible de faire un nouveau projet (voir erreur screenshot joint)\r\nJe vous ai également mis mon fichier xml en pièce jointe.','2020-11-17 10:38:40',0),(1053,467,'Issue',1,'Bonjour, \r\nVous avez déclaré une classe BaseObjectType dont HumanType et VehicleType hérite. \r\nSous l\'angle UML rien à dire.\r\nCependant sous l\'angle de ma méthode qui permet de tirer partie d\'UML afin de générer les fichiers nodeset cela marche pas.\r\nConsidérons qu\'il est interdit et contre productif de recréer les classes OPC UA dans UML. On utilise les stéréotypes à la place.\r\nLes classes VehiculeType et HumanType devraient avoir un stéréotype et pas de classe parent.\r\nJe vous invite a revoir votre projet EA. \r\nConcernant votre projet XiMulator. \r\nJ\'arrive à la configurer et le sauvegarder. Il y a bien sur un problème a la génération. \r\nJe vous propose un call Team 1-1 dans la journée pour regarder ce qui se passe. (Pingez moi)\r\n\r\nCordialement\r\nMichel','2020-11-17 11:36:59',0),(1054,467,'Issue',1,'Bonjour,\r\nvotre problème doit venir d\'une instance de Word fantôme.\r\n* Fermez tous les Word ouvert\r\n* Ouvrez le gestionnaire de taches\r\n* Dans l\'onglet détail cherchez WinWord\r\n* Si vous en trouvez terminez les\r\n* Relancez XiMulmator\r\n\r\nTenez moi au courant\r\nMichel','2020-11-17 11:50:14',0),(1055,467,'Issue',450,'Premier point - J\'ai revu mon modèle pour coller à votre méthode : j\'ai donc déshérité HumanType et VehiculeType de mon BaseObject, ainsi qu\'en leur donnant un stéréotype de BaseObjectType.\r\n\r\nDeuxième point - XiMulator refonctionne : je peux à nouveau créer un projet, il semble que le fait que le fichier exe n\'aimait pas être au même endroit que les fichiers nodeset 3, 4 et 5 de la fondation.\r\n\r\nTroisième point - Malgré les deux premiers points, et en ayant vérifié qu\'il n\'y a aucune instance fantôme de word, aucun changement par rapport à ce matin quant au run de génération qui ne s\'arrête pas. Il reste bloqué au niveau \"Generate 5 UaTypes and attributes from the class list\".\r\n','2020-11-17 12:20:37',0),(1056,467,'Issue',1,'J\'ai fait quelques modification dans la matinée. C\'est une processus en cours.\r\nJe poste la nouvelle version 1.0.0.2\r\nCordialement\r\nMichel','2020-11-17 13:12:56',0),(1057,467,'Issue',450,'Merci Michel.\r\nAvec la nouvelle version plus d\'erreur, et la génération fonctionne.\r\nCependant, il ne me sort que mon enum et mon datatype, aucun objet. Je vous ai mis le word en pièce jointe.','2020-11-17 13:24:28',0),(1058,467,'Issue',1,'Bonjour,\r\nIl doit y avoir un problème dans le fichier XMI.\r\nPourriez vous me le fournir ?\r\nLe projet EA corrigé serait un plus.\r\nL\'ensemble me permettra de clarifier les messages de LOG et d\'améliorer l\'outil.\r\n\r\nCordialement\r\nMichel','2020-11-17 13:29:07',0),(1059,467,'Issue',450,'Je vous ai joint le Fichier EAP et le fichier XMI, tous les deux dans leur nouvelle version.','2020-11-17 13:45:03',0),(1060,467,'Issue',1,'Bonjour,\r\nvotre modèle contient une classe appelé BaseObjectType. C\'est un nom réservé.\r\nDisons que tous les noms d\'objets utilisés dans les spécifications OPC UA sont réservés par la Fondation.\r\nLeur stéréotype doit être utilisé a la place.\r\nVous ne pouvez pas avoir une classe UML BaseObjectType qui utilise un stereotype BaseObjectType.\r\nJe continue mes investigations sur votre modèle, très instructif au demeurant.\r\n\r\nCordialement\r\nMichel\r\n','2020-11-17 17:11:39',0),(1061,466,'Issue',424,'Bonjour M. Condemine,\r\nAvez-vous pu voir pourquoi le recipeList ne s\'affiche pas correctement? Est-ce que cela peut-être lié au Xml Sk_Model?\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2020-11-17 21:01:20',0),(1062,469,'Issue',1,'Hello, \r\nThank you for this feedback. \r\nI will study it in the new 1.0.5.9. \r\nJust a question :Are you using the OOUACoreServer for this test ?\r\nIf yes, i fixed this issue on server side.\r\n\r\nRegards\r\nMichel Condemine','2020-11-18 18:59:27',0),(1063,470,'Issue',424,'Pour plus de clarté.\n> Code:\n>> *Ajout*\n>> -Suppression-\n\n> +IdGunEnum+\n>> Name=\"Gun1\" Value=\"0\"\n>> Name=\"Gun2\" Value=\"1\"\n>> *Name=\"Gun1_Gun2\" Value=\"2\"*\n \n> +RecipeDataType+\n>> *Name=\"RecipeID\" DataType=\"UInt32\"*\n>> Name=\"RecipeName\" DataType=\"String\"\n>> Name=\"RecipeEltList\" DataType=\"RecipeEltDataType\"\n>> Name=\"FlushRecipeList\" DataType=\"FlushStepDataType\"\n\n> +RecipeEltDataType+\n>> Name=\"BaseA\" DataType=\"ComponentDataType\"\n>> Name=\"CatalizerB\" DataType=\"ComponentDataType\"\n>> Name=\"ThinerC\" DataType=\"ComponentDataType\" \n>> Name=\"Ratio_ab\" DataType=\"Float\" \n>> Name=\"Ratio_ac\" DataType=\"Float\" \n>> Name=\"Gain_b\" DataType=\"Int32\" \n>> Name=\"Gain_c\" DataType=\"Int32\" \n>> Name=\"Ratio_tolerance_ab\" DataType=\"Float\" \n>> Name=\"Ratio_tolerance_ac\" DataType=\"Float\" \n>> Name=\"A_pressure\" DataType=\"Float\" \n>> Name=\"B_pressure\" DataType=\"Float\" \n>> Name=\"C_pressure\" DataType=\"Float\" \n>> Name=\"AirSprayPressureGun1\" DataType=\"Float\" \n>> Name=\"AirSprayPressureGun2\" DataType=\"Float\" \n>> Name=\"Potlife\" DataType=\"Int32\" \n>> Name=\"WarningPotLife\" DataType=\"Int32\" \n>> -Name=\"Internal_priming_vol\" DataType=\"Float\"- \n>> -Name=\"Internal_regen_vol\" DataType=\"Float\"- ','2020-11-18 19:10:31',0),(1064,467,'Issue',1,'Bonjour,\r\nLe problème est corrigé dans la version 1.0.0.3\r\nCordialement\r\nMichel','2020-11-18 23:58:58',0),(1065,470,'Issue',1,'Bonjour,\r\nj\'ai pris en compte votre demande modification sur l\'énumération. Les modifications sur les DataType seront vu dans un deuxième temps.\r\nJe propose de coller au modèle initialement prévu pour plus d\'efficacité.\r\n\r\nCordialement\r\nMichel Condemine','2020-11-19 22:02:07',0),(1066,470,'Issue',1,'','2020-11-19 22:02:21',0),(1067,451,'Issue',1,'Bonjour,\r\nj\'ai posté une nouvelle version du fichier de déclaration des types.\r\nIl permet la visualisation correcte des RecipeDataType. Je dois encore valider le comportement avec le Vpi.\r\nMerci d\'intégrer le nouveau nodeset de type dans votre projet.\r\n\r\nCordialement\r\nMichel Condemine','2020-11-19 22:18:09',0),(1068,451,'Issue',1,'','2020-11-19 22:19:03',0),(1069,466,'Issue',1,'Bonjour,\r\nj\'ai posté une nouvelle version du fichier de déclaration des types.\r\nIl permet la visualisation correcte des RecipeDataType. voir le fichier ci-joint.\r\nJe dois encore valider le comportement avec le Vpi.\r\nMerci d\'intégrer le nouveau nodeset de type dans votre projet et de valider le FlushStepDataType.\r\n\r\nCordialement\r\nMichel Condemine','2020-11-19 22:21:35',0),(1070,466,'Issue',1,'','2020-11-19 22:21:51',0),(1071,466,'Issue',424,'Bonjour M. Condemine,\r\nNous avons intégré le nouveau nodeset de type dans le projet. Merci pour l\'ajout de Gun1_Gun2 dans l\'enum.\r\npar rapport à votre fichier ajouté \"recipeDataType.PNG\", j\'ai un doute concernant le FlushStepDataType. Pouvez-vous me confirmer que c\'est un Array?\r\n\r\nPensez-vous valider le comportement avec le Vpi aujourd\'hui?\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n','2020-11-20 11:18:44',0),(1072,472,'Issue',1,'Bonjour,\r\nJe ne constate pas ce type de problème.\r\nEst ce que lors de vos transferts de valeurs vous mettez bien à jour les horodates ?\r\n\r\nCordialement\r\nMichel','2020-11-24 16:23:24',0),(1073,472,'Issue',424,'Bonjour,\nNon, je ne faisais pas ça avant.\nvous voulez parler des paramètres ci-dessous? si oui, j\'ai vu que c\'était des entiers. Pouvez-vous me donner le format de dwHighDateTime et dwLowDateTime?.\nEst-ce que c\'est :\n> dwHighDateTime = 20201124; // yyyymmdd\n> dwLowDateTime = 180600; //hms\n\nparamètes horodates\n> // ServerTime\n>> ServerPicoseconds;\n>> ServerTimestamp.dwHighDateTime;\n>> dwLowDateTime;\n> // SourceTime\n>> SourcePicoseconds;\n>> dwHighDateTime;\n>> dwLowDateTime;','2020-11-24 18:07:01',0),(1074,472,'Issue',1,'Bonjour,\r\nil faut utiliser la fonction Vpi_DateTime_UtcNow ou fabriquer une date au format FileTime.\r\nReportez vous à la documentation MS pour plus d\'information sur ce format.\r\nCordialement\r\nMichel Condemine','2020-11-24 18:56:17',0),(1075,472,'Issue',1,'Bonjour,\r\njuste une petite remarque/qtestion.\r\nQu\'est ce que vous appelez le Publish/subscribe dans le contexte du Vpi et du serveur OOUA ?\r\nLe terme Publish/subscribe est réservé dans le cadre d\'OPC UA et n\'est pas implémenté dans OOUA.\r\nCordialement\r\nMichel Condemine','2020-11-25 08:23:15',0),(1076,472,'Issue',1,'Bonjour,\r\ncomme vous pouvez le constater le Redmine est à nouveau opérationnel et migré en version 4.1.\r\nJe reviens donc au nouvelle pour cette incident.\r\nAvez vous progressez ?\r\n\r\nCordialement\r\nMichel Condemine','2020-12-01 11:50:39',0),(1077,472,'Issue',424,'Bonjour M. Condemine,\r\nAvec le nouveau fichier VpiSk.cpp j\'ai pu tester et valider cette partie.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2020-12-02 13:30:49',0),(1078,472,'Issue',1,'Bonjour\r\nJe ferme ce ticket suite à vous retour par mail.\r\nCordialement\r\nMichel Condemine','2020-12-02 13:34:51',0),(1079,466,'Issue',424,'Bonjour M. Condemine,\nAvez vous pu tester le comportement de la structure RecipeDataType avec le VPI?\nCar en testant les variables #recipe(Value 5.) et #recipeList(Value 4.) depuis le programme KrnlApiTester c\'est la structure dataProcessDatatype qui s\'affiche sur le client. \n\nBien cordialement,\nMaycko LOUIS','2020-12-02 13:37:52',0),(1080,466,'Issue',424,'Pouvez-vous me confirmer que dans la structure RecipeDataType la \"sous-structure\" FlushStepDataType est un array?','2020-12-02 13:39:10',0),(1081,466,'Issue',1,'Bonjour,\r\nsi je me réfère au modèle UML, ci-joint, il s\'agit d\'un tableau de 20 éléments.\r\nJe vérifierai dans le code dans la journée.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-02 13:45:17',0),(1082,476,'Issue',461,'Michel Condemine Admin wrote:\r\n> Bonjour,\r\n> Ce ticket pour suivre et valider la mise en place du lien RDP.\r\n> \r\n> Cordialement\r\n> Michel Condemine\r\n\r\nNous avons un Team Viewer déjà en place, si cela peut convenir je lance la commande avec TeamViewer dans nos engagements. Ci-joint les codes d\'accès.\r\n\r\nSinon, je dois faire une demande RDP aux équipes (externes) réseaux et à ce stade je ne sais pas le temps que cela prendra.\r\n\r\nJ\'attends donc votre retour à ce sujet.\r\n\r\nCordialement,\r\nCédric Counotte.','2020-12-02 16:59:18',0),(1083,476,'Issue',1,'Bonjour,\r\nla fonctionnalité RDP est native sur tous les Windows depuis Windows NT.\r\nIl n\'y qu\'a l\'activé et la configurer. Il s\'agit du bureau a distance.\r\nCordialement\r\nMichel Condemine','2020-12-02 17:32:23',0),(1084,476,'Issue',1,'Bonsoir,\r\nquand j\'essai de me connecter avec TeamViewer 12. j\'obtiens l\'erreur suivante :\r\n!clipboard-202012022123-ezmsc.png!\r\n\r\nJe recommande le bureau a distance Windows ou une MAJ de teamViewer.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-02 21:24:47',0),(1085,476,'Issue',461,'J\'ai le même soucis ce matin, je vous tiens au courant dès que le problème est résolu. La version actuellement installé étant la version 15.12.4!?\r\n\r\nConcernant RDP, le problème est qu\'il faudra que je demande aux équipes réseaux de configurer le port 3389 entrant et redirigé vers cette machine uniquement. Ce qui pourrait prendre un temps indéterminé.\r\nJe n\'aime pas TeamViewer plus que vous mais en l\'état il nous permettra d\'avancer rapidement sur le sujet.\r\n\r\nCordialement,\r\nC.','2020-12-03 09:01:02',0),(1086,476,'Issue',461,'Bonjour Mr Condemine,\r\n\r\nJe viens de mettre à jour la version correctement et vérifié la connexion.\r\n\r\nL\'id de la machine: 1832276048\r\nLe nouveau mot de passe: umd971\r\n\r\nJe fais le nécessaire pour que la commande vous soit transmise aujourd\'hui.\r\n\r\nCordialement,\r\nC.','2020-12-03 09:08:51',0),(1087,476,'Issue',1,'Bonjour,\r\nje me suis connecté à la machine.\r\n!clipboard-202012030946-4m3nz.png!\r\nJe récupère votre configuration pour l\'étudier off-line.\r\nJ\'attends votre commande. \r\nCordialement\r\nMichel Condemine','2020-12-03 09:51:35',0),(1088,476,'Issue',461,'Parfait, la commande est en préparation dans le service concerné. J\'ai bonne espoir que vous l\'obteniez aujourd\'hui.\r\n\r\nEn parallèle j\'ai demandé l\'accès RDP au cas où le mot de passe serait changé sur TV.\r\n\r\nCordialement,\r\nCédric.','2020-12-03 10:04:36',0),(1089,475,'Issue',1,'Bonjour,\r\nCe problème est Corrigé dans la dernière livraison V0.0.4.8\r\nA tester\r\n\r\nCordialement\r\nMichel','2020-12-03 13:55:39',0),(1090,465,'Issue',433,'A fin de trace de notre travail de début de semaine sur ce sujet :\r\nune amélioration a été injectée sous votre direction dans le code du VpiNullEx (utilisé comme base de notre VpiPlant) pour intégrer les address des nodes \"partagés\" entre plusieurs Vpi, qui étaient bouchonnées par un \"Vpi_Null\", dans l\'appel à la méthode de callback.\r\nCes modifications ont permis de débloquer la synchronisation par VpiUaClnt.','2020-12-04 10:33:46',0),(1091,466,'Issue',424,'Bonjour,\r\nAvez-vous pu regarder pour la gestion du tableau de 20 FlushStepDataType dans la structure RecipeDataType ?\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2020-12-04 15:11:47',0),(1092,466,'Issue',1,'Bonjour,\r\nj\'ai prévu de m\'en occuper ce week end.\r\nCordialement\r\nMichel Condemine','2020-12-04 17:26:01',0),(1093,466,'Issue',424,'Bonjour,\r\nJe viens aux nouvelles, avez-vous pu faire des modifications ce week-end?\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2020-12-07 14:09:52',0),(1094,466,'Issue',1,'Bonjour,\r\nle fichier ci-joint prend en compte le problème d\'encodage.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2020-12-07 18:13:46',0),(1095,466,'Issue',1,'','2020-12-07 18:14:04',0),(1096,479,'Issue',1,'Bonjour,\r\n\r\nles DataType sont sensibles a la case.\r\nboolean est différent de Boolean. XuMulator génère un nouveau dataType pour boolean.\r\nMerci de vérifier les types dans le fichier UML.\r\n\r\nCordialement\r\nMichel','2020-12-07 19:30:30',0),(1097,481,'Issue',461,'Bonjour,\r\n\r\nCe matin le serveur consommait 2.2Go.\r\n\r\nDans le code des samples C#.NET, j\'ai vue un appel à notif.dequeueValues() à chaque notification.\r\n\r\nEn regardant le code de notre application, je n\'ai pas vue un tel appel ni quoi que ce soit qui se rapproche d\'un acknowledge.\r\n\r\nDonc j\'ai ajouté l\'appel désigné ci-dessus et relancé l\'application, à voir ce soir si ça aide vraiment.','2020-12-08 09:34:43',0),(1098,481,'Issue',461,'Re-bonjour, j\'ai du changer le mot de passe de TeamViewer (perte du WiFi): 71r1zw','2020-12-08 10:06:50',0),(1099,484,'Issue',1,'Michel Condemine Admin wrote:\r\n> Bonjour,\r\n> suite à votre mail reportant un problème de stabilité j\'ouvre ce ticket pour commercer la collecte d\'information.\r\n> Le premier objectif est de comprendre le/les problème(s) pour mieux pouvoir le/les corriger\r\n> Merci de me fournir des log, ficher WS lors de l\'apparition du/des problèmes(s)\r\n> \r\n> Cordialement\r\n> Michel Condemine\r\n\r\nUn complément pour diagnostiquer le problème.\r\nLa version 1.0.5.9 supporte les nodes de diagnostique du serveur. Il conviendrait de les activer avant que le problème ne se produise.\r\nIl est possible que le problème rencontré soit simplement lié à un MAX atteint par le serveur. Je parle de, Max secure Channel, MAX Session, etc.\r\nPourriez vous vérifier ce point ASAP.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-08 11:40:46',0),(1100,481,'Issue',1,'Bonjour,\r\nIl semble bien que votre client n\'acquitte pas les NotificationMessages transmis par le serveur. \r\n!clipboard-202012081146-cnrmy.png!\r\nDans ce contexte et comme exigé par la spécification le serveur conserve les NotificationMessages.\r\n\r\nMerci de faire vérifier et corrgier ce point dans le code du client.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-08 11:46:33',0),(1101,481,'Issue',461,'Normalement ce problème est corrigé avec la version actuellement déployé, tout du moins concernant les souscriptions. Je regarde concernant les publications.\r\n\r\nLe PublishRequestCount permet d\'identifier les requêtes de publication. Y-a-t-il un compteur pour les souscriptions?\r\n\r\nJ\'ai tenté d\'ouvrir les diagnostiques serveurs mais ceux-ci sont vides!? ALors que les même diagnostiques sur une UC S7-1500 renvoi bien des données très détaillés? \r\n\r\nY-a-t-il un moyen d\'activer les diagnostiques, ce qui me permettrait d\'identifier plus rapidement un tel défaut?\r\n','2020-12-08 12:55:25',0),(1102,481,'Issue',1,'Bonjour,\r\nle node EnabledFlag (i=2294) est utilisé pour activer le diagnostic.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-08 12:58:23',0),(1103,485,'Issue',461,'Voici les messsages d\'erreur d\'UA Expert, à répétition.','2020-12-08 12:59:56',0),(1104,481,'Issue',461,'Merci, j\'ai donc pu activer les diagnostiques et je constate un PublishRequestCount non nul qui vient de la souscription au diagnostique, faite par UAExpert.\r\n\r\nJe ne vois pas en quoi ce compteur indique que les notifications ne sont pas acknowledgé car de fait cela voudrait dire que UAExpert ne le fait pas non plus.\r\n\r\nJe constate d\'ailleurs un UnacknowledgeMessageCount a 1451 provenant donc de UAExpert.\r\n\r\nDans le code example de OPCFoundation, on peut voir comment sont traiter les notifications:\r\n\r\n\r\n private static void OnNotification(MonitoredItem item, MonitoredItemNotificationEventArgs e)\r\n {\r\n foreach (var value in item.DequeueValues())\r\n {\r\n Console.WriteLine(\"{0}: {1}, {2}, {3}\", item.DisplayName, value.Value, value.SourceTimestamp, value.StatusCode);\r\n }\r\n }\r\n\r\n\r\nLa version qui tourne actuellement fait exactement la même chose (item.DequeueValues()), qui semble donc être le seul élément nécessaire à vider les buffers.\r\n\r\nJe regarde lors de la publication (write) depuis l\'interface si quelque chose manque/est nécessaire.','2020-12-08 13:11:12',0),(1105,481,'Issue',461,'Je viens de vérifier, grâce aux diagnostiques que tous les messages des sessions de notre client (ModularLine) sont bien acknowledgé.\r\n\r\nEn effet le flag \'UnacknowledgeMessageCount\' est bien à 0 pour toutes les souscriptions.','2020-12-08 13:14:06',0),(1106,485,'Issue',461,'Deuxième crash du serveur, toujours avec UA Expert notifiant de nombreuses erreurs.\r\n\r\nC:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201208_131846.dmp\r\n\r\nJe vous joints le log UA Experts qui fait planter le serveur.','2020-12-08 13:36:20',0),(1107,485,'Issue',1,'Bonjour,\r\nj\'aimerai procéder à une MAJ.\r\nPourriez vous activer TV ?\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\nPS: Merci de créer un compte Redmine par intervenant.','2020-12-08 13:57:56',0),(1108,485,'Issue',461,'Ca devrait être bon, nous avons des soucis de WiFi. Je ne me connecte pas à la machine pour éviter de vous prendre de la bande passante.\r\n\r\nAvez-vous pu obtenir les dumps? Je les ai tous 2 sur mon PC et les joindrais ici dès que possible.\r\n\r\nMerci,\r\nC.','2020-12-08 14:01:40',0),(1109,485,'Issue',461,'Nous avons branché la machine sur un réseau filaire, il devrait donc y avoir moins de soucis.\r\n\r\nPar ailleurs, j\'ai arrêté notre IHM et fait quelques tests avec UA Expert. En l\'état, UA Expert plante le serveur systèmatiquement.\r\n\r\nJe vous invite à lancer le serveur et observer son crash en quelques minutes (tout en laissant UA Expert se reconnecter).\r\n\r\nC.','2020-12-08 14:23:29',0),(1110,485,'Issue',461,'Concernant les crash systèmatique (sans notre interface), je lançais le serveur à partir d\'une console administrateur... ce qui semble avoir un impact très négatif sur sa stabilité.\r\n\r\nJe viens de le lancer en mode standard et ça semble mieux fonctionner à ce stade.','2020-12-08 14:28:28',0),(1111,480,'Issue',1,'Bonjour,\r\nle serveur utilise les Alias ou les NodeId en fonction de la syntaxe utilisé dans le fichier NodeSet.\r\nj\'ai corrigé le problème dans l\'OOUACOnfigManager. ver 0.0.8.9\r\nJ\'ai aussi corrigé la copie des binaires OpenSSL et l\'ajout des fichiers nodeset OPC Fondation même s\'ils existent.\r\nJe vais livrer dans la journée cette évolution. \r\nAvez vous d\'autres demande ?\r\n\r\nCordialement\r\nMichel\r\n','2020-12-08 14:43:09',0),(1112,481,'Issue',461,'Je viens de vérifier avec les diagnostiques OPCUA, toutes les notifications sont bien acknowledgé par l\'interface.\r\n\r\nUnacknowledgedMessageCount est à 0 sur toutes les souscriptions de la session.\r\n\r\nDonc si memory leak, il n\'est pas causé par l\'interface.','2020-12-08 14:48:34',0),(1113,485,'Issue',461,'Le PC et l\'accès TeamViewer sont opérationnel, vous pouvez donc mettre à jour votre serveur à votre convenance.\r\n\r\nMerci,\r\nC.','2020-12-08 14:49:23',0),(1114,485,'Issue',1,'Bonjour,\r\nj\'essai de reproduire ce problème en lançant le serveur depuis une console Admin.\r\nCa tourne, on va attendre...\r\nCordialement\r\nMichel Condemine','2020-12-08 14:59:10',0),(1115,485,'Issue',461,'Il m\'a semblé que l\'état d\'UA Expert à un impacte certain sur les crashs. Une fois UAExpert relancé ou en reloadant la config, les crashs semblent s\'arrêté... Très étrange.','2020-12-08 15:02:37',0),(1116,485,'Issue',461,'Je viens de me connecter à la machine, comme UA Expert avait perdu sa config, je l\'ai rechargé. Puis j\'ai fermé UA Expert pour le réouvrir et chargé la config. Ce qui a eu pour effet de crasher le serveur.\r\n\r\nNouveau dump:\r\n\r\nC:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201208_152222.dmp\r\n\r\nL\'interface à donc automatiquement relancé le serveur (du dossier 4CE...) et j\'ai relancé manuellement procdump.','2020-12-08 15:25:31',0),(1117,485,'Issue',1,'Je surveillais quand le problème est apparu.\r\nJe suis en train de charger le DUMP.\r\nJe vais l\'analyser. Sans doute les Node de diagnostic.\r\nJe vous tiens au courant. Il faut, je pense, se concentrer sur la fuite.\r\nJe vais analyser les fuites dans le VPI qui serait lié à des erreurs de configuration sur les TAG.\r\ncordialement\r\nMichel Condemine\r\n','2020-12-08 15:29:44',0),(1118,485,'Issue',1,'Il y a un processus OpenOpcUaCoreServer que je n\'arrive pas à tuer. \r\nIl a été lancé en Admin. Pourriez vous le stopper.\r\nJ\'ai fait une petit correction dans le VpiS7. \r\nJe souhaite installer cette MAJ.\r\n\r\ncordialement\r\nMichel Condemine','2020-12-08 16:13:31',0),(1119,485,'Issue',461,'J\'ai du redémarré la machine, le nouveau mot de passe team viewer est: f3f16d','2020-12-08 16:21:55',0),(1120,481,'Issue',1,'Bonjour,\r\nje pense avoir réglé le problème de la fuite.\r\nIl venait du VPI et des tag utilisant des NodeId sous forme de chaine.\r\nLE serveur tourne et consomme, sans client connecté, mois de 9Mo.\r\nPouvez vos lancer votre application ?\r\nCordialement\r\nMichel Condemine','2020-12-08 16:58:51',0),(1121,481,'Issue',461,'Ok, je lance avant de partir. Merci. C.','2020-12-08 17:00:27',0),(1122,482,'Issue',1,'','2020-12-09 11:23:29',0),(1123,478,'Issue',1,'Bonjour Nicolas,\r\nIl s\'agit d\'un vaste sujet. \r\nOPC UA définit un ensemble de webservices dans la partie 6. \r\nIl s\'agit du mapping des services abstraits OPC UA sur la technologie WS.\r\nMaintenant s\'il s\'agit de créer d\'autres WS pour attaquer OpenOpcUa c\'est différent.\r\nJ\'ai fait des chope ne REST pour OOUA mais rien en WS.\r\nJ\'espère que cela répondra a votre question.\r\nCordialement\r\nMichel','2020-12-09 11:27:28',0),(1124,481,'Issue',461,'Je constate qu\'à chaque fois que je lance/quitte UAExpert (en chargeant la config UATest), le serveur occupe 100Ko de plus.\r\n\r\nDans la config UATest, on trouve notamment quelques erreurs: BadCommunicationError et BadWaitingForInitialData.\r\n\r\nSe pourrait-il que ces erreurs cause d\'autres memory leak?\r\n\r\nEn le faisant une dizaine de fois, je lit ceci dans la console procdump:\r\n\r\n[13:48:30] Exception: 00000006\r\n\r\nEst-ce un problème potentiellement grave?','2020-12-09 15:20:16',0),(1125,481,'Issue',1,'Bonjour,\r\nles Nodes affichant un StatusCode =BadCommunicationError ou BadWaitingForInitialData correspondent à des Nodes dont les adresses sont invalides et/ou les PLC non-disponible.\r\nConcernant la consommation de mémoire je vais faire quelques tests supplémentaire.\r\nQuelques questions/remarques :\r\n# Votre UAExpert à plus de 3 ans v1.4.4 actuel v1.5.1\r\n# Fermez vous UAExpert \"Normalement\" ?\r\n# Est ce que les sessions et SecureChanel sont immédiatement libéré ou est ce que le serveur attend le timeout ?\r\nConcernant l\'Exception: 00000006 elle est provoqué par l\'arrêt du client... Il faudra creuser de ce côté.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-09 20:08:00',0),(1126,477,'Issue',1,'','2020-12-09 20:08:35',0),(1127,486,'Issue',1,'Bonjour, \r\ncette fonctionnalité permet de créer depuis une API, utilisable par un Vpi, l\'ensemble de la configuration du serveur.\r\nNode et Tag. Les nodeIds sont dans ce cas générés par l\'appel aux APIs de création de Node. \r\nEn règle générale les Nodes et Tags sont recréés à chaque démarrage du serveur.\r\nMais l\'API reste très flexible dans son utilisation.\r\nJe vous propose d\'en parler lors de notre point de 9h00\r\n\r\nCordialement\r\nMichel Condemine','2020-12-10 08:15:12',0),(1128,481,'Issue',461,'Merci pour votre réponse.\r\n\r\nJ\'ai mis la version 1.5.0 que j\'avais sous la main. Je mettrais la 1.5.1 dès que je trouve l\'installateur.\r\n\r\nOui, je ferme UAExpert normalement, ce matin je vois pas mal d\'exception ayant eu lieu dans la nuit. A voir si cela continu avec la nouvelle version.\r\n\r\nConcernant le point #3 je ne sais pas vraiment. Quand vous parler du serveur, vous voulez dire les UC Siemens? Je demanderais à mes collègues car je suis nouveau sur le sujet ;)','2020-12-10 08:53:29',0),(1129,487,'Issue',1,'Bonjour,\r\n0x803E000 correspond à Vpi_BadNotFound.\r\nSi le GlobalStart n\'aboutit pas le Vpi ne démarrera pas.\r\nIl doit y avoir une erreur dans le fichier complémentaire de configuration.\r\nEst ce que les log sont bien créés ?\r\nSi oui, que contiennent ils ?\r\n\r\nCordialement\r\nMichel Condemine','2020-12-10 12:31:26',0),(1130,487,'Issue',461,'Merci pour votre réponse rapide. En effet, je n\'ai pas pensé à regarder les logs, faisant autre chose en même temps.\r\n\r\nIl se trouve que j\'avais voulu renommer le SubSystemName pour pouvoir identifier les différents VPI plus facilement mais que je n\'avais pas vue que le nom du .dat devait alors être adapté.\r\n\r\nVoici l\'erreur rapporté par tous les VPIs:\r\n2020-12-10T11:13:13.388Z ERROR LoadConfigurationFile D:\\ConfigXML\\Test\\OpenOpcUaServer\\ConfigurationFiles\\S7-270-00270.dat failed 0x803e0000. More information in \r\n\r\nJ\'ai changé la création des .dat pour matcher le subsystemname et ça marche correctement, mise à part que je n\'ai pas d\'automate derrière, mais les logs sont cohérents avec ce fait.\r\n\r\nMerci,\r\nC.','2020-12-10 13:10:00',0),(1131,489,'Issue',461,'[08:27:04] Exception: C0000005.ACCESS_VIOLATION\r\n[08:27:05] Unhandled: C0000005.ACCESS_VIOLATION\r\n[08:27:05] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201211_082705.dmp\r\n[08:27:05] Dump 1 complete: 12 MB written in 0.1 seconds\r\n[08:27:05] Dump count reached.\r\n','2020-12-11 08:36:37',0),(1132,489,'Issue',1,'Bonjour,\r\nj\'ai diagnostiqué le problème hier soir.\r\nIl est relatif à la libération des ressources d\'utilisées par les nodes de diagnostics.\r\nJ\'essai de m\'en occuper dans la journée.\r\nDans l\'intervalle évitez de les utiliser, bien que leurs allocations soit systématique.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-11 08:43:15',0),(1133,489,'Issue',461,'Aujourd\'hui je me suis assuré de ne pas utiliser les diagnostiques a aucun moment, pourtant un dump vient d\'être créé:\r\n\r\n\r\n[15:45:02] Exception: 80000003.BREAKPOINT\r\n[15:45:02] Exception: C0000374\r\n[15:45:02] Unhandled: C0000374\r\n[15:45:02] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201211_154502.dmp\r\n[15:45:02] Dump 1 complete: 17 MB written in 0.1 seconds\r\n[15:45:03] Dump count reached.','2020-12-11 15:48:33',0),(1134,489,'Issue',1,'Bonjour,\r\nen fait le serveur alloue des ressources même quant les diagnostics ne sont pas demandés.\r\nJe suis en train de travailler sur ce problème.\r\nJe vais mettre à jour le serveur durant ce Week End.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-11 15:50:52',0),(1135,485,'Issue',461,'Bonjour,\r\n\r\nCe matin je vois quelques exception dans la nuit et un crash:\r\n\r\n[23:13:02] Exception: 00000006\r\n[00:28:25] Exception: 00000006\r\n[05:16:04] Exception: 00000006\r\n[08:35:15] Exception: C0000005.ACCESS_VIOLATION\r\n[08:35:15] Unhandled: C0000005.ACCESS_VIOLATION\r\n[08:35:15] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201214_083515.dmp\r\n[08:35:15] Dump 1 complete: 17 MB written in 0.1 seconds\r\n[08:35:16] Dump count reached.\r\n\r\nCordialement,\r\nC.','2020-12-14 08:36:34',0),(1136,485,'Issue',461,'Après reboot du PC, j\'ai ouvert UAExpert et activé les diagnostiques, crash immédiat mais le serveur continue de tourner (même process ID).\r\n\r\n[09:10:11] Exception: 80000003.BREAKPOINT\r\n[09:10:11] Exception: C0000374\r\n[09:10:11] Unhandled: C0000374\r\n[09:10:11] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201214_091011.dmp\r\n[09:10:11] Dump 1 complete: 16 MB written in 0.2 seconds\r\n[09:10:12] Dump count reached.\r\n','2020-12-14 09:14:26',0),(1137,492,'Issue',1,'Hello,\r\nwhat is the version of the lib used to produce this issue ?\r\ncan you confirm that you are using 1.0.5.8 ?\r\n\r\nRegards\r\nMichel','2020-12-14 11:44:29',0),(1138,485,'Issue',1,'Bonjour,\r\nj\'aurai un accès limité à internet durant les heures de bureau cette semaine.\r\nPourriez vous mettre sur le redmine le fichier log du serveur contenant la trace de ce matin 9h10\r\n\r\nCordialement\r\nMichel condemine','2020-12-14 12:08:04',0),(1139,485,'Issue',461,'Ci-joint les dump de 9h10 et 8h35. Si vous avez besoin d\'autre chose n\'hésitez pas à me le dire.\r\n','2020-12-14 12:42:41',0),(1140,492,'Issue',398,'Yes, I confirm 1.0.5.8','2020-12-14 13:45:07',0),(1141,491,'Issue',461,'Nous avons une visite client et ferons donc une demonstration sur la machine.\r\n\r\nLe nouveau mot de passe (reboot a nouveau): 97uzt9','2020-12-14 14:06:47',0),(1142,491,'Issue',1,'Bonsoir,\r\nje voulais collecter les logs et faire une MAJ.\r\nMalheureusement les mots de passe de fonctionnent pas .\r\nPourriez vous les vérifier ?\r\n\r\nCordialement\r\nMichel Condemine','2020-12-14 20:18:05',0),(1143,491,'Issue',461,'Bonjour, oui désolé, la connexion a été coupé pendant la demo client, et le nouveau de passe est: v71u3n\r\n\r\nJe vérifierais ce soir avant de partir.\r\nC.','2020-12-15 08:10:44',0),(1144,491,'Issue',1,'Bonjour,\r\naccès TV toujours impossible.\r\nPourriez vous vérifier le password. \r\nMerci.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-16 07:02:35',0),(1145,491,'Issue',461,'Bonjour et navré de ce contre-temps. J\'ai trouvé une autre version de TV en cours sur la machine, et du aller sur place pour corriger.\r\n\r\nMot de passe: Exels1us&2010#\r\n\r\nCordialement,\r\nC.','2020-12-16 08:05:41',0),(1146,491,'Issue',461,'Si vous pouvez me transmettre les binaires, je pourrais sûrement les installer et vous faire un retour?\r\n\r\nCordialemnt,\r\nCédric Counotte.','2020-12-16 08:11:55',0),(1147,491,'Issue',1,'Bonjour,\r\nje souhaite voir les log dans un premier temps.\r\nL\'accès TV ne sera plus possible ?\r\n\r\ncordialement\r\nMichel Condemine','2020-12-16 08:34:53',0),(1148,491,'Issue',461,'L\'accès TV est disponible en ce moment avec le mot de passe fournit plus haut (il y a 30 minutes).\r\n\r\nNote: Je viens d\'activer les diagnostiques et je vois ceci dans les logs UA Expert','2020-12-16 08:36:51',0),(1149,491,'Issue',461,'Je vous ai fournit les logs hier dans l\'issue 485: http://www.openopcua.org/redmine/issues/485\r\n\r\nAvez-vous pu les analyser? \r\n\r\nJ\'ai eu un autre crash aujourd\'hui, avec un popup d\'erreur que je vais vous joindre dans une nouvelle issue.\r\n\r\nLes accès TV sont maintenant permanent et le mot de passe que je vous ai fournit ne changera plus.\r\nJe reste connecter à la machine en permanence pour m\'assurer de son fonctionnement.\r\n\r\nCordialement,\r\nCédric Counotte.','2020-12-16 13:12:09',0),(1150,499,'Issue',1,'Bonjour,\r\nje suis en déplacement toute la semaine comme précédemment indiqué.\r\nEst ce que la MAJ chez votre client pourrait attendre lundi ?\r\n\r\nSinon j\'ai prévu de travailler sur votre maquette ce soir.\r\nTenez moi au courant.\r\n\r\ncordialement\r\nMichel\r\n','2020-12-17 08:17:01',0),(1151,499,'Issue',461,'Bonjour et merci pour votre réponse.\r\n\r\nPas de soucis pour attendre Lundi prochain, mais nous aimerions faire tourner la nouvelle version (corrigeant les derniers problèmes relevés) au moins tout le week-end avant de l\'installer chez le client.\r\n\r\nDonc si vous avez un peu de temps ce soir à nous consacrer ce sera parfait.\r\n\r\nMerci et bonne journée,\r\nCédric Counotte.','2020-12-17 08:28:44',0),(1152,500,'Issue',1,'Hello,\r\nthank you for your feedback.\r\nThe correction was already applied in the 1.0.5.9 codebase.\r\nBR\r\nMichel Condemine','2020-12-17 14:26:29',0),(1153,502,'Issue',1,'More than 150 leak are fixed in the Crypto and SSL functions in both the stack, the server and the client library.\r\nThose fix are part of the 1.0.5.9\r\nBR\r\nMichel Condemine','2020-12-17 14:45:51',0),(1154,504,'Issue',1,'Bonjour,\r\nau démarrage les versions récente du serveur lisent les valeurs par défaut déclarées dans le fichier nodeset et les envois au Vpi associé.\r\n\"Normalement\" s\'il n\'y a pas de balise XML \"Value\" déclaré le serveur n\'injectera pas de valeur.\r\n\r\nmerci de vérifier notre nodeset d\'instance.\r\nCodialement\r\nMichel Condemine','2020-12-18 11:07:13',0),(1155,504,'Issue',461,'Merci beaucoup pour votre réactivité. Découvrant le domaine je ne savais pas tout ça.\r\n\r\nEn l\'état la config que nous générons a en effet des \"Value\" déclaré que l\'ancien serveur n\'envoi pas.\r\n\r\nJe vais donc changer notre générateur pour ne plus avoir ces tags inutiles et qui plus est faux.\r\n\r\nJe vous laisse le soin de fermer ce ticket car je ne vois pas pour le faire d\'ici.\r\n\r\nMerci,\r\nCédric Counotte.','2020-12-18 12:42:28',0),(1156,503,'Issue',461,'Vous pouvez fermer cette anomalie, il s\'agissait de l\'ancien serveur, me semble-t-il. Moyen de vérifier?\r\n\r\nCordialement,\r\nC.','2020-12-18 13:22:58',0),(1157,504,'Issue',1,'Bonjour,\npour assurer le suivi de l\'incident je republie ma réponse de lundi 21/12\nBonjour,\nJe viens de faire le test suivant :\n1. Initialisation d’une valeur dans le PLCSimulator S7 depuis la balise <Value> dans le fichier nodeset (transmission de la valeur 10)\n2. Suppression de la balise <Value>\n3. Arrêt du serveur\n4. Redémarrage\n5. La valeur 10 est toujours dans le PLCSimulator S7. Le Vpi n’a pas écrit.\nConclusion tout fonctionne correctement.\n','2020-12-22 02:07:57',0),(1158,504,'Issue',1,'Ainsi que votre réponse,\r\nIci, je fais les tests suivants :\r\n\r\nJe mets des valeurs dans un nodeset avec UAExpert. J’arrête le serveur, redémarre, les valeurs sont toutes à zéro.\r\n\r\nVoir les 2 copies d’écran montrant les valeurs configurées et les valeurs après redémarrage. Je vois 2 nodesets ayant conservés leurs données (à 150 en bas de liste). Sinon tout le reste est passé à 0 !?\r\nL’accès TeamViewer vous permettra de voir et de modifier ces nodesets directement, j’ai laissé UAExpert en route.\r\n\r\nSi je fais la même chose avec l’ancien serveur, les valeurs sont bien conservées.\r\n!clipboard-202012220209-kigb4.png!\r\n!clipboard-202012220209-8vs4i.png!\r\nCdlt,\r\n\r\nC.\r\n','2020-12-22 02:09:22',0),(1159,504,'Issue',1,'Maintenant le suite,\r\nj\'ai fait des essais plus poussés sur le serveur pour comprendre l\'écrasement que vous constatez.\r\nPour info sur ma maquette je n\'ai pas ce comportement mais je l\'observe bien sur votre installation.\r\nJ\'ai ajouté des traces dans le code du serveur. Je vous confirme que l\'écrasement ne vient pas de valeurs lues dans le nodeset.\r\nIl ne vient pas non plus d\'un client. \r\nIl reste maintenant la fonctionnalité du \"multitag\" qui pourrait provoquer ce comportement. Je continuerai les tests dans la journée sur ce sujet.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2020-12-22 02:15:05',0),(1160,504,'Issue',1,'Bonjour,\r\nj\'ai encore pris quelques minutes pour tester un potentiel effet de bord du multitag.\r\nIl n\'y aucun problème de ce coté là. Les valeurs présentes dans le PLC sont lues au démarrage par le Vpi et transmissent au serveur.\r\nIl n\'y a aucun écrasement. Je vous propose un échange team afin de clore cet incident.\r\n\r\nCordialement\r\nMichel Condemine','2020-12-22 02:48:38',0),(1161,504,'Issue',461,'Merci d\'avoir vérifié, en effet, après avoir relancé le nouveau serveur, je vois a nouveau tout à zero.\r\n\r\nJ\'ai donc lancé l\'ancien serveur et toutes les valeurs étaient bien présentent et pas à 0 !\r\n\r\nDonc finalement tout y est, mais il semblerait qu\'il y ai un problème d\'accès ou de lecture des données !?\r\n\r\nEnsuite j\'ai relancé le nouveau serveur tout est à nouveau à 0, et notre interface voit aussi des 0 sur la pluspart des noeuds, mais pas tous. Ceci élimine un bug dans UA Expert (qui semble en avoir quelques un tout de même).\r\n\r\nSerait-ce possible qu\'il y ai un problème d\'adressage ou de nommage dans la configuration?','2020-12-22 08:45:05',0),(1162,504,'Issue',461,'Après quelques tests plus poussés, il y a bien un soucis de lecture des données en provenance des automates. Sauf les valeurs écrites pendant que le serveur tournent sont non nulles, mise à part quelques unes.\r\n\r\nNous avons une données \'width\' qui indique l\'écartement de 2 rails et que l\'ont peut donc faire varier à l\'aide d\'un moteur. Avec le nouveau serveur la valeur est toujours 0, avec l\'ancien celle-ci change en fonction de la position demandé au travers du moteur.','2020-12-22 08:52:17',0),(1163,504,'Issue',1,'Bonjour,\r\npourriez vous m\'indiquer le nodeid, l\'adresse et le n* de Vpi associé à \'width\' ?\r\ncordialement\r\nMichel Condemine\r\n','2020-12-22 10:41:36',0),(1164,504,'Issue',461,'Bonjour,\r\n\r\nMise à part LoadingSpeed at UnloadingSpeed, tous les noeuds visibles dans la copie d\'écran ci-jointe ne sont pas lu des automates au démarrage. Seules les valeurs écrites (depuis le démarrage du serveurs) sont retournées.\r\n\r\nJ\'ai sélectionné 3 noeud \'width\' sur la copie d\'écran, qui en fait sont présents dans les 8 automates que nous avons actuellement sur la ligne de test.\r\n\r\nCdt,\r\nC.','2020-12-22 10:46:10',0),(1165,504,'Issue',461,'Ci-joint les copies d\'écran correspondant au mail que je vous ai envoyé. Pas de doublon dans la config, mais 2 hierarchies distinctes.\r\n\r\n<Tag Name=\" *RecipeLoaded* _Product_Width_mm\" Id=\"ns=7;s=SubSystem 06 OVEN BOTTOM.RECIPE.RecipeLoaded.Product.RecipeLoaded_Product_Width_mm\" Type=\"Float\" AccessRight=\"Input_Output\" Address=\"DB07D1. *012E* \" />\r\n\r\n<Tag Name=\" *RecipeToLoad* _Product_Width_mm\" Id=\"ns=7;s=SubSystem 06 OVEN BOTTOM.RECIPE.RecipeToLoad.Product.RecipeToLoad_Product_Width_mm\" Type=\"Float\" AccessRight=\"Input_Output\" Address=\"DB07D1.0004\" />\r\n\r\nCela montre que le noeud RecipeLoaded est à 0 dans UA Expert alors qu\'il est à 150 dans l\'automate S7.','2020-12-22 12:58:42',0),(1166,504,'Issue',1,'','2020-12-22 15:17:41',0),(1167,505,'Issue',1,'Hello,\r\nthank you for this detailed feedback on version 1.0.5.8 of the code base.\r\nHowever most of those fixes have already been introduce in version 1.0.5.9. Some of them cannot be used this way, for instance correction in SetSessionId.\r\nI took some changes. I deeply advise to move to the 1.0.5.9 and remind you that the fork is forbidden.\r\nChanges you suggest in AutoConnectThread need to be discuss/study further. Espacially the explicit call to CloseSession. It can cause a lot of side effet. See comment in the 1.0.5.9 source code.\r\nI warning you on the way you free ressources in the RestoreMonitoredItems. You removed the OpcUa_MonitoredItemCreateRequest_Clear !!!\r\n\r\nKind regards and happy holiday season.\r\nMichel Conedmine','2020-12-22 17:54:20',0),(1168,505,'Issue',398,'I agree with you, i haven\'t an overall view of the code. \r\nMy goal is to eliminate all potentialy problem in Library to be confident in bug track on my own code.\r\n','2020-12-23 08:34:29',0),(1169,505,'Issue',398,'The call to CloseSession was insert at the beginning of my leaks track for the purpose of generate automatic clean reconnection in reproductible maner.\r\nat the end of the track, i drop the cal but this produce some exception, so i let it in place.','2020-12-23 08:39:41',0),(1170,485,'Issue',461,'J\'ai activé et désactivé les diagnostiques pendant quelques minutes. Le serveur tournent toujours.\r\n\r\n[09:10:15] Exception: 80000003.BREAKPOINT\r\n[09:10:15] Exception: C0000374\r\n[09:10:15] Unhandled: C0000374\r\n[09:10:15] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_201224_091015.dmp\r\n[09:10:16] Dump 1 complete: 13 MB written in 0.2 seconds\r\n[09:10:16] Dump count reached.','2020-12-24 09:44:20',0),(1171,485,'Issue',461,'Pour info, le serveur tourne toujours mais j\'ai l\'impression que les diagnostiques ne fonctionnent plus, aucune information n\'est mise à jours.\r\n\r\nCe après avoir activé, désactivé les diagnostiques et vue l\'exception. Si j\'active les diagnostiques à nouveau, ils ne se mettent pas à jour.','2020-12-24 12:37:36',0),(1172,485,'Issue',461,'Re (encore!), en réactivant les diagnostiques à nouveau (donc rien ne se met à jour dans UA Expert) et je vois la mémoire du serveur augmenter rapidement et régulièrement.\r\n\r\nEnviron 50 à 300Ko par seconde avec une pause toutes les 5 secondes environ. En quittant UA Expert ce phénomène s\'arrête enfin.','2020-12-24 12:43:17',0),(1173,506,'Issue',461,'Bonjour et meilleurs voeux 2021.\r\n\r\n\r\nL\'application que nous utilisons vérifie que le serveur est en cours d\'execution et le lance au besoin. Cette fonctionalité ne fonctionne à l\'évidence pas correctement.\r\n\r\nLe 31 nous avons remarqué des temps de latences dans l\'envoi de données aux automates, sur 2 d\'entre eux et avons relancer le serveur. Cette latence à disparu sur les 2 automates affecté mais a affecté un autre automate. Je testerais ce phénomène à nouveau aujourd\'hui.\r\n\r\nCordialement,\r\nCédric Counotte.','2021-01-04 08:38:05',0),(1174,506,'Issue',461,'Après avoir jeté un oeil aux 2 instances. Je constate que c\'est le service Windows qui relance le serveur, pourtant le process original a été lancé comme service.\r\n\r\nJe me demande si procdump ne crée pas un soucis faisant croire à Windows que le service est arrété?\r\n','2021-01-04 09:03:23',0),(1175,506,'Issue',1,'Bonjour,\r\non peut voir que le serveur est lancé sous deux identités différentes.\r\nL\'une en tant sous le compte de service, l\'autre par l\'admin de la machine. \r\nJe comprends donc que la deuxième instance a été lancé par une application qui emprunte l\'identité d\'un administrateur. Peut être votre utilitaire de surveillance.\r\n\r\nBien cordialement et meilleurs vœux pour 2021.\r\nMichel Condemine','2021-01-04 09:32:02',0),(1176,507,'Issue',461,'Quelques autres crash en tentant de relancer le serveur... En effet, 2 instances d\'UA Expert s\'y reconnecte au lancement et semble le planter immédiatement !?\r\n\r\n[09:41:48] Exception: 80000003.BREAKPOINT\r\n[09:41:48] Exception: C0000374\r\n[09:41:48] Unhandled: C0000374\r\n[09:41:48] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210107_094148.dmp\r\n[09:41:49] Dump 1 complete: 10 MB written in 0.1 seconds\r\n[09:41:49] Dump count reached.\r\n','2021-01-07 09:47:52',0),(1177,507,'Issue',1,'Bonjour,\r\nJe vais récupérer les logs et procéder à une mise à jour.\r\nJ\'ai passé toute la base de code en VS2017. J\'installerai donc cette nouvelle version.\r\nJe ferai cela dans l\'AM.\r\n\r\nCordialement\r\nMichel Condemine','2021-01-07 09:51:57',0),(1178,507,'Issue',461,'Bonjour,\r\n\r\nCi-joint les 2 dumps d\'hier si ça peux vous aider.\r\n\r\nNous installerons votre prochaine mise à jour chez le client la semaine prochaine.\r\n\r\nMerci.\r\nC.','2021-01-08 08:16:14',0),(1179,507,'Issue',461,'Bonjour,\r\n\r\nEn utilisant le nouveau code base de ce jour, j\'ai eu 3 crash au démarrage du serveur, alors qu\'UA Expert était lancé et s\'est reconnecté rapidement. UA Expert a reçu une mise à jour des start time / current time avant que le serveur plante.\r\nJ\'ai constaté ce même soucis au démarrage assez fréquemment, comme si UA Expert se connectait et demandait des données alors que le serveur est toujours en train de s\'initialiser.\r\n\r\nCe problème ne devrait pas être gênant chez les clients, sauf reconnection de l\'interface en même temps que le démarrage, ce que je préférerais éviter quand même.\r\n\r\n[09:48:27] Exception: 80000003.BREAKPOINT\r\n[09:48:27] Exception: C0000374\r\n[09:48:27] Unhandled: C0000374\r\n[09:48:27] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210108_094827.dmp\r\n[09:48:27] Dump 1 complete: 10 MB written in 0.1 seconds\r\n[09:48:27] Dump count reached.\r\n\r\n\r\n[09:48:46] Unhandled: C0000409\r\n[09:48:46] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210108_094846.dmp\r\n[09:48:46] Dump 1 complete: 13 MB written in 0.1 seconds\r\n[09:48:47] Dump count reached.\r\n\r\n\r\n[09:50:43] Exception: 80000003.BREAKPOINT\r\n[09:50:43] Exception: C0000374\r\n[09:50:43] Unhandled: C0000374\r\n[09:50:43] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210108_095043.dmp\r\n[09:50:44] Dump 1 complete: 10 MB written in 0.2 seconds\r\n[09:50:44] Dump count reached.\r\n\r\n','2021-01-08 10:11:22',0),(1180,507,'Issue',461,'Nouveau crash il y a 10 minutes, suivi par un autre sans procdump. Le serveur est donc HS.\r\n\r\n[10:29:35] Unhandled: C0000409\r\n[10:29:35] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210108_102935.dmp\r\n[10:29:35] Dump 1 complete: 20 MB written in 0.1 seconds\r\n[10:29:35] Dump count reached.\r\n\r\nIl semblerait que la mise à niveau VS2017 cause une regression importante.','2021-01-08 10:43:22',0),(1181,507,'Issue',461,'Un nouveau crash (409) à nouveau avec seulement notre client et ce après quelques minute suivant la connexion du client au serveur.\r\n\r\n[12:57:22] Unhandled: C0000409\r\n[12:57:22] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210108_125722.dmp\r\n[12:57:23] Dump 1 complete: 12 MB written in 0.1 seconds\r\n[12:57:23] Dump count reached.\r\n\r\nCette version n\'est pas utilisable en l\'état.\r\n\r\nCi-joint les derniers dumps.\r\n\r\nCordialement,\r\nC.','2021-01-08 13:16:41',0),(1182,511,'Issue',1,'Il s\'agira du parent de la reference HasDataType.','2021-01-12 13:56:15',0),(1183,509,'Issue',1,'Bonjour,\r\nje viens de réaliser le test sur la version que vous m\'avez fournie.\r\n!clipboard-202101121805-nabiy.png!\r\nComme vous pourrez le voir dans le fichier joint. Il y a du progrès mais de nombreux tests ne passent pas sans doute des problèmes de configuration.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-01-12 18:06:41',0),(1184,512,'Issue',1,'Bonjour,\r\n1er Problème\r\nJe vous invite à utiliser un client Modbus simple pour vérifier votre adressage.\r\nIl y en a un sur le PC.\r\nN\'oubliez pas que les adresses sont exprimées en hexadécimale.\r\n2ème problème\r\nJe ne sais quoi vous dire. Si l\'adresse que vous entrez est inconnue du coupleur il faut la modifier.\r\ncf problème 1\r\n3ème problème\r\nSupprimer les balise <Value> du fichier NodeSet. Cette balise est utilisé pour initialiser la valeur par défaut.\r\n\r\nCordialement\r\nMichel Condemine','2021-01-13 09:42:24',0),(1185,509,'Issue',347,'Bonjour monsieur Condemine,\r\n\r\nMerci pour ce retour.\r\n\r\nNous avons vu dans le fichier excel des résultats qu\'une partie des tests en \'N\' concernaient l\'utilisation des certificats.\r\nEffectivement ceux-ci ont été désactivés, nous allons les remettre en place.\r\nPour cela, avez-vous besoin de certificats spécifiques à la certification ou bien ceux fournis par ADP suffisent-ils ?\r\n\r\nMis à part la gestion des certificats, est-ce que d\'autres points bloquants restent pour la certification ADP ?\r\n\r\nCordialement,\r\nOlivier PESLE.','2021-01-13 10:14:28',0),(1186,512,'Issue',459,'Bonjour Monsieur Condemine, \r\n\r\nJe vous remercie de votre retour,\r\n\r\nJ\'ai encore quelques questions par rapport à vos réponses, quand vous dites de supprimer les balises <Value> du fichier NodeSet, est-ce que vous parlez du fichier \r\nNodeset \"Opc.Ua.NodeSet2.MTB-Instance\", si oui est-ce que c\'est bien les balises <Value> que j\'ai entouré en rouge qu\'il faut que j\'enlève ? (voir fichier ci-joint).\r\n\r\nDe plus si vous avez le temps, pouvez vous me dire si le VPI <Modbusautomate00300> est correctement configuré ou non.\r\nMerci de votre réponse, \r\n\r\nCordialement\r\nAlexandre Macé ','2021-01-13 11:29:17',0),(1187,514,'Issue',433,'Conséquence : le serveur plante.','2021-01-13 14:52:35',0),(1188,509,'Issue',1,'Bonjour,\r\nles certificats fournis par ADP ne seront d\'aucune utilité.\r\nIl y a plusieurs points bloquants relatif à l\'initialisation du test qui doivent être corrigé.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-01-13 18:42:57',0),(1189,513,'Issue',1,'Bonjour,\r\nje tente de reproduire la séquence que vous m\'avez indiqué.\r\nQuand vous écrivez \"...puis désactivé les diagnostiques\". \r\nVous le faites en utilisant le node EnabledFlag (i=2294) ? \r\n\r\nCordialement\r\nMichel Condemine\r\n ','2021-01-13 19:10:42',0),(1190,509,'Issue',347,'Monsieur Condemine,\r\n\r\nPouvez-vous énumérer et détailler les points bloquants et la façon de les résoudre par Redmine ou mail, ou cela nécessite-t-il une réunion ?\r\nPour mémoire, CHUBB doit déposer sa maquette au CNPP le 18 janvier 2021.\r\n\r\nCordialement,\r\nOlivier PESLE.','2021-01-13 19:24:52',0),(1191,509,'Issue',1,'Il est assez délicat de distinguer l\'origine de tous les problèmes restant.\r\nDes erreurs proviennent des fichiers nodeset. par exemple :\r\nLes attributs XML WriteMask et UserWriteMask doivent toujours être identique.\r\nd\'autres erreurs sont liées à la chaine des certificats mis à disposition. Ces certificats ne permettent pas de configurer correctement le CTT.\r\n\r\nVous trouverez ci-joint un fichier XML avec toutes les erreurs. Bien que ce fichier de résultat soit prévu pour être lu avec le CTT. Vous y trouverez quelques informations.\r\n\r\nPar ailleurs la contrainte du 18 janvier ne me concerne pas.\r\nJe fais mon maximum pour tester votre solution et n\'apprécie pas cette référence.\r\nJe souhaite que vous clarifiez le sens de votre message.\r\n\r\nCordialement\r\nMichel Condemine','2021-01-13 20:24:14',0),(1192,509,'Issue',1,'Le fichier de résultat.','2021-01-13 20:27:11',0),(1193,513,'Issue',461,'Concernant ce problème je viens de le reproduire. En effet, j’utilise le node EnableFlag.\r\nJe le passe à vrai, je regarde les informations de diagnostiques, concernant les souscriptions de notre client, puis celle de souscription aux diagnostiques.\r\nJe reviens ensuite au node EnableFlag que je passe à faux. Je regarde l’évolution de la mémoire du serveur, puis les diagnostiques ‘figés’ et je repasse ensuite EnabledFlag à vrai.\r\n\r\nA ce moment-là, UA Expert se bloque complètement et le serveur ne réponds plus à aucun client et il n’est plus possible de s’y connecter.\r\n','2021-01-14 10:29:48',0),(1194,513,'Issue',1,'J\'ai essayé cette procédure sur un serveur de simulation et je n\'ai pas réussi à reproduire le problème.\r\nJe vais essayé avec votre configuration malheureusement sans les PLC.\r\nA suivre donc.\r\nCordialement\r\nMichel Condemine','2021-01-14 10:33:23',0),(1195,513,'Issue',461,'Etrange que vous ne le reproduisiez pas, car sur notre machine le problème est systématique. Je viens à nouveau de le reproduire avec la même procédure. Activation / Désactivation des diagnostiques, la réactivation suivante bloque le serveur.','2021-01-14 10:52:20',0),(1196,513,'Issue',1,'Je viens de faire le test sur mon PC avec votre configuration.\r\nSans plus de succès. Le serveur ne plante pas. Est ce que je peux essayer sur votre poste ?\r\n\r\nCordialement\r\nMichel Condemine','2021-01-14 10:54:06',0),(1197,513,'Issue',461,'Pas de soucis, le poste est là pour ça.','2021-01-14 10:54:47',0),(1198,513,'Issue',1,'Je viens de faire le test et le poste semble se bloquer complètement.\r\nAvez vous le même comportement ?\r\n','2021-01-14 11:21:30',0),(1199,513,'Issue',461,'Pas tout a fait. UA Expert se bloque complètement jusqu\'à qu\'il émette un timeout et se retrouve déconnecté du serveur. Les autres clients finissent aussi par voir qu\'ils sont déconnecté, et ceux qui étaient connecté ne voit plus aucune information remonté.\r\n\r\nJe passe aussi par TV, mais n\'est pas eu de soucis avec l\'affichage ni la visu bloqué.','2021-01-14 11:24:04',0),(1200,513,'Issue',461,'PS: J\'ai laissé le serveur tel que, si vous vous reconnectez, vous devriez voir le process serveur qui semble ok, mais impossible de se connecter avec n\'importe quel client (UA Expert ou autre).','2021-01-14 11:25:02',0),(1201,513,'Issue',1,'Bonjour,\r\nje viens de faire une mise à jour.\r\nLe problème semble réglé. J\'ai trouvé une deadlock causé par la collision de deux mutex lors de l\'écriture de l\'EnabledFlag. \r\nPlus précisément lors de la réactivation des diagnostiques.\r\n\r\nCordialement\r\nMichel Condemine','2021-01-14 16:26:04',0),(1202,513,'Issue',461,'Bonjour et merci beaucoup pour cette mise à jour.\r\n\r\nJe vais laissé tourné cette version jusqu\'à Lundi, si elle est stable je l\'installerais chez un autre client et commencerais à tester les différents problèmes que nous avons rencontré jusqu\'ici, histoire de confirmer leur résolution définitive.\r\n\r\nEn tout cas, il me semble que cette version résoud tous les problèmes rencontrés et devrait nous permettre d\'offrir à nos clients une excellente stabilité.\r\n\r\nJe serais absent demain, de retour Lundi. Je ferais un point à ce moment.\r\n\r\nMerci encore et bon week-end,\r\n\r\nCordialement,\r\nCédric Counotte.','2021-01-14 16:34:21',0),(1203,515,'Issue',1,'Bonjour,\r\nce type de communication inter-Vpi au travers d\'OpenOpcUa requière un codage spécial du Vpi.\r\nJe vais vérifier si c\'est bien le cas dans les Vpis Modbus.\r\n\r\nCordialement\r\nMichel Condemine','2021-01-14 21:06:17',0),(1204,513,'Issue',461,'Bonjour,\r\n\r\nA priori tout c\'est (presque) bien passé pendant 3 jours, aucun crash sauf le 15, comme visible sur la copie d\'écran jointe.\r\n\r\nPar contre en 3 jours, le serveur passe de 8Mo à 80+Mo, ce qui me semble anormale. Est-ce possible de contrôler les memory leaks? Cf copie d\'écran montrant la durée du run et la mémoire consommée.\r\n\r\nCordialement,\r\nCédric.','2021-01-18 08:15:54',0),(1205,481,'Issue',461,'Bonjour,\r\n\r\nAu vue de la pièce jointe, le serveur passe de 8Mo au démarrage à 80Mo après seulement 3 jours.\r\n\r\nIl me semble qu\'il y ai toujours des memory leaks.\r\n\r\nCordialement,\r\nCédric.','2021-01-18 08:17:04',0),(1206,503,'Issue',461,'Depuis Jeudi dernier la dernière mise à jour à crashé 2 fois.\r\nUne fois vendredi et une fois ce matin.\r\n\r\nCi-joint les captures d\'écrans de l\'event viewer.\r\n\r\nConcernant ce matin le dump est disponible:\r\n\r\n[08:43:59] Exception: C0000005.ACCESS_VIOLATION\r\n[08:43:59] Unhandled: C0000005.ACCESS_VIOLATION\r\n[08:43:59] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210118_084359.dmp\r\n[08:43:59] Dump 1 complete: 100 MB written in 0.3 seconds\r\n[08:43:59] Dump count reached.\r\n\r\n','2021-01-18 13:02:14',0),(1207,507,'Issue',461,'Il y a eu un nouveau crash à l\'instant:\r\n\r\n[17:50:27] Exception: 80000003.BREAKPOINT\r\n[17:50:27] Exception: C0000374\r\n[17:50:27] Unhandled: C0000374\r\n[17:50:27] Dump 1 initiated: C:\\EXELSIUS\\4CE\\OpenOpcUaServer\\OpenOpcUaCoreServer_Release.exe_210118_175027.dmp\r\n[17:50:27] Dump 1 complete: 34 MB written in 0.2 seconds\r\n[17:50:27] Dump count reached.\r\n\r\n','2021-01-19 09:16:11',0),(1208,519,'Issue',461,'Quelques autres soucis:\r\n\r\n- Si j\'ai plusieurs souscription comme décrite plus haut, seule la première affiche le keep alive count, mais aucune n\'affiche le nombre de notifications de changement de data. Seul PublishRequestCount est mis à jour.\r\n\r\nJ\'ai donc changé le code pour n\'utiliser qu\'une seule souscription et les données sont correctes et ne semble plus planter le serveur.','2021-01-19 14:55:52',0),(1209,521,'Issue',1,'Bonjour,\r\nje viens d\'installer une nouvelle version qui corrige le problème.\r\nPour faire mes tests j\'ai du arrêter votre application et le client UAExpert.\r\nJ\'ai relancé l\'ensemble.\r\nMerci de vérifier le bon comportement.\r\n\r\nCordialement\r\nMichel Condemine','2021-01-21 00:06:08',0),(1210,521,'Issue',461,'Bonjour et merci pour la correction rapide.\r\n\r\nJ\'ai installé cette nouvelle version chez un client chez qui nous avions ce problème et cela fonctionne.\r\n\r\nJe continue de surveiller les comportements des 2 machines.\r\n\r\nMerci encore et bonne journée.\r\nCédric.','2021-01-21 09:12:05',0),(1211,523,'Issue',1,'Bonjour,\r\nj\'ai posté il y a 3 jours une mise à jour qui devrait régler le problème.\r\nElle disponible ici:\r\nhttp://www.openopcua.org/redmine/attachments/1615\r\nCordialement\r\nMichel Condemine\r\n ','2021-01-21 18:02:49',0),(1212,523,'Issue',1,'','2021-01-21 22:11:10',0),(1213,520,'Issue',1,'Bonjour,\r\nj\'ai commencé les tests ce matin.\r\nUne petite question concernant la fonction Vpi_Trace_Internal. \r\nAvez vous bien laissé le return en début de fonction ?\r\nJ\'ai exécuté un test complet et rencontré encore des erreurs sur les souscriptions.\r\nDans l\'ensemble il y a moins d\'erreurs \r\n!clipboard-202101251542-dhp8t.png!\r\nCependant certaines erreurs sont bloquantes. \r\nJe vais une analyse plus précise dans la soirée et ovus tiendrai au courant ?\r\n\r\nCordialement\r\nMichel Condemine','2021-01-25 15:44:31',0),(1214,520,'Issue',347,'Bonjour monsieur Condemine,\r\n\r\nMerci pour ce retour positif.\r\n\r\nConcernant la fonction Vpi_Trace_Internal, le return est commenté dans les binaires livrés mercredi dernier.\r\nDésolé si cela est pénalisant pour les tests CTT, vous trouverez ci-joint les binaires avec le return actif (donc pas de logs du VPI).\r\n\r\nPouvons nous toujours utiliser les logs dans la version livrée au client ? C\'est une fonctionnalité très importante pour nous, pour le debug des anomalies constatées sur site.\r\n\r\nCordialement,\r\nOlivier Pesle.','2021-01-25 16:58:03',0),(1215,402,'Issue',328,'Copier les fichiers donnés par ADP dans: C:\\Program Files\\OpenSSL-Win64\\bin\r\n•Convertir le format du certficat de der vers pem à l\'aide du fichier bat \"convertDerEnPem.bat\", vérifier au préalable si les noms des fichiers dans la ligne de commande correspondent.\r\n•Convertir le format du certficat de pem vers pfx à l\'aide du fichier bat \"convertPemEnPfx.bat\", vérifier au préalable si les noms des fichiers dans la ligne de commande correspondent.','2021-01-28 17:53:25',0),(1216,465,'Issue',433,'Comme convenu, un Screenshot des consoles des 2 serveurs Line (à gauche) et Plant (à droite), où on observe une transition [1]->[1] (entourée en rouge) qui me pose question.\r\n\r\n','2021-02-02 16:50:56',0),(1217,532,'Issue',1,'Hello,\r\ndo you means that your program crash ?\r\nDo you have a callstack and logs ?\r\n\r\nRegards\r\nMichel Condemine','2021-02-11 15:15:25',0),(1218,532,'Issue',398,'I have no callstak from the crashes because it occure on production host, but the logs in my first message are from OpenOpcUA traccelogs.\r\nMy client return me windows events that show crash event (see joined screenshot).\r\nOn plateform I reproduce RSA_Sign Error after 45 min, with a breakpoint at the line which trace the RSA Message (line 753 in OpcUa_P_OpenSSL_RSA_Private_Sign ). the callstack begin in OpcUa_SecureConnection_RenewTimerCallback which call OpcUa_SecureConnection_BeginOpenSecureChannel ... to OpcUa_P_OpenSSL_RSA_Private_Sign','2021-02-11 16:04:35',0),(1219,532,'Issue',398,'Promised screenshots','2021-02-11 16:06:50',0),(1220,532,'Issue',1,'Hello,\r\nMy advise is to use Procdump to create a minidump. https://docs.microsoft.com/en-us/sysinternals/downloads/procdump \r\nIt will allows according to the source code to track and fix the issue.\r\n\r\nRegards\r\nMichel Condemine ','2021-02-11 16:36:15',0),(1221,532,'Issue',398,'I\'m not sure to be autorized to install extra tools to the production host, but i\'ll try.\r\n\r\nWhat about RSA_Sign Error OpcUa_SecureConnection_Renew ?','2021-02-12 08:26:16',0),(1222,532,'Issue',1,'Hello, (always better)\r\nThe picture you provide, M4069, M4079 and M4070, refer to the timestamp crash of your app ControlVisuelUSWBCrayonLUC.exe.\r\nThose timestamp are not connected with timestamp of the Secure Chanel renewing process.\r\nBy the way the log message are not shaped as in the code. Do you change it in any way ?\r\nThe message is suppose to appears in OpcUa_P_OpenSSL_RSA_Private_Sign function and it suppose to start with *** 3 star.\r\nSomething like *** RSA_Private_Sign: {ERROR MESSAGE] ***\r\nThe error message comes from OpenSSL.\r\n\r\nWhat is you OpenSSL version ?\r\n\r\nRegards (at least)\r\nMichel','2021-02-12 08:58:49',0),(1223,532,'Issue',398,'I haven\'t all openopcua log, a the time aof the crash, but i hase log from terminal application where i see openopcua reconnection effect due to rsa_sign errror.\r\nAll crash arrive 45 minutes after the last RSA_sign error, i have one exemple (see tail of the file in joined file)\r\nFor OpenSSL, I use version 1.1.0j','2021-02-12 09:58:18',0),(1224,524,'Issue',1,'Fournissez moi une maquette.\r\nmerci\r\nMichel','2021-02-12 17:53:59',0),(1225,524,'Issue',1,'','2021-02-12 17:54:11',0),(1226,527,'Issue',1,'','2021-02-12 17:56:23',0),(1227,527,'Issue',1,'Le problème est fixé. merci pour ce retour.\r\nCordialement\r\nMichel','2021-02-12 18:15:03',0),(1228,531,'Issue',450,'En effet, sans consigne ni valeur finale, un float est largement suffisant pour U, I et P !\r\n\r\nMerci,\r\nGuy-Alexis\r\n','2021-02-15 10:58:48',0),(1229,529,'Issue',450,'Bonjour Michel, \r\n\r\nJe n’y vois pas d’inconvénient de mon côté\r\n\r\nBonne journée à vous,\r\n\r\nValentin','2021-02-15 11:00:10',0),(1230,531,'Issue',1,'','2021-02-15 11:02:07',0),(1231,530,'Issue',450,'Selon Valentin cette classe était censée être parent (abstraite) des objets d\'identification (scan laser, QR code, etc.)\r\nSi elle est inutilisée et jugée sans utilité concrète, nous devons pouvoir la supprimer.\r\n\r\nCordialement,\r\nGuy-Alexis','2021-02-15 11:02:12',0),(1232,529,'Issue',1,'','2021-02-15 11:03:11',0),(1233,532,'Issue',398,'new informations, \r\nmy client has run a test without security policy since the 11/02. During the test (3 days) there was no RSA error (expected) and no application crash.\r\nto be continued.','2021-02-16 08:30:00',0),(1234,532,'Issue',398,'Today I tried my client with OpenOpcUA CoreServer. When client renewing connection (OpcUa_SecureConnection_RenewTimerCallback) i got the error on RSA_sign.\r\n\r\nI try the same client , but with openssl library 1.1.1.i with the same result.\r\n\r\nExecuting step by step, i realize that renewing the channel occure after unlocking the secureConnection :\r\n\r\n OPCUA_SECURECONNECTION_UNLOCK(pSecureConnection);\r\n uStatus = OpcUa_SecureConnection_BeginOpenSecureChannel(pConnection,\r\n OpcUa_SecurityTokenRequestType_Renew);\r\n OPCUA_SECURECONNECTION_LOCK(pSecureConnection);\r\n\r\nIs it possible that client operations intract with Secureconnection at this moment and alter le process or made it crash ?\r\n','2021-02-16 13:56:25',0),(1235,533,'Issue',1,'','2021-02-17 10:08:32',0),(1236,524,'Issue',432,'Bonjour M. Condemine, \r\n\r\nVoici une maquette pour illustrer l\'idée.\r\n\r\nLa maquette ci-joint contient la configuration que l\'on souhaite essayer si possible avec OpenOpcUa. Le use case n\'est pas bloquant mais l\'idée reste de monter en compétences et de savoir ce que OpenOpcUa est capable de faire ou non.\r\nL\'Alarme que je souhaite mêttre en place est une du Type OffNormalType. \r\nSi j\'ai bien compris sa définition dans la documentation OPC UA, pour une variable, nous pouvons définir un normal state (état normal) et lorsque la valeur de la variable dérive de son état normal, un évènement de type alarme est généré. \r\n\r\nPour le noeud ns=http://Inetum.com/demoLine; i=6119 (DisplayName = Cycle Code) nous souhaitons mêttre en place ce type d\'alarme. \r\nDans le fichiers xml de définition des alarmes (Opc.Ua.AlarmDefinitionBoolean.NodeSet2.xml), nous définissons l\'alarme, ainsi que son Normal State (propriété d\'une Alarme OffNormalType) et son InputNode (propriété hérité du type AlarmeConditionType). \r\n\r\n\r\nAi-je mal fais la configuration ou bien ceci n\'est-ce pas implémenté dans OOUA? \r\n\r\nExcellente journée à vous,\r\n\r\nMichael \r\n ','2021-02-18 17:27:56',0),(1237,530,'Issue',1,'Supprimer','2021-02-19 14:53:32',0),(1238,534,'Issue',1,'bonjour,\r\nvous êtes tombé sur un cas particulier.\r\nLes SubSystemId des Vpis doivent être séparé d\'au moins 20 en valeur.\r\n!clipboard-202102191728-oqxfg.png!\r\n!clipboard-202102191729-zfhp1.png!\r\n\r\nJe vais regarder pour prendre en compte cette \"ERREUR\" de configuration. Notez erreur entre guillement.\r\n\r\nCordialement\r\nMichel','2021-02-19 17:30:36',0),(1239,534,'Issue',1,'','2021-02-19 19:03:52',0),(1240,532,'Issue',398,'If it can help to isolate the problem, i join a screen copy a the moment when the RSA_sign return error.\r\n!clipboard-202102230840-j4bny.png!\r\n','2021-02-23 08:40:52',0),(1241,532,'Issue',1,'Hello,\r\ni had already pointed the location of the error. \r\nSo bad encoding routines, header too long ... \r\n\r\nI need to think about it.\r\n\r\nRegards\r\nMichel','2021-02-23 08:56:25',0),(1242,535,'Issue',432,'Bonjour, \r\n\r\nSuite à votre livraison de la démo SQL en Release, j\'ai repris mes essais. \r\nLe lancement fonctionne maintenant, or les logs du VPI Sql ne se mettent pas à jour. \r\nJ\'ai également essayé de relancer le démo Debug (en ayant remplacé les exécutables et les dll d\'un build en VS 2017), mais là également le serveur se lance, mais les logs ne se mettent pas à jour. \r\n\r\nSauriez-vous pourquoi? \r\n\r\nMichael ','2021-03-01 13:43:26',0),(1243,535,'Issue',1,'Bonjour,\r\nparlez vous des fichiers de log ou de l\'archivage SQL ?\r\n\r\ncordialement\r\nMichel','2021-03-01 14:59:54',0),(1244,535,'Issue',432,'Je souhaite consulter les logs du VFI pour diagnostiquer pourquoi l\'archivage n\'a pas fonctionné','2021-03-01 15:17:15',0),(1245,535,'Issue',1,'En ce cas les logs du serveur et du vfi devraient se trouver dans le répertoire paramétré pour les stocker les, (LogFolder).','2021-03-01 15:21:30',0),(1246,535,'Issue',432,'J\'entends, mais ces logs ne se mettent pas à jour pour la partie VFI SQL (voir dates ci-dessous) \r\n\r\n!clipboard-202103011527-emvge.png!\r\n\r\n\r\nMichael','2021-03-01 15:28:57',0),(1247,535,'Issue',1,'Bonjour,\r\nje pense que vous n\'avez pas modifié le fichier oouaprj pour qu\'il pointe sur le VFI de release.\r\n<HistoricalAccess ArchiveId=\"ns=1;i=200\" ArchiveName=\"SQL\" VfiName=\"VfiSql\" ></HistoricalAccess>\r\n\r\nIci,\r\nj\'ai bien des log.\r\nCordialement\r\nMichel Condemine','2021-03-01 15:36:08',0),(1248,535,'Issue',432,'Merci M. Condemine, \r\n\r\nen effet la configuration ne pointait pas sur le bon dll. \r\n\r\nDu coup maintenant la connexion a la base a bien fonctionné (logs serveur SQL). \r\n\r\nOr de nouvelles tables n\'ont pas été crées. \r\nLes logs du VFI Sql et du serveur OOUA m\'indiquent uniquement une erreur lorsque je fais un History Read. \r\n\r\nLog Serveur : \r\n!clipboard-202103011754-mq8hg.png!\r\n\r\nLog VFI : \r\n\r\n!clipboard-202103011754-vg0zb.png!\r\n\r\n\r\n\r\nL\'utilisateur SQL possède tous les droits sur la base concernée. \r\nUne idée pourquoi ça coince? \r\n\r\n\r\n\r\nMichael \r\n\r\n\r\n\r\n\r\n','2021-03-01 18:00:37',0),(1249,535,'Issue',1,'Est ce que vous pouvez m\'envoyer votre fichier .Dat ?','2021-03-01 23:11:09',0),(1250,535,'Issue',432,'Ci-joint une capture de mon fichier .dat : \r\n\r\n!clipboard-202103020956-rtiym.png!\r\n\r\n\r\nMichael','2021-03-02 09:56:25',0),(1251,535,'Issue',1,'Bonjour,\r\nêtes vous certain que la connexion aboutie ?\r\nEst ce que le Vfi archive des valeurs dans les tables ?\r\nVous disiez qu\'aucun nouvelle table n\'avait été créé. C\'est un problème.\r\nPourriez vous creuser cette piste ?\r\nCordialement\r\nMichel Condemine','2021-03-02 10:03:48',0),(1252,515,'Issue',1,'Bonjour,\r\nle VpiMdbMaster et le VpiMdbServer supportent bien la communication inter-vpi.\r\n\r\nCordialement\r\nMichel Condemine','2021-03-02 15:13:54',0),(1253,518,'Issue',1,'Bonjour,\r\nque souhaitez vous je fasse de ces fichiers de log ?\r\nIls ne semblent révéler de problème particulier. \r\n\r\nCordialement,\r\nMichel Condemine','2021-03-02 15:15:23',0),(1254,512,'Issue',1,'Bonjour,\r\nje pense que nous avons fait le tour du sujet.\r\nJe vous propose de clore cet incident. Nous pourrons le rouvrir si nécessaire. \r\n\r\nCordialement,\r\nMichel Condemine','2021-03-02 15:17:25',0),(1255,452,'Issue',1,'Bonjour,\r\nje vous propose de clore le sujet pour le moment.\r\n\r\nCordialement,\r\nMichel Condemine','2021-03-02 15:18:21',0),(1256,445,'Issue',1,'Bonjour,\r\nsouhaitez vous toujours une maquette mettant en œuvre le VfiSql ?\r\n\r\nCordialement,\r\nMichel Condemine','2021-03-02 15:19:28',0),(1257,434,'Issue',1,'','2021-03-02 15:19:55',0),(1258,433,'Issue',1,'Bonjour,\r\nle documentation sont sur le Redmine.\r\nJe vous posterai une version préliminaire de l\'outil de configuration d\'ici la fin de semaine.\r\n\r\nJe compte sur vos retour sur l\'outil.\r\n\r\nCordialement,\r\nMichel Condemine','2021-03-02 15:21:24',0),(1259,535,'Issue',432,'Bonjour, \r\n\r\nNous avons avancé sur le problème. La création de la table n\'avait pas lieu parce que aucun noeud n\'avait le paramètre \"Historizing=True\". \r\nLa table a maintenant été bien crée, trace Wireshark de l\'échange : \r\n\r\n!clipboard-202103031034-pr2bb.png!\r\n\r\nLes valeurs sont bien stockées en base, même si Wireshark détecte que les paquets sont mal formés, trace Wireshark : \r\n\r\n!clipboard-202103031035-fyqbz.png!\r\n\r\nDétail du paquet de la requête SQL d\'insertion :\r\n\r\n!clipboard-202103031037-wq3tt.png!\r\n\r\nDans la base, les éléments ont bien étés insérés. \r\nLe nouveau problème arrive lorsque nous essayons de lire les données. Là il y a deux scénarios : \r\n\r\n- avec un serveur SQL en local, lorsque nous essayons une lecture, nous avons ce message dans le log du serveur : \r\n!clipboard-202103031048-dxca6.png!\r\n\r\n- avec un serveur SQL à distance, le serveur Open OPC UA crash.\r\n\r\nDes idées? L\'idéal là, serait de débugger avec Visual Studio.\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n\r\n\r\n\r\n\r\n','2021-03-03 10:55:40',0),(1260,535,'Issue',1,'Bonjour,\r\nje note des erreurs relatives aux Write. Il ne semble pas y avoir d\'erreur de lecture.\r\nPourrions vous fabriquer un mini-dump afin d\'intercepter le crash.\r\nCependant ma version est très différente de ma votre..\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-03-03 13:05:01',0),(1261,541,'Issue',1,'Bonjour,\r\npourriez vous m\'en dire plus sur le serveur que vous souhaitez accéder ?\r\nIPV4 ou IPV6 ?\r\n\r\nCordialement\r\nMichel Condemine','2021-03-03 13:06:39',0),(1262,541,'Issue',432,'Je ne saurais pas vous dire si le serveur que l\'on a déployé et ses dépendances ont été compilés en Release IPV4 ou en Release normal. Je n\'ai pas trouvé cette info dans les détails des dlls et des exécutables. \r\nJe peux cependant recompiler dans la configuration que vous nous conseillez (en espérant que la VPI library n\'a pas trop changé et est compatible avec le serveur OPC UA en RC7).\r\n\r\n\r\nNous essayons d\'accéder au serveur en utilisant son adresse en ipv4.\r\nY aurait t-il une raison pourquoi le serveur répond à un Hello message mais pas à un OpenSecureChannelRequest? \r\n\r\n\r\nMichael\r\n\r\n','2021-03-03 14:16:24',0),(1263,541,'Issue',1,'Bonjour,\r\nil est essentiel dans tous vos essais d\'utiliser la dernière version de la base de code et/ou de livrable OpenOpcUa.\r\nDans vos capture WS je vos conseil de filtrer le trafic opcua. \r\nSi un OpenSecureChannel n\'abouti pas il y a fort a parier qu\'il y a un pb IPV4/IPV6\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2021-03-03 14:23:09',0),(1264,535,'Issue',432,'Merci pour votre temps. Le crash avait en fait lieu parce que je lançais le VfiRead avec la date de fin antérieure à la date de début. Depuis le procdump, je n\'arrive depuis plus à reproduire le crash même en remettant mal les dates (procdump qui m\'a d\'ailleurs pas donné de trace). \r\n\r\nTout fonctionne maintenant à merveille. \r\n\r\nNous pouvons clore ce ticket, je reviens vers vous si je rencontre de nouveaux problèmes.\r\n\r\n\r\nMichael ','2021-03-03 15:02:22',0),(1265,535,'Issue',1,'Bonjour,\r\nmerci d\'ouvrir un ticket pour le crash lors de la saisie à l\'envers.\r\nPS: ProcDump protège l\'exécution du serveur. (plus ou moins)\r\n\r\nCordialement\r\nMichel Condemine','2021-03-03 15:17:34',0),(1266,541,'Issue',432,'Vous me conseillez de compiler le projet en Release IPV4 ou Release tout court? Sachant que pour nous c\'est une connexion ipv4 que l\'on souhaite faire (contrainte du réseau interne inetum). \r\n\r\nJ\'ai recapturé le trafic en filtrant l\'opcua par le port utilisé, le résultat est le même que la trace postée plus haut. \r\nY-a-t-il des détails de certains paquets qui pourraient montrer cette incohérence ipv4/ipv6?\r\n\r\n\r\n\r\nCe que j\'observe au niveau réseau c\'est : \r\n\r\nClient envoie un hello, bien reçu par le serveur \r\nServeur envoie un acknowledge reçu par le client\r\nClient envoie un open secure channel request, pas reçu par le serveur puisque le serveur renvoie plusieurs fois le paquet acknowledge en manque d\'acquittement TCP \r\n\r\nCordialement,\r\n\r\nMichael ','2021-03-03 15:40:12',0),(1267,541,'Issue',1,'Bonjour,\r\ntout est là. \r\nOu va ce paquet TCP non reçu par le serveur ?\r\nEst ce que le client l\'envoi au mauvais endroit ?\r\nEst ce que le client est en IPV4 et le serveur en IPV6 ?\r\n\r\nSi vous avez une idée. Je suis preneur\r\nCordialement\r\nMichel Condemine','2021-03-03 15:53:32',0),(1268,541,'Issue',432,'Rebonjour,\r\n\r\nJe viens de voir que le serveur OOUA est en ipv6: \r\n\r\n!clipboard-202103031625-g96um.png!\r\n\r\nLa conf réseau des machines qui n\'arrivent pas à l\'accéder font de l\'ipv4 uniquement. *Peut on passer le serveur en ipv4 avec uniquement de la conf?* \r\n\r\nCe qui me perturbe aussi c\'est que le serveur est en ipv6, *mais un Wireshark sur la machine du Serveur me montre que tous les échanges ont lieu en ipv4*\r\n\r\nVoici une trace de la machine serveur :\r\n\r\n!clipboard-202103031620-2td8b.png!\r\n\r\nCette trace m\'a permis de voir que le OpenSecureChannelRequest est bien reçu par le serveur, il y répond avec un OpenSecureChannelResponse, qui elle n\'arrive pas au niveau réseau au client. Une analyse du paquet OpenSecureChannelResponse ne montre aucune indication que le serveur ne veut que de l\'IPV6. A ce stade, le client ET le serveur ont des paquets non acquittés au niveau TCP et réémettent chacun les paquets concernés. \r\n\r\n\r\nCordialement,\r\n\r\nMichael\r\n ','2021-03-03 16:30:41',0),(1269,543,'Issue',459,'Alexandre mace wrote:\r\n> Bonjour Monsieur Condemine,\r\n> \r\n> Je voulais savoir si il n\'existe pas un manuel d\'utilisation pour le configManager, car je rencontre de grandes difficultés à me servir du logiciel.\r\n> De plus existe t-il un manuel pour la partie configuration serveur et pour la partie espace d\'adressage sans passer par le configManager ?\r\n> Dans l\'attente de votre réponse. \r\n> \r\n> Cordialement, \r\n> Alexandre Macé\r\n\r\n','2021-03-05 17:06:36',0),(1270,542,'Issue',328,'la version 5.2 du VpiEx semble faire planter le serveur (même sans trace activé)\r\n\r\nCi-joint le fichier dump\r\n\r\nMerci','2021-03-05 17:37:33',0),(1271,542,'Issue',328,'\r\nAutre dump','2021-03-05 18:20:30',0),(1272,544,'Issue',1,'Bonjour,\r\nil faut chercher dans les fichiers LOG afin de comprendre la raison pour laquelle le serveur est passé dans cet état.\r\nPlusieurs causes peuvent être a l\'origine du STATE = FAILED\r\nDans votre cas probablement un problème de communication ou un erreur de démarrage.\r\nEst ce que le problème disparait si vous relancez le serveur ?\r\n\r\nCordialement\r\nMichel Condemine','2021-03-08 10:19:47',0),(1273,544,'Issue',461,'La seule erreur qui me semble être à l\'origine de ce soucis est peut-être:\r\n\r\n2021-03-08T09:29:30.143Z SERVER_ERROR DiscoverEndpoints failed uStatus=0x80050000\r\n\r\nCi-joint le fichier log après redémarrage du serveur, qui ne change rien au problème.\r\n\r\nMerci\r\nC.','2021-03-08 10:32:41',0),(1274,544,'Issue',1,'Bonjour,\r\nest ce que vous pouvez vérifier la configuration de votre PKI ?\r\nOpcUa_ServerState_Failed peut apparaitre en cas de problèmes avec les VFI, l\'initialisation des VPI, une mauvaise configuration de PKI (certificat invalide)\r\n\r\nCordialement\r\nMichel Condemine','2021-03-08 10:49:54',0),(1275,544,'Issue',461,'J\'ai finit par redémarrer le PC et tout est rentré dans l\'ordre.','2021-03-08 13:22:17',0),(1276,524,'Issue',432,'Bonjour M. Condemine, \r\n\r\nJe fais suite à ce ticket avec une remarque et deux questions sur le sujet des alarmes. \r\n\r\n* Tout d\'abord pour l\'alarme de type LimitAlarm, lorsque la valeur surveillée est égale à la limite HighHigh ou LowLow, l\'alarme levée est du type Normal. Ceci me semble incorrect dans le cas où il y a également des alarmes de type Low et High. J\'ai joint ci dessous une maquette où vous pouvez tester ceci. \r\n\r\n\r\n* Le deuxième bug que j\'ai trouvé est le cas suivant : une variable ne peut pas à la fois être liée à un VPI et être liée à une configuration d\'alarme incomplète. Soit l\'alarme est entièrement complétée (tous les champs même optionnels comme HighHigh) et elle peut être liée à un VPI, soit l\'alarme peut être que partiellement complétée mais elle ne peut pas être liée à un VPI. En d\'autres mots, on ne peut pas à la fois lier une variable à un VPI et omettre des champs optionnels de l\'alarme qui lui est reliée. J\'ai l\'impression qu\'une maquette ne suffira pas pour vous montrer le deuxième \"bug\" qui fait crash notre serveur. Des idées? \r\n\r\n* Dans l\'état actuel, les autres types d\'alarmes (autre que LimitAlarm et l\'alarme booléenne ) sont-elles implémentées? \r\n\r\nTrès cordialement, \r\n\r\nMichael ','2021-03-08 16:34:46',0),(1277,544,'Issue',1,'','2021-03-08 18:35:26',0),(1278,542,'Issue',328,'J\'ai mis en place la livraison de ce jour (09/03/21) contenant le VpiEx 0.0.5.7, le plantage est toujours présent.\r\n\r\nCi-joint le dump.\r\n\r\nCdlt.\r\n\r\n','2021-03-09 14:31:42',0),(1279,450,'Issue',1,'','2021-03-15 09:31:44',0),(1280,448,'Issue',1,'','2021-03-15 09:35:00',0),(1281,541,'Issue',1,'','2021-03-15 09:36:47',0),(1282,524,'Issue',432,'Bonjour, \r\n\r\n\r\nJe relance ce ticket car il fait partie de ceux mentionnés dans notre Excel \r\n\r\n\r\nMichael ','2021-03-15 10:39:51',0),(1283,546,'Issue',432,'Ci-joint une maquette où vous pourriez vérifier tous les points. \r\n\r\nPour le scénario de crash (problème qu\'avec des String ) : modifier quelques fois la valeur de la variable String To Historize, au deuxième HistoryRead, on a le crash. \r\n\r\n\r\nLe debug du CoreDump ne me donne que comme info OpenOpcUaCoreServer_Release.exe mémoire endommagée. \r\n\r\nMichael ','2021-03-15 11:15:10',0),(1284,538,'Issue',432,'Bonjour, \r\n\r\nJe fais suite à ce ticket avec une question sur la partie sécurité OOUA. \r\nNous tentons de mettre en place une authentification par Username Password. \r\nAuriez-vous par hasard changé la fonction/table de décodage/encodage des mots de passes depuis la livraison RC07 le 12 février 2021? \r\n\r\nAprès avoir créé le fichier contenant les logins/mdp, je tente une connexion en Username/Password (en Basic 256 Sign and Encrypt) en ayant bien déposé le certificat révoqué dans le bon dossier. La connexion est refusée. \r\nDe même en Security Policy None. Est-ce qu\'il y a un élément qui m\'échappe? \r\n\r\nUne maquette ci-jointe, contenant 2 logins avec mdp SESAME \r\n\r\n\r\nMichael ','2021-03-15 15:50:29',0),(1285,537,'Issue',1,'Bonjour,\r\nj\'ai fait le test avec la configuration attaché.\r\nCela fonctionne sans problème.\r\n\r\nCordialement\r\nMichel','2021-03-17 08:52:43',0),(1286,537,'Issue',1,'','2021-03-17 08:53:04',0),(1287,538,'Issue',1,'Bonjour,\r\nil n\'y aucun problème de fonctionnement. Cependant :\r\nLe fichier doit s\'appeler OOUAUserAuthentication.txt et respecter le format défini. UserName<ESPACE>encodedPassord<ESPACE>NoGroup.\r\nLe NoGroup est optionnel.\r\nVotre fichier utilise une tabulation.\r\n\r\nCordialement\r\nMichel Condemine','2021-03-17 10:24:45',0),(1288,538,'Issue',1,'','2021-03-17 10:25:15',0),(1289,538,'Issue',432,'Bonjour, \r\n\r\nJ\'ai refait le test en mettant des espaces aux endroits demandés, en mettant ou pas un groupe, en mettant à None ou pas la Security Policy. \r\n\r\nAvez-vous pu de votre côté essayé de lancer la conf et login? Ou bien uniquement juste regardé le fichier de configuration OOUAUserAuthentication ? \r\n\r\n\r\nEn Securité None j\'ai le log suivant sur le client: \r\n\r\n\r\n!clipboard-202103171159-e2edq.png!\r\n\r\n\r\nEn Securité BasicSha256 Sign and Encrypt , j\'ai le log suivant : \r\n\r\n!clipboard-202103171158-9kbs6.png!\r\n\r\n\r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2021-03-17 12:00:50',0),(1290,538,'Issue',1,'Bonjour,\r\nj\'ai, bien sur, fait les tests avec votre maquette.\r\nJe ne me suis pas contenté de regarder.\r\n\r\nMichel Condemine\r\n','2021-03-17 13:22:07',0),(1291,545,'Issue',1,'Bonjour,\r\nje ne comprends pas le bug.\r\nPour l\'archive à fréquence fixe le serveur utilise min et max intervalle.\r\nIl arme le compteur à max intervalle et quand la valeur du compteur atteint min intervalle il archive.\r\n\r\nOu voyez vous un problème ?\r\n\r\nCordialement\r\nMichel Condemine','2021-03-17 13:31:20',0),(1292,545,'Issue',1,'','2021-03-17 13:32:19',0),(1293,538,'Issue',432,'Je vous remercie, c\'est bien fonctionnel. Toutes mes excuses pour le temps que je vous ai fait perdre. \r\n\r\nIl me manquait l\'étape du déplacement du Certificat depuis le dossier rejected et au dossier certs. \r\nNous tenterons maintenant de fournir des certificats pré-générés au serveur et au client. Nous vous tenons au courant de notre avancement\r\n\r\nMerci encore, \r\n\r\nMichael Ejigu ','2021-03-17 14:23:01',0),(1294,545,'Issue',432,'Bonjour, \r\n\r\nPar cette définition, si je veux une période d\'archivage de 5 secondes, toutes les propositions suivantes fonctionnent : \r\n\r\n- MaxTimeInterval =6000, MinTimeInterval=1000\r\n- MaxTimeInterval =16000, MinTimeInterval=11000\r\n- MaxTimeInterval =50000, MinTimeInterval=45000\r\n\r\n\r\nEst-ce bien le cas? Ou bien suis-je encore dans l\'incompréhension? \r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2021-03-17 14:31:47',0),(1295,545,'Issue',1,'Bonjour,\r\nVous avez bien compris.\r\nCordialement\r\nMichel Condemine','2021-03-17 15:12:59',0),(1296,546,'Issue',1,'Bonjour,\r\nA part le crash sur les String. Il n\'y a pas de bug dans le VFICSV.\r\nJ\'ai corrigé le crash. L\'archivage et surtout la lecture de string fonctionnent bien.\r\nIl n\'y pas d\'archivage en double. Il y a deux archivages de la même valeur dans des conditions différentes.\r\nLe 1er lors de l\'écriture que vous faites, sans doute avec un client UA et la 2ème qui correspond au cycle d\'archivage régulier.\r\nJ\'ai ajouté un nouveau paramètre dans le fichier .DAT qui permet de régler la fréquence du FLUSH dans le fichier CSV. \r\nCette fréquence est exprimée en seconde en utilisant le paramètre FLUSH_RATE\r\nFLUS_RATE 60 pour un flush toute les 60 sec.\r\nJ\'ai aussi introduit le log folder et project folder dans le VfiCsv. \r\nLes fichiers CSV sont maintenant dans le project folder.\r\n\r\nLa maquette est dans la section File\r\n\r\nEnjoy !!\r\nMichel Condemine','2021-03-18 00:55:47',0),(1297,544,'Issue',461,'Le problème revient constamment, même après reboot et je ne trouve aucune indication de pourquoi ni comment le résoudre.','2021-03-18 10:20:19',0),(1298,547,'Issue',1,'Bonjour,\r\nest ce que l\'accès TeamViewer est toujours opérationnel ?\r\n\r\nAccès TeamViewer\r\n1832276048\r\nExels1us&2010#\r\n\r\nCordialement\r\nMichel Condemine','2021-03-18 14:04:03',0),(1299,547,'Issue',1,'L\'accès fonctionne bien mais la connexion ne tient que quelques minutes, secondes.\r\n!clipboard-202103181407-xb1m5.png!\r\nJe reçois un message d\'erreur\r\n\r\nCordialement\r\nMichel Condemine','2021-03-18 14:07:52',0),(1300,547,'Issue',1,'Bonjour,\r\nj\'ai tenté de connecter plusieurs fois pour diagnostiquer votre problème.\r\nMalheureusement le connexion coupe ou bout de quelques secondes ou n\'aboutie pas.\r\nEst ce que le mode de licence de TeamViewer a changé ?\r\nY a t il quelque chose de nouveau sur l\'installation ?\r\n\r\n\r\nCordialement\r\nMichel Condemine','2021-03-19 23:36:14',0),(1301,538,'Issue',432,'Bonjour M. Condemine, \r\n\r\nJ\'essaye de tester le 3ème mode de sécurité OOUA, l\'authentification par certificats. \r\nN\'ayant pas pu générer des certificats de la bonne forme, j\'utilise sur deux clients différents (UaExpert et Genesis) les certificats qu\'ils utilisent par défaut pour la signature et le chiffrage en mode Anonymous ou Login/Password. \r\nVoici les droits d\'utilisation de ces cert: \r\n\r\n!clipboard-202103220955-g0qij.png!\r\n!clipboard-202103220955-8yilz.png!\r\n\r\nJ\'ai donc testé sur ces deux clients, de m\'authentifier avec ces certificats. Le serveur les met bien parmi les certificats rejected. Je déplace le certificat dans les certs. Et lorsque j\'essaye de me réauthentifier, j\'obtiens le même résultat. Le certificat est remis dans les rejected. \r\n\r\nJ\'ai également testé de redémarrer le serveur entre les deux essais d\'authentification, ainsi que de déplacer le certificat dans le dossier des certificats d\'autorités. \r\n\r\nAuriez vous une piste pourquoi? Pourrait-on regarder ça ensemble à la prochaine réunion ? Il me semble que si dans le projet, le client souhaite utiliser AD pour distribuer les certificats, c\'est ce mode d\'authentification qui va être utilisé. \r\n\r\n\r\nTrès cordialement, \r\n\r\nMichael \r\n','2021-03-22 10:05:57',0),(1302,549,'Issue',1,'Bonjour,\r\nla fonction d\'import est premièrement conçue pour générer les nodeId.\r\nJ\'ai fait de nombreux essais d\'import sans rencontrer de problème. Cependant l\'outil est assez pointilleux.\r\n\r\nJe vous propose un point Team pour étudier/comprendre votre problème.\r\n\r\nCordialement\r\nMichel Condemine','2021-03-25 09:23:16',0),(1303,543,'Issue',1,'Bonjour,\r\nj\'ai travaillé toute la journée sur la documentation de l\'OOUAConfigManager. J\'ai bonne espoir de sortir une version préliminaire cette semaine.\r\nCi-dessous la table des matières pour avis \r\n!clipboard-202104061851-iz7oi.png!\r\n\r\n\r\nCordialement\r\nMichel Condemine','2021-04-06 18:51:55',0),(1304,550,'Issue',1,'','2021-04-08 20:49:28',0),(1305,554,'Issue',462,'Pour info :\n\n* Ni des DI, Ni les DO ne fonctionnent (mais seulement les DO sont en rouge dans UA Expert). les DI restent à False.\n* Une \'Contre manipulation\' en remettant une version 1.0.4.7 fonctionne, c\'est donc bien spécifique au nouveau VPI.\n\nSinon, J\'ai remarqué une coquille dans la doc \'Manuel de l_utilisateur - VpiS7 - 1.0.7\' page 9.\n\nVrai : Les \'DI\' correspondent a PE (Eingang) fonctions EBRead EBWrite\nMais : Les \'DO\' correspondent a PA (Ausgang) fonctions ABRead ABWrite ... ce n\'est pas PE qui est répété dans le tableau page 9.\n\n\n\n\n','2021-04-09 14:48:33',0),(1306,553,'Issue',1,'Bonjour,\r\nles réunions Team n\'entrent pas dans le cadre du support technique de premier niveau et doivent être réservée aux situations exceptionnelles.\r\nVous devez toujours me décrire le problème rencontré le plus précisément possible et me fournir une maquette me permettant de le reproduire.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-09 18:14:53',0),(1307,552,'Issue',1,'Bonjour,\r\nIl n\'y a pas d\'erreur dans ma plateforme de génération. Elle fonctionne parfaitement sous Windows et sous plus d\'une dizaine de Linux.\r\nLes fichiers CMakeList doivent simplement être adapté sous MACOS.\r\nstdio.h ne saurait être inclus. Il est plateforme dépendant.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-09 18:18:17',0),(1308,552,'Issue',1,'','2021-04-09 18:18:40',0),(1309,549,'Issue',1,'Bonjour,\r\nla documentation est disponible à 90%.\r\nJe l\'aurai terminé pour lundi ou mardi au plus tard.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-09 18:20:17',0),(1310,518,'Issue',1,'A défaut de réponse je ferme l\'incident.','2021-04-09 18:21:27',0),(1311,445,'Issue',1,'A défaut de réponse je ferme l\'incident.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-09 18:22:21',0),(1312,433,'Issue',1,'','2021-04-09 18:22:48',0),(1313,485,'Issue',1,'Problème corrigé en supprimant la trace Vpi.\r\nje ferme l\'incident.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-09 18:24:16',0),(1314,507,'Issue',1,'Résolu par suppression de la trace. je ferme l\'incident.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-09 18:34:11',0),(1315,489,'Issue',1,'A défaut de réponse je ferme l\'incident.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-09 18:35:04',0),(1316,552,'Issue',1,'Bonjour,\r\nPetit conseil. \r\nNe tentez pas de générer la SharedLib tant que la stack ne sera pas générée.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-12 15:13:34',0),(1317,555,'Issue',1,'Bonjour,\r\nj\'ai fait plusieurs tests avec votre maquette et vos binaires. \r\nJ\'ai rencontré plusieurs comportements inconsistants. Il y a bien quelques erreurs de configuration mais le Vpi semble s\'en accommoder.\r\nJ\'ai ensuite remplacé vos binaires par les miens et là plus aucune erreur malgré les erreurs de configuration.\r\nJe m\'interroge sur la consistance des sources.\r\nPourriez vous faire de tests avec la livraison ci-joint (votre maquette avec mes binaires).\r\n\r\nCordialement\r\nMichel Condemine','2021-04-12 17:58:26',0),(1318,555,'Issue',432,'Rebonjour, \r\n\r\nJ\'ai de mon côté effectué une dizaine de tests sur \"Demo v2.1-Test descente nok_MC12-04\" qui contient des dll de dates assez dispersées et une client lib récente (12 avril 17h). : \r\n!clipboard-202104121839-txplu.png!\r\n\r\n\r\nSur ces dizaines de test, que 3 ont fonctionnés. Les autres cas mènent toutes sans exception au scénario vu ce matin avec vous. \r\n\r\nPar ailleurs suite à notre call de ce matin, l\'import sur FlexClient des configurations des agrégations m\'as permis de voir qu\' il acceptait bien notre conf. Je vois donc la fonctionnalité dont vous parlez, et elle est très bien. \r\n\r\n\r\n\r\nMichael\r\n','2021-04-12 18:45:24',0),(1319,555,'Issue',1,'Bonjour,\r\nj\'ai aussi fait 10 tests d\'affilés sans rencontrer d\'erreur.\r\nCela est très ennuyeux. Je vous montrerai demain comment je procède en espérant reproduire ce problème.\r\n\r\nEst ce que vous obtenez un DeviceState != Good quand cela ne fonctionne pas ?\r\n\r\nCordialement\r\nMichel Condemine','2021-04-12 18:50:13',0),(1320,552,'Issue',431,'Bonjour Monsieur Condemine,\r\nJe me suis sans doute mal exprimé dans cette demande et je ne saurais remettre en cause votre travail.\r\nJe rapportais la réponse que vous m’aviez faites dans le post Anomalie #452 ou vous m’indiquiez que j’avais sans doute une erreur dans mon fichier CMakeList.txt. Ce que je conçois tout à fait.\r\n\r\nJ\'ai avancé dans la compilation de \'OpenOpcUaStackV1\' en ajoutant -D_INC_STDIO dans le fichier CMakeList.txt\r\n\r\nCependant, je rencontre une nouvelle erreur lors de la compilation.\r\n\r\n[ 11%] Building C object CMakeFiles/OpenOpcUaStack.dir/source/opcua_core.c.o\r\n/Users/administrateur/Documents/OPC/OPC-UA/OpenOpcUa_1_0_5_8-B_copy/OpenOpcUaStackV1/source/opcua_core.c: In function \'OpcUa_Mutex_Create\':\r\n/Users/administrateur/Documents/OPC/OPC-UA/OpenOpcUa_1_0_5_8-B_copy/OpenOpcUaStackV1/source/opcua_core.c:135:43: error: \'PTHREAD_MUTEX_RECURSIVE_NP\' undeclared (first use in this function); did you mean \'PTHREAD_MUTEX_RECURSIVE\'?\r\n 135 | result = pthread_mutexattr_settype(&att, PTHREAD_MUTEX_RECURSIVE_NP);\r\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~\r\n | PTHREAD_MUTEX_RECURSIVE\r\n\r\nAuriez vous une idée, une piste de recherche ?\r\n\r\nMerci\r\n\r\nCordialement\r\n\r\nJacques PEIGNÉ ','2021-04-12 19:00:37',0),(1321,555,'Issue',432,'Je vous comprends, j\'aurais bien aimé vous donner des bonnes nouvelles également. \r\nLe device state est BadDisconnect pour les cas où ça ne marche pas : \r\n\r\n\r\n!clipboard-202104121910-ddhl7.png!\r\n\r\n\r\nMichael','2021-04-12 19:11:03',0),(1322,555,'Issue',1,'Bonjour,\r\nmerci de faire un test avec le VpiUaClient version 1.0.2.1 que je viens de poster sur le Redmine.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-13 09:03:41',0),(1323,554,'Issue',1,'Bonjour,\r\nest ce que nous pourrions planifier un CALL pour statuer sur la situation en regard des DO ?\r\n\r\nCordialement\r\nMichel Condemine','2021-04-13 15:49:58',0),(1324,555,'Issue',1,'Bonjour,\r\nmerci de tester cette maquette en urgence.\r\nJ\'ai implémenté un contournement que je consoliderai en fonction de vos retours.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-04-14 16:34:01',0),(1325,557,'Issue',1,'Questions :\r\nPourquoi Genesis n\'affiche pas d\'alarme alors qu\'il a un contenu ?\r\nPourriez vous me donner les 9 éléments demandés par Softing ?\r\n\r\nJe requalifie en Assistance','2021-04-14 16:55:01',0),(1326,557,'Issue',432,'Genesis affiche bien des alarmes, juste les informations ne sont pas au bon endroit. \r\n\r\nSofting et Integration Objects demandent les infos suivantes : \r\n\r\n[0 EventID, 1 EventType, 2 SourceNode, 3 SourceName, 4 Time, 5 ReceivedTime, 6 LocalTime, 7 Message, 8 Severity] \r\n\r\nCordialement,\r\nMichael','2021-04-14 16:57:56',0),(1327,555,'Issue',433,'Bonjour,\r\n\r\nLes manipulations suivantes ont été menées :\r\n- Test de votre maquette : tous les tests OK sur une dizaine de passes (dont la moitié sous Teams)\r\n- Vérification de reproduction du problème sur notre démo avec nos anciennes dll : 100 % tests NOK (donc résultat attendu)\r\n- Substitution des DLL UaClient et ClientLib dans notre démo en y recopiant les dll de votre maquette.\r\n- Test de notre démo avec ces nouvelles dll : 100% OK (dont 1 fois sous Teams).\r\n\r\nNous pensons donc que votre contournement résout bien notre problème.\r\n\r\nCordialement.\r\n\r\nNicolas.\r\n','2021-04-14 17:55:06',0),(1328,555,'Issue',1,'Problème résolu avec OOUAClientLib version 1.0.5.8 - VpiUaClient version 1.0.2.2\r\n','2021-04-14 18:24:49',0),(1329,557,'Issue',1,'Veuillez m\'adresser la trace WireShark avec les Id des trames associées.\r\nLe serveur fait la même chose pour tous les clients. \r\nRéceptionne la demande d\'abonnement sur un monitoredItem, stocke les OpcUa_SimpleAttributeOperand associés puis en fonction de ces OpcUa_SimpleAttributeOperand fabrique la réponse dans l\'ordre de la demande.\r\nDans votre réponse précédente vous me parlez de Softing et d\'Integration Objects. \r\nQu\'est ce que Integration Objects vient faire dans cette boucle ?\r\nAvez vous un problème avec leur client ?\r\nPourriez vous clarifier le nature du décalage avec Genesis ?','2021-04-14 20:29:20',0),(1330,557,'Issue',1,'Le problème vient de la requête de Genesis qui demande deux EventTypes le serveur s\'attends à recevoir qu\'un EventType par requête.\r\nCet EventType supplémentaire et inattendu doit sans doute surcharger la réponse. \r\n\r\n\r\n','2021-04-14 20:43:13',0),(1331,557,'Issue',432,'Bonjour M. Condemine, \r\n\r\n* Je mets en pièces jointes la trace effectuée avec Genesis (port 13380 à rajouter aux ports OpcUa). Le CreateMonitoredItemsRequest est le paquet 1661 (contenu dans OpcUa Service \"Expandeable Object / CreateMonitoredItemsRequest / ItemsToCreate / RequestedParameters / Filter / EventFilter / SelectClauses \" ) . Le PublishResponse correspondant à une alarme OFfNormal est le paquet 2027 (contenu dans OpcUa Service Expandeable Object / PublicshRespnse / NotificationMessage / NotificationData / [1] Ectension Object / EventNotificationLiist / Events).\r\n\r\n* J\'ai effectué des tests avec le client Integration Objects pour effectuer des tests supplémentaires. Nous ne l\'utilisons dans aucun projets. Pas de problème avec ce client. \r\n\r\n* Voici la nature du décalage sur l\'aspect visuel sur l\'IHM Genesis : \r\n\r\n!clipboard-202104150957-8zycc.png!\r\n\r\n* Je comprends que le EventType en double est un comportement anormal. Je remonte en parallèle ça à Iconics pour voir si on peut effectuer une requête sans ce comportement. \r\nJ\'ai cependant deux questions: \r\n- L\'élément indicé 1 dans la requête Genesis (indicé 18 dans la requête UaExpert) a un format différent par rapport aux autres éléments demandés. Quelle est la réaction du serveur face à cet élément? \r\n\r\n!clipboard-202104151000-74cih.png!\r\n\r\n- Le serveur ne s\'affranchit-il pas du problème de EventType demandé en double en le rajoutant 2 fois dans l\'élément de réponse?\r\n\r\n\r\nMichael \r\n','2021-04-15 10:00:39',0),(1332,557,'Issue',1,'Bonjour,\r\nje ne voie de paquet 1681 relatif à OPC UA dans la trace WS.\r\nJe n\'ai qu\'une communication sécurisé inutilisable.\r\n\r\n!clipboard-202104151452-midwb.png!\r\n\r\n\r\nPourrions nous faire un Team dans l\'AM pour clarifier ce point ?','2021-04-15 14:53:54',0),(1333,557,'Issue',432,'Bonjour M.Condemine, \r\n\r\nC\'était le paquet 1661 que j\'avais indiqué. Ce n\'est pas du tout normal qu\'il soit en mode sécure. J\'ai les paquets en clair de mon côté\r\n\r\nICONICS m\'a proposé également un appel à 15h30 pour essayer de voir côté serveur dans quel scénario le serveur n\'aime pas la requête reçu. \r\nSerait-ce possible qu\'on fasse un call avec les 3 parties? \r\n\r\nMichael','2021-04-15 14:59:23',0),(1334,557,'Issue',1,'Vous avez du manquer ma réponse par mail.\r\nUne autre fois peut être alors.','2021-04-15 16:16:10',0),(1335,557,'Issue',1,'Bonjour,\r\nj\'ai consacré plusieurs heures a étudier le problème.\r\nJe ne dispose pas de suffisamment d\'information pour avancer.\r\nJe serveur fonctionne correctement avec tous les clients à ma disposition.\r\nJe ferme la demande d\'assistance.\r\n\r\nMichel Condemine','2021-04-15 16:52:58',0),(1336,557,'Issue',432,'M. Condemine, \r\n\r\nJe suis désolé je n\'ai pas reçu de mail autres que les notifications Redmine auxquels j\'ai répondu à 14h59. On a du se rater quelque part.\r\n\r\nJe comprends que vous y avez passer beaucoup de temps et je m\'en excuse. \r\n\r\nJe comprends également que vous ne pouviez pas exploiter la trace Wireshark. Je suis à votre disposition quand vous le souhaitez à toute heure. Je peux sinon effectuer des Screenshot des paquets ou des exports en mode textuel. Le fichier Wireshark que j\'ai fourni a normalement les communications en clair\r\n\r\nAu cas ou ça peut débloquer la situation, ICONICS propose de monter une VM Genesis (Azure, sur le serveur ou sur votre machine). \r\n\r\nMichael','2021-04-15 17:35:12',0),(1337,557,'Issue',1,'Bonjour,\r\nvotre trace WS ne contient rien de plus que le screenshot ci-dessus.\r\nUn VHD generis pourrait aider à comprendre mais une trace WS serait déjà un bon début.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-15 17:57:29',0),(1338,557,'Issue',432,'Je sais que ça ne sera pas idéal pour vous dedébugger sur ma machine mais j\'ai préparé une instance du serveur en mode Debug avec Genesis connecté dessus. J\'essaye de mon côté de debugger en mettant des points d\'arrêts dans le code au moment de la construction de la notification ainsi que des PublishResponse\r\n\r\nMichael','2021-04-15 17:58:51',0),(1339,557,'Issue',1,'!clipboard-202104151800-uek53.png!\r\nCi-dessous mon mail de 15h03\r\n\r\nJe n\'ai plus de dispo avant lundi prochain\r\n\r\nMerci de me transmettre la trace WS\r\n\r\nCordialement.\r\nMichel Condemine','2021-04-15 18:00:59',0),(1340,557,'Issue',432,'Je comprends. \r\n\r\nVoici ce que je vois sur Wireshark de mon côté: \r\n!clipboard-202104151803-0taly.png!\r\n\r\n\r\nJe remets en pièce jointe la trace Wireshark. Ainsi que un pdf contenant des screenshots des deux paquets qui nous intéressent. \r\n\r\n\r\n\r\nAu cas ou ça peut éviter que je rate vos prochains mails. En toute honnêteté et sans vouloir être de mauvaise foi je n\'ai aucune trace du mail de mon côté. \r\n\r\nmon mail : michael.ejigu@inetum.world\r\nmon tel : 06 35 41 11 16 \r\n\r\nMes excuse encore pour le temps perdu de votre côté. \r\n\r\nMichael\r\n','2021-04-15 18:19:47',0),(1341,557,'Issue',1,'Je suis dispo maintenant et jusqu\'à 20h00 si vous voulez','2021-04-15 19:31:06',0),(1342,557,'Issue',432,'Trop tard? ','2021-04-15 20:02:24',0),(1343,557,'Issue',432,'N\'hésitez pas à m\'appeler si jamais au téléphone si jamais vous avez une dispo à toute heure. \r\nJe garde un œil sur mes notifs redmine jusqu\'à 21h \r\nMichael','2021-04-15 20:10:48',0),(1344,557,'Issue',432,'Bonjour, \r\n\r\nJe maintiens ma proposition d\'être à votre disponibilité à toute heure/n\'importe quel jour (avec un ping au téléphone si possible). \r\nCependant si vous avez une disponibilité claire en début de semaine prochaine, je suis également preneur d\'un call à une heure prédéterminée. \r\n\r\nMichael 06 35 41 11 16\r\n','2021-04-16 14:50:59',0),(1345,557,'Issue',1,'Bonjour,\r\naprès une session de test avec Michael il apparait que le Client OPC UA de Genesis ne passe pas les TypeDefinitionId pour tous les EventField qu\'il demande.\r\nCe paramètre est essentiel à la bonne notification .\r\nIconics devra corriger son erreur. \r\nUne adaptation du serveur est envisageable mais ne saurait être réalisé sans un financement.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-21 15:25:24',0),(1346,554,'Issue',1,'Bonjour,\r\navez vous pu tester la nouvelle version livrée ce jour ?\r\n\r\nCordialement\r\nMichel Condemine','2021-04-22 17:38:47',0),(1347,558,'Issue',1,'Bonjour,\r\nmerci de poster les logs et éventuellement la configuration complète.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-22 18:18:44',0),(1348,559,'Issue',1,'oops,\r\nje ne trouve pas les sources ?\r\nou sont ils ?\r\n\r\n\r\nCordialement\r\nMichel\r\n\r\nPS: je te préparerai l\'offre commerciale dans le bateau. ;)','2021-04-22 20:11:02',0),(1349,558,'Issue',459,'\r\nBonjour M Condemine\r\n\r\nJ\'ai réussi à corriger et faire redémarrer le serveur sans erreur, nous pouvons donc fermer ce ticket.\r\nJe vous présente mes excuses pour l\'attente de ma réponse.\r\n\r\nCordialement, \r\nAlexandre Macé ','2021-04-26 13:20:00',0),(1350,558,'Issue',1,'','2021-04-26 14:38:07',0),(1351,539,'Issue',429,'Bonjour, avez vous pu étudier ce sujet ? Merci','2021-04-26 17:58:12',0),(1352,554,'Issue',462,'Bonjour,\n\nj\'ai pu faire un petit test aujourd\'hui. (en formation hier)\nJ\'ai remarqué que les DO ne sont plus en erreur, par contre il me semble qu\'ils ne reflètent pas l\'état dans l\'automate :\nj\'ai pu forcer les états de la balise jaune ou vert sans avoir le rouge , alors que c\'est impossible dans la précédente version (1.0.4.7 , l\'automate forçant la balise à rouge).\n\n\nCordialement\nJean-Louis Muller\n\nPS : Teamviewer est installé et vous pouvez l\'utiliser.\n\n','2021-04-27 14:28:36',0),(1353,554,'Issue',1,'Bonjour, \r\nje ne comprends pas :\r\n\"j\'ai pu forcer les états de la balise jaune ou vert sans avoir le rouge\".\r\nEst ce que vous voulez dire que les écritures sur les DO fonctionnent mais pas les lectures ?\r\nQUID des MK ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-04-27 15:02:56',0),(1354,554,'Issue',462,'Bonjour,\r\nJe voulais dire que les DO semblent ne pas aller jusqu\'à l\'automate (puisque la balise rouge devrait être allumée en permanence par le programme sur le banc tests privé de toute entrées/sorties réelles).\r\nJe vais pouvoir reprendre mes essais sur la C-Line avant la fin de la semaine , j\'essayerais donc votre version avec des vraies balises en face de moi. ce sera plus simple.\r\n\r\nCordialement\r\nJean-Louis\r\n','2021-04-28 18:26:09',0),(1355,554,'Issue',1,'Bonjour,\r\nje me suis connecté à la maquette avec les ID suivant\r\nId TeamViewer : 972703004\r\nPW : tst;04oOuA\r\n\r\nPourriez vous m\'indiquer ou se trouve le serveur de test ?\r\n\r\n\r\nCordialement\r\nMichel Condemine','2021-04-29 08:00:33',0),(1356,554,'Issue',462,'Bonjour,\r\nvotre version du serveur est sous \r\nC:\\exelsius\\OpenOpcUaServer2\r\n\r\nla version C:\\exelsius\\OpenOpcUaServer est celle livrée vers fin Janvier (et utilisée que sur la SLine).\r\n\r\n\r\ndsl , je ne me connecte qu\'en fin de journée. je vais essayer de voir pourquoi les notifications ne m\'arrivent pas .\r\n\r\nBien cordialement\r\nJean-Louis\r\n\r\n','2021-04-29 17:23:27',0),(1357,557,'Issue',432,'Bonjour M. Condemine, \r\n\r\nJ\'espère que vous allez bien\r\nIconics a fait une correction. Les requêtes contiennent maintenant tous des TypeDefinitionId. \r\n\r\nLa réponse du serveur est mieux mais pas parfaite, les 3 derniers champs sont ignorés ou mal remplis : \r\n\r\n- EnabledState + Id avec un TypeDefinitionId (Identifier Numeric ) = 2782 (ConditionType) \r\n- Active State + Id avec un TypeDefinitionId (Identifier Numeric ) = 2915 (AlarmConditionType)\r\n- Acked State + Id avec un TypeDefinitionId (Identifier Numeric ) = 2881 (AcknowledgeableConditionType)\r\n\r\n\r\n\r\nQu\'en pensez vous? \r\n\r\nJe mets 2 fichiers txt contenant la requête et la levée d\'une alarme que m\'ont transmis Iconics depuis leur corrections. \r\nJe suis disponible pour en discuter demain ou en semaine prochaine selon votre disponibilité. \r\n\r\nMerci d\'avance\r\nTrès cordialement, \r\n\r\nMichael\r\n','2021-04-29 18:13:53',0),(1358,560,'Issue',1,'Bonjour,\r\nMerci pour ce retour.\r\nIl y avait une inversion entre UInt32 et Int32 dans code.\r\nJ\'ai fais la correction dans la version 0.9.1 que je viens de livrer.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-29 21:02:51',0),(1359,532,'Issue',1,'Hello,\r\nI just post a new release 1.0.5.9. It contains a fix for this issue.\r\nDuring your OOUAClientLibrary test it\'s important to use a server build with the same Stack and Sharedlib.\r\nThis is important otherwise the result will be unpredictable. \r\n\r\nRegards\r\nMichel Condemine\r\n\r\nFor share information. \r\nThis problem occurs during the renew process of the SecurityToken. It\'s related to any cipher suite. SecurityPolicy None is not impacted.','2021-04-29 22:17:53',0),(1360,539,'Issue',1,'Bonjour,\r\nje viens de réaliser des tests sur la cohabitation des UInt32 et des Float.\r\nJe ne rencontre aucun problème. J\'ai déclaré un Float et un UInt32 à la même adresse dans le PLC, 0x3ED. Si j\'écris dans l\'UInt32 la valeur reçu dans le Float est correcte.\r\nPrenons un exemple. Si j\'écris 258 dans l\'UInt32 je reçois 3.61535e-43 dans le Float. C\'est parfaitement normal.\r\nPar ailleurs le Float et l\'UInt32, déclaré en 0x3ED, sont lu dans les mots de 16bits, 0x3EE et x03EF. \r\n!clipboard-202104300939-mukyc.png!\r\nPourriez vous clarifier le problème et me fournir une configuration OOUA me permettant de le reproduire?\r\n\r\nCordialement\r\nMichel Condemine','2021-04-30 09:39:37',0),(1361,554,'Issue',1,'Bonjour,\r\nj\'ai essayé de travailler sur votre plateforme mais je constate qu\'elle est utilisée.\r\nMerci de m\'informer des créneaux de disponibilité.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-04-30 10:00:33',0),(1362,554,'Issue',1,'Bonjour,\r\nj\'ai utilisé mes 30 min pour réaliser quelques tests intéressants. \r\nJ\'ai fabriquer un configuration pour me concentrer sur les DOs. \r\nJ\'ai installé Wireshark pour capturer l\'activité.\r\nVoila ce que je constate :\r\n1- Les DO déclenche bien des lectures et la valeur des nodes OPC UA est renseignée.\r\n!clipboard-202104301044-krz0w.png!\r\n2- Lors d\'une écriture un fonction Write est invoqué puis acquitté sans erreur par le PLC\r\n!clipboard-202104301045-z6cts.png!\r\n\r\nJe ne vois donc, de Paris, rien d\'incorrecte.\r\nJe vais étudier plus en détail cette capture WS.\r\n\r\nCordialement\r\nMichel Condemine','2021-04-30 10:46:10',0),(1363,539,'Issue',459,'Bonjour M Condemine \r\n\r\nLe problème que nous rencontrons n\'est pas sur les Uint32 mais les int32(Dint).\r\n\r\nQuand nous essayons de récupérer les valeurs de l\'automate (voir les captures d\'écrans : \"valeurs automate\" et \"valeurs automate2\") sur Aviso sans passer par le serveur OPCua nous arrivons à bien récupérer toutes les valeurs, de même avec le Modscan32 (voir les captures d\'écrans : \"ModScan32\" et \"Valeurs automate sans passer par le serveur OPCua\").\r\n\r\nMais quand on passe par le serveur OPCua, on constate qu\'après un int32 si la variable est de type int32 alors nous arrivons à bien récupérer la valeur, alors que si la variable est différente d\'un int32 (int16, binaire, float, etc ...) nous n\'arrivons pas à comprendre la valeur récupérée (voir capture d\'écran : \"Valeurs automate en passant par serveur OPCua\" et \"Client OPCua\").\r\nDans l\'attente de votre réponse.\r\n\r\nCordialement, \r\nAlexandre Macé','2021-04-30 11:00:08',0),(1364,539,'Issue',1,'Bonjour,\r\nVous écrivez :\r\n\"Mais quand on passe par le serveur OPCua, on constate qu\'après un int32 si la variable est de type int32 alors nous arrivons à bien récupérer la valeur, alors que si la variable est différente d\'un int32 (int16, binaire, float, etc ...) nous n\'arrivons pas à comprendre la valeur récupérée (voir capture d\'écran : \"Valeurs automate en passant par serveur OPCua\" et \"Client OPCua\").\"\r\n\r\nJe vous invite à vous relire et à reformuler. \r\nDans l\'attente j\'étudie vos captures.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2021-04-30 11:05:35',0),(1365,539,'Issue',459,'Nous constatons qu\'il y a un problème de lecture pour les int32, mais pas pour tous les int32.\r\n\r\nComme on peut le voir sur la capture d\'écran \"Valeurs automate en passant par le serveur OPCua\" la voie 5(Volume Canal01), la voie 8(VolumeCanal02), la voie 11(VolumeCanal03)et la voie 21(reserve[Dint7]) on récupère une valeur que nous n\'arrivons pas à comprendre. \r\n\r\nAlors que pour la voie 15(reserve[Dint1]), la voie 16(reserve[Dint2]), la voie 17(reserve[Dint3]), la voie 18(reserve[Dint4]), la voie 19(reserve[Dint5]), la voie 20(reserve[Dint6])on récupère les bonnes valeurs. \r\n\r\nCordialement, \r\nAlexandre Macé','2021-04-30 11:22:56',0),(1366,539,'Issue',1,'Bonjour,\r\nj\'ai commencé à regarder votre configuration et compte tenu de ce que vous avez déclaré le VpiMdbMaster se comporte correctement.\r\nPrenons les nodes de type Int16 :\r\nNodeId Adresse PLC Type\r\nns=1;i=1948 0130000 Int16 (16bits)\r\nns=1;i=1978 0130001 Int16 (16bits)\r\nns=1;i=2008 0130002 Int16 (16bits)\r\nns=1;i=2038 0130003 Int16 (16bits)\r\nPour ces quatres premieres adresses le Vpi lit des adresses de type MOT (16bits). Vous recevez 1,2,3,4\r\nLe VPI lit dans l\'automate en adresse 1,2,3 et 4.\r\nTout va bien la déclaratrion est correcte.\r\n\r\nVous déclarez ensuite un Int32 qui occupe 2 mots de 16 bits dans la mémoire de l\'automate. \r\nNodeId Adresse PLC Type\r\nns=1;i=2068 0130005 Int32 (32bits)\r\nLe Vpi lit dans l\'automate en adresse 6 et 7. Respectivement les valeur 5 et 6. \r\nQuand il réassemble pour former un Int32 il obtient la valeur décimale 393221.\r\n\r\nEnsuite vous déclarez a nouveau un Int16\r\nNodeId Adresse PLC Type\r\nns=1;i=2098 0130006 Int16 (16bits)\r\ne Vpi lit dans l\'automate en adresse 7.\r\nIl y a ici un recouvrement de mémoire. L\'octet en adresse 7 est partagé entre les nodes ns=1;i=2068 et ns=1;i=2098.\r\nC\'est totalement incorrecte.\r\n\r\nEst ce que vous comprenez jusqu\'ici ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-04-30 11:26:37',0),(1367,539,'Issue',459,'Bonjour, \r\n\r\noui je comprends, mais pour le Int32 NodeId Adresse PLC Type ns=1;i=2068 0130005 Int32 (32bits) le VPI lit dans l\'automate l\'adresse 5 et 6 ce qui correspond seulement à la valeur 5.\r\n\r\nCordialement\r\nAlexandre Macé','2021-04-30 11:37:51',0),(1368,539,'Issue',1,'Bonjour,\r\nest ce que vous avez noté ma remarque au sujet du recouvrement ?\r\nEst ce que vous avez en tête que le Vpi utilise un adressage ZERO-Based ?\r\nSi vous lui dite de lire un Int32 en adresse 5, 1-BASED, il lit les mots (16bits) en 6 et 7.\r\nIl trouve dans ces mots de 16 bits les valeurs 5 et 6. comme je l\'ai écris précédemment : \"Quand il les réassemble pour former un Int32 il obtient la valeur décimale 393221\"\r\n\r\nCordialement\r\nMichel Condemine','2021-04-30 11:52:09',0),(1369,539,'Issue',459,'Bonjour,\r\n\r\nAprès la réunion Teams, j\'ai effectué les corrections : changement d\'adresse + passage en BIG_ENDIAN. Après quelques tests, j\'arrive à récupérer toutes mes valeurs.\r\nNous pouvons donc fermer les tickets des Int32.\r\n\r\nCordialement\r\nAlexandre Macé','2021-04-30 14:15:44',0),(1370,539,'Issue',1,'','2021-04-30 17:29:31',0),(1371,553,'Issue',1,'','2021-04-30 17:29:51',0),(1372,524,'Issue',1,'','2021-05-03 14:29:26',0),(1373,402,'Issue',1,'Certificat générés :\r\n','2021-05-05 13:24:09',0),(1374,562,'Issue',1,'Bonjour,\r\nje suis disponible ce jour, jeudi 6 mai à partir de 11h30.\r\nJe serai aussi disponible vendredi de 11 à 12h\r\n\r\nCordialement\r\nMichel Condemine','2021-05-06 11:08:49',0),(1375,562,'Issue',432,'Bonjour, \r\n\r\nMerci beaucoup, je vous envoie une invitation pour demain 11h à 12h. \r\n\r\nCordialement, \r\nMichael ','2021-05-06 11:11:51',0),(1376,563,'Issue',1,'Bonjour,\r\nLa longueur des requêtes Modbus est gérée en interne dans le code du Vpi.\r\nVous n\'avez pas à vous soucier de ce type problème. \r\nDéclarez vos TAGs. \r\nLe VpiMdbMaster calculera les blocs appropriés et réalisera la communication Modbus.\r\n\r\nCordialement\r\nMichel Condemine','2021-05-06 13:14:53',0),(1377,562,'Issue',1,'Bonjour,\r\nj\'ai utilisé votre projet pour reproduire les problèmes que vous rencontrez.\r\nIMPORT CSV\r\nVotre fichier contient des erreurs de namespace. J\'ai corrigé ces erreurs et importé. \r\nCi-dessous la configuration d\'import et le résulat de l\'import.\r\n!clipboard-202105062335-lbpdp.png!\r\n!clipboard-202105062337-y88zh.png!\r\n\r\nJ\'ai ensuite sauvegardé sans problème.\r\n\r\nIl y avait cependant une erreur dans le UANodeManager que votre configuration à mise en évidence.\r\nJ\'en ai profité pour la corriger. \r\n\r\nA suivre\r\nCordialement\r\nMichel Condemine','2021-05-06 23:38:25',0),(1378,562,'Issue',1,'Re-Bonsoir,\r\npour aller plus loin j\'ai généré à partir de l\'interface en utilisant le menu contextuel \"Instanciate\".\r\nL\'instanciation à bien fonctionné.\r\n!clipboard-202105062353-akwje.png!\r\nJ\'ai cependant corrigé un problème relatif à des types non-supportés dans OOUANodeManager. \r\n\r\nJe vais faire de la cosmétique dans cette librairie avant une nouvelle livraison.\r\nLa sauvegarde à, là aussi, bien fonctionné.\r\n\r\nAu final, j\'ai pas reproduit les problèmes que vous m\'avez décrit. Mais j\'ai corrigé trois autres problèmes en tentant de les reproduire.\r\nUn bilan très positif. Je vous remercie pour ce retour.\r\n\r\nCordialement\r\nMichel Condemine','2021-05-06 23:58:09',0),(1379,557,'Issue',1,'Réouverture pour synthèse','2021-05-07 12:01:18',0),(1380,557,'Issue',432,'Synthèse état en cours: \r\n\r\nNous avons émis l\'hypothèse que le serveur vérifie pour chaque champs de la requête CreateMonitoredItemsRequest le TypeDefinitionId. \r\n\r\nA notre dernier call, nous avons pu observer les choses suivantes sur le paquet de CreateMonitoredItemsRequest de Genesis: \r\n\r\n- un chanp EnabledState + Id avec un TypeDefinitionId (Identifier Numeric ) = 2782 (ConditionType). Pour cette classe d\'évènements il y avait bien un traitement mais à première vue on ne voyais pas le traitement du champ EnabledState(+Id) \r\n- les champs Active State + Id et Acked State + Id avec des TypeDefinitionId respectifs 2915 (AlarmConditionType) et 2881 (AcknowledgeableConditionType). Pour cette classe d\'évènements, on avait vu qu\'ils n\'étaient pas traités par le serveur. \r\n\r\nOn avait vu que UaExpert n\'avait pas les mêmes TypeDefinitionId pour ces champs. On avait regardé la norme et on penchait pour la piste que c\'était plutôt le paquet de Genesis qui était conforme à la norme. \r\n\r\nMichael\r\n\r\n\r\n\r\n','2021-05-07 17:29:00',0),(1381,565,'Issue',1,'Bonjour,\r\nIl semble y avoir une différence entre les fichiers XMI généré par EA 13,14 et 15.\r\nJ\'ai modifié un détail dans le XiMulator pour qu\'il supporte les 3 versions.\r\nMerci de télécharger la version 1.0.1.2.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-05-08 00:49:22',0),(1382,554,'Issue',462,'Bonjour ,\r\nNous avons eu une affaire prioritaire et je suis en déplacement toute la semaine prochaine.\r\nJe vais essayer de laisser la manip sous tension ce soir , en espérant que personne ne va y toucher.\r\ncette après midi, nous allons probablement faire des essais sur le même banc d\'essai, donc il n\'est pas encore dispo.\r\n\r\nDésolé de cet imprévu qui a pris tout mon temps. de mon côté, depuis UA expert je n\'ai jamais vu un seul DO à \'true\' (alors que, au moins la balise vert devrait être à true). et qu\'avec l\'ancienne version et la DLL modifiée (1.0.4.7): ça marche.\r\nle problème : la DLL modifiée \'consomme\' 6M par minute de mémory leak!\r\nvoila l\'état des lieux actuel.\r\nJe reprends contact la semaine du 24 , car dans l\'usine, la semaine prochaine, il est probable que nous n\'aurons pas internet.\r\nBien cordialement\r\nJean-Louis Muller\r\n\r\n','2021-05-12 13:29:58',0),(1383,554,'Issue',1,'Bonjour M. Muller,\r\nJ\'ai fait quelques modifications pour la prise en compte des DO et je souhaiterais en parler avec vous.\r\nIl est en effet délicat de vérifier le bon fonctionnement à distance et sans PLC en local.\r\nEst ce que nous pourrions programmer un échange quand vous serez disponible ?\r\n\r\nCordialement\r\nMichel Condemine','2021-05-12 13:39:28',0),(1384,554,'Issue',462,'Bonjour,\r\nSi il n\'y a pas besoin de Mr Subileau dans la réunion, et que ce ne sont que pour des questions \'techniques\' je suis dispo cette après midi, n\'hésitez pas à m\'appeler par teams (ou autre, comme la dernière fois). Sinon il faut le contacter aussi.\r\nBien cordialement\r\nJean-Louis Muller (pour teams jlmuller@exelsius.com)','2021-05-12 14:27:41',0),(1385,565,'Issue',432,'Bonjour, \r\n\r\nL\'erreur qui apparaissait avec le modèle Tricycle généré avec notre Entreprise Architect n\'apparait plus. \r\n\r\nNous vous ferons un retour après des essais supplémentaires avec le modèle eMotors. \r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2021-05-18 15:30:36',0),(1386,557,'Issue',432,'Bonjour M. Condemine, \r\n\r\nAurez vous avancé sur ce point? Iconics nous relance sur ce sujet. La ou les corrections qu\'il peuvent faire ne sortant en Release que très ponctuellement, ils souhaitent savoir si la dernière correction qu\'ils ont faite est suffisante pour résoudre notre problème.\r\n\r\nTrès cordialement, \r\nMichael Ejigu','2021-05-18 15:37:06',0),(1387,566,'Issue',1,'Bonjour,\r\nErreur n° 1, je pense que vous n\'avez pas compilé et copié l\'ensemble des binaires. CreateCertificates est une méthode de la classe CApplication.\r\nErreur N° 2, il semble y avoir une erreur de configuration dans le fichier XML du client. \r\n\r\nJe crois que nous avons un call a 14h. Nous pourrons en parler\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2021-05-25 11:16:44',0),(1388,566,'Issue',432,'J\'ai bien recompiler et copier les 4 binaires principaux (CoreServer, SharedLib, StackV1, XMLSaxParser). Dois-je recompiler également la ClientLib? Elle ne comporte pas de Configuration Release IPV4 mais je peux dans sa configuration lui dire d\'aller chercher les lib dans le dossier des librairies Release IPV4 si vous jugez nécessaire de la recompiler dans l\'environnement IPV4. \r\n\r\nMichael','2021-05-25 11:22:24',0),(1389,566,'Issue',1,'Quand on passe d\'IPV4 à IPV6 ou d\'IPV6 à IPV4 il convient de tout recompiler. TOUJOURS','2021-05-25 11:35:31',0),(1390,566,'Issue',432,'Pourriez vous dans ce cas s\'il vous plaît me zipper également le projet du VpiUaClient avec le Workaround de mi-avril que je le compile également dans l\'environnement ipv4? J\'aimerais tester ça avant d\'en parler avec vous tout à l\'heure. \r\n\r\n','2021-05-25 11:38:52',0),(1391,566,'Issue',1,'Je viens de faire un nouvelle livraison complète. Elle contient la base de code en cours en pré-version.','2021-05-25 11:43:18',0),(1392,566,'Issue',432,'Rebonjour M. Condemine, \r\n\r\nJe vois que malgré le fait d\'avoir sélectionné la configuration Release-IPV4, les directives de compilations pour l\'IPV4 restent grisées dans l\'environnement Visual Studio comme le montre le Screenshot suivant: \r\n\r\n!clipboard-202105251842-6rzhk.png!\r\n \r\nJe n\'arrive pas à trouver dans la configuration du projet où s\'effectue l\'affectation de la variable OPCUA_P_LISTEN_INET6 à OPCUA_CONFIG_YES ou OPCUA_CONFIG_NO pour effectuer le choix de la compilation en IPV4 ou IPV6 en fonction de la configuration choisie. Je m\'attendais à retrouver cette affectation dans la section C/C++, Préprocesseur. Est-ce que peut-être je regarde la mauvaise variable? Ou bien au mauvais endroit dans la configuration? \r\n\r\nCordialement, \r\nMichael\r\n','2021-05-25 18:46:08',0),(1393,566,'Issue',1,'Bonjour,\r\nj\'ai testé la configuration que je vous ai adressé. J\'arrive sans problème à basculer IPV4 IPV6.\r\n!clipboard-202105251858-j7zou.png!\r\n!clipboard-202105251859-nstky.png!\r\n!clipboard-202105251900-6qqm6.png!\r\nMerci de ne pas modifier les vcxproj et/ou le code.\r\n\r\nVous utilisez bien VS2017 ?\r\nVous copiez bien les sources dans un nouveau répertoire ?\r\n\r\nCordialement\r\nMichel Condemine','2021-05-25 19:00:39',0),(1394,566,'Issue',1,'Après vérification il manque dans le deliver le mot clé du préprocesseur IPV4_ONLY.\r\nJe modifie le/les vxproj du deliver et je vous livre un nouveau package.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2021-05-25 19:40:32',0),(1395,566,'Issue',432,'Bonjour, \r\n\r\nMerci beaucoup, la connexion s\'est bien établie. \r\nAuriez-vous connaissance de la raison pourquoi sur nos machines, le serveur en ipv4 n\'arrive pas à récupérer le nom de la machine sur laquelle il tourne ? Il affiche sur la console que \"getnameinfo\" n\'abouti pas et laisse le nom de machine vide sur le hostname qu\'il affiche :\r\n\r\n!clipboard-202105261024-yfaqe.png!\r\n\r\n Pensez vous que je dois rajouter cette information dans le fichier hosts? Sachant que lorsqu\'il est en ipv6, il retrouve cette information même si elle n\'est pas inscrite dans le fichier hosts. \r\n\r\n\r\nMerci encore, \r\n\r\nMichael \r\n','2021-05-26 10:27:10',0),(1396,566,'Issue',432,'A titre informatif, j\'ai résolu le problème pour le moment. Dans les propriétés de la SharedLib, Définition de préprocesseur, il y avait un virgule au lieu de point virgule avant le IPV4_ONLY. \r\n\r\nNe sachant pas si c\'est une bonne correction et ne voulant pas faire de fork comme conseillez par vous, je ne conserve pas cette modification que j\'ai faite. \r\n\r\n\r\nCordialement, \r\nMichael','2021-05-26 12:19:25',0),(1397,565,'Issue',432,'Bonjour M. Condemine, \r\n\r\nMême si le modèle n\'est pas finalisé, nous essayons de le charger avec Ximulator (version 1.0.1.2) et nous retrouvons une erreur similaire à celle que vous avez résolue (due aux différentes versions de Entreprise Architect) :\r\n\r\n!clipboard-202105271122-z1irj.png!\r\n\r\n\r\nLe Guid de l\'élément qu\'il dit ne pas trouver correspond à l\'objet ComponentType (d\'après mes recherches dans le fichier XMI). Je ne sais pas si c\'est lié à ça mais j\'ai également remarqué que l\'objet ComponentType est à un moment un attribut du datatype Component_Recipes_Datatype. \r\n\r\n\r\n\r\nJe mets en pièce jointe le fichier XMI généré avec notre version de Entreprise Architect en sélectionnant le modèle dans son entièreté. \r\n\r\nAuriez vous des idées pourquoi? Je n\'ai pas lancer la génération avec Ximulator, l\'erreur apparaît au moment du chargement du fichier XMI.\r\n\r\nTrès cordialement, \r\n\r\nMichael\r\n\r\n','2021-05-27 11:30:10',0),(1398,565,'Issue',432,'Bonjour, \r\n\r\nJe fais suite à ce point en partageant plus d\'informations. \r\nAvec cette configuration et en ayant importé la part 3, 4 et 5 des Nodesets de la Fondation dans les Nodesets du projet xprj, Ximulator crash sans information supplémentaire. \r\n\r\nMichael','2021-05-27 15:37:48',0),(1399,565,'Issue',1,'Bonjour,\r\nQuelques questions :\r\n1- Utilisez vous la version 1.0.1.8 ?\r\n2- comment procédez vous à l\'export ?\r\n- Le modèle complet ?\r\n- Un package à la fois en respectant les dépendances ?\r\n\r\nCordialement\r\nMichel Condemine ?','2021-05-27 17:01:18',0),(1400,565,'Issue',432,'Rebonjour, \r\n\r\nJ\'utilise la version 1.0.1.2 qui est la dernière qu\'on a. Pourriez vous s\'il vous plait nous fournir la plus récente sur Redmine?\r\n\r\nJ\'ai essayé le modèle entier et également le méthode un package à la fois. \r\nL\'erreur indiquée sur Ximulator apparait dans les deux scénarios. \r\n\r\nMichael','2021-05-27 17:40:39',0),(1401,565,'Issue',1,'Bonjour,\r\nJe viens de vous poster la dernière version.\r\nMerci de me faire n retour ASAP.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-05-27 18:06:49',0),(1402,565,'Issue',432,'Bonjour,\r\n\r\nL\'erreur ainsi que le crash du logiciel sont également présents avec la version 1.0.1.8 \r\n\r\nMichael','2021-05-27 18:16:52',0),(1403,565,'Issue',1,'Bonjour,\nest ce que la configuration que vous utilisez correspond aux fichiers postés dans le cadre de ce ticket ?\nAprès lecture du contenu. Il ne semble pas.\nMerci de préparer un zip contenant votre configuration de test. Je parle de celle qui provoque le \"crash\"\nCordialement\nMichel Condemine','2021-05-28 10:11:37',0),(1404,565,'Issue',432,'Bonjour,\r\n\r\nCi-joint un zip contenant le fichier XMI, les NodeSets de la fondation et un xprj que vous pouvez enlever si besoin. \r\nVersion Entreprise Architect : 15.2\r\nVersion Ximulator : 1.0.1.8\r\n\r\nMichael','2021-05-28 11:02:57',0),(1405,565,'Issue',1,'Bonjour,\r\nje viens de faire quelques tests. Il y a une erreur dans le modèle qui provoque un System.StackOverflowException. \r\nL\'erreur dans la modèle se trouve sur MachineType qui hérite de EMotorsBaseObjectType qui hérite de MachineType. \r\n!clipboard-202105281112-bs9ro.png!\r\nAu delà de ce problème dans le modèle je vais ajouter un contournement pour que XiMulator s\'adapte à cette mauvaise déclaration.\r\n\r\nCordialement\r\nMichel Condemine','2021-05-28 11:12:42',0),(1406,565,'Issue',1,'Bonjour,\r\nje viens de réaliser et de tester le contournement. Il fonctionne bien.\r\nJe vais donc clore cet incident qui contient au final deux incidents.\r\nMerci a l\'avenir de ne pas mélanger les incidents. Un ticket fermé ne dois pas être réouvert ou alimenté sans mon accord.\r\n\r\nBien cordialement\r\nMichel Condemine\r\n','2021-05-28 11:40:09',0),(1407,568,'Issue',1,'Bonjour,\r\nPourquoi écrivez vous :\"toutes les déclarations de méthodes dans NodeSet de type que j\'ai trouvé\". Les méthode sont déclaré dans dans des NodeSet d\'instances.\r\nQuestion : \" je vois que les input et output Arguments sont déclarés sous forme de ExtensionObjects. Est-ce la seule possibilité?\" OUI\r\nQuestion : \"je pose cette question pour savoir si le client OPC UA a besoin de supporter les ExtensionObjects\" Tous les clients supportent les ExtensionObject. \r\nIls les supportent plus ou moins. Ils doivent les supporter suffisamment pour appeler les méthodes.\r\n\r\nCordialement\r\nMichel Condemine','2021-06-01 11:37:28',0),(1408,567,'Issue',1,'Bonjour,\r\nXiMulator est sensible à la casse.\r\nDataType != Datatype.\r\nIl s\'attend à ce que tous les DATATYPES se terminent par DataType.\r\nJ\'ai apporté une modification pour le rendre plus tolérant.\r\nIl supporte maintenant : DataType, Datatype, datatype.\r\n\r\nCordialement\r\nMichel Condemine','2021-06-01 17:39:33',0),(1409,570,'Issue',1,'Bonjour,\r\nje vous poste la dernière version dans les minutes à venir.\r\nmerci de me faire un retour ASAP.\r\n\r\nCordialement\r\nMichel Condemine','2021-06-04 18:16:54',0),(1410,570,'Issue',432,'Merci pour la nouvelle version. \r\nMalheureusement les deux anomalies sont encore présentes. \r\n\r\nJe mets en PJ une maquette avec le ConfigManager à jour.\r\n\r\nMichael ','2021-06-04 18:37:08',0),(1411,570,'Issue',1,'Bonjour,\r\nje suis en train d\'étudier le problème.\r\nCependant il y a un problème de configuration dans votre fichier Opc.Ua.NodeSet2.Plant.xml.\r\nIl ne contient pas les URIs qu\'il devra utiliser.\r\n\r\nCordialement\r\nMichel Condemine','2021-06-04 19:13:47',0),(1412,570,'Issue',1,'Il y a un autre problème avec les fichiers que vous m\'avez envoyé.\r\nKPI_Production_Part_VariableType est présent dans Opc.Ua.NodeSet2.Shared.xml et dans Opc.Ua.NodeSet2.JobOrder.xml.\r\nPourriez vous m\'expliquer ?','2021-06-04 19:18:39',0),(1413,570,'Issue',1,'Voila, une fois ce problème corrigé la sauvegarde fonctionne bien.\r\nIl y a cependant des erreurs dans le modèle.\r\n\r\nCordialement\r\nMichel Condemine','2021-06-04 19:22:24',0),(1414,573,'Issue',1,'Bonjour,\r\nproblème identique avec SubOp_Traceability_Datatype.\r\n\r\nCordialement\r\nMichel Condemine','2021-06-04 23:44:05',0),(1415,573,'Issue',1,'Idem avec Part_Produce_Datatype\r\nA déplacer dans Shared\r\n\r\nCordialement\r\nMichel Condemine','2021-06-05 00:06:08',0),(1416,573,'Issue',1,'Idem avec Recipes_StatusDataType. A déplacer dans Shared\r\nCordialement\r\nMichel Condemine','2021-06-05 00:18:53',0),(1417,570,'Issue',432,'Bonjour M. Condemine, \r\n\r\nLa nouvelle version du Ximulator génère bien l\'objet racine qui manquait (ERP_OF_Type). \r\n\r\nAu moment de la génération de la SharedClasses, Ximulator indiquait dans son log que il s\'est arrêté à la génération du 2ème Datatype sur 49 mais en observant le fichier de Nodeset de type généré, on retrouve bien la plupart des Datatype qu\'on connait. \r\n\r\nOn important les fichiers de Nodeset de type dans le OpenOpcUaConfigManager, l\'application crash. On commentant l\'import du Nodeset de type Job Order et Nodeset d\'instance Plant, j\'ai pu observer que le crash avait lieu lors de l\'import du fichier Nodeset de type SharedClasses. \r\n\r\nJ\'ai mis en pièce jointe une maquette contenant les dossiers Ximulator et ConfigManager utilisés. \r\n\r\n\r\n\r\nEn parallèle j\'essaye d\'instancier avec le ConfigManager l\'objet KPI_ERP_OF que vous avez réussi à générer vendredi soir. \r\nJe ne sais pas pourquoi certains Datatype/VariableType sont générés en double. Est-ce de ces erreurs dans le modèle dont vous parlez ? Sommes nous d\'accords que nous réutilisons par la suite les deux Nodeset de type générés? (Autrement dit, le Nodeset de type JobOrder recopie t-il tous les types généres dans le Nodeset de type SharedClasses? ) \r\n\r\n*Avez vous dû enlever ces Datatype/VariableType générés en double pour réussir l\'instanciation? Ou bien l\'ajout des URI manquant dans le fichier Opc.Ua.NodeSet2.Plant.xml a t-il suffit? \r\n*\r\nJe sais que vous êtes occupés cette semaine, si vous avez quelques minutes pour en discuter n\'importe quand je suis preneur. \r\n\r\nMichael ','2021-06-07 11:24:14',0),(1418,570,'Issue',1,'Bonjour,\r\nIl y a en effet certaines choses à expliquer.\r\nje vous propose un échange formel dans l\'après midi.\r\nPourriez vous voir avec Christophe pour l\'organisation ?\r\n\r\nCordialement\r\nMichel Condemine','2021-06-07 11:29:05',0),(1419,570,'Issue',432,'Merci, \r\n\r\nChristophe envoie une invitation pour 13h30 si ça vous convient\r\n\r\nMichael ','2021-06-07 11:41:33',0),(1420,570,'Issue',1,'Question :\r\nEst ce que vous utilisez le eapx que j\'ai mis a votre disposition lors de la livraison du nouveau XiMulator ?','2021-06-07 11:54:06',0),(1421,570,'Issue',432,'Je n\'ai pas trouvé de fichier eapx dans la livraison XiMulator_v1.0.1.5_v1.0.2.0.zip \r\nJ\'utilise la dernière livraison de modèle de Lionel. \r\n\r\nOu peux-je trouver ce fichier eapx? Et quelle est sa spécificité? \r\n\r\nMichael','2021-06-07 11:57:42',0),(1422,570,'Issue',1,'BOnjour,\r\nune erreur d\'aiguillage a fait que la news qui vous était destinée a été postée chez EMOTORS.\r\nJe la reposte.\r\n\r\nDésolé\r\nMichel Condemine','2021-06-07 12:03:10',0),(1423,570,'Issue',432,'Avec le eapx posté sur la section News, je retrouve les mêmes messages dans le log ainsi qu\'un crash au niveau du ConfigManager','2021-06-07 12:28:21',0),(1424,572,'Issue',447,'Fait','2021-06-08 09:03:44',0),(1425,573,'Issue',447,'Fait','2021-06-08 09:04:57',0),(1426,575,'Issue',447,'Fait','2021-06-08 09:31:17',0),(1427,577,'Issue',447,'Changer ressource_Sob_Op_Type en DataType Ressource_SubOp_DataType \r\nDéplacement de ce Datatype dans le shared\r\nSuppression du lien d\'héritage avec EmotorsBaseObjectType\r\nAjout d\'un Attribut Id de la ressource','2021-06-08 09:34:52',0),(1428,581,'Issue',1,'Pour info. XiMulator détecte les datatype et les enum grâce à leur suffixe, DataType ou Enum.','2021-06-09 00:12:36',0),(1429,582,'Issue',1,'Bonjour,\r\ncomme discuté ce jour j\'ai apporté une évolution dans le ConfigManager qui corrige ce problème.\r\nA télécharger ici [[http://www.openopcua.org/redmine/attachments/1918]]\r\n\r\nCordialement\r\nMichel Condemine','2021-06-21 23:36:18',0),(1430,584,'Issue',1,'Bonjour,\r\nCi-dessous le fruit de mes tests et/ou modifications.\r\n*Issue* \r\nValue Rank et Array Dimensions pour User Datataypes de type scalaire et array incohérents (modifs manuels nécessaires pour que la variable soit décodée par le serveur)\r\n*Test*\r\nAprès vérification le problème vient du XiMulator. J’ai apporté des corrections sur ce point. \r\n*Issue*\r\nPour certains Datatype l\'index de namespace comporte un décalage (+1)\r\n*Test*\r\nRecherche dans les fichiers de types. RAS\r\n*Commentaire*\r\nPourriez-vous me fournir quelques exemples ? \r\nEst-ce qu’il s’agit de décalage à l’instanciation ou dans les fichiers de types générés par XiMulator ?\r\n*Issue*\r\nAccessLevel est toujours égal à 0.\r\n*Test*\r\n• Si le fichier nodeset contient un AccessLevel/UserAccessLevel > 0 la valeur sauvegardée est >0 et correspond à la valeur chargée.\r\n• Si je crée une nouvelle node. AccessLevel/UserAccessLevel par défaut est ReadOrWrite. Si je sauvegarde le fichier contient AccessLevel=\"03\" UserAccessLevel=\"03\"\r\n*Commentaire*\r\nPourriez-vous préciser les scénaris d\'erreur.\r\n*Issue*\r\nLe HasTypeDefinition n\'est pas raccordé. Lorsqu\'on le raccorde à travers l\'IHM on a une double référence en IsForward=true et IsForward=false.\r\n*Test*\r\nSi je créé un node en l\'instanciant. La référence HasTypeDefinition existe pour le niveau instancié mais pas pour les sous-objets.\r\nSi je réalise un ajout manuel je ne constate pas de double référence. Peut-être car mon fichier de type est verrouillé.\r\n*Commentaire*\r\nJ’ai corrigé un bug sur le verrouillage des fichiers dans l’OOUAConfigManager.\r\n\r\nJe vous prépare une nouvelle livraison du XiMulator et du l\'OOUAConfigManager.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-06-24 09:17:31',0),(1431,584,'Issue',432,'\r\n*Issue*\r\nPour certains Datatype l\'index de namespace comporte un décalage (+1)\r\n\r\nLe problème a lieu lorsqu\'on instancie des variables de type datatype. Lorsque un Machinetype est instancié par exemple, dans le fichiers de nodeset d\'instances, au niveau des attributs Datatype des Variables en dessous de l\'objet MachineType, l\'index de namespace mis à un décalage par rapport aux URIs déclarés dans ce fichier nodeset. \r\n\r\n*Issue*\r\nAccessLevel est toujours égal à 0.\r\n\r\nMes observations sont les suivantes. \r\nIl y a deux scénarios : \r\n- L\'ObjectType correspond à un ObjectType déclaré dans le modèle Entreprise Architect. Les variables en dessous ont un AccesLevel =1. \r\n- La VariableType et ses sous Variables viennent de la mise à plat d\'un Datatype. Ces variables n\'ont pas de AccessLevel en attribut. \r\n\r\nDans les deux cas, lorsqu\'on instancie (par IHM du ConfigManager) ces variables, j\'obtiens un AccessLevel =00 que je change ensuite manuellement. \r\n\r\n\r\n*Issue*\r\nLe HasTypeDefinition n\'est pas raccordé. Lorsqu\'on le raccorde à travers l\'IHM on a une double référence en IsForward=true et IsForward=false.\r\n\r\nJ\'avais remarqué la double référence mais en réeffectuant des test, elle ne revient plus. ça doit être une mauvaise manip, je vous remonte le point si l\'issue revient. \r\n\r\n\r\nJe vous fait un retour sur le Ximulator dès que possible. \r\n\r\n\r\nTrès cordialement,\r\nMichael\r\n','2021-06-24 11:22:03',0),(1432,584,'Issue',1,'Attention.\r\nIl est indispensable d\'utiliser le XiMulator et l\'OOUAConfigManager postés ce matin.\r\nIl vous faut donc régénérer le modèle et refabriquer la maquette from scratch.\r\n\r\nJ\'attends vos retour ASAP\r\n\r\nCordialement\r\nMichel Condemine','2021-06-24 11:39:21',0),(1433,583,'Issue',432,'Bonjour,\r\n\r\n\r\nLe problème semble être résolu dans la version XiMulator_v1.0.1.7_v1.0.2.4.zip\r\n\r\nMerci beaucoup, \r\n\r\nMichael ','2021-06-28 10:05:44',0),(1434,583,'Issue',1,'Je ferme l\'incident puisqu\'il semble résolu.\r\n','2021-06-28 11:20:47',0),(1435,402,'Issue',1,'Bonjour,\r\nLe certificat ADP sp402sitycouae1.pfx fonctionne bien pour une connexion sécurisé Basic256Sha256.\r\nCependant le serveur et le PC doivent être configuré conformément aux informations contenues dans le certificat.\r\n1- le nom du serveur (ServerName) dans le ficher oouaprj doit être sp402sitycouae1\r\n!clipboard-202106301319-foq2n.png!\r\n\r\n2- Le nom de la machine doit correspondre au nom indiqué dans le certificat ici sp402sitycouae1 ou sp402sitycouae1.prod.adp.fr\r\n!clipboard-202106301321-unq8m.png!\r\n\r\nCordialement\r\nMichel Condemine','2021-06-30 13:21:50',0),(1436,586,'Issue',432,'J\'ai pu voir en testant que la structure Vpi_DateTime est déjà la forme encodée d\'une horodate. Vous pouvez donc ignorer la question précédente.\r\n\r\nDésolé du dérangement, \r\n\r\nMichael ','2021-07-02 17:27:07',0),(1437,586,'Issue',1,'Bonjour,\r\nMerci de fermer un incident quand nécessaire.\r\n\r\nCordialement\r\nMichel Condemine','2021-07-02 17:29:17',0),(1438,587,'Issue',1,'Bonjour,\r\nce problème est corrigé dans la version 0.0.1.1 du VfiPqSql.\r\nCordialement\r\nMichel Condemine','2021-07-19 18:29:51',0),(1439,588,'Issue',1,'Bonjour,\r\npourriez vous me fournir une configuration que mette en évidence le problème ?\r\nLa version actuelle du OOUACOnfigManager est la 0.9.6.\r\nJe la post sur le Redmine immédiatement.\r\n\r\nCordialement\r\nMichel Condemine','2021-07-19 18:32:12',0),(1440,588,'Issue',459,'Bonjour M Condemine, \r\n\r\nVous trouverez en pièce jointe la configuration du projet et les 5 fichiers csv.\r\nDans l\'attente de votre réponse. \r\n\r\nCordialement, \r\nAlexandre Macé\r\n','2021-07-20 09:55:39',0),(1441,588,'Issue',1,'Bonjour,\r\nest ce que vous avez testé avec la version 0.0.9.6 de l\'OOUAConfigManager posté hier ?\r\n\r\nCordialement\r\nMichel Condemine','2021-07-20 11:23:57',0),(1442,588,'Issue',459,'Bonjour, \r\n\r\nOui je j\'ai testé et je rencontre le même problème.\r\n\r\nCordialement, \r\nAlexandre Macé','2021-07-20 11:34:01',0),(1443,588,'Issue',1,'Bonjour,\r\npourriez vous m\'indiquer la procédure step by step permettant de reproduire votre problème ?\r\n\r\nCordialement\r\nMichel Condemine','2021-07-20 15:01:47',0),(1444,588,'Issue',459,'Bonjour, \r\n\r\nImportation d\'un des fichiers csv que j\'affecte à un UaObjet (DB30,DB31,...,DB34)une fois tous les tags du fichier csv sélectionnés j\'importe et le ConfigManager se ferme tout seul. Il peut se fermer au 1er fichier csv que j\'importe comme au 5ème. \r\n\r\nCordialement, \r\nAlexandre Macé','2021-07-20 15:08:05',0),(1445,588,'Issue',459,'Bonjour M Condemine, \r\n\r\nJe me permets de revenir vers vous pour savoir si vous avez eu le temps de regarder ce qui n\'allait pas dans la configuration du projet.\r\nDans l\'attente de votre réponse.\r\n\r\nCordialement, \r\nAlexandre Macé','2021-07-21 17:16:22',0),(1446,588,'Issue',1,'Bonjour,\r\nle problème est corrigé dans la version 0.0.9.7 publié ce jour.\r\nCordialement\r\nMichel Condemine','2021-07-22 10:43:49',0),(1447,588,'Issue',1,'','2021-07-22 10:44:08',0),(1448,588,'Issue',1,'Fixed on 7-22-2021','2021-07-22 11:17:41',0),(1449,589,'Issue',1,'Bonjour,\r\nune première remarque avant que je n\'investigue plus avant votre retour.\r\nLes nodeId s\'exprime sous la forme suivante : ns=<namespaceindex>;<type>=<value> cf OPC UA 1.0.4 Part 6 § 5.3.1.10\r\nEn conséquence ns=http://Inetum.com/eMotors/Instances/Tremery/ERPExchange;i=17 est une syntaxe incorrecte.\r\n\r\nCordialement\r\nMichel Condemine','2021-07-27 16:09:25',0),(1450,589,'Issue',432,'Bonjour, \r\n\r\nJe viens de retester en remplaçant le i= par un s=\r\nJ\'ai le même symptôme. Pour info, le retour de l\'outil est qu\'il n\'arrive pas à résoudre le nœud père (la colonne Parent). \r\n\r\nCordialement, \r\n\r\nEjigu Michael ','2021-07-27 16:27:21',0),(1451,589,'Issue',1,'Micheal,\r\nle namespace index ne doit pas etre exprimé sous forme de chaine. Il s\'agit d\'un index.\r\nns=http://Inetum.com/eMotors/Instances/Tremery/ERPExchange est incorrect. \r\n\r\nCordialement\r\nMichel Condemine','2021-07-27 16:37:02',0),(1452,589,'Issue',432,'Si je comprend bien la norme du coup, pas possible d\'indiquer les namespace index sous forme de l\'intitulé String c\'est bien ça? Si la réponse est oui, veuillez s\'il vous plaît ignorer le point 4 du ticket \r\n\r\n\r\nMerci pour la clarification, \r\n\r\nMichael','2021-07-27 16:53:59',0),(1453,589,'Issue',1,'Bonjour,\r\nje viens de corriger le 589.5\r\nLa fonction d\'import support maintenant les types suivants :\r\nBoolean, Byte, SByte, Int16, UInt16, Int32, UInt32, Float, Double, String.\r\n\r\nCordialament\r\nMichel Condemine','2021-08-02 11:15:51',0),(1454,589,'Issue',1,'Bonjour,\r\nj\'ai réglé l\'ensemble des points rapportés dans ce ticket :\r\n589.1 : Cette fonctionnalité n\'était pas supporté dans le version 0.0.9.7. Les nodes parents et enfants devaient se trouver dans le même namespace. L\'OOUAConfigManager sait maintenant retrouver des parent dans des namespaces différents.\r\n589.2 Je n\'ai pas reproduit de crash. L\'OOUAConfigManager ne gère que les vecteurs. L\'ArraySize représente le nombre d\'éléments dans un vecteur. \r\nArraySize= 0 ou vide génère un scalaire\r\nArraySize>0 génère un vecteur de ArraySize éléments.\r\n589.3 Deux problèmes imbriqués ici. \r\n1- le namespace index. Réglé avec le 589.1\r\n2- l\'identifier. L\'OOUAConfigManager ne tenait pas compte de la nodeclass lors de la recherche en utilisant le browseName. Par exemple ERP_OF_Datatype est présent dans l\'AS en tant que UAVariable et en tant que UADataType. j\'ai corrigé l\'OOUAConfigManager pour qu\'il prenne en compte la nodeclass de manière approprié.\r\n\r\nLa version 0.0.9.8 sera livrée sous dans les jours qui viennent.\r\n\r\nCordialement\r\nMichel Condemine','2021-08-04 17:49:13',0),(1455,584,'Issue',1,'Bonjour,\r\nMerci de refaire les tests avec le nouveau XiMulator et avec l\'OOUAConfigManager 0.0.9.8\r\n\r\nCordialement\r\nMichel Condemine','2021-08-04 17:51:29',0),(1456,578,'Issue',1,'Merci d\'utiliser la version XiMulator_v1.0.1.9_v1.0.2.7','2021-08-04 17:52:56',0),(1457,449,'Issue',1,'','2021-08-04 17:53:19',0),(1458,463,'Issue',1,'','2021-08-04 17:53:52',0),(1459,465,'Issue',1,'Ou en est-on avec ce ticket ?','2021-08-04 17:55:02',0),(1460,478,'Issue',1,'','2021-08-04 17:55:37',0),(1461,482,'Issue',1,'','2021-08-04 17:56:10',0),(1462,561,'Issue',1,'Bonjour Christophe,\r\nque fait on de ce ticket ?\r\n\r\nCordialement\r\nMichel Condemine','2021-08-04 17:59:40',0),(1463,564,'Issue',1,'Bonjour,\r\nil s\'agit d\'une évolution qui pourra être prise en compte dans le cadre d\'un sponsoring EMOTORS et/ou INETUM.\r\n\r\nCordialement\r\nMichel Condemine','2021-08-04 18:01:28',0),(1464,566,'Issue',1,'','2021-08-04 18:03:17',0),(1465,569,'Issue',1,'Fixed avec XiMulator_v1.0.1.9_v1.0.2.7.\r\nMerci de confirmer','2021-08-04 18:04:45',0),(1466,570,'Issue',1,'','2021-08-04 18:06:42',0),(1467,576,'Issue',1,'Bonjour,\r\nj\'ai testé avec l\'OOUAConfigManager 0.0.9.8. Je charge cette configuration sans le moindre problème.\r\nJe ferme l\'incident.\r\n\r\nCordialement\r\nMichel Condemine','2021-08-04 18:10:50',0),(1468,592,'Issue',447,'Après un test un peu plus poussé, la convertion tableau de byte vers string. Ne fonctionne pas correctement.\r\nAprès un certain temps l\'erreur BadMissMatch revient ','2021-08-10 17:07:05',0),(1469,591,'Issue',1,'Bonjour,\r\nj\'ai travaillé sur une maquette utilisant des DataTypes différents mais comparables aux DataTypes EMotors.\r\nL\'agrégation des UDT et des tableaux d\'UDT se passent correctement.\r\nJ\'ai testé le flux montant (graine vers agrégateur).\r\n* Est ce que dans votre maquette les flux montant fonctionnent correctement ?\r\n* Est ce que vous provoquer un crash lors d\'un flux descendant ?\r\n\r\nCordialement\r\nMichel Condemine','2021-08-12 11:48:59',0),(1470,591,'Issue',432,'Bonjour, \r\n\r\nLe flux montant fonctionne. \r\nFlux descendant, on a bien un crash qui est provoqué. \r\n\r\nCordialement, \r\n\r\nMichael ','2021-08-12 12:09:48',0),(1471,591,'Issue',1,'Bonjour,\r\nJ\'ai continué les tests avec une écriture sur un UDT scalaire (flux descendant).\r\nJe n\'ai rencontré aucun problème. \r\nRencontrez vous des problèmes avec ce scénario ?\r\n\r\nCordialement\r\nMichel Condemine','2021-08-12 13:54:44',0),(1472,591,'Issue',432,'Rebonjour, \r\n\r\nJe viens de faire le test avec un UDT scalaire, il n\'y a pas de crash \r\n\r\nMichael ','2021-08-12 14:28:05',0),(1473,591,'Issue',1,'Bonjour,\r\nj\'ai finalisé les tests et adaptations en configuration automatique.\r\nLe serveur et le VpiUaClient se comportent parfaitement, pour les flux montants et descendants sur les UDTs de type scalaire et les UDTs de type tableau.\r\nJe ne pense pas qu\'il faudra refaire les tests en configuration manuelle.\r\nJe vais vérifier le consommation de mémoire et vous livrerai la 1.0.6.0 ASAP\r\n\r\nCordialement\r\nMichel Condemine','2021-08-13 10:22:41',0),(1474,594,'Issue',1,'Bonjour,\r\nla désactivation de la trace est expliquée dans le §3.2.2.3 Trace du la documentation du serveur.\r\nCependant votre call stack semble montrer un problème dans la trace du Vpi.\r\nVous pouvez désactiver cette trace en utilisant le paramètre \r\n*TRACE_LEVEL NONE*\r\nà insérer dans le fichier complémentaire de configuration (DAT)\r\nPourriez m\'indiquer le n° de ligne associé dans la callback OnNotificationMessage.\r\n\r\nCordialement\r\nMichel Condemine','2021-08-13 21:02:29',0),(1475,594,'Issue',432,'Bonjour, \r\n\r\nC\'est la ligne 491\r\n\r\nCordialement, \r\n\r\nMichael ','2021-08-16 08:13:24',0),(1476,593,'Issue',1,'Bonjour Lionel,\r\nj\'ai fabriqué une configuration en utilisant le fichier TestPLCSIM.PLC_1.OPCUA1.xml.\r\nLe fichier se charge sans problème dans le serveur OOUA. \r\nPourriez vous m\'indiquer ou se trouve les nodes correspondant aux dataTypes à modifier ?\r\n\r\nCordialement\r\nMichel Condemine','2021-08-16 19:23:20',0),(1477,592,'Issue',1,'Bonjour,\r\nje viens de tester et d\'améliorer le comportement du serveur et du VpiUaClient pour prendre en compte cet UDT Siemens.\r\nJe change le tracker pour EVOLUTION vs ANOMALIE. \r\n\r\nLa livraison sera faite la semaine prochaine.\r\n\r\nCordialement\r\nMichel Condemine','2021-08-19 14:46:55',0),(1478,593,'Issue',1,'Bonjour,\r\nla nouvelle version du VpiUaClient et du serveur supportent ces conversions.\r\nAttention : J\'ai réalisé le test en configuration manuelle. Il faudrait réaliser d\'autres tests en configuration automatique.\r\n\r\nCordialement\r\nMichel Condemine','2021-08-19 14:49:06',0),(1479,585,'Issue',1,'','2021-08-19 14:55:03',0),(1480,594,'Issue',1,'','2021-08-20 16:34:00',0),(1481,557,'Issue',1,'Bonjour,\r\nje viens de livrer une version des binaires destiné à valider le comportement avec Genesis.\r\nCette version est disponible ici : [[http://www.openopcua.org/redmine/attachments/2001]]\r\nMerci de m\'informer de son comportement ASAP\r\n\r\nCordialement\r\nMichel Condemine','2021-08-23 18:52:09',0),(1482,597,'Issue',1,'L\'ensemble, serveur + Vpi ont été corrigé en conséquence dans la livraison à venir.','2021-08-25 17:32:47',0),(1483,594,'Issue',1,'Voir corrections dans les binaires de la livraison 1.0.6.0 du 30/08/2021.\r\nCordialement\r\nMichel Condemine','2021-08-30 18:09:29',0),(1484,465,'Issue',1,'A défaut de réponse je ferme le ticket','2021-08-30 18:10:08',0),(1485,557,'Issue',1,'','2021-08-30 18:10:53',0),(1486,561,'Issue',1,'','2021-08-30 18:11:23',0),(1487,597,'Issue',432,'Bonjour M. Condemine, \r\n\r\nNous avons pu tester les nouveaux binaires. \r\n\r\nLa communication VpiErp et VpiPlant est bonne\r\nLa communication VpiPlant et VpiUaClient est bonne\r\n\r\nIl semble cependant y avoir un problème au niveau du VpiUaClient : Une fois que la donnée (de type tableau de UserDatatype) est descendue au niveau du Serveur Line, le Serveur Line n\'arrive pas à la décoder \r\n\r\nCôté serveur Plant : \r\n!clipboard-202109021058-zreqv.png!\r\n \r\nCôté serveur Line : \r\n\r\n!clipboard-202109021058-hmwx9.png!\r\n\r\n\r\nLe VpiUaClient descend-il bien le TypeId ? \r\n\r\nPour info, les deux serveurs ont les même NodeSet de Type et le VpiLine est désactivé au niveau du ServeurLine. \r\n\r\nDe plus pour tester la partie Trace, il nous faudrait les binaires en IPV4 (notre simulateur PLCSIM se trouve sur des VM en IPV4) \r\n\r\nCordialement, \r\n\r\nMichael \r\n\r\n','2021-09-02 11:03:54',0),(1488,592,'Issue',447,'Test réalisé ce Jeudi 03/09/21 : Résultat OK','2021-09-03 08:31:23',0),(1489,593,'Issue',447,'Test réalisé ce jeudi 03/09/21:\r\nrésultat OK pour \r\n* Int16 Uint16\r\n* Int32 Uint32\r\n\r\nEn revanche nous avons une erreur pour la conversion Double vers Float (Voir photo ci-jointe)\r\n\r\nJe propose de profiter du rituel de ce vendredi pour en discuter et de faire un partage d\'écran de notre configuration\r\n\r\nLionel Claudel','2021-09-03 08:48:46',0),(1490,594,'Issue',432,'Bonjour M. Condemine, \r\n\r\nConcernant ce ticket, avec les nouveaux binaires, le problème de crash n\'a plus lieu. Nous vous tenons au courant si jamais il revient. \r\n\r\nCependant on se retrouve après un weekend d\'exécution avec un fichier de log supérieur à 1Go au niveau du VpiUaClient malgré avoir marqué None dans le fichier .dat. \r\n\r\nLes messages dans le log sont de la catégorie SERVER_ERROR\r\n\r\n!clipboard-202109131349-zzeyl.png!\r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n','2021-09-13 13:50:59',0),(1491,597,'Issue',432,'Bonjour M. Condemine, \r\n\r\nJ\'ai fait des tests supplémentaires sur les UDT sens descendant et le VpiUaClient. \r\n\r\nContexte: \r\n\r\nServeur Plant avec VpiPlant et VpiUaClient\r\nServeur Line avec VpiLine \r\nVpiUaClient en mode manuel\r\n\r\nTest numéro 1: \r\n\r\n* Pas de UDT : la synchronisation se passe bien. \r\n\r\n\r\nTest numéro 2 \r\n\r\n* UDT de type scalaire, VpiLine désactivé ou tag fichier Subsystem VpiLine commenté : synchronisation correcte par le VpiUaClient. Le UDT est décodable à travers UaExpert au niveau du Serveur Ligne\r\n* UDT de type scalaire, VpiLine activé: pas de synchronisation par le VpiUaClient sur aucun noeud\r\n\r\n\r\nTest numéro 3 : \r\n\r\n* UDT de type tableau, VpiLine activé : les UDT ne sont pas décodés par UaExpert au niveau du serveur Ligne et le VpiLine n\'est pas notifié des modifications sur le tableau de UDT\r\n* UDT de type tableau, VpiLine désactivé : les UDT ne sont pas décodés par UaExpert au niveau du serveur Ligne\r\n\r\n\r\nAvez vous pu avancer sur les tests de votre côté? \r\nEst-ce que vous préférez j\'ouvre un nouveau ticket pour cette problématique? \r\nJe suis disponible toute cette semaine à votre convenance si besoin \r\n\r\nCordialement, \r\n\r\nMichael','2021-09-13 15:37:54',0),(1492,557,'Issue',432,'Bonjour M. Condemine, \r\n\r\nSuite à de nombreux échanges avec Iconics, ils ont remonté le point suivant :\r\n\r\nsur désactivation de l\'alarme, il y a un message au niveau du log du client UaExpert: \r\n\r\n!clipboard-202109131757-t84mw.png!\r\n\r\n\r\nNous leur avons indiqué de continuer à investiguer, mais on voulait vous remonter ce point en parallèle. Qu\'en pensez vous? Est-ce que ça peut être lié au problème de réception/affichage par Genesis? \r\n\r\n\r\n','2021-09-13 18:01:09',0),(1493,597,'Issue',1,'Merci d\'ouvrir un nouveau ticket.\r\n','2021-09-14 18:48:34',0),(1494,597,'Issue',1,'Bonjour,\r\nje viens de faire le test avec des UDTs un scalaire et un array .\r\nMontant et descendant. L\'ensemble fonctionne bien.\r\nConfig : \r\n!clipboard-202109142219-cstc6.png!\r\nServeur graine avec UDT scalaire et UDT array\r\nInjection valeur UDT scalaire et array dans serveur graine\r\nRéception dans serveur Agrégateur \r\nModification dans serveur agrégateur avec UAExpert\r\n!clipboard-202109142221-o14rf.png!\r\nLe valeur sont propagé par le VpiUaClient dans serveur graine.\r\n!clipboard-202109142222-bqq3q.png!\r\n\r\nParlons en lors d\'un call.\r\nCordialement\r\nMichel Condemine','2021-09-14 22:23:03',0),(1495,557,'Issue',1,'Bonjour,\r\nje pense que même s\'il y a un problème avec la numérotation des séquences et cela n\'est pas certain. Cela n\'impacte en rien le problème initial d\'affichage des alarmes.\r\nEst ce que l\'on pourrait avec leur retour sur ce sujet ?\r\n\r\nCordialement\r\nMichel Condemine','2021-09-16 15:18:26',0),(1496,598,'Issue',1,'Nouvelle version livrée','2021-09-19 15:52:55',0),(1497,600,'Issue',1,'Bonjour,\r\nEncore une fois merci de pas mettre plusieurs problème dans un même ticket.\r\nPour le premier \"problème\". \r\nVérifiez la déclaration d\'OPNumber. Je ne pense pas qu\'il s\'agisse d\'une String mais d\'un tableau de CHAR.\r\n!clipboard-202109191755-ou9in.png!\r\nIl en est peut être de même pour les autres Nodes. J\'ai fait une modification à la demande d\'EMOTORS afin que le VpiUaClient supporte certaines conversions.\r\nCes conversions comprennent CHAR[x] --> String\r\n\r\nDeuxième \"problème\"\r\nComme indiqué le VpiUaClient a évolué. Il faut sans doute revoir vos fichiers SubSystem.\r\n\r\nCordialement\r\nMichel Condemine','2021-09-19 17:56:50',0),(1498,600,'Issue',432,'Rebonjour, \r\n\r\nL\'OPNumber est une sous partie d\'un UDT au niveau du PLCSIM. Il semble que cette sous partie de l\'UDT est aussi de type String. On devrait donc être sur un mapping de type String à String \r\nAvec les vraies lignes, il me semble que le mapping va être entre un String au niveau du serveur Line et un tableau de bytes au niveau FB. \r\n\r\n\r\nAuriez-vous une disponibilité lundi ou mardi pour discuter des deux points de ce ticket? \r\n\r\nCordialement, \r\n\r\nMichael ','2021-09-19 18:14:59',0),(1499,600,'Issue',1,'Bonjour,\r\nOn peut en parler mardi après 17h. Mais je vous invite à voir avec Lionel avant.\r\nL\'OPNumber est un tableau de CHAR dans PLCSim et donc certainement dans les lignes.\r\nSi vous déclarez un String dans le SubSystem alors qu\'il s\'agit d\'un tableau de CHAR (UDT Siemens) cela ne fonctionnera pas. \r\nCela provoquera une erreur 0x80ab0000 = OpcUa_BadInvalidArgument. \r\n\r\nCordialement\r\nMichel Condemine','2021-09-19 18:23:17',0),(1500,600,'Issue',432,'Bonjour, \r\n\r\n\r\nVeuillez s\'il vous plaît fermer ce ticket. Vos éléments de réponse ont permis de résoudre le problème \r\n\r\nCordialement, \r\n\r\nMichael','2021-09-21 11:49:37',0),(1501,599,'Issue',432,'Bonjour,\r\n\r\n\r\nTicket résolu pendant le call hier. \r\n\r\nJ\'ouvre 2 nouveaux tickets pour les points non bloquants relevés hier, en priorité basse\r\n\r\nCordialement, \r\n\r\nMichael','2021-09-21 11:51:11',0),(1502,600,'Issue',1,'','2021-09-21 11:52:13',0),(1503,599,'Issue',1,'','2021-09-21 11:52:51',0),(1504,604,'Issue',1,'Bonjour,\r\nje note de nombreuses erreurs dans le fichier log du serveur.\r\nIl serait bien de les supprimer en modifiant les nodeset.\r\nIl y a aussi une erreur assez grave lors de l\'ouverture du port par le serveur\r\n2021-09-23T09:30:46.000Z SERVER_ERROR Critical error>Could not open the Binary endpoint. opc.tcp://localhost.localdomain:1805/OpenOpcUaConfigManager hr=0x80050000 \r\n\r\nPouvez vous : \r\n* joindre vos fichiers Nodeset\r\n* Éteindre votre HW et relancer le serveur\r\n* m\'adresser de nouveaux fichier log.\r\n\r\nCordialement\r\nMichel Condemine','2021-09-23 13:24:35',0),(1505,604,'Issue',1,'','2021-09-23 13:25:07',0),(1506,605,'Issue',1,'Bonjour,\r\nmerci pour la vidéo elle permet de mieux cerner le problème.\r\nJe pense que des variables doivent être partagées R/W entre les deux Vpis.\r\nPourriez vous m\'adresser votre configuration que je regarde.\r\n\r\nCordialement\r\nMichel Codnemine','2021-09-23 13:39:14',0),(1507,604,'Issue',424,'Pour l\'instant tous les tests réalisés ont été fait avec le DemoMqttPublisher que vous nous avez fourni.\r\nJe n\'utilise pas encore les fichiers config de notre machine. Ce sont ces fichiers que vous voulez?\r\n\r\nConcernant l\'erreur grave que vous avez mentionnée, elle se produit uniquement lorsque je relance le serveur après un crash.\r\nJ\'ai redémarré la machine et relancé le serveur et on a le message suivant avant que se produise le seg fault:\r\n2021-09-23T13:10:43.000Z SERVER_ERROR Server Endpoint open. It\'s now listening at opc.tcp://localhost.localdomain:1805/OpenOpcUaConfigManager with Binary Encoder','2021-09-23 15:24:55',0),(1508,557,'Issue',1,'Bonjour,\r\nFrancois Baudet m\'a contacté pour échanger sur ce problème.\r\nSuite à notre échange \"non-technique\". \r\nIl m\'a fait parvenir l\'analyse de son équipe celle-ci semble mettre en cause le serveur OOUA. ATTENTION ON NE PARLE PAS DES N° DE SEQUENCE\r\nJ\'avais compris de votre analyse des traces Wireshark que le serveur OOUA transmettait les bons EventField et dans le bon ordre.\r\nD\'après leur analyse ce n\'est pas le cas.\r\nEn fait, je vous ai livré une version le 23 aout et je n\'ai toujours pas votre retour.\r\n!clipboard-202109231838-txgqv.png!\r\n \r\nIl me faut une trace Wireshark réalisé avec Genesis et la dernière version du serveur.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-09-23 18:42:51',0),(1509,557,'Issue',432,'Bonjour M. Condemine, \r\n\r\n\r\n\r\nCi joint les traces Wireshark et certaines informations sur les traces/retours d\'ICONICS\r\n\r\n1) Logs au sein de UaExpert indiquant que les numéros de séquences sont discordants sur les paquets de tombée d\'alarmes (uniquement) : \r\n\r\n!clipboard-202109241418-jezpy.png!\r\n\r\n\r\n2) Logs au sein de Genesis reportés par ICONICS : \r\n\r\n!clipboard-202109241420-7xj1t.png!\r\n\r\nLes erreurs niveau 800 sont générées toutes les 30s\r\nLes erreurs niveau 700 sont générées dès que j’active l’alarme du serveur OPCUA en passant le tag à 1.\r\n\r\n\r\n3) Sur les traces Wireshark, j\'ai pu retrouver suite à chaque souscription 1 (et un seul) premier paquet de Notification qui ne contient pas le bon nombre de champs. Et sur ce premier paquet tout les champs sont nuls. (Ce paquet m\'avait échappé lors de mes premières analyses). Cette première notification arrive toute seule (c\'est à dire après la souscription, sans avoir fait bougé la variable surveillée)\r\nLes informations sur ce premier paquet sont présent dans un fichier txt dans le zip mis en PJ \r\n\r\n4) Sur les paquets suivants de notifications, le nombre de champ est correct, mais certains champs semblent mal alimentés et pas supportés par le serveur. La liste des champs n\'est pas la même sur mes tests et ceux de ICONICS. Je liste donc ici les champs \"mal alimentés\" dans mes traces ET ceux de ICONICS : \r\n\r\na) \r\nPour ce champ j\'ai demandé à ICONICS quel est la réponse attendue car pas assez d\'informations sur la demande\r\nChamp demandé : \r\n Type Definition Id ns=0 i=2782\r\n Qualified Name aucun\r\n\r\nChamp reçu \r\n Type: NodeId\r\n Valeur ns=3 i=1\r\n\r\nb) \r\nChamp demandé : \r\n Type Definition Id ns=0 i=2915\r\n Qualified Name Active State + Transition Time \r\n\r\nChamp reçu \r\n Type: Datetime\r\n Valeur No time specified\r\n\r\nc) \r\nChamp demandé : \r\n Type Definition Id ns=0 i=2782\r\n Qualified Name EnabledState + Id \r\n\r\nChamp reçu \r\n Type: NodeId\r\n Valeur ns=3 i=1\r\nChamp attendu d\'après ICONICS : Boolean \r\n\r\nd) \r\nChamp demandé : \r\n Type Definition Id ns=0 i=2782\r\n Qualified Name Quality\r\n\r\nChamp reçu \r\n Type: NodeId\r\n Valeur ns=3 i=1\r\n\r\nChamp attendu d\'après ICONICS : un Status code\r\ne) \r\nChamp demandé : \r\n Type Definition Id ns=0 i=2782\r\n Qualified Name ConditionName\r\n\r\nChamp reçu \r\n Type: NodeId\r\n Valeur ns=3 i=1\r\n\r\nChamp attendu d\'après ICONICS : un string\r\n\r\nf) \r\nChamp demandé : \r\n Type Definition Id ns=0 i=2782\r\n Qualified Name ConditionClassName\r\n\r\nChamp reçu \r\n Type: NodeId\r\n Valeur ns=3 i=1\r\n\r\nChamp attendu d\'après ICONICS : Non précisé\r\ng) \r\nChamp demandé : \r\n Type Definition Id ns=0 i=2881\r\n Qualified Name EnabledState\r\n\r\nChamp reçu \r\n Type: Null\r\n Valeur Pas de valeur\r\n\r\nChamp attendu d\'après ICONICS : un Status code\r\n\r\n\r\n\r\nCi-joint un zip contenant mes 3 traces (2 du 25/08 et une d\'aujourd\'hui) ainsi qu\'un fichier txt contenant les informations de décodage et les numéros de paquets intéressants. \r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n','2021-09-24 15:10:13',0),(1510,604,'Issue',424,'Ci-joint les captures wireshark vues pendant la réunion \"Mise au point OPCUA/MQTT\"','2021-09-24 18:15:03',0),(1511,593,'Issue',447,'Test Double vers Float Ok après avoir déclarer Float dans le subSystem au lieu de Double','2021-09-27 14:29:56',0),(1512,607,'Issue',1,'Bonjour,\r\nJe note deux callstack. \r\nUne pour le publish et une pour des notifications callback qui provoque des MAJ de la cache du serveur sur des node qui semblent contenir des string.\r\nQu\'est-ce qui vous fait dire que nous sommes face à une fuite ?\r\n\r\nCordialement\r\nMichel Condemine','2021-10-04 12:00:33',0),(1513,607,'Issue',432,'Bonjour, \r\n\r\nEn laissant tourner la maquette et en effectuant des images instantanées du tas, l\'outil de diagnostic nous indique que la mémoire utilisée augmente de quelques Ko et pointe vers de nouvelles allocations de (void) en restituant ces appels. \r\n\r\nCordialement, \r\n\r\nMichael ','2021-10-04 12:15:40',0),(1514,607,'Issue',1,'Bonjour,\r\npourriez-vous me fabriquer une configuration reproduisant le problème que vous décrivez ?\r\nCette configuration doit se concentrer sur les VpiUaClient.\r\n\r\nCordialement\r\nMichel Condemine','2021-10-04 14:04:23',0),(1515,604,'Issue',424,'Bonjour M. Condemine,\nSuite à ce que nous avons dit pendant la réunion \"Mise au point OPCUA/MQTT\" (Rappel: Il faut exécuter le serveur sur une autre machine afin de déterminer si le problème vient du code fourni ou de la machine Cyclomix), \nj\'ai recompilé le projet OPCUA/MQTT pour deux autres machines (Ubuntu) et j\'ai constaté le même phénomène. Une fois le serveur lancé, le publisher commence à publier des données et après quelques instants le serveur plante.\n\nJ\'ai réalisé quelques tests et j\'ai constaté que le serveur ne plante plus si je commente la fonction UnlockBrokerKeepAliveThread() (fichier VpiUaPub.cpp).\n!clipboard-202110041602-al8zu.png!\n\nMaintenant le publisher publie correctement et sans plantage les données sur le broker. \nLorsque je modifie une donnée depuis un client OPCUA (UaExpert), j\'ai bien la mise à jour de cette donnée dans le broker(HiveMQ).\nDu coup si le publisher est connecté au broker et que j\'arrête le broker, je constate que le serveur OPCUA s\'arrête aussi.\n\nAvez-vous une idée concernant ce problème? Est-ce que vous aviez fait une modification de votre côté qui n\'apparait pas dans le livrable?\nDe mon côté je continue de regarder le code du VpiUaMqttjsonPub afin de mieux comprendre ce qui s\'y passe.\n\nBien cordialement,\nMaycko LOUIS','2021-10-04 16:15:46',0),(1516,604,'Issue',1,'Bonjour,\r\nje pense que vous avez bien mis le doigt sur le problème.\r\nJe viens de poster un MAJ.\r\n\r\nhttp://www.openopcua.org/redmine/attachments/2083\r\n\r\nCordialement\r\nMichel Condemine','2021-10-04 16:43:15',0),(1517,607,'Issue',432,'Bonjour, \r\n\r\nJ\'ai pu construire une maquette mais je souhaite vous montrer la maquette et le problème au niveau du serveur à la réunion de ce soir\r\n\r\n\r\nCordialement,\r\n\r\nMichael','2021-10-05 10:00:57',0),(1518,607,'Issue',432,'Comme discuté en call, ci-joint la maquette ','2021-10-05 18:25:45',0),(1519,607,'Issue',1,'Bonjour,\r\nj\'ai fait quelques tests avec la maquette que vous avez mis à ma disposition.\r\nJ\'ai changé le port du plant 6002 pour 6004 car 6002 est utilisé sur mon PC.\r\nLe fichier Excel attaché présente les tests Subscribe/Write réalisés. \r\nIl n\'y a aucune fuite. Je vais lancer une petite endurance pour voir plus avant.\r\nJ\'ai noté de nombreux messages d\'erreur dans votre fichier log, Plant.log. Il faudrait clarifier.\r\n\r\nCordialement\r\nMichel Condemine','2021-10-07 12:18:39',0),(1520,557,'Issue',432,'Bonjour M. Condemine, \r\n\r\nMerci pour les binaires. On a fait des tests, on est sur le bonne voie mais ça ne fonctionne pas encore complètement. On vous en parle au call à 17h \r\n\r\n\r\nCordialement,\r\n\r\nMichael \r\n\r\n\r\n','2021-10-07 16:05:36',0),(1521,610,'Issue',1,'Bonjour,\r\nje viens de poster la doc à jour du VpiUaClient. http://www.openopcua.org/redmine/attachments/2096\r\nReportez vous au paragraphe 6.\r\n\r\nCordialement\r\nMichel Condemine','2021-10-08 16:36:59',0),(1522,611,'Issue',1,'Bonjour,\nle fichier est ici [[http://www.openopcua.org/redmine/attachments/2100]]\n\nCordialement\nMichel Condemine','2021-10-10 18:25:32',0),(1523,611,'Issue',1,'','2021-10-10 18:44:09',0),(1524,613,'Issue',1,'Bonjour,\r\nla librairie a évolue durant l\'implémentation du VpiValuesInit.\r\nvous trouverez tous les binaires DEBUG ici [[http://www.openopcua.org/redmine/attachments/2106]] \r\n\r\nCordialement\r\nMichel Condemine','2021-10-11 18:59:25',0),(1525,614,'Issue',1,'Bonsoir,\r\nun problème de synschronisation horaire est un piste probable.\r\nQui assure la synchronisation du réseau ?\r\nSi le serveur connecte/read/write ce n\'est pas un problème de FW.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-10-11 20:20:56',0),(1526,614,'Issue',432,'Il me semble que les horloges sont synchronisés manuellement et on avait aperçu à un décalage entre les deux horloges. \r\n\r\nDeux informations supplémentaires au cas où ça vous donne plus d\'idées : \r\n\r\n- Entre la salle serveur et la salle de production, il y a un routeur qui permet d\'aiguiller vers une salle serveur ou l\'autre dépendant de l\'état des serveurs\r\n\r\n- Des messages dans les logs serveur sont présents ont très grande quantité : \"GetFirstPublishRequest>m_PublishRequests late situation detected\" \r\n\r\n\r\n\r\nNous creusons la piste de l\'horloge\r\n\r\n\r\nCordialement,\r\n\r\nMichael \r\n ','2021-10-12 09:01:00',0),(1527,614,'Issue',1,'Bonjour,\r\nGetFirstPublishRequest>m_PublishRequests late situation detected\r\nindique qu\'aucun Publish n\'est disponible pour les notification que le serveur souhaite envoyer.\r\nEn résumé :\r\nLes Publish n\'arrivent pas au serveur.\r\nIl peut s\'agir d\'un problème de routage ou d\'horloge\r\n\r\nCordialement\r\nMichel Condemine','2021-10-12 10:33:16',0),(1528,615,'Issue',1,'Bonjour,\r\nil me semblait que INETUM vous livrait en DEBUG.\r\nJe vais vous préparer une version release.\r\n\r\nCordialement\r\nMichel Condemine','2021-10-12 10:52:04',0),(1529,615,'Issue',1,'Bonjour,\nla version est dispo en IPV6 release 64bits ici http://www.openopcua.org/redmine/attachments/2107\n\nCordialement\nMichel Condemine','2021-10-12 11:03:53',0),(1530,614,'Issue',432,'Rebonjour, \r\n\r\nRéglé avec la synchro des horloges\r\n\r\nMerci beaucoup \r\n\r\n\r\nMichael ','2021-10-12 17:45:55',0),(1531,614,'Issue',1,'','2021-10-12 17:47:12',0),(1532,617,'Issue',1,'Bonjour,\r\nil n\'est par nécessaire de recréer un ticket si vous oublié d\'assigner.\r\nJ\'ai supprimé le 616.\r\n\r\nCordialement\r\nMichel Condemine','2021-10-14 14:00:19',0),(1533,617,'Issue',1,'Bonjour,\r\nCi-joint un zip avec les dlls release à jour.\r\nCependant INETUM vous livre des version DEBUG et RELEASE\r\n\r\ncordialement\r\nMichel Codnemine','2021-10-14 15:13:27',0),(1534,620,'Issue',1,'Bonjour,\r\nle support d\'une connexion sécurisée avec le broker (TLS 1.2) m\'amène a intégrer OpenSSL au VpiUaMQttJsonPub. \r\nCe qui introduit des nouvelles fonctions. Je vais faire un essai de compilation sous Linux pour valider et corriger au besoin le CMakeList.txt.\r\nJe vous tiens au courant.\r\n\r\nCordialement\r\nMichel Condemine','2021-10-14 15:18:44',0),(1535,623,'Issue',1,'Bonjour,\r\nles binaires sont disponible ici.http://www.openopcua.org/redmine/attachments/2117 \r\nmerci de vérifier ASAP la comptabilité IPV4/IPV6 de certain composants.\r\n\r\ncordialement\r\nMichel Condemine','2021-10-14 18:28:38',0),(1536,623,'Issue',1,'','2021-10-14 18:29:52',0),(1537,622,'Issue',1,'Bonjour,\r\nMerci de me générer un minidump en utilisant les derniers binaires Debug IPV4 64bits et ProcDump.\r\n\r\nCordialement\r\nMichel Condemine','2021-10-14 19:03:19',0),(1538,623,'Issue',432,'Ces binaires génèrent un crash en ce connectant au simulateur PLCSIM (stack de communication IPV4). \r\n\r\nCi-joint le minidump associé : ','2021-10-14 19:35:05',0),(1539,622,'Issue',432,'J\'ai mis à jour les binaires, mais un autre problème semble être apparu dès le démarrage du serveur. Ci joint un minidump \r\n','2021-10-14 19:46:02',0),(1540,623,'Issue',1,'Est ce que ce minidump correspond au ticket 622 ?','2021-10-14 20:23:37',0),(1541,622,'Issue',1,'Le minidump du ticket 623 est probablement associé au problème du ticket 622. Il correspond à un crash dans la VfiLibrary.\r\nJe pense qu\'il s\'agit d\'un minidump line. \r\nIl y a ici quelque chose de pas claire. \r\nJ\'imagine que l\'on cherche a analyser les crashes Line et Plant.\r\nIl me faut donc les minidump, Line et Plant.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n\r\n','2021-10-14 20:33:06',0),(1542,622,'Issue',1,'Pourriez vous me fournir les log, plant et line.\r\nOn ne peut rien tirer des minidump. Les crashes se produisent dans la VfiLibrary.','2021-10-14 20:37:41',0),(1543,622,'Issue',432,'','2021-10-14 21:11:35',0),(1544,622,'Issue',432,'Veuillez ignorer les logs attachés dans le message précédent, j\'ai confondu les tickets\r\n\r\n\r\nPour ce ticket, je ne peux pas reproduire le problème signalé. Dès le démarrage du serveur Line, on a un crash. Ci joint les logs pour cette maquette ','2021-10-14 21:15:10',0),(1545,623,'Issue',432,'Pour confirmer que la communication IPV4 fonctionne, j\'ai mis les binaires IPV4 sur notre maquette Serveur Line - PLC SIM . Le minidump correspond à ce scénario\r\n\r\nLe crash a lieu dès le démarrage du serveur Line\r\n\r\nCi joint les logs pour cette maquette ','2021-10-14 21:18:18',0),(1546,623,'Issue',1,'Bonsoir,\r\nle log sont verbeux. C\'est utile.\r\nComme déjà demandé. Pourriez vous corriger au maximum les erreurs et warning qu\'il remonte afin que l\'on puisse s\'y retrouver.\r\nExemple :\r\n<pre>\r\nns=6;i=3172 for Vpi 0 will be Initialize from NodeSet\r\n.\r\n.\r\nCritical configuration error. A subsystem tag is not define in the UA AddressSpace\r\n.\r\n.\r\nUpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=1312 contains a forward reference with a not found target : i=0\r\n.\r\n.\r\nInitHaEngine>The Historical Configuration of ns=4;i=4298 is not correct. Please check your Nodeset files\r\n.\r\n.\r\nTypeMismatch between Vpi declaration[12] and AddressSpace declaration [22]\r\n</pre>','2021-10-14 21:29:01',0),(1547,622,'Issue',1,'J\'ai fabriqué une maquette avec :\r\nUn serveur Agregateur connect\" sur un serveur SEED en configuration manuelle. Tous les serveurs en IPV4.\r\nVpiUaClient+VfiPgSql sur l\'agregateur.\r\nL\'ensemble en debug. \r\nJe lance : \r\nAUCUN CRASH, AUCUN PROBLEME, ARCHIVAGE ET AGREGATION FONCTIONNELLE.\r\n\r\nN\'auriez vous pas mixé les DLLs ?','2021-10-14 22:36:41',0),(1548,620,'Issue',1,'Bonsoir,\r\nje viens de livrer la version qui corrige les problème de compilation.\r\n\r\nCordialement\r\nMichel Condemine','2021-10-15 19:05:37',0),(1549,625,'Issue',1,'','2021-10-15 22:12:07',0),(1550,625,'Issue',432,'','2021-10-15 22:17:08',0),(1551,618,'Issue',1,'Bonjour,\r\nproblème 1 : Le TRIGGER NODE doit être de type BOOL.\r\n\r\ncordialement\r\nMichel Condemine','2021-10-15 22:52:54',0),(1552,622,'Issue',432,'Bonjour, \r\n\r\nAvec les derniers binaires, je n\'arrive plus à reprovoquer ce scénario de crash. Le Plant arrive à bien récupérer la connexion malgré les crash provoqués au niveau du Line. \r\n\r\n\r\nMichael ','2021-10-16 19:56:42',0),(1553,622,'Issue',1,'Peut on fermer le ticket ?','2021-10-16 20:47:33',0),(1554,622,'Issue',432,'Oui. J\'en rouvrirait un si jamais nous arrivons à reproduire le problème\r\n\r\nMichael','2021-10-17 14:25:28',0),(1555,618,'Issue',432,'Bonjour, \r\n\r\n\r\nLe trigger node sur notre maquette est bien de type booléen. \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2021-10-17 14:26:34',0),(1556,622,'Issue',1,'','2021-10-17 14:26:51',0),(1557,623,'Issue',432,'Bonjour, \r\n\r\n\r\nEn utilisant l\'OpenOpcUaVpiLibrary dans le package de code OpenOpcUa_1_0_6_1_INETUM_15-10-2021 , il semble qu\'il manque des fonctions nécessaires pour le VpiInitValues : \r\n\r\n!clipboard-202110171430-nbvev.png!\r\n\r\nAvec celui livré dans le package de binaires LivraisonDebugIPV4_x64-15-10-2021 ça marche bien. \r\n\r\nPourriez vous nous livrer les sources à jour? \r\n\r\nPour les binaires pour lesquels nous n\'aurons pas accès aux code source, comment souhaiterais vous que l\'on procède en cas de crash la semaine prochaine? Avez vous toujours les symboles pour les binaires du package LivraisonDebugIPV4_x64-15-10-2021 ? \r\n\r\n\r\nCordialement,\r\n\r\nMichael\r\n','2021-10-17 14:33:23',0),(1558,623,'Issue',1,'Les fichiers associés sont bien présents dans le source.\r\nLe vxproj doit être modifié. Je ne peux pas vous faire un livraison ce dimanche.\r\nJe vous invite à corriger ci petit problème en ajoutant VpiBase64.h et VpiBase64.cpp à projet.\r\n\r\n','2021-10-17 14:39:12',0),(1559,630,'Issue',1,'La nouvelle version du Vfi prend en compte les reconnections à la base.\r\nLe problème devrait être résolu. Tous les tests en LABO sont concluants.\r\nMerci de réaliser de test en grandeur réelle\r\n\r\nCordialement\r\nMichel Condemine','2021-10-22 15:55:51',0),(1560,627,'Issue',1,'Il s\'agit d\'un message de log de la ClientLibrary.\r\nToujours le même message. \r\nxmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x80050000\r\nJe le passe en WARNING\r\nUne nouvelle version de la librairie est sur le redmine v1.0.6.0\r\nCordialement\r\nMichel Condemine\r\n','2021-10-22 16:01:05',0),(1561,626,'Issue',1,'Avec les évolutions récentes de la base de code ce minidump est inutilisable.\r\nIl montre simple l\'utilisation d\'un morceau de mémoire corrompu. Il serait interessant de verifier la consistance de la base de données.\r\nY aurait il par hasard un enregistrement endommagé ?','2021-10-22 16:05:46',0),(1562,621,'Issue',1,'Qu\'est ce que c\'est que cette callstack qui contient des appels à MessageBox ?','2021-10-22 16:08:47',0),(1563,618,'Issue',1,'La mise à jour de l\'espace d\'adressag est réalisé sur le namespacearray change. Change de taille principalement.\r\n','2021-10-22 16:09:54',0),(1564,613,'Issue',1,'','2021-10-22 16:10:24',0),(1565,607,'Issue',1,'','2021-10-22 16:11:05',0),(1566,596,'Issue',1,'A défaut de nouvelle sur ce sujet. Je ferme le ticket.\r\nOn pourra l\'activer à nouveau au besoin','2021-10-22 16:13:13',0),(1567,633,'Issue',432,'','2021-10-26 09:54:51',0),(1568,633,'Issue',432,'En continuant les tests nous nous apercevons que aucune écriture ne fonctionne depuis la nouvelle version du VpiUaClient. Nous sommes bloqués et nous ne voyons pas de d\'autre solution que de passer sur la précédente version même si instable. \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2021-10-26 10:59:42',0),(1569,609,'Issue',424,'Ok pour moi.','2021-10-28 11:02:50',0),(1570,605,'Issue',424,'Ok pour moi.','2021-10-28 11:02:54',0),(1571,604,'Issue',424,'Ok pour moi.','2021-10-28 11:02:58',0),(1572,609,'Issue',1,'','2021-10-28 11:53:21',0),(1573,605,'Issue',1,'','2021-10-28 11:53:48',0),(1574,633,'Issue',1,'Vue ce jour','2021-10-28 15:00:32',0),(1575,603,'Issue',1,'Bonsoir, \r\ncette EVOLUTION est implémentée.\r\nVoir ci-dessous\r\n!clipboard-202110282116-namz5.png!\r\n\r\nCordialement\r\nMichel Condemine','2021-10-28 21:17:03',0),(1576,628,'Issue',1,'Est ce que l\'on peu fermer ce ticket ?','2021-10-28 21:19:00',0),(1577,603,'Issue',1,'Le binaire associé est disponible ici http://www.openopcua.org/redmine/attachments/download/2184/OpenOpcUaCoreServer1.0.6.1_IPV4_Debug-29-10-2021.zip \r\n','2021-10-29 13:09:40',0),(1578,557,'Issue',1,'','2021-10-29 13:10:18',0),(1579,628,'Issue',432,'Nous avons fourni les binaires et attendons un retour du client \r\n\r\nCordialement, \r\n\r\nMichael','2021-10-29 13:29:10',0),(1580,603,'Issue',432,'Bonjour, \r\n\r\nMerci pour les binaires. Je teste ASAP et vous fait un retour\r\n\r\nCordialement,\r\n\r\nMichael','2021-10-29 13:30:06',0),(1581,603,'Issue',432,'Pourriez vous svp me partager votre bout de code (screenshot fera l\'affaire) dans le VpiMethode qui renvoit les Output Arguments? \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2021-10-29 14:06:30',0),(1582,603,'Issue',1,'Vpi_StatusCode VpiCall(Vpi_Handle hVpi, Vpi_CallMethodRequest callRequest, Vpi_CallMethodResult* pCallResponse)\r\n{\r\n Vpi_StatusCode uStatus = Vpi_Good;\r\n pCallResponse->NoOfOutputArguments = 1;\r\n pCallResponse->OutputArguments= (Vpi_Variant*)malloc(sizeof(Vpi_Variant));\r\n Vpi_Variant_Initialize(&pCallResponse->OutputArguments[0]);\r\n pCallResponse->OutputArguments[0].Datatype = VpiType_UInt32;\r\n pCallResponse->OutputArguments[0].Value.UInt32 = 15;\r\n return uStatus;\r\n}','2021-10-29 14:08:41',0),(1583,621,'Issue',1,'','2021-10-29 16:07:50',0),(1584,628,'Issue',1,'','2021-10-29 16:08:23',0),(1585,641,'Issue',1,'Bonjour,\r\nCe minidump est inutilisable.\r\nAuriez vous des log ?\r\nPlus d\'informations sur les conditions d\'apparition ?\r\n\r\nAvec la diffusion des sources il est difficile de suivre les symboles associés à un crash.\r\nConcernant ce problème j\'ai bien les symboles du VpiValuesInit mais ils ne correspondent pas au crash.\r\nComment est ce possible ?\r\nComment faire en sorte que cela ne se reproduise pas ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-11-02 10:59:31',0),(1586,641,'Issue',432,'Nous n\'avons pas reçu les logs liés à ce crash. Je demanderai à eMotors de nous fournir la combinaison mindump/logs pour les prochains crashs\r\n\r\nCe crash à eu lieu sur une ligne au démarrage du LM. Au démarrage suivant, le LM a bien démarré. \r\n\r\nLe binaire utilisé est celui datant du 21/10 à 20h07. Les symboles que vous avez correspondent-ils au binaire compilé à cette date? \r\n\r\nJe suis d\'accord que nous devons trouver une solution pour que cela ne se reproduise plus. Auriez vous un créneau rapide cet après midi après 14h pour en discuter? Je souhaiterai aussi vous montrer un minidump concernant la OpenOpcUAStackV1 que j\'ai pu déchiffrer mais j\'ai du mal à le comprendre. \r\n\r\nCordialement, \r\n\r\nMichael \r\n\r\n\r\n ','2021-11-02 11:36:38',0),(1587,642,'Issue',1,'Bonjour,\r\nIl s\'agit d\'une évolution qui pourrait être prise en compte dans le cadre de l\'évolution d\'OpenOpcUa.\r\nPour une prise en compte à cours terme une offre commerciale peut être réalisée.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-02 11:40:39',0),(1588,641,'Issue',1,'14h cette AM ca marche.\r\nJ\'attends votre invitation.','2021-11-02 11:41:54',0),(1589,643,'Issue',1,'Bonjour,\r\nJ\'ai réalisé deux modifications pour prendre en compte ce problème :\r\n1- La taille de la requête est porté à 3 276 810 octets.\r\n2- La taille de la requête encodé en Base64 est calculée avant sa réalisation. En cas de dépassement elle est supprimé et un message d\'erreur est placé dans le LOG.\r\nCes deux actions s\'ajoutent aux modifications que vous allez apporter au VpiPlant et/ou Line et aux mécanisme de protection en place au niveau des PLCs.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-04 14:19:32',0),(1590,641,'Issue',1,'Je ferme le ticket.\r\nMerci de tester avec la version 0.0.0.6 du VpiValuesInit.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-04 14:21:48',0),(1591,640,'Issue',1,'Corrigé dans la livraison à venir version 1.0.2.8','2021-11-04 15:19:01',0),(1592,639,'Issue',1,'Bonjour,\r\nJ\'ai trouvé une solution élégante. Cette solution demanderait une modification du code du VpiUaClient.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-04 15:40:32',0),(1593,638,'Issue',1,'Bonjour,\r\nLa réponse se trouvait dans le LOG du serveur:\r\n<pre>\r\n\"HA Configuration error MaxTimeInterval Variable contains the wrong DataType. The variable datatype is 13 instead of Double\"\r\n</pre>\r\nEn tenant compte de cette information précieuse j\'ai corrigé le code de la fonction de création dynamique de node.\r\nJ\'en ai profité pour durcir certaines fonctions d\'archivage pour tenir compte d\'extensionObject malformés.\r\nCe faisant je suis tombé sur une variable mal initialisé. Je dois encore déterminer si cette erreur est liée à \'aspiration. Voir screen shot \r\n!clipboard-202111041848-k9kx0.png!\r\n\r\nLa bonne nouvelle c\'est que l\'archivage fonctionne donc même sans s\'abonner.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-11-04 18:53:27',0),(1594,639,'Issue',1,'Finalement il n\'y a rien à faire.\r\nJuste lire les LOG, lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG lire les LOG.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-04 18:55:01',0),(1595,637,'Issue',1,'Bonjour,\r\nDans l\'etat actuel je valide la modification que nous avons réalisé lors jour sur la browsing du serveur Graine.\r\nCette modification corrige ce problème.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-04 18:57:21',0),(1596,628,'Issue',1,'Avez vous un retour sur ce point ?','2021-11-04 18:58:14',0),(1597,639,'Issue',432,'Bonjour, \r\n\r\nc\'était encore du au type du MaxTimeInterval? \r\n\r\n\r\nCordialement,\r\n\r\nMichael','2021-11-05 09:18:58',0),(1598,628,'Issue',432,'Bonjour,\r\n\r\nDepuis la correction effectuée, nous n\'avons pas eu de crash avec cette callstack\r\n\r\n\r\nMichael','2021-11-05 09:20:36',0),(1599,628,'Issue',1,'Bonjour,\r\ntrès bien. Je ferme ce ticket.\r\nCordialement\r\nMichel Condemine','2021-11-05 09:49:58',0),(1600,639,'Issue',1,'Oui','2021-11-05 09:50:56',0),(1601,644,'Issue',1,'Bonjour,\r\nest ce qu\'il utilise la version livrée hier ?\r\nCordialement\r\nMichel Condemine','2021-11-09 12:59:47',0),(1602,644,'Issue',1,'Bonjour,\r\nje n\'arrive pas à obtenir de callstack à partir du minidump fournit.\r\nÊtes vous certain que la version utilisée correspond à la livraison du 8/11/2021 ?\r\nIl y a cependant de nombreuses erreurs dans le fichier log. Elles traduisent des erreurs de configuration qu\'il convient de corriger ASAP.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-11-09 13:30:15',0),(1603,644,'Issue',432,'Je suis certain que la version utilisée est celle de hier (j\'ai pu obtenir la callstack avec les pdb que vous nous avez transmis). \r\nJ\'ai cependant dû activer les symboles Microsoft comme la dernière fois (est-ce le cas de votre côté?) \r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2021-11-09 13:49:34',0),(1604,644,'Issue',1,'Oui les symboles MS sont activés ainsi que les symboles du 8/11.\r\nAprès avoir mixé PDB et DLL j\'arrive à obtenir une callstack.\r\nLa session semble corrompue. \r\nVous avez 6 instances du VpiUAClient sur cette ligne.\r\nPourriez vous m\'en dire un peu plus ?\r\nDans qu\'elle condition le crash est il apparu ?','2021-11-09 14:24:07',0),(1605,644,'Issue',1,'Autre question.\r\n<pre>\r\nVous dites : Crash sans la présence du personnel.\r\n</pre>\r\nIci le serveur a démarré à 2021-11-09T10:03:04.084Z et a arrêté d fonctionner à 2021-11-09T10:04:02.588Z.\r\nIl fonctionné moins d\'une minute.\r\nIl s\'agit manifestement d\'un crash au démarrage.\r\nEst ce que le serveur tourne en tant que service ?\r\nComment est il lancé ?\r\n','2021-11-09 14:44:28',0),(1606,644,'Issue',432,'La ligne Rotor communique avec plusieurs automates et comme vous le savez certains automates ont des soucis pour supporter un nombre trop élevé de MonitoredItems au sein d\'un session. Ce qui explique les multiples instances de VpiUaClient. \r\n\r\n\r\nSuite à votre remarque j\'ai aussi regardé ces timestamps. \r\n\r\nLe procdump indique avoir été pris à 9h49. \r\n\r\nLes deux derniers lancements du serveur ont eu lieu sur les périodes suivantes: 9h24 à 9h39 et 10h03 à 10h04. \r\n\r\nMême si on considère que certaines de ces heures sont en heure locale et l\'autre en UTC, ça n\'a pas l\'air de rentrer. \r\nJ\'ai l\'impression que le serveur a été redémarré avant l\'extraction des logs. Je remonte ça à eMotors.\r\n\r\nLe serveur n\'est pas installé en tant que service, il est lancé manuellement. \r\n\r\n\r\nQuand vous dites que la session est corrompue, parlez vous de l\'objet C++ ou bien de la session OPC UA? \r\n\r\nPour info il nous a été remonté deux procdumps sur d\'autres lignes sur lesquels j\'ai demandé d\'essayer de reproduire le scénario de crash. Les procdumps indiqués n\'avaient pas l\'air cohérents en termes de leur callstack. Tout ça pour dire que j\'ai l\'impression qu\'on a un dépassement de mémoire, =qui endommage la mémoire d\'autres process. Qu\'en pensez vous? \r\n\r\n\r\nMichael \r\n\r\n\r\n\r\n\r\n\r\n- ','2021-11-09 15:08:23',0),(1607,644,'Issue',1,'Par\r\n<pre>session est corrompue</pre> je parle de l\'objet C++.\r\n\r\nD\'après les deux derniers log à notre disposition le serveur à fonctionné. Nous sommes d\'accord :\r\nde 09:24:34.660\r\nà 09:39:03.081\r\n\r\nPuis \r\nde 10:03:04.084\r\nà 10:04:02.588\r\nLe minidump date de 8:49:15 UTC.\r\nEn résumé on ne dispose pas des logs associés au minidump. \r\n\r\nIl y a cependant de nombreuses erreurs de configuration à corriger.\r\n\r\nEst ce que vous avez fait la MAJ partout ?\r\n\r\nCordialement\r\nMichel Condemine','2021-11-09 16:23:26',0),(1608,644,'Issue',432,'J\'ai remonté à eMotors une erreur de configuration pour laquelle j\'ai pu trouver la source (message UpdateUAVariablesEncodeableObject>Error, impossible to find ns=2;i=1183 in UADataTypeList 0x80ab0000) \r\n\r\nPour les autres messages, ils indiquent des problèmes nodeset de type ou bien un problème de configuration vpi que je ne comprends pas. J\'ouvrirai les tickets nécessaires pour nettoyer les logs. \r\n\r\nEn terme de MAJ, si la question est si eMotors à utilisé uniquement les derniers binaires, je pense que oui (c\'est eux qui l\'ont fait). Y a t-il quelque chose qui vous laisse penser autrement? \r\n\r\nCordialement, \r\n\r\nMichael ','2021-11-09 16:33:27',0),(1609,644,'Issue',1,'Il me faudrait d\'autres minidump et d\'autres log.\r\n\r\n','2021-11-09 16:36:38',0),(1610,644,'Issue',1,'Bonsoir,\r\nLionel a posté un minidump très interessant.\r\nIl pointe sur un crash dans la StorageThread. Ci dessous la callStack.\r\n!clipboard-202111102255-xhpuc.png!\r\nL\'étude du contenu de la valeur dans la cache du serveur montre que le node ns=5;i=4297 ERP_Of_List_To_Do contient des données corrompu.\r\n!clipboard-202111102253-hwxiu.png!\r\n\r\nIl semble y avoir une discordance entre le nombre d\'elements dans le tableau de l\'extensionObject (4) et les données à l\'interieur.\r\nUne réflexion hâtive pourrait laisser penser a une corruption de la mémoire mais les elements du tableau 1,2 et 3 sont juste pas initialisé. Alors que l\'élément 0 est bien rempli même si son body est null avec une taille de 646071 octets. Est ce que cette taille a du sens pour vous ?\r\nPourriez vous m\'expliquer comment sont remplis les ERP_OF_Datatype et plus particulièrement ERP_Of_List_To_Do.\r\n\r\nd\'autres informations à suivre.\r\nCordialement\r\nMichel Condemine','2021-11-10 23:06:35',0),(1611,644,'Issue',1,'Plus d\'info :\nA l\'étude des logs plusieurs informations étonnantes. \n# Le serveur fonctionnait encore à 18h03 UTC\n# Le minidump date de mercredi 10 novembre 2021, 16:31:26. \n Nous avons eu une exception mais pas un crash. La différence est importante.\n# Le VpiLine fonctionnait à 18h04 bien que les messages de trace ne soit pas d\'un grand secours.\n La derniere trace utile semble être 2021-11-10T16:07:08.786Z INFO TransfertToCoreServerCache,3/3 to transfert\n# idem pour les instances du VpiUaCient 002,003, 004, 005,006. RAS sur l\'instance 001 depusi 11:32 qui sembel correspondre à la date de démarrage. \n\nIl y a donc bien eu un problème à 16:31 lors d\'une sauvegarde du node ERP_Of_List_To_Do ns=3,i=4297.\nQuand je dis sauvegarde. Comprennez bien que le problème n\'a rien à voir avec SQL. Il concerne un OpcUa_DataValue_CopyTo ou plus précisément un OpcUa_Variant_CopyTo.\n\nCordialement\nMichel Condemine','2021-11-10 23:27:17',0),(1612,645,'Issue',1,'Bonjour,\r\nje viens de liver une version que supporte cette fonctionnalité.\r\nElle supporte aussi le polling paramétrable. \r\nIl s\'agit du paramètre \r\n<pre>\r\nMIN_POLL_RATE 1000\r\n</pre> \r\nCe paramètre doit être ajouté dans le fichier .dat\r\nhttp://www.openopcua.org/redmine/attachments/2217\r\n\r\nmerci de valider cette MAJ ASAP.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-14 18:26:53',0),(1613,644,'Issue',432,'Bonjour M. Condemine, \r\n\r\n\r\nMerci pour ce retour. Nous n\'étions pas au courant d\'un nouveau crash en fonctionnement au niveau de la ligne Rotor.\r\n\r\nLa taille 646071 ne m\'inspire pas du tout. Ca ne semble correspondre à aucune limite de taille d\'un type ou fixée en dur. \r\nLa seule piste qui me vient à l\'esprit est l\'échec d\'un malloc que nous ne traitons pas dans notre valorisation de la DataValue. Quelle taille fait le minidump fourni? \r\n\r\n\r\nCi dessous le bout de code qui fait l\'encodage de ERP_Of_List_To_Do : \r\n\r\n!clipboard-202111151028-nc6b3.png!\r\n!clipboard-202111151028-rcvna.png!\r\n\r\n\r\n\r\nPour info, je vais me connecter chez eMotors ce matin pour investiguer davantage le problème à l\'arrêt du serveur\r\nCordialement, \r\n\r\nMichael','2021-11-15 10:31:07',0),(1614,644,'Issue',1,'Bonjour,\r\nle minidump fait 1 455 676 ko.\r\nIl est gros.\r\nJ\'ai par ailleurs fait une modification dans le serveur qu\'il serait interessant d\'installer.\r\nJe vous l\'envoie ce matin\r\n\r\nCordialement\r\nMichel Condemine','2021-11-15 10:40:13',0),(1615,645,'Issue',447,'Bonjour,\r\n\r\nLa conversion Tableau de Byt vers string fonctionne mais il y a un décalage de 2 octets. Si on veut récupérer un tableau de 8 bytes nous aurons les 2 premiers caractères \"côté tableau qui sont égale à 48 et 8\r\nExemple: String : \"01234567\" Tableau de byte = {48,8,48,49,50,51,52,53} - il manque les 2 derniers caractères dans le tableau. pour un tableau de 16 idem mais avec 48, 16 dans les 2 premiers octets\r\n\r\nLe pooling fonctionne via le fichier . Dat mais nous n\'arrivons pas à écrire avec un pooling trop faible. Nous avons réussi à lire et écrire après 2mn (une fois le serveur entièrement démarré) et un pooling de 10 000ms.\r\nDans ce cas l\'écriture est instantanée. Est-ce envisageable d\'utiliser le même mécanisme de pooling que pour la lecture mais à l\'écriture? Je ne sais pas si c\'est l\'origine du problème mais lorsque la lecture à un pooling élevé l\'écriture fonctionne et avec un pooling de 500ms la lecture fonctionne mais plus l\'écriture.','2021-11-15 14:20:17',0),(1616,644,'Issue',432,'Bonsoir Michel, \r\n\r\n\r\nMerci pour les binaires. \r\nNous avons déployé les binaires. RAS pour le moment. \r\nSur le problème du crash à l\'arrêt, nous avons pu avancer nos investigations. \r\n\r\nOn a trouvé un scénario qui reproduit systématiquement le problème mais uniquement sur la plateforme EMOTORS. \r\nIl semblerait que c\'est lié au mécanisme mis en place côté VpiLine d\'aller récupérer la dernière valeur au niveau du serveur (normalement complétée par le VpiValuesInit). Lorsque ce mécanisme est activé, on a systématiquement un crash.\r\nNous utilisons pour ça la fonction ProcessReadOOUACache. Est-ce que les deux arguments (NodeId et VpiDataValue * ) de cette fonction sont libérables ? Le NodeId surement mais a t-on le droit de libérer la VpiDataValue * ? \r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n','2021-11-15 19:26:04',0),(1617,645,'Issue',489,'Bonjour Michel,\r\n\r\nConcernant du phénomène de délai d’attende pour que le serveur puise se stabiliser, comme vous l\'avez mentionné hier après-midi, nous avons supprimé les balises \r\ndes valeur par défaut et maintenant cela fonctionne bien pour écriture depuis le Serveur OOUA vers CN juste après la fin de souscriptions des instances.\r\n\r\nnous sommes en attente pour conversation de string vers tableau byte','2021-11-16 10:54:48',0),(1618,648,'Issue',1,'','2021-11-16 15:03:46',0),(1619,650,'Issue',1,'WG approve Phase as Name and matter classification for description','2021-11-16 15:10:14',0),(1620,647,'Issue',1,'WG agreed on a new category called General.','2021-11-16 15:11:11',0),(1621,647,'Issue',436,'','2021-11-16 15:14:31',0),(1622,648,'Issue',436,'Category \"Waste\" has been choosen.','2021-11-16 15:48:59',0),(1623,649,'Issue',436,'Well water is equal to clear water.','2021-11-16 15:50:36',0),(1624,652,'Issue',1,'','2021-11-16 16:29:15',0),(1625,653,'Issue',432,'Nous avons aussi le même message au début avec un status code égal à 0x80040000 ','2021-11-16 18:05:51',0),(1626,651,'Issue',432,'Bonjour M. Condemine, \r\n\r\nAuriez vous une petite disponibilité aujourd\'hui pour discuter des en-cours liés à la stabilisation des LMs ? \r\n\r\nCordialement, \r\n\r\nMichael','2021-11-17 11:39:34',0),(1627,655,'Issue',489,'','2021-11-17 13:23:41',0),(1628,655,'Issue',489,'','2021-11-17 13:24:07',0),(1629,651,'Issue',1,'Bonjour,\r\n14h15 - 15min max','2021-11-17 13:42:43',0),(1630,655,'Issue',1,'Pourriez vous me donner plus d\'explication sur les erreurs suivantes.\r\nJe cherche a comprendre l\'erreur OpcUa_BadInvalidArgument=0x80AB0000 et la target i=0.\r\nCes erreurs semble indiquer une erreur de configuration.\r\n2021-11-17T09:48:38.629Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=1312 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:38.629Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=1302 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:38.895Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=6852 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:38.911Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=6781 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:38.911Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=6760 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:38.911Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=6735 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:38.927Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=6662 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:39.006Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=6339 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:39.477Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=5098 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:39.617Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=4829 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:39.617Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=4815 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:39.820Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=4492 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:40.689Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=3298 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:41.312Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=2625 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:41.530Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=2391 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:41.546Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=2374 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:41.624Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=2290 contains a forward reference with a not found target : i=0\r\n2021-11-17T09:48:41.985Z SERVER_ERROR UpdateAllInverseReferences>Critical error uStatus=0x80ab0000. ns=2;i=1945 contains a forward reference with a not found target : i=0','2021-11-17 14:11:44',0),(1631,661,'Issue',1,'Bonsoir Lionel,\r\nest ce a dire que la nouvelle version ne plante plus ou la version précédente plantait ?\r\nPourriez vous m\'expliqeer de quel timeout vous parlez ?\r\n\r\nMichel','2021-11-18 20:08:40',0),(1632,661,'Issue',447,'Les 2.\r\n\r\nL\'ancienne version plantait avec cette configuration \r\nLa nouvelle version ne plante plus avec cette même configuration. Je vous dit demain si c\'est toujours vraie après une nuit.\r\n\r\nDans les 2 cas la souscription ne marche pas avec un subsystem contenant 630 nodes\r\nAvec un subsystem de 105 nodes ça fonctionne \r\n\r\nJe me demandais si lorsque le uaclient demande de s\'abonner au 630 nodes en une session et que le plc mettrait trop temps avant de répondre OK à la souscription, peut être qu\'il y avait un timeout côté ua client.\r\nD\'où ma demande pour qu\'il soit plus patient si le problème viendrait du plc qui mettrait x temps pour traiter la demande','2021-11-18 20:37:09',0),(1633,661,'Issue',1,'Bonsoir,\r\nJe pense que vous avez mis le doigt sur le \"problème\".\r\nEn configuration automatique il y a un découpage du nombre de MonitoredItem (MI) à ajouter. Ce traitement est réalisé par l\' OOUAClientLibrary.\r\nElle découpe les ajouts en fragment de 300 MI à la fois. Par exemple si vous voulez ajouter 630 MI il y aura 3 appels, 2 de 300MI et un de 30 MI.\r\nCe traitement est réalisé par le fonction OpenOpcUa_CreateMonitoredItemsEx qui ne concerne à ce jour que la configuration automatique. \r\nLa configuration manuelle appelle une fonction plus ancienne OpenOpcUa_CreateMonitoredItems qui ne réalise pas cette fragmentation.\r\nDonc deux solutions s\'offre à nous :\r\n1- Utiliser OpenOpcUa_CreateMonitoredItemEx en configuration manuelle\r\n2- Modifier OpenOpcUa_CreateMonitoredItems pour quel utilise le mécanisme de fragmentation.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-11-18 21:16:02',0),(1634,659,'Issue',489,'','2021-11-19 11:28:15',0),(1635,659,'Issue',432,'Bonjour, \r\n\r\nPour info, le zip ajouté concernant les logs de la ligne d\'usinage ne correspondent pas à la dernière version du serveur. \r\n\r\nJ\'ai fait un tour sur les LMs Rotor, Usinage Main et usinage Cover. \r\n\r\n+Sur tous les LMs+\r\n\r\nLe Subsystem UaClient1 semble systématiquement avoir un problème et ces logs ne sont jamais complets (il s\'arrête au premiers messages et n\'indique pas que le CreateMonitoredTems a réussi)\r\n\r\n\r\nSur la ligne Rotor. \r\n\r\nContexte : Subsystems surchargés avec plus de 300 MonitoredItems (voir ticket 661)\r\n2 procdumps générés indiquant tous la même CallStack : \r\n\r\n!clipboard-202111191159-oxzxt.png!\r\n\r\nJe mets les 2 procdumps et les logs associé au 2ème procdumps en zip \r\n\r\n\r\n+Sur les lignes d\'usinage Main et Cover+\r\n\r\n\r\nLes logs UaClient indiquent tous le message suivant\r\n\r\n!clipboard-202111191205-xzr0z.png!\r\nLes logs VpiUaClient indiquent tous le message suivant : \r\n!clipboard-202111191205-xn97l.png!\r\n\r\nJe mets un zip pour les logs \r\n\r\n\r\n+Sur la ligne PrepaStack+ \r\n\r\nPas plus d\'information que les logs mis par Arash ce matin \r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2021-11-19 12:09:50',0),(1636,663,'Issue',432,'Nous avons ces messages dans le log Serveur :\r\n\r\n!clipboard-202111221104-kpivk.png!\r\n','2021-11-22 11:04:14',0),(1637,663,'Issue',1,'Bonjour,\r\nje m\'occupe de la conversion du DataType.\r\nEst ce que le reste fonctionne ?\r\nCordialement\r\nMichel Condemine','2021-11-22 11:25:08',0),(1638,663,'Issue',432,'*En backoffice* , le reste des datatypes fonctionnent. \r\n\r\nNous attendons de tout valider en Backoffice avant de déployer chez eMotors\r\n\r\n\r\nCordialement, \r\n\r\nMichael','2021-11-22 11:27:00',0),(1639,666,'Issue',1,'Bonjour,\r\nje pensais bien que le problème venait du SSL_Write.\r\nIl doit y avoir quelque chose dans l\'appel à cette fonction. \r\nLe BIO_do_handshake est bien réalisé dans le TLS12Connect et bien avant tout appel à SSL_write.\r\nJe pense qu\'il doit y avoir un problème dans la construction de la trame ping et ou publish.\r\nEst ce que vous pouvez faire un test SECURE sur Mosquitto en utilisant le fichier de configuration MosquitoLiveTLS-00150.dat.\r\nChangez le Subsysteme en conséquence.\r\n\r\nSi cette configuration fonctionne on pourra en déduire l\'origine du problème.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-22 18:31:41',0),(1640,661,'Issue',447,'Voici des fichiers Logs avec la nouvelle livraison du 21/11/21 et un minidump sur un crash à la fermeture de la maquette','2021-11-22 19:00:57',0),(1641,663,'Issue',1,'Bonjour,\r\nLe problème est corrigé. \r\nJe prépare une livraison dans la soirée.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-22 19:09:45',0),(1642,661,'Issue',1,'Bonsoir,\r\nmerci pour ces logs.\r\nJ\'ai fait une petite modification dans les traces.\r\nOn y voit un message d\'erreur inquiétant concernant une potentielle erreur de configuration.\r\n<pre>\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1030 between Vpi declaration[8] and AddressSpace declaration [6]\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1041 between Vpi declaration[8] and AddressSpace declaration [6]\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1052 between Vpi declaration[8] and AddressSpace declaration [6]\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1063 between Vpi declaration[8] and AddressSpace declaration [6]\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1074 between Vpi declaration[8] and AddressSpace declaration [6]\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1085 between Vpi declaration[8] and AddressSpace declaration [6]\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1096 between Vpi declaration[8] and AddressSpace declaration [6]\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1107 between Vpi declaration[8] and AddressSpace declaration [6]\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1118 between Vpi declaration[8] and AddressSpace declaration [6]\r\n2021-11-22T10:54:30.484Z SERVER_ERROR TypeMismatch on ns=46;i=1129 between Vpi declaration[8] and AddressSpace declaration [6]\r\n</pre>\r\n\r\nPourriez vous m\'en dire plus sur ces nodes. Est ce vraiment des Int64 dans le Vpi ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-11-22 20:53:54',0),(1643,666,'Issue',424,'J\'ai utilisé la config Mosquitto.\r\nLe Publisher fait planter le serveur aussi. Et dans ce cas, je n\'ai même pas de Publish ou de ping vers le broker.\r\nLe serveur s\'arrête après la demande de connexion.\r\n2021-11-22T19:31:35.000Z INFO MQTT_SendConnect>Successfully sent\r\n','2021-11-22 20:54:36',0),(1644,666,'Issue',1,'Vous avez bien modifié le SubSystem afin de changer les SubSystemId et le SubSystemName ?\r\n','2021-11-22 20:57:15',0),(1645,661,'Issue',1,'Bonsoir,\r\nj\'ai aussi remarqué qu\'il y avait beaucoup de log. \r\nPourriez vous redescendre les log du VpiUaCLient en niveau ERROR ?\r\nCordialement\r\nMichel Condemine','2021-11-22 21:03:38',0),(1646,661,'Issue',447,'Pour l\'erreur de TypeMismatch, il s\'agit d\'une erreur de mapping dans le vpi line\r\n\r\n<Tag Id=\"ns=22;i=1030\" Address=\"FBDR-OUT-CV_QRStatus[1]-Fbdr1\" Type=\"Int64\" Name=\"FBDR-CV_QRStatus[1]-Fbdr1\"\r\n<Tag Id=\"ns=22;i=1041\" Address=\"FBDR-OUT-CV_QRStatus[2]-Fbdr1\" Type=\"Int64\" Name=\"FBDR-CV_QRStatus[2]-Fbdr1\"\r\n\r\n!clipboard-202111222158-i5dpv.png!\r\n\r\nNous allons corriger cela dans ce subsystem du VpiLine','2021-11-22 21:59:35',0),(1647,646,'Issue',436,'In US, for the tanks, process engineers look at percent level (it\'s the same in Lixhe).\r\nIt’s international, there is no specific unit for that.\r\nThey densimeter for solid percent using peering with flowmeter to calculate TPS.\r\n\r\nThere are ways to estimate amount of product in a tank with percent level and geometry of the tank.\r\n\r\nNote: for the tanks where they measure volume, they use \"gallons\" as unit.','2021-11-22 22:15:48',0),(1648,666,'Issue',424,'oui, oui je l\'ai bien configuré. j\'ai bien le fichier log avec le bon nom.\r\nPeut-être qu\'il y a autres choses que le SSL_Write qui m\'échappe encore.\r\n!clipboard-202111222232-txkoj.png!\r\n','2021-11-22 22:34:06',0),(1649,666,'Issue',424,'Il s\'avère que le publisher fait planter le serveur uniquement quand libVpiSK est lancé en parallèle. Sinon il attend la réponse du broker. N\'ayant pas de connexion avec un broker mosquitto, je ne peux pas aller jusqu\'au SSL_Write mais ça c\'est encore autre chose. Je continuerai de chercher en ce sens.','2021-11-22 23:43:26',0),(1650,661,'Issue',447,'Après mis en place de la dernière livraison sur la ligne Rotor, nous avons un problème de connexion sur un subsystem. le plus important de la ligne 840 nodes\r\n\r\nCi-joint le Log de ce subsystem et du serveur','2021-11-23 15:25:41',0),(1651,661,'Issue',1,'Bonjour,\r\nÊtes vous en configuration manuelle ou automatique ?\r\nSi manuelle les fichiers de configuration doivent être modifiés.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-23 15:40:21',0),(1652,661,'Issue',432,'Bonjour, \r\n\r\nLionel a normalement effectué cette mise à jour des configuration. Lionel pourrais-tu poster les fichiers de configuration du SubSystem en question? \r\n\r\nRien ne me saute au yeux au niveau des logs. \r\nLe fonctionnement est il pareil après redémarrage du LM? \r\n\r\nMichael ','2021-11-23 15:49:05',0),(1653,661,'Issue',447,'Nous sommes en configuration manuel\r\nNous avons bien modifié les configurations\r\nCi-joint la maquette complète','2021-11-23 16:55:22',0),(1654,661,'Issue',432,'La configuration du subsytem a l\'air correcte\r\n\r\nLionel avez vous essayé de redémarrer le LM? \r\n\r\nM. Condemine, en regardant les logs du Subsystem en question (UaClient7), j\'ai l\'impression que la reconnexion n\'utilise pas la fragmentation des MonitoredItems en fragment de 300 éléments. \r\nJ\'ai l\'impression que l\'on a eu une déconnexion et que par la suite il n\'arrive pas à Restore les MonitoredItems\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n','2021-11-23 17:11:02',0),(1655,661,'Issue',447,'Oui en redémarrant le LM nous avons systématiquement le même phénomène','2021-11-23 17:16:46',0),(1656,661,'Issue',432,'Auriez vous la possibilité de tester en activant uniquement le SubSystem7 ? \r\n\r\n\r\nMichael','2021-11-23 17:39:51',0),(1657,661,'Issue',447,'En activant seulement le subsystem7 c\'est exactement la même chose','2021-11-23 18:41:59',0),(1658,661,'Issue',1,'Bonjour,7\r\nbien que je n\'ai pas regardé la maquette et ses log.\r\nJe peux affirmer que si les informations relatives au découpage en paquet de 300MI ne sont pas présente c\'est que la bonne version du Vpi n\'est pas installée.\r\nJe regarderai la config ASAP.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-24 09:36:06',0),(1659,661,'Issue',447,'Bonjour\r\n\r\nLe découpage par paquet de 300 MI est bien réalisé. Mais il y a à un moment un problème. et le Log indique des delete et tentative de reconnexion sans cesse :\r\n\r\n!clipboard-202111241014-1prhx.png!\r\n\r\nLionel Claudel\r\n','2021-11-24 10:15:05',0),(1660,661,'Issue',1,'Bonjour Lionel,\r\nje vois que vous avez 9 instances du VpiUaClient sur le même serveur OPC UA. Les instances 1 à 6 semblent ne pas poser de problème en dehors d\'un publishInterval à 2000 retoqué par la serveur à 1000.\r\n<pre>\r\nxmlClientConfigEndElementHandler>Requested sampling interval 2000.000000 was changed to 1000.000000\r\n</pre>\r\nL\'instance 7 part en timeout sur la fonction de surveillance du serveur. L\'erreur de timeout apparait sur un lecture OPCUA.\r\n\r\nPourriez vous vérifier que le serveur n\'a pas atteint le nombre max de session en parallèle ?\r\nPar ailleurs pour ne pas mettre tout la configuration dans une ou deux instances du VpiUaClient ?\r\n\r\nJe continue à creuser.\r\n\r\nCordialement\r\nMichel','2021-11-24 12:23:26',0),(1661,661,'Issue',447,'Dans la configuration, il y a les subsystem de 5 à 9 qui pointe vers ce PLC.\r\n\r\nEn effet, seul le 7 pose problème\r\n\r\nLe 7 c\'est le seul qui a plus de 630 MI (il en a 840)\r\n\r\nLe nombre de session max côté PLC est de 20 - donc pas de soucis pour les 5 sessions + 1 de UA expert\r\n\r\nNous avons fait un test rapide avec tout sur le même subsystem, mais pas approfondi. Nous allons en refaire un est posté les log + config. Mais il me semble qu\'il y avait une erreur à partir de 2100 MI','2021-11-24 13:38:59',0),(1662,661,'Issue',447,'Ci-joint la config avec log pour avec 1 seul subsystem pour le PLC posant un problème\r\n\r\nIl y a en plus un dossier s\'appelant LogCrash (car nous avons eu une fois un crash au démarrage du serveur)','2021-11-24 14:57:10',0),(1663,659,'Issue',447,'Bonjour\r\n\r\nNous venons d\'avoir un crash en fonctionnement sur la ligne rotor (pendant la production, le serveur était correctement démarré) - pour info nous avons activé l\'archivage et valueinit sur un second node (partproducelist pour les OF virtuel) et concernant le vpiline nous avons également activé l\'OP220-01 en consommation d\'OF Virtuel)\r\n\r\nCdlt\r\n\r\nLionel Claudel','2021-11-24 15:18:28',0),(1664,661,'Issue',1,'Bonjour,\r\nil faut déterminer si le problème vient nombre de MI sur le PLC, du Vpi ou d\'autre chose.\r\nD\'après le message \r\n<pre>\r\nNous avons fait un test rapide avec tout sur le même subsystem, mais pas approfondi. Nous allons en refaire un est posté les log + config. Mais il me semble qu\'il y avait une erreur à partir de 2100 MI\r\n</pre>\r\nvous avez donc pu vous abonner à +2000MI. \r\nPourriez vous refaire le test et réaliser une capture wireshark ?\r\n\r\nCordialement\r\nMichel Condemine','2021-11-24 15:39:36',0),(1665,659,'Issue',447,'Nous avons eu 4 crash en fonctionnement sur la ligne Rotor.\r\n\r\nci-joint les procdump','2021-11-24 17:51:13',0),(1666,659,'Issue',432,'Bonjour, \r\n\r\nJ\'ai regardé les 5 procdumps postés cet après midi. Malheureusement, ils indiquent tous des piles d\'appels concernant la Stack/ClientLib (4 des procudmps ont exactement la même pile d\'appel). Je pense qu\'on est encore sur un scénario où la Session est corrompue (en terme d\'objet C++)\r\n\r\n\r\nMichael ','2021-11-24 18:12:01',0),(1667,661,'Issue',447,'Bonjour,\r\n\r\nJ\'ai fait 2 prises WireShark\r\n\r\nCi-joint le fichier avec ces captures et les log associé\r\n\r\n1er cas: avec subsystem 5 comportant l\'intégralité des souscriptions sur le PLC 10.100.2.70\r\n2nd cas: avec subsystem 7 comportant la souscription sur 840 MI sur le PLC 10.100.2.70\r\n\r\nCordialement\r\n\r\nLionel Claudel\r\n','2021-11-24 19:40:53',0),(1668,659,'Issue',1,'Bonjour,\r\nune question fondamentale :\r\n\"Est ce que vous utilisez la dernière version du serveur sur la ligne rotor qui crash\"\r\nD\'après moi puisque la nouvelle version ne connecte pas il doit s\'agir de l\'ancienne version. Dans ce cas toute investigation est inutile.\r\nCordialement\r\nMichel Condemine','2021-11-24 20:36:04',0),(1669,659,'Issue',447,'Bonsoir Michel\r\n\r\nOui c\'est la dernière livraison posté sur RedMine. \r\n\r\nVpiUaClient : 1.0.3.0 du 22/11/21 21:04\r\nClientLib: 1.0.6.3 du 22/11/21 21:03\r\n\r\nCordialement,\r\n\r\nLionel Claudel','2021-11-24 20:57:14',0),(1670,659,'Issue',447,'Et le serveur :\r\n1.0.6.3 du 22/11/21 20:49','2021-11-24 20:58:27',0),(1671,661,'Issue',432,'Bonjour, \r\n\r\nJ\'ai regardé les traces Wireshark et 2 types de paquets me sautent aux yeux: \r\n\r\n- des paquets de type ServiceFault avec comme information BadSessionId ou bien BadTooManyOperations \r\n- parfois un paquet détecté par Wireshark comme un \"MalformedPacket\" \r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2021-11-25 09:50:12',0),(1672,661,'Issue',1,'Bonjour Lionel,\r\navez vous eu mon message ?\r\nJe vous y demandais de changer le sampling intervalle : soit dans le PLC soit dans configuration du VpiUaClient.\r\nLors de la connection on a des centaines de fois le message suivant.\r\n<pre>\r\n2021-11-24T09:20:58.479Z CLIENT_ERROR xmlClientConfigEndElementHandler>Requested sampling interval 2500.000000 was changed to 1000.000000\r\n</pre>\r\n*Ce message indique que le PLC refuse le sampling interval demandé de 2500ms et le corrige à 1000.*\r\nIl est possible que le PLC se trouve mis en défaut pour une raison relative à ce problème.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-25 12:28:02',0),(1673,661,'Issue',447,'Bonjour\r\n\r\nNous avons fait le test sur un configuration (en se mettant à 1000ms) , nous n\'avons plus ce message mais le même type d\'erreur :\r\n\r\nNotificationMessageCallBack Failed\r\nClient_Api_read failed\r\nDelete\r\n...','2021-11-25 13:52:51',0),(1674,661,'Issue',1,'Bonjour Lionel,\r\nmerci d\'avoir fait cette modification. Meme si cela ne regle pas le problème, nous avons, maintenant, une configuration plus cohérente.\r\nEn continuant à étudier les traces Wireshark j\'ai trouvé un autre problème lié au serveur OPC du PLC lors de la suppression des MonitoredItems.\r\nOn peut voir sur la capture d\'écran suivante que le client (le VpiUaClient) demande la suppression de 2008 MI. \r\n!clipboard-202111251859-e0jta.png!\r\nEnsuite on reçoit une réponse serveur OpcUa_BadTooManyOperations.\r\n!clipboard-202111251858-rqlpo.png!\r\n\r\nQue peut en déduire ? \r\nLe serveur OPC UA ne supporte pas la suppression de 2008 MI en un seul appel.\r\nQue faire ?\r\nAdapter le client ?\r\nC\'est une solution. Mais est ce que l\'on pourrait changer par configuration les limites du serveur ?\r\n\r\nIl y a fort à parier que cette erreur bloque le serveur. En effet le client continue a réaliser des opérations et le serveur fini par ne plus répondre.\r\nJe vais essayer de regarder l\'option de modification du client pour fragmenter les appels à deleMonitoredItem comme je le faire pour CreateMonitoredItem.\r\n\r\nDans l\'attente auriez vous de nouvelle traces maintenance de le sampling intervalle est correctement paramétré ?\r\n\r\nJe vous tiens au courant.\r\nCordialement\r\nMichel Condemine\r\n','2021-11-25 19:10:26',0),(1675,661,'Issue',447,'Bonjour,\r\n\r\nJe ne vois pas de configuration côté serveur pour augmenter cela\r\n\r\nA ce jour côté serveur PLC nous avons : Nombre de sssions max 20 et Nombre maxi de surveillance maxi de MI: 10 000\r\n\r\nNous n\'avons pas pu faire de tracewireshark avec la nouvelle configuration - nous allons essayé de la faire aujourd\'hui.\r\n\r\nQuestion: Je comprend pour essayer de faire un découpage pour les delete et ca me semble pertinent\r\nen revanche, pourquoi la création par paquet de 300 ne fonctionne pas lorsque l\'on dépasse environ 640 MI? Est-ce que l\'on pourrait espacer les demandes de création par paquets de 300MI pour laisser plus de temps au serveur de \"souffler\"? Si oui, ce timer pourrait être paramétrable depuis le fichier dat?\r\n\r\nCordialement,\r\n\r\nLionel Claudel','2021-11-26 08:59:51',0),(1676,661,'Issue',432,'Bonjour, \r\n\r\nSur les précédentes traces Wireshark je vois que suite à la demande de suppression des 2008 nœuds, pour la recréation, c\'est une liste de 2008 Items qui est redemandée : \r\n\r\n!clipboard-202111261123-23iv7.png!\r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2021-11-26 11:23:33',0),(1677,669,'Issue',432,'Bonjour M. Condemine. \r\n\r\nNous avons en effet mis en place un \"pansement\" pour arrêter UN des types de crashs qu\'on avait à l\'arrêt (celui qui est systématique sur toutes les lignes) \r\n\r\n\r\nComme vous le savez nous avons un bout de code au démarrage du serveur LM, qui va chercher la valeur pour la liste d\'OF ERP qui se trouve dans le serveur (mis en place par le VpiValuesInit). Ce fonctionnement est aussi mis en place pour 2 autres listes (la liste des recettes et la liste des OF Virtuels)\r\nNous avons remarqué la corrélation suivante : si on va aller chercher une valeur dans le serveur pour une variable qui n\'est pas initialisée ou mal initialisée, pas de crash en process mais on a un crash a l\'arrêt au moment de suppression des ressources du serveur. \r\n\r\nNous avons donc mis en place dans le fichier de configuration du VpiLine un moyen de lui indiquer quelles valeurs seront restitués au démarrage. \r\n\r\nCordialement, \r\n\r\nMichael\r\n','2021-11-26 15:31:44',0),(1678,669,'Issue',1,'Bonjour,\r\nil semble donc y avoir un problème avec l\'initialisation des variables. \r\nPourriez vous essayer de définir Mal initialisé. \r\nJ\'imagine que pas initialisé correspond à DataType=0, ArrayType=0 et Value NULL.\r\nEst ce que le problème d\'initialisation vient :\r\n* des données dans la base PG ?\r\n* de l\'encodage réalisé par le VfiPgSql ?\r\n* du décodage réalisé par le VpiValuesInit ?\r\n\r\nCordialement\r\nMichel Condemine','2021-11-26 15:39:56',0),(1679,669,'Issue',432,'Quand je dis mal initialisé, ce sont les rares cas où le VpiLine va chercher la valeur trop tôt dans le serveur (avant que le VpiValuesInit ait eu le temps de remettre la donnée)\r\n\r\nSinon il y a problème quand le VpiLine va chercher une valeur qui n\'est pas configurée à restituer au niveau du VpiValuesInit\r\n\r\n\r\nJe pense donc que c\'est lorsque on utilise la valeur telle que initialisée par le serveur au démarrage qu\'il y a problème à l\'arrêt. \r\n\r\n\r\nCordialement, \r\nMichael \r\n\r\n\r\n\r\n','2021-11-26 15:50:49',0),(1680,661,'Issue',447,'Bonjour,\r\n\r\nVous trouverez ci-joint un programme PLCSIM avec dans l\'objet PLC_1/DataBlocksGlobal/DBTESTDEBUGG/ListNode un ensemble de 3000 nodes de type string\r\n\r\n!clipboard-202111271219-lj7jh.png!\r\n\r\nEgalement ci-joint une conf OOUA avec un VpiUaclient en conf manuel sur les 2000 premiers nodes de type string\r\n\r\nLe phénomène constaté sur les PLC physique à l\'air de se reproduire avec cette conf et va peut-etre vous aider dans les tests \r\n\r\nEndPoint du PLC: opc.tcp://172.17.202.15:5775\r\n\r\nCordialement \r\n\r\nLionel Claudel','2021-11-27 12:24:21',0),(1681,666,'Issue',424,'Bonjour M. Condemine,\r\nAvez-vous trouver une solution concernant le problème avec SSL_Write?\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2021-11-29 09:25:55',0),(1682,666,'Issue',1,'Bonjour,\r\nje suis perdu avec les réponses ci-dessus.\r\nVous semblez penser que le crash apparait lorsque le VpiSk tourne en même temps que le VpiMqtt. \r\nPouvez vous avant tout me confirmer cela ?\r\nSur mes maquettes Windows et Linux, j\'ai les deux Vpi Actifs en même temps sans aucun problème. \r\n\r\nEst ce que l\'on peut organiser un échange Team en début de semaine ?\r\n\r\nCordialement\r\nMichel Condemine','2021-11-29 10:18:01',0),(1683,669,'Issue',1,'Bonjour,\r\nvous avez constaté que le serveur OOUA crash à l\'arrêt dans deux situations\r\n* Quand le VpiValuesInit est mal configuré (Problème facile à régler)\r\n* Quand le VpiLine va chercher des valeurs dans la cache du serveur avant leurs initialisations (problème assez facile a régler)\r\nJ\'imagine que le \"pansement\" que vous avez mis en place dans le VpiLine consiste en un Kill process de l\'OOUA Server.\r\nPourriez vous le confirmer ?\r\n\r\nCordialement\r\nMichel Condemine','2021-11-29 10:28:02',0),(1684,669,'Issue',432,'Bonjour M. Condemine, \r\n\r\n\r\nLe pansement permet uniquement de s\'assurer que les valeurs qu\'on va chercher correspondent au nœuds restitués par le VpiValuesInit (avec un paramétrage dans le VpiLine.dat, on peut indiquer au VpiLine pour quels nœuds il faut aller chercher la valeur dans le serveur. \r\n\r\nNous avons 3 paramètres : \r\n\r\nINIT_VALUE_AVAILABLE_ERP_OF : Si True, on va chercher la liste d\'OF ERP\r\nINIT_VALUE_AVAILABLE_VIRTUAL_OF Si True, on va chercher la liste d\'OF Virtuels\r\nINIT_VALUE_AVAILABLE_RECIPE, Si True, on va chercher le liste de recettes. \r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n','2021-11-29 10:50:51',0),(1685,642,'Issue',1,'Bonjour,\r\naprès réflexion il existe un mécanisme simple, que tout Vpi peux utiliser, pour s\'assurer qu\'un autre Vpi a fini son travail.\r\nIl consiste à utiliser le DeviceState. Ce node est créé pour chaque Vpi à <pre>SubsystemId + 4</pre>\r\nCe Node est toujours une UAVariable de type StatusCode dans le namespace 1 du serveur. On connait donc avec certitude son nodeId.\r\nIl suffit donc de lire la valeur ce nodeId et d\'attendre qu\'elle indique GOOD.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-11-29 11:16:08',0),(1686,666,'Issue',424,'Bonjour,\nEn voulant me connecter au broker mosquitto, le programme plantait dès l\'envoi du \"SendConnect\". (Est-ce au moment de l\'ack de connexion envoyé par le broker? je ne sais pas).\n\nJ\'ai essayé de lancer le serveur sans le VpiSk, 4 fois sur 5 je n\'avais pas de plantage. Je ne pense pas que le problème vient du VpiSk étant donné qu\'une fois sur 5 le serveur plante qd même.\n\nJe n\'ai pas pu mener jusqu’au bout le test avec mosquitto car après l\'envoi \"SendConnect\", Soit le serveur plante, soit je n\'ai pas de réponse du broker. Sans connexion au broker je ne peux pas tester plus loin.\n\nJe suis disponible à partir de mercredi 10h pour un point Teams.\n\nBien cordialement,\nMaycko LOUIS ','2021-11-29 15:00:35',0),(1687,666,'Issue',1,'Bonjour,\r\nje vous propose mercredi 14h00-15h00.\r\nJe prépare l\'invitation Team.\r\n\r\nCordialement\r\nMichel Condemine','2021-11-29 20:18:17',0),(1688,659,'Issue',489,'LES RAPPORT CRASH POUR LE 30-11-21 Sur PREPASTACK ET ROTOR','2021-12-01 10:04:36',0),(1689,666,'Issue',424,'Bonjour M. Condemine,\r\nAprès avoir commenté la partie du code qui publie les MetaDatas ainsi que les Pings, le serveur continue de planter.\r\nLe Publisher se connecte au broker, envoi quelques publish et finit par planter (après 2, 3 minutes d\'utilisation). Soit à cause d\'un segmentationFault, soit à cause d\'un doubleFree corruption.\r\nj\'essaierais d\'avoir plus d\'indice semaine prochaine.\r\n\r\nCordialement,\r\nMaycko LOUIS','2021-12-03 19:11:59',0),(1690,666,'Issue',424,'Bonjour M. Condemine,\r\nCi-dessous les deux points qui font planter le VpiUaPub que j\'ai pu relever.\r\n\r\n> *1)* Le Publisher plante systématiquement quand j\'essaye de publier une variable qui soit un *tableau* d\'extensionObj (ex: #recipeList).\r\nCi-dessous deux images : \r\nle débogage effectué et le code correspondant:\r\n\r\nDébogage \r\n\r\n!SIGFAULT8.JPG!\r\n\r\nCode\r\n\r\n!SIGFAULT9.JPG!\r\n /\r\n /\r\n /\r\n /\r\n /\r\n> *2)* Le publisher plante parfois lors de la préparation du payload. Soit dans la fonction PrepareJSONPublisherPayLoad, soit dans la fonction PrepareJSONDataSetWriter.\r\nLorsque le programme plante à ce niveau là. j\'ai l\'impression que c\'est soit un malloc qui ne passe pas, soit c\'est un free. Possiblement lié aux fonctions Vpi_String_AttachCopy et Vpi_String_Clear.\r\nDans les deux fonctions de payload cités précédemment je constate que vous utilisez la même variable \"szKey\" que vous allouez/désallouez tout au long des fonctions pour créer les différents objects Json.\r\nEst-ce vraiment nécessaire?\r\nCi-dessous deux images : \r\nle débogage effectué et le code correspondant:\r\n\r\nDébogage \r\n\r\n!SIGFAULT10.JPG!\r\n\r\nCode\r\n\r\n!SIGFAULT11.JPG!\r\n','2021-12-05 11:26:39',0),(1691,666,'Issue',1,'Bonjour,\r\nMerci pour ce retour.\r\nj\'ai trouvé et corrigé un problème dans la méthode d\'encodage du PUBLISH.\r\nIl y avait en fait deux problèmes le premier sur le calcul d\'un longueur et le second sur l\'indice associé dans un tableau.\r\nJe prepare une livraison pour aujourd\'hui ou demain matin.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2021-12-05 11:33:40',0),(1692,666,'Issue',424,'Bonjour M. Condemine,\r\nAvez-vous pu préparer la livraison?\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2021-12-06 10:52:45',0),(1693,666,'Issue',1,'Bonjour,\r\nje viens de livrer.\r\nJe ferme ce ticket. Merci d\'en ouvrir un nouveau en cas de problème.\r\n\r\nCordialement\r\nMichel Condemine','2021-12-06 12:31:23',0),(1694,666,'Issue',1,'Bonjour Maycko,\r\navez vous pu tester les derniers binaires ?\r\nCordialement\r\nMichel Condemine','2021-12-07 11:15:00',0),(1695,666,'Issue',424,'Bonjour M. Condemine,\r\nJ\'ai récupéré le code et je suis en train de tester. \r\nPour l\'instant je ne charge pas le VpiPub, j\'utilise que le VpiSk et j\'ai des crashs (segfault) du serveur. Je vérifie les différents scénarios.\r\n\r\nCe que j\'ai pu remarquer c\'est que :\r\n- Si dans le fichier Subsystem je définis un NbElement différent de 0, le serveur crash la plupart du temps au démarrage.\r\n- Si je définis un NbElement = 0, le serveur se lance bien mais quand je fais SkWrite d\'un tableau d\'une taille supérieur à celle définie dans le fichier SubSystem le serveur crash.\r\n\r\ncordialement,\r\nMaycko LOUIS','2021-12-07 12:03:25',0),(1696,673,'Issue',1,'Bonjour,\r\naprès une analyse rapide. \r\nIl apparait que le crash se produit quand le Publisher détecte un changement d\'état et tente de l\'encoder.\r\nJe ne peux pas dire grand chose lorsque le serveur démarre et se connecte bien au broker sans produire de publish.\r\nAvez vous bien tout régénéré ?\r\nSi oui, pourriez vous me poster votre configuration ?\r\n\r\nCordialement\r\nMichel Condemine','2021-12-07 14:01:47',0),(1697,674,'Issue',1,'Bonjour,\r\nje viens de faire un test avec les derniers binaires.\r\nLe VpiValuesInit fonctionne parfaitement.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n ','2021-12-07 19:50:11',0),(1698,671,'Issue',1,'Bonjour,\r\nle problème était lié aux Méthodes et non pas au dernier TAG.\r\nLes méthodes n\'était pas comptabilisées en tant que TAG. Le problème est donc corrigé dans la version 1.0.6.5 du serveur.\r\n\r\nCordialement\r\nMichel Condemine','2021-12-07 20:48:17',0),(1699,673,'Issue',1,'Bonsoir,\r\nen plus de la configuration pourriez vous me poster les log dans les deux scénarii ?\r\n\r\nCordialement\r\nMichel Condemine','2021-12-07 22:02:13',0),(1700,662,'Issue',432,'Bonjour , \r\n\r\n\r\nCi dessous le retour de Iconics sur le sujet des alarmes : \r\n\r\n\"Numéro de ticket : INC-05690-M0F3Z1 : AlarmWorX Viewer / OpenOPCUA\r\n\r\n \r\n\r\nSymptôme : Lors de l’affichage d’un display, les alarmes existantes ne sont pas visible dans AlarmWorXViewer.\r\n\r\n \r\n\r\nDétails :\r\n\r\nJe viens de refaire une batterie de tests en compagnie d’Olivier Ramel, nous n’avons pas de données retournées sur les alarmes existantes dans les traces.\r\n\r\nLe fonctionnement normal apparent est qu’après un CreateMonitoredRequest, la première trame PublishResponse contient l’état des alarmes déjà actives.\r\n\r\nDans le cas d’OpenOPCUA, cette première PublishResponse ne contient pas les alarmes déjà actives.\r\n\r\nBien que cela fonctionne entre Iconics et d’autre serveurs tiers (OPC Foundation), nos requêtes sont identiques et ne nous permettent pas d’en déduire ce qui ne fonctionne pas avec le serveur OpenOPCUA.\r\n\r\n \r\n\r\nSuite : Nous aurons besoin de l’avis de 4CE / Michel Condemine pour savoir ce que le serveur OpenOPCUA vérifie dans le fonctionnement pour renvoyer les alarmes existantes. \"\r\n\r\n\r\nCordialement, \r\n\r\nMichael','2021-12-08 11:57:39',0),(1701,673,'Issue',424,'Bonjour,\r\nConcernant les logs, avec la dernière version du VpiUaPub que vous nous avez fourni, le Publisher ne va pas plus loin que ce que vous voyez dans le fichier clipboard-202112071343-pxnrc.png.\r\nIl se connecte au Publisher et c\'est tout. Il n\'y a ni publish de data, ni de ping.\r\nJe suis donc retourné sur la version précédente qui lui, fait des pings, publie les données simple, les scalar, ses seuls défauts c\'est qu\'il crash immédiatement dès qu\'on lui fournit une variable de type array et parfois pendant l\'encodage des payloads. c\'est ce que j\'avais précisédans le ticket précédent qui a été fermé(#666).\r\n\r\nConcernant la configuration, veuillez trouver ci-joint le model, l\'instance, le fichier Config ainsi que les fichiers subsystem utilisées.\r\nPour info, que ce soit avec cette configuration ou d\'autres, les variables \"array\" font planter le publisher, donc le CoreServer.\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n\r\n','2021-12-08 13:18:34',0),(1702,673,'Issue',1,'Bonjour,\r\nmerci pour ces informations. Je vais les étudier ce soir a l\'hotel.\r\nEst ce que vous avez pu faire des tests avec la configuration que je vous ai fourni ?\r\nElle est disponible ici http://www.openopcua.org/redmine/attachments/2298 \r\n\r\nCordialement\r\nMichel Condemine','2021-12-08 13:27:41',0),(1703,674,'Issue',432,'Bonjour, \r\n\r\nJe pense que le comportement que nous avons eu est le symptôme de 2 problèmes:\r\n\r\n1) Le VPIValuesInit récupère maintenant 3 des derniers valeurs dans la BDD mais ne restitue pas la plus récente parmi les 3. (Avec la requête, le plus récent est le 1 élément parmi les 3) \r\n\r\n2) Au démarrage du serveur, le serveur initialise le tableau de UDT en tant que tableau de 1 élément. Le VFI enregistre cette valeur dans la base (avec comme TypeId le Datatype). Si pendant les manips effectuées, la 3ème valeur la plus récente est ce \"mauvais enregistrement\", le VPIInitValues restitue un tableau de 1 élément initialisé avec des 0.\r\n\r\n\r\nDisponible pour en discuter si besoin\r\n\r\nCordialement, \r\nMichael','2021-12-08 14:28:41',0),(1704,673,'Issue',424,'Oui, j\'ai testé avec cette config.\r\nAvec la dernière version du publisher. il se lance bien, il se connecte au broker et attend.\r\nJe vois bien les variables Dynamic (UInt16, Float, Int32, String) évoluer depuis le client Opcua, mais le publisher ne les publie pas.\r\n\r\n!clipboard-202112081431-pwi3x.png!\r\n\r\n!clipboard-202112081445-juozi.png!\r\n','2021-12-08 14:46:36',0),(1705,642,'Issue',432,'Bonjour, \r\n\r\nJe vais livrer dans les minutes qui arrivent une version du VpiLine qui applique cette solution. \r\n\r\nCependant dans le cas ou le nœud n\'existe pas (pas encore crée ou VpiValuesInit non présent), le ProcessReadOOUACache renvoi Good au lieu de renvoyer un status indiquant que le nœud n\'existe pas. \r\n\r\nPourrais on envisager de corriger cela? \r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n','2021-12-08 17:10:07',0),(1706,678,'Issue',436,'Bonjour Stéphane,\r\n\r\nFYI all the Enterprise Architect files (.eapx) are located in the \"Model\" directory (under: Lixhe OPC-UA - Information Model > Model).\r\n\r\nAll files names are built as follows: <Imerys-Fall2021>-<latest date>.eapx.\r\nExample: Imerys-Fall2021-13_12_2021.eapx.\r\n\r\nWhen you want to modify a file, you must append your name acronym at the end of the file name while keeping the latest date.\r\nExample: Imerys-Fall2021-13_12_2021-SGR.eapx\r\n\r\nI hope it helps.\r\n\r\nBR,\r\nChris','2021-12-16 12:05:47',0),(1707,677,'Issue',1,'Bonjour,\r\nje viens de faire des essais avec la dernière base de code. \r\nJe ne rencontre aucun crash les données sont bien échangées entre le plant et le line (Usinage dans mes tests)\r\nDescription du scénario de test :\r\nUn serveur line (Usinage)\r\nUn serveur Plant connecté en mode AUTO uniquement à l\'usinage. (1 seul Vpi. Le VpiUaClient)\r\nÉcriture dans ERP_OF_List au sein du Plant. Il s\'agit d\'un Node aspiré depuis l\'Usinage.\r\n!clipboard-202112170706-wfpmi.png!\r\n\r\nLa valeur écriture est donc un tableau d\'extensionObject\r\n!clipboard-202112170707-gvhmp.png!\r\n\r\nCette valeur est reçu correctement dans l\'Usinage\r\n!clipboard-202112170708-ophuo.png!\r\n\r\nJe vais maintenant faire d\'autres essai avec deux VpiUaClient, l\'un en mode Auto et l\'autre en mode Manu.\r\n\r\nCordialement\r\nMichel Condemine','2021-12-17 07:09:55',0),(1708,681,'Issue',285,'XGBoost n\'est pas un framework de deep learning mais de machine learning plus classique pour apprendre sur de la donnée structurée, dans beaucoup de cas ça peut largement suffire.\r\nSi en revanche tu as à dispo de l\'image il faudrait faire du transfer learning avec des architectures classiques resNet ou VGG... Pour cela on pourra utiliser Tensorflow 2, Pytorch ou Keras. Keras est très facile à prendre en main, c\'est une surcouche de tensorflow. Pytorch est le framework préféré des puristes qui veulent pouvoir maîtriser l\'entraînement et la prédiction et faire des ajustements sur mesure si besoin. En réalité l\'analyse d\'image et de texte est déjà tellement avancée qu\'on peut gérer la plupart des usecases avec Keras (et donc tensorflow).','2021-12-20 14:05:58',0),(1709,679,'Issue',424,'Bonjour,\r\nJ\'ai compilé le livrable du 12/12/2021 pour la cible Cylomix et j\'ai les problèmes ci-jointes au lancement du serveur.\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n\r\n\r\n','2021-12-20 16:53:17',0),(1710,679,'Issue',1,'Bonjour,\r\nmerci pour ce retour. Pourriez vous me partager les configurations associées au log ?\r\n\r\nBien cordialement\r\nMichel Condemine','2021-12-20 18:11:07',0),(1711,679,'Issue',1,'Bonjour,\r\nje viens de regarder les fichiers de log qui montrent de nombreuses erreurs de parsing.\r\nVous semblez avoir modifié le modèle OPC UA.\r\nEst ce le cas ?\r\nIl y par ailleurs des erreurs assez grave sur les types de données :\r\nInitializeEncodeableObject>GetNodeIdFromDataTypeList failed. The UAVariable have no dataType \r\n\r\nCes erreurs peuvent expliquer les problèmes rencontrés.\r\nPourriez vous m\'expliquer cela ?\r\n\r\nEst ce que le serveur fonctionne avec la configuration de simulation que je vous ai transmis ?\r\n\r\nCordialement\r\nMichel Condemine','2021-12-20 18:18:43',0),(1712,681,'Issue',1,'Est ce que tu peux fournir, dans ce ticket, les liens sur les différents projets ?\r\nDans l\'idéal avec des exemples de code ?','2021-12-20 22:03:52',0),(1713,679,'Issue',424,'Bonjour,\r\nLe modèle utilisé est le modèle que je vous ai transmis dans le ticket #673.\r\nLa seule différence c\'est que entre le test 1(fichiers 1.zip) et le test 2 (fichier 2.zip) j\'avais commenté les variables de type ExtensionObject dans le fichier config Subsystem.Mqtt.\r\nDans le test 1 le fichier SubSystemMqtt avait des variables ExtensionObject\r\n- Résultat: Crash du VpiPub pendant le parsing\r\nDans le test 2 le fichier SubSystemMqtt n\'avait pas de variables ExtensionObject (commenté)\r\n- Résultat: \r\n-- On obtient les erreurs \"assez grave sur les types de données\" dont vous parlez mais le Publisher se connecte au broker puis\r\n-- Crash du VpiSk pour d\'autres raisons qui semble être lié au TransfertToCoreServerCache\r\n\r\nJe vous confirme que le serveur fonctionne avec la config de simulation que vous nous avez transmis. \r\nCela dit cette simulation me montre que l\'architecture CoreServer -> VpiUaJsonMqtt fonctionne et avec des types simples. Ce qui ne représente pas notre architecture réelle.\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n','2021-12-21 11:45:11',0),(1714,679,'Issue',1,'Bonjour,\r\nje vous remercie pour ce retour.\r\nMaintenant que j\'ai la confirmation que le serveur et son publisher fonctionnent en mode simulation je vais pouvoir adresser le cas des User DataType (UDT).\r\nIl faut corriger les erreurs de parsing liées à une mauvaise configuration ou une évolution de votre besoin. \r\nLe Vpi détecte 136 TAG mal configurés. Je vais faire évoluer le Vpi pour qu\'il supporte les nouvelles adresses.\r\nEst ce que l\'on pourrait planifier une séance de travail +/- 1h afin de valider votre modèle de données OPC UA et/ou le faire évoluer?\r\nPour ma part je suis resté sur le modèle ci dessous.\r\n!clipboard-202112211159-qlhk1.png!\r\nEn cas d\'évolution nous pourrons générer un nouveau modèle et mettre le VpiSk en conformité.\r\n\r\nBien cordialement\r\nMichel Condemine\r\n','2021-12-21 12:03:08',0),(1715,677,'Issue',1,'Bonjour,\r\nj\'ai fait de gros progrès dans la résolution du problème de ce ticket.\r\nIl y avait une ancien libération de resource incorrectement positionnée.\r\nIl y a par ailleurs de nombreuses erreurs dans configuration prélevée à TREMERY.\r\n*Il faut en particulier que l\'ARRAYDIMENSIONS corresponde à la déclaration faite dans le SubSystem.*\r\nJe suis en train de finaliser cette partie pour les déclarations dynamique. \r\nVous avez déclaré les tableaux comme vous auriez déclaré des scalaires.\r\nPar exemple :\r\n<pre>\r\n<Tag Id=\"ns=3;i=16\" Name=\"ERPOfList\" Description=\"ERPOfList\" Type=\"ns=1;i=381\" AccessRight=\"Input_Output\" Address=\"ns=5;i=16\"/>\r\n</pre> \r\nOn peut en parler vers 17h00 si vous voulez.\r\n\r\nCordialement\r\nMichel Condemine','2021-12-21 16:14:00',0),(1716,685,'Issue',436,'The Companion Specification OPC 40250-1 is available on the drive.','2022-01-03 13:09:09',0),(1717,686,'Issue',436,'','2022-01-03 13:10:40',0),(1718,683,'Issue',436,'','2022-01-03 13:11:59',0),(1719,687,'Issue',1,'Same for XYZDataType','2022-01-03 13:33:15',0),(1720,678,'Issue',1,'','2022-01-03 13:35:30',0),(1721,664,'Issue',1,'','2022-01-03 15:05:22',0),(1722,667,'Issue',1,'','2022-01-03 15:06:04',0),(1723,670,'Issue',1,'','2022-01-03 15:06:37',0),(1724,676,'Issue',1,'','2022-01-03 15:07:08',0),(1725,683,'Issue',1,'Need more information and/or reorganize the inheritance','2022-01-03 15:10:41',0),(1726,687,'Issue',1,'','2022-01-03 15:27:26',0),(1727,687,'Issue',1,'We complete the XYZDataType and used it in the GantryType.\r\nIndirectPowerDataType is ok','2022-01-03 15:44:39',0),(1728,688,'Issue',436,'Bonjour Michel,\r\n\r\nEst-ce que vous avez moyen de fournir un retour sur ce point SVP afin d\'essayer de nous débloquer ?\r\n\r\nMerci,\r\nChristophe','2022-01-06 16:55:21',0),(1729,688,'Issue',1,'Bonjour,\r\nquelques questions :\r\n* Avez vous bien modifié vos Vpis ?\r\n* Utiliser vous mes binaires ?\r\nLe message d\'erreur semble indiquer que le ProjectFolder n\'a pas été positionné.\r\n\r\nCordialement\r\nMichel Condemine','2022-01-06 17:16:29',0),(1730,688,'Issue',432,'Bonjour, \r\n\r\nOui nous avons modifié nos Vpi ainsi qu\'utilisé les binaires \r\nSommes nous d\'accord que c\'est uniquement dans le fichier oouaprj que l\'on doit indiquer ce nom de dossier? \r\n\r\nCordialement, \r\n\r\nMichael','2022-01-06 17:19:44',0),(1731,688,'Issue',1,'Bonjour,\r\nrien ne change dans les fichiers de configuration.\r\nLe code du serveur et des vpi a changé.\r\nLe VpiUaCLient fonctionne très bien. Vous avez les bons binaires.\r\nOn peux faire un call à 17h30.. MAX 30 MIN\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-01-06 17:24:07',0),(1732,688,'Issue',432,'Super merci je vous envois une invitation Teams ','2022-01-06 17:26:13',0),(1733,690,'Issue',436,'Hello Stephane,\r\n\r\nI think it would be nice if you can deliver the file by COB January 14th.\r\nWe will then be able to start mapping on January 17th. \r\n\r\nBR,\r\nChris','2022-01-07 08:14:31',0),(1734,692,'Issue',447,'Bonjour,\r\n\r\nLes 2 DataType sont différents en terme d\'attributs et les 2 sont utilisés dans le modèle. J\'ai donc modifié un des 2 Datatypes en MissionAGVDataType\r\n\r\n!clipboard-202201100915-4teu2.png!\r\n\r\n','2022-01-10 09:15:52',0),(1735,693,'Issue',447,'Modèle V19','2022-01-12 10:40:12',0),(1736,695,'Issue',1,'Bonjour,\r\nvous pouvez copier des images directement dans les tickets Redmine (copier/coller).\r\nDans Crash-LM-PileAppels-1.png je ne vois pas le début de la callstack. Pourriez vous me la montrer.\r\nJe vous propose de faire une session Team dans l\'AM entre 15h et 16h\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-01-12 13:40:33',0),(1737,695,'Issue',433,'Bonjour Michel,\r\n\r\nMalheureusement, je n\'ai pas pensé à mémoriser le haut de la pile, et j\'ai arrêté le serveur depuis pour continuer des tests.\r\n\r\nEst-ce que cela remet en cause la réunion de 15h?','2022-01-12 14:11:18',0),(1738,695,'Issue',433,'Bonsoir Michel,\r\nJe suis retombé dans le crash d\'hier, avec les mêmes adresses en fin de pile, ce qui me permet de vous la restituer complète.\r\n\r\n!clipboard-202201121849-pbheg.png!\r\n!clipboard-202201121849-phejq.png!\r\n','2022-01-12 18:50:00',0),(1739,695,'Issue',433,'','2022-01-12 19:31:36',0),(1740,695,'Issue',433,'Vous trouverez ci-joint les 2 nouvelles versions de nos dll (j\'ai supprimé du ticket celle envoyée hier pour éviter toute confusion) :\r\n- VpiLined.dll\r\n- StructuresEmotorsd.dll\r\n\r\nElles intègrent principalement :\r\n- Suppression des messages de lock/unlock qui noyaient l\'information sans être plus utiles\r\n- Sécurisation de la gestion des FREE et des DELETE (factorisation de la gestion des VpiString et neutralisation des pointeurs libérés par affectation d\'un Vpi_Null) + sécurisation de la gestion de plusieurs vectors pour lesquels on attaquait bille en tête les .begin() et .end() sans vérifier que le vector était bien défini.\r\n\r\nC\'est avec ces 2 dll que j\'ai reproduit le crash dont la pile d\'appel exhaustive est fournie plus haut.\r\n','2022-01-12 19:37:30',0),(1741,695,'Issue',433,'Bonjour Michel,\r\nNouveau crash, avec base de pile similaire, mais pas le même contenu de pile (plus courte cette fois) :\r\n!clipboard-202201131702-9mixy.png!\r\n','2022-01-13 17:02:10',0),(1742,695,'Issue',1,'Bonjour,\r\nun chose m\'etonne.\r\nVous avez les symboles, n\'est ce pas. Alors, pourquoi ne voit on pas les fonctions/méthodes sources de l\'appel ?\r\n\r\nCordialement\r\nMichel','2022-01-13 17:05:43',0),(1743,701,'Issue',447,'Bonjour\r\n\r\nCorrigé dans la version 2.20 ci-jointe\r\n\r\nLionel Claudel','2022-01-17 10:16:13',0),(1744,695,'Issue',433,'Bonsoir,\r\nVeuillez trouver ci-joint (22-01-17-BinairesLM.zip) de nouveaux binaires pour le LM : Vpi Line + library StructuresEmotors (dll+PDB).\r\nNote : Binaires pour mise à jour du LM de la maquette, pas du PM.\r\n\r\nCette mise à jour contient la sécurisation de la gestion mémoire lors des appels d\'encodeur et décodeur depuis le Vpi Line : La zone d\'échange est désormais réservée ET libérée par l\'appelant (Vpi Line) puis exploitée (remplie) par la library, sécurisé les valorisations (Vpi_Null) après free et amélioré la sécurité autour des opérations d\'encodage et décodage (gestion de status code pour ne pas utiliser des blocs pour lesquels on aurait dépisté des problèmes).\r\n\r\nNous n\'avons pas encore amélioré plus avant la gestion des Vpi_String (passage en paramètres des pointeurs plutôt que retour direct) car il nous reste des interrogations. \r\n\r\nCordialement.\r\n','2022-01-17 18:38:01',0),(1745,695,'Issue',432,'Bonjour, \r\n\r\n\r\nPetite information supplémentaire. \r\nAfin de livrer une version des binaires ce soir, nous n\'avons pas pu effectuer les tests exhaustifs que nous souhaitions faire. De ce fait, nous ne pouvons nous ni confirmer ni infirmer que le problème est résolu. Nous allons continuer nos tests d\'ici le point de synchro de demain 11h. \r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n','2022-01-17 18:52:43',0),(1746,679,'Issue',1,'Bonjour,\r\naprès relecture du dernier ticket je constate qu\'il convient de corriger le modèle avant de corriger un éventuel problème de cohabitation entre les deux Vpis.\r\nJe vous propose une session jeudi. Si cette dans ne convenait pas j\'ai quelques plus de disponibilité la semaine prochaine.\r\n\r\nBien cordialement\r\nMichel Condemine\r\n\r\n','2022-01-18 09:52:47',0),(1747,692,'Issue',1,'Bonjoru Lionel,\r\nnous avons le même genre problème avec ResponseAGVDataType qui est présent deux fois dans le modèle.\r\nL\'une des instances ne contient pas d\'attribut\r\n!clipboard-202201182248-bi0es.png!\r\n\r\nCordialement\r\nMichel Condemine','2022-01-18 22:49:16',0),(1748,703,'Issue',1,'Fixed','2022-01-19 15:54:12',0),(1749,692,'Issue',447,'Bonjour\r\n\r\nJ\'ai corrigé dans la version 2.21 ci-jointe\r\n\r\nCordialement,\r\n\r\nLionel Claudel','2022-01-20 10:31:44',0),(1750,704,'Issue',1,'Hello,\r\nM580 is OPC UA compliant but i\'m not sure if the embedded server support UDT.\r\nMy advice is to use OpenOpcUaCoreServer as PLC aggregator. In that case it don\'t really matter if the PLC is UA compliant or not.\r\n\r\nI hope it help\r\n\r\nRegards\r\nMichel Condemine','2022-01-21 16:02:09',0),(1751,704,'Issue',532,'This device seems compatible with \"ComplexTypes2017\" is enough to use information model with it?','2022-01-21 16:21:47',0),(1752,704,'Issue',531,'Guillaume Ogier wrote in #note-2:\r\n> This device seems compatible with \"ComplexTypes2017\" is enough to use information model with it?\r\n\r\nDear Michel,\r\n\r\nWe would prefer to select devices which natively support OPC UA framework as far as possible since the machine is being designed from scratch. This supplier actually has Siemens S7-1500 PLC but due to very high lead time it is not matching our timeline. This is the reason they are looking at another PLC with shorter lead time. So if possible let us identify a PLC which can support all OPC UA functionality as needed. \r\n\r\nWe will definitively use OpenOpcUaCoreServer where we do not have any other option. We can offload maximum work to suppliers as far as possible.\r\n\r\nDo let us know your thoughts as well.\r\n\r\nBest regards,\r\nChirag','2022-01-21 16:25:25',0),(1753,693,'Issue',447,'Bonjour Michel\r\n\r\nEn plus du bug lors de la génération de LogisticClass (sur l\'AGVRequetEnum) et RotorClass (Guid dans les Alias), j\'ai constaté lors d\'un essai d\'instanciation de l\'objet ProductionLineType (présent dans le Shared) une anomalie je pense.\r\n\r\nDans MachineType il y a un dossier Traceability (OK à l\'instanciation) puis un attribit Traceability_Data (Ok) et Traceability contient un attribut de type Group_Control_Value_Datatype (OK) qui l\'attribut Control_Value. Mais cette attribut et de type Receive_ControleValue_Datatype (conforme au modèle) mais il devrait etre du type Receive_ControlValue_VariableType (qui existe bien dans le nodeset)\r\n\r\n!clipboard-202201211829-ufczw.png!\r\n\r\nJe pense qu\'il y a le même soucis dans ERP_OF_Datatype lorsque l\'on n\'arrive au niveau du Part_Produce Datatype \r\n\r\nCordialement,\r\n\r\nLionel Claudel','2022-01-21 18:33:17',0),(1754,695,'Issue',436,'Bonsoir Michel,\r\n\r\nComme convenu ce jour vous trouverez ci-joint le package (binaires + codes sources) permettant les tests E2E PM / LM (avec 1 ou 2 LM - Usinage Cover et Usinage Main).\r\n\r\nA noter que le .zip contient également le mode opératoire pour pouvoir tester via UaExpert (ce mode opératoire démarre par le test pour un seul LM ; pour tester avec 2 LM voir la fin du document pour savoir comment procéder).\r\n\r\nEn vous remerciant pour votre support.\r\n\r\nL\'équipe Inetum','2022-01-21 18:43:01',0),(1755,704,'Issue',531,'Chirag Solanki wrote in #note-3:\r\n> Guillaume Ogier wrote in #note-2:\r\n> > This device seems compatible with \"ComplexTypes2017\" is enough to use information model with it?\r\n> \r\n> Dear Michel,\r\n> \r\n> We would prefer to select devices which natively support OPC UA framework as far as possible since the machine is being designed from scratch. This supplier actually has Siemens S7-1500 PLC but due to very high lead time it is not matching our timeline. This is the reason they are looking at another PLC with shorter lead time. So if possible let us identify a PLC which can support all OPC UA functionality as needed. \r\n> \r\n> We will definitively use OpenOpcUaCoreServer where we do not have any other option. We can offload maximum work to suppliers as far as possible.\r\n> \r\n> Do let us know your thoughts as well.\r\n> \r\n> Best regards,\r\n> Chirag\r\n\r\n\r\n\r\nDear Michel,\r\n\r\nCan we recommend the M580 to the vendor? Kindly let us know.\r\n\r\nThank you.','2022-01-24 10:15:20',0),(1756,705,'Issue',1,'Bonjour,\r\nVotre callstack montre un crash sur le SkRead. Je suppose que vous avez bien regénéré l\'InternalKernelApi. n\'est-ce pas ?\r\nEst ce que vous utilisez la configuration que je vous ai fourni ?\r\nSinon pourriez vous me fournir votre configuration ?\r\n\r\nCordialement\r\nMichel Condemine','2022-01-24 15:06:56',0),(1757,705,'Issue',424,'Bonjour, \r\nOui, tout a été régénéré :\r\n> XMLSaxParser\r\n> LuaLib\r\n> OpenOpcUaStackV1\r\n> OpenOpcUaSharedLib\r\n> OpenOpcUaCoreServer\r\n> VpisSdk/OpenOpcUaVpiLibrary\r\n> VpiSk/InternalKrnlApi\r\n> VpiSk\r\n> VpiUaMqttJsonPub\r\n\r\nCi-joint la configuration utilisée.\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n','2022-01-25 10:17:28',0),(1758,705,'Issue',1,'Bonjour,\r\nje suis en train de monter votre configuration sur ma machine. J\'ai quelques remarques préliminaires :\r\nLa callStack transmise hier correspond àu n problème lors de l\'appel au SkRead par le VpiSk.\r\nUne String malformée est envoyée à la fonction Vpi_String_StrLen.\r\nJe pense que le problème vient des modifications de modèle et de leur impact sur les fonctions de parsing du VpiSk.\r\nPourriez vous tester avec la configuration que je vous ai envoyé et me faire un retour ?\r\nElle utilise un VpiSk standard avec le modèle original.\r\n\r\nCordialement\r\nMichel Condemine','2022-01-25 11:28:51',0),(1759,705,'Issue',424,'Bonjour,\r\nJe supposes que vous voulez que je test avec un autre modèle mais dans la configuration que vous nous avec envoyé il n\'y a pas de modèle(s), le dossier Project est vide.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2022-01-25 14:36:36',0),(1760,705,'Issue',1,'Bonjour,\r\n\r\nEn effet il n\'y a rien dans le fichier posté. Il y a du avoir un problème lors du Sync.\r\nJe poste une nouvelle version de la même maquette mais avec un fichier Project contenant des données.\r\nJ\'ai testé la maquette avec Azure et avec HiveMq.\r\n\r\nCordialement\r\nMichel Condemine','2022-01-25 15:26:51',0),(1761,705,'Issue',424,'Bonsoir M. Comdemine,\nAprès plusieurs tentatives de connexions je constate que le Publisher envoi une requête de connexion au broker, le broker répond et puis plus rien.\n\n!clipboard-202201251945-jsuhx.png!\n\nEt dans les logs du Publisher, j\'ai OpenSocket failed, Tentative de connexion, puis rien.\n\n!clipboard-202201251947-1a9tv.png!\n \nEst-ce que ce scénario vous parle?\n\nSur HiveMq je vois bien une connexion entrante qui dure quelques secondes.','2022-01-25 19:49:38',0),(1762,705,'Issue',1,'Bonsoir,\r\nje constate que le publisher envoi le Connect MQTT, le broker lui répond, mais le subscriber ne détecte pas la réponse.\r\nJe constate aussi qu\'au démarrage le publisher n\'arrive pas à ouvrir le socket TCP et à près 30 sec il y arrive.\r\nQue s\'est il passé entre 18:30:47 et 18:31:17 ?\r\nLa meilleur hypothèse est que la thread de lecture du flux entrant est en attente de démarrage.\r\nQu\'en pensez vous ?\r\n\r\nPourriez vous mettre le publisher en situation afin qu\'il ouvre le socket immédiatement ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-01-25 20:49:50',0),(1763,705,'Issue',424,'Bonjour M. Condemine,\r\nQu\'entendez-vous par \"mettre le publisher en situation afin qu\'il ouvre le socket immédiatement\"?\r\nL\'erreur OpenSocket failed n\'est pas systématique. Parfois l\'envoi de la demande de connexion se fait dès le démarrage du Publisher (comme ci-dessous).\r\n\r\n!clipboard-202201261026-phlqx.png!\r\n\r\n\r\nMais le résultat reste le même. Le broker détecte une connexion entrante qui disparait quelques secondes après. \r\nJe pense aussi que le Publisher ne détecte pas le \"Connect ACK\" retourné par le broker. \r\nLes captures wireshark montrant la réponse du broker viennent de la cible du publisher donc la réponse arrive bien jusqu\'au Publisher.\r\n\r\nQu\'est-ce qui peut faire que la thread de lecture des données entrante soit en attente de démarrage?\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n\r\n','2022-01-26 10:35:08',0),(1764,705,'Issue',1,'Bonjour,\r\nLa thread d\'écoute est débloquée à plusieurs endroit. Mais elle est toujours débloquée une fois le MQTT_SendConnect transmis avec succès.\r\n* EntryPoint.cpp L205 pour une connection non-sécurisée\r\n* EntryPoint.cpp L228 pour une connection Securisée (TLS)\r\n\r\nDans le deux cas si le MQTT_SendConnect échoue un message sera placé dans le LOG.\r\nA partir de ce moment la thread de lecture échoue de données qui arrivent sur le Socket. \r\nVous comprenez que le code en connection sécurisé et en connection non-sécurisée est différent.\r\nPour vous assurer que le la thread d\'ecoute fonctionne. Vous pouvez, *à titre temporaire* , décommenter les lignes 504 à 508 du fichier VpiUaPub.cpp\r\nen fois fait regarder dans les log et tenez moi au courant.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-01-26 11:19:05',0),(1765,705,'Issue',424,'Bonjour, \r\nOn passe par les lignes décommentées.\r\n\r\n!clipboard-202201261747-so0sa.png!\r\n\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2022-01-26 17:49:06',0),(1766,705,'Issue',1,'Bonsoir,\r\nIl y a ce message d\'erreur 0x80050001 qui correspond à Vpi_BadSocketError.\r\nCependant si vous avez la série de messages \"Receive no data\" c\'est que le socket à fini par s\'ouvrir. \r\nOn peut en conclure que donc la thread d\'écoute, écoute bien sur le socket ouvert. Mais est il bien ouvert ?\r\nEst ce que ce socket ne serait pas en erreur ?\r\nJe vais faire d\'autres test sur ma Debian pour tenter de reproduire ce problème.\r\nCependant je suis perplexe car je n\'ai pas vu ce phénomène le week-end dernier. \r\nJ\'ai ce message seulement quand il n\'y rien à lire.\r\nPourquoi avez vous ce message d\'erreur au lancement ?\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2022-01-26 18:05:32',0),(1767,708,'Issue',447,'Bonjour,\r\n\r\nJ\'ai enlevé tous les EAJAVA pour SharedClass et LogisticClass et RotorClass.\r\n\r\nlors de la génération de Logistic il manque la copie de RequestAGVEnum dans les Alias (Enum présente dans SharedClass)\r\n\r\n\r\nLors de la génération de Rotor, il y a toujours des GUID dans les Alias\r\n\r\n!clipboard-202201271714-okagx.png!\r\n\r\nCi-joint le nouveau EA sans le language JAVA\r\n\r\nLionel Claudel\r\n','2022-01-27 17:15:04',0),(1768,695,'Issue',432,'Bonsoir M. Condemine, \r\n\r\n\r\nVous trouverez ci-joint une nouvelle version de notre librairie StructuresEmotors et VpiLine améliorés conformément à vos préconisations. \r\nNous vous livrons les binaires mais aussi les sources pour que vous puissiez les consulter ou recompiler si besoin. \r\nNotez que cette livraison ne concerne que le LM. La partie PM de la maquette doit continuer à tourner avec l\'ancienne version de StructuresEmotores (rupture d\'interface avec les VpiPlant VpiERP et VpiPlm dont les versions améliorés ne sont pas encore disponibles). \r\nNos premiers tests ne montrent pas d\'amélioration mais nous devons les poursuivre de notre côté.\r\n\r\nBonne réception,\r\n\r\nNicolas et Michael \r\n','2022-01-27 19:19:36',0),(1769,708,'Issue',1,'Bonjour,\r\nje vais vous livrer une version ce matin.\r\nElle génère les trois nodeset : SharedClasses, Logistic et Rotor sans problème.\r\nCi dessous le résultat de l\'import :\r\n!clipboard-202201281018-aywmr.png!\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-01-28 10:19:52',0),(1770,705,'Issue',424,'Bonjour, \r\nSuite au mail demandant de faire des tests avec la configuration de simulation, j\'ai réalisé les tests. \r\nNiveau OPCUA, tout est OK, j\'ai bien les variables dynamiques simulées mais pour le PublisherMQTT j\'ai toujours les mêmes problèmes.\r\n\r\n!clipboard-202201281529-xkamv.png!\r\n!clipboard-202201281528-wba0d.png!\r\n\r\nCordialement,\r\nMaycko LOUIS','2022-01-28 15:52:23',0),(1771,706,'Issue',1,'Bonjour,\r\nAprès notre échange je ferme cette incident.\r\nBien cordialement\r\nMichel Condemine','2022-01-28 15:58:27',0),(1772,705,'Issue',1,'Bonjour,\r\nest ce que qu\'un subscriber ou est-ce que l\'interface hiveMq vous affiche les changements ?\r\nDe mon côté j\'ai fait d\'autres tests sous Linux.\r\nJe reçois cette séquence dans le LOG :\r\n!clipboard-202201281602-m5dkx.png!\r\nCependant après quelques échanges le lien avec le Broker azure SK est coupé.\r\n\r\nJe creuse cette piste. Vous devriez cependant avoir le même comportement.\r\nCordialement\r\nMichel Condemine','2022-01-28 16:04:22',0),(1773,705,'Issue',424,'De mon côté HiveMq m\'affiche un nouveau client qui disparait presque immédiatement. \r\nDans l\'intervalle aucune donnée n\'a été transmise.\r\n','2022-01-28 17:26:10',0),(1774,695,'Issue',432,'Bonsoir M. Condemine, \r\n\r\nVous trouverez ci-joint une nouvelle version de toutes nos librairies (sur le bout en bout PM/LM) conformément à vos préconisations.\r\nNous vous livrons les binaires mais aussi les sources pour que vous puissiez les consulter ou recompiler si besoin.\r\n\r\nNos tests ne montrent pas d\'amélioration. \r\nLes crash remontent principalement 3 piles d\'appels (aucune n\'est systématique). \r\n\r\n1) Lorsqu\'un ExtensionOject est mis à jour *pour la première fois* par le VpiLine, la fonction de callback crash lors de la libération du tableau d\'extension object précèdent\r\n\r\n!clipboard-202201281831-wdezr.png!\r\n\r\n2) \r\n!clipboard-202201281834-auuqn.png!\r\n\r\n\r\n3) \r\n!clipboard-202201281834-hx5yk.png!\r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n','2022-01-28 18:39:05',0),(1775,705,'Issue',1,'Bonsoir,\r\nj\'ai corrigé le problème en modifiant le comportement d\'une mutex sous Linux (m_TLSTransactionPendingMutex).\r\nCelle-ci n\'est plus utilisé pour l\'instant.\r\nUn seul fichier est modifié, VpiUaPub.cpp\r\nMerci de le remplacer dans votre code et de régénérer le VpiUaMqttJsonPub.\r\nci-dessous une capture sous Linux\r\n!clipboard-202201282150-5wylu.png!\r\n\r\nTenez moi au courant\r\nCordialement\r\nMichel Condemine','2022-01-28 21:51:41',0),(1776,695,'Issue',1,'Bonjour,\r\nj\'ai travaillé sur la maquette. J\'ai réalisé quelques petites améliorations dans le serveur sur la gestion de extensionObjectArray.\r\nJ\'ai réussi à faire une séquence complète (procédure de test) hors l\'arrêt du line.\r\nCependant, après le crash, j\'arrive à lancer/stopper le line plusieurs fois sans problème.\r\nDeleaker detecte de nombreuses fuites 1278 dans différents modules. snapshot ci-joint. \r\n\r\nA suivre.\r\nCordialement\r\nMichel','2022-01-29 00:35:43',0),(1777,695,'Issue',1,'Bonjour,\r\nEncore un week-end studieux. \r\nJ\'ai fait de nombreux tests. J\'arrive maintenant à faire fonctionner la chaine complète sans erreur et sans crash :\r\nJe parle de scénario complet de la procédure de test (Document Word) + Arrêt du Line.\r\nAprès un scénario il y a de nombreuses fuites mémoires :\r\n* StructuresEmotors.dll : 890 leaks\r\n* VpiLibrary : 337 leaks provoquées par des appels de du VpiLine \r\n* VpiLine : 34 leaks\r\n* Server with all dependencies : 47 leaks\r\nJe vais étudier les 47 fuites côté serveur. Je vous invite à étudier les 1261 dans vos différents codes.\r\nJe vais poster les nouveaux binaires (Serveur et dépendances) dans la soirée.\r\n\r\nOn en parle demain\r\nCordialement\r\nMichel Condemine','2022-01-30 22:26:36',0),(1778,695,'Issue',1,'Une précision supplémentaire.\r\nSi on arrête le Plant après le Line il crash. Mais si on arrête le plant puis le line tout se passe bien.\r\nIl y a cependant des fuites dans les différents modules\r\n* OOUAVpiLibrary : 180 leaks provoquées par les Vpis\r\n* StructuresEmotors : 172 leaks\r\n* VpiPLM_PM : 70 leaks\r\n* OOUAStackV1 : 49 Leaks \r\n* VpiPlants : 24 leaks\r\n* InetumDBManagerLib : 12 leaks\r\n* Vpi_ERP_Pm : 8 leaks\r\n\r\nComme indiqué précédemment je vais étudier les 49 fuites dans le serveur. Je vous laisse regarder les 466 fuites dans vos différents modules.\r\n*Notez que la version actuelle ne plante plus. J\'ai joué le scénario complet décrit dans le document + 10 fois sans crash.*\r\n\r\nCordialement\r\nMichel Condemine','2022-01-30 23:50:41',0),(1779,709,'Issue',1,'Definition\r\nThis is called cascaded PID control. Two controllers are in cascade when they are arranged so that one regulates the set point of the other. \r\nA PID controller acts as outer loop controller, which controls the primary physical parameter, such as fluid level or velocity.\r\n\r\nThis can be done by mapping the Y to SP of the second PIDControllerDataType. With OOUA it\'s done with Subsystem file.','2022-01-31 15:16:37',0),(1780,710,'Issue',1,'We can collect information from any devices through Vpis. For now there is no Asystom Vpi.\r\nVibration sensor are attributes for bearing but some other can be any where using agregation concept.\r\n\r\n','2022-01-31 15:22:07',0),(1781,705,'Issue',424,'Bonjour,\r\nJ\'ai régénéré le VpiUaMqttJsonPub après avoir intégré votre correctif.\r\nJ\'ai fait des tests avec le modèle de simulation ainsi que le modèle DemoSK (Pour l\'instant en mode non secure avec HiveMQ).\r\n\r\nBilan:\r\n1/ Points positifs\r\n- J\'ai parfois l\'erreur 0x80050001 (BadSocketError) après démarrage mais cela ne semble pas avoir d\'incidence. Le Publisher arrive toujours à se connecter au Broker.\r\n- Le Publisher publie maintenant des données VpiExtensionObject.\r\n\r\n2/Points négatifs\r\n- Le Publisher plante quand j\'ajoute une variable qui est un VpiExtensionObject avec un nombre d\'élément > 0 (tableau) dans le SubSystemMqtt.\r\nCi-dessous la variable ajoutée:\r\n!clipboard-202201311524-0waud.png!\r\nLe paramètre NbElement = 10 est l\'origine du crash.\r\n\r\nSavez-vous pourquoi? Pouvez-vous vérifier et me confirmer que le publisher gère bien les tableaux d\'extensionObject.\r\n\r\nComme convenu vendredi soir, je suis disponible ce soir entre 17 et 18h pour faire un point d\'avancement et réaliser d\'autres tests sur notre cible si nécessaire.\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n','2022-01-31 15:34:50',0),(1782,711,'Issue',1,'No related to CIII .See brainstorming pptx','2022-01-31 15:41:48',0),(1783,712,'Issue',1,'New attribute added','2022-01-31 15:57:01',0),(1784,713,'Issue',1,'The calculation can be done at any place in the installation, PLC, CN, Server, etc.\r\nIt\'s up to the person in charge of the configuration.','2022-01-31 16:02:45',0),(1785,713,'Issue',1,'','2022-01-31 16:02:54',0),(1786,714,'Issue',1,'It\'s first of all only live calculation. It mean that we calculate when a new value is received.\r\nA calculation consume almost nothing and can be shared with PLCs.','2022-01-31 16:08:08',0),(1787,695,'Issue',432,'Bonsoir M. Condemine, \r\n\r\nNous avons pu lancer 50 tests sur 3 environnements différents (49 OK sur 50).\r\n1 seul crash dans un scénario spécifique : on a démarré le plant avant le démarrage du line et il s\'est connecté au moment ou le serveur line est en cours d\'inversion des références. Nous n\'avons malheureusement pas une pile d\'appel et n\'avons pas réussi à reproduire le crash. Si vous êtes d\'accord nous considérerons ce crash comme étant hors du scope de ce ticket et donc non-prioritaire.\r\n \r\n\r\nAvant de pouvoir livrer à Lionel, nous souhaitons demain mener les actions suivantes: \r\n\r\n- Correction d\'une fuite que nous avons introduite \"exprès\" \r\n- Test du VpiUaClient (côté automate IPV4), VpiValuesInit et VFIPostgres\r\n- Tentative de correction VpiLine d\'un ticket de Lionel (faire en sorte que le LM en cours de démarrage puisse traiter un Data_Available déjà à 1 côté PLC)\r\n\r\n\r\n\r\nDans l\'intervalle, pourriez vous s\'il vous plaît nous partager les binaires IPV4 et les sources si vous le pensez nécessaire ?\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-01-31 18:38:04',0),(1788,695,'Issue',1,'Bonjour,\r\npour etre bien certain.\r\nEst ce que vous avez réalisé les 49 tests sans redémarrer le serveur.\r\nL\'objectif est bien de tester le fonctionnement sans redémarrer le serveur.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-01 09:04:58',0),(1789,695,'Issue',432,'Bonjour, \r\n\r\nIl semblerait qu\'on s\'est mal compris. Nous redémarrons les serveurs avant chaque test (c\'était plus au début que nous avons les crashs). \r\n\r\nJe rajouterai quelques tests de longueur parmi mes tests aujourd\'hui. \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2022-02-01 09:33:57',0),(1790,695,'Issue',1,'Bonjour,\r\npourriez-vous me donner des nouvelles de essais du jour ?\r\n\r\nCordialement\r\nMichel Condemine','2022-02-01 17:16:46',0),(1791,717,'Issue',432,'','2022-02-01 17:19:29',0),(1792,717,'Issue',1,'Bonjour,\navec la version de ce jour mais sans changement sur les méthodes. Je ne constate aucun problème\n!clipboard-202202011720-48bvm.png!\n\nCordialement\nMichel Condemine','2022-02-01 17:20:41',0),(1793,717,'Issue',432,'Sur la capture d\'écran nous ne voyons pas les noms des input et output arguments de la méthode. C\'est le même phénomène que nous observons de notre côté. \r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2022-02-01 17:29:54',0),(1794,695,'Issue',432,'Bonjour, \r\n\r\n\r\nLes tests aujourd\'hui ont été positifs sur les différents modules et le multi-ligne. \r\nNous avons cependant rencontré un crash sur un scénario spécifique : Engagement de 2 pièces. Redémarrage du serveur et restitution de la liste de pièces produites par le VpiValuesInit. Terminaison des pièces et déclenchement des remontés. Nous rencontrons à cet endroit un crash avec la pile d\'appel suivante : \r\n\r\n!clipboard-202202011753-d25cl.png!\r\n\r\nNous essayons de reproduire ce bug en ce moment. \r\n\r\nIl nous manquera après cela plus que le point sur les méthodes qui ne sont pas visibles et de tester la communication IPV4 VpiUaClient. \r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2022-02-01 17:55:51',0),(1795,695,'Issue',432,'Le minidump obtenu est en PJ. \r\n\r\nJ\'en poste d\'autres si j\'arrive à reproduire des mindump du crash \r\n\r\nCordialement, \r\nMichael','2022-02-01 17:58:53',0),(1796,695,'Issue',432,'Deux minidumps supplémentaires ont été obtenus. J\'ai l\'impression qu\'on est encore sur de la mémoire corrompus. \r\n\r\n\r\nOn continue à investiguer. \r\nCordialement, \r\n\r\nMichael ','2022-02-01 18:30:26',0),(1797,695,'Issue',1,'Bonjour,\r\npour avancer sur ce problème merci de me fournir une maquette et une procédure permettant de le reproduire.\r\nCordialement\r\nMichel Condemine','2022-02-01 21:23:16',0),(1798,715,'Issue',1,'Bonjour,\r\nj\'ai corrigé le problème de mise en forme et comme vous pouvez le voir ci-dessous le support des tableaux d\'UDT.\r\n!clipboard-202202021044-whjtk.png!\r\nLe problème de mise en forme venait du support de QOS 1 avec certain broker.\r\nLors du message publish, QOS1 est utilisé. Ce support est codé en dur. Je vais rendre cela paramétrable pour une prochaine version du Vpi.\r\nJe ferai un livraison complète ce jour.\r\nCordialement\r\nMichel Condemine','2022-02-02 10:46:54',0),(1799,695,'Issue',432,'Bonjour M. Condemine, \r\n\r\nComme convenu, ci joint les binaires/sources pour mettre à jour la maquette de ce ticket ainsi qu\'un document permettant de reproduire le crash. \r\n\r\nCordialement, \r\n\r\nMichael','2022-02-02 15:45:17',0),(1800,719,'Issue',1,'Les deux premieres images contiennent des warning sans importance, les erreurs le sont plus.\r\nEst ce que vous avez pensez a ajouter le NodeIdMap file ?\r\n','2022-02-02 17:18:50',0),(1801,695,'Issue',432,'Bonsoir M. Condemine, \r\n\r\nSuite à votre livraison IPV4, nous avons refait quelques tests avant de livrer à EMOTORS. \r\nMalheureusement ces tests échouent rapidement alors qu\'en IPV6 nous semblions avoir atteint une certaine stabilité. En IPV4 (sans certitude que ce soit le passage en IPV4 qui pose problème) nous nous retrouvons avec des crash similaires à ceux de la semaine dernière. \r\nLa procédure envoyée dans le package du 21 janvier en réponse de ce ticket par Christophe permet de reproduire un crash (lié à de la corruption mémoire). \r\n\r\nNous pouvons vous fournir des minidumps mais comme précédemment la mémoire des minidumps est corrompue et ne semble pas pointer à la source du problème.\r\n\r\nDans ces conditions nous préférons ne rien soumettre à EMOTORS pour tests à Tremery pour l\'instant. \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-02-02 18:55:05',0),(1802,695,'Issue',1,'Le problème n\'a rien à voir avec l\'IPV4/IPV6. Il provient très certainement des méthodes.\r\nmerci de tester les binaires livrés ce matin dans le cadre de la procédure décrite dans votre document.\r\nAttention il ne faut pas arrêter le serveur à l\'issue de chaque test mais recommencer le test.\r\n\r\nIl faudrait aussi imaginer quelque chose pour automatiser cette séquence de test. Un script client side.\r\n\r\n*PS: Cette méthode est en dehors du modèle.*\r\n','2022-02-03 07:42:41',0),(1803,719,'Issue',436,'Sauf erreur de ma part, j\'ai effectivement ajouté le NodeIdMap.\r\nPar acquis de conscience je referai le test et vous dirai si j\'ai toujours les erreurs ou pas.','2022-02-03 09:48:18',0),(1804,695,'Issue',433,'Bonjour Michel,\r\n\r\nDes tests ont été menés ce matin, sans redémarrer le serveur entre chaque remontée conformément à ce que vous demandiez (nombre ciblé : atteindre une vingtaine de remontées sans crash).\r\n\r\nSur 5 tentatives globales, les 3 premières ont échoué par crash du LM (respectivement sur les 2ème, 5ème et 4éme remontée de déclaration du LM vers le PM). Les 2 suivantes ont permis d\'aller jusqu\'au volume ciblé (respectivement 20 et 21 remontées de déclarations du LM vers le PM).\r\nBilan : 2 essais OK sur 5.\r\n\r\nVous trouverez joint 2 piles d\'appel correspondant respectivement au 1er et 3ème crash.\r\n!clipboard-202202031150-ninaw.png!\r\n!clipboard-202202031150-tnahj.png!\r\n\r\nCordialement.\r\nNicolas.','2022-02-03 11:53:55',0),(1805,693,'Issue',447,'Bonjour Michel \r\n\r\nSur la dernière version de Ximulator, j\'ai pu analyser le soucis au sujet de l\'utilisation des Userdatatype.\r\n\r\nil faut, comme vous l\'aviez remarqué changer les hastypedefinition avec le VariableType associé\r\n\r\n\r\n!clipboard-202202031929-ugvxz.png!\r\n\r\nAutre point dans les userdatatype, tous les attributs sont tous du type du userdatatype parent.\r\n\r\nSur l\'exemple suivant, c\'est moi qui ait changer le typedefinition à la main dans le nodeset de type pour le part_produce_Datatype - Attribut Part_Data\r\n\r\n!clipboard-202202031931-r7kiw.png!\r\n','2022-02-03 19:32:19',0),(1806,695,'Issue',433,'Bonsoir Michel,\r\n\r\nVous trouverez comme convenu attaché un package (TesteurLua-2022-02-03.zip) contenant l\'état où je suis arrivé. Il contient le script Lua, le NodeSet de méthod de test et les dernières versions de nos dll.\r\n\r\nJe me suis heurté à des difficultés que je n\'ai pu résoudre.\r\n\r\nETAPE 1 : \r\nJ\'ai voulu développer une method unique permettant de réaliser le cycle complet (engagement + product déclaration remplies, avec life cycle du data available synchronisé sur la ack data. j\'avais même prévu d\'inclure une étape de tracabilité en plus). Il s\'agit de la méthode \"LaunchTestStep\" toujours visible dans le script lua, et donc le node de raccordement est commenté dans le fichier NodeSet.\r\nTout allait bien jusqu\'à la gestion de l\'attente du ackdata. La method restait bloquée dans le while, et se terminait par un timeout (et crash du serveur).\r\nAprès analyse, j\'ai compris que les modifications du script n\'arrivaient pas jusqu\'au Vpi Line. J\'ai cru (à tort) qu\'elles étaient stockées dans un cache jusqu\'à la fin du script, et que donc le VpiLine ne pouvait pas les voir, d\'où l\'absence de traitement, d\'où l\'absence de positionnement de l\'ack, d\'où la boucle infinie. \r\nCette erreur de diagnostic m\'a amené à mettre en oeuvre l\'étape 2.\r\n\r\nETAPE 2 :\r\nPasser dans une logique de 3 méthodes, qui constitue l\'état courant du script et du NodeSet que vous avez reçu.\r\nL\'idée était de décomposer en 4 étapes au moyen de 3 methods :\r\n- LaunchTestStep1 = Remplit les 2 FBDC d\'engagement des 2 part produce\r\n- LaunchTestRelease = Relâche les data available sur les 2 FBDC (d\'engagement)\r\n- LaunchTestStep2 = Remplit les 2 FBDC de declaration de production\r\n- LaunchTestRelease = Un second appel relâche à nouveau les data available sur les 2 FBDC (de declaration de production cette fois)\r\n\r\nC\'est moins élégant qu\'une méthode unique, mais ça permet déjà de factoriser et systématiser les remplissage fastidieux.\r\n\r\nCes méthodes fonctionnent correctement, leur effet est visible dans l\'address space, MAIS le VpiLine reste de marbre.\r\nSi en revanche je décoche à la main le data available et que je le recoche, le VpiLine se réveille et applique le FB initialisé par la méthode.\r\n=> Je crains que les modifications opérées par le scripts Lua ne sont pas transmises au Vpi par le core server (le module Lua n\'est pas inscrit à un fonctionnement \"multitag\" comme les Vpis ?). \r\n\r\n\r\nSi vous voulez mener des tests, n\'oubliez pas de mettre à jour le script pour COVER. J\'ai comme convenu centralisé la lettre à appliquer dans une méthode (GetLineId). Vous trouverez le return à modifier ligne 13 du script LUA. Le \"M\" de MAIN doit être remplacé par le \"C\" de COVER.\r\n\r\nSi vous voulez faire tourner mon \"ETAPE 2\", le NodeSet et le script sont dans cet état.\r\nSi vous voulez faire tourner mon \"ETAPE 1\", il faudra décommenter le Node associé dans le fichier NodeSet (je l\'ai commenté pour qu\'on ne se trompe pas à l\'utilisation), mais aussi corriger/décommenter la méthode SendFBDC (ligne 30 du script) où j\'ai neutralisé le code qui posait problème pour la rendre compatible avec les méthodes \"ETAPE 2\".','2022-02-03 21:42:55',0),(1807,705,'Issue',424,'Bonjour M. Condemine, \r\nConcernant le livrable du 02/02/2022, Avez-vous pu le valider son fonctionnement sur linux?\r\nCar j\'essaye avec le DemoSk et voilà le résultat au démarrage.\r\n\r\n!clipboard-202202040909-dpqph.png!\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n\r\n\r\n','2022-02-04 09:12:57',0),(1808,715,'Issue',424,'Bonjour M. Condemine,\r\nConcernant le format json, je vous confirme que j\'ai bien la correction des deux caractères.\r\nIl me manque juste un détail, c\'est le retour à la ligne à la fin des timestamps.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2022-02-04 09:17:31',0),(1809,705,'Issue',1,'Bonjour,\r\nje n\'ai pas fait d\'autres tests sous Linux.\r\nJe pourrai le faire ce week-end. \r\nD\'après votre trace il y a une erreur d\'encodage et des erreurs de lecture.\r\nDans le même temps le ping semble correctement emis.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-04 09:19:02',0),(1810,695,'Issue',433,'Bonjour \r\n\r\nNous avons poussé les investigations, et contrairement à ce que je craignais hier soir, les données descendent bien jusqu\'au VpiLine (ouf). \r\nLe VpiLine ignore les données reçues à cause du status code du \"data available\" : 0x40920000 (status code \"OPC UA Uncertain initial value\").\r\n\r\n!clipboard-202202040949-0ttpp.png!\r\n','2022-02-04 09:49:53',0),(1811,695,'Issue',433,'PDB du LM\r\n','2022-02-04 11:18:43',0),(1812,695,'Issue',432,'Ci-joint une version avec moins de leak. \r\n\r\nJe reposte lorsque j\'ai des améliorations\r\n\r\nMichael','2022-02-04 11:30:26',0),(1813,695,'Issue',432,'','2022-02-04 12:16:34',0),(1814,695,'Issue',432,'','2022-02-04 12:24:05',0),(1815,722,'Issue',432,'Bonsoir, \r\n\r\nVous avez du rencontrer ça en redémarrant le LM. Le compteur qui permet d\'incrémenter le tracking id a été remis à 0. \r\nNicolas a normalement prévu une nœud pour setter ce compteur. Il faudrait le mettre à la valeur qu\'il était. Je pense que ce noeud doit ce trouver sous l\'objet Testeur.\r\n\r\nSi le dernier tracking id est 00018200722P03XT par exemple, il faut mettre 183 sur le compteur. \r\n\r\nCordialement,\r\n\r\nMichael','2022-02-05 00:26:02',0),(1816,722,'Issue',1,'Bonjour,\r\nen mettant 110 dans idCounter, j\'ai réussi modifier le comportement lors de l\'appel à la méthode LaunchTestStepSequential.\r\nJ\'obtiens le résultat ci-dessous dans l\'invite de commande du line.\r\n!clipboard-202202051324-epwul.png!\r\nComment sont censé être terminer les ERP_OP ?\r\nJe veux dire comment les terminer ?\r\n\r\ncordialement\r\nMichel Condemine','2022-02-05 13:25:57',0),(1817,722,'Issue',432,'Bonjour,\r\n\r\nSi vous engagez un nouveau cycle de pièces, il devraient être mis dans le prochain OF ERP (le 3ème) et clore le 2ème. Si ce n\'est pas le cas, c\'est qu\'il pourrait y avoir une anomalie dans notre traitement. Peut être que redémarrer le LM déloquera cette situation.\r\n\r\nLe premier OF ERP ne peut pas être fermé pour le moment. Je vois que les dernières pièces n\'ont pas un statut de 6, ils n\'ont pas été terminés. Idéalement, il faudrait à travers UAExpert les passer au Job Status statut Completed (6). \r\n\r\n\r\nSi cela ne permet pas de débloquer la situation, l\'alternative serait de recommencer le processus sans restituer la liste d\'OF ERP. \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2022-02-05 13:42:33',0),(1818,722,'Issue',1,'Merci pour votre réponse.\r\nvoici le statut après redémarrage sans intervention de ma part.\r\nLes valeurs sont lues dans la base et injecté par le VpiValuesInit\r\n!clipboard-202202051347-hbbtg.png!\r\nAprès un bricolage avec UAExpert j\'ai réussi à obtenir cela\r\n!clipboard-202202051356-nihkh.png!\r\nJe pense que le premier ERP_OF est remonté à l\'ERP.\r\nQu\'en pensez vous ?\r\nNotes que les serveurs fonctionnent parfaitement.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-05 13:58:58',0),(1819,722,'Issue',432,'Le 1er OF ERP est bien remonté de ce que je vois. Pour le valider il suffit d\'aller voir que le dossier Déclarations sur le serveur Plant contient des fichiers volumineux (vu la taille des déclarations effectués). \r\n \r\nSi vous n\'avez eu aucun crash, c\'est bien un des test de longueur les plus longs qui soit passé. \r\nNous validerons cela avec des tests de notre côté ainsi que les tests en prod. ça permettra de valider les tests sur différentes machines. Les derniers binaires livrés sont bien ceux à jour ?\r\n\r\nCordialement, \r\n\r\nMichael \r\n \r\n','2022-02-05 14:36:58',0),(1820,695,'Issue',432,'','2022-02-07 11:25:57',0),(1821,695,'Issue',432,'','2022-02-07 11:55:08',0),(1822,695,'Issue',432,'','2022-02-07 11:57:45',0),(1823,705,'Issue',424,'Bonjour M. Condemine,\r\nAvez-vous pu réaliser les tests?\r\nNous partons demain midi chez un client pour un màj.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2022-02-07 17:59:54',0),(1824,695,'Issue',432,'','2022-02-07 18:10:19',0),(1825,705,'Issue',1,'Bonjour,\r\nj\'avais bien réalisé le test sous Debian.\r\nci-joint le fichier log du test que je veins de refaire ainsi que les screenshot du serveur fonctionnant sur la Debian et le résultat de l\'abonnement AWS.','2022-02-07 20:19:44',0),(1826,705,'Issue',1,'C\'est mieux avec le fichier et les captures.\r\nDebian\r\n!clipboard-202202072020-gg4jt.png!\r\n\r\nAWS\r\n!clipboard-202202072021-qr8t1.png!\r\n\r\nJe reste à votre disposition pour plus d\'explication\r\nCordialement\r\nMichel Condemine','2022-02-07 20:22:02',0),(1827,705,'Issue',1,'Bonsoir,\r\npar acquis de conscience j\'ai refait le test avec les derniers sources disponibles.\r\nJe vous invite à les utiliser ils sont ici http://www.openopcua.org/redmine/attachments/download/2552/OpenOpcUa_1_0_7_0_SK_7-2-2022.zip \r\nLe résultat pour un recipeList de deux elements :\r\n!clipboard-202202072140-lmnkp.png!\r\n\r\nCordialement\r\nMichel Condemine','2022-02-07 21:41:26',0),(1828,722,'Issue',1,'Bonsoir,\r\nj\'ai apporté une amélioration module LUA. \r\nChaque Virtual Machine LUA ne doit pas être appelée en même temps depuis des threads différentes. \r\nJ’ai donc ajouté une mutex pour protéger l’accès au script.\r\nLe comportement est plus stable mais j’ai obtenu quelques crashes. \r\nSans avoir les sources du Vpi et de structure EMotors je vous partage quelques screenshot. :\r\n!clipboard-202202072257-yzqhu.png!\r\n!clipboard-202202072256-zya0g.png!\r\nMais maintenant le testeur est encore bloqué après le crash. J\'ai bricolé des valeurs et pire semble les choses.\r\nAuriez vous une idée ?\r\ncordialement\r\nMichel Condemine','2022-02-07 22:58:08',0),(1829,720,'Issue',1,'Bonjour,\r\nj\'ai placé le demo LUA ici http://www.openopcua.org/redmine/attachments/download/2556/DemoLua_Release.zip\r\nci-dessous la déclaration d\'une enumération. \r\nElle se fait en deux étapes :\r\n1- déclaration du datatype\r\n!clipboard-202202080916-8awld.png!\r\n2 déclaration des strings associées\r\n!clipboard-202202080917-4ht4c.png!\r\n\r\nCordialement\r\nMichel','2022-02-08 09:17:50',0),(1830,695,'Issue',433,'Sources uptodate structuresemotors et vpiline','2022-02-08 10:49:39',0),(1831,695,'Issue',433,'avec la inetumdbmanagerlibrary','2022-02-08 11:35:59',0),(1832,695,'Issue',433,'Veuillez trouver ci-joint les sources des 3 Vpis nécessaires au Plant Middelware.','2022-02-08 19:20:25',0),(1833,724,'Issue',492,'','2022-02-09 09:16:14',0),(1834,725,'Issue',496,'','2022-02-09 10:59:19',0),(1835,695,'Issue',433,'Script Testeur avec 2 méthodes de copie de fichier','2022-02-09 11:19:31',0),(1836,695,'Issue',1,'Bonjour,\r\npourriez vous m\'expliquer comment est réalisé l\'import/export de la classe CErpOf ?\r\nBien que cette méthode ne soit pas recommandé.\r\nD\'après ce que je peux lire l\'export depuis StructuresEmotor est réalisé correctement.\r\nMais je ne vois pas de signature approprié dans VpiLine. En claire il manque un __declspec(dllimport)\r\n\r\nC\'est un problème critique et urgent. J\'attends vos explications ASAP, merci.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-09 12:03:41',0),(1837,695,'Issue',433,'Bonjour Michel,\r\n\r\nCoté structuresEmotors, l\'export est réalisé au niveau du CErpOf.h, avec le #define STRUCTURES_EXPORT :\r\n#define STRUCTURES_EXPORT __declspec(dllexport)\r\n\r\nCoté VpiLine (je n\'ai pas vérifié, mais je suppose identiquement implémenté coté des Vpis du PM), on fait un simple include dans stdafx.h sur CErpOf.h de structuresemotors, qui est visible grâce au \"Autres repertoires d\'include\" défini ainsi :\r\n.\\include;..\\include;%(AdditionalIncludeDirectories);..\\structuresemotors\\include; ..\\InetumDbManagerLibrary\\InetumDbManagerLibrary\\include; ..\\InetumDbManagerLibrary\\InetumDbManagerLibrary\\includePQ\r\n\r\nJe ne pense pas qu\'il y ait de __declspec(dllimport) d\'implémenté.\r\n','2022-02-09 12:32:55',0),(1838,695,'Issue',1,'Bonjour,\r\nil faut donc corriger le VpiLine et probablement toutes les autres applications qui utilisent la DLL StructuresEmotors.dll.\r\n\r\nJe regarde cela\r\nCordialement\r\nMichel Condemine\r\n','2022-02-09 14:04:24',0),(1839,695,'Issue',1,'Bonjour,\r\nj\'ai regardé le problème. Il faut absolument restructurer le partage des fichiers d\'entête.\r\nCela s\'applique à toutes le classes partagés dans StructuresEmotors et dans InetumDbManagerLibrary.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-09 15:00:45',0),(1840,634,'Issue',1,'','2022-02-09 15:04:44',0),(1841,635,'Issue',1,'','2022-02-09 15:05:37',0),(1842,695,'Issue',433,'Bonjour Michel.\r\nBien reçu, mais j\'aurai besoin de votre support pour cela.\r\nPouvez-vous m\'indiquer là comment faire?','2022-02-09 15:09:42',0),(1843,689,'Issue',1,'Fixed in 1.0.1','2022-02-09 15:11:55',0),(1844,690,'Issue',1,'Link to the template\r\nhttps://docs.google.com/spreadsheets/d/15T8tt_R1_sJypDJ45bno8OIUgiPgiJS2ywFEsFmInco/edit?usp=sharing','2022-02-09 15:41:27',0),(1845,694,'Issue',1,'','2022-02-09 15:42:00',0),(1846,707,'Issue',1,'','2022-02-09 15:46:07',0),(1847,711,'Issue',1,'The real object is connected to a virtual one exposed to client app.\r\n!clipboard-202202091548-hm4sy.png!\r\n\r\n!clipboard-202202091548-2u71b.png!\r\n','2022-02-09 15:49:08',0),(1848,711,'Issue',1,'','2022-02-09 15:49:31',0),(1849,718,'Issue',1,'','2022-02-09 15:50:32',0),(1850,723,'Issue',1,'It\'s a generation dependencies problem.\r\nClearWater use TemperatureMeter. ClearWater is define in InputOutput which is generated before Equipment. \r\nSo TemperatureMeter shall be generated in first place.\r\n','2022-02-09 16:07:31',0),(1851,719,'Issue',436,'Attached is the complete directory containing my test','2022-02-09 16:08:45',0),(1852,695,'Issue',433,'Bonsoir Michel,\r\n\r\nComme convenu, un zip contenant les quelques sources impactés ce jour, \"organisés\" pour faciliter le report.\r\n\r\nIl y a 2 sources et 1 include pour le vpilm qui contiennent des mises à jour avérées. \r\n\r\nJ\'ai par acquis de conscience inclus également un fichier (CPartProduce.cpp) de structuresemotors car la date avait changé. Vu que Github ne voit pas de différence par rapport à la version précédente, je pense qu\'il y a du avoir un appui intempestif de ma part sur \"save\" alors que je consultais le fichier (mauvais raccourci clavier?). Le contenu est normalement le même.\r\n\r\n','2022-02-09 19:59:17',0),(1853,695,'Issue',1,'Bonsoir,\r\nj\'ai recompilé l\'ensemble du code livré conforme aux recommendations discutées à 18h15 et relatives au partage de classes entre applications. \r\nJ\'ensuite relancé la maquette Plant/Cover et réalisé de nombreux test en utilisant les scripts de Nicolas.\r\nAUCUN PLANTAGE.. Il reste de nombreuses autres parties du code a nettoyer mais c\'est encourageant. \r\nPlus de détail dans le fichier LOG ci-joint\r\n\r\nJe suggère de livrer ce code à Lionel.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-09 20:58:35',0),(1854,695,'Issue',1,'Bonjour,\r\nles dernier binaires correspond aux tests réalisés hier sont disponible ici : http://www.openopcua.org/redmine/attachments/download/2572/Livraison%20Binaires%20Debug-IPV4_10-2-2022.zip\r\nMerci de les tester ce jour.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-10 09:42:34',0),(1855,695,'Issue',433,'Bonjour Michel,\r\n\r\nBonnes nouvelles.\r\n\r\nPouvez-vous nous relivrer aussi les sources des projets (dbmanager +structuresemotors + vpis du LM et PM), que nous puissions repartir de cette base saine (en particulier sur le .h) pour que nous livrions à Lionel.\r\n\r\nMerci d\'avance.\r\n\r\nCordialement.\r\n\r\nNicolas.','2022-02-10 09:47:20',0),(1856,695,'Issue',432,'Bonjour M. Condemine, \r\n\r\nParmi les binaires livrés il nous manque VpiErp et VpiPlm. Nous commençons les tests en ne mettant à jour que le LM. Pourriez vous s\'il vous plait nous livrer les 2 binaires du PM si il est nécessaire de mettre à jour le PM ? \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2022-02-10 09:59:13',0),(1857,695,'Issue',1,'Bonjour,\r\nje pense qu\'il serait souhaitable de valider, en les testant, les derniers binaires livrés.\r\nDans le même temps il faut corriger les Warnings afin d\'obtenir une version livrable.\r\n\r\nConcernant VpiERP et VpiPLM, n\'ayant pas le source je n\'y ai pas touché. \r\n\r\nCordialement\r\nMichel Condemine','2022-02-10 10:09:08',0),(1858,695,'Issue',433,'Rebonjour Michel,\r\n\r\nNous sommes actuellement en train de tester les binaires livrés, en partie LM simplement car nous n\'avons pas tous les Vpi pour le coté PM (Vpi Erp et Plm n\'utilisent pas le DB manager mais utilisent structuresemotors). \r\n\r\nLes sources des Vpi ERP et PLM vous ont été transmis en même temps que ceux du plant dans le zip ShareMichel-Vpi Plant-2022-02-08-19h15.zip attaché dans ce ticket mardi soir. \r\n\r\nCordialement.\r\n\r\nNicolas.','2022-02-10 10:17:05',0),(1859,695,'Issue',1,'Bonjour,\r\nok, je les vérifie dans les grandes ligne et vous livre ASAP.\r\n\r\ncordialement\r\nMichel Condemine','2022-02-10 10:21:51',0),(1860,695,'Issue',432,'Bonjour M. Condemine, \r\n\r\nNous rencontrons malheureusement des crash similaires aux précédents. \r\n\r\nCi dessous 3 piles d\'appels obtenus, qui ressemblent fortement à de la corruption mémoire : \r\n\r\n!clipboard-202202101151-nu6c7.png!\r\n\r\n!clipboard-202202101152-omitw.png!\r\n\r\n!clipboard-202202101153-gdckh.png!\r\n\r\n\r\nDans vos tests, avez vous également mis à jour les binaires Core Server du PM? \r\nCordialement, \r\n\r\nMichael\r\n','2022-02-10 11:54:47',0),(1861,695,'Issue',1,'Bonjour,\r\nj\'ai bien sur mis à jour les binaires du plant lors de mes tests. Seul les binaires de VpiErp et Plm n\'avait pas été mis à jour.\r\nDepuis je les ai recompilé. Je relivre l\'ensemble dans la foulée. \r\nPourriez vous m\'en dire plus sur votre scénario de test ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-02-10 13:03:28',0),(1862,695,'Issue',432,'Bonjour, \r\n\r\n\r\nNous avons effectué les tests sur 2 PC différents en parallèle. \r\nNicolas a mis a jour le PM et LM et a obtenu 3 crash ce matin. \r\nDe mon côté que le LM mis à jour. 1 crash obtenu. \r\n\r\nNotre scénario de test est le suivant : \r\n\r\nNous démarrons LM avec minidump et PM\r\nAvec le script Lua nous lançons la copie de fichier ainsi que les séquences de DataCollect qui engendrent des remontées de déclarations de Part Produce et d\'OF ERP.\r\nDès qu\'il n\'y a plus d\'OF ERP on recommence le cycle. \r\n\r\n\r\n\r\nNous remarquons aussi que lorsque le mindump est généré et empêche le crash, on peut toujours continuer le processus (on n\'a pas eu de crash non récupérable à ce jour).\r\nNous avons pu tester avec les VpiErp et VpiPlm mis à jour, mais nous arrivons malheureusement au même résultat. \r\n\r\nPourriez vous lorsque possible pour vous nous partager les nouvelles versions des sources pour continuer l\'élimination des Warnings et des fuites? \r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n\r\n\r\n\r\n ','2022-02-10 14:15:11',0),(1863,727,'Issue',436,'Bonjour Michel,\r\n\r\nPas de souci bien sûr pour respecter le droit d\'auteur.\r\n\r\nComment souhaitez-vous que cela apparaisse dans les différents codes SVP et sous quelle formulation (sachant que dans le cas des VPIs le socle de départ est le VpiNullEx) ?\r\n\r\nCordialement,\r\nChris','2022-02-10 14:54:11',0),(1864,695,'Issue',432,'Rebonjour, \r\n\r\n\r\nVoici une piste qu\'on voulait partager avec vous: l\'idée serait que ce soit la notification à un client d\'un changement de valeur sur un tableau d\'Extension Object qui soit la source des crashs, \r\ncar une des spécificités de la remontée LM PM est le fait qu\'elle engendre une notification vers le client qui souscrit au tableau d\'ExtensionObject (le VpiUaClient). \r\nLes autres mises à jour de tableaux d\'Extension Object ne provoquent pas de crash.\r\n\r\nAfin de tester cette piste j\'ai mis en place le scénario suivant : \r\n\r\nAu niveau du LM, on fait descendre via le PM un OF ERP et la recette qui sont enregistrés, et puis après je coupe le VFI (donc l\'historisation) afin de pouvoir redémarrer le LM avec cet état de démarrage( grâce au VpiValuesInit). Puis on laisse le PM arrêté et on ne redémarre que le LM seul. \r\nSi je lance plusieurs cycles de part produce : \r\n\r\n- avec un abonnement au niveau de UaExpert sur un tableau d\'Extension Object qui oscille beaucoup, je tombe sur un crash de type heap corruption (avec des piles d\'appels au niveau StructuresEmotors à des endroits où ça ne devrait pas crasher)\r\n- sans abonnement sur un objet semblable, j\'arrive à aller très loin sans causer aucun crash\r\n\r\n\r\nQu\'en pensez vous? \r\n\r\nCordialement,\r\n\r\nMichael','2022-02-10 16:02:33',0),(1865,731,'Issue',1,'!clipboard-202202101616-6zgdi.png!\r\n','2022-02-10 16:16:06',0),(1866,695,'Issue',1,'Bonjour,\r\nJ\'en pense que l\'encodeur, les Vpi et le serveur pourrait etre mise en cause. Le serveur véhicule cependant simplement des données déjà encodés. \r\nIl fait globalement de simples memcpy. Mais je continue à explorer toutes les pistes, celle du serveur en fait partie.\r\nJe pense qu\'il y a de nombreux warning assez grave dans StructuresEmotors qui pourrait expliquer ce type de problème. cf les issues dédiées.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-10 17:15:53',0),(1867,705,'Issue',424,'Bonjour M. Condemine,\r\nDans la livraison du 7/02/2022, avez-vous apporter des modifications concernant la configuration nécessaire au démarrage du serveur?\r\nJ\'essaye de tester mais apparemment il me manque un fichier de config. Si c\'est bien cela, pouvez-vous m\'envoyer ce fichier ou la Demo_SK que vous avez utilisée pour valider la livraison? merci.\r\n\r\n!clipboard-202202111323-z9o2b.png!\r\n\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2022-02-11 13:25:03',0),(1868,705,'Issue',424,'Cela ne semble pas avoir d\'impact sur le démarrage du serveur.\r\nNe tenez pas compte de mon message précédent. Je continue les tests.','2022-02-11 13:36:00',0),(1869,705,'Issue',424,'Bonjour M. Condemine,\r\nCi-dessous un bilan des tests réalisés.\r\n\r\nPremier point,\r\nDe votre côté, au démarrage du broker, il y a deux paquets qui sont envoyés. Le MetaData et un premier ua-data. (config Metadata True).\r\nDe mon côté, j\'ai mis dans le fichier config \"METADATA False\". Je m\'attendais donc à avoir un paquet ua-data. Mais en fonction des démarrages j\'ai:\r\n> soit deux paquets ua-data transmis au broker, je peux publier par la suite. OK-OK.\r\n> soit un PrepareJSONPublisherPayLoad failed et un paquet ua-data transmis au broker, je peux publier par la suite. NOK-OK.\r\n> soit deux PrepareJSONPublisherPayLoad failed et donc 0 paquets ua-data transmis au broker (cas très rare mais existant), je ne peux plus publier par la suite. NOK.\r\n\r\nEst-ce lié à la config METADATA False? Pouvez-vous le tester avec Metadata False avec AWS et me faire un retour?merci. \r\nCar de mon côté je suis obligé de testé avec MetaData à False pour les raisons dont nous avons discuté dans un échange précédent concernant IotHub.\r\n\r\nSecond point,\r\nDans les cas où le Publisher publie des données j\'ai encore deux problèmes au niveau du format Json. j\'utilise votre capture AWS ci-dessous pour illustré.\r\nà mon avis, AWS ne vous affichera plus le message en vert lorsque le format json sera correct.\r\n!Sans%20titre.png!\r\n\r\nPouvez-vous vérifier ces deux points et me faire un retour, Merci.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2022-02-11 15:05:13',0),(1870,733,'Issue',1,'Implemented in the new version 0.1 of the OOUAConfigManager','2022-02-13 10:51:26',0),(1871,732,'Issue',1,'Implemented in the new version 0.1 of the OOUAConfigManager','2022-02-13 10:51:59',0),(1872,735,'Issue',432,'Bonjour, \r\n\r\n\r\nJ\'ai l\'impression que les mêmes attributs sont présent sur les deux captures et qu\'il s\'agit d\'une différence d\'affichage. \r\n\r\nLorsque nous ouvrons le modèle v2.17 avec notre version d\'Entreprise Architect nous avons cela : \r\n\r\n!clipboard-202202131132-zuexi.png!\r\n\r\n\r\nSi nous mélangeons les attributs HasProperty et HasComponent en gardant l\'ordre alphabétique, nous retombons bien sur les attributs déclarés dans le même ordre qu\'au niveau du dictionnaire de données. \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\nInetum \r\n ','2022-02-13 11:36:32',0),(1873,735,'Issue',1,'Bonjour,\r\nPour l\'encodage/décodage l\'ordre de déclaration des attributs est essentiel.\r\nJe dois donc pouvoir trouver une source fiable.\r\nCet ordre ne doit pas être influencé par une règle d\'affichage variable.\r\n\r\ncordialement\r\nMichel Condemine','2022-02-13 12:03:45',0),(1874,716,'Issue',496,NULL,'2022-02-14 14:33:35',0),(1875,699,'Issue',496,NULL,'2022-02-14 14:33:44',0),(1876,698,'Issue',496,NULL,'2022-02-14 14:33:57',0),(1877,696,'Issue',496,NULL,'2022-02-14 14:35:03',0),(1878,720,'Issue',496,NULL,'2022-02-14 14:35:10',0),(1879,716,'Issue',496,NULL,'2022-02-14 14:35:50',0),(1880,738,'Issue',1,'Fixed in version 1.0.4','2022-02-14 16:24:53',0),(1881,695,'Issue',432,'Bonjour, \r\n\r\nComme convenu, ci-joint la définition des classes en tant que structures C. \r\nPar rapport à ce qu\'on a convenu ce matin, il y a juste un tableau que je n\'ai pas mis en tant que pointeur et taille : \r\nDans la structure SubOp_Result, pour le champ Traceability_Component, vu que le nombre est fixe (3), j\'ai directement défini le tableau de 3 éléments (voir ligne 187)\r\nJ\'ai aussi passé tous les Vpi_Int en Vpi_Int32. \r\n\r\nN\'hésitez pas à nous indiquer s\'il y a d\'autres choses sur lesquelles nous pouvons assister. \r\n\r\nCordialement, \r\n\r\nMichael','2022-02-15 14:29:16',0),(1882,730,'Issue',1,'C P C = Center Position Control \nE P C = Edge Position Control \nControl is made via camera or with laser.\nUnit Milli meter\nwith tolerance 0.1','2022-02-15 15:32:19',0),(1883,739,'Issue',1,'Bonjour, \r\n13 signifie AttributeId_Value.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-16 14:07:46',0),(1884,725,'Issue',1,'','2022-02-16 14:08:27',0),(1885,726,'Issue',1,'','2022-02-16 14:59:41',0),(1886,690,'Issue',1,'','2022-02-16 15:32:56',0),(1887,736,'Issue',1,'Done','2022-02-16 15:35:20',0),(1888,738,'Issue',1,'','2022-02-16 15:36:16',0),(1889,745,'Issue',1,'Bonjour,\r\n\"New UA Object\" est le BrowseName et DisplayName par défaut pour tous les objets.\r\nIl faut le changer.\r\nAvez vous bien créé une URI pour les instances et associé vos nouvelles instances à ce fichier ?\r\n\r\nCordialement\r\nMichel','2022-02-17 10:00:47',0),(1890,464,'Issue',1,'Bonjour Norbert,\r\navez vous des nouvelles sur ce problème ?\r\nEst ce que cela c\'est reproduit ?\r\n\r\nCordialement\r\nMichel','2022-02-17 10:27:19',0),(1891,89,'Issue',1,'','2022-02-17 10:27:48',0),(1892,745,'Issue',436,'Bonjour Michel,\r\n\r\nCe ticket correspond au ticket ConfigManager que vous m\'avez demandé de créer suite à l\'atelier d\'hier avec Imerys.\r\n\r\nJ\'ai tenté d\'y mettre les informations dont je disposais.\r\nJe n\'ai rien fait de plus depuis l\'atelier d\'hier.\r\n\r\nDésolé si ce n\'était pas clair à l\'ouverture du ticket.\r\n\r\nBien cordialement,\r\nChris','2022-02-17 10:31:13',0),(1893,746,'Issue',436,'Bonjour Michel,\r\n\r\nCe ticket correspond au ticket XiMulator que vous m\'avez demandé de créer suite à l\'atelier d\'hier avec Imerys.\r\n\r\nJ\'ai tenté d\'y mettre les informations dont je disposais.\r\nJe n\'ai rien fait de plus depuis l\'atelier d\'hier.\r\n\r\nJe préfère préciser cela pour éviter toute confusion (comme ça a pu être le cas sur le ticket #745).\r\n\r\nBien cordialement,\r\nChris','2022-02-17 10:33:27',0),(1894,695,'Issue',433,'Bonjour Michel,\r\n\r\nComme convenu hier, veuillez trouver ci-joint la liste de toutes les méthodes exposées par structuresemotors (ainsi que les use case d\'instanciation et d\'utilisation des vector) utilisées par nos 4 Vpi (Line, Plant, ERP et PLM), et qui devraient être présentes (ou transposables vers des méthodes présentes) dans le répertoire d\'include SDK..\r\n\r\nCordialement.\r\n\r\nNicolas et Michael.','2022-02-17 15:52:03',0),(1895,464,'Issue',328,'Bonjour Michel,\r\n\r\nce problème ne s\'est pas reproduit.\r\n\r\nCordialement.','2022-02-17 18:33:31',0),(1896,464,'Issue',1,'Bonsoir,\r\nje ferme le ticket.\r\n\r\nCordialement,\r\nMichel','2022-02-17 18:48:06',0),(1897,705,'Issue',424,'Format json OK avec la livraison du 18.02.2022','2022-02-18 14:51:37',0),(1898,749,'Issue',1,'Bonjour,\r\nj\'ai pourtant bien pris en compte ce scénario.\r\nJe vais refaire quelques essais ce week-end et vous tiens au courant.\r\n\r\nCordialement\r\nMichel Condemine','2022-02-18 15:18:35',0),(1899,705,'Issue',1,'','2022-02-18 15:18:56',0),(1900,679,'Issue',1,'','2022-02-18 15:19:21',0),(1901,673,'Issue',1,'','2022-02-18 15:19:40',0),(1902,672,'Issue',1,'','2022-02-18 15:20:07',0),(1903,636,'Issue',1,'Supporté dans la version livré','2022-02-18 15:20:40',0),(1904,608,'Issue',1,'Corrigé','2022-02-18 15:21:13',0),(1905,604,'Issue',1,'','2022-02-18 15:21:35',0),(1906,417,'Issue',1,'','2022-02-18 15:22:01',0),(1907,704,'Issue',1,'','2022-02-21 10:09:58',0),(1908,731,'Issue',1,'','2022-02-21 10:16:22',0),(1909,741,'Issue',1,'We create VirtualMeter. TBC','2022-02-21 10:23:50',0),(1910,742,'Issue',531,'Hello Alex,\r\n\r\nCan you provide more data on this?','2022-02-21 10:37:43',0),(1911,744,'Issue',1,'Done in model V1.0.6','2022-02-21 16:35:40',0),(1912,700,'Issue',1,'Done in model V1.0.6','2022-02-21 16:37:11',0),(1913,746,'Issue',1,'Le problème : \r\n<pre>\r\n\"Alias \"Range\" généré avec un index i = 2350 au lieu de i = 884\".\r\n</pre>\r\nCe problème est corrigé dans la version 1.0.3.8. Il provenait d\'un BrowseName \"Range\" défini dans la part 8 et dans la Partie 13.\r\nProblème :\r\n<pre>\r\nnon prise en compte des méthodes créées dans le modèle\r\n</pre>\r\nLes méthodes sont, par contre, bien générées. Elle le semble même trop.\r\n!clipboard-202202220030-csjse.png!\r\n ','2022-02-22 00:30:58',0),(1914,750,'Issue',533,'Hello,\r\n\r\nI believe that you are refering to a machine called Vaccum Drying, which is not part of the Coating process. It is an independant process that can happen (for what I know) either after calendering, either after notching.\r\nSince the residence time of the foil inside the dryer of the coating machine is fairly short (in the range of a minute), the drying will never be perfect.\r\nTo reduce the moisture and solvent content, we use a Vaccum Dryer. The residence time is in the range of hours if I am not mistaken.\r\n\r\nFor more details, I suggest you contact the Assembly Team at Verkor.','2022-02-24 10:38:12',0),(1915,742,'Issue',533,'Hello,\r\n\r\nThis is something that I am still working on.\r\nAttached is a drawing of the main difference between two differents zones design : mainly, it affects the way air is circulated inside the oven.\r\nI\'ll shall come back with more details later.\r\n','2022-02-24 10:50:27',0),(1916,753,'Issue',533,'Hello,\r\n\r\nWe are not using aluminosilicate type of ceramic as far as I know. Instead, we are mixing Boehmite ( AlO(OH) ) with our solvent, NMP, in a dedicated mixer.\r\nThe slurry obtained is then transfer to an tank next to the ceramic slot die. Then we start the coating process.\r\n\r\nNote that there is no ceramic coating on the anode, only in cathode.','2022-02-24 10:55:46',0),(1918,756,'Issue',1,'','2022-03-03 19:06:37',0),(1919,698,'Issue',496,'','2022-03-07 13:48:22',0),(1920,725,'Issue',496,'','2022-03-07 13:48:55',0),(1921,696,'Issue',496,'','2022-03-07 13:49:35',0),(1922,720,'Issue',496,'','2022-03-07 13:49:53',0),(1923,757,'Issue',432,'Bonjour M. Condemine, \r\n\r\n\r\nNous avons des souci pour le démarrage du serveur même en ayant ramené les dlls crt. \r\n\r\nCe qui nous choque le plus c\'est qu\'il nous demande la vcruntime140 alors qu\'il a la vcruntime140d (et la conf est en debug)\r\n\r\nPas de souci pour prendre en main l\'installation avec les outils Microsft. Sauriez vous quels composants il faut installer pour avoir la vcruntime140d, la ucrtbased et la msvcp140d ? \r\n\r\nCordialement, \r\n\r\nMichael','2022-03-08 12:12:30',0),(1924,757,'Issue',1,'Bonjour,\r\nje pense que sur IMERYS vous pouvez installer une version release IPV4 ou IPV6.\r\ncordialement\r\nMichel Condemine','2022-03-08 13:30:37',0),(1925,757,'Issue',432,'Bonjour, \r\n\r\nAuriez vous s\'il vous plaît un moment pour nous livrer versions release du Coreserver, VpiLib et VpiS7? \r\n\r\nCordialement, \r\nMichael ','2022-03-08 13:36:03',0),(1926,757,'Issue',1,'Je vais installer ma maquette dans l\'AM.\r\nLes binaires pourront etre copiés depuis cette source.\r\n\r\nCordialement\r\nMichel Condemine','2022-03-08 13:47:07',0),(1927,750,'Issue',1,'','2022-03-08 14:44:17',0),(1928,743,'Issue',1,'Fixed in version 0.0.1.0','2022-03-08 14:59:36',0),(1929,742,'Issue',1,'','2022-03-08 15:04:15',0),(1930,740,'Issue',1,'Not require by the VEKOR project','2022-03-08 15:08:34',0),(1931,740,'Issue',1,'','2022-03-08 15:08:49',0),(1932,730,'Issue',1,'','2022-03-08 15:09:03',0),(1933,757,'Issue',432,'Rebonjour M. Condemine,\r\n\r\n\r\nNous essayons de convertir les adresses au niveau du mapping automates s7 \r\n\r\n\r\nSelon notre compréhension, l\'adresse DB200.DBD14 est équivalente à DB.00C8.000E. Est-ce correct ? La disparition de la lettre D présente dans l\'adresse initiale n\'est pas problématique ? \r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n\r\n','2022-03-08 18:40:04',0),(1934,760,'Issue',1,'Bonjour,\r\nPoint 1,Le vpiuaclient, comme tous les voit supporte le multi tag. \r\nPoint 2, la conversion de type il faudra voir au cas par cas. Mais enum vers Bool ne sera pas supporté. Cela ne fait pas bien sens.\r\nCordialement\r\nMichel Condemine','2022-03-10 10:08:43',0),(1935,759,'Issue',1,'Bonjour,\r\nIl semble qu\'il y ai une erreur d\'adresse.cbc0001a\r\nCordialement\r\nMichel Condemine\r\n','2022-03-10 10:11:02',0),(1936,761,'Issue',1,'Bonjour,\r\npourrions nous faire un call sur ce point ?\r\nJe parle d\'un Team ou je pourrais voir le comportement du serveur.\r\nAvez vous changé le paramètre du Node. Je parle de l\'AccessLevel et de l\'UserAccessLevel ?\r\n\r\nCordialement\r\nMichel','2022-03-14 15:39:06',0),(1937,761,'Issue',489,'Rebonjour Michel, \r\n\r\nOui on les a bien mis en 15 . Pour le point, ça vous va aujourd\'hui après 19h00?\r\n\r\nMerci,\r\nArash.\r\n','2022-03-14 16:06:46',0),(1938,761,'Issue',1,'Bonjour,\r\nje ne suis pas disponible ce soir a 19h00.\r\nJe serai dispo demain entre 9h00 et 10h00\r\n\r\nCordialement\r\nMichel Condemine','2022-03-14 17:22:22',0),(1939,761,'Issue',1,'Bonjour,\r\npourriez vous :\r\n* installer les binaires disponibles ici : http://www.openopcua.org/redmine/attachments/download/2687/OOUA_Binaries_15-3-2022.zip\r\n* Lancer le serveur\r\n* Lancer le ProcDump\r\n* Exécuter la procédure qui provoque le crash\r\n* Récupérer le MiniDump et me le transmettre via la Redmine\r\n\r\nCordialement\r\nMichel Condemine','2022-03-15 09:26:51',0),(1940,761,'Issue',489,'Bonjour,\r\n\r\nVoici le rapport .dmp qu\'on a récupéré ce matin pendent le teste d\'historisation.\r\n\r\nCordialement,\r\nArash.','2022-03-15 10:10:40',0),(1941,761,'Issue',1,'Bonjour,\r\nje ne sais pas pourquoi mais les symboles en ma possession ne pointent pas sur une exception exploitable.\r\n\r\nJe ne peux rien faire en l\'état, désolé.\r\n\r\nCordialement\r\nMichel Condemine','2022-03-15 15:51:39',0),(1942,761,'Issue',432,'Bonjour Arash, \r\n\r\nJ\'ai pu tester une historisation de float de mon côté et la récupération à travers UaExpert a bien fonctionné. \r\n\r\nPourrais tu m\'envoyer la configuration qui effectue cette historisation et les logs obtenus ? Ou bien est-ce que je me connecte pour regarder la configuration ? Pour info, je suis disponible aujourd\'hui jusqu\'à midi. \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\nInetum','2022-03-16 10:17:00',0),(1943,761,'Issue',1,'Michael,\r\nnous avons fait une session avec EMOTORS hier pour adresser ce problème.\r\nJe m\'occuperai de finaliser l\'investigation ASAP.\r\n\r\nCordialement\r\nMichel Condemine','2022-03-16 10:21:41',0),(1944,761,'Issue',489,'Bonjour Michael,\r\n\r\nExcusez-moi pour ma réponse tardif.\r\n\r\nJ\'ai défini les quatre nouveaux instance dans autres namespace pour que le serveur les archiver appart, dans un nouveau tableau sans dérangeant la table de linge (sur la BDD). Maintenant, le \'history trend view\' d\'UA Expert marche mieux avec tout les quatre valeurs (hier on a réussit de voir les plots pour deux mais pas tout) . Mais le server va crasher, pas tout de suite mais après quelque minutes.\r\n\r\nIci je vous partage les dossier de projet et log. Si vous aviez besoin de regarder à distance, n\'hésitez pas de m\'appeler je le ferais dès que je peux.\r\n\r\nCordialement,\r\nArash.','2022-03-16 18:38:42',0),(1945,764,'Issue',432,'Rebonjour, \r\n\r\nMalgré cette correction, le serveur semble toujours crasher au bout d\'un certain moment. Au moment du crash ce soir, uniquement le VpiS7 indiquait des erreurs (celle qu\'on pense dû au caractère non imprimable qui traîne dans le fichier xml). \r\n\r\nCi joint les logs au moment du crash ce soir. J\'essayerai de mettre l\'accent sur l\'investigation qu niveau de ce fichier xml demain.\r\n\r\nCordialement, \r\n\r\nMichael\r\n','2022-03-17 18:10:56',0),(1946,764,'Issue',1,'Bonsoir,\r\nest ce que vous pourriez mettre en place un procdump avec les derniers binaires ?\r\n\r\nCordialement\r\nMichel Condemine','2022-03-17 18:13:30',0),(1947,764,'Issue',432,'Bien sur. \r\n\r\nLe procdump fonctionnera en mode release ? Quand vous dites derniers binaires , aux quels se réfèrent-on ? Celles qui tournent sur la configuration demo imerys sont ceux récupérés de la maquette mqtt. \r\n\r\n\r\nCordialement, \r\nMichael','2022-03-17 18:17:45',0),(1948,764,'Issue',1,'Bonjour,\r\nle procdump fonctionne partiellement en release. Les binaires sont ici :\r\nhttp://www.openopcua.org/redmine/attachments/download/2703/Livraison%20Binaires%20Release-IPV6%20-%2017-03-2022.zip\r\n\r\nCordialement\r\nMichel Condemine','2022-03-17 18:19:39',0),(1949,764,'Issue',432,'Bonsoir, \r\n\r\nCi joint le fichier dmp obtenu. \r\n\r\nCordialement, \r\n\r\nMichael','2022-03-17 19:37:18',0),(1950,764,'Issue',1,'Bonsoir,\r\nLe ProcDump ne mène nul part, dommage.\r\nest ce que la configuration en service est disponible sur le Redmine ?\r\nOn voit plusieurs erreurs critiques dans les log. Il faudrait les corriger.\r\n\r\nCordialement\r\nMichel Condemine','2022-03-17 19:50:49',0),(1951,764,'Issue',432,'Bonjour, \r\n\r\n\r\nCi joint la configuration actuelle. \r\n\r\nJe vais faire une passe sur les logs serveur et vous faire un retour sur ceux qu\'on ne peut pas éliminer \r\n\r\n\r\nCordialement, \r\nMichael','2022-03-18 09:40:16',0),(1952,764,'Issue',432,'Rebonjour, \r\n\r\nCi dessous les erreurs trouvés dans les logs serveurs. \r\n\r\n1er groupe de logs énorme lié à la Part 14 \r\n2ème groupe de logs autour de variables appelées Location dans le nodeset de type qui ont pour Datatype une variable (i=2061). \r\n3ème groupe de logs liées à la Part 5 qui a des datatype abstraits.\r\n4ème groupe de logs de type « uiSequence 16 not found on SubscriptionId: 10103 »\r\n\r\nAuriez vous une Part 5 et Part 14 propre de votre côté ? \r\n\r\n\r\nPour les logs du groupe 2, nous essayerons de les éliminer à la prochaine régénération de modèle. \r\n\r\n\r\n\r\nPar rapport au fichier Subsystem qui nous perturbe (Opc.Ua.SubSystem.S7_31.xml), je vais le reconstruire from scratch en évitant les copiés collés depuis ce fichier. Auriez vous dev votre côté la possibilité de faire du pas à pas lors du parsing du fichier subsytem ? \r\n\r\nTout cela ne permet toujours pas de comprendre la raison du crash. La seule nouveauté que je pense pouvoir causer le problème est le client Opc Ua AWS que l\'on ne maîtrise pas. \r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n','2022-03-18 11:10:55',0),(1953,764,'Issue',432,'Rebonjour, \r\n\r\nCi-joint des traces de cette après midi. \r\nWireshark était démarré avant le lancement du serveur et arrêté après crash du serveur. La majorité des paquets sont des lectures du Opc.Model mais nous avons d\'autres types de paquets en début et en fin des traces. \r\n\r\nL\'IP du client AWS est 10.116.24.101 et le serveur tourne sur port 5123\r\n\r\nCordialement, \r\n\r\nMichael','2022-03-18 15:18:37',0),(1954,764,'Issue',432,'Bonjour, \r\n\r\nA titre informatif, malgré la récriture complète du fichier subsystem on retombe sur les même erreur au niveau du VpiS7. J\'ai pour le moment commenté un des 2 tags problématiques. \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2022-03-18 15:38:49',0),(1955,764,'Issue',432,'Les logs et traces du dernier crash avant de passer en debug\r\n','2022-03-18 18:02:04',0),(1956,764,'Issue',432,'Bonjour, \r\n\r\nCi joint le minidump obtenu avec binaires Debug de hier soir. \r\n\r\nCordialement, \r\n\r\nMichael','2022-03-19 10:34:02',0),(1957,764,'Issue',1,'Bonjour,\r\nil y a un problème avec les nodes de dataType ns=1;i=325 (SampleDataType)\r\nLe serveur n\'arrive pas à lire les UAVariable de ce type et crash quand on s\'abonne dessus.\r\nElles sont vraisemblablement mal déclarées dans le dataTypeDictionnary ou celui-ci a été écrasé.\r\nJe vais vais continuer à étudier le sujet. En attendant je vais changer le dataType de certaines varibale et vérifier cette hypothèse.\r\n\r\nCordialement\r\nMichel Condemine','2022-03-19 17:02:12',0),(1958,764,'Issue',1,'Fichier','2022-03-19 17:03:34',0),(1959,764,'Issue',1,'j\'ai modifié toutes les variables utilisant le dataType ns=1;i=325 pour des i=1 (Boolean)\r\nJ\'ai relancé le serveur sous mon Id..\r\nA suivre','2022-03-19 17:21:57',0),(1960,693,'Issue',1,'Bonjour,\r\nla version 1.0.2.2_v1.0.3.9 du XiMulator devrait régler ce problème.\r\nElle est disponible dans la section fichier.\r\nJe ferme cet incident.\r\n\r\nOn en parle lundi\r\nCordialement\r\nMichel Condemine','2022-03-19 18:17:44',0),(1961,764,'Issue',1,'Bonjour,\r\nle serveur fonctionne sans problème depuis environ deux heures.\r\nA suivre\r\n\r\nCordialement\r\nMichel Condemine','2022-03-19 19:10:15',0),(1962,764,'Issue',1,'Le système fonctionne parfaitement depuis maintenant depuis 6 heures. Le client AWS est connecté. Je pense que le problème est *contourné* .\r\nIl est bien lié aux UAVariables qui contiennent des tableaux de datatype ns=1;i=325. \r\n\r\nJe ferme ce ticket. \r\nL\'origine reste à étudier.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-03-19 23:00:10',0),(1963,693,'Issue',447,'Bonjour,\r\n\r\nj\'ai récupéré le fichier et lors de la creation du NodeSet de SharedClasse, Ximulator crash après environ 5s de génération.\r\n\r\nAvez-vous constaté ce problème? Sinon pouvons-nous faire un call un soir avec partage d\'écran?\r\n\r\nMerci\r\n\r\nLionel','2022-03-21 10:49:36',0),(1964,759,'Issue',432,'Bonjour, \r\n\r\n\r\nCe problème est toujours d\'actualité. \r\n\r\nJe vous propose que lorsque vous avez un moment, nous effectuons du debug lors du parsing du fichier de mapping S7. \r\n\r\nCordialement, \r\n\r\nMichael','2022-03-21 11:25:54',0),(1965,693,'Issue',1,'Bonjour Lionel,\r\nAujourd\'hui 13n00 ?\r\n\r\nCordialement\r\nMichel','2022-03-21 12:00:55',0),(1966,693,'Issue',1,'Bonjour,\r\nje viens de corriger le problème.\r\nJe vous livre une autre version rapidement.\r\n\r\nCordialement\r\nMichel','2022-03-21 12:13:01',0),(1967,634,'Issue',1,'Not relevant anymore','2022-03-21 14:26:54',0),(1968,737,'Issue',1,'','2022-03-21 14:43:40',0),(1969,759,'Issue',432,'Bonjour, \r\n\r\nCe problème est aussi présent avec les binaires debug. \r\nOn semble avoir réussi à le contourner en inversant l\'ordre des deux Tags problématiques. \r\n\r\n\r\n!clipboard-202203221434-btkyd.png!\r\n\r\nCordialement,\r\n\r\nMichael','2022-03-22 14:34:57',0),(1970,771,'Issue',432,'Informations supplémentaires : \r\n\r\n1) Tel quel, la souscription à ce type de variable de fonctionne pas avec UaExpert. La lecture elle par contre fonctionne (tout en écrasant le Datatype original de la variable) \r\n\r\n2) De plus et un peu plus grave, les nœuds qui se retrouvent dans ce cas doivent être déclarés en fin de subsystem. Sinon ils causent un effet de bord sur les autres adresses et in récupère des valeurs fausses. \r\n\r\nCordialement, \r\n\r\nMichael','2022-03-22 15:12:54',0),(1971,771,'Issue',432,'Bonjour, \r\n\r\nLe fait de activer les tags dans ce cas semble aussi provoquer un phénomène de freeze du serveur. \r\n\r\nNous sommes donc obligés de commenter les noeuds mappés qui sont dans ce cas. \r\n\r\nCordialement, \r\n\r\nMichael','2022-03-23 14:31:22',0),(1972,764,'Issue',432,'Bonjour M. Condemine, \r\n\r\nComme entendu pendant le call, veuillez trouver ci-joint une maquette permettant de reproduire le crash qu\'on avait vendredi dernier. \r\n\r\nElle contient sous l\'Objet Lixhe 5 variables de type tableau de SampleDataType. Les 3 premières ont un ArrayDimensions à 1 et les 2 dernières un ArrayDimensions à 0\r\n\r\nUn abonnement à 1 parmi les trois premiers nœuds génère des Publish Failed et la lecture ne fonctionne pas non plus. \r\nUn abonnement à 2 parmi les trois premiers nœuds génère un crash. \r\n\r\nJ\'ai aussi fait le test avec un autre Datatype, on n\'a pas le même comportement. \r\n\r\nCordialement, \r\n\r\nMichael','2022-03-23 16:57:16',0),(1973,749,'Issue',1,'','2022-03-24 10:22:52',0),(1974,764,'Issue',1,'','2022-03-25 18:08:14',0),(1975,665,'Issue',1,'','2022-03-25 18:08:51',0),(1976,746,'Issue',1,'','2022-03-27 21:29:27',0),(1977,726,'Issue',1,'Mise à dispo','2022-03-27 23:22:52',0),(1978,241,'Issue',1,'','2022-03-27 23:23:35',0),(1979,688,'Issue',1,'Merci de fermer les tickets obsolètes','2022-03-27 23:25:14',0),(1980,674,'Issue',1,'','2022-03-27 23:27:31',0),(1981,509,'Issue',1,'','2022-03-27 23:34:33',0),(1982,508,'Issue',1,'','2022-03-27 23:35:03',0),(1983,323,'Issue',1,'Closed for lack of answer','2022-03-27 23:35:52',0),(1984,78,'Issue',1,'Fixed 6 years ago.\r\nCurrent OOUA version is 1.0.7.0','2022-03-27 23:36:45',0),(1985,525,'Issue',1,'Resolution here :\r\nhttps://knowledge.broadcom.com/external/article/191764/endpoint-protection-detects-known-good-a.html ','2022-03-28 00:15:31',0),(1986,525,'Issue',1,'','2022-03-28 00:22:23',0),(1987,772,'Issue',1,'Bonjour,\r\nle terme Freeze est assez opaque. \r\n* Est ce que le serveur ne répondait plus à UA Expert ?\r\n* Est ce que wireshark ne montrait plus d\'activité sur OPC UA et/ou sur S7\r\n\r\nIl serait interessant de savoir ce qui s\'est passé à horodate suivante : 2022-03-24T01:04:28.953Z\r\n\r\nVeuillez etre plus explicite dans vos descriptions.\r\n\r\nCordialement\r\nMichel Condemine','2022-03-28 00:32:51',0),(1988,772,'Issue',1,'','2022-03-28 00:33:10',0),(1989,756,'Issue',1,'Merci de vous référer aux exemples','2022-03-28 00:34:58',0),(1990,677,'Issue',1,'Il s\'agissait d\'un problème dans StructureEMotors et dans les Vpis Inetum.','2022-03-28 00:37:02',0),(1991,771,'Issue',1,'Définitivement les Enum OPC UA ne sont ni des bool ni des Int16.\r\nCe ticket restera une demande d\'evolution. \r\nJe traiterai ce problème dans WG Modélisation IMERYS.\r\n\r\ncordialement\r\nMichel Condemine\r\n\r\n\r\n','2022-03-28 00:40:59',0),(1992,770,'Issue',1,'Il s\'agit en effet d\'une evolution. Elle est cependant non prioritaire.\r\nElle sera traitée le moment venu.\r\nCordialement\r\nMichel Condemine','2022-03-28 00:43:23',0),(1993,769,'Issue',1,'Déplacé vers le projet approprié','2022-03-28 00:44:47',0),(1994,768,'Issue',1,'Il ne s\'agit pas d\'une anomalie mais d\'une evolution.\r\nJe déplace ce ticket vers le projet approprié.','2022-03-28 00:46:48',0),(1995,767,'Issue',1,'Déplacé vers le projet approprié','2022-03-28 00:47:40',0),(1996,760,'Issue',1,'RAS, déjà traité','2022-03-28 00:49:09',0),(1997,758,'Issue',1,'h3. Merci d\'utiliser la dernière version XiMulator_1.0.2.3_v1.0.4.3','2022-03-28 00:50:28',0),(1998,774,'Issue',533,'Hello,\n\nNMP : N-methyl-2-pyrrolidone. It is the solvent used for Cathode Slurry.\nPVDF : Polyvinylidene Fluoride. It is a polymer that we use as a binder in the Cathode Slurry\nPD Mixer : Planetary Disperser Mixer. This is the name used for the Slurry Mixer (those that are 1000-ish Liters) : they have two blades that are on a planetary revolution (see the attachement).\nDW Storage (also called DIW) : Distilled Water. A grade of pure Water that is used as a solvent in the Anode Slurry.\nCMC : Carboxymethyl celluose. It is a polymer that we use as a binder in the Anode Slurry\nEPC Control : Edge Position Control. Is a C-Shape sensor used to keep the web in the right position. (See the attachment)\nWIP : Could be Work in Progress or Work In Place. In the second case, it refer to a temporary storage place next to the machine.\nOCV : No idea. Closest item would be VOC for Volatile Organic Compounds, which refers to every components that has a low boiling point (or high vapor pressure) such as Alcohol.\n\nACIR/DCIR : Alternative Current/Direct Current Induced Resistance. Those are two methods that are used by Formation Team to check the quality of the cell. I recommend connecting with someone from their team if you need more details.\n\nNMC : Nickel Manganese Cobalt. This is one type of Active Material for Cathode.','2022-03-28 09:59:09',0),(1999,773,'Issue',447,'Bonjour\r\n\r\nEn effet, il y en avait pas mal d\'autre dans la partie sharedclasse. Je les ai tous modifié\r\n\r\n!clipboard-202203281022-j6oxu.png!\r\n\r\n\r\nLionel Claudel','2022-03-28 10:22:59',0),(2000,773,'Issue',447,'','2022-03-28 10:23:21',0),(2001,775,'Issue',1,'New equipment at Department Level','2022-03-28 16:12:33',0),(2002,766,'Issue',1,'A Dashboard app acting as an OPC UA client can be setup for that.\r\nCMMS can be used for it. The CMMS can be an OPC UA server.','2022-03-28 16:24:05',0),(2003,762,'Issue',1,'','2022-03-28 16:36:12',0),(2004,752,'Issue',1,'Can be tested with pump CA3.059 SP, AutoManualCtrl and Y.\r\nAllowing to test Method call and the C2D','2022-03-28 16:42:14',0),(2005,719,'Issue',1,'','2022-03-28 16:44:33',0),(2006,776,'Issue',424,'A noté que +parfois+ , je publie depuis MosquittoPub avec la commande ci-dessus, et je vois la variable #A_consumption changer depuis un client OPCUA. Mais le coup d\'après, le serveur/subscriber plante.','2022-03-28 17:01:38',0),(2007,776,'Issue',1,'Bonjour,\r\nvous faites les tests sous Windows ?\r\nAuriez vous une callstack du crash ?\r\nAutre question. \r\nVotre schéma fait reference à Mosquitto et votre log à HiveMq. \r\nPourriez vous me préciser votre configuration.\r\nOn pourrait faire un point via Team dans la semaine.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n\r\n','2022-03-28 17:12:47',0),(2008,776,'Issue',424,'Bonjour,\r\nUniquement la partie mosquitto se trouve sur ma machine windows (à gauche du schéma). Le subscriber que vous nous avez fourni a été compilé pour notre cible Cyclomix(à droite du schéma) et se connecte au broker sur l\'autre machine.\r\nJe vais voir avec gdb si je peux vous retourner le callstack.\r\n\r\nEn effet le fichier log c\'est Hivemq car j\'avais utilisé le fichier HiveMq-00150.dat, mais le broker utlisé c\'est bien mosquitto. j\'adapterai le bon fichier (.dat) pour éviter toutes confusions.\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n','2022-03-28 17:24:55',0),(2009,776,'Issue',1,'Bonjour,\r\nEst ce que le Subscriber reçoit les messages quand vous publiez en utilisant un client OPC UA. \r\nJe parle d\'une écriture depuis UAExpert dans le serveur sur un node associé au publisher.\r\n\r\nCordialement\r\nMichel Condemine','2022-03-28 17:29:06',0),(2010,776,'Issue',424,'Je ne suis pas sûr d\'avoir compris, vous voulez que je démarre le serveur avec le Publisher activé, modifier une donnée via un client opcua qui sera publier par le publisher et voir ce que le subscriber reçoit?\r\n','2022-03-28 17:39:47',0),(2011,776,'Issue',424,'Comme sur cette image?\r\n\r\n!clipboard-202203281746-ltjwq.png!\r\n','2022-03-28 17:47:04',0),(2012,776,'Issue',424,'Bonsoir M. Condemine,\r\nCi-joint les logs et gdb des deux tests réalisés:\r\n1.zip : MosquittoPub > MosquittoBroker > MqttJsonSub\r\n2.zip : OpcuaClient > OpcUaCoreServer > MqttJsonPub > MosquittoBroker > MqttJsonSub\r\n\r\nD\'après la callstack le problème semble venir à chaque fois de la fonction DecodeUaPayload.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2022-03-28 18:02:40',0),(2013,771,'Issue',432,'Bonjour,\r\n\r\nC\'est noté pour le point. \r\nPour donner un peu plus de détail sur le freeze: UaExpert ainsi que la console ne réagissent plus. Je n\'ai malheureusement pas pensé à regarder si il y avait de la communication S7. \r\nPour info, nous n\'avons plus ce phénomène quand les Tagsde type Enums mappés en Int16 et Bool sont pas activées. \r\n\r\nCordialement, \r\n\r\nMichael','2022-03-29 14:11:35',0),(2014,772,'Issue',432,'Bonjour, \r\n\r\nJe pense que le freeze est vraiment lié au ticket 771. J\'ai essayé de donné plus de détail sur le ticket. \r\nPour ce ticket, il s\'agit d\'un problème de connexion et de reconnexion du VpiMqtt (qui ne cause pas d\'instabilité du serveur) qui ne se résous pas tous seul sans redémarrage du serveur. \r\nPour info, ce phénomène s\'est encore reproduit ce weekend. \r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2022-03-29 14:15:13',0),(2015,779,'Issue',432,'','2022-03-29 14:28:03',0),(2016,780,'Issue',1,'Bonjour,\r\nil suffit de supprimer le répertoire CertificateStore et de relancer le serveur.\r\n\r\nBien cordialement\r\nMichel Condemine','2022-03-29 16:49:30',0),(2017,780,'Issue',1,'','2022-03-29 16:49:41',0),(2018,776,'Issue',1,'Bonjour Maycko,\r\nmerci pour cette pile d\'appel. Elle nous conduit ligne 1043 sur un malloc.\r\nIl est probable que le calcul de la longueur de la payload rencontre un problème.\r\nJe vais voir ce que je peux faire.\r\nEst ce que vous rencontrez ce problème systématiquement ?\r\n\r\nCordialement\r\nMichel Condemine','2022-03-29 17:37:15',0),(2019,776,'Issue',424,'Bonjour M. Condemine,\r\nAvec la configuration 2 (OpcuaClient > OpcUaCoreServer > MqttJsonPub > MosquittoBroker > MqttJsonSub), c\'est systématique.\r\nDès le démarrage du serveur j\'ai le problème.\r\n\r\nAvec la configuration 1 (MosquittoPub > MosquittoBroker > MqttJsonSub)\r\nCe problème peut arriver dès le premier message reçu mais ce n\'est pas systématique. J\'ai pu envoyer entre 1 et 8 messages avant d\'avoir le problème.\r\n\r\nJ\'ai aussi eu le cas ci-joint, toujours au démarrage du serveur.\r\n\r\nBien cordialement,\r\nMaycko LOUIS\r\n','2022-03-29 18:17:35',0),(2020,619,'Issue',1,'','2022-03-29 21:51:41',0),(2021,779,'Issue',1,'Bonjour,\r\nPetite clarification qui a son importance. Avec OPC UA on ne parle pas de HDA mais de HA.\r\nPour en venir au problème.\r\nPostGreSql renvoie un message d\'erreur qui semble indiquer une erreur dans le serveur SQL.\r\nManifestement le serveur SQL n\'est plus disponible. Le serveur OOUA appel le VfiWarmStart plusieurs fois sans succès.\r\nL\'appel HA de Genesis ne doit pas être correcte d\'où les erreurs SQL : \r\n* insufficient data in \"T\" message code:0x00007\r\n* connection pointer is NULL code:0x00007\r\n\r\nIl faudrait creuser la signification de ces messages dans le documentation PostGreSql.\r\n\r\nUne analyse plus poussée serait aussi interessante. Pour ce faire, il me faudrait une maquette complète dans une VM sur le Cloud.\r\n\r\nCordialement\r\nMichel Condemine','2022-03-29 22:09:48',0),(2022,772,'Issue',1,'','2022-03-29 22:11:18',0),(2023,772,'Issue',432,'Bonjour, \r\n\r\n\r\nAvez vous réussi à résoudre le problème ? \r\n\r\nCordialement, \r\n\r\nMichael ','2022-03-30 09:44:39',0),(2024,772,'Issue',1,'Bonjour,\r\nce ticket est confus. \r\nIl fait référence au ticket 771 et aborde le sujet de la reprise de connexion du Publisher Mqtt.\r\nJe ferme donc ce ticket. \r\nJ\'ai répondu au 771 et je m\'occupe du cas de la reconnexion.\r\nJe vous recommande d\'installer la dernière version du VpiS7 qui permet de configurer manuellement des blocs de communication.\r\n\r\nCordialement\r\nMichel Condemine','2022-03-30 09:59:23',0),(2025,781,'Issue',533,'Hello,\r\n\r\nYou\'ll find the P&ID of the Cathode and Anode SRS (which stand for Solvent Recovery System).\r\nAs a reminder, the purpose of this equipment is to recover the NMP as it is an expensive solvent and to limit the NMP concentration in the air, hence reducing the risk of forming an explosive atmosphere.\r\n\r\nLet me know if you need further explanation.','2022-03-30 14:44:54',0),(2026,782,'Issue',1,'Hi Stéphane,\r\nthis is not straight forward and easy to explain.\r\nI suggest that you publish the new version and we will synchronise it together on Monday.\r\n\r\nRegards\r\nMichel','2022-03-31 09:37:45',0),(2027,783,'Issue',1,'Voir sections fichiers et news','2022-03-31 12:09:14',0),(2028,776,'Issue',1,'Bonjour,\r\nje vais procéder à une nouvelle livraison ce jour.\r\nJ\'ai aussi préparé une maquette Linux.\r\nJe vous propose d\'utiliser cette maquette pour les tests préliminaires.\r\nLa maquette échange entre un publisher et un subscriber fonctionnant dans deux instance du serveur des données de types :\r\n* Int32\r\n* UInt16\r\n* Float\r\n* String\r\n* Array of Float\r\n* Array of UInt32\r\n* Array of string\r\n\r\nCordialement\r\nMichel Condemine','2022-03-31 16:14:16',0),(2029,787,'Issue',1,'Bonjour,\r\nmerci pour ce log. Je pense que le niveau de LOG est à ERROR. Il faudrait le passer en INFO.\r\nTRACE_LEVEL INFO dans le fichier .DAT\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-04-04 14:55:29',0),(2030,787,'Issue',489,'Voici le Log avec le démarrage en mode INFO pour le VPIInitValue\r\n\r\nCordialement\r\nArash Morteza','2022-04-04 15:25:10',0),(2031,785,'Issue',1,'Bonjour,\r\nDans ce ticket vous n\'avez de problème qu\'avec les String et vous fabriquez manuellement la payload. ATTENTION.\r\nÊtes vous certain de votre payload ?\r\nJ\'ai fait des tests méticuleusement avec tous les types. Mais, lors de mes tests, c\'est toujours le Vpi publisher qui encode.\r\nD\'ou ma question.\r\nEn étudiant vos logs et callstack. Le free semble étrange et valide l\'hypothèse d\'une chaine corrompue, des \\\" manquants.\r\n4.zip\r\nLe contenu de la chaine \"Titi\" est correctement formaté mais 0 ne l\'est pas. Il manque les \"\". Il y a d\'ailleur une erreur dans le fichier log Mosquito-00150.log\r\n6.zip\r\nEst ce qu\'il y a eu un crash ?\r\nCar apparemment il n\'y a rien à transmettre. la payload est sans doute \"vide\"... entre guillemet .\r\n7.zip\r\nIci le Crash nous amène sur Vpi_ByteString_Clear(m_pPayLoad);\r\nProbablement un problème de décodage d\'une chaine.\r\nOn voit le message dans le log le message. DecodeUaPayload encounter an error. 0x80060000 (Vpi_BadEncodingError). The payload is probably corrupted. Payload size is 4416.\r\n\r\nLe message doivent être fabriqué par un publisher MQTT. Leurs fabrication à la main reste délicate. mosquitto_pub n\'est pas un publisher OPCUA. Il est utilisable mais c\'est délicat. Je vous recommande d\'uliser le Vpi publisher.\r\nJe vais vous ce que je peux faire pour durcir le code.\r\n\r\n\r\n\r\nCordialement\r\nMichel Condemine','2022-04-05 16:25:28',0),(2032,786,'Issue',1,'Bonjour,\r\nc\'est by-design. Il s\'agit, aussi, de faire la différence avec les ByteString.\r\nEst ce un problème ?\r\n\r\nCordialement\r\nMichel Condemine','2022-04-05 16:26:53',0),(2033,787,'Issue',447,'2 Procdump de ce jour\r\n\r\nNicolas a identifié que les valeurs restituées dans par le vpinitvalue ne sont pas cohérentes (voir screenshot réalisé en démarrant le seulement avec le vpiinitvalue) - à partir du milieu du part_data 20 sur le tableau de 454, les données ne sont plus ok\r\n\r\n!clipboard-202204051725-mt8op.png!\r\n \r\n\r\n','2022-04-05 17:27:03',0),(2034,785,'Issue',424,'Bonjour,\r\n\r\nConcernant la payload, j\'avais récupéré ce qu\'envoie le VpiPub dans le broker, ajouté le caractère \' \\ \' devant chaque \' \" \', et republier cette chaine avec mosquitto_pub pour voir le comportement du VpiSub.\r\nJe me suis aussi posé cette question concernant une chaine potentiellement corrompue c\'est pour cela dans le cas du ticket #788 j\'utilise uniquement VpiPub -> broker mosquitto -> VpiSub. J\'ai qd même par moment ce problème.\r\n4.zip\r\nJ\'avais en effet envoyé \"Titi\" puis Tata sans les \"\" pour voir ce qui se passait en cas de string mal formaté. J\'ai vu le 0. OK pour moi. Mais après cela je n\'arrivais plus a envoyé \"Toto\". J\'ai eu l\'erreur (Vpi_BadNothingToDo 0x800F0000), puis crash.\r\n6.zip\r\nOui, il y a eu un crash. j\'ai testé avec \"teststring1\", ça a fonctionné, puis \"teststring2\". J\'ai eu l\'erreur (0x800F0000), puis crash.\r\nJ\'ai relancer le serveur/subscriber, j\'ai essayé \"teststring0\" qui a fonctionné. j\'ai retesté avec \"teststring1\" et j\'ai eu l\'erreur. puis crash\r\nJ\'ai relancer le serveur/subscriber j\'ai essayé de \"teststring1\" à \"teststring12\" (12 modifications), il n\'y a pas eu de problème. à \"teststring13\" j\'ai eu l\'erreur 0x800F0000, j\'ai essayé \"teststring14\" et là, crash.\r\nJ\'ai encore redémarrer le serveur/subscriber j\'ai essayé des dizaines de string sans aucun problème. \r\nCe n\'est vraiment pas systématique.\r\n\r\nPour les tests suivants, notamment le cas du ticket #788, je n\'utilise plus mosquitto_pub.\r\n\r\nCordialement,\r\nMaycko LOUIS','2022-04-05 18:37:32',0),(2035,786,'Issue',424,'Bonjour,\nSi vous en avez besoin. C\'est OK pour moi.\nJe peux le traiter de mon côté.\n\nBien cordialement,\nMaycko LOUIS','2022-04-05 18:39:33',0),(2036,787,'Issue',1,'Bonjour,\nNotons ce que l\'on sait :\n1- Le VpiValuesInit restitue des valeurs\n2- Ces valeurs amènent le VpiLine à faire crasher le serveur.\n3- VpiLine appel StructureEmotors quand il tente de décoder CJobStatus\n4- La payload est passée pour décoder le CJobStatus est corrompu corrompue.\n *C\'est elle qui provoque le crash*\n\nQuestions : \n1- Pourquoi cette payload corrompu arrive à StructureEmotors ?\n \n2- D\'ou vient elle ?\n Elle provient de la base\n3- Est ce qu\'elle est corrompu dans la Base ?\n Certainement\n4- Qui stock dans la base ?\n Le VfiPgSql\n5- Est ce que le VfiPgSql corrompt la donnée lors du stockage ?\n6- Est ce Pg qui corrompt la donnée lors du stockage ?\n\nPlan d\'action\n1- Créer un enregistrement de composé de 4 ERP_OF. Chaque ERP_OF devra avoir plus de 450 PartProduce et chaque PartProduce devra contenir OP et SubOp.\n2- Provoquer un archivage\n3- stopper le serveur\n4- relancer le serveur\n5- vérifier que les données sont bien restaurées.\n\nAutres questions :\n@Lionel : Est ce que la table d\'archivage Pg de vendredi pourrait être restaurée ?\nPourquoi y a t il 6 archivages à la même horodate ? ( *Il pourrait correspondre à des tentatives de redémarrage* )\n@GA : A quelle heure le serveur a t il été arrêté ?\n\nCordialement\nMichel Condemine\n','2022-04-05 20:41:29',0),(2037,787,'Issue',1,'Re-Bonsoir,\r\nIl y a une explication potentielle aux six archivages à la même horodate.\r\nPour valider cette hypothèse il faudrait les traces du Vfi de vendredi avant l\'arrêt du serveur.\r\n\r\nCordialement\r\nMichel Condemine','2022-04-05 20:47:55',0),(2038,791,'Issue',1,'','2022-04-06 21:16:02',0),(2039,791,'Issue',1,'Bonjour,\r\nOn parle ici d\'un crash au matin du 6 avril 2022 à 10:52:33 CET d\'après le minidump\r\nVous écrivez :\r\n<pre>\r\nLes logs LM indiquent aussi peu avant le crash un message de type\r\n</pre>\r\nEn fait il y d\'autres nodes dans d\'autres namespace mal configurés, ns=20, ns=30 et ns=31 sur le i=1013. C\'est quoi ces nodes ?\r\nEt l\'erreur apparait bien avant le crash\r\nil y a aussi :\r\nconfiguration file inconsistancy. Cannot find forward reference i=40 ns=5;i=4297 -->ns=2;i=383 (ns=5;i=4297) ERP_OF_LIST wrong HasTypeDefinition\r\nconfiguration file inconsistancy. Cannot find forward reference i=40 ns=5;i=4298 -->ns=2;i=1265 iden ici wrong HasTypeDefinition.\r\nIl y a pas mal de BadTypeMismatch (0x80740000) on en trouve dans UaClnt-001-00301.bak, dasn UaClnt-005-01501.bak. Il reflète des erreurs de configuration.\r\nIl y a aussi des 0x808d0000 (OpcUa_BadOutOfService) issue de connexion client/server VpiUaClient sur PLC\r\n\r\nEst ce que les automates étaient arrêté vers 6h40 utc ?\r\n\r\nCôté PM\r\nIl y a des erreurs configuration remontées dans les fichiers logs depuis le 25 MARS 2022\r\nFichier SharedClasses\r\nCUAVariable::CUAVariable>Critical error ParseNodeId failed on . Default dataType will be used (Boolean) \r\n\r\nFichier Plant\r\nCritical error. Cannot retrieve the Absolute namespace Uri Index. Relative was 6 Check your NodeSet file. uStatus=0x803e0000\r\nCritical error. Cannot retrieve the Absolute namespace Uri Index. Relative was 7 Check your NodeSet file. uStatus=0x803e0000\r\nFichier Opc.Ua.SubSystem.VpiPlant.xml\r\nCritical Error>Impossble to find ns=6;i=120 In the server AddressSpace. Check you configuration.\r\nIl y a de nombreuses autres erreurs de configuration. Pourquoi est ce que l\'on a toutes ces erreurs de configuration ?\r\n\r\nLa dernière info dans les log du PM apparait à 6:54:44 UTC soit +/- deux heures avant le crash\r\n\r\n<pre>\r\n2022-04-06T06:54:44.690Z SERVER_ERROR A write operation on VpiTag ns=7;i=17 failed, BadInvalidState. uStatus=0x80af0000. Next write will be deleted. pValue[0].StatusCode=0x00000\r\n2022-04-06T06:54:44.690Z SERVER_ERROR A write operation on VpiTag ns=7;i=44 failed, BadInvalidState. uStatus=0x80af0000. Next write will be deleted. pValue[1].StatusCode=0x00000\r\n2022-04-06T06:54:44.722Z SERVER_ERROR A write operation on VpiTag ns=7;i=22 failed, BadInvalidState. uStatus=0x80af0000. Next write will be deleted. pValue[0].StatusCode=0x00000\r\n2022-04-06T06:54:44.737Z SERVER_ERROR A write operation on VpiTag ns=7;i=25 failed, BadInvalidState. uStatus=0x80af0000. Next write will be deleted. pValue[1].StatusCode=0x00000\r\n</pre>\r\n\r\nEst ce qu\'EMOTORS à plus d\'information sur ce qui c\'est passé ?\r\n\r\nMes conseils :\r\n* Corriger toutes ces erreurs de configuration\r\n* Passer les LOGs en niveau ERROR\r\n\r\nCordialement\r\nMichel Condemine','2022-04-06 22:13:06',0),(2040,759,'Issue',432,'Bonjour M. Condemine, \r\n\r\n\r\nSuite à notre call j\'ai effectué quelques tests. \r\n\r\nProblématique 1 : effets de bord du nœud mappé à l\'adresse DB.0032.0CBC\r\n\r\nLes logs obtenus indiquent bien les mêmes messages que avec le mode auto. \r\nJ\'ai mis le fichier de logs dans le zip VpiS7Logs, le fichier s\'appelle S7_31-00150 CBC Adress\r\n\r\n\r\nProblématique 2 : 5 variables mappées à la même adresse (DB.0033.04D4) et non remontée des données \r\n\r\nJ\'ai effectué le test comme discuté. Lorsque uniquement ces tags sont actifs, les 5 variables reçoivent bien la donnée remontée.\r\nOr lorsque les autres tags sont actifs, on a systématiquement l\'effet de bord suivant : les 2 dernières variables (parmi les 5 mappées à la même adresse) sont en BadCommunicationError. \r\nLorsque cet effet de bord a lieu, les logs n\'indiquent rien de suspect. J\'ai mis en PJ le fichier de logs dans le zip VpiS7Logs, le fichier s\'appelle S7_31-00150 Density Bad Communication. \r\n\r\nJe mets également en PJ la configuration qui tourne actuellement. Sur cette configuration, uniquement le subsystem S7 problématique est actif. \r\n\r\n\r\nN\'hésitez pas à m\'indiquer si je peux faire quoi que ce soit pour aider au debug. \r\n\r\nTrès cordialement et à votre disposition,\r\n\r\nMichael\r\n \r\n\r\n','2022-04-07 11:59:16',0),(2041,759,'Issue',1,'Bonjour,\r\non peut conclure sur la problématique n° 2 que le MultiNode fonctionne.\r\nPourriez vous modifier votre configuration complète afin que tous les Tags pointent sur les DB du simulateur S7 ?\r\nIl s\'agira de comprendre l\'effet de bord avec plus de node.\r\n\r\nSi le problème se reproduit. Merci de me transmettre la maquette.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-04-07 15:32:56',0),(2042,792,'Issue',436,'Bonjour Michel,\r\n\r\nOui c\'est quelque chose que nous pourrions faire.\r\n \r\nPour être sûr de bien comprendre, parlons-nous du serveur OOUA qui a été installé dans le cloud pour le scenario 2 ?\r\nCar si c\'est le cas nous n\'y avons pas accès pour l\'instant et il nous faudrait les informations relatives à la VM pour que nous puissions demander les accès à Steven.\r\n\r\nSi par contre il s\'agit du serveur OOUA de l\'usine de Lixhe je demanderai à Steven l\'installation d\'un base PostgreSQL.\r\n\r\nMerci,\r\nChris','2022-04-07 19:01:56',0),(2043,792,'Issue',1,'Bonjour,\r\nnous parlons de la VM LIXHE sur laquelle INETUM travail. Celle qui collecte les données.\r\nElle fait partie, bien sur, du SC2.\r\nJe m\'occupe de l\'autre, celle qui contient le Subscriber.\r\nUne démo GRAPHANA HA Client serait du meilleure effet. \r\nElle viendrait compléter la démo GRAPHANA entamé ce jour sur les data live. \r\nLes premiers résultats sont MAGNIFIQUE et très prometteur. Ils pourraient concerner IMERYS mais aussi un ensemble de client finaux.\r\n\r\n@Chris: On en parle quand tu veux.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2022-04-07 19:08:18',0),(2044,791,'Issue',432,'Bonjour, \r\n\r\n\r\nNous avons remonté les erreurs de configuration à eMotors. \r\n\r\nCi dessous certains messages de logs que je n\'ai pas pu comprendre: \r\n\r\n- Les BadType Mismatch (du UaClient 001 et 005) correspondent à des nœuds UaVariable de type string mappés vers un tableau d’octet côté automates. On a ce message pour les Data Request (c\'est nous qui écrivons les string et les automates qui les reçoivent). Emotors ne nous a pas informé qu’ils ont des soucis sur les DataRequest. Avant de voir ça avec eux, est ce que la conversion de type String to Byte Array fonctionne sens descendant ? Est-il possible que ça fonctionne mais qu’on ait quand même ses messages ? \r\n\r\n\r\n- Dans les logs Plant on a le message « 2022-04-08T07:36:40.841Z SERVER_ERROR Critical Error>Impossble to find ns=6;i=120 In the server AddressSpace. Check you configuration. »\r\nOr ce nœud existe et le VpiPLM arrive bien à s’y attacher. La seule spécificité est que c’est une méthode. Est-il possible que ce soir un message parasite ? \r\n\r\n- Concernant le message de type (2022-04-06T06:54:44.690Z SERVER_ERROR A write operation on VpiTag ns=7;i=17 failed, BadInvalidState. uStatus=0x80af0000. Next write will be deleted. pValue[0].StatusCode=0x00000 ), je n\'ai pas pu trouver d\'informations concernant le contexte. Les variables mentionnées sont des variables booléennes mappés vers le LM PrepaStack qui n\'a pas eu de problèmes remontés ce jour si. \r\nDans quel contexte le serveur poste t-il ce genre de logs? \r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n ','2022-04-08 14:40:43',0),(2045,793,'Issue',546,'\nCe probleme est reproductible en backoffice.\nLe message d’erreur « SERVER_ERROR UpdateDataSubscriptionThread>Unsupported EncodeableType i=884” apparait tous les secondes lors de l’abonnement à un nœud de type range ( i=884) comme par exemple : BS1/Gearbox/Vibration/SamplingFrequency\nSuivant le post du 17/03/2022, l’ajout d’une valeur de type complexe ( ExtensionObject) pour ces nœuds semble corriger le probleme.\n <Value>\n <ExtensionObject>\n <TypeId>\n <Identifier>i=884</Identifier>\n </TypeId>\n <Body>\n <Range>\n <Low>0</Low>\n <High>0</High> \n </Range>\n </Body>\n </ExtensionObject>\n </Value>\n\nLa correction en l’etat est à faire manuellement dans l’ensemble des fichiers d’instanciation pour les nœuds de type i=884, il y a 24 itérations pour les lignes 1+2\nEst-ce qu’une evolution peut etre enviseagé au niveau du ConfigManager pour positionner par defaut ce bloc \nOu bien faire en sorte que le serveur OOUA ne considere pas ceci comme une erreur ?\nCordialement\nInetum\n','2022-04-08 16:20:26',0),(2046,793,'Issue',1,'Bonjour,\r\nNous avons donc à faire à des valeurs non-initialisées. L\'init corrige naturellement le pb. C\'est très bien.\r\n\r\nVous entendez quoi par \r\n<pre>\r\nOu bien faire en sorte que le serveur OOUA ne considere pas ceci comme une erreur ?\r\n</pre>\r\n\r\nSi vous avez en tête d\'ignorer cette erreur et de ne pas logger de message cela ne sera pas fait.\r\n\r\nCordialement\r\nMichel Condemine','2022-04-08 16:28:07',0),(2047,793,'Issue',432,'Bonjour M. Condemine,\r\n\r\nLa deuxième proposition de Daniel est que le serveur initialise les variables de datatype Range en interne avec une valeur par défaut, sans nécessiter une balise value \r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2022-04-08 17:29:56',0),(2048,793,'Issue',1,'Les types pris en compte pour les initialisations par défaut le sont au compte goutte.\r\nLe nodeset doit être privilégié. Il ne faut pas saturer le code du serveur en code \"inutile\"\r\nMerci de poster un demande d\'évolution dans le projet Serveur.\r\n\r\nCordialement\r\nMichel Condemine','2022-04-08 18:46:28',0),(2049,759,'Issue',432,'Bonjour, \r\n\r\nJ\'ai construit une configuration avec les tags qui pointent sur le simulateur s7 en respectant les contraintes de nombres de DB disponible et de taille des DB du Simulateur (donc impossibilité d\'utiliser l\'adresse 0CBC)\r\n\r\nMalheureusement je n\'arrive à reproduire aucunes des 2 problématiques avec le simulateur. \r\n\r\nJ\'essaierait de voir semaine prochaine si je peux générer un minidump sans crash sur la configuration qui tourne chez Imerys afin d\'avoir plus d\'information sur le contexte (états des variables interne du VpiS7) \r\nJe continuerai également mes efforts pour essayer de reproduire les 2 problématiques. \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-04-08 18:59:56',0),(2050,795,'Issue',533,'Hello,\r\nHere\'s a list of attribute that I can think of for powder (aka ActiveMaterialDataType, AdditiveDataType, BinderDataType) :\r\n- D90 µm (90% of the particles are smaller than this size)\r\n- D50 µm (50% of the particles are smaller than this size)\r\nCommon to all of them would be :\r\n- Moisture content (% or ppm)\r\n- Density kg/m3\r\n\r\nI\'ll come back later with more informations from the Product Team\r\n','2022-04-11 09:18:37',0),(2051,797,'Issue',1,'Les supports des Vfi n\'était pas initialement prévu.\r\nJe vous ferai une livraison complète. \r\nmerci de ne pas mélanger IPV4/IPV6\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2022-04-12 10:20:37',0),(2052,785,'Issue',424,'Bonsoir M. Condemine,\r\nAvez-vous pu avancer sur ce problème : Critical error>TransfertToCoreServerCache failed uStatus=0x800f0000\" (Vpi_BadNothingToDo).\r\n\r\nDe mon côté j\'ai fait quelques tests (CoreServer/VpiPub d\'un côté et CoreServer/VpiSub de l\'autre) et j\'ai remarqué les choses suivantes:\r\nLorsque j\'ai cette erreur du Subscriber, La variable \"pPayload\" se trouvant dans UASubSystem::CVpiUaSub::DecodeUaPayload est en effet vide. Donc c\'est normal que rien ne soit transférer au serveur.\r\nJe suis donc remonté jusqu\'à MQTT::CPublishControlPacket::CPublishControlPacket. et la variable \"pRawData\" est aussi vide.\r\n\r\nPar contre,\r\nJ\'ai continué de remonté jusqu\'à la source des données (UASubSystem::CVpiUaSub::ListeningThread -> case PUBLISH_CONTROLPACKETTYPE). \r\nJ\'ai constaté que la variable \"pTrameResponse\", contient bien de la data, elle n\'est pas vide. \r\n\r\nDans cette variable je retrouve bien la données reçues par le Subscriber (le Topic concaténé aux données json). Mais après la variable \"pFullTrameResponse\", on perd les données.\r\n\r\nSavez-vous pourquoi j\'ai ce scénario? Et surtout savez-vous pourquoi je ne l\'ai pas tout le temps?\r\n\r\nDans un premier temps j\'avais mentionné que ce scénario arrivait uniquement avec les strings mais je l\'ai aussi avec d\'autres types de variable mais dans une moindre mesure.\r\n\r\nBien cordialement,\r\nMaycko LOUIS','2022-04-12 18:30:52',0),(2053,791,'Issue',432,'Bonjour M. Condemine, \r\n\r\n\r\nLionel nous a transmis hier un autre minidump concernant la ligne Rotor. La pile d\'appel est la même que la précédente, et on est toujours sur la gestion du MonitoredItem NamespaceArray. \r\n\r\nLa plupart des erreurs de configurations ont été corrigés par eMotors. Il en reste de 2 types ( ceux liés aux Nodeset de types, et des BAdTypeMismatch liées à une variable sur leur FB Data Request). Je leur remonterai ce dernier pour qu\'ils corrigent. \r\n\r\n\r\nJ\'étais en session avec lui concernant sa configuration de préproduction lorsque le minidump a été généré sur le LM Rotor et il avait un bureau à distance connecté sur le LM Rotor en background. On peut donc être sur que personne ne manipulait UaExpert sur le LM Rotor. \r\n\r\nLe minidump est généré à 19h39:00 heure de Paris. \r\nDans les logs LM il y a un timeout d\'une session client à 19h39:39\r\n\r\nJe mets en PJ :\r\n\r\n- le minidump\r\n- les logs LM ( .log)\r\n- les logs PM ( .log et le subsytem correspondant à la connexion avec le LM Rotor est le Subsystem UaClnt-003).\r\n\r\nLes PDB et Binaires sont les mêmes que ceux transmis avec le ticket. \r\n\r\nCordialement et à votre disposition, \r\n\r\nMichael\r\n\r\n\r\n\r\n','2022-04-13 10:20:22',0),(2054,765,'Issue',510,'Add driveType [0...1] in motortype and remove driveType [0...1] in all equipment type with drive and motor attribute','2022-04-15 10:35:47',0),(2055,759,'Issue',432,'Bonjour, \r\n\r\nNous ne rencontrons plus la problématique 1 avec les nouveaux binaires. Nous continuons à surveiller. \r\n\r\nLa problématique 2 est toujours d\'actualité. Nous continuons nos essais pour reproduire le problème en backoffice\r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-04-15 18:50:37',0),(2056,805,'Issue',1,'Bonjour,\r\ncette version n\'est pas terminée pour la prise en compte des alarmes.\r\nCependant vous devez changer la configuration des alarmes. La reference HasEventSource est une référence Forward et pas inverse.\r\n\r\nCordialement\r\nMichel Condemine','2022-04-20 17:52:55',0),(2057,806,'Issue',1,'Bonjour,\r\nc\'est un sujet ouvert. Je collecte actuellement des avis.\r\n\r\nA suivre\r\nMichel Condemine','2022-04-20 17:54:57',0),(2058,808,'Issue',1,'Il faut aussi les nodeId permettant d\'accéder à :\r\n* la puissance des broyeurs de la ligne 1.\r\n* Le débit de dispersant\r\n\r\ncordialement\r\nMichel Condemine\r\n','2022-04-21 10:00:40',0),(2059,808,'Issue',432,'Bonjour,\r\n\r\nPour les nœuds (C3 L1 grade L1, C3 L1 3AKG01X , C3 L1 3AKG02X ,C3 L1 3AKG03X ,C3 L1 3ARATIODX_L1), nous ne sommes pas familiers avec ces termes, ils n\'apparaissent pas dans les documents qu\'on utilise comme source d\'informations \r\nSi vous le souhaitez, nous pouvons contacter Stéphane Grégoire de Imerys qui est notre référent pour les informations concernant les lignes de production à Lixhe.\r\n\r\n\r\nPour les broyeurs : \r\nNous supposons que la puissance consommée correspond à la variable Kw sous Engine dans un broyeur\r\nPour de débit de dispersant, concerne t\'elle aussi les broyeur ? Car nous ne trouvons pas de variable y correspondant dans la représentation d\'un broyeur. S\'agit t-il des OutputFlowRate que l\'on peu trouver sur les pompes? On peut aussi demander à Stéphane si vous le souhaitez.\r\n\r\nBS1 (mappé au niveau des automates)\r\n Engine/kW : ns=http://inetum.com/Imerys/Lixhe/Carbital3/PAPLine1/BS1;i=1203\r\n\r\n\r\nBS2 \r\n Engine/kw :ns=http://inetum.com/Imerys/Lixhe/Carbital3/PAPLine1/BS2;i=1203\r\n\r\nBS3 \r\n Engine/kW : ns=http://inetum.com/Imerys/Lixhe/Carbital3/PAPLine1/BS3;i=1203\r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-04-21 10:17:55',0),(2060,808,'Issue',1,'Bonjour,\r\nmerci de contacter Stéphane au sujet des Grades.\r\nAvez vous les informations relatives aux débits ?\r\n\r\nCordialament \r\nMichel Condemine','2022-04-21 10:21:20',0),(2061,808,'Issue',432,'Okay pour contacter Stéphane. \r\n\r\nEn terme de débit pour les broyeur, nous ne trouvons rien. \r\nLes seuls informations que nous trouvons sur les entrées/sorties sont les suivantes :\r\n!clipboard-202204211057-weclf.png!\r\n \r\n\r\n','2022-04-21 11:00:22',0),(2062,808,'Issue',432,'Rebonjour, \r\n\r\n\r\nCi dessous le retour de Stéphane Grégoire : \r\n\r\n\r\nC3 L1 grade L1 ---> Le nom du produit actuellement produit par la ligne 1 (Mais n\'existe pas dans le model, à ajouter)\r\nC3 L1 3AKG01X ---> KW du broyeur BS1 (dans le model)\r\nC3 L1 3AKG02X ---> KW du broyeur BS2 (dans le model)\r\nC3 L1 3AKG03X ---> KW du broyeur BS3 (dans le model)\r\nC3 L1 3ARATIODX_L1 ---> Ratio en % du dosage de dispersant pour la ligne 1(Mais n\'existe pas dans le model, à ajouter)\r\n\r\nSouhaitez vous que je kuipose la question sur le débit du dispersant pour les broyeurs ? \r\nCordialement, \r\n\r\nMichael Ejigu','2022-04-21 14:13:59',0),(2063,765,'Issue',1,'Fixed in model v2.0.0 ','2022-04-21 17:15:23',0),(2064,809,'Issue',432,'Rebonjour, \r\n\r\nPour info, on a réussi à résoudre le problème (sans le comprendre) en faisant un pretty-print avec l\'outil XML Tools de notepad ++ \r\n\r\n\r\nCordialement, \r\nMichael','2022-04-21 17:55:25',0),(2065,810,'Issue',1,'Bonjour,\r\nconcernant le VFI, 0x0007e indique qu\'une DLL est manquante.\r\nPeut être un problème entre la version 14 de Pg sur la machine Imerys et le Vfi qui est compilé pour un Pg13.\r\nConcernant votre pb S7. Votre Tag n\'est il pas hors bloc ?\r\nPourriez vous agrandir le bloc ?\r\n\r\nEst ce que cela fonctionne en back-offce\r\n\r\nCordialement\r\nMichel Condemine','2022-04-22 17:08:07',0),(2066,810,'Issue',546,'Bonjour M. Condemine,\r\n\r\nEn ce qui concerne le VFI, avez vous la possibilité de localiser le(s) DLL(s) manquant(s) ?\r\nPour ce qui est de l\'environnement de test/opérationnel:\r\n- Sur PC local et 2 VM back office le VFI fonctionne, pas sur la VM Imerys\r\n- Binaires et configuration: OOUA serveur+ VFI sont identiques=> le même zip déployé sur site a été rapatrié en local pour tests\r\n- Version pgAdmin => identique sur VM Imerys et PC local ( voir Screenshot jointes)\r\n!clipboard-202204221732-ivoq5.png!\r\n!clipboard-202204221732-kl6rk.png!\r\n- Versions windows : back office : Windows 10 entreprise et Windows server 2019 standard\r\n VM Imerys : Windows server 2019 standard\r\nEst ce que ca va aller chercher des DLL systemes autres que ceux livrés et présents dans le dossier serveur OOUA, si oui, lesquelles?\r\n\r\nMerci pour votre aide,\r\nCordialement,\r\n\r\n','2022-04-22 18:03:31',0),(2067,810,'Issue',1,'Bonjour,\r\npeut importe PgAdmin.\r\nVous utilisez quelle version de PostGreSql en backOffice ?\r\n\r\nSteven a installé une version 14 sur site. \r\nLe Vpi a été généré avec des DLLs en version 13. Je ne garanti pas que cette version soit compatible avec une version 14.\r\n\r\nSinon vous devrez aussi penser à déployer les DLL de debug.\r\n\r\ncordialement\r\nMichel Condemine','2022-04-22 18:11:50',0),(2068,810,'Issue',546,'Pour info, en back office et sur VM prod, c\'est la version 14.2 de Postgresql qui a été installée ( pour être uniforme avec la version installée par Steven).\r\nNous allons vérifier pour les DLL de debug.\r\nCordialement,','2022-04-22 18:23:47',0),(2069,810,'Issue',432,'Bonjour, \r\n\r\n\r\nJe complète les réponses de Daniel. \r\n\r\nPour le S7. Le noeud n\'est pas hors bloc. On peut bien sur augmenter la taille du bloc. Cependant le nœud qui est en BadCommunicationError n\'est pas systématiquement le même. C\'est le premier noeud déclaré dans le bloc 53 (en décimal). Donc si on modifie l\'ordre de déclaration dans le fichier de mapping, le nœud impacté change. Y-a t-il des scénarios où un seul noeud d\'un bloc peut être en BadCommuncationError ? \r\n\r\n\r\nPour le VFI, les binaires OOUA sont en debug. Est-ce que les dépendances du VFI que vous nous conseillez de passer en debug ? Sur le machine Imerys \"Paris\" c\'est aussi la version 14 de Postgres que vous avez ? \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-04-25 09:24:16',0),(2070,810,'Issue',1,'Bonjour,\r\nje pense qu\'il y a un soucis dans la longueur du bloc.\r\nSi le bloc n\'est pas assez grand le TAG sera \"hors-bloc\"\r\nConcernant le VFI.\r\nLa machine Paris est en PgSQL 13. Si vous êtes en DEBUG vous devez, bien sur, copier les DLL de PgSQL DEBUG.\r\n\r\nCordialement\r\nMichel Condemine','2022-04-25 09:42:39',0),(2071,810,'Issue',432,'Nous avons trouvé et corrigé notre erreur pour le mapping S7. On lisait sur une adresse non lisible au niveau de l\'automate. Merci pour vos retours. \r\nPour le VFI: \r\nSauriez vous où l\'on peut trouver des binaires PgSQL en debug ? Nous avons les symboles qui ont été téléchargés pendant l\'installation de Postgres mais pas de binaires suffixé d comme les binaires debug OOUA. \r\nPour info, chez eMotors ainsi qu\'en backoffice, les binaires fonctionnent tels quel (OOUA en debug, et binaires Pgsql venu avec les premières livraisons du VFI sans suffixe d pour debug) \r\n\r\nIl nous vient également comme piste d\'essayer d\'utiliser un logiciel comme DependencyWalker pour essayer de trouver la/dll manquantes. Qu\'en pensez vous? \r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-04-25 14:24:27',0),(2072,813,'Issue',533,'Hello,\r\n\r\nThe bolt will be used to modify the lip gap. I think this video illustrate quite well the process : https://www.youtube.com/watch?v=DFEKmk9Mu1E&t=120s\r\n\r\nLet me know if that\'s still unclear.\r\n','2022-04-27 16:28:23',0),(2073,813,'Issue',1,'Hello Alexandre,\r\ncan you tell us if the suggested definition matches with the soltdie bolts attribute.\r\n\r\nRegards\r\nMichel','2022-04-28 09:04:40',0),(2074,813,'Issue',533,'Then no, the definition \"List of positions taken by the slotdie during the creation the electrode\" is not fitting.\r\nMy take would something along \" +Bolt :+ Elements of a Slot Die whose tightness controls the width of the lip gap on a small area around it\".\r\nOn a Slot Die you have several bolts. That\'s why we settled on a list that would represents the variation of the lip gap across the whole length of the slot die.','2022-04-28 09:35:03',0),(2075,810,'Issue',1,'Bonjour,\r\nje confirme que la machine \"Paris\" utilise une version DEBUG du VfiPgSql. Elle fonctionne parfaitement\r\nCordialement\r\nMichel Condemine','2022-04-28 14:35:39',0),(2076,391,'Issue',1,'','2022-04-29 00:16:39',0),(2077,810,'Issue',546,'Bonjour Monsieur Condemine,\r\nLe probleme a été resolu avec l\'introduction de la DLL : msvcr120.dll (en pièce jointe) qui a été rajouté dans le dossier serveur OOUA.\r\nCordialement,\r\nInetum','2022-04-29 12:40:38',0),(2078,820,'Issue',1,'Le schéma, bien qu\'imparfait, peut fonctionner. \r\nJe ferme cet incident.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-01 18:09:09',0),(2079,820,'Issue',549,'Bonjour,\r\nJuste pour apporter des précisions pour faire la correspondance entre XML GmmToMiddleware et modèle : les paramètres transmis dans le XML correspondent aux attributs de MeasuringToolValidityStatusDataType.\r\n\r\n Attribut dans le modèle | Paramètre XML\r\n Validity (boolean) | ValidityStatus (boolean)\r\n Description (string) | ValidityDescription (string)\r\n','2022-05-02 10:43:35',0),(2080,821,'Issue',548,'Changement de l\'assignation du projet à \"OpenOpcUa\" suite à une erreur de paramétrage ','2022-05-03 16:50:43',0),(2081,821,'Issue',1,'Merci de faire attention au projet utilisé pour poster des demandes de support','2022-05-03 22:15:12',0),(2082,821,'Issue',1,'Bonjour,\r\ncette demande sera abordée vendredi lors de notre call hebdomadaire.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-03 22:19:24',0),(2083,819,'Issue',533,'The slot die position (and thus the Gap) is handled by two equipment :\r\n- An Air cylinder, that is working on centimetric scale. By design, an air cylinder is only able to use preset position. As far as I know, we have only two : Open and Closed.\r\n- A servomotor, that is working on a micrometric scale. This servo motor is able to work on a whole range, allowing precise tuning of the gap.\r\n\r\nMy understanding of the technology is that, once you set up the gap with the servor motor, you only use the Air Cylinder when you have to pull back the slot die (usually when you don\'t want to coat a part of the product). \r\n','2022-05-09 11:53:48',0),(2084,804,'Issue',1,'Hello,\r\ni just fixed this issue in the last version of both publisher and subscriber.\r\nI will try to update the subscriber this evening.\r\nINETUM will probably update the publisher side.\r\n\r\nRegards\r\nMichel Condemine\r\n','2022-05-09 20:32:30',0),(2085,821,'Issue',447,'Bonjour Michel\r\n\r\nNous avons fait des tests avec la nouvelle livraison du vpiS7 (Temps calculé pour le Read + 20% pour laisser du temps au Write). Modification réalisé pour éviter le \"ping pong\".\r\n\r\nCeci fonctionne mais les mise à jour mais les lectures prenne entre 15 et 40s à ce réaliser.\r\n\r\nOr avec la version précédente, les lectures et écriture fonctionnaient avec un polling de 2s - mais engendrait le ping pong.\r\n\r\n\r\nUne autre idée pour éviter le ping pong: est-ce que si après un write, on ignore le prochain read et seulement le prochain read pour laisser le temps au PLC de prendre en compte l\'écriture et donc de répondre à un read avec la nouvelle valeure ne solutionnerait pas le problème?','2022-05-11 20:35:20',0),(2086,819,'Issue',1,'','2022-05-12 10:26:40',0),(2087,817,'Issue',1,'Hello Alexandre,\r\nCan you please provide a definition for this ?\r\nRegards\r\nMichel','2022-05-12 10:27:35',0),(2088,789,'Issue',1,'Bonjour,\r\nCette amélioration a été introduite dans la dernière version.\r\nCordialement\r\nMichel Condemine','2022-05-14 10:34:38',0),(2089,824,'Issue',1,'','2022-05-14 10:35:23',0),(2090,807,'Issue',1,'Redirected','2022-05-14 10:36:26',0),(2091,802,'Issue',1,'Hello Sunil,\r\nyou write \"When we create Instances using configmanager, we have to provide the node id\'s in the csv file\"\r\nWhere does it come from ? What node id\'s are we talking about ?\r\nI mean you can provide node id\'s but this optional. Why are you providing it ?\r\n\r\nRegards\r\nMichel Condemine','2022-05-14 10:41:02',0),(2092,796,'Issue',1,'','2022-05-14 10:42:53',0),(2093,770,'Issue',1,'Redirected','2022-05-14 10:56:24',0),(2094,758,'Issue',1,'Bonjour,\r\ncomme vu ensemble il faut modifier le profil UML.\r\n\r\ncordialement\r\nMichel Condemine','2022-05-14 10:59:12',0),(2095,754,'Issue',1,'Bonjour,\r\npourriez vous préciser le problème que vous rencontrez ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-14 11:00:51',0),(2096,708,'Issue',1,'','2022-05-14 11:02:13',0),(2097,724,'Issue',1,'bonjour,\r\npourriez vous statuer sur les différents point soulever dans ce ticket ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-14 11:19:14',0),(2098,719,'Issue',1,'Redirect','2022-05-14 11:21:16',0),(2099,693,'Issue',1,'Redirected','2022-05-14 11:23:00',0),(2100,758,'Issue',1,'Redirected','2022-05-14 11:23:37',0),(2101,668,'Issue',1,'bonjour,\r\nje redirige ce ticket vers le projet approprié.\r\nPourriez vous refaire ces tests avec la dernière version et me tenir au courant.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-14 11:26:13',0),(2102,635,'Issue',1,'Redirected','2022-05-14 11:40:47',0),(2103,634,'Issue',1,'Redirected','2022-05-14 11:41:35',0),(2104,596,'Issue',1,'Redirected','2022-05-14 11:42:44',0),(2105,596,'Issue',1,'','2022-05-14 11:43:17',0),(2106,584,'Issue',1,'Redirected','2022-05-14 11:44:26',0),(2107,583,'Issue',1,'Redirected','2022-05-14 11:45:49',0),(2108,569,'Issue',1,'','2022-05-14 11:48:01',0),(2109,578,'Issue',1,'','2022-05-14 11:48:40',0),(2110,570,'Issue',1,'','2022-05-14 11:50:14',0),(2111,567,'Issue',1,'','2022-05-14 11:50:57',0),(2112,565,'Issue',1,'','2022-05-14 11:52:19',0),(2113,511,'Issue',1,'Fixed','2022-05-14 11:52:57',0),(2114,488,'Issue',1,'','2022-05-14 11:53:57',0),(2115,480,'Issue',1,'','2022-05-14 11:54:31',0),(2116,468,'Issue',1,'','2022-05-14 11:55:43',0),(2117,467,'Issue',1,'','2022-05-14 11:56:21',0),(2118,827,'Issue',565,'','2022-05-17 16:37:57',0),(2119,827,'Issue',1,'Bonjour, \r\nen matière de développement logiciel il existe deux versions des binaires que l\'on génère. La version debug et la version release.\r\nLa première est utilisée pour les tests la seconde pour les déploiements.\r\nPour les questions relatives au VpiUaClient merci de vous reportez a la documentation.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-17 17:16:38',0),(2120,831,'Issue',432,'','2022-05-20 13:23:42',0),(2121,821,'Issue',1,'Bonjour Lionel,\r\npourriez vous confirmer que ce problème est réglé ?\r\n\r\nCordialement\r\nMichel','2022-05-20 14:58:28',0),(2122,551,'Issue',1,'','2022-05-20 15:02:38',0),(2123,811,'Issue',1,'Bonjour,\r\nje ferme cette incident en espérant qu\'il a été pris en compte.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:04:24',0),(2124,590,'Issue',1,'Bonjour,\r\nje pense que cet incident est corrigé depuis plusieurs mois.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:05:59',0),(2125,581,'Issue',1,'Bonjour,\r\nje pense que ce problème est corrigé.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:06:47',0),(2126,581,'Issue',1,'','2022-05-20 15:06:56',0),(2127,580,'Issue',1,'Bonjour,\r\nje pense que ce problème est corrigé.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:07:18',0),(2128,579,'Issue',1,'Bonjour,\r\nje pense que ce problème est corrigé.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:07:49',0),(2129,577,'Issue',1,'Bonjour,\r\nje pense que ce problème est corrigé.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:08:15',0),(2130,575,'Issue',1,'Bonjour,\r\nje pense que ce problème est corrigé.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:08:46',0),(2131,574,'Issue',1,'Bonjour,\r\nje pense que ce problème est corrigé.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:09:17',0),(2132,573,'Issue',1,'Bonjour,\r\nje pense que ce problème est corrigé.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:09:34',0),(2133,572,'Issue',1,'Bonjour,\r\nje pense que ce problème est corrigé.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:09:52',0),(2134,471,'Issue',1,'Bonjour Rémi,\r\nvoila un vieux problème...\r\nJ\'ai relancé avec la version 1.0.6.8 du serveur sans rencontrer le moindre problème.\r\nJe ferme donc cet incident.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:29:01',0),(2135,474,'Issue',1,'Bonjour,\r\ncf manuel de l\'utilisateur.\r\nJe ferme cet incident\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:30:39',0),(2136,493,'Issue',1,'Bonjour,\r\nje pense que ce problème est aujourd\'hui corrigé.\r\nCordialement\r\nMichel Condemine','2022-05-20 15:31:33',0),(2137,606,'Issue',1,'Bonjour,\r\nje pense que cette évolution a été implémenté.\r\nMerci de me le confirmer\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:40:15',0),(2138,612,'Issue',1,'','2022-05-20 15:42:46',0),(2139,615,'Issue',1,'','2022-05-20 15:43:19',0),(2140,617,'Issue',1,'Bonjour,\r\nje pense que ce problème est aujourd\'hui corrigé.\r\nCordialement\r\nMichel Condemine','2022-05-20 15:44:00',0),(2141,624,'Issue',1,'Bonjour,\r\nje pense que ce problème est aujourd\'hui corrigé.\r\nCordialement\r\nMichel Condemine','2022-05-20 15:44:33',0),(2142,645,'Issue',1,'Bonjour,\r\nje pense que ce problème est aujourd\'hui corrigé.\r\nCordialement\r\nMichel Condemine','2022-05-20 15:45:23',0),(2143,654,'Issue',1,'Bonjour Arash,\r\npourriez vous m\'indiquer le status de cet incident ?\r\n\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:47:50',0),(2144,655,'Issue',1,'Bonjour Arash,\r\npourriez vous m\'indiquer le status de cet incident ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:48:52',0),(2145,656,'Issue',1,'Bonjour Arash,\r\npourriez vous m\'indiquer le status de cet incident ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:49:15',0),(2146,657,'Issue',1,'Bonjour Lionel,\r\npourriez vous m\'indiquer le status de cet incident ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:50:12',0),(2147,659,'Issue',1,'Bonjour Arash,\r\npourriez vous m\'indiquer le status de cet incident ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:51:05',0),(2148,660,'Issue',1,'Bonjour Arash,\r\npourriez vous m\'indiquer le status de cet incident ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:51:34',0),(2149,661,'Issue',1,'Bonjour Lionel,\r\npourriez vous m\'indiquer le status de cet incident ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:52:25',0),(2150,675,'Issue',1,'Bonjour Lionel,\r\npourriez vous m\'indiquer le status de cet incident ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:53:46',0),(2151,691,'Issue',1,'Bonjour Lionel,\r\nJe pense que cet incident est aujourd\'hui réglé.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 15:54:51',0),(2152,702,'Issue',1,'Bonjour Lionel,\r\nquelques explications :\r\nErreur de timeout. Un client OPC a créé une session mais n\'a pas respecté ses engagements auprès du serveur. \r\nSans nouvelle du client. Il détruit la session.\r\nLe log montre plusieurs choses : Publish en retard, subscription en timeout et enfin session en timeout. \r\nManifestement un client HS.\r\n\r\n\r\nJe ne suis pas certain de comptre la notion de <pre>décalage d\'heure</pre>\r\n\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 16:04:17',0),(2153,735,'Issue',1,'Bonjour,\r\nSans réponse je ferme cet incident.\r\nIl s\'agissait un problème critique.\r\n\r\nJ\'espère que tout le monde à bien compris la nature de ce problème.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 16:07:25',0),(2154,761,'Issue',1,'Bonjour,\r\nest ce que vous pourriez me préparer un maquette permettant de reproduire le problème.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 16:09:25',0),(2155,787,'Issue',1,'Bonjour,\r\nou en est on avec cet incident ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 16:10:54',0),(2156,798,'Issue',1,'Bonjour,\r\nje vous propose de traiter ce problème ASAP.\r\nJ\'aimerai une description précise et une maquette.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-20 16:13:27',0),(2157,827,'Issue',565,'Bonjour,\r\n\r\nMerci pour la documentation, elle est très utile pour comprendre comment se configure le VPI. Cependant, je me heurte à un soucis au lancement du serveur, le VPI UA Client indique systématiquement une erreur dans les logs \"2022-05-23T13:55:20.002Z ERROR LoadConfigurationFile C:\\Users\\OPCUA\\Desktop\\OPCUAValentin\\Serveur OPCua d\'Avrieux\\Avrieux\\S71500-00150.dat failed 0x803e0000.\"\r\n\r\nJ\'ai pourtant réalisé la configuration de la bonne façon, j\'ai essayé la configuration automatique et également la configuration manuelle, mais j\'ai toujours ce message qui s\'affiche. Le fichier de configuration est pourtant chargé lors du lancement du serveur, car j\'avais des erreurs que j\'ai réussi à corriger en complétant ce fichier. Savez-vous quelle peut être l\'origine du problème ? \r\n\r\nEn vous remerciant,\r\n\r\nCordialement,\r\nValentin DUFIEF','2022-05-23 16:35:39',0),(2158,402,'Issue',328,'','2022-05-24 14:11:31',0),(2159,631,'Issue',328,'','2022-05-24 14:12:35',0),(2160,542,'Issue',328,'','2022-05-24 14:14:11',0),(2161,834,'Issue',552,'Bonjour,\r\n\r\nCe fichier est un fichier de définition d\'un indicateur Optimu. Il est codé dans un format propriétaire.\r\n\r\nCordialement,\r\n\r\nRomain DAVID','2022-05-24 15:20:03',0),(2162,27,'Issue',1,'','2022-05-27 01:08:06',0),(2163,832,'Issue',1,'Bonjour,\r\nces deux problèmes et d\'autres sont corrigés dans la version 1.0.6.9 du serveur.\r\n\r\nJe ferme cette incident.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-27 15:09:45',0),(2164,791,'Issue',1,'Bonjour,\r\nou en sommes nous avec ce problème ?\r\n\r\nCordialement\r\nMichel Condemine','2022-05-27 15:10:53',0),(2165,761,'Issue',489,'Bonjour Michel, \r\n\r\nJe vous envoi la petite maquette qu\'on a préparé pour tester l\'option de historisation. On a laissé le serveur en marche sans client, et ça marche sans problème, mais le crash arrive une fois qu\'on s\'abonne les quartes nodes dans UAExpert: History trend view en mode single update.\r\n\r\nCordialement,\r\nArash.\r\n','2022-05-30 16:49:52',0),(2166,761,'Issue',1,'Bonjour,\r\nNous avions un point ce matin sur ce sujet que vous avez manqué. \r\nJ\'en ai profité pour mettre en place votre maquette et faire plusieurs tests.\r\nN\'ayant pas les PLC et une autre base SQL, J\'ai du apporter de nombreuses modifications afin de pouvoir utiliser la maquette sur mon poste.\r\nTest N°1 : Vos binaires. Configuration avec injection manuelle des grandeurs électrique. Connection UA Expert sur 4 variables archivées. Pas d\'erreur\r\nTest N°2 : Vos binaires. Ajout d\'une simulation des grandeurs électrique à 500ms. Connection UA Expert sur 4 variables archivées. Crash du serveur\r\nTest N°3 : Mes binaires Debug IPV6 sous VS2017. + 100 lectures des archives. Aucune erreur.\r\n\r\nJe continuerai les tests lors de notre prochain point.\r\n\r\nCordialement\r\nMichel Condemine','2022-05-31 11:25:39',0),(2167,761,'Issue',1,'Une image pour illustrer les tests :\r\n!clipboard-202205311127-hlqmb.png!\r\n','2022-05-31 11:27:32',0),(2168,829,'Issue',1,'Hello Stephane,\r\ncan you try to simply specify the MAC address of the PLC instead of the IP front of IP_ADDRESS field of the .DAT file associated with the PLC configure in ISO.\r\n\r\nFeel free to contact me directly if you need some assistance for it.\r\n\r\nRegards\r\nMichel Condemine','2022-06-01 23:57:35',0),(2169,829,'Issue',510,'Michel,\r\n\r\nWith the help of Inetum, we change the .dat file with the MAc adresse.\r\nBut that doeus\'nt work. We try with \"-\" and with \":\"\r\nYou can See prinscreen ','2022-06-02 12:27:17',0),(2170,675,'Issue',447,'A reprendre en fonction des nouvelles instanciations que nous devons faire avec Ximulateur\r\n\r\nCi-joint nos derniers projets ximualateur avec erreur dans le log ximulateur ','2022-06-02 19:53:35',0),(2171,761,'Issue',489,'','2022-06-03 18:55:02',0),(2172,833,'Issue',1,'Traiter dans la dernier modif','2022-06-10 15:53:26',0),(2173,827,'Issue',565,NULL,'2022-06-13 14:38:51',0),(2174,543,'Issue',565,NULL,'2022-06-13 14:39:17',0),(2175,563,'Issue',565,NULL,'2022-06-13 14:39:35',0),(2176,838,'Issue',447,'La version du VpiS7d 1.0.2.3 coupe bien la chaine de caractères lorsqu\'il y a un caractère 13 ou 0 en ascii comme demandé.\r\n\r\nMais si dans le subsystem nous avons indiqué un tableau de 8 caractères et que la chaine qui remonte est de 8 caractères, alors le dernier est supprimé\r\n\r\nExemple : \r\n* dans le PLC nous avons OP100-01 (tableau de 8 Bytes Ascii) \r\n* Subsytem avec un mapping ns=1;1=100 Type=\"Byte\" NbElement = \"8\" \r\n* dans le node du serveur OPC UA mappé sur cette chaine de caractères nous avons OP100-0 (suppression du dernier caractère)\r\n\r\nDans le cas où la chaine de caractère dans le PLC est inférieur à la taille du tableau paramétré dans le subsystem alors cela fonctionne correctement\r\n\r\nCordialement\r\n\r\nLionel Claudel','2022-06-14 11:53:59',0),(2177,843,'Issue',550,'Bonjour,\r\n\r\nj\'ai reactivé le compte avec le password ci-dessus. Je pense qu\'il avait été modifié\r\n\r\nCordialement\r\nGilles\r\n','2022-06-16 08:39:45',0),(2178,843,'Issue',1,'Merci ','2022-06-16 08:44:34',0),(2179,845,'Issue',1,'Bonjour,\r\nles trois log montrent des blocks orphelins. (Orphan Block)\r\nIl faut impérativement corriger cela.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-16 15:02:37',0),(2180,846,'Issue',550,'Bonjour,\r\n\r\nj\'ai ajouter dans la doc v1.2, le scénario (en postman + curl).\r\nhttp://www.openopcua.org/redmine/attachments/3095\r\n\r\nEn cas de besoin n\'hésiter pas à me solliciter via un meting teams\r\n\r\nCordialement\r\nGilles\r\n ','2022-06-17 08:58:19',0),(2181,845,'Issue',565,'Bonjour,\r\n\r\nJe vous remercie pour cette réponse. Qu\'appelez-vous des blocs orphelins ?','2022-06-17 09:41:54',0),(2182,845,'Issue',1,'Bonjour,\r\nil y a de nombreux messages dans les logs qui contiennent : \r\n<pre>\r\n\"Orphan block found\"\r\n</pre>\r\nIl faut supprimer cette erreur. Elle montre un problème de configuration. Cherchez aussi d\'autres erreurs dans les log. \r\nJe vous conseil de régler le niveau d\'erreur à ERROR.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-17 09:47:21',0),(2183,846,'Issue',1,'Bonjour,\r\nje vous remercie pour ce document.\r\nJ\'essai, sans succès, d\'obtenir un access token en utilisant le site suivant : https://reqbin.com/req/zvtstmpb/post-request-example\r\nPourriez vous me fournir un exemple qui fonctionne avec ce site ?\r\n\r\nCordialement\r\nMichel Condemine','2022-06-17 10:05:22',0),(2184,846,'Issue',1,'Bonjour,\r\nje pense avoir trouvé une piste.\r\nCordialement\r\nMichel Condemine','2022-06-17 11:13:53',0),(2185,846,'Issue',550,'voici un screen shot de la requete\r\n\r\n!clipboard-202206171119-g0lgz.png!\r\n','2022-06-17 11:20:13',0),(2186,846,'Issue',550,'le client_secret est bien \"C\'est mon secret @ m0i\" je l\'avais changé pour le test avec votre outil pensant que l\'apostrophe gênait ','2022-06-17 11:23:56',0),(2187,842,'Issue',1,'Le serveur utilise des certificats privé au format PFX.','2022-06-17 14:20:08',0),(2188,846,'Issue',1,'Bonjour,\r\naprès avoir passé plusieurs heures sur le problème de récupération du token. je réouvre ce ticket.\r\nQuelques précisions :\r\nOn cherche a développer un Vpi qui échangera des données via un ensemble de méthodes REST. \r\nUn VPI est un Add-in. Il fonctionne sans interaction de l\'utilisateur.\r\nVotre serveur semble imposer plusieurs choses :\r\nRécupérer un Token OAUTH2 avant de pouvoir invoquer les méthodes.\r\nSaisie d\'un UserId/Password par l\'utilisateur.\r\nC\'est ici que je bloque.\r\n\r\nPourrions nous prévoir un échange TEAM à ce sujet demain AM ?\r\n\r\nCordialement\r\nMichel Condemine','2022-06-19 22:22:14',0),(2189,846,'Issue',1,'PS:\r\nAvec les mêmes paramètres que vous j\'obtiens soit :\r\n!clipboard-202206192239-1nntd.png!\r\n\r\nsoit : (ici le même résultat que j\'obtiens depuis le Vpi)\r\n!clipboard-202206192240-elraf.png!\r\n\r\nNous avons ici du code HTLM qui attends la saisie d\'un username/password.\r\n\r\nCherchons l\'erreur.','2022-06-19 22:42:11',0),(2190,846,'Issue',550,'Bonjour\r\n\r\nAttention à l\'apostrophe dans le mot de passe, c\'est celle du clavier et pas celle remise en forme par Word ou autre ...\r\ngrant_type=client_credentials\r\nclient_id=0f152abb-2ce7-4950-8065-fb66d58ad5c2\r\nclient_secret=C\'est mon secret @ m0i\r\n\r\nsinon je suis disponible pour un teams à partir de 17h00.\r\n\r\ncdlt\r\nGilles','2022-06-20 09:06:42',0),(2191,846,'Issue',1,'Bonjour,\r\napostrophe saisie au clavier ou venant d\'une autre source d\'ailleur.\r\n*La requête me retourne une page web dans laquelle je dois saisir un user/password.*\r\n<pre>\r\nElle ne retourne JAMAIS un access token.\r\n</pre>\r\n\r\nCordialement\r\nMichel Condemine','2022-06-20 10:28:24',0),(2192,846,'Issue',550,'même en Curl ?\r\n\r\ncurl -X POST https://infodream-maq1.infodreamgroup.com/token -H \"Content-Type: application/x-www-form-urlencoded\" -d \"grant_type=client_credentials&client_id=0f152abb-2ce7-4950-8065-fb66d58ad5c2&client_secret=C\'est%20mon%20secret%20%40%20m0i\" --ssl-no-revoke\r\n\r\nje l\'ai testé depuis le bureau et en remote via un Pi derriere une box 4G \r\n\r\n!clipboard-202206201104-umq8g.jpg!\r\n','2022-06-20 11:04:21',0),(2193,846,'Issue',1,'Bonjour,\r\ntout à coup avec curl et avec https://reqbin.com/req\r\nLa requête aboutie. \r\nReste a la faire fonctionner avec le Vpi.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-20 11:22:02',0),(2194,846,'Issue',550,'OK,\r\n\r\nReste à faire fonctionner sur le VPi, mais la je ne serais pas d\'une grande aide','2022-06-20 11:49:33',0),(2195,846,'Issue',1,'Bonjour,\r\npourriez vous me préciser dans quelle circonstance le site de récupération de token :https://infodream-maq1.infodreamgroup.com/token\r\nretourne. Soit :\r\n* un AccessToken\r\n* Un formulaire d\'authentification \r\n\r\nCordialement\r\nMichel Condemine','2022-06-21 09:34:54',0),(2196,846,'Issue',1,'Bonjour,\r\nj\'ai, enfin, trouvé une solution.\r\nCe premier problème est réglé.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-21 10:05:35',0),(2197,846,'Issue',550,'Michel Condemine Admin wrote in #note-13:\r\n> Bonjour,\r\n> pourriez vous me préciser dans quelle circonstance le site de récupération de token :https://infodream-maq1.infodreamgroup.com/token\r\n> retourne. Soit :\r\n> * un AccessToken\r\n> * Un formulaire d\'authentification \r\n> \r\n> Cordialement\r\n> Michel Condemine\r\n\r\navec un peu de retard\r\n \r\nj\'aurais dit que si j\'ai un formulaire d\'authentification c\'est que la requete n\'a pas été routé vers l\'API (mauvaise Url, format de requete, parametres ...)\r\nGilles\r\n\r\n','2022-06-21 10:08:36',0),(2198,845,'Issue',565,'Michel Condemine Admin wrote in #note-3:\r\n> Bonjour,\r\n> il y a de nombreux messages dans les logs qui contiennent : \r\n> [...]\r\n> Il faut supprimer cette erreur. Elle montre un problème de configuration. Cherchez aussi d\'autres erreurs dans les log. \r\n> Je vous conseil de régler le niveau d\'erreur à ERROR.\r\n> \r\n> Cordialement\r\n> Michel Condemine\r\n\r\nBonjour,\r\n\r\nJ\'ai effectivement retrouvé d\'autres erreurs dans le fichier log du serveur, notamment liées à la définition de tag. Auriez-vous plus d\'informations à propos du code d\'erreur 0x803e0000 ? En vous remerciant.','2022-06-21 10:34:36',0),(2199,848,'Issue',550,'Bonjour,\r\n\r\nVous trouverez ci-joint un document d\'architecture des objets manipulés par la suite Qual@xy dans le cadre du module SPC qui nous intéresse.\r\n\r\ndans l\'ordre il faut définir:\r\n- les ateliers et machines (Api Workshops)\r\n- les produits et leur caractéristiques (Api Products)\r\n- les gammes et les caractéristiques produit associées (Api InspectionStandards)\r\n\r\nje suis éventuellement disponible après 16h30 pour un team si besoin\r\n\r\ncdlt\r\nGilles','2022-06-22 11:42:28',0),(2200,849,'Issue',1,'Bonjour,\r\nje suis dispo a 17h15.\r\nRegardons ce problème à ce moment la si cela vous convient.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-22 16:36:50',0),(2201,850,'Issue',1,'Hello,\r\nSampling rate and triggering mechanism are part of the OPC UA functional mechanism.\r\nThose feature are setup by UA clients.\r\n\r\nIt that clear ?\r\n\r\nregards\r\nMichel\r\n','2022-06-22 19:51:02',0),(2202,830,'Issue',1,'Bonjour,\r\nj\'arrive à dialoguer avec le Broker MQTT de Frankfort. \r\nCependant il semble y avoir une correlation entre le nombre d\'URI déclaré, le champ Address et le bon fonctionnement du VpiMqttPub.\r\nj\'utilise ce subsystem\r\n!clipboard-202206231135-nttxh.png!\r\nVoici le LOG\r\n!clipboard-202206231135-wtue0.png!\r\nPourriez vous creuser davantage afin de mettre en évidence le problème.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-23 11:37:55',0),(2203,851,'Issue',545,'Bonjour,\r\n\r\nMême avec le xmi et la version de Ximulator1.0.5.1 envoyé on arrive pas à avoir le même résultat le problème de l imerysId et LocationInFactory persiste. \r\n\r\n\r\nCordialement,\r\nKhaled \r\n','2022-06-23 13:45:24',0),(2204,831,'Issue',432,'!clipboard-202206231512-9lvlh.png!\r\n\r\n\r\nOn a bien les messages de logs vu dans le code du CoreServer\r\n\r\nDaniel fait suite à ce ticket avec la manip pour rallonger le temps de démarrage maximum de service\r\n\r\n\r\nCordialement, \r\n\r\nMichael','2022-06-23 15:14:29',0),(2205,831,'Issue',432,'!clipboard-202206231518-nzrm6.png!\r\n','2022-06-23 15:18:16',0),(2206,831,'Issue',546,'Le temps laissé aux applications pour se lancer en tant que service est, par defaut configuré à 60 sec ( ou 60 000 milli secondes).\r\nLe serveur OOUA d\'Imerys, avec ses lignes de productions, son VPI MQTT , son VFI etc, nécessite plus de 60 sec pour demarrer.\r\nNous avons du augmenter ce timeout afin de laisser le serveur OOUA le temps de se lancer en temps que service.\r\nDans un premier temps ce timeout a été positionné à 2 minutes , ce qui s\'averre parfois etre trop juste.\r\nActuellement il est positionné à 3 minutes soit 180 000 millisec.\r\nProcedure pour sa modification :\r\n- lancer la base de registre ( regedit) \r\n- aller dans HKEY_LOCAL_MACHINE\r\n- aller dans SYSTEME\r\n- aller dans CurrentControlSet\r\n- aller dans Control\r\n- Chercher la variable ServicesPipeTimeout , s\'il n\'existe pas , le créer en tant que DWORD32 bits\r\n- cliquer sur Décimale et dans \"Données de la valeur\", mettre la nouvelle valeur en millisecondes.\r\n!clipboard-202206231530-hctsc.png!\r\n\r\n\r\n\r\n','2022-06-23 15:31:44',0),(2207,831,'Issue',1,'Bonjour,\r\nle problème n\'avait rien a voir avec PgSQL mais avec la taille de la configuration.\r\nL\'initialisation de la couche HA prenait trop de temps et mettait le serveur en timeout.\r\nJ\'ai placé dans la version 1.0.7.1 du serveur cette initialisation dans un thread indépendant.\r\nCette évolution corrige ce problème. Elle est disponible ici http://www.openopcua.org/redmine/attachments/3125\r\nmerci de la tester ASAP.\r\nj\'attends votre retour\r\n\r\nCordialement\r\nMichel Condemine','2022-06-23 22:16:47',0),(2208,852,'Issue',1,'Bonjour\r\nJ\'utilise la commande suivante (depuis mon code car impossible de passer le token dans swagger)\r\n!clipboard-202206241139-h6y2f.png!\r\nj\'obtiens un erreur 406\r\n\r\nUne idée ?\r\ncordilement\r\nMichel Condemine','2022-06-24 11:41:32',0),(2209,830,'Issue',432,'Bonjour M. Condemine, \r\n\r\n\r\nD\'après nos tests le problème semble plutôt relié au nombre de nœuds dans le serveur. \r\n\r\nEn diminuant les instances , le broker répond plus vite et les données sont publiées. \r\n\r\nLorsque le nombre de noeuds est haut, malgré le peu de tag dans le mapping VpiMqttJsonPub, nous n\'arrivons pas à nous connecter. \r\n\r\nNous avons aussi constaté un crash à l\'arrêt lorsque le VpiMqtt est activé. Avez vous ce comportement de votre côté? \r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n\r\nCordialement, \r\n\r\nMichael \r\n\r\n\r\n\r\n\r\n','2022-06-24 14:39:26',0),(2210,831,'Issue',432,'Bonjour, \r\n\r\nNous avons pu valider le fonctionnement avec les nouveaux binaires\r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2022-06-24 14:40:26',0),(2211,831,'Issue',1,'Parfait,\r\nIl faudrait ajouter de nouvelles variable dans l\'archivage.\r\n','2022-06-24 14:44:07',0),(2212,852,'Issue',550,'Oui, c\'est \"normal\" pour l\'instant l\'API \"tools\" n\'est pas fonctionnelle sur la version en ligne ...\r\nje pensais avoir communiquer sur ce manque, désolé du contretemps\r\n\r\nje devrais être en mesure de mettre en ligne une nouvelle version courant de semaine prochaine\r\n\r\npar contre les 4 autres fonctionnent.\r\n\r\nla plus simple à intégrer étant Workshops\r\net la plus complexe (car elle fait référence à des objets créés par les 3 autres) étant ImportEngine\r\n\r\n!clipboard-202206241448-nuooa.png!\r\n\r\n\r\nCordialement\r\nGilles','2022-06-24 14:48:53',0),(2213,853,'Issue',1,'Bonjour, \r\nUne question :\r\nEst ce que vous utilisez le VpiNullEx ?\r\n\r\nSi oui il vous manque un DLL (OpenOpcUa_VpiLibrary.dll)\r\nSinon il faut supprimer sa déclaration du fichier oouaprj\r\nCi-dessous une configuration adapté à mon PC\r\n!clipboard-202206241726-r1qne.png!\r\n\r\nQui démarre en tant que service sans problème.\r\n!clipboard-202206241727-ro4n7.png!\r\n\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-06-24 17:27:20',0),(2214,832,'Issue',432,'Bonjour,\r\n\r\nPourrions nous svp rouvrir ce ticket? \r\n\r\nVoici les retours de Khaled sur les tests alarmes avec les dernières versions du serveur et de Genesis: \r\n\r\n1) Le rafraichissement de la page d’alarme entraine la disparition des alarmes actives pour Genesis et UAExpert.\r\n \r\n2) Les alarmes n’apparaissent pas sur tous les écrans connectés pour des différents users (2 clients UAExpert ok / 2 clients genesis NOK)\r\n \r\n3) Les commentaires disparaissent au moment du rafraichissement des alarmes (Genesis et UeExpert)\r\n\r\n\r\nNote: peut être que nous pourrions traiter ça avec le ticket 779 qui concerne HA et Genesis en mettant en place une VM Cloud avec OOUA et Genesis ? \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n \r\n\r\n \r\n','2022-06-24 18:38:43',0),(2215,779,'Issue',432,'Bonjour, \r\n\r\nPourrions nous svp rouvrir ce ticket?\r\n\r\nVoici les retours de Khaled sur les tests HA avec les dernières versions du serveur et de Genesis:\r\n\r\nNous avons toujours le même comportement. \r\n\r\nNote : Nous revenons vers vous semaine prochaine concernant la mise en place d\'une VM dans le Cloud\r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-06-24 18:42:21',0),(2216,779,'Issue',1,'Bonjour,\r\nce ticket n\'est pas fermé.\r\nMerci de poster ici ce que vous avez remarqué.\r\nNous avions noté un message d\'erreur dans le log du VFI, retourné par PGSQL.\r\nIl faut avant toute chose comprendre ce message.\r\nPourriez vous vous en charger ?\r\n\r\nCordialement\r\nMichel Condemine','2022-06-24 19:33:33',0),(2217,779,'Issue',1,'','2022-06-24 19:33:41',0),(2218,832,'Issue',1,'Bonjour,\r\nje réouvre le ticket.\r\nMerci de ne pas les fusionner.\r\nPoint 1 : merci de procéder au test avec un wireshark actif. Il s\'agira de comprendre ce que fait Genesis quant il fait un : \"rafraichissement de la page d’alarme\"\r\nPoint 2 : Il doit y avoir un bug dans GENESIS. Je vous invite a vérifier les notifications avec Wireshark\r\nPoint 3: Il y a sans doute un problème dans le serveur. Je vais regarder.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-24 19:38:19',0),(2219,806,'Issue',1,'Bonjour, \r\nun nouveau mécanisme est en place. Il permet de controller finement les fichiers LOG.\r\nIl se paramètre dans le fichier oouaprj. \r\nVoir nouvelle version du schéma et documentation.\r\n!clipboard-202206270937-rn1we.png!\r\n\r\nCordialement\r\nMichel Condemine','2022-06-27 09:37:49',0),(2220,792,'Issue',1,'','2022-06-27 09:38:51',0),(2221,855,'Issue',1,'Bonjour,\r\nA priori il n\'y a pas de problème.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-27 13:52:38',0),(2222,856,'Issue',572,'Hello Michel,\r\n\r\nIn annex you may find the my configuration.\r\n\r\nRegards.\r\n\r\nErman','2022-06-27 21:41:18',0),(2223,859,'Issue',432,'!clipboard-202206281410-k66ng.png!\r\n\r\n\r\nCi joint un screenshot de l\'enregistrement en base\r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-06-28 14:10:53',0),(2224,779,'Issue',432,'Bonjour,\r\n\r\nLes messages trouvés dans les logs relatifs au HA sont des erreurs VfiHistoryRead renvoyant un status 0x830f0000 (présent dans le log serveur et log VFI).\r\n\r\nEst-ce que 0x830f0000 signifie WarmStartNeeded ? \r\nQuels sont les cas où un VfiHistoryRead du VfiPgsql peuvent renvoyer un status 0x830f0000 ? \r\nSans accès au code source VfiPgsql je ne peux pas analyser plus. \r\nDans tous les cas un retour VfiHistoryRead ne devrait pas causer de deadlock au niveau du serveur. Auriez vous des pistes sur ce qui pourrait causer un deadlock sur une conf avec serveur, VFI et 2 clients OPC UA (Genesis et UaExpert)\r\n\r\nLes seuls autres messages au niveau du Serveur sont des messages \"A session is in timeout. It will be deleted in the next loop of the CServerApplication::SessionTimeoutThread\" toutes les 20 minurtes (qui laisse insinuer que le serveur ne répond plus à aucun client mais des threads de maintenance continuent à tourner) \r\n\r\nCordialement, \r\nMichael Ejigu','2022-06-28 14:29:33',0),(2225,779,'Issue',1,'Bonjour,\r\n0x830F0000 signifie Vfi_BadNotConnected.\r\nSi ce code d\'erreur est retourné vous devez avoir plus d\'info dans le log.\r\nJe vous invite à analyser les fichiers logs.\r\nCe n\'est pas le serveur qui provoque le deadlock mais le PqSql qui ne répond pas à un appel du Vfi.\r\nVos insinuations démontre bien mon hypothèse. A savoir : PgSQL NE REPOND PLUS AU DEMANDE DU VFI.\r\nPour vous paraphraser : \r\n<pre>\r\n\"Dans tous les cas un retour VfiHistoryRead ne devrait pas causer de deadlock au niveau de PgSql.\"\r\n</pre>\r\n\r\nCela dit. Je pourrai améliorer le comportement du Vfi et/ou du serveur pour prendre en compte les carences de PgSql.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-28 14:46:37',0),(2226,860,'Issue',549,'Bonjour,\r\nOui, un instrument pourrait être mis à jour dans le PLM (changement de description, faute de frappe...) et après un nouvel export PLM, il devrait donc être mis à jour dans l\'address space. Par répercussion, l\'instrument devra aussi être mis à jour dans Optimu et Qualaxy SPC.','2022-06-28 16:21:24',0),(2227,861,'Issue',549,'Rebonjour,\r\nCe cas est traité dans P12 avec 2 solution proposées (rejet des instruments invalides seulement ou du fichier entier).\r\nPour être homogène avec le comportement de Optimu :\r\n- Rejeter le fichier entier\r\n- Ecrire dans le log la/les enregistrement(s) invalide(s)','2022-06-28 16:44:18',0),(2228,840,'Issue',492,'Maquette du serveur pour le problème de tableau à plusieurs dimensions.\r\n\r\nCordialement,\r\nMatthieu','2022-06-28 17:46:25',0),(2229,860,'Issue',1,'','2022-06-29 09:55:09',0),(2230,861,'Issue',1,'','2022-06-29 09:55:31',0),(2231,854,'Issue',1,'Bonjour Nicolas,\r\nje viens de livrer une nouvelle version du VpiOptimu et de la maquette de test associée.\r\nCi-joint le fichier des tests que j\'ai réalisé. Il s\'agit d\'une evolution de votre document.\r\nComme vous pourrez la constater certain test sont toujours invalide car je dois exchanger avec vous sur ces scénarii.\r\n\r\nMerci de me faire un retour ASAP\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2022-06-29 13:26:27',0),(2232,849,'Issue',1,'','2022-06-29 21:28:30',0),(2233,832,'Issue',1,'Bonjour, \r\nj\'ai corriger les problèmes 1 et 2, testés avec UAExpert. Je m\'occuperai ultérieurement du pb 3.\r\nMerci d\'ouvrir un ticket spécifique ce problème.\r\n\r\nJe vous ferai une livraison le 30-6-2022.\r\nMerci de la tester ASAP.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-29 21:31:24',0),(2234,859,'Issue',1,'Bonjour,\r\nj\'ai corrigé le problème dans la Vpi.\r\nJe vous livrerai une version le 30/6/2022.\r\nMerci de me faire un retour ASAP.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-29 22:27:10',0),(2235,859,'Issue',432,'Bonjour, \r\n\r\nc\'est niquel pour le VpiValuesInit\r\n\r\nL\'initialisation d\'un tableau de String vide semble toujours NOK du pdv de UAExpert (cf le screenshot) \r\n\r\n!clipboard-202206300919-k6unq.png!\r\n\r\n\r\nCordialement, \r\n\r\nMichael','2022-06-30 09:20:23',0),(2236,859,'Issue',1,'Bonjour,\r\nVous pourriez initialiser un tableau avec des chaines vides, en accord avec la taille de votre tableau.\r\nS\'il n\'y a rien dans le tableau UAExpert affiche NULL. C\'est parfaitement normal\r\n\r\nCordialement\r\nMichel Condemine','2022-06-30 09:24:40',0),(2237,859,'Issue',432,'Autre que l\'affichage à Null, UaExpert n\'arrive pas non plus à écrire dessus quand le tableau de string est initialisé à vide \r\n\r\nCordialement, \r\n\r\nMichael','2022-06-30 09:36:57',0),(2238,859,'Issue',1,'Je vous laisse voir avec Unified Automation.\r\nCordialement\r\nMichel Condemine','2022-06-30 09:38:41',0),(2239,839,'Issue',1,'Fixe in 2.1.3','2022-06-30 16:24:53',0),(2240,837,'Issue',1,'','2022-06-30 16:27:08',0),(2241,803,'Issue',1,'Done in 2.1.x','2022-06-30 16:31:01',0),(2242,828,'Issue',1,'Can you clarify ?','2022-06-30 16:32:24',0),(2243,802,'Issue',1,'','2022-06-30 16:33:51',0),(2244,800,'Issue',1,'','2022-06-30 16:34:40',0),(2245,799,'Issue',1,'Done in 2.1.3','2022-06-30 16:48:39',0),(2246,796,'Issue',1,'','2022-06-30 16:49:10',0),(2247,777,'Issue',1,'The proposed syntax is FACTORY/DEPARTMENT/LINE/FCT/VALUE\r\nie : IMERYS/LIXHE/Carbital03/PAPLine1/CA3160/REGUL/SP','2022-06-30 16:53:00',0),(2248,865,'Issue',1,'Bonjour\r\n<pre>\r\nLe moyen d\'appeler la NotifyCallback a -elle changée avec la nouvelle dynamique de démarrage ?\r\n</pre>\r\nNon\r\nEst ce que vous lancez l\'execution de la thread immédiatement ou est ce le coldStart qui la débloque ?\r\n*J\'ai testé la 1.0.7.3 avec les VpiS7, Modbus, UAClient et ValuesInit. Il semble que seul votre Vpi rencontre un problème avec la 1.0.7.3*\r\n\r\nCordialement\r\nMichel Condemine','2022-06-30 18:11:08',0),(2249,865,'Issue',1,'','2022-06-30 18:11:19',0),(2250,865,'Issue',432,'C\'est le VpiColdStart qui débloque la Thread\r\n\r\nLa fonction NotifyCallback a t-elle besoin de la mutex sur la cache du Vpi ? Les autres Vpis appellent-ils la NotifyCallback en ayant Lock la mutex de la cache du Vpi ? \r\n\r\nCordialement, \r\n\r\nMichael \r\n\r\n','2022-06-30 18:18:14',0),(2251,865,'Issue',1,'La mutex sur la cache du vpi est un mutex VPI elle ne concerne que le VPI. Le serveur n\'a que faire de cette Mutex. Il ne la connait pas.\r\nJe comprends que vous appelez votre méthode NotifyDeviceState après le déblocage par le ColdStart du VPI. C\'est ce qu\'il faut faire.\r\nPourriez vous vérifier avec les symboles du serveur qui est bloqué. Le VpiWrite, la VpiRead ?\r\n\r\nCordialement\r\nMichel Condemine','2022-06-30 18:26:39',0),(2252,864,'Issue',546,'Bonjour Michel,\r\n\r\nJe vais regarder, des que possible, les erreurs que ConfigManager a relevé et que vous nous avez relayé.\r\n\r\nJe vous ai mis sous Redmine dans le dossier Divers la maquette \"OOUA_IMERYS_MVP_C3_Prod2Back_300622.zip\" qui est une copie de la conf d\'Imerys ce jour après correction des erreurs de la ligne 4.\r\n\r\nLa conf n\'est pas encore stable car l\'activation du mapping de 3 équipements de la ligne 4 de l\'automate .28 fait encore crasher le serveur OOUA.\r\nLe mapping des équipements de la ligne 4 sur les automates .31 et .49 sont OK.\r\n\r\nJe vous tiendrai informé des que j\'aurais isolé le(s) nœud(s) problématique(s).\r\n\r\nCordialement,\r\nDaniel ','2022-06-30 19:43:22',0),(2253,865,'Issue',432,'Est-ce que l\'appel au VpiParseAddId au niveau du serveur partage une ressource avec la réponse à un NotifyCallback ? \r\n\r\nParce que du côté VpiLine je vois que pendant que des VpiParseAddId sont en cours, la VpiColdStart a déjà été appelée, ce qui réveille la thread du VpiLine et provoque l\'appel du NotifyDeviceState (et par conséquent la notifyCallback)\r\nLe VpiParseAddId du VpiLine est donc en attente de la mutex sur la cache du Vpi qui est prise par l\'appel au NotifyDeviceState. Et j\'ai l\'impression que au niveau CoreServeur, la réponse au notifyCallback est en attente d\'une ressource partagée avec l\'appel du VpiParseAddId\r\n\r\nCordialement, \r\n\r\nMichael ','2022-06-30 19:48:25',0),(2254,864,'Issue',1,'Bonjour,\r\nje vous remercie pour ces fichiers. Vous indiquez que le serveur Crash.\r\n* Pourriez vous m\'en dire plus ?\r\n* Utilisez vous bien la v1.0.7.3\r\n* Avez vous des log ?\r\n* avez vous un mini-dump ?\r\n\r\nA l\'avenir. Si le serveur crash. Il faut :\r\n* réaliser un mini-dump\r\n* me prévenir immédiatement\r\n\r\nCordialement\r\nMichel Condemine','2022-06-30 19:49:07',0),(2255,865,'Issue',1,'Bonjour,\r\nvous écrivez :\r\n<pre>\r\nParce que du côté VpiLine je vois que pendant que des VpiParseAddId sont en cours, la VpiColdStart a déjà été appelée, \r\n</pre>\r\nIl a peut être un lien entre le comportement de la ReaderThread avec le nouveau mécanisme de chargement des Vpis. \r\nDans la cas ou votre VpiLine utiliserait de manière atypique le VpiRead.\r\nLe coldstart est appelée par cette ReaderThread. C\'est elle qui est censé rappeler les ColdStart si celui-ci échoue lors de l\'appel initial.\r\n\r\n\r\nJe vais creuser cette piste.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-30 20:06:11',0),(2256,865,'Issue',1,'Merci de tester cette version. http://www.openopcua.org/redmine/attachments/download/3167/Livraison%20Binaires%20Debug-IPV4%20-%2030-6-2022_v1.0.7.4.zip\r\nElle devrait mieux s\'adapter au Vpi comme le VpiLine\r\n\r\nCordialement\r\nMichel Condemine','2022-06-30 21:36:42',0),(2257,864,'Issue',1,'Bonsoir,\r\nje vois au nom de vos repertoires contenant les logs que vous pensez que le \"crash\" du serveur est lié au VpiMqtt.\r\nL\'analyse du mini-dump, bien que partielle, montre un erreur lié à l\'accès à un pointeur NULL dans le VpiS7.\r\n\r\nSans doute une erreur dans la configuration.\r\nCi-dessous les erreurs détectées par l\'OOUAConfigManager sur les config VpiS7.\r\nIl y a en a vraiment beaucoup.\r\n\r\n\r\n<pre>\r\n2022-06-30T21:57:50.453 Your XML configuration file :C:\\Samples\\IMERYS\\OOUA_IMERYS_MVP_C3_30-6-2022\\Project\\Opc.Ua.SubSystem.S7_28.xml has been parsed\r\n2022-06-30T21:57:52.439 Critical configuration error HW-Address DB.002F.01DA NodeId= ns=8;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:52.862 Critical configuration error HW-Address DB.002F.01DE.5 NodeId= ns=8;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.051 Critical configuration error HW-Address DB.002F.01DE.6 NodeId= ns=8;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.195 Critical configuration error HW-Address DB.0029.00EA NodeId= ns=10;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.327 Critical configuration error HW-Address DB.0029.012C NodeId= ns=10;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.471 Critical configuration error HW-Address DB.002F.0042 NodeId= ns=10;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.608 Critical configuration error HW-Address DB.002F.0046.5 NodeId= ns=10;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.726 Critical configuration error HW-Address DB.002F.0046.6 NodeId= ns=10;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.852 Critical configuration error HW-Address DB.0029.00EA NodeId= ns=21;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.981 Critical configuration error HW-Address DB.0029.0132 NodeId= ns=21;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:54.096 Critical configuration error HW-Address DB.002F.0042 NodeId= ns=21;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:54.216 Critical configuration error HW-Address DB.002F.0046.6 NodeId= ns=21;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:54.331 Critical configuration error HW-Address DB.002F.0058.5 NodeId= ns=21;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:54.463 Critical configuration error HW-Address DB.0029.00DE NodeId= ns=12;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:54.579 Critical configuration error HW-Address DB.0029.013E NodeId= ns=12;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:54.707 Critical configuration error HW-Address DB.002F.01CE NodeId= ns=22;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:54.835 Critical configuration error HW-Address DB.002F.01D2.5 NodeId= ns=22;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:54.970 Critical configuration error HW-Address DB.002F.01D2.6 NodeId= ns=22;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:55.110 Critical configuration error HW-Address DB.0029.00C6 NodeId= ns=39;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:55.263 Critical configuration error HW-Address DB.0029.014A NodeId= ns=39;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:55.387 Critical configuration error HW-Address DB.002F.0030 NodeId= ns=39;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:55.516 Critical configuration error HW-Address DB.002F.0034.5 NodeId= ns=39;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:55.652 Critical configuration error HW-Address DB.002F.0034.6 NodeId= ns=39;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:55.824 Critical configuration error HW-Address DB.0029.00AE NodeId= ns=41;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:56.070 Critical configuration error HW-Address DB.0029.013E NodeId= ns=41;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:56.256 Critical configuration error HW-Address DB.002F.0036 NodeId= ns=41;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:56.463 Critical configuration error HW-Address DB.002F.003A.5 NodeId= ns=41;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:56.615 Critical configuration error HW-Address DB.002F.003A.6 NodeId= ns=41;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:56.772 Critical configuration error HW-Address DB.0029.00BA NodeId= ns=43;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:56.918 Critical configuration error HW-Address DB.0029.0144 NodeId= ns=43;i=1252 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:57.073 Critical configuration error HW-Address DB.002F.01D4 NodeId= ns=47;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:57.212 Critical configuration error HW-Address DB.002F.01D8.5 NodeId= ns=47;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:57.370 Critical configuration error HW-Address DB.002F.01D8.6 NodeId= ns=47;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:57.523 Critical configuration error HW-Address DB.002F.00B2.5 NodeId= ns=50;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:57.692 Critical configuration error HW-Address DB.002E.0074.0 NodeId= ns=50;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:57.857 Critical configuration error HW-Address DB.002F.00AE NodeId= ns=50;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:58.008 Critical configuration error HW-Address DB.0029.008A NodeId= ns=52;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:58.159 Critical configuration error HW-Address DB.002F.001C.5 NodeId= ns=52;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:58.307 Critical configuration error HW-Address DB.002F.001C.6 NodeId= ns=52;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:58.445 Critical configuration error HW-Address DB.002F.0018 NodeId= ns=52;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:58.617 Critical configuration error HW-Address DB.0029.00A2 NodeId= ns=53;i=1203 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:58.825 Critical configuration error HW-Address DB.002F.0016.5 NodeId= ns=53;i=1204 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:59.008 Critical configuration error HW-Address DB.002F.0016.6 NodeId= ns=53;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:59.172 Critical configuration error HW-Address DB.002F.0012 NodeId= ns=53;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:59.345 Critical configuration error HW-Address DB.0029.0096 NodeId= ns=54;i=1203 is not properly configured uStatus : 0x80330000\r\n\r\n2022-06-30T21:57:59.502 Your XML configuration file :C:\\Samples\\IMERYS\\OOUA_IMERYS_MVP_C3_30-6-2022\\Project\\Opc.Ua.SubSystem.S7_49.xml has been parsed\r\n2022-06-30T21:57:59.683 Critical configuration error HW-Address DB.0032.081E.0 NodeId= ns=7;i=2137 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:59.855 Critical configuration error HW-Address DB.0033.00C0 NodeId= ns=7;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:00.019 Critical configuration error HW-Address DB.0033.00CB.0 NodeId= ns=7;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:00.188 Critical configuration error HW-Address DB.0033.00CB.1 NodeId= ns=7;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:00.351 Critical configuration error HW-Address DB.00D8.000A NodeId= ns=7;i=2124 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:00.579 Critical configuration error HW-Address DB.019A.000A NodeId= ns=7;i=2134 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:00.794 Critical configuration error HW-Address DB.019A.0006 NodeId= ns=7;i=2135 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:01.001 Critical configuration error HW-Address DB.019A.0014 NodeId= ns=7;i=2133 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:01.180 Critical configuration error HW-Address DB.019A.0018 NodeId= ns=7;i=2132 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:01.363 Critical configuration error HW-Address DB.019A.001C NodeId= ns=7;i=2131 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:01.549 Critical configuration error HW-Address DB.019A.0048 NodeId= ns=7;i=2136 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:01.711 Critical configuration error HW-Address DB.0033.035E NodeId= ns=8;i=2210 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:01.879 Critical configuration error HW-Address DB.0035.001A NodeId= ns=8;i=2214 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:02.032 Critical configuration error HW-Address DB.0035.001E NodeId= ns=8;i=2202 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:02.194 Critical configuration error HW-Address DB.0033.0150 NodeId= ns=9;i=3310 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:02.368 Critical configuration error HW-Address DB.0035.008A NodeId= ns=32;i=1015 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:02.541 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=34;i=1288 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:02.702 Critical configuration error HW-Address DB.0032.0CCC NodeId= ns=36;i=1307 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:02.864 Critical configuration error HW-Address DB.0033.055E NodeId= ns=36;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:03.036 Critical configuration error HW-Address DB.0033.055E NodeId= ns=36;i=1308 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:03.199 Critical configuration error HW-Address DB.0033.0560 NodeId= ns=36;i=1306 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:03.351 Critical configuration error HW-Address DB.0033.0560 NodeId= ns=36;i=1206 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:03.526 Critical configuration error HW-Address DB.0033.0564 NodeId= ns=36;i=1202 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:03.683 Critical configuration error HW-Address DB.0033.0571.1 NodeId= ns=36;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:03.842 Critical configuration error HW-Address DB.0033.0571.2 NodeId= ns=36;i=1305 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:04.004 Critical configuration error HW-Address DB.0035.0062 NodeId= ns=36;i=1288 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:04.171 Critical configuration error HW-Address DB.0032.0734.0 NodeId= ns=29;i=2137 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:04.332 Critical configuration error HW-Address DB.0033.0054 NodeId= ns=29;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:04.493 Critical configuration error HW-Address DB.0033.005F.0 NodeId= ns=29;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:04.658 Critical configuration error HW-Address DB.0033.005F.1 NodeId= ns=29;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:04.815 Critical configuration error HW-Address DB.00CF.000A NodeId= ns=29;i=2124 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:04.983 Critical configuration error HW-Address DB.012D.0006 NodeId= ns=29;i=2135 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:05.141 Critical configuration error HW-Address DB.012D.000A NodeId= ns=29;i=2134 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:05.348 Critical configuration error HW-Address DB.012D.0014 NodeId= ns=29;i=2133 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:05.530 Critical configuration error HW-Address DB.012D.0018 NodeId= ns=29;i=2132 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:05.706 Critical configuration error HW-Address DB.012D.001C NodeId= ns=29;i=2131 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:05.884 Critical configuration error HW-Address DB.012D.0048 NodeId= ns=29;i=2136 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:06.058 Critical configuration error HW-Address DB.0033.0156 NodeId= ns=31;i=3310 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:06.249 Critical configuration error HW-Address DB.0033.000C NodeId= ns=33;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:06.434 Critical configuration error HW-Address DB.0033.000E NodeId= ns=33;i=2124 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:06.616 Critical configuration error HW-Address DB.0033.0017.0 NodeId= ns=33;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:06.792 Critical configuration error HW-Address DB.0033.0017.1 NodeId= ns=33;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:06.978 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=33;i=2147 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:07.149 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=33;i=2151 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:07.332 Critical configuration error HW-Address DB.00C9.000E NodeId= ns=33;i=2120 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:07.503 Critical configuration error HW-Address DB.0033.0364 NodeId= ns=26;i=2214 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:07.672 Critical configuration error HW-Address DB.0035.0062 NodeId= ns=26;i=2202 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:07.838 Critical configuration error HW-Address DB.0035.0066 NodeId= ns=26;i=2210 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:08.008 Critical configuration error HW-Address DB.0033.02DE NodeId= ns=39;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:08.184 Critical configuration error HW-Address DB.0033.02E0.5 NodeId= ns=39;i=1032 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:08.355 Critical configuration error HW-Address DB.0033.02E2 NodeId= ns=40;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:08.554 Critical configuration error HW-Address DB.0033.02E4.5 NodeId= ns=40;i=1032 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:08.767 Critical configuration error HW-Address DB.0035.00D2 NodeId= ns=42;i=1015 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:08.964 Critical configuration error HW-Address DB.0033.001A NodeId= ns=43;i=2124 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:09.151 Critical configuration error HW-Address DB.0033.0018 NodeId= ns=43;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:09.347 Critical configuration error HW-Address DB.0033.0023.1 NodeId= ns=43;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:09.539 Critical configuration error HW-Address DB.0033.0023.2 NodeId= ns=43;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:09.725 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=43;i=2147 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:09.915 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=43;i=2151 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:10.107 Critical configuration error HW-Address DB.00CA.000E NodeId= ns=43;i=2120 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:10.313 Critical configuration error HW-Address DB.0033.0352 NodeId= i=0 is not properly configured uStatus : 0x805d0000\r\n2022-06-30T21:58:10.507 Critical configuration error HW-Address DB.0033.04D4 NodeId= i=0 is not properly configured uStatus : 0x805d0000\r\n2022-06-30T21:58:10.700 Critical configuration error HW-Address DB.0033.04D4 NodeId= i=0 is not properly configured uStatus : 0x805d0000\r\n2022-06-30T21:58:10.882 Critical configuration error HW-Address DB.0033.028E NodeId= ns=45;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:11.067 Critical configuration error HW-Address DB.0033.0290.5 NodeId= ns=45;i=1032 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:11.257 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=45;i=1037 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:11.435 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=45;i=1041 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:11.626 Critical configuration error HW-Address DB.0033.02FE NodeId= ns=47;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:11.806 Critical configuration error HW-Address DB.0033.0300.5 NodeId= ns=47;i=1032 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:11.997 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=48;i=1288 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:12.183 Critical configuration error HW-Address DB.0032.0CC4 NodeId= ns=52;i=1307 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:12.362 Critical configuration error HW-Address DB.0033.054A NodeId= ns=52;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:12.543 Critical configuration error HW-Address DB.0033.054A NodeId= ns=52;i=1308 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:12.743 Critical configuration error HW-Address DB.0033.054C NodeId= ns=52;i=1306 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:12.956 Critical configuration error HW-Address DB.0033.054C NodeId= ns=52;i=1206 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:13.141 Critical configuration error HW-Address DB.0033.0550 NodeId= ns=52;i=1202 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:13.329 Critical configuration error HW-Address DB.0033.055D.1 NodeId= ns=52;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:13.515 Critical configuration error HW-Address DB.0033.055D.2 NodeId= ns=52;i=1305 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:13.703 Critical configuration error HW-Address DB.0035.00AA NodeId= ns=52;i=1302 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:13.893 Critical configuration error HW-Address DB.0033.036A NodeId= ns=55;i=2214 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:14.092 Critical configuration error HW-Address DB.0035.00AA NodeId= ns=55;i=2202 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:14.280 Critical configuration error HW-Address DB.0035.00AE NodeId= ns=55;i=2210 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:14.471 Critical configuration error HW-Address DB.0033.015C NodeId= ns=65;i=3310 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:14.661 Critical configuration error HW-Address DB.0032.0782.0 NodeId= ns=71;i=2137 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:14.851 Critical configuration error HW-Address DB.0033.0078 NodeId= ns=71;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:15.038 Critical configuration error HW-Address DB.0033.0083.0 NodeId= ns=71;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:15.225 Critical configuration error HW-Address DB.0033.0083.1 NodeId= ns=71;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:15.413 Critical configuration error HW-Address DB.00D2.000A NodeId= ns=71;i=2124 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:15.608 Critical configuration error HW-Address DB.0130.0006 NodeId= ns=71;i=2135 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:15.800 Critical configuration error HW-Address DB.0130.000A NodeId= ns=71;i=2134 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:16.001 Critical configuration error HW-Address DB.0130.0014 NodeId= ns=71;i=2133 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:16.195 Critical configuration error HW-Address DB.0130.0018 NodeId= ns=71;i=2132 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:16.394 Critical configuration error HW-Address DB.0130.001C NodeId= ns=71;i=2131 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:16.579 Critical configuration error HW-Address DB.0130.0048 NodeId= ns=71;i=2136 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:16.773 Critical configuration error HW-Address DB.0033.0356 NodeId= ns=79;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:16.982 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=79;i=1295 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:17.178 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=79;i=1301 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:17.378 Critical configuration error HW-Address DB.0033.0294.5 NodeId= ns=20;i=1032 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:17.580 Critical configuration error HW-Address DB.0033.0296 NodeId= ns=20;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:17.781 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=20;i=1295 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:17.985 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=20;i=1301 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:18.196 Critical configuration error HW-Address DB.0033.0318.5 NodeId= ns=19;i=1032 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:18.397 Critical configuration error HW-Address DB.0033.0316 NodeId= ns=19;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:18.600 Critical configuration error HW-Address DB.0032.091A NodeId= ns=62;i=1032 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:18.803 Critical configuration error HW-Address DB.0033.031A NodeId= ns=62;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:19.005 Critical configuration error HW-Address DB.0032.090E NodeId= ns=74;i=1032 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:19.201 Critical configuration error HW-Address DB.0033.030E NodeId= ns=74;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:19.403 Critical configuration error HW-Address DB.0032.0926.0 NodeId= ns=75;i=1032 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:19.608 Critical configuration error HW-Address DB.0033.0326 NodeId= ns=75;i=1034 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:19.813 Critical configuration error HW-Address DB.00CB.000E NodeId= ns=76;i=2120 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:20.026 Critical configuration error HW-Address DB.0033.002F NodeId= ns=76;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:20.234 Critical configuration error HW-Address DB.0033.0026 NodeId= ns=76;i=2124 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:20.440 Critical configuration error HW-Address DB.0033.002F NodeId= ns=76;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:20.649 Critical configuration error HW-Address DB.0033.0024 NodeId= ns=76;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:20.861 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=76;i=2147 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:21.074 Critical configuration error HW-Address DB.0033.04D4 NodeId= ns=76;i=2151 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:21.287 Critical configuration error HW-Address DB.0033.00A7.2 NodeId= ns=18;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:21.512 Critical configuration error HW-Address DB.0033.009E NodeId= ns=18;i=2124 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:21.726 Critical configuration error HW-Address DB.0033.00A7.1 NodeId= ns=18;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:21.935 Critical configuration error HW-Address DB.0033.009C NodeId= ns=18;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:22.145 Critical configuration error HW-Address DB.0032.07D0.0 NodeId= ns=18;i=2137 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:22.361 Critical configuration error HW-Address DB.0197.000A NodeId= ns=18;i=2134 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:22.578 Critical configuration error HW-Address DB.0197.0006 NodeId= ns=18;i=2135 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:22.789 Critical configuration error HW-Address DB.0197.0048 NodeId= ns=18;i=2136 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:23.011 Critical configuration error HW-Address DB.0197.0014 NodeId= ns=18;i=2133 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:23.227 Critical configuration error HW-Address DB.0197.0018 NodeId= ns=18;i=2132 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:23.446 Critical configuration error HW-Address DB.0197.001C NodeId= ns=18;i=2131 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:23.685 Critical configuration error HW-Address DB.00D7.000E NodeId= ns=44;i=2120 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:23.908 Critical configuration error HW-Address DB.0033.00BF.2 NodeId= ns=44;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:24.127 Critical configuration error HW-Address DB.0033.00B6 NodeId= ns=44;i=2124 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:24.349 Critical configuration error HW-Address DB.0033.00BF.1 NodeId= ns=44;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:24.568 Critical configuration error HW-Address DB.0033.00B4 NodeId= ns=44;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:24.792 Critical configuration error HW-Address DB.0199.0000.1 NodeId= ns=44;i=2137 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:25.018 Critical configuration error HW-Address DB.0199.000A NodeId= ns=44;i=2134 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:25.238 Critical configuration error HW-Address DB.0199.0006 NodeId= ns=44;i=2135 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:25.456 Critical configuration error HW-Address DB.0199.0048 NodeId= ns=44;i=2136 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:25.682 Critical configuration error HW-Address DB.0199.0014 NodeId= ns=44;i=2133 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:25.907 Critical configuration error HW-Address DB.0199.0018 NodeId= ns=44;i=2132 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:26.132 Critical configuration error HW-Address DB.0199.001C NodeId= ns=44;i=2131 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:26.364 Critical configuration error HW-Address DB.0035.00F2 NodeId= ns=44;i=2147 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:26.593 Critical configuration error HW-Address DB.0035.00F2 NodeId= ns=44;i=2151 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:26.824 Critical configuration error HW-Address DB.0033.05CC NodeId= ns=66;i=1202 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:27.060 Critical configuration error HW-Address DB.0033.05C8 NodeId= ns=66;i=1206 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:27.295 Critical configuration error HW-Address DB.0033.05D9.1 NodeId= ns=66;i=1207 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:27.540 Critical configuration error HW-Address DB.0033.05C6 NodeId= ns=66;i=1208 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:27.787 Critical configuration error HW-Address DB.0033.0162 NodeId= ns=67;i=3310 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:58:28.040 Your XML configuration file :C:\\Samples\\IMERYS\\OOUA_IMERYS_MVP_C3_30-6-2022\\Project\\Opc.Ua.SubSystem.S7_31.xml has been parsed\r\n\r\n2022-06-30T21:58:28.316 Your XML configuration file :C:\\Samples\\IMERYS\\OOUA_IMERYS_MVP_C3_30-6-2022\\Project\\Opc.Ua.SubSytem.MqttPub.xml has been parsed\r\n2022-06-30T21:58:29.718 Ready\r\n</pre>\r\n\r\nJe continue mes recherches. Il aurait été bien de pouvoir en parler lors d\'un point.\r\n\r\nCordialement\r\nMichel Condemine','2022-06-30 22:03:11',0),(2258,864,'Issue',1,'Bonjour,\r\nles erreurs de configuration sont liées à de mauvaise/non déclaration d\'URI.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-01 10:49:48',0),(2259,864,'Issue',546,'Bonjour Michel,\r\n\r\nMerci à vous pour vos retours.\r\nSur les erreurs, exceptés pour 3 lignes suivantes:\r\n2022-06-30T21:58:10.313 Critical configuration error HW-Address DB.0033.0352 NodeId= i=0 is not properly configured uStatus : 0x805d0000\r\n2022-06-30T21:58:10.507 Critical configuration error HW-Address DB.0033.04D4 NodeId= i=0 is not properly configured uStatus : 0x805d0000\r\n2022-06-30T21:58:10.700 Critical configuration error HW-Address DB.0033.04D4 NodeId= i=0 is not properly configured uStatus : 0x805d0000\r\n\r\nQui sont certainement liés aux logs suivants du serveur OOUA \r\n2022-06-30T13:41:14.284Z SERVER_ERROR InitializeEncodeableObject>The dataType of a Variable i=18801 cannot be Abstract. Probably a modelization error\r\n2022-06-30T13:41:14.284Z SERVER_ERROR InitializeEncodeableObject>The dataType of a Variable i=18787 cannot be Abstract. Probably a modelization error\r\n2022-06-30T13:41:14.284Z SERVER_ERROR InitializeEncodeableObject>The dataType of a Variable i=2077 cannot be Abstract. Probably a modelization error\r\n\r\nLe code 0x805D0000 indique (\'BadNodeIdRejected\', \'\"The requested node id was reject because it was either invalid or server does not allow node ids to be specified by the client.\"\'),\r\na ce stade, ce n\'est pas tres clair pour moi et par facilité je considere ces 3 là comme étant un pb de model.\r\n\r\n\r\n\r\nLe reste des erreurs listés est référencé par le code 0x80330000: (\'BadNodeIdInvalid\', \'\"The syntax of the node id is not valid.\"\'),\r\nJ\'ai pris pour exemple les 4 premieres erreurs listés:\r\n2022-06-30T21:57:52.439 Critical configuration error HW-Address DB.002F.01DA NodeId= ns=8;i=2126 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:52.862 Critical configuration error HW-Address DB.002F.01DE.5 NodeId= ns=8;i=2122 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.051 Critical configuration error HW-Address DB.002F.01DE.6 NodeId= ns=8;i=2125 is not properly configured uStatus : 0x80330000\r\n2022-06-30T21:57:53.195 Critical configuration error HW-Address DB.0029.00EA NodeId= ns=10;i=1203 is not properly configured uStatus : 0x80330000\r\n\r\nLe mapping correspondant à certains noeuds de l\'automate .49\r\nL\'analyse du fichier de mapping corrélé avec le fichier d\'instanciation et le fichier de lecture de l\'AdresseSpace ( .dat) correspondants ne permette pas de faire ressortir une incohérence déclarative.\r\nEn l\'état je ne vois pas de problème au niveau URI non plus\r\nLes valeurs renseignées pour le nodeId , le Type et l\'adresse sont cohérents sur l\'ensemble de la chaine.\r\nJe me pose des questions sur la valeur du champs \"ValueRank\" qui est positionnée à -1 .\r\nAvez vous la possibilité d\'avoir plus de détail sur le fait que ConfigManager ces déclarations comme erreurs.\r\n\r\nSi besoin, les fichiers de configuration/d\'instanciation et de mapping sont dans la maquette \"OOUA_IMERYS_MVP_C3_Prod2Back_300622.zip\r\n\r\nJe vous remercie par avance pour votre aide.\r\nCdt,\r\ndaniel\r\n\r\n\r\n=> Mapping\r\n\r\n<!-- Tamis7 -->\r\n<Tag Id=\"ns=10;i=2126\" Name=\"Status\" Description=\"Default_Description\" Type=\"Int16\" AccessRight=\"Input_Output\" Address=\"DB.002F.01DA\"></Tag> => soit DB47 adresse 474\r\n<Tag Id=\"ns=10;i=2122\" Name=\"MotorControl\" Description=\"Default Description\" Type=\"Boolean\" AccessRight=\"Input_Output\" Address=\"DB.002F.01DE.5\"></Tag> => soit DB47 adresse 478.5\r\n <Tag Id=\"ns=10;i=2125\" Name=\"StartMechanism\" Description=\"Default Description\" Type=\"Boolean\" AccessRight=\"Input_Output\" Address=\"DB.002F.01DE.6\"></Tag> => soit DB47 adresse 478.6\r\n<!-- Grinder BS4 -->\r\n <Tag Id=\"ns=12;i=1203\" Name=\"KW\" Description=\"Default Description\" Type=\"Float\" AccessRight=\"Input_Output\" Address=\"DB.0029.00EA\"></Tag> => soit DB41 adresse 234\r\n\r\n\r\n=> Instanciation\r\n\r\n<UAVariable NodeId=\"ns=17;i=2126\" BrowseName=\"Status\" WriteMask=\"00\" UserWriteMask=\"00\" DataType=\"Int16\" ValueRank=\"-1\" ArrayDimensions=\"00,\" AccessLevel=\"03\" UserAccessLevel=\"03\" MinimumSamplingInterval=\"100.000000\" Historizing=\"false\">\r\n <DisplayName>Status</DisplayName>\r\n <Description>Default Description</Description>\r\n <References>\r\n <Reference ReferenceType=\"i=47\" IsForward=\"false\">ns=17;i=2333</Reference>\r\n <Reference ReferenceType=\"i=40\" IsForward=\"true\">i=63</Reference></References>\r\n</UAVariable>\r\n\r\n\r\n <UAVariable NodeId=\"ns=17;i=2125\" BrowseName=\"StartMechanism\" WriteMask=\"00\" UserWriteMask=\"00\" DataType=\"Boolean\" ValueRank=\"-1\" ArrayDimensions=\"00,\" AccessLevel=\"03\" UserAccessLevel=\"03\" MinimumSamplingInterval=\"100.000000\" Historizing=\"false\">\r\n <DisplayName>StartMechanism</DisplayName>\r\n <Description>Default Description</Description>\r\n <References>\r\n <Reference ReferenceType=\"i=47\" IsForward=\"false\">ns=17;i=2333</Reference>\r\n <Reference ReferenceType=\"i=40\" IsForward=\"true\">i=63</Reference></References>\r\n</UAVariable>\r\n\r\n\r\n <UAVariable NodeId=\"ns=17;i=2122\" BrowseName=\"MotorControl\" WriteMask=\"00\" UserWriteMask=\"00\" DataType=\"Boolean\" ValueRank=\"-1\" ArrayDimensions=\"00,\" AccessLevel=\"03\" UserAccessLevel=\"03\" MinimumSamplingInterval=\"100.000000\" Historizing=\"false\">\r\n <DisplayName>MotorControl</DisplayName>\r\n <Description>Default Description</Description>\r\n <References>\r\n <Reference ReferenceType=\"i=47\" IsForward=\"false\">ns=17;i=2333</Reference>\r\n <Reference ReferenceType=\"i=40\" IsForward=\"true\">i=63</Reference></References>\r\n</UAVariable>\r\n\r\n\r\n\r\n<UAVariable NodeId=\"ns=9;i=1203\" BrowseName=\"KW\" WriteMask=\"00\" UserWriteMask=\"00\" DataType=\"i=10\" ValueRank=\"-1\" ArrayDimensions=\"00,\" AccessLevel=\"03\" UserAccessLevel=\"03\" MinimumSamplingInterval=\"100.000000\" Historizing=\"false\">\r\n <DisplayName>KW</DisplayName>\r\n <Description>Default Description</Description>\r\n <References>\r\n <Reference ReferenceType=\"i=47\" IsForward=\"false\">ns=9;i=1201</Reference>\r\n <Reference ReferenceType=\"i=40\" IsForward=\"true\">i=63</Reference></References>\r\n</UAVariable>\r\n\r\n\r\n=> S7_49-00950.dat\r\n\r\nIP_ADDRESS 10.116.20.49\r\nDEVICE_TYPE S7_1200\r\nRACK_NUM 0\r\nSLOT_NUM 1\r\nMIN_POLL_RATE 1000\r\nBLOCK_MODE MANU\r\nNUMBER_OF_BLOCK 4\r\nBLOCK_001 00006-00334,DB.0041\r\nBLOCK_002 00018-00538,DB.0047 \r\nBLOCK_003 00026-00030,DB.0053\r\nBLOCK_004 00013-00353,DB.0046\r\n\r\n\r\n=> declaration des URI dans le fichier de mapping\r\n\r\n<Uri>http://imerys.com/lixhe</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine1</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine1/BS1</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine1/BS2</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine1/BS3</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine1/CA3160</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine1/CA3059</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine1/CA3068</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine1/Tamis7</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine2</Uri>\r\n<Uri>http://imerys.com/Imerys/Lixhe/Carbital3/PAPLine2/BS4</Uri>\r\n\r\n\r\n','2022-07-01 11:25:38',0),(2260,864,'Issue',1,'Bonjour,\r\nJ\'ai déjà étudié le problème.\r\nMerci de lire mon dernier post en réponse : \r\n*les erreurs de configuration sont liées à de mauvaises/non déclarations d\'URI.*\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-07-01 11:31:03',0),(2261,866,'Issue',1,'Bonjour,\r\nje vous remercie pour ce retour.\r\nPourriez vous créer un ticket par bug.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-01 14:41:33',0),(2262,866,'Issue',1,'','2022-07-01 14:41:43',0),(2263,868,'Issue',545,'je rajoute au ticket (Retour Alarmes OOUA version binaire Debug-IPV4-30-06-2022-v1.0.7.3 - Beug2)\r\n\r\nAnalyse des traces (port 3885 en OPC UA) Bug2.pcapng\r\n-------------------------\r\n\r\nCommunication Genesis filtrable par @IP 172.17.202.11\r\nCommunication UAExpert filtrable par @IP 127.0.0.1\r\n\r\n\r\nPaquets 140,537,703 = Ecriture sur les booléens par UaExpert pour lever et enlever les alarmes\r\nPaquet 148 Alarme 1\r\nPaquet 410 réponse à l’acquittement et au commentaire\r\nPaquet 551 réponse mise à bas de l’alarme \r\nPaquet 715 régénération de l’alarme avec toujours le même commentaire\r\n\r\nCordialement,\r\nEquipe Inetum\r\n','2022-07-01 15:43:19',0),(2264,867,'Issue',1,'Bonjour,\r\nmerci pour le découpage. \r\nOn pourra traiter les pb 1 par 1.\r\nEst-ce que le comportment que vous décrivez pour Genesis est le même avec UAExpert ?\r\nEn particulier si vous faites :\r\n- Acquitter dans UAExpert une seule alarme parmi les deux alarmes générées sans la désactiver\r\n- Appelez le Refresh depuis UAExpert.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-01 15:43:42',0),(2265,867,'Issue',545,'ce phénomène ne se produit pas coté UAExpert, mais l\'absence de paquet d\'événement après la réactualisation des alarmes ( createmonitoreditemrequest) semble montrer que c\'est le serveur ne renvoie pas les alarmes à genesis.','2022-07-01 15:57:08',0),(2266,868,'Issue',545,'le phénomène est au présent coté UAExpert,\r\n\r\nCordialement,\r\nmerci \r\n\r\n','2022-07-01 15:58:21',0),(2267,869,'Issue',545,'le phénomène est aussi présent coté UAExpert,\r\n\r\nCordialement,\r\nmerci ','2022-07-01 15:58:41',0),(2268,867,'Issue',1,'Bonjour,\r\nSauf erreur, je ne vois pas d\'appel à la méthode refresh dans votre trace après le Rafraichissement de la page d’alarme.\r\nIl y a donc bien un bug dans Genesis.\r\nComme indiqué dans la spéc AU part 9 §4.5\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-07-01 16:01:41',0),(2269,867,'Issue',1,'','2022-07-01 16:03:20',0),(2270,867,'Issue',1,'','2022-07-01 16:12:14',0),(2271,864,'Issue',546,'Bonjour Michel,\r\n\r\nSuite à notre réunion, je vous prie de trouver dans le projet Imerys / Divers le zip de la version en production actuelle chez Imerys OOUA_IMERYS_MVP_C3_Stable_Prod2Back_010722_PourInvestigConfigManager.zip , à des fins d\'investigation plus approfondies au regards des erreurs remontées par le ConfigManager.\r\nMerci à vous,\r\n\r\nCordialement,\r\nDaniel\r\n','2022-07-01 19:52:47',0),(2272,871,'Issue',1,'Fixed in 2.1.4','2022-07-04 16:39:32',0),(2273,858,'Issue',1,'Fixed in 2.1.4','2022-07-04 16:49:25',0),(2274,828,'Issue',1,'Fixed in 2.1.4','2022-07-04 16:53:09',0),(2275,766,'Issue',1,'','2022-07-04 17:00:40',0),(2276,763,'Issue',1,'','2022-07-04 17:01:38',0),(2277,737,'Issue',1,'','2022-07-04 17:02:19',0),(2278,686,'Issue',1,'Fixed','2022-07-04 17:03:15',0),(2279,685,'Issue',1,'See during next session. Do we want to reuse the existing specc 40250-1 or to extend our model based on 40250-1','2022-07-04 17:12:37',0),(2280,684,'Issue',1,'','2022-07-04 17:12:59',0),(2281,683,'Issue',1,'Done in 2.1.4','2022-07-04 17:13:20',0),(2282,872,'Issue',1,'Bonjour Paul,\r\nil n\'existe pas de version IPV4 du VpiOptimu. Ce Vpi est mixte.\r\nCependant voici l\'ensemble des binaires à jour en IPV4, y compris, le VpiOptimu(IPV4/IPV6).\r\n\r\nCordialement\r\nMichel Condemine','2022-07-06 13:45:58',0),(2283,699,'Issue',496,NULL,'2022-07-06 17:07:46',0),(2284,697,'Issue',496,NULL,'2022-07-06 17:07:49',0),(2285,874,'Issue',1,'Hello,\r\nRuntime VC2013 manquant.\r\nIl faut le télécharger ici. https://www.microsoft.com/fr-FR/download/details.aspx?id=40784\r\n\r\nCordialement\r\nMichel Condemine','2022-07-06 17:13:18',0),(2286,874,'Issue',1,'','2022-07-06 17:13:32',0),(2287,874,'Issue',496,'Merci beaucoup c\'est bon !\r\n','2022-07-06 17:18:37',0),(2288,874,'Issue',496,'','2022-07-06 17:18:58',0),(2289,874,'Issue',1,'','2022-07-06 17:29:41',0),(2290,870,'Issue',550,'Effectivement c\'est la date qui pose problème\r\n mais vous devez avoir la raison dans le code retour de l\'erreur 400\r\n\r\n!clipboard-202207061744-yjkvf.png!\r\n','2022-07-06 17:44:44',0),(2291,870,'Issue',1,'Bonjour,\r\nj\'ai fait le test sans la date null.\r\nMais j\'obtiens en core un BAD_REQUEST.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-06 17:48:00',0),(2292,870,'Issue',550,'effectivement il nous faut la date de fin de validité.\r\na minima mettre \"endValidity\": \"1899-12-30T00:00:00+01:00\", si vous n\'avez pas de date.\r\n\r\nje note le point pour une correction future (ticket 13276 )\r\n\r\nCordialement\r\nGilles\r\n','2022-07-06 17:58:01',0),(2293,854,'Issue',549,'Bonjour,\r\n\r\nVoici le résultat des tests de la version 1.0.0.3. Je vous joins aussi nos jeux de test.\r\nNous pourrons discuter des derniers points demain.\r\n\r\nCordialement,\r\nNicolas Pierson','2022-07-07 20:20:02',0),(2294,875,'Issue',436,'Bonjour Michel,\r\n\r\nLa dernière fois que nous avons regardé le serveur c\'était mardi dernier (le 5 juillet) vers 10h15.\r\nTout était ok. Le serveur n\'était pas crashé. Il tournait depuis le vendredi 1er juillet.\r\n\r\nCe matin Daniel a essayé de se connecter chez Imerys, mais, encore une fois, c\'est impossible... Le support de Steven a été demandé.\r\n\r\nEst-ce que tu sais si Sunil ou son équipe a rajouté des instances/mapping sur le serveur cette semaine ?\r\n\r\nCordialement,\r\nChris','2022-07-08 11:52:49',0),(2295,847,'Issue',447,'Bonjour Michel\r\n\r\nLa dernière version de Ximulateur génère bien les Output pour les méthodes mais il met en output les données d\'entrée tagué In et non celle tagué Out\r\n\r\nAutre point, les attributs avec un Type Float ou float sont généré en tant que Double','2022-07-11 20:33:18',0),(2296,847,'Issue',1,'Bonsoir,\r\nje m\'en occupe dans la semaine.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-11 21:02:58',0),(2297,879,'Issue',1,'Bonjour,\r\npourriez vous développez ?\r\nEst ce que vous sous-entendez que le serveur ne répond jamais par un HistoryReadResponse ?\r\n\r\nCordialement\r\nMichel Condemine','2022-07-13 15:18:44',0),(2298,879,'Issue',545,'\r\nBonjour,\r\n \r\nDans le cas nominal, le serveur répond bien au HistoryReadRequest, mais dans le cas du paquet 41384, il n\'y répond pas. Cet instant semble correspondre à l\'instant ou le serveur \"freeze\". La cause du Freeze est donc peut être dans cette requête HistoryRead. Est-ce que dans ce paquet HistoryRead, vous voyez quelque chose qui pourrais ne pas plaire au serveur? Ou bien pensez vous que c\'est dû à autre chose ?\r\n\r\nCordialement,\r\nEquipe Inetum','2022-07-13 16:26:23',0),(2299,879,'Issue',1,'Bonjour,\r\npourriez vous poster les logs associés.\r\n\r\ncordialement\r\nMichel Condemine\r\n','2022-07-13 16:42:10',0),(2300,879,'Issue',545,'Bonjour,\r\n\r\nCi-joint les fichiers de logs associés.\r\n\r\nCordialement,\r\nEquipe Inetum ','2022-07-13 16:56:40',0),(2301,879,'Issue',1,'Perte du Read et de l\'HistoryRead en même temps. ==>CSessionServer::AsyncRequestThread deadlock','2022-07-19 14:57:54',0),(2302,864,'Issue',1,'Bonjour,\r\nla nouvelle version de l\'OOUAConfigManager trouve encore 5 erreurs dans la configuration de la version 1.0.8 déployée sur site :\r\n!clipboard-202207211445-zkfym.png!\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-07-21 14:45:34',0),(2303,883,'Issue',1,'Bonjour,\r\nj\'ai lancé une dizaine de fois votre configuration et le serveur n\'a jamais été bloqué. Dans tous les cas je peux l\'arrêter (press Q)\r\nCependant j\'obtiens des messages différents dans l\'invite de commande qui \"semble\" indiquer que le VpiLine a rencontré une situation ne lui permettant d\'afficher de message.\r\nCela m\'amène à quelques questions :\r\n# Quelle fonction de parsing avez vous implémenté dans le VpiLine ?\r\n# Pourquoi incriminer le serveur pour le \"non\" chargement du VpiLine. N\'avez vous pas de trace dans le LOG du serveur qui indique son chargement ?\r\n\r\nCordialement\r\nMichel Condemine','2022-07-22 09:45:50',0),(2304,883,'Issue',1,'Bonjour,\r\naprès une investigation plus détaillé le serveur est bien opérationnel mais le VpiLine n\'a pas été initialisé.\r\nLe VpiLine n\'existe pas encore quand le serveur initialise les Vpis. Le VpiLine prend trop de temps pour parser ses tag.\r\nJ\'ai noté que vous initialisé des variables depuis le NodeSet. \r\ncela ajoute sans doute au temps l\'initialisation. \r\nJ\'ai fait une modification dans le nouvelle séquence d\'initialisation pour prendre en compte le comportement du VpiLine.\r\nJe vous livre des binaire IPV6 debug dans la matinée.\r\n\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-07-22 10:39:30',0),(2305,883,'Issue',1,'Les binaires sont ici : http://www.openopcua.org/redmine/attachments/download/3241/Livraison%20Binaires%20Debug-IPV6%20-%2022-07-2022_v1.0.7.4.zip','2022-07-22 10:42:02',0),(2306,873,'Issue',1,'Done','2022-07-22 14:17:01',0),(2307,873,'Issue',1,'','2022-07-22 14:17:26',0),(2308,879,'Issue',1,'Ci-dessous le message de Khaled :\r\n<pre>\r\nBonjour M Condemine,\r\n\r\nJ’ai laissé tourner le serveur pendant 2h30 avec une lecture chaque seconde via UaExpert. Le serveur n’a pas freezé. \r\nPar contre les logs serveur indiquent des erreurs je ne sais pas si c’est important ou pas. Si vous pouvez jeter un œil, même la console du serveur affiche des message j’ai pris une capture. Vous trouvez tous en pièces jointes.\r\n</pre>\r\n','2022-07-23 17:01:21',0),(2309,884,'Issue',1,'Bonjour,\r\nje ne suis pas certain de comprendre votre problème.\r\n* Est ce que vous souhaitez lire un mot dans l\'automate ?\r\n* Est ce que les 16bits d\'alarme sont contigu ?\r\n* Est ce des bits disparate dans le PLC ?\r\n\r\nCordialement\r\nMichel Condemine','2022-07-26 16:11:07',0),(2310,884,'Issue',565,'Je vais essayer de préciser en répondant à vos questions.\r\n\r\nOn lit dans l\'automate S7-1500 en OPC des bits d\'alarme, des valeurs booléennes, qui ne sont pas des mots, et qui sont contenus dans le même DB mais pas forcément contigus.\r\n \r\nL\'objectif serait d\'avoir en sortie du serveur OPC un mot Int16, contenant les 16bits d\'alarme concaténés en choisissant leur place dans le mot, qui sera transféré à notre logiciel de supervision via un VPI Modbus. Le logiciel de supervision permet ensuite de traiter la valeur en Int16 pour retrouver les différentes alarmes.\r\n\r\nJe vous joins en capture d\'écran le résultat dans notre outil de supervision, qui décompose l\'entier en une suite binaire.\r\n\r\nEst-ce que ce genre de chose est possible ?\r\n\r\nCordialement,\r\nValentin DUFIEF\r\n\r\n','2022-07-26 17:00:50',0),(2311,884,'Issue',1,'Bonjour,\r\nje comprends. Vous avez deux options :.\r\n* Préparer vos mots de 16bits dans l\'automate. Puis lire ce mot avec le VpiS7\r\n* Lire les bits individuellement puis les concaténer, dans le serveur, en utilisant un script LUA.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-26 17:13:13',0),(2312,882,'Issue',447,'Bonjour,\r\n\r\nJ\'ai monté la maquette à l\'ATP reproduisant le problème de non écriture du Ack avec la version des DLL identique à celle en PROD (ligne Stator)\r\nJ\'ai monté une nouvelle maquette (toujours à l\'ATP) avec les nouvelles DLL VpiS7 et VpiLine :\r\n* Il n\'y a plus le problème sur l\'écriture du Ack\r\n* En revanche la gestion du caractère de fin 0 ou 13, nous crée un soucis et donc nous ne pouvons pas déployer en PROD :\r\nLe soucis est que le dernier caractère du tableau est supprimé mais lorsque nous ajoutons un caractère de plus dans la balise NbElement, il ressort un caractère de trop. j\'ai bien conscience en l\'écrivant que ce n\'est pas logique, mais je n\'arrive pas à le faire fonctionner.\r\nMichel Etes-vous disponible pour faire un call avec partage d\'écran pour vous montrer le problème?','2022-07-27 10:20:38',0),(2313,883,'Issue',432,'Bonjour M. Condemine, \r\n\r\nMerci beaucoup pour votre analyse et temps. \r\nNous avons testé ces binaires, et le problème de chargement du VpiLine n\'est plus d\'actualité. On vous tiens au courant de toute évolution de cette situation\r\n\r\nPour répondre à certaines de vos questions : \r\n- Pourquoi incriminer le serveur pour le \"non\" chargement du VpiLine. N\'avez vous pas de trace dans le LOG du serveur qui indique son chargement ?\r\n\r\nC\'était bien l\'absence des messages dans les logs serveur qui nous menais à cette hypothèse. \r\n\r\n- Quelle fonction de parsing avez vous implémenté dans le VpiLine ?\r\n\r\nNous utilisons le VpiParseAddIdEx et VpiParseAddId (on s\'était entendu d\'implémenter le VpiParseAddExs dans un futur proche)\r\n\r\n\r\n\r\n\r\nQue voulez vous dire par \"vous initialisez des variables depuis le NodeSet\" ? Les valeurs par défaut dans les fichiers d\'instances? On en a normalement très peu (3), je ferai une passe dessus. Pour ma compréhension, ça impacte le démarrage du VPI ou bien du serveur? \r\n \r\n*Note: Pourriez vous svp nous faire une livraison IPV4 (les automates eMotors n\'ont que des interfaces IPV4, et sans livraison IPV4, la connexion LM-automates ne sera pas possible)\r\n*\r\n','2022-07-27 11:27:23',0),(2314,882,'Issue',1,'Bonjour,\r\nla seule modification que j\'ai réalisé dans la dernière version du VpiS7 concerne un message de trace dans le VpiWrite.\r\nCette modification ne peut en aucun cas avoir réglé le problème de l\'ACK.\r\n\r\nJe suis dispo ce matin pour un partage d\'écran.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-28 08:32:32',0),(2315,883,'Issue',1,'Bonjour,\r\nC\'est donc bien le temps de chargement du VpiLine qui posait problème.\r\nComme indiqué j\'ai adapté le serveur pour qu\'il prenne en compte ce type de situation.\r\nL\'ajout d\'un VpiParseAddExs dans le contrat serveur/Vpis aurait aussi été une solution.\r\nJe garde à l\'esprit cette évolution qui ajouterai un 4ème fonction de parsing.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-28 08:36:36',0),(2316,879,'Issue',1,'Bonjour,\r\nou en sommes nous avec la dernière version ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-07-28 08:37:37',0),(2317,883,'Issue',432,'N\'oubliez svp pas de ne effectuer une livraison IPV4 avec les modules nécessaires pour eMotors. Nous effectuerons bientôt une livraison \r\n\r\nMerci d\'avance,\r\n\r\nMichael Ejigu','2022-07-28 08:56:07',0),(2318,883,'Issue',1,'Bonjour,\r\navant cette livraison il faut statuer sur : \r\n* VpiS7, caractère de fin (Échange Lionel)\r\n* Stabilité fonction HA (Attente retour Khaled.\r\n* Comportement AC avec Genesis (Situation bloquée)\r\n\r\nCordialement\r\nMichel Condemine','2022-07-28 09:04:19',0),(2319,879,'Issue',545,'Bonjour M. Condemine,\r\n \r\nLe comportement est toujours le même au bout de 60 minutes le display Genesis Freeze, pas de Freeze coté serveur. En rafraichissant la page Genesis on récupère de nouveau les valeurs des nœuds historisées.\r\nLors du dernier mail vous avez indiqué que vous nous fournissez une nouvelle livraison de binaires. \r\nActuellement on est à la version : Binaires Debug-IPV6 - 25-07-2022_v1.0.7.5.\r\n \r\nQuand le display genesis Freeze dans les logs de serveur on a les messages suivant :\r\n \r\n2022-07-26T09:56:10.587Z SERVER_ERROR CSessionServer::pHistoryReadMessage>Could not send response to client. Status 0x80AB0000!\r\n \r\n2022-07-26T09:57:05.613Z SERVER_ERROR CSessionServer::pHistoryReadMessage>Could not send response to client. Status 0x80AB0000!\r\n \r\n2022-07-26T09:57:10.546Z SERVER_ERROR CSessionServer::pHistoryReadMessage>Could not send response to client. Status 0x80AB0000!--- freeze \r\n \r\n rafraichissement du display Genesis retour au Fonctionnement normal\r\n\r\n2022-07-26T10:57:48.622Z SERVER_ERROR CSessionServer::pHistoryReadMessage>Could not send response to client. Status 0x80AB0000!--- freeze\r\n \r\n2022-07-26T10:57:53.649Z SERVER_ERROR CSessionServer::pHistoryReadMessage>Could not send response to client. Status 0x80AB0000!\r\n \r\n2022-07-26T10:58:48.656Z SERVER_ERROR CSessionServer::pHistoryReadMessage>Could not send response to client. Status 0x80AB0000!\r\n \r\n \r\n \r\nCordialement,\r\nKhaled NOOMANI\r\n','2022-07-28 09:30:33',0),(2320,884,'Issue',565,'Bonjour,\r\n\r\nJe vous remercie pour cette réponse.\r\n\r\nPour un script LUA, pourriez-vous m\'indiquer la syntaxe à utiliser pour appeler un node/une variable du serveur ?\r\n\r\nMerci à vous,\r\n\r\nValentin DUFIEF','2022-07-28 10:11:01',0),(2321,879,'Issue',432,'Rebonjour M. Condemine, \r\n\r\nPour clarifier le précédent message, le comportement n\'est pas le même qu\'auparavant car plus de freeze du serveur et un refresh de l\'IHM permet de revenir a une situation stable\r\n\r\nNous effectuons 3 tests et nous vous ferons un retour. \r\n\r\n\r\n1) Iconics a 2 mode pour visualiser une IHM. Le mode client lourd et le mode HTML. Nous faisons un test en mode HTML pour voir si on a le même comportement (on a déjà remarqué des divergences de comportement)\r\n\r\n2) Lorsque l\'IHM freeze, nous lancerons une trace Wireshark afin de voir ce qui se passe en background afin de répondre aux questions suivantes: Est ce que il y a des requêtes HistoryRead ? Est-ce que le serveur y répond en indiquant aucune donnée ou bien est-ce que il y a absence de réponse quand plus de donnée en BDD? \r\n\r\n3) Nous allons mettre en place le subsystem de simulation OOUA afin d\'afficher une courbe qui bouge et voir si nous avons le même phénomène. Je pars maintenant d\'une ancienne conf pour essayer de mettre en place cette simulation. \r\nSi vous avez plus récent je suis preneur. \r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-07-28 11:43:23',0),(2322,879,'Issue',545,'Bonjour M Condemine,\r\n\r\nPour le test HA en mode html (mode qui sera utilisé par EMotors). Le serveur crash instantanément.\r\nVeuillez trouver ci-joint un zip contenant les logs du serveur, les binaires utilisés et un procdump. \r\n\r\nCordialement,\r\nKhaled NOOMANI','2022-07-28 12:21:44',0),(2323,885,'Issue',1,'Bonjour,\r\nje ne vois pas pourquoi votre client vous parle d\'un correctif C#. \r\nLe serveur OpenOpcUa est écrit en C/C++ et n\'est pas concerné par cette remarques\r\n\r\nDe plus je ne vois pas de question ici :)\r\n\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-07-28 18:05:10',0),(2324,853,'Issue',553,'Bonjour.\r\n\r\nJ\'ai profité de mon dernier message pour vous remonter les infos de nos tests de démarrage en tant que service.\r\nMalheureusement, cela ne fonctionne toujours pas, j\'ai toujours le même message d\'erreur. J\'ai bien modifié le projet afin qu\'il soit le plus proche du votre.\r\nSerait-il imaginable que l\'on fasse une prise en main à distance fin août pour que vous puissiez jeter un oeil sur notre installation et vérifier que tout est OK ?\r\n\r\nMerci d\'avance.','2022-07-28 18:13:38',0),(2325,853,'Issue',1,'Bonjour,\r\nfin aout, aucun problème.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-28 19:18:52',0),(2326,885,'Issue',553,'Bonjour.\r\n\r\nBien d\'accord avec vous, mais j\'avoue ne pas avoir compris la problématique.\r\nA priori si cela ne vous parle pas plus que ça, tant mieux. C\'est bon signe alors.\r\nOn peut clôturer ce ticket à ce stade.\r\n\r\nMerci pour votre réponse.\r\n\r\nOlivier PREVOT. ','2022-07-29 10:51:38',0),(2327,853,'Issue',553,'Super, merci, je reviens vers vous fin août.\r\n\r\nOlivier PREVOT.','2022-07-29 10:52:21',0),(2328,885,'Issue',1,'','2022-07-29 11:01:24',0),(2329,879,'Issue',545,'Bonjour M Condemine,\r\n\r\n\r\nVeuillez trouver ci-joint un zip contenant les logs du serveur et un procdump.\r\nTest effectué avec les binaires Debug-IPV6 - 28-07-2022_v1.0.7.5\r\n\r\nCordialement,\r\nKhaled NOOMANI','2022-07-29 11:50:52',0),(2330,888,'Issue',553,'','2022-07-29 14:33:23',0),(2331,853,'Issue',553,'Ca marche ! Encore merci et désolé pour la simplicité de la solution que j\'aurais du trouvé tout seul.','2022-07-29 14:58:07',0),(2332,853,'Issue',1,'Pas problème.\r\nLe support est là pour ça.\r\n\r\nBonnes vacances.\r\nMichel Condemine\r\n','2022-07-29 15:06:51',0),(2333,879,'Issue',1,'Bonjour,\r\nPourriez vous tester rapidement cette version du serveur ?\r\nhttp://www.openopcua.org/redmine/attachments/download/3263/Livraison%20Binaires%20Debug-IPV6%20-%2029-07-2022_v1.0.7.5.zip\r\n\r\nCordialement\r\nMichel Condemine','2022-07-29 17:02:00',0),(2334,879,'Issue',545,'Bonjour M Condemine,\r\n\r\nje viens de lancer la maquette HA avec les nouveaux binaires que vous venez de poster Debug-IPV6%20-%2029-07-2022_v1.0.7.5.zip. \r\nCela fait 15 minutes que le serveur tourne, il n y a pas de crash en mode Html comme avant et on récupères bien les valeurs des nœuds historisés.\r\n \r\n\r\nCordialement,\r\nKhaled NOOMANI','2022-07-29 17:22:09',0),(2335,879,'Issue',1,'Bonjour,\r\nil me semble que cela fonctionnait déjà sans crash avec le client léger.\r\nPourriez vous tester avec le client lourd.\r\n\r\nCordialement\r\nMichel Condemine','2022-07-29 17:27:26',0),(2336,879,'Issue',545,'Re-bonjour,\r\n\r\nEn client lourd ca fonctionne sans crash avant ( avec les anciens binaires) juste on a le problème de freeze coté IHM, par contre en client léger ca crash instantanément.\r\nAvec les nouveaux binaires plus du crash en client léger. J\'ai lancé en parallèle un client lourd, ca fonctionne on récupère bien les valeurs cela fait 30 minutes que ca tourne. A laisser tourner et voir le résultat.\r\n\r\nCordialement,\r\nkhaled NOOMANI','2022-07-29 17:38:56',0),(2337,822,'Issue',1,'Corrigé dans la version 1.0.2.6 du VpiS7','2022-08-01 10:38:57',0),(2338,822,'Issue',432,'Bonjour M. Condemine \r\n\r\nPour notre information, quelle est la modification effectuée ? La conversion de Int16 ou Bool vers Enum ? \r\n\r\nCe ticket et les questions listés concernait en fait pas uniquement le VpiS7 mais tous les Vpi potentiellement\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\nInetum\r\n\r\n','2022-08-01 11:52:45',0),(2339,822,'Issue',1,'Bonjour,\r\nIl y a un changelog dans le ZIP.\r\nJe vos invite a le consulter\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-08-01 11:57:44',0),(2340,890,'Issue',1,'Bonjour,\r\npourquoi est ce que le VpiLine s\'arrête à 16:33:54 ?\r\nPourquoi le VpiValueInit n\'est pas chargé ?\r\nUtilisez vous les derniers binaires livrés ?\r\n\r\nCordialement\r\nMichel Condemine','2022-08-01 19:25:47',0),(2341,890,'Issue',432,'Bonjour, \r\n\r\nLe VpiLine s\'arrête à 16:33:54 car j\'ai arrêté le serveur.\r\nSur la deuxième capture d\'écran le VpiValuesInit n\'est pas chargé car le subsystem n\'est pas activé. \r\nNous utilisons les binaires Livraison Binaires Debug-IPV4 - 28-07-2022_v1.0.7.5.zip \r\nAurez vous une disponibilité pour en discuter/déboguer? \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\nInetum\r\n','2022-08-02 09:06:20',0),(2342,851,'Issue',1,'Bonjour,\r\nje vois ce incident toujours ouvert.\r\nest il toujours actif ?\r\n@Khaled :Pourriez vous préciser le problème de l\'imerysId et LocationInFactory\r\n\r\nCordialement\r\nMichel Condemine','2022-08-02 09:29:12',0),(2343,890,'Issue',1,'Bonjour,\r\nVotre VpiLine démarrait correctement avec le serveur 1.0.7.4 et 1.0.7.5. n\'est-ce pas ?\r\nVous n\'avez cependant jamais validé ma livraison du 30 juin ticket 865.\r\nJe suis donc dans le flou.\r\n\r\non peut en parler a 14h00.\r\n\r\nCordialement\r\nMichel Condemine','2022-08-02 09:29:39',0),(2344,865,'Issue',432,'Bonjour, \r\n\r\nNos excuses pour le retard sur le retour. Le serveur démarrait bien avec le VpiLine (pas de tests effectué avec VpiValuesInit - j\'en fait et vous fait un retour sur le ticket 890)\r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-08-02 09:44:55',0),(2345,890,'Issue',432,'Le VpiLine démarre bien tout seul avec les versions 1.0.7.4 et 1.0.7.5 \r\nJe fais le test avec le package 1.0.7.4 VpiLine et VpiValues activés et vous tiens au courant.\r\nJ\'envoie une invitation pour 14h\r\n\r\nCordialement, \r\n\r\nMichael ','2022-08-02 09:48:19',0),(2346,890,'Issue',432,'Nous avons malheureusement le même comportement avec le package 1.0.7.4 livré sous Livraison Binaires Debug-IPV4 - 30-6-2022_v1.0.7.4\r\n\r\nCordialement, \r\nMichael ','2022-08-02 10:01:14',0),(2347,851,'Issue',545,'Bonjour M Condemine,\r\n\r\nCe Ticket a été créé lors de la préparation de la démo Siome pour Imerys.\r\n\r\nCordialement,\r\nkhaled NOOMANI\r\n','2022-08-02 15:25:32',0),(2348,851,'Issue',1,'','2022-08-02 16:39:57',0),(2349,890,'Issue',1,'Bonjour,\r\nj\'ai corrigé le problème, amélioré la séquence de démarrage et les traces.\r\nJ\'ai constaté que le VpiLine stop le serveur s\'il n\'arrive pas à se connecter à sa base.\r\nMerci de corriger se comportement de l\'une des manières suivantes :\r\n# En ajoutant un message claire indiquant, dans le ficher de LOG, que le serveur a été arrêté à l\'initiative du Vpi\r\n# En supprimant l\'arrêt à l\'initiative du Vpi.\r\n\r\nJ\'attends votre version du Vpi\r\n\r\nCordialement\r\nMichel Condemine','2022-08-02 21:09:06',0),(2350,890,'Issue',432,'Bonjour, \r\n\r\nSuper et merci pour votre temps\r\nLa fermeture du serveur était une demande de eMotors, si au démarrage la BDD n\'est pas accessible. \r\nPour désactiver la traçabilité et permettre le démarrage du serveur, nous mettons à dispositions l\'option de l\'activer ou non dans le .dat du VpiLine\r\n\r\nDans les cas où la Traçabilité est activée mais que la BDD n\'est pas disponible au démarrage, nous mettons normalement un message dans le fichier de log du VpiLine du type \"Could not connect. Make sure DB is accessible and that user has rights on database\". Si ce mécanisme (message dans le log) a bien lieu dans le scénario rencontré, nous pouvons mettre un message plus détaillé du type \"VpiLine has prompted server to stop, please restart after correcting access isssues\". \r\nAvez vous bien le premier message indiqué? \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-08-03 08:47:30',0),(2351,890,'Issue',1,'Bonjour,\r\nAprès discussion avec Lionel. Il semble que ce comportement soit inutile. Merci de vérifier directement avec lui.\r\nDans tous les cas le message de log doit indiquer que le serveur a arrêté a la demande du VpiLine.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-08-03 09:28:27',0),(2352,879,'Issue',545,'Bonjour,\r\n\r\n\r\n\r\nLes deux modifications effectuée fonctionne bien et plus aucun freeze de client OPC UA ni du serveur est présent\r\n\r\nNous remarquons cependant une régression importante depuis la livraison du Binaires Debug-IPV6 - 29-07-2022_v1.0.7.5 concernant le HA ( même phénomène avec la livraison d aujourd\'hui)\r\n\r\nLorsque la réponse est constituée de plusieurs valeurs, on reçoit bien une réponse avec le bon nombre de DataValue mais incomplète. Uniquement la première DataValue est complète, les autres n\'ont ni Variant (valeur) ni timestamp\r\n\r\nCi dessous le résultat UaExpert, le résultat de la requête faite avec PGAdmin, une trace Wireshark ainsi qu\'une maquette permettant de reproduire le problème.\r\n\r\nNous n\'avons pas constaté de messages dans les logs (nous les avons mis en mode Debug) .\r\n\r\nCordialement,\r\nEquipe Inetum','2022-08-03 14:19:49',0),(2353,879,'Issue',1,'Bonjour,\r\naprès correction de votre maquette afin quelle soit utilisable j\'ai pu reproduire et corriger le problème.\r\nIl y avait une très petite \"coquille\" dans la préparation de la réponse.\r\nC\'est corrigé. \r\nles binaires sont ici : http://www.openopcua.org/redmine/attachments/download/3282/Livraison%20Binaires%20Debug-IPV4%20-%203-08-2022_v1.0.7.7.zip\r\nMerci de me faire un retour avant les 5 prochains jours.\r\n\r\nMichel Condemine\r\n\r\n','2022-08-03 14:50:33',0),(2354,879,'Issue',1,'Closed','2022-08-03 14:50:55',0),(2355,890,'Issue',432,'Nous confirmons le bon démarrage des Vpi\r\nMerci\r\n\r\nMichael Ejigu','2022-08-03 15:18:15',0),(2356,890,'Issue',1,'Merci pour ce retour.\r\nMichel Condemine','2022-08-03 15:31:48',0),(2357,879,'Issue',545,'Bonjour M Condemine,\r\n\r\nmerci le problème est corrigé.\r\n\r\nCordialement,\r\nEquipe Inetum','2022-08-03 17:16:16',0),(2358,791,'Issue',1,'Bonjour,\r\nsans réponse depuis deux mois je ferme cet incident.\r\nMichel Condemine','2022-08-03 17:18:27',0),(2359,891,'Issue',432,'Sur la conf new, sur 1h30 d\'expériences, le PM a refusé de se connecter 4 fois (en moyenne au 6ème redémarrage du LM) \r\n\r\nSur la conf old, sur 1h30 d\'expériences, pas de crash constaté ni de blocage. \r\nOn met en place la conf Very Old demain\r\nOn vous tiens au courant\r\nJe vous ré-assigne le ticket le temps que vous nous faites le retour sur vos tests avec les nouveaux binaires (comme mentionné dans les news)\r\n\r\nMerci encore\r\nCordialement,\r\n\r\nMichael','2022-08-04 18:06:28',0),(2360,892,'Issue',1,'Hello,\r\nthis is not an urgent issue.\r\nI downgrade it to low priority. I will handle it ASAP.\r\n\r\nRegards\r\nMichel','2022-08-05 10:37:16',0),(2361,891,'Issue',432,'Je fais suite à votre message sur les News (confirmation du bon fonctionnement de la livraison)\r\n\r\n2022-08-04T15:31:45.254Z CLIENT_ERROR Impossible to stop the AutoConnectThread. Timeout 10 sec reached\r\n2022-08-04T15:34:36.146Z CLIENT_ERROR PublishingThread>Shutdown sent to the client host application. InternalServerStatus changed 0x80af0000\r\n2022-08-04T15:34:37.152Z CLIENT_ERROR PublishingThread stopped pSession=000001ABA960F120.\r\n\r\nCe message n\'indique t-il pas un blocage de la situation? Sinon quelle est sa signification? \r\n\r\nCordialement\r\n\r\nMichael','2022-08-05 11:49:43',0),(2362,891,'Issue',1,'Bonjour, \r\nle message n\'indique pas un blocage du serveur ou du Vpi. \r\nIl indique simplement qu\'une thread (AutoConnectThread) a atteint un timeout lors d\'une tentative d\'arrêt.\r\nElle sera donc arrêtée de force.\r\nSi la nouvelle livraison fonctionne correctement je ferme ce ticket.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2022-08-05 13:25:43',0),(2363,891,'Issue',432,'Bonjour, \r\n\r\nPour nous, la nouvelle livraison ne fonctionne pas. \r\nLorsque j\'ai mis dans le commentaire que \"Je fais suite à votre message sur les News (confirmation du bon fonctionnement de la livraison)\", je voulais dire que je rebondis sur votre message ouvous indiquez que d\'après vos tests, c\'est ok. \r\nPour nous, il y a un blocage de la communication et le denier messages dans la lib client est du type indiqué \r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-08-05 13:34:59',0),(2364,891,'Issue',1,'Bonjour,\r\nje réouvre le ticket.\r\nMerci de préciser ce que vous entendez par \"ne fonctionne pas\"\r\n\r\nCordialement\r\nMichel Condemine','2022-08-05 14:40:34',0),(2365,891,'Issue',432,'Merci\r\n\r\nPar ne fonctionne pas nous voulons dire que au bout de certains redémarrages du serveur graine, le serveur agrégateur n\'arrive plus à se reconnecter. Lorsque ce cas arrive nous avons systématiquement en dernier message (à l\'heure du premier redémarrage serveur graine pour lequel nous constatons que plus de reconneexion) au niveau de la lib client : \r\n\r\nImpossible to stop the AutoConnectThread. Timeout 10 sec reached\r\n\r\nDes vérifications certes non exhaustifs que j\'ai fait il y a une relation 1 à 1 entre ce message et le blocage de la reconnexion au niveau du PM \r\n\r\nPour info plusieurs tests aussi faits avec les binaires utilisés en production chez eMotors, toujours pas de crash constaté\r\n\r\n\r\n','2022-08-05 14:48:25',0),(2366,822,'Issue',1,'Reste à généraliser la solution appliqué au VpiS7.\r\n\r\n','2022-08-05 15:23:12',0),(2367,893,'Issue',1,'Hello Nandan,\r\nI\'m sorry for the issue you are facing to. Let\'s try to fix or workaround it.\r\ndid you try to select one of the radio button, Export Selected or Export All ?\r\nAre you using the version 0.1.0.2 ?\r\n\r\nRegards\r\nMichel','2022-08-07 21:55:21',0),(2368,887,'Issue',573,'Done V2.1.7','2022-08-08 15:27:18',0),(2369,886,'Issue',573,'fixed in the V2.1.7','2022-08-08 15:48:41',0),(2370,894,'Issue',1,'Hello Nandan, \r\nAs already discuss. Most of you node are declared Read-Only (AccessLevel=1)\r\nSo the client is not allowed to write in it.\r\n\r\nWe need to discuss it in a modelling session.\r\n\r\nRegards\r\nMichel','2022-08-09 09:34:23',0),(2371,895,'Issue',1,'Where do you see an issue here ?\r\n\r\n','2022-08-09 10:26:44',0),(2372,896,'Issue',1,'','2022-08-09 15:32:49',0),(2373,894,'Issue',512,'Michel,\r\n\r\n This issue is regarding the workaround you showed us on how we can edit the Instances nodeset file by adding the access levels. We added the access level for Lixhe/PAPLine1/BS1/RPM attribute. After adding the access level attribute we were still not able to edit the value in RPM attribute using UA expert.\r\n\r\nSemih, send you the project earlier which you can use to make a quick test. Hope this helps.\r\n\r\n- Sunil','2022-08-09 15:33:10',0),(2374,894,'Issue',1,'Hello,\r\ni did the change on FactoryName \r\nIt appears in UAExpert as currentRead.\r\n!clipboard-202208091630-kzt9x.png!\r\nIt\'s now \r\n!clipboard-202208091630-qcupj.png!\r\nWith the new definition\r\n!clipboard-202208091631-wxdus.png!\r\n\r\nCan you just try with this one ?\r\n\r\nRegards\r\nMichel','2022-08-09 16:31:53',0),(2375,895,'Issue',1,'Hello,\r\nhere is a configuration 100% fixed on the NodeSet and SubSystem POV.\r\nThere is remaining issues :\r\n<pre>\r\n2022-08-10T17:40:19.652Z SERVER_ERROR InvertNotForwardReferences>Undefined Inverse [ns=11;i=6581]->ns=11;i=6586 in VariableList\r\n2022-08-10T17:40:19.661Z SERVER_ERROR InvertNotForwardReferences>Undefined Inverse [ns=12;i=7337]->ns=12;i=7407 in VariableList\r\n2022-08-10T17:40:19.662Z SERVER_ERROR InvertNotForwardReferences>Undefined Inverse [ns=12;i=7337]->ns=12;i=7406 in VariableList\r\n2022-08-10T17:40:19.662Z SERVER_ERROR InvertNotForwardReferences>Undefined Inverse [ns=12;i=7337]->ns=12;i=7405 in VariableList\r\n2022-08-10T17:40:19.662Z SERVER_ERROR InvertNotForwardReferences>Undefined Inverse [ns=12;i=7337]->ns=12;i=7404 in VariableList\r\n2022-08-10T17:40:19.663Z SERVER_ERROR InvertNotForwardReferences>Undefined Inverse [ns=12;i=7337]->ns=12;i=7403 in VariableList\r\n2022-08-10T17:40:19.663Z SERVER_ERROR InvertNotForwardReferences>Undefined Inverse [ns=12;i=7337]->ns=12;i=7402 in VariableList\r\n2022-08-10T17:40:19.663Z SERVER_ERROR InvertNotForwardReferences>Undefined Inverse [ns=12;i=7337]->ns=12;i=7401 in VariableList\r\n</pre>\r\n\r\n Let investigate it on friday\r\n\r\nRegards\r\n\r\nMichel','2022-08-10 19:46:53',0),(2376,897,'Issue',1,'Instanciation is made properly but value is not seem correctly in the client.\r\nUDT Issue or configuration issue.\r\n','2022-08-16 15:50:22',0),(2377,898,'Issue',1,'Bonjour,\r\nje n\'aurais pas de disponibilité avant jeudi.\r\nPourriez vous me préciser :\r\n# La taille à partir de laquelle vous rencontrez le problème.\r\n# Le type de la donnée\r\n# Est ce que le problème n\'apparait pas quand agrégateur et graine sont sur la même machine ?\r\n\r\nDans tous les cas je ne pourrai regarder ce problème avant la semaine prochaine.\r\n\r\nCordialement\r\nMichel Condemine','2022-08-16 20:52:20',0),(2378,899,'Issue',1,'Hello,\r\nGood news.\r\nUsing the proper version of NodeSet of types the server is now working correctly.\r\nThe error came from SIOME. It corrupt the existing NodeSet of types.\r\n\r\nThe configuration is now ready to be tested.\r\n\r\nRegards\r\nMichel\r\n','2022-08-17 17:28:10',0),(2379,898,'Issue',432,'Re bonjour, \r\n\r\nJ\'ai effectué la liste est nous n\'étions vraiment pas loin de la limite\r\n\r\nLa limite est 2*65512. Lorsque sur le réseau nous dépassons cette taille, il semble yavoir problème (traces côté PM effectuées)\r\n\r\n\r\nJ\'ai trouvé une différence aux niveaux des traces Wireshark dans les cas où on est en local et dans les cas où on est à distance (surement du aux paramètres réseaux)\r\n\r\n\r\nen local:\r\n\r\n!clipboard-202208171723-zh0il.png!\r\n\r\n\r\nà distance (quand ça marche)\r\n\r\n!clipboard-202208171731-ibifz.png!\r\n\r\nà distance (quand ça ne marche pas)\r\n\r\n!clipboard-202208171731-w4gfe.png!\r\n\r\n\r\nJe pense que sur l\'interface localhost la limite de taille d\'un paquet TCP doit être de 65512 et 1360 sur l\'interface réseau sortante.\r\n\r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu \r\n\r\n','2022-08-17 17:52:58',0),(2380,898,'Issue',1,'Bonjour,\r\nje ne sais pas ce que l\'on peu faire avec ces résultats.\r\nVous ne semblez pas avoir réalisé les actions demandés :\r\n# Modifier les paramètres de la carte réseau afin d\'observer l\'impact sur les échanges\r\n# Chercher la limite en terme de Recipe, 6, 20 ?\r\n\r\nPar ailleurs 1360 n\'est pas une valeur qui existe dans le code d\'OpenOpcUa.\r\n\r\nCe problème est sans doute un problème lié a la CONFIGURATION DE LA COUCHE RESEAU\r\n\r\nCordialement\r\nMichel Condemine','2022-08-18 09:51:50',0),(2381,898,'Issue',432,'La taille de 1360 est surement du à un problème de configuration de la couche réseau. Mais ça ne semble pas être systématiquement problématique (fonctionne en dessous de 2 paquets OPC UA qui peuvent être dispatchés sur 49 paquets TCP chacun).\r\nJe ferai des tests en me focalisant sur la configuration réseau\r\n\r\nLa taille de 2 paquets OPC UA ne semble pas non plus systématiquement problématique (car fonctionne en local) \r\n\r\nLa limite en terme de Recipes ne va pas être une information très pertinente car elle dépend de la taille de la recette (qui en terme de fichiers XML peut être de 2 Ko à 40 Ko) \r\nAvec 19 recettes ça passe toujours, la limite avec les recettes que j\'ai semble donc de 19 recettes. \r\n\r\nEn parallèle ou par la suite, que préférez vous entre : \r\n\r\n- une maquette simple qui reproduit le problème (vous aurez peut être besoin d\'une maquette distante si je n\'arrive pas à reproduire le problème en local en jouant avec le conf réseau)\r\n- effectuer une session de débogage avec le code OOUA (Stack) sur ma machine afin de confirmer que la stack envoi bien le paquet dans son entièreté (malgré les traces Wireshark faites côté serveur agrégateur).\r\n\r\nCordialement, \r\n\r\nMichael','2022-08-18 10:13:06',0),(2382,898,'Issue',1,'Pourriez vous changer le niveau de trace ?\r\nIl s\'agirait d\'activer le trace sur la stack au moment ou le problème se produit.\r\nUtilisez STACK_ERROR et/ou STACK_DEBUG\r\n\r\nCordialement\r\nMichel Condemine','2022-08-18 10:29:27',0),(2383,898,'Issue',432,'au lieu de SERVER_ERROR je mets STACK_DEBUG dans le oouaprj c\'est ça? \r\n\r\nCordialement\r\n\r\nMichael','2022-08-18 10:32:53',0),(2384,898,'Issue',1,'Commencez par STACK_ERROR.\r\ncf manuel de l\'utilisateur','2022-08-18 10:37:36',0),(2385,898,'Issue',432,'Ci joint le fichier de log obtenu\r\n\r\nAu moment de l\'émission du paquet (14:13:51,39; 12:13,51,39 UTC) on voit le message suivant qui n\'est pas répété ailleurs dans le fichier de log : \r\n\r\n2022-08-18T12:13:51.440Z STACK_ERROR OpcUa_P_Socket_Write: unregister for write!\r\n\r\n!clipboard-202208181418-lehyy.png!\r\n\r\nCordialement, \r\n\r\nMichael\r\n','2022-08-18 14:19:52',0),(2386,898,'Issue',1,'Pourriez vous faire un test avec cette version de la stack et me renvoyer le LOG.','2022-08-18 15:55:53',0),(2387,898,'Issue',432,'Avec cette version, la connexion UaClient PM - LM n\'aboutit pas\r\nEst-ce bien une version IPV4?\r\n\r\nCordialement, \r\n\r\nMichael','2022-08-18 16:51:30',0),(2388,898,'Issue',1,'Il s\'agit bien sur d\'une version IPV6','2022-08-18 17:01:36',0),(2389,898,'Issue',432,'IPV4 ou IPV6 ? Nous sommes en IPV6 sur la conf eMotors\r\n\r\nCordialement, \r\n\r\nMichael','2022-08-18 17:02:48',0),(2390,898,'Issue',432,'Pardon, * nous sommes en IPV4 sur le conf eMotors. \r\n\r\nEst-ce bien une version IPC4 que vous avez posté? ','2022-08-18 17:07:09',0),(2391,898,'Issue',1,'Comme indiqué il s\'agit d\'une IPV6\r\n','2022-08-18 17:12:01',0),(2392,898,'Issue',432,'Pourriez vous svp nous fournir la version IPV4? \r\n','2022-08-18 17:12:52',0),(2393,898,'Issue',1,'IPV4','2022-08-18 17:21:52',0),(2394,898,'Issue',432,'En Pj le fichier de log obbtenu\r\n\r\n2022-08-18T15:26:22.322Z STACK_ERROR OpcUa_SecureStream_Flush: Buffer not completely written; storing buffer 0xB7FF8D90!\r\n\r\n\r\n!clipboard-202208181728-vq6ib.png!\r\n\r\nCordialement, \r\n\r\nMichael','2022-08-18 17:28:48',0),(2395,898,'Issue',1,'Bonjour,\r\nIl n\'y a rien de très interessant dans cette trace.\r\nCordialement\r\nMichel Condemine','2022-08-18 17:34:06',0),(2396,898,'Issue',432,'Bonjour, \r\n\r\nVoici certains tests faits\r\n\r\nEntre mon PC et une VM (même comportement que chez eMotors)\r\nEntre deux VM Inetum c\'est OKAY (à travers un réseau - donc effectivement pas un problème dû à destinataire local ou distant)\r\nPour ressembler à la conf sur mon PC j\'ai baissé sur la VM qui joue le rôle de PM le MTU (qui fait en sorte que les paquets TCP émis sont les mêmes que sur mon PC) et ça passe toujours\r\n\r\nJe vous propose de passer du temps cette après midi à regarder les traces Wireshark, il y a quand même quelque chose de perturbant. Je pense également qu\'une session de debug (en s\'attachant au processus) peux avancer à éliminer toute pistes que c\'est le serveur qui réagit spécialement sur une certaine configuration réseau précise et que c\'est bien un élément extérieur qui fait disparaitre les paquets manquants\r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n','2022-08-19 11:11:30',0),(2397,898,'Issue',1,'Bonjour,\r\nune session de debug n\'apportera rien.\r\nLa stack OOUA n\'est pas en cause dans ce problème. Au mieux pourrait on imaginer de changer la taille de chunk.\r\n\r\nCordialement\r\nMichel Condemine','2022-08-19 12:01:06',0),(2398,898,'Issue',432,'Suite à nos tests en call hebdo, \r\n\r\nCi-dessous la capture montrant l\'heure où l\'échec d\'écriture a lieu \r\n\r\n!clipboard-202208191646-hi4st.png!\r\n\r\n\r\nCi-joint les fichiers de log stack debug, lib client et VpiUaClient \r\n\r\n\r\nOn vous tiens informé si on a de nouvelles pistes/résultats sur des tests\r\n\r\nCordialement ,\r\n\r\nL\'équipe Inetum','2022-08-19 16:57:15',0),(2399,898,'Issue',432,'Bonjour \r\n\r\nPour info: \r\n\r\n- le scénario de test en back office entre 2 VMs (qui fonctionne) est fait sur 2 VMs hostées sur deux serveurs physiquement séparés\r\n\r\n- nous avons demandé à eMotors d\'effectuer des traces Wireshark du problème en production afin de confirmer qu\'il s\'agit du même problème produit sur mon PC \r\n\r\nAvez vous pu avancer de votre côté sur l\'exploitation des logs de la stack/ investigations? \r\n\r\nCordialement,\r\n\r\nL\'équipe Inetum','2022-08-22 15:43:56',0),(2400,898,'Issue',1,'Bonjour,\r\nje ne dispose d\'aucune information qui me permettrait d\'avancer.\r\nLes log et traces WS ne fournissent aucune information pertinente. \r\n\r\nCordialement\r\nMichel Condemine','2022-08-22 15:46:53',0),(2401,901,'Issue',573,NULL,'2022-08-25 15:19:25',0),(2402,901,'Issue',510,'State format in Int16\r\n\r\n0 = OFF\r\n1 = ON\r\n4 = DEFAULT\r\n\r\nBut in some PLC\'s, it\'s a booléen with only ON (1) and OFF(0)','2022-08-25 15:39:45',0),(2403,898,'Issue',432,'Bonjour M. Condemine, \r\n\r\nSuite à notre dernier call, nous avons pu effectuer le test sur le scénario suivant qui est proche de chez le client. \r\nUne VM Windows Server\r\nUn PC avec droits administratifs dessus\r\n\r\nNous avons baissé sur les 2 machines les buffers Ethernet aux valeurs minimales autorisées et les échanges fonctionnent toujours. \r\nNous avons testé de placer PM sur VM et LM sur PC et vice versa. \r\nAvec la taille de paquet problématique, les échanges passaient toujours. \r\n\r\nNous sommes disponible cette après-midi jusqu\'à 18h pour si possible discuter de comment procéder et quelles informations transmettre au client. \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n\r\n\r\n','2022-08-25 15:47:40',0),(2404,901,'Issue',573,NULL,'2022-08-25 16:01:50',0),(2405,900,'Issue',573,'','2022-08-25 16:02:17',0),(2406,898,'Issue',1,'Bonjour,\r\nJe suis disponible de 16h15 à 16h45 pour en parler\r\n\r\nCordialement\r\nMichel Condemine','2022-08-25 16:08:57',0),(2407,902,'Issue',1,'Hello Stéphane,\r\nwhere did you try to save the UAExpert configuration.\r\nThe UA project is read/write. You should be able to save in it.\r\n\r\nRegards\r\nMichel','2022-08-29 10:53:44',0),(2408,902,'Issue',510,'I think it\'s because the folder is in read-only and i can\'t change it.\r\n!clipboard-202208291137-ehc7k.png!\r\n','2022-08-29 11:37:14',0),(2409,902,'Issue',1,'Stephane,\r\n<pre>\r\nwhere did you try to save the UAExpert configuration ?\r\n</pre>\r\ncan you please use a read/write folder ?\r\n\r\nRegards\r\nMichel','2022-08-29 11:44:52',0),(2410,902,'Issue',510,'I only want to create folders in the documents tree. And keep the data i drag drop in the visualization box. \r\nTi separate by PLC. ','2022-08-29 12:11:35',0),(2411,902,'Issue',1,'Hello Stephane,\r\njust this meeting : https://meet.google.com/ead-yvoe-qyy?hs=224\r\nWe\'ll try to workaround your problem with UAExpert\r\n\r\nregards\r\nMichel','2022-08-29 13:46:36',0),(2412,902,'Issue',1,'Fixed during the 2pm session.','2022-08-29 15:10:44',0),(2413,908,'Issue',1,'Hello Stephane,\r\nA FolderType is a common object used to describe a containers.\r\nThe FolderType inherit from ObjectType. \r\nSo we use it as a parent for ProductionLineType.\r\nBut this can be change.\r\n\r\nRegards\r\nMichel','2022-08-30 10:19:09',0),(2414,909,'Issue',1,'Bonjour,\r\nquelques questions :\r\n* Pourquoi y a t il un AccessLevel = 15 dans le serveur SODEL ?\r\n* Pourquoi y a t il un subsystem dans le serveur SODEL ?\r\n* Comment est faite la configuration du Vpi UAClient ?\r\n\r\nCordialement\r\nMichel Condemine','2022-09-06 09:49:39',0),(2415,909,'Issue',489,'Bonjour,\r\n\r\n\r\n*Pourquoi y a t il un AccessLevel = 15 dans le serveur SODEL ?\r\n J\'ai pas touché les modification des instances, parce que j\'avais l\'impression qu\'il y a peut-être certain raison en arrière pour pouvoir avoir l\'option de historisation sur ce serveur (SODEL)\r\n*Pourquoi y a t il un subsystem dans le serveur SODEL ?\r\n Apparament, le subsystem est prévu pour faire la liaison entre l\'automate et de seuveur sodel.\r\n*Comment est faite la configuration du Vpi UAClient ?\r\n Vu qu\'on viens de commencer de faire l\'instanciation avec la nouvelle structure (en string), le nodeset a crée par siome et le mapping (subsystem et uaClient) à fait manuellement (Sans Manipulateur)\r\n\r\nCordialement,\r\nArash.\r\n\r\n','2022-09-06 10:02:49',0),(2416,909,'Issue',1,'Bonjour,\r\nmerci pour ces réponses.\r\nLe serveur SODEL n\'était pas supposé être raccordé à un automate. \r\nIl devait servir de passerelle entre l\'application client de SODEL et un LM.\r\nMerci de m\'envoyer une invitation pour un CALL à 11h00 ce jour.\r\n\r\nCordialement\r\nMichel Condemine','2022-09-06 10:10:44',0),(2417,909,'Issue',489,'Bonjour, \r\n\r\nPar rapport de soucis de communication entre les deux serveur OOUA, on a trouver un problème par rapport des timeStamp synchronisation des horloge des serveur grâce aux les message erreur dans le fichier log du LM. \r\n\r\nAvec Lionel, on a synchroniser le temps du PC où se trouve le serveur du Sodel, et puis ça l\'aire de marché parce que on a trouver pas mal des erreur dans le log du Sodel (côté LM) par rapport des type missmatch (Double et Float)\r\n\r\npr contre lors qu\'on se connect avec UA Expert le serveur crash\r\nEn suit, on a mis tout les SubSystem (Sauf celle de Sodel biensûr) , ainsi que Vpi line, init value et vfi en commentaire pour faire la concentration sur le fonctionnement du mapping entre le LM et Sodel. Dans ce cas là, le serveur démarre sans crash, mais des qu\'on viens de se connecter à serveur depuis le UA-Expert il tombe.\r\n\r\nOn va donc vérifier la différence entre les tempStamp du Serveur LM et Sodel, et là, on a vu une décalage de 100ms (LM en avance et Sodel en retard)\r\nPour qu\'on puisse avoir une traça plus élevé on a lancé le wireShark pour écouter la conversassions entre les deux Serveur (inclus la soubscribtion)\r\n\r\nNous avons fait un test en s\'abonant que sur 1 node de la config SODEL - dans ce cas nous avons pu se connecter avec UA Expert et vérifier que la lecture et ecriture du node fontionne. Lorsqu\'on réactive tous les nodes, la connection avec UA Expert fait tombé le serveur.\r\n\r\nAu démarrage du serveur, il y a un énorme temps de latence entre le démarrage du Vpi Ua Client et la fin de son démarrage (Environ 2mn). Il y a un message dans le log du serveur que l\'on ne retrouve pas avec les autre Ua client déjà configuré. et le temps de latence disparait lorsqu\'on appel plus le vpi ua client de Sodel. \r\nLe log du serveur ayant causé les problème est le .bak. celui en .log est celui sans le vpi ua client sodel\r\n2022-09-06T18:09:24.562Z SERVER_ERROR A session is in timeout. It will be deleted in the next loop of the CServerApplication::SessionTimeoutThread\r\n\r\nJe vous envoi en PJ les fichier log, les subsystem et la traça du WireShark, on pourrait voir tout ça demain ensemble selon votre disponibilité.\r\n\r\nMerci bien.\r\nCordialement','2022-09-06 21:23:27',0),(2418,909,'Issue',1,'Bonjour,\r\npourriez installer les derniers binaires et fabriquer de minidump lors des crash ?\r\n\r\nCordialement\r\nMichel Condemine','2022-09-07 13:47:56',0),(2419,909,'Issue',447,'Bonjour\r\n\r\nNous avons réussi à reproduire le crash sur la maquette ci-jointe.\r\ndans la maquette le serveur LM à un VPI UA Client qui s\'abonne sur le serveur OOUA Sodel\r\nLe crash se produit lorsque depuis UA Expert nous nous abonnons en une seule fois à un grand nombre de node qui sont mappé avec le serveur SODEL (si on s\'abonne sur d\'autre node ou sur des node qui sont abonné à un autre serveur OPC UA - exemple PLC - il n\'y a pas se crash (nous avons testé cela sur la production))\r\nCi-joint le minidump\r\n\r\nLe test a été réalisé avec les binaires du mois dde juin ainsi que ceux de la livraison du 05/09/22 sur la maquette LM - sur la maquette SODEL nous sommes avec les binaires de juin (mais avec les binaires à jour le problème est le même)','2022-09-07 20:52:42',0),(2420,909,'Issue',1,'Bonjour,\r\nIl semble y avoir une discordance dans la déclaration entre la NodeSet et le subSystem\r\n!clipboard-202209072245-icr3q.png!\r\n!clipboard-202209072246-4p6tc.png!\r\n\r\nSoit un scalaire dans le nodeset et un tableau dans le subsystem.\r\n\r\nCordialement\r\nMichel Condemine','2022-09-07 22:47:17',0),(2421,909,'Issue',447,'Bonjour Michel\r\n\r\nEn effet ce n\'était que ca. Erreur de copier coller dans ce fichier\r\n\r\nMerci, je ferme le ticket\r\n\r\nCordialement,\r\n\r\nLionel Claudel','2022-09-08 09:25:34',0),(2422,911,'Issue',573,'Hello Stephane,\r\n\r\nIn my DEV Server there is no error. I dont know why it look like this. When you finish your task, I can check the PROD Server','2022-09-08 14:14:18',0),(2423,911,'Issue',510,'Yes i close and re-open my file and that\'s seems ok now! I don\'t know what happend???','2022-09-08 14:19:42',0),(2424,911,'Issue',1,'Be careful with the PROD server. I made several huge modifications for UAClient and HA support.\r\n@Stephane :\r\nI cannot see, in the PROD server, the error your a referring to. Can you Rebrowse from UA Expert.\r\n!clipboard-202209081421-9m0uc.png!\r\n\r\nThe namespace index evolve. The error is probably related to that.\r\n\r\nRegards\r\nMichel','2022-09-08 14:21:48',0),(2425,911,'Issue',1,'','2022-09-08 14:22:07',0),(2426,908,'Issue',1,'','2022-09-08 14:22:25',0),(2427,912,'Issue',432,'1) Modifier le .dat VFI et VpiValuesInit\n\n2) Démarrer Le LM sans VPiValuesInit avec le VFI\n \n3) Ecrire sur le noeud ListSubOf sous ProductionLine (afin de créer la table dans le VFI) \n\nVérifier sous Postgres qu\'on a bien une table intitulée \"http://Emotors/Type/SharedClasse/Instances/LineAS2\" \n\n4) Sous PGadmin, clique droit importer selectionner le fichier intitulé ExportBDDAS en sélectionnant le delimiteur \" | \" \n\n5) Redémarrer le LM avec le VpiValuesInit sans le VFI\n','2022-09-08 16:20:23',0),(2428,913,'Issue',545,'Bonjour M Condemine,\r\n\r\nVeuillez trouver ci joint le fichier du modèle utilisé.\r\n\r\nCordialement,\r\nEquipe Inetum','2022-09-08 18:04:54',0),(2429,913,'Issue',436,'Bonjour Michel,\r\n\r\nCette problématique Ximulator, remontée par Khaled avec la dernière version du modèle partagé par eMotors, nous bloque pour la suite de nos travaux back-office sur la partie Logistique.\r\n\r\nPourrais-tu STP regarder ce qui pose problème et voir si tu as la possibilité de nous débloquer ?\r\n\r\nMerci d\'avance pour ton support.\r\n\r\nCordialement,\r\nChris','2022-09-12 16:47:27',0),(2430,913,'Issue',1,'Bonjour,\r\nj\'ai corrigé le XiMulator pour qu\'il ne crash pas. Cependant il y a plusieurs problèmes de modélisation.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2022-09-12 18:01:19',0),(2431,913,'Issue',1,'LE binaire est ici : http://www.openopcua.org/redmine/attachments/3383 ','2022-09-12 18:04:57',0),(2432,913,'Issue',432,'Bonjour, \r\n\r\nMerci pour les binaires, Ximulator ne crash plus mais indique des erreurs à la génération (surement relié aux erreurs de modélisation que vous mentionnez). \r\n\r\nPourrez vous svp nous préciser ces erreurs de modélisation ? Ou bien nous indiquer comment les retrouver afin de les remonter à eMotors ? \r\n\r\nCordialement,\r\n\r\nL\'équipe Inetum\r\n\r\n','2022-09-13 16:49:06',0),(2433,915,'Issue',1,'Bonjour,\r\nJe vous invite à vous pencher sur les demandes d\'évolutions faites par EMOTORS et INETUM durant les 6 derniers mois.\r\nEn résumé. \r\nUn TAG/NODE Write-Only ne peut pas être mise à jour par un VPI. Il est WrITE-ONLY.\r\n\r\nJe ferme ce ticket. Il n\'y a rien de plus à dire. :)\r\n\r\nCordialement\r\nMichel Condemine','2022-09-14 18:08:24',0),(2434,915,'Issue',432,'Bonjour,\r\n\r\nMerci\r\nQuelle devrait donc être la configuration dans le use case décrit ? \r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\n','2022-09-15 09:06:25',0),(2435,915,'Issue',432,'Ci joint un Powerpoint qui illustre les deux use case dont le problématique (cas 1) \r\n\r\nJe suis disponible pour en discuter (avec eMotors ou pas) quand vous le souhaitez\r\n \r\n\r\nCordialement, \r\nMichael ','2022-09-15 14:13:10',0),(2436,912,'Issue',1,'Fixed','2022-09-15 15:18:45',0),(2437,915,'Issue',1,'','2022-09-15 15:20:04',0),(2438,915,'Issue',1,'Vous écrivez :\r\n<pre>\r\nCas 1 : Variables écrites par LM et lues par automates (exemple booléen AcknowledgeData)\r\n</pre>\r\n\r\nVous devez être plus précis. Est-ce un Vpi ou un client OPC qui écrit dans cette variable ?\r\n\r\n<pre>\r\nCas 2 : Variables lues par LM et écrites par automates (exemple booléen DataAvailable)\r\n</pre>\r\nIdem. Qui est ce qui lit et comment le fait il ?\r\n','2022-09-15 15:25:45',0),(2439,915,'Issue',432,'Je reformule\r\n\r\n\r\nCas 1 : Variables écrites par VpiLm (à travers un VpiNotifyCallback) et lues le VpiS7 pour être écrit au niveau des automates (exemple booléen AcknowledgeData)\r\n\r\nCas 2 : Variables lues par VpiLm (à travers un VpiWriteValue ) et écrites par VpiS7 au niveau de la cache serveur suite à une lecture au niveau des automates (exemple booléen DataAvailable)\r\n\r\nCi joint le Powerpoint avec le titre mis à jour \r\n\r\nCordialement, \r\n\r\nMichael\r\n','2022-09-15 16:19:02',0),(2440,915,'Issue',1,'Dans l\'état actuel de l\'implémentation ces scénarii sont impossible à paramétrer','2022-09-15 16:23:09',0),(2441,915,'Issue',1,'en résumé','2022-09-15 16:24:04',0),(2442,915,'Issue',432,'Nous proposons un call pour définir les modifications à apporter pour solutionner le problème (si vous le jugez utile) \r\n\r\nCordialement, \r\n\r\nMichael ','2022-09-15 16:41:34',0),(2443,915,'Issue',1,'Bonjour,\r\nPas besoin d\'un call. Je vais réfléchir à la prise en compte de cette situation.\r\n\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-09-15 16:44:26',0),(2444,915,'Issue',432,'Bonjour, \r\n\r\nSuite à la livraison de cet après midi, j\'ai effectué des tests\r\n\r\nJe vois que la combinaison AccessLevel=3, AccessRight=2 est maintenant autorisée. \r\n\r\nConcernant le contrôle mis en place pour s\'assurer que le VpiS7 ne remonte pas des données dans le cas 1 (qui était basé sur les AccessLevel), est-il maintenant basé sur le AccessRight du VpiS7? \r\n\r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2022-09-16 18:10:54',0),(2445,915,'Issue',1,'Bonjour,\r\nla verification est et restera basée sur l\'accessLevel.\r\nCordialement\r\nMichel Condemine','2022-09-16 18:55:36',0),(2446,917,'Issue',1,'Why do you try to start thé flex client and not thé config manager ?\r\nRegards \r\nMichel ','2022-09-20 11:38:06',0),(2447,917,'Issue',573,NULL,'2022-09-20 13:30:15',0),(2448,854,'Issue',549,'Bonjour,\r\nVoici à nouveau les résultats des tests ainsi que les jeux de test utilisés pour la version 1.0.0.5 du VpiOptimu.\r\nLe VpiQualaxyClient reste à tester.','2022-09-23 14:26:29',0),(2449,921,'Issue',1,'Bonjour Lionel,\r\nJe ne serai que très peu disponible dans les jours à venir.\r\nJ\'aurai une bien meilleure disponibilité la semaine prochaine. Cependant nous pouvons échanger sur le sujet demain dans l\'AM.\r\n*Dans un créneau qui reste à définir. *\r\nLe message VpiUaClient is trying to handle the illegal situation est un nouveau message pour prendre en compte une situation illégale.\r\nIl s\'agit d\'un cas ou deux sessions sont ouvertes sur le VpiUaClient alors ne doit en gérer qu\'une par instance client/serveur.\r\nSi le Vpi détecte que plus de deux sessions sont active il en ferme une afin rétablir un contexte de fonctionnement normal.\r\nIl est donc impératif de comprendre la raison qui amène à avoir deux sessions.\r\n\r\nPourriez-vous m\'expliquer plus précisément les comportements anormaux rencontrés ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-09-28 21:57:04',0),(2450,921,'Issue',447,'Bonjour,\r\n\r\nDésolé pour la réponse tardive. Nous serions disponible ce jour (à 17h30) pour discuter de ce sujet + une question sur l\'utilisation des threads dans le serveur car nous rencontrons des faiblesses sur nos LM et les personnes de l\'infra auraient quelques questions sur ce sujet.\r\n\r\nCordialement\r\n\r\nLionel Claudel','2022-09-29 16:20:20',0),(2451,921,'Issue',1,'Bonjour Lionel,\r\nComme indiqué précédemment je déménage cette semaine et serais très moins disponible.\r\nAuriez-vous un créneau le 30/10 en début de matinée?\r\nCordialement\r\nMichel Condemine','2022-09-29 22:40:38',0),(2452,891,'Issue',432,'Bonjour, \r\n\r\nNous revenons vers vous avec des nouvelles sur ce ticket. Rappel du contexte : crash du LM Assemblage sur certain rechargement de l\'automates. \r\neMotors tourne avec les tout dernier binaires et nous a transmis plusieurs minidump de crash au rechargement d\'un automate. \r\n\r\nCi joint un document Word rassemblant les différents piles d\'appels et le nom du minidump. \r\nNous pouvons vous fournir les minidump en question. \r\n\r\nCi joint le document Word initialisé par Dominique Beroujon de notre équipe \r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n\r\n','2022-09-30 17:54:54',0),(2453,922,'Issue',433,'Crash non intervenu chez eMotors, mais sur notre plateforme de test Back Office','2022-09-30 17:56:19',0),(2454,922,'Issue',1,'Crash sur Free. \r\nPayload\r\n\r\n0015;http://Emotors/Type/SharedClasse;i=1225;KqYkc7PU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwNzYQAAAAIDEwMDc2MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAGKOtcOo1NgBKqYkc7PU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNL4gVEyqjU2AEFAAAAT1AyMDAGAAAAAAAAAGKOtcOo1NgBAQAAAAAAMEHiBUTKqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAABijrXDqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFPZqJuTqdTYAQUAAABPUDIwMwYAAAAAAAAA2STEe6nU2AEBAAAAAAAgQtmom5Op1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAADZJMR7qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOkrKGlqtTYAQUAAABPUDIwMgYAAAAAAAAApEfUh6rU2AEBAAAAAABIQqSsoaWq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAApEfUh6rU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA2MTAwNzIzVjAzMlQAAAAAAAAAAAEAAAA9kb+UqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA2MRAAAAAgMTAwNjEwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAopsXmaPU2AE9kb+UqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0siE6afo9TYAQUAAABPUDIwMAYAAAAAAAAAopsXmaPU2AEBAAAAAAAwQSITpp+j1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAKKbF5mj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU8GtcGSo1NgBBQAAAE9QMjAzBgAAAAAAAADBKZlMqNTYAQEAAAAAACBCwa1wZKjU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAMEpmUyo1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFM9kb+UqNTYAQUAAABPUDIwMgYAAAAAAAAAPc/TiKjU2AEBAAAAAACgQT2Rv5So1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAPc/TiKjU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAACrkOGez1NgBAQAAAAAAoEEqpiRzs9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAACrkOGez1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;4Rt+c7PU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwNzcQAAAAIDEwMDc3MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAF2K/MOo1NgB4Rt+c7PU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNL3QGLyqjU2AEFAAAAT1AyMDAGAAAAAAAAAF2K/MOo1NgBAQAAAAAAMEHdAYvKqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAABdivzDqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFP0UBOUqdTYAQUAAABPUDIwMwYAAAAAAAAA9Mw7fKnU2AEBAAAAAAAgQvRQE5Sp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAD0zDt8qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFMba/6lqtTYAQUAAABPUDIwMgYAAAAAAAAAGwYxiKrU2AEBAAAAAABIQhtr/qWq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAGwYxiKrU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA2MjAwNzIzVjAzMlQAAAAAAAAAAAEAAAA2ZBeVqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA2MhAAAAAgMTAwNjIwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAA0pZ0maPU2AE2ZBeVqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0tSDgOgo9TYAQUAAABPUDIwMAYAAAAAAAAA0pZ0maPU2AEBAAAAAAAwQVIOA6Cj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAANKWdJmj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU42d1mSo1NgBBQAAAE9QMjAzBgAAAAAAAACNGf9MqNTYAQEAAAAAACBCjZ3WZKjU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAI0Z/0yo1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFM2ZBeVqNTYAQUAAABPUDIwMgYAAAAAAAAANqIriajU2AEBAAAAAACgQTZkF5Wo1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAANqIriajU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAOFZkmez1NgBAQAAAAAAoEHhG35zs9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAOFZkmez1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;rb+mc7PU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwNzgQAAAAIDEwMDc4MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAPQDHsSo1NgBrb+mc7PU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNLdHusyqjU2AEFAAAAT1AyMDAGAAAAAAAAAPQDHsSo1NgBAQAAAAAAMEF0e6zKqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAD0Ax7EqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFMS7ECUqdTYAQUAAABPUDIwMwYAAAAAAAAAEmhpfKnU2AEBAAAAAAAgQhLsQJSp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAASaGl8qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFN0RS2mqtTYAQUAAABPUDIwMgYAAAAAAAAAdOBfiKrU2AEBAAAAAABIQnRFLaaq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAdOBfiKrU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA2MzAwNzIzVjAzMlQAAAAAAAAAAAEAAAC9VkCVqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA2MxAAAAAgMTAwNjMwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAZTaMmaPU2AG9VkCVqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0vlrRqgo9TYAQUAAABPUDIwMAYAAAAAAAAAZTaMmaPU2AEBAAAAAAAwQeWtGqCj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAGU2jJmj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU25l8mSo1NgBBQAAAE9QMjAzBgAAAAAAAABu4RpNqNTYAQEAAAAAACBCbmXyZKjU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAG7hGk2o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFO9VkCVqNTYAQUAAABPUDIwMgYAAAAAAAAAvZRUiajU2AEBAAAAAACgQb1WQJWo1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAvZRUiajU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAK39umez1NgBAQAAAAAAoEGtv6Zzs9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAK39umez1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;e0fRc7PU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwNzkQAAAAIDEwMDc5MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAHYnP8So1NgBe0fRc7PU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNL9p7NyqjU2AEFAAAAT1AyMDAGAAAAAAAAAHYnP8So1NgBAQAAAAAAMEH2ns3KqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAB2Jz/EqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFOMSXCUqdTYAQUAAABPUDIwMwYAAAAAAAAAjMWYfKnU2AEBAAAAAAAgQoxJcJSp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAACMxZh8qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFNb7GCmqtTYAQUAAABPUDIwMgYAAAAAAAAAW4eTiKrU2AEBAAAAAABIQlvsYKaq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAW4eTiKrU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA2NDAwNzIzVjAzMlQAAAAAAAAAAAEAAAAEZWuVqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA2NBAAAAAgMTAwNjQwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAi2ummaPU2AEEZWuVqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0sL4zSgo9TYAQUAAABPUDIwMAYAAAAAAAAAi2ummaPU2AEBAAAAAAAwQQvjNKCj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAItrppmj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU0bHFWWo1NgBBQAAAE9QMjAzBgAAAAAAAABGQz5NqNTYAQEAAAAAACBCRscVZajU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAEZDPk2o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFMEZWuVqNTYAQUAAABPUDIwMgYAAAAAAAAABKN/iajU2AEBAAAAAACgQQRla5Wo1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAABKN/iajU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAHuF5Wez1NgBAQAAAAAAoEF7R9Fzs9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAHuF5Wez1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;hG35c7PU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODAQAAAAIDEwMDgwMDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAABtrZcSo1NgBhG35c7PU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNLm+LzyqjU2AEFAAAAT1AyMDAGAAAAAAAAABtrZcSo1NgBAQAAAAAAMEGb4vPKqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAAba2XEqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFNYHqCUqdTYAQUAAABPUDIwMwYAAAAAAAAAWJrIfKnU2AEBAAAAAAAgQlgeoJSp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAABYmsh8qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOP+pCmqtTYAQUAAABPUDIwMgYAAAAAAAAAj5XDiKrU2AEBAAAAAABIQo/6kKaq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAj5XDiKrU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA2NTAwNzIzVjAzMlQAAAAAAAAAAAEAAABjcZeVqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA2NRAAAAAgMTAwNjUwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAE8DAmaPU2AFjcZeVqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0uTN0+go9TYAQUAAABPUDIwMAYAAAAAAAAAE8DAmaPU2AEBAAAAAAAwQZM3T6Cj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAABPAwJmj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UUyptPmWo1NgBBQAAAE9QMjAzBgAAAAAAAAAq6WZNqNTYAQEAAAAAACBCKm0+ZajU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAACrpZk2o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFNjcZeVqNTYAQUAAABPUDIwMgYAAAAAAAAAY6+riajU2AEBAAAAAACgQWNxl5Wo1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAY6+riajU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAISrDWiz1NgBAQAAAAAAoEGEbflzs9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAISrDWiz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;i3YkdLPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODEQAAAAIDEwMDgxMDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAADWsiMSo1NgBi3YkdLPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNLtSMXy6jU2AEFAAAAT1AyMDAGAAAAAAAAADWsiMSo1NgBAQAAAAAAMEG1IxfLqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAA1rIjEqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFOgzc+UqdTYAQUAAABPUDIwMwYAAAAAAAAAoEn4fKnU2AEBAAAAAAAgQqDNz5Sp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAACgSfh8qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOS68emqtTYAQUAAABPUDIwMgYAAAAAAAAAkob6iKrU2AEBAAAAAABIQpLrx6aq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAkob6iKrU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA2NjAwNzIzVjAzMlQAAAAAAAAAAAEAAACsy8KVqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA2NhAAAAAgMTAwNjYwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAwL7fmaPU2AGsy8KVqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0tANm6go9TYAQUAAABPUDIwMAYAAAAAAAAAwL7fmaPU2AEBAAAAAAAwQUA2bqCj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAMC+35mj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU/gmZmWo1NgBBQAAAE9QMjAzBgAAAAAAAAD4oo5NqNTYAQEAAAAAACBC+CZmZajU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAPiijk2o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOsy8KVqNTYAQUAAABPUDIwMgYAAAAAAAAArAnXiajU2AEBAAAAAACgQazLwpWo1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAArAnXiajU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAIu0OGiz1NgBAQAAAAAAoEGLdiR0s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAIu0OGiz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;4mBPdLPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODIQAAAAIDEwMDgyMDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAABJvrMSo1NgB4mBPdLPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNLkuY6y6jU2AEFAAAAT1AyMDAGAAAAAAAAABJvrMSo1NgBAQAAAAAAMEGS5jrLqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAASb6zEqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFMeJASVqdTYAQUAAABPUDIwMwYAAAAAAAAAHqAsfanU2AEBAAAAAAAgQh4kBJWp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAAeoCx9qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFNGu/emqtTYAQUAAABPUDIwMgYAAAAAAAAARlYqiarU2AEBAAAAAABIQka796aq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAARlYqiarU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA2NzAwNzIzVjAzMlQAAAAAAAAAAAEAAAC90u2VqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA2NxAAAAAgMTAwNjcwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAJCABmqPU2AG90u2VqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0ukl4+go9TYAQUAAABPUDIwMAYAAAAAAAAAJCABmqPU2AEBAAAAAAAwQaSXj6Cj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAACQgAZqj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UUyk8kmWo1NgBBQAAAE9QMjAzBgAAAAAAAAApuLpNqNTYAQEAAAAAACBCKTySZajU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAACm4uk2o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFO90u2VqNTYAQUAAABPUDIwMgYAAAAAAAAAvRACiqjU2AEBAAAAAACgQb3S7ZWo1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAvRACiqjU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAOKeY2iz1NgBAQAAAAAAoEHiYE90s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAOKeY2iz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;Syd6dLPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODMQAAAAIDEwMDgzMDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAA200sSo1NgBSyd6dLPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNLjSthy6jU2AEFAAAAT1AyMDAGAAAAAAAAAA200sSo1NgBAQAAAAAAMEGNK2HLqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAANtNLEqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFP31jWVqdTYAQUAAABPUDIwMwYAAAAAAAAA91JefanU2AEBAAAAAAAgQvfWNZWp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAD3Ul59qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOlcymnqtTYAQUAAABPUDIwMgYAAAAAAAAApQ5ciarU2AEBAAAAAABIQqVzKaeq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAApQ5ciarU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA2ODAwNzIzVjAzMlQAAAAAAAAAAAEAAABpvBqWqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA2OBAAAAAgMTAwNjgwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAtR4gmqPU2AFpvBqWqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0s1lq6go9TYAQUAAABPUDIwMAYAAAAAAAAAtR4gmqPU2AEBAAAAAAAwQTWWrqCj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAALUeIJqj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU7MkvWWo1NgBBQAAAE9QMjAzBgAAAAAAAACzoOVNqNTYAQEAAAAAACBCsyS9ZajU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAALOg5U2o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFNpvBqWqNTYAQUAAABPUDIwMgYAAAAAAAAAafouiqjU2AEBAAAAAACgQWm8Gpao1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAafouiqjU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAEtljmiz1NgBAQAAAAAAoEFLJ3p0s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAEtljmiz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;OnOndLPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODQQAAAAIDEwMDg0MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAM3X+MSo1NgBOnOndLPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNLTU+Hy6jU2AEFAAAAT1AyMDAGAAAAAAAAAM3X+MSo1NgBAQAAAAAAMEFNT4fLqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAADN1/jEqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFONKmiVqdTYAQUAAABPUDIwMwYAAAAAAAAAjaaQfanU2AEBAAAAAAAgQo0qaJWp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAACNppB9qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFMHOFunqtTYAQUAAABPUDIwMgYAAAAAAAAAB9ONiarU2AEBAAAAAABIQgc4W6eq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAB9ONiarU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA2OTAwNzIzVjAzMlQAAAAAAAAAAAEAAACVMkiWqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA2ORAAAAAgMTAwNjkwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAA+GxDmqPU2AGVMkiWqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0t45NGgo9TYAQUAAABPUDIwMAYAAAAAAAAA+GxDmqPU2AEBAAAAAAAwQXjk0aCj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAPhsQ5qj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UUwQP6GWo1NgBBQAAAE9QMjAzBgAAAAAAAAAEixBOqNTYAQEAAAAAACBCBA/oZajU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAASLEE6o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOVMkiWqNTYAQUAAABPUDIwMgYAAAAAAAAAlXBciqjU2AEBAAAAAACgQZUySJao1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAlXBciqjU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAADqxu2iz1NgBAQAAAAAAoEE6c6d0s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAADqxu2iz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;VbPWdLPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODUQAAAAIDEwMDg1MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAG18IcWo1NgBVbPWdLPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNL7fOvy6jU2AEFAAAAT1AyMDAGAAAAAAAAAG18IcWo1NgBAQAAAAAAMEHt86/LqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAABtfCHFqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFMlxZ6VqdTYAQUAAABPUDIwMwYAAAAAAAAAJUHHfanU2AEBAAAAAAAgQiXFnpWp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAAlQcd9qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFNmyI+nqtTYAQUAAABPUDIwMgYAAAAAAAAAZmPCiarU2AEBAAAAAABIQmbIj6eq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAZmPCiarU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA3MDAwNzIzVjAzMlQAAAAAAAAAAAEAAABGA3WWqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA3MBAAAAAgMTAwNzAwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAz5JpmqPU2AFGA3WWqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0tPCvigo9TYAQUAAABPUDIwMAYAAAAAAAAAz5JpmqPU2AEBAAAAAAAwQU8K+KCj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAM+SaZqj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU8q8FGao1NgBBQAAAE9QMjAzBgAAAAAAAADKOD1OqNTYAQEAAAAAACBCyrwUZqjU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAMo4PU6o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFNGA3WWqNTYAQUAAABPUDIwMgYAAAAAAAAARkGJiqjU2AEBAAAAAACgQUYDdZao1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAARkGJiqjU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAFXx6miz1NgBAQAAAAAAoEFVs9Z0s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAFXx6miz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;PHYGdbPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODYQAAAAIDEwMDg2MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAMEfSsWo1NgBPHYGdbPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNLQZfYy6jU2AEFAAAAT1AyMDAGAAAAAAAAAMEfSsWo1NgBAQAAAAAAMEFBl9jLqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAADBH0rFqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFPoOdOVqdTYAQUAAABPUDIwMwYAAAAAAAAA6LX7fanU2AEBAAAAAAAgQug505Wp1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAADotft9qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFMBC8KnqtTYAQUAAABPUDIwMgYAAAAAAAAAAab0iarU2AEBAAAAAABIQgELwqeq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAAab0iarU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA3MTAwNzIzVjAzMlQAAAAAAAAAAAEAAAAQB6SWqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA3MRAAAAAgMTAwNzEwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAW/yLmqPU2AEQB6SWqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0vbcxqho9TYAQUAAABPUDIwMAYAAAAAAAAAW/yLmqPU2AEBAAAAAAAwQdtzGqGj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAFv8i5qj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU+cmQmao1NgBBQAAAE9QMjAzBgAAAAAAAADnompOqNTYAQEAAAAAACBC5yZCZqjU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAOeiak6o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFMQB6SWqNTYAQUAAABPUDIwMgYAAAAAAAAAEEW4iqjU2AEBAAAAAACgQRAHpJao1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAEEW4iqjU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAADy0Gmmz1NgBAQAAAAAAoEE8dgZ1s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAADy0Gmmz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;qMMzdbPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODcQAAAAIDEwMDg3MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAABEldcWo1NgBqMMzdbPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNLkZwDzKjU2AEFAAAAT1AyMDAGAAAAAAAAABEldcWo1NgBAQAAAAAAMEGRnAPMqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAARJXXFqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFP6rQeWqdTYAQUAAABPUDIwMwYAAAAAAAAA+ikwfqnU2AEBAAAAAAAgQvqtB5ap1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAD6KTB+qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOlHPSnqtTYAQUAAABPUDIwMgYAAAAAAAAApbcmiqrU2AEBAAAAAABIQqUc9Keq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAApbcmiqrU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA3MjAwNzIzVjAzMlQAAAAAAAAAAAEAAACnOtaWqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA3MhAAAAAgMTAwNzIwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAKMC0mqPU2AGnOtaWqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0uoN0Oho9TYAQUAAABPUDIwMAYAAAAAAAAAKMC0mqPU2AEBAAAAAAAwQag3Q6Gj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAACjAtJqj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UUx3WcWao1NgBBQAAAE9QMjAzBgAAAAAAAAAdUppOqNTYAQEAAAAAACBCHdZxZqjU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAB1Smk6o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOnOtaWqNTYAQUAAABPUDIwMgYAAAAAAAAAp3jqiqjU2AEBAAAAAACgQac61pao1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAp3jqiqjU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAKgBSGmz1NgBAQAAAAAAoEGowzN1s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAKgBSGmz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;oHNjdbPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODgQAAAAIDEwMDg4MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAGbTpMWo1NgBoHNjdbPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNL5kozzKjU2AEFAAAAT1AyMDAGAAAAAAAAAGbTpMWo1NgBAQAAAAAAMEHmSjPMqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAABm06TFqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFNVL0CWqdTYAQUAAABPUDIwMwYAAAAAAAAAVatofqnU2AEBAAAAAAAgQlUvQJap1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAABVq2h+qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOijyioqtTYAQUAAABPUDIwMgYAAAAAAAAAoipbiqrU2AEBAAAAAABIQqKPKKiq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAoipbiqrU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA3MzAwNzIzVjAzMlQAAAAAAAAAAAEAAAA1JAeXqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA3MxAAAAAgMTAwNzMwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAnpzamqPU2AE1JAeXqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0seFGmho9TYAQUAAABPUDIwMAYAAAAAAAAAnpzamqPU2AEBAAAAAAAwQR4UaaGj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAJ6c2pqj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UUz5Bn2ao1NgBBQAAAE9QMjAzBgAAAAAAAAA+vcdOqNTYAQEAAAAAACBCPkGfZqjU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAD69x06o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFM1JAeXqNTYAQUAAABPUDIwMgYAAAAAAAAANWIbi6jU2AEBAAAAAACgQTUkB5eo1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAANWIbi6jU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAKCxd2mz1NgBAQAAAAAAoEGgc2N1s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAKCxd2mz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;VBmhdbPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwODkQAAAAIDEwMDg5MDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAFMp08Wo1NgBVBmhdbPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNL06BhzKjU2AEFAAAAT1AyMDAGAAAAAAAAAFMp08Wo1NgBAQAAAAAAMEHToGHMqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAABTKdPFqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFNmKXeWqdTYAQUAAABPUDIwMwYAAAAAAAAAZqWffqnU2AEBAAAAAAAgQmYpd5ap1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAABmpZ9+qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOQAVqoqtTYAQUAAABPUDIwMgYAAAAAAAAAkJyMiqrU2AEBAAAAAABIQpABWqiq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAkJyMiqrU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA3NDAwNzIzVjAzMlQAAAAAAAAAAAEAAACECzeXqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA3NBAAAAAgMTAwNzQwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAAkSQDm6PU2AGECzeXqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0sRnJGho9TYAQUAAABPUDIwMAYAAAAAAAAAkSQDm6PU2AEBAAAAAAAwQRGckaGj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAJEkA5uj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU3zd0Gao1NgBBQAAAE9QMjAzBgAAAAAAAAB8WflOqNTYAQEAAAAAACBCfN3QZqjU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAHxZ+U6o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFOECzeXqNTYAQUAAABPUDIwMgYAAAAAAAAAhElLi6jU2AEBAAAAAACgQYQLN5eo1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAhElLi6jU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAFRXtWmz1NgBAQAAAAAAoEFUGaF1s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAFRXtWmz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;mQfOdbPU2AEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAT1AyMDQCAAAAMDEFAAAATGluZVgBAAAAMgAAAAAAAAAAAAAAAAANAAAAbWFzcy0wMDAwMDUwMAAAAAAAAAAAGQAAAFZJRDAwMDAwMDAwMDA3MDExNTM5MTAwOTAQAAAAIDEwMDkwMDA3MjNWMDMyVAEAAABWAQAAAFQAAAAABwAAAFZwaUxpbmUAAAAAAI1cAMao1NgBmQfOdbPU2AEHAAAAVnBpTGluZQYAAAAEAAAAAAAwQRAAAABDSEFSR0VNRU5UIFNUQUNLDdSOzKjU2AEFAAAAT1AyMDAGAAAAAAAAAI1cAMao1NgBAQAAAAAAMEEN1I7MqNTYAQAAAAABAAAAAAAAAAYAAAAAAAAAAQAAABIAAABQQVFVRVQgVE9MRVMgUk9UT1IKAAAAUC0wMDAwMzgyNAAAgD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAAPAAAAENvbnRyw7RsZXIgbGEgcG9zaXRpb24gZGUgbGEgZ2FsZXR0ZSBhdmFudCBpbnNlcnRpb24gYWltYW50cw0AAAByZXEtMDAwMDAyNTYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAExPQURJTkcgU1RBQ0sCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAACNXADGqNTYAQIAAAAwMQEAAAAAADBBAAAAAAEBAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQhgAAABJTlNFUlRJT04gR1JBTkRTIEFJTUFOVFMRi7eWqdTYAQUAAABPUDIwMwYAAAAAAAAAEQfgfqnU2AEBAAAAAAAgQhGLt5ap1NgBAAAAAAEAAAAAAAAABgAAAAAAAAADAAAAGQAAAENvbXBvc2FudCBpbnRlcm5lIGNvbnNvbWUNAAAATUFTUy0wMDAwMzgxOAAAgD8BAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAwD8AAwAAAFBDRQwAAABHUkFORC1BSU1BTlQKAAAAUC0wMDAwMzgxOAAAoD8AAwAAAFBDRQAAIEEAAAAAAAAAAAEAAAABAAAALQAAAENvbnRyw7RsZXIgbGEgY291cnNlIGQnaW5zZXJ0aW9uIGRlIGxhIHByZXNzZQ0AAAByZXEtMDAwMDAyNTggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFgAAAElOU0VSVElPTiBHUkFORCBBSU1BTlQCAAAAMDENAAAATm9uIHJlbnNlaWduZQEAAIA/CgAAAAAAAAARB+B+qdTYAQIAAAAwMQEAAAAAACBCAAAAAAEBAAAAAgAAAAsAAABGaWxsIENWMyBPSwAAAAAHAAAAVnBpTGluZQAAAAAAAMBAAACgQAAAgEAAAMBAAQAAAGwNAAAARmlsbCBDVjEwIE5PSwAAAAAHAAAAVnBpTGluZQIAAAAAAEhDAABIQgAAyEEAAJZCAgAAAGtnAwAAAAAAAAAAAAAACgAAAENPTVAzIHNldWwAAAAAAABIQhgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFPsMIyoqtTYAQUAAABPUDIwMgYAAAAAAAAA7Mu+iqrU2AEBAAAAAABIQuwwjKiq1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAA7Mu+iqrU2AECAAAAMDEBAAAAAABIQgAAAAABAQAAAAAAAAADAAAAEAAAACAxMDA3NTAwNzIzVjAzMlQAAAAAAAAAAAEAAAA3vGaXqNTYAQAAAAAAAAAAAAAAAAAAAAAAAAUAAABPUDIwMgIAAAAwMQUAAABMaW5lWAEAAAAyAAAAAAAAAAAAAAAAAA0AAABtYXNzLTAwMDAwNTAwAAAAAAAAAAAZAAAAVklEMDAwMDAwMDAwMDcwMTE1MzkxMDA3NRAAAAAgMTAwNzUwMDcyM1YwMzJUAQAAAFYBAAAAVAAAAAAHAAAAVnBpTGluZQAAAAAA10opm6PU2AE3vGaXqNTYAQcAAABWcGlMaW5lBgAAAAMAAAAAADBBEAAAAENIQVJHRU1FTlQgU1RBQ0tXwreho9TYAQUAAABPUDIwMAYAAAAAAAAA10opm6PU2AEBAAAAAAAwQVfCt6Gj1NgBAAAAAAEAAAAAAAAABgAAAAAAAAABAAAAEgAAAFBBUVVFVCBUT0xFUyBST1RPUgoAAABQLTAwMDAzODI0AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAA8AAAAQ29udHLDtGxlciBsYSBwb3NpdGlvbiBkZSBsYSBnYWxldHRlIGF2YW50IGluc2VydGlvbiBhaW1hbnRzDQAAAHJlcS0wMDAwMDI1NiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAATE9BRElORyBTVEFDSwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAANdKKZuj1NgBAgAAADAxAQAAAAAAMEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAACBCGAAAAElOU0VSVElPTiBHUkFORFMgQUlNQU5UU79l/2ao1NgBBQAAAE9QMjAzBgAAAAAAAAC/4SdPqNTYAQEAAAAAACBCv2X/ZqjU2AEAAAAAAQAAAAAAAAAGAAAAAAAAAAMAAAAZAAAAQ29tcG9zYW50IGludGVybmUgY29uc29tZQ0AAABNQVNTLTAwMDAzODE4AACAPwEDAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AADAPwADAAAAUENFDAAAAEdSQU5ELUFJTUFOVAoAAABQLTAwMDAzODE4AACgPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAEAAAAtAAAAQ29udHLDtGxlciBsYSBjb3Vyc2UgZCdpbnNlcnRpb24gZGUgbGEgcHJlc3NlDQAAAHJlcS0wMDAwMDI1OCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEWAAAASU5TRVJUSU9OIEdSQU5EIEFJTUFOVAIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAL/hJ0+o1NgBAgAAADAxAQAAAAAAIEIAAAAAAQEAAAABAAAACwAAAEZpbGwgQ1YxIE9LAAAAAAcAAABWcGlMaW5lAAAAAAAA0kIAAMhCAAC0QgAA3EIBAAAAcwMAAAAFAAAAQ09NUDEFAAAAQ09NUDIFAAAAQ09NUDMAAAAAAACgQRgAAABJTlNFUlRJT04gUEVUSVRTIEFJTUFOVFM3vGaXqNTYAQUAAABPUDIwMgYAAAAAAAAAN/p6i6jU2AEBAAAAAACgQTe8Zpeo1NgBAAAAAAEAAAAAAAAABgAAAAAAAAAMAAAADAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFDAAAAFBFVElULUFJTUFOVAoAAABQLTAwMDAzODE1AACAPwADAAAAUENFAAAgQQAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABJTlNFUlRJT04gUEVUSVQgQUlNQU5UAgAAADAxDQAAAE5vbiByZW5zZWlnbmUBAACAPwoAAAAAAAAAN/p6i6jU2AECAAAAMDEBAAAAAACgQQAAAAABAQAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAwMwAAoEEGAAAAUFJFU1NFAAAAAAAAAAAFAAAAT1AyMDQCAAAAAAAAAJlF4mmz1NgBAQAAAAAAoEGZB851s9TYAQAAAAABAAAAAAAAAAYAAAAAAAAAAAAAAAAAIEEAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAQ09OVFJPTEUgUFJFU0VOQ0UgQUlNQU5UUwIAAAAwMQ0AAABOb24gcmVuc2VpZ25lAQAAgD8KAAAAAAAAAJlF4mmz1NgBAgAAADAxAQAAAAAAoEEAAAAAAQEAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAACAAAAMDM=;','2022-09-30 18:19:49',0),(2455,922,'Issue',1,'Bonjour,\r\nJ\'ai réalisé un code de test qui appel CountChar avec la payload associé au crash.\r\nJe n\'ai pas reproduit de crash.\r\nDans ce contexte le 0xC000374 montre que le crash vient d\'ailleurs.\r\n\r\nCordialement\r\nMichel Condemine','2022-09-30 19:00:21',0),(2456,898,'Issue',432,'Bonjour, \r\n\r\nComme discuté sur un précédent call, ci-joint un fichier récapitulant les tests/résultats. \r\n\r\nCordialement,\r\n\r\nL\'équipe Inetum','2022-10-04 15:34:28',0),(2457,898,'Issue',432,'','2022-10-04 15:35:18',0),(2458,921,'Issue',432,'Bonjour M. Condemine, \r\n\r\nNous avons effectué des traces Wireshark dans lequel se trouvent plusieurs PublishResponse avec un Status BadSequenceNumberUnknown (ceci au niveau du lien entre le LM et un automate - où le LM a le rôle de Client)\r\n\r\nPensez vous que ceci peut avoir un lien avec ce ticket ?\r\n\r\nPour info, depuis l\'ouverture du ticket nous avions effectué un test sur la ligne Rotor durant lequel le problème n\'est pas réapparu. Pas de production sur cette ligne depuis. \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-10-04 16:51:38',0),(2459,925,'Issue',1,'Bonjour,\r\nMarc je suis en déplacement jusqu\'a demain.\r\nJe te ferai un retour dans la semaine.\r\n\r\nCordialement\r\nMichel','2022-10-05 09:08:12',0),(2460,924,'Issue',1,'Bonjour, ci-dessous un extrait du manuel utilisateur.\r\nIl s\'agit d\'un extrait de la version qui est en cours de MAJ.\r\n','2022-10-05 20:48:40',0),(2461,924,'Issue',1,'Le screenshot était manquant. Je posterai la doc complète dans quelques jours.\r\n\r\n!clipboard-202210052049-vry6x.png!\r\n\r\nCordialement\r\nMichel Condemine','2022-10-05 20:50:00',0),(2462,490,'Issue',328,'','2022-10-06 12:51:52',0),(2463,926,'Issue',528,'','2022-10-06 16:49:47',0),(2464,926,'Issue',528,'','2022-10-06 17:28:33',0),(2465,446,'Issue',328,'','2022-10-06 19:03:28',0),(2466,324,'Issue',328,'','2022-10-06 19:05:00',0),(2467,375,'Issue',328,'','2022-10-06 19:07:15',0),(2468,401,'Issue',328,'','2022-10-06 19:08:22',0),(2469,891,'Issue',432,'Comptage d\'apparition des piles d\'appels (parmi 11) sur le doc précédent : \r\n\r\n6 fois :\r\n!clipboard-202210071456-dp5oy.png!\r\n\r\n2 fois : \r\n!clipboard-202210071457-s0orv.png!\r\n \r\n2 fois : \r\n!clipboard-202210071457-mhwy8.png!\r\n\r\n1 fois :\r\n!clipboard-202210071457-uhlhe.png!\r\n','2022-10-07 14:57:41',0),(2470,932,'Issue',432,'Je me corrige, à l\'inverse de ce qu\'on a rencontré et décrit dans le ticket, eMotors déclare eux le VpiLine en dernier pour avoir un bon démarrage. \r\n\r\n','2022-10-11 14:14:56',0),(2471,891,'Issue',432,'Notes de la session : \r\n\r\nPile 1 et pile 4 contexte similaire. pSession qui a été libérée alors que la WatchingThread n\'a pas été tuée (Possiblement bloquée par une mutex et libérée par la suite alors que le contexte n\'est plus bon ou bien mal tuée) \r\n\r\n\r\nPile 3: *désynchronisation entre le handle de Channel d\'une session et d\'une souscription (null sur la session vs un pointeur au niveau de la souscription) \r\n','2022-10-11 14:18:42',0),(2472,933,'Issue',1,'Bonjour,\r\nDans EA un float est déclaré comme un \"Real\" : <type xmi:type=\"uml:PrimitiveType\" href=\"http://www.omg.org/spec/UML/20131001/PrimitiveTypes.xmi#Real\"/>\r\nLe XiMulator convertie ces réels en Double. \r\nJe peux changer ce comportement.\r\n\r\nCordialement\r\nMichel Condemine','2022-10-14 16:57:41',0),(2473,933,'Issue',1,'Cela dit le type MOF est bien un Double :\r\nCF :\r\nhttps://www.omg.org/spec/UML/20131001/PrimitiveTypes.xmi\r\n\r\n<pre>\r\n<mofext:Tag xmi:type=\"mofext:Tag\" xmi:id=\"_4\" name=\"org.omg.xmi.schemaType\" value=\"http://www.w3.org/2001/XMLSchema#double\" element=\"Real\"/>\r\n</pre>\r\n\r\nCordialement\r\nMichel Condemine','2022-10-14 17:00:02',0),(2474,933,'Issue',1,'Après discussion on change rien','2022-10-14 17:33:07',0),(2475,932,'Issue',432,'Bonjour ,\r\n\r\nComme discuté au précédent call nous avons testé lorsque l\'on a un blocage d\'utiliser le ResetSessionState pour restituer le blocage lorsque il a lieu. \r\nOn va bien des traces dans les logs que il y a bien eu une tentative de Reset mais elle n\'a pas restitué l\'état de la connexion \r\n\r\nCi joint les logs, \r\n\r\nCordialement, \r\nL\'équipe Inetum\r\n\r\n','2022-10-17 16:16:44',0),(2476,932,'Issue',432,'Je monte la priorité de ce ticket car je m\'aperçoit sur des logs de la production que des messages similaires sont également présents et pourraient être bloquants si besoin de redémarrer PM et LM \r\n\r\n','2022-10-17 16:25:09',0),(2477,935,'Issue',1,'Bonjour,\r\nAvez-vous une question au sujet de ce message d\'information ?\r\n\r\nCordialement\r\nMichel Condemine','2022-10-17 16:29:35',0),(2478,935,'Issue',432,'Est-ce normal que nous en avons parce que nous avons un client UaExpert sur même hôte et donc ave même horloge qui essaye de se connecter dès le lancement du serveur? \r\nAurez vous de votre côté observé un tel message avec les derniers binaires serveur ? Serait-ce potentiellement lié au ticket 932? \r\nPourrez vous svp nous rappeler dans quel cas nous avons ce message ? (décalage horaire de combien et dans quel sens/à quel moment ? ) et dans quel état est le serveur suite à ces messages ? \r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-10-17 17:08:30',0),(2479,935,'Issue',1,'Bonjour,\r\nce message apparait quand le serveur n\'a pas assez de publish request dans sa PublishQueue.\r\nIl attend donc que le/les client(s) lui en envoie(s) davantage. \r\nIl s\'agit d\'un message d\'information très ancien qui n\'a rien à voir avec le ticket 932.\r\n\r\nCordialement\r\nMichel Condemine','2022-10-17 17:20:46',0),(2480,934,'Issue',565,'','2022-10-18 15:57:39',0),(2481,924,'Issue',496,'','2022-10-18 17:29:02',0),(2482,923,'Issue',573,'Hello Michel,\r\n\r\nWe have a problem about mqttpubslih. I couldnt find a minidump but I added the screen shot of the error\r\n\r\nBest Regards','2022-10-20 11:32:01',0),(2483,923,'Issue',1,'Hello Semih,\r\nCan\'t you generate a minidump?\r\nThe screenshot is not very useful. \r\nFor you information the configuration deployed by Inetum was publishing +100 Nodes.\r\nCan we plan meeting to take a look at this ?\r\n\r\nRegards\r\nMichel','2022-10-20 11:47:16',0),(2484,934,'Issue',1,'Comportement ok suite à la modification de la configuration. \r\nA valider par Valentin','2022-10-20 14:23:44',0),(2485,932,'Issue',1,'Bonjour,\r\nLe VpiUaClient utilise le SubscribedTagDetail Node en mode automatique et seulement en mode automatique.\r\nCordialement\r\nMichel Condemine','2022-10-20 19:59:51',0),(2486,923,'Issue',573,'Minidump','2022-10-21 11:08:57',0),(2487,923,'Issue',1,'Hello Semih,\r\ncan you create a new mini-dump with the attached binaries ?\r\n\r\nRegards\r\nMichel','2022-10-21 13:11:10',0),(2488,868,'Issue',1,'Le comportement semble correct car l\'arme n\'est pas en core terminée (non confirmée)\r\n\r\n','2022-10-21 15:34:53',0),(2489,866,'Issue',1,'','2022-10-25 10:17:33',0),(2490,832,'Issue',1,'','2022-10-25 10:18:04',0),(2491,868,'Issue',1,'PB reproduit avec UA expert et corrigé avec le serveur 1.0.8.1','2022-10-25 10:23:12',0),(2492,875,'Issue',1,'','2022-10-25 10:30:32',0),(2493,757,'Issue',1,'','2022-10-25 10:31:28',0),(2494,794,'Issue',1,'','2022-10-25 10:31:57',0),(2495,934,'Issue',565,'Bonjour,\r\n\r\nSuite à la modification, je vous confirme que le VPI OPC Ua Client ne rencontre plus aucun soucis, le serveur redémarre sans aucun problème. On peut donc clôturer ce ticket !\r\n\r\nCordialement,\r\n\r\nValentin DUFIEF','2022-10-28 15:07:50',0),(2496,923,'Issue',573,'New minidump','2022-10-31 15:42:46',0),(2497,923,'Issue',1,'Hello,\r\nThe crash occurs on SSL_clear(m_SSL);\r\nThis is not related to the configuration itself but something with the Broker that cause a corruption of the SSL layer in the Vpi.\r\nUnfortunately you are using an old build of OpenSLL. Can you try with the attached version of OpenSSL ?\r\nCreate a new mini-dump and sent it to me.\r\n\r\nRegards\r\nMichel','2022-10-31 16:09:31',0),(2498,923,'Issue',573,'New mini dump','2022-10-31 16:19:31',0),(2499,923,'Issue',1,'Hello,\r\nI made a small change to handle a specific scenario explained here in the Warning § https://www.openssl.org/docs/man1.1.1/man3/SSL_clear.html .\r\nCan you please have another try with this version 0.0.0.7\r\n\r\nRegards\r\nMichel','2022-10-31 16:37:37',0),(2500,923,'Issue',573,'Hello Michel, you can find the mini dump.','2022-11-02 15:09:23',0),(2501,923,'Issue',1,'Hello,\r\ncan you try with this version.\r\nThis is not a final one but it will help to understand the issue.\r\n\r\nRegards\r\nMichel','2022-11-02 16:01:53',0),(2502,923,'Issue',1,'According to your feedback in our WhatsApp Group i close this issue.','2022-11-03 10:48:13',0),(2503,867,'Issue',1,'Bonjour,\r\nce problème était complexe à comprendre. Il était reproductible dans UAExpert.\r\nIl est maintenant réglé.\r\n!clipboard-202211031154-a0xef.png!\r\n\r\nCordialement\r\nMichel Condemine','2022-11-03 11:54:38',0),(2504,869,'Issue',1,'Ce problème est réglé dans la nouvelle version du serveur.\r\n\r\nCordialement\r\nMichel Codnemine','2022-11-03 11:56:01',0),(2505,864,'Issue',1,'','2022-11-03 15:44:54',0),(2506,729,'Issue',1,'Quid de ce ticket ?','2022-11-03 15:45:38',0),(2507,728,'Issue',1,'Idem. Où en êtes-vous avec ce ticket?','2022-11-03 15:46:23',0),(2508,857,'Issue',1,'','2022-11-03 15:48:24',0),(2509,808,'Issue',1,'','2022-11-03 15:48:57',0),(2510,903,'Issue',1,'Hello,\r\nAddress is a string 100% related to each Vpi. So this cannot be really implemented.\r\nThe second changes is now implemented.\r\n\r\nRegards\r\nMichel\r\n','2022-11-03 15:51:27',0),(2511,931,'Issue',1,'','2022-11-04 14:15:14',0),(2512,921,'Issue',1,'Corrigé par prise en compte du GoodOverLoad par VpiLine','2022-11-04 14:16:05',0),(2513,882,'Issue',1,'Corrigé','2022-11-04 14:16:54',0),(2514,787,'Issue',1,'','2022-11-04 14:17:23',0),(2515,798,'Issue',1,'Problème corrigé par configuration. Origine pas vraiment déterminée.','2022-11-04 14:19:02',0),(2516,761,'Issue',1,'Corrigé avec les nouvelles versions du VFI.','2022-11-04 14:20:04',0),(2517,702,'Issue',1,'Problème corrgié','2022-11-04 14:24:02',0),(2518,606,'Issue',1,'','2022-11-04 14:32:32',0),(2519,654,'Issue',1,'','2022-11-04 14:32:57',0),(2520,655,'Issue',1,'','2022-11-04 14:33:23',0),(2521,656,'Issue',1,'','2022-11-04 14:33:51',0),(2522,657,'Issue',1,'','2022-11-04 14:34:18',0),(2523,659,'Issue',1,'','2022-11-04 14:35:01',0),(2524,660,'Issue',1,'','2022-11-04 14:35:22',0),(2525,661,'Issue',1,'','2022-11-04 14:36:21',0),(2526,675,'Issue',1,'','2022-11-04 14:37:21',0),(2527,691,'Issue',1,'Corrigé par l\'implementation des blocs de communication','2022-11-04 14:39:38',0),(2528,747,'Issue',1,'Erreur de configuration corrigée','2022-11-04 14:40:33',0),(2529,778,'Issue',1,'','2022-11-04 14:42:06',0),(2530,938,'Issue',1,'','2022-11-04 14:44:09',0),(2531,801,'Issue',1,'','2022-11-04 14:44:40',0),(2532,821,'Issue',1,'','2022-11-04 14:45:53',0),(2533,834,'Issue',1,'','2022-11-04 14:46:51',0),(2534,838,'Issue',1,'','2022-11-04 14:47:09',0),(2535,842,'Issue',1,'','2022-11-04 14:47:29',0),(2536,852,'Issue',1,'','2022-11-04 14:49:08',0),(2537,870,'Issue',1,'','2022-11-04 14:50:22',0),(2538,548,'Issue',1,'','2022-11-04 16:02:09',0),(2539,602,'Issue',1,'','2022-11-04 16:03:51',0),(2540,564,'Issue',1,'','2022-11-04 16:04:33',0),(2541,644,'Issue',1,'A creuser','2022-11-04 16:07:54',0),(2542,651,'Issue',1,'','2022-11-04 16:08:37',0),(2543,653,'Issue',1,'* OpcUa_BadResourceUnavailable 0x80040000\r\n* OpcUa_BadOutOfService 0x808D0000\r\n\r\nLe Vpi est en cours de reconnection. Situation +/- normale','2022-11-04 16:12:44',0),(2544,658,'Issue',1,'','2022-11-04 16:14:56',0),(2545,662,'Issue',1,'','2022-11-04 16:16:51',0),(2546,669,'Issue',1,'Plus de crash à l\'arrêt','2022-11-04 16:17:43',0),(2547,682,'Issue',1,'','2022-11-04 16:18:19',0),(2548,695,'Issue',1,'','2022-11-04 16:20:00',0),(2549,717,'Issue',1,'','2022-11-04 16:20:27',0),(2550,722,'Issue',1,'','2022-11-04 16:21:09',0),(2551,727,'Issue',1,'','2022-11-04 16:21:51',0),(2552,728,'Issue',1,'','2022-11-04 16:22:09',0),(2553,729,'Issue',1,'','2022-11-04 16:22:36',0),(2554,748,'Issue',1,'','2022-11-04 16:23:03',0),(2555,759,'Issue',1,'Corrigé par l\'introduction des blocs manuels','2022-11-04 16:24:01',0),(2556,771,'Issue',1,'','2022-11-04 16:25:42',0),(2557,779,'Issue',1,'','2022-11-04 16:26:23',0),(2558,809,'Issue',1,'','2022-11-04 16:27:23',0),(2559,812,'Issue',1,'','2022-11-04 16:27:47',0),(2560,823,'Issue',1,'','2022-11-04 16:30:28',0),(2561,830,'Issue',1,'','2022-11-04 16:31:27',0),(2562,855,'Issue',1,'','2022-11-04 16:38:58',0),(2563,862,'Issue',1,'','2022-11-04 16:39:32',0),(2564,865,'Issue',1,'','2022-11-04 16:40:12',0),(2565,915,'Issue',1,'','2022-11-04 16:42:38',0),(2566,922,'Issue',1,'Ou en est-on de ce ticket ?','2022-11-04 16:44:19',0),(2567,937,'Issue',1,'Bonjour,\r\nL\'enregistrement en % of value n\'est pas implémenté à ce jour.\r\nIl pourrait faire l\'objet d\'une implémentation dans la cadre d\'une action de sponsoring.\r\nL\'enregistrement a fréquence fixe est lui bien supporté. Merci de me fournir votre configuration.\r\n\r\nCordialement\r\nMichel Condemine','2022-11-04 19:06:34',0),(2568,937,'Issue',492,'Bonjour,\r\n\r\nVoici la configuration actuelle du serveur.\r\n\r\nCordialement,\r\n\r\nMatthieu Gatine\r\n\r\n','2022-11-07 09:18:04',0),(2569,940,'Issue',1,'Bonjour,\r\nmerçi pour ce retour.\r\nJe viens de corriger le problème.\r\nJE vous livre une nouvelle version dans les minutes à venir.\r\n\r\nCordialement\r\nMichel Condemine','2022-11-09 10:30:14',0),(2570,922,'Issue',433,'En local, j\'ai plutôt des problèmes de non synchro entre PM et LM (soit les 2 AS ne sont pas synchronisés en remontant, mais la synchro se débloque sur le Node dès lors qu\'il est remis à jour manuellement coté graine ; soit les 2 AS sont irrémédiablement désynchronisés).\r\n\r\nChez eMotors, il y a des crashs systématiques quand l\'ordre de démarrage suivant n\'est pas respecté : LM (graine) démarré complètement, puis seulement ensuite le PM (agrégateur). Quand ils font comme cela, ils tombent dans le cas de figure de synchro non effective au démarrage, mais débloquée Node par Node quand on vient les mettre à jour à la main. \r\nVous trouverez ci-joint la maquette incluant les procdump qu\'ils ont généré à la demande ce matin.\r\n','2022-11-09 12:42:36',0),(2571,922,'Issue',1,'Bonjour,\r\nCe ZIP ne permet pas de trouver grand chose de concluant.\r\nIl faudrait refaire ce test avec des binaire à jour. 1.0.8.1.\r\n\r\nDans tous les cas il n\'y a pas de lien avec le ValuesInit. \r\nMerci d\'ouvrir un autre ticket associé à ce problème.\r\n\r\nCordialement\r\nMichel Condemine','2022-11-09 16:23:14',0),(2572,922,'Issue',432,'Merci pour le retour\r\n\r\nNous remarquons que les minidump indiquent des Code d\'exception 0xC0000374\r\n\r\nLa dernière fois que j\'avais rencontré ce code d\'exception c\'était lié à une différence entre le .h d\'une fonction et le sdk utilisé (je peut expliquer d\'avantage si ce n\'est pas clair).\r\n\r\nPensez vous qu\'il est temps de resynchroniser nos sources/sdk avec vous ?\r\nNous ferons la même chose avec les .h/sdk de nos librairies internes à nous\r\n\r\nCordialement, \r\n','2022-11-09 17:32:06',0),(2573,922,'Issue',1,'Bonjour,\r\nJe pense qu\'il est essentiel de:\r\n1- créer un ticket pour ce problème\r\n2- réaliser ce test avec les derniers binaires\r\n\r\nCordialement\r\nMichel Condemine','2022-11-09 17:36:29',0),(2574,942,'Issue',432,'Fausse alerte c\'est une erreur de ma part\r\n\r\nCordialement, \r\n\r\nMichael','2022-11-10 16:02:15',0),(2575,942,'Issue',1,'','2022-11-10 16:04:02',0),(2576,941,'Issue',1,'En effet le serveur appel le VpiRead pour un traitement particulier.\r\nIl s\'agit d\'un traitement en place depuis plusieurs années. \r\nJe vais réfléchir à cette situation.\r\n\r\n','2022-11-10 16:06:08',0),(2577,944,'Issue',432,'La config','2022-11-14 12:29:36',0),(2578,945,'Issue',1,'Hello Semih,\r\nI suggest that you verify this with you IT Team.\r\nI\'m not involve in password definition \r\n\r\nRegards\r\nMichel','2022-11-15 16:12:13',0),(2579,930,'Issue',1,'Hello,\r\ni think that all those questions were addressed during our online training.\r\n\r\nRegards\r\nMichel Condemine','2022-11-15 16:15:58',0),(2580,918,'Issue',1,'Configuration error fixed a longtime ago','2022-11-15 16:18:59',0),(2581,901,'Issue',1,'What is the status of this issue ?','2022-11-15 16:19:59',0),(2582,897,'Issue',1,'This configuration issue is now fixed. ','2022-11-15 16:21:06',0),(2583,892,'Issue',1,'Fixed.\r\nI\'m waiting for your feedback on this fixe.\r\n\r\nRegards\r\nMichel','2022-11-15 16:22:01',0),(2584,829,'Issue',1,'OPC UA gateway based on OOUA is installed and is running properly for a while.','2022-11-15 16:23:04',0),(2585,540,'Issue',1,'Bonjour,\r\nCe ticket est en cours de réalisation.\r\n\r\nCordialement\r\nMichel','2022-11-17 14:19:36',0),(2586,549,'Issue',1,'','2022-11-17 14:20:07',0),(2587,551,'Issue',1,'Relatif au ticket 540','2022-11-17 14:22:09',0),(2588,595,'Issue',1,'','2022-11-17 14:22:30',0),(2589,841,'Issue',1,'','2022-11-17 14:22:49',0),(2590,845,'Issue',1,'','2022-11-17 14:23:02',0),(2591,884,'Issue',1,'','2022-11-17 14:23:16',0),(2592,941,'Issue',432,'Re, \r\n\r\n\r\nLe comportement est correct avec le serveur 1.0.8.3 \r\n\r\nNous vous tenons au courant de la suite de nos tests\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-11-18 16:50:56',0),(2593,948,'Issue',432,'Nous avons analysés 13 piles d\'appels de minidump d\'arrêt du serveur LM Assemblage \r\n\r\nNous avons 9 fois : \r\n\r\n!clipboard-202211181741-ppzkx.png!\r\n\r\nNous avons 3 fois: \r\n\r\n!clipboard-202211181741-wurse.png!\r\n\r\n\r\nNous avons 1 fois : \r\n\r\n!clipboard-202211181741-xmqky.png!\r\n\r\n\r\nNous avons les minidump + 3 paquets de logs de 3 des minidumps parmi les 13 \r\n\r\nJe mets aussi en PJ 2 doc : 1 avec toutes les piles d\'appels et un qui les recap \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n','2022-11-18 17:43:53',0),(2594,948,'Issue',432,'Nous avons complété les documents avec 6 minidumps supplémentaires\r\n\r\neMotors archive maintenant les logs à chaque redémarrage, nous avons donc normalement les logs pour les 6 nouveaux minidumps. \r\n\r\n\r\nL\'équipe Inetum','2022-11-22 14:06:02',0),(2595,948,'Issue',1,'Nouvelle livraison partielle, NO PDB, ici http://www.openopcua.org/redmine/attachments/download/3523/OOUA_DebugIPV4_Binaries_1.0.8.3.zip\r\nMerci de me faire un retour ASAP.\r\nSur ma plateforme de test le VpiUAClient fonctionne parfaitement en mode manu.\r\n\r\nCordialement\r\nMichel Condemine','2022-11-23 20:20:23',0),(2596,947,'Issue',432,'Bonjour, \r\n\r\nNous avons continué nos tests et nous avons constaté quelque chose de très étrange qui nous a échappé lors des premiers tests\r\n\r\n\r\nUaExpert \r\n\r\nStep 1 Montée d\'alarmes (l\'alarme monte bien)\r\nStep 2 Refresh d\'alarmes\r\n\r\n=> Les alarmes disparaissent\r\n\r\nLes traces Wireshark montrent cependant que l\'alarme a bien été envoyée \r\n\r\n\r\nGenesis \r\n\r\nStep 1 Montée d\'alarmes (les alarmes montent bien)\r\nStep 2 Plusieurs refresh d\'alarmes \r\n\r\n=> 4 refresh effectuées, 1 et 2 ok, 3 pas d\'alarmes, 4 ok\r\n\r\nLes traces Wireshark montrent cependant que l\'alarme a bien été envoyée même le 3ème coup. \r\nLors du Publish Response reçu dans le cadre du 3ème Refresh, l\'ordre des EventNotificationList est cependant identique à celui lors du 2ème et 4ème Refresh ( 2 Alarmes, 1 Refresh Start, 1 Refresh End, 1 Refresh Start, 1 Refresh End)\r\n\r\nNous avons sauvegardé les traces Wireshark et devront pouvoir reproduire ces deux phénomènes. \r\nAuriez vous des conseils sur comment identifier la source du problème ? (Peut être une comparer les champs des EventFieldList sur une alarme bien affichée vs une alarme mal affichée ? ) \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n\r\n\r\n','2022-11-24 17:30:12',0),(2597,947,'Issue',1,'Bonjour,\r\nà la premiere lecture de votre message, je pencherais pour un problème dans les clients.\r\nPour s\'en assurer il convient de vérifier que les eventlist sont toujours identiques en particulier: \r\npour Genesis: 1,2 4 vs 3 et \r\npour UAExpert avez-vous fait d\'autre refresh, un step 3 ou 4 ?\r\nSi oui avec quel résultat ? \r\n\r\nCordialement\r\nMichel Condemine','2022-11-24 17:40:23',0),(2598,947,'Issue',432,'Je me charge de la comparaison des Eventlist pour Genesis\r\n\r\nPour UaExpert je me suis précipité lors de la MAJ du ticket, l\'alarme est visible sur l\'onglet Events mais plus sur l\'onglet Alarmes.\r\nD\'autres Refresh ne corrigent pas le problème.\r\n\r\n\r\n','2022-11-24 17:51:02',0),(2599,948,'Issue',432,'Bonjour, \r\n\r\neMotors nous a transmis une pile d\'appel de l\'unique crash sur assemblage apparu hier. \r\n\r\nJ\'ai essayé de l\'analyser avec les symboles de l\'avant dernière livraison sans succès :\r\n\r\n!clipboard-202211251008-yhkhl.png!\r\n\r\nArrivez vous à l\'analyser de votre côté? (Minidump en PJ)\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-11-25 10:09:18',0),(2600,948,'Issue',1,'Bonjour,\r\nIl ne faut pas dériver de notre plan d\'action. A savoir:\r\n1- Installer la dernière livraison \r\n2- vérifier si elle corrige les crashs. \r\nTout autres actions sont, à mon sens, une perte de temps.\r\nCordialement\r\nMichel Condemine','2022-11-25 10:13:20',0),(2601,948,'Issue',432,'C\'est bien le cas, le crash d\'hier est apparu avec les derniers binaires\r\n\r\nPas de pdb sur les derniers binaires, hors il n\'y a que le VpiUaClient qui a évolué => c\'est la raison pourquoi j\'essaye d\'analyser la pile avec les pdb de l\'avant dernière livraison \r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-11-25 10:17:05',0),(2602,948,'Issue',1,'Non, le serveur, la lib client ont aussi évolué. \r\nQuoi qu\'il en soit je n\'ai pas les PDB associés car je suis en train de faire une modification dans le serveur.\r\nJe vous fais une livraison complète. \r\nIl faudrait l\'installer chez EMOTORS et reprendre les tests.\r\n\r\n\r\n\r\n','2022-11-25 10:33:32',0),(2603,947,'Issue',432,'Nous avons fait la vérifications des EventList, ils sont Ok \r\nNous pourrons discuter à la réunion d\'aujourd\'hui de la suite des actions à prendre\r\n\r\n\r\nCordialement, \r\nL\'équipe Inetum','2022-11-25 10:35:12',0),(2604,947,'Issue',1,'Bonjour,\r\nSi le serveur répond correctement au refresh à savoir :\r\n1- publish response sur call refresh\r\n2- Chaque response contient le bon nombre de message\r\n3- Chaque message contient les bons EventFields\r\n\r\nAlors le problème est dans les clients.\r\n\r\nLa seule action à envisager est d\'ouvrir une demande de support auprès de Unified Automation et Iconics.\r\n\r\nCordialement\r\nMichel Condemine','2022-11-25 10:42:58',0),(2605,948,'Issue',1,'Bonjour,\r\nmerci de ne pas utiliser les derniers binaires livrés à l\'instant.\r\nIls contiennent un problème.\r\n\r\n','2022-11-25 10:45:41',0),(2606,948,'Issue',432,'Bien reçu \r\n\r\nMichael','2022-11-25 10:47:44',0),(2607,950,'Issue',432,'Bonjour, \r\n\r\nMerci pour la livraison \r\n\r\nMalheureusement, nous rencontrons au bout du 3ème essai une désynchronisation cette fois dans les deux sens. \r\nNous remarquons que nous n\'avons plus non plus le message ShutdownMessage avec un status Good\r\n\r\nCi joint les fichiers de logs ClientLib et VpiUaClient\r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-11-28 11:35:52',0),(2608,950,'Issue',1,'Bonjour,\r\nAvez-vous utilisé le ResetSessionState ?\r\nCombien de temps avez-vous attendu le retour de la communication ?\r\n\r\nCordialement\r\nMichel Condemine','2022-11-28 11:54:21',0),(2609,950,'Issue',432,'Nouveau test effectué\r\n\r\nCette fois nous retombons sur le cas qu\'on vous a montré vendredi où la communication fonctionne sens descendant mais pas sens remontant\r\n\r\nNous retrouvons ce message: \r\n\r\n!clipboard-202211281159-sevim.png!\r\n\r\nEn activant le reset session state nous avons ces messages\r\n\r\n!clipboard-202211281201-hy1cr.png!\r\n\r\n3 minutes d\'attente, la connexion n\'est pas restituée\r\n\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n','2022-11-28 12:02:28',0),(2610,950,'Issue',1,'D\'apèrs vos log la comm devrait être rétablie.\r\nPourriez-vous faire une capture Wireshark ?\r\nJe souhaite vérifier que la lib envoi publish et read.\r\n\r\n\r\n\r\n','2022-11-28 12:10:32',0),(2611,950,'Issue',1,'Une autre question. \r\nEst-ce qu\'EMOTORS rencontre ce problème ?\r\nVous m\'avez indiqué :\r\n1- qu\'il apparait que vous lancez le Plant avant le/les Line.\r\n2- Qu\'il n\'apparait jamais quand vous ne lancez pas le VpiLine\r\n\r\nEst ce que j\'ai bien compris ?','2022-11-28 12:14:24',0),(2612,950,'Issue',432,'Okay j\'effectue les traces Wireshark \r\n\r\neMotors ne nous as pas remonté avoir rencontré ce problème\r\n\r\n1- Le problème apparait lorsque le PM et LM sont lancés en simultané\r\nJe n\'ai pas effectué de test où je laisse un temps après que le PM ait démarré avant de démarrer le LM \r\nC\'est okay si on démarre le LM, et puis qu\'on attend son démarrage complet avant de démarrer le PM\r\n\r\n2- Je n\'ai jamais eu le problème lorsque le VpiLine est inactif. Mais nous ne testions pas souvent cette configuration. Par contre lorsqu\'il n\'y a que le VpiLine d\'activé (pas de VFI ni de VpiValuesInit), nous rencontrions pas le problème\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n','2022-11-28 13:32:09',0),(2613,950,'Issue',432,'Ci joint la trace Wireshark\r\n\r\nLe port utilisé est le port 6011\r\nTraces effectuées sans UaExpert. \r\n\r\nDémarrage du LM puis immédiatement le LM\r\nAprès avoir attendu de confirmer qu\'il y a bien une désychro nous avons activé le ResetSessionState et avons attendu 2 minutes\r\n\r\nLes PublishResponse ne semblent pas envoyés par le LM \r\n\r\n','2022-11-28 13:54:42',0),(2614,950,'Issue',1,'Bonjour,\r\nla trace WS montre quelque chose de bizarre.\r\nPourriez-vous poster votre configuration PM ?\r\n\r\ncordialement\r\nMichel Condemine','2022-11-28 15:02:49',0),(2615,950,'Issue',432,'Ci joint le PM \r\n','2022-11-28 15:14:42',0),(2616,950,'Issue',1,'Merci, \r\nJE vois dans la trace WS que les monitoredItems sont créés avec un MonitoredMode : Disabled.\r\nIls ne seront donc pas notifiés par le serveur.\r\nIl reste donc à comprendre pourquoi car dans votre configuration ils sont bien OpcUa_MonitoringMode_Reporting\r\n\r\nC\'est une bonne piste','2022-11-28 15:26:13',0),(2617,950,'Issue',432,'Pourrez vous me montrer où dans la trace vous voyez ça ? \r\n\r\nAfin que je vérifie la valeur de ce champ dans un scénario où la comm est bonne \r\n\r\n','2022-11-28 15:28:58',0),(2618,950,'Issue',1,'Trace 139 et 140.\r\nIl s\'agit d\'un createMonitoredIem','2022-11-28 15:30:44',0),(2619,950,'Issue',432,'Merci \r\n\r\nJe confirme votre trouvaille\r\n','2022-11-28 15:52:46',0),(2620,950,'Issue',1,'Ma trouvaille !!','2022-11-28 16:01:40',0),(2621,950,'Issue',1,'Bonjour,\r\nune nouvelle livraison associé à ce ticket.\r\nhttp://www.openopcua.org/redmine/attachments/download/3538/Livraison%20Binaires%20Debug-IPV4%20-%2029-11-2022_v1.0.8.4.zip\r\nMerci de tester et de me faire un retour ASAP \r\n\r\nCordialement\r\nMichel Condemine','2022-11-29 09:45:13',0),(2622,950,'Issue',432,'Bonjour, \r\n\r\n\r\n3 tests effectués: \r\n\r\n1er et 3ème, connexion NOK dans les deux sens. Le PM ne réagit pas au ResetSessionState\r\n2ème connexion NOK sens LM vers PM \r\n\r\n\r\nPour info nous sommes toujours avec le mode PARANOID_MODE 1 \r\n\r\nLorsqu\'on laisse le LM terminer son démarrage avant de démarrer le PM c\'est toujours OK \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-11-29 11:06:56',0),(2623,950,'Issue',1,'Pourriez vous me fournir les logs ainsi qu\'une trace WS.\r\nQuand vous dites que le PM ne réagit pas au ResetSessionState. Parlez-vous de la trace ?\r\n','2022-11-29 11:12:08',0),(2624,950,'Issue',1,'Ce dont j\'ai besoin et comment faire:\r\n1- Arrêter UAExpert et tous clients UA\r\n2- Lancer WS et activer la capture\r\n3- Lancer PM et LM\r\n4- Laisser tourner 1 ou 2 min (verifier que votre lien ne fonctionne pas)\r\n Si le lien fonctionne recommencer au point 2\r\n5- m\'envoyer log et trace WS\r\n\r\nC\'est assez urgent','2022-11-29 11:37:21',0),(2625,950,'Issue',432,'Ci-joint un cas où la communication est NOK sens LM/PM mais Ok sens PM/LM \r\n\r\n\r\nJ\'ai eu d\'autres cas exceptionnels mais étonnants tels qu\'un PM HS et un LM qui crash avec une pile d\'appel sur VpiLine improbable\r\nJ\'ai aussi majoritairement eu des cas où c\'est ok (surtout lorsque les UaExperts sont déconnectés) \r\n\r\nJe continue mes tests en début d\'après midi\r\n\r\nMichael\r\n','2022-11-29 12:49:27',0),(2626,950,'Issue',432,'Cas 2 où la communication est NOK sens LM/PM mais Ok sens PM/LM\r\n\r\n','2022-11-29 14:27:29',0),(2627,950,'Issue',1,'Très bien,\r\nLes logs montrent ce l\'on voit dans WS et valide mon hypothèse.\r\nA savoir, des monitoredItems créés avec un MonitoringMode Disabled.\r\nC\'est l\'origine du problème\r\n<pre>\r\n2022-11-29T11:41:23.914Z CLIENT_INFO RestoreMonitoredItems>Call to CreateMonitoredItems to restore 18 MonitoredItems\r\n2022-11-29T11:41:23.914Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[0] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Id.SerialNum_Emotors_Id.Emotors_Id\r\n2022-11-29T11:41:23.915Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[1] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.PlantToLine.Minimum_Erp_Of\r\n2022-11-29T11:41:23.916Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[2] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.PlantToLine.Data_Present\r\n2022-11-29T11:41:23.916Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[3] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.PlantToLine.Data_Collected\r\n2022-11-29T11:41:23.917Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[4] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.PlantToLine.ERP_Of_Counter\r\n2022-11-29T11:41:23.918Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[5] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.PlantToLine.ERP_Of_List\r\n2022-11-29T11:41:23.918Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[6] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.LineToPlant.Exchange_Part_Produce_Finished.Part_Produce_List\r\n2022-11-29T11:41:23.919Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[7] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.LineToPlant.Exchange_Part_Produce_Finished.Data_Present\r\n2022-11-29T11:41:23.920Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[8] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.LineToPlant.Exchange_Part_Produce_Finished.Data_Collected\r\n2022-11-29T11:41:23.920Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[9] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.LineToPlant.Exchange_ERP_OF_Finished.ERP_OF_List\r\n2022-11-29T11:41:23.921Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[10] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.LineToPlant.Exchange_ERP_OF_Finished.Data_Present\r\n2022-11-29T11:41:23.922Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[11] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.LineToPlant.Exchange_ERP_OF_Finished.Data_Collected\r\n2022-11-29T11:41:23.923Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[12] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.Recipes.Resend_Recipes\r\n2022-11-29T11:41:23.923Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[13] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.Recipes.Data_Collected\r\n2022-11-29T11:41:23.924Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[14] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.Recipes.Recipe_List\r\n2022-11-29T11:41:23.925Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[15] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.Recipes.Data_Present\r\n2022-11-29T11:41:23.926Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[16] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.PlantToLine.ProductionTargetRefreshRequested\r\n2022-11-29T11:41:23.926Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems ItemToCreate[17] is required Disabled. No notficication will be made for ns=6;s=ProductionLine.Exchange.PlantToLine.ProductionTargetRefreshDone\r\n2022-11-29T11:41:23.931Z CLIENT_ERROR CreateMonitoredItems>OpcUa_ClientApi_CreateMonitoredItems 18/18 uStatus=0x00000\r\n</pre> \r\n\r\nDonc le premier appel à CreateMonitoredItems contient des paramètres corrects. Il retourne ServiceFault.\r\nLa tentative de restauration est bien effectuée mais avec des paramètres incorrects.\r\n\r\nJe vous livre une nouvelle version dans la minute.\r\n\r\nPourriez vous la tester ASAP\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n','2022-11-29 15:20:27',0),(2628,950,'Issue',1,'Pour la derniere version livrée.\r\nIl me faudrait les logs et la capture WS afin de vérifier que le correctif fonctionne.\r\n\r\n','2022-11-29 15:22:04',0),(2629,950,'Issue',432,'Bien reçu \r\n\r\nJe m\'en occupe\r\n\r\nPar contre je ne sais pas comment différencier un cas nominal d\'un cas où le correctif c\'est activé \r\n\r\nMichael','2022-11-29 15:23:46',0),(2630,950,'Issue',1,'Ok, faisons un Team. Je vous expliquerai','2022-11-29 15:26:05',0),(2631,950,'Issue',432,'C\'est okay pour la restitution (quasiment) \r\n\r\nIl nous manque le DataChangeFilter qui ne semble pas être le même entre le 1er CreateMonitoredItemsRequest et le second dans le cas d\'un ServiceFault en réponse du premier\r\n\r\n1er : \r\n!clipboard-202211291627-iibvr.png!\r\n\r\nsecond: \r\n\r\n!clipboard-202211291628-zuvtz.png!\r\n','2022-11-29 16:29:01',0),(2632,950,'Issue',1,'Je regarde cela.\r\nEst-ce que la connexion repar,malgré tout, après le serviceFault ?','2022-11-29 16:40:11',0),(2633,950,'Issue',432,'Oui elle est bien réparée ','2022-11-29 16:41:32',0),(2634,950,'Issue',1,'Je viens d\'ajouter le Filter.\r\nhttp://www.openopcua.org/redmine/attachments/download/3546/Livraison%20Binaires%20Debug-IPV4%20-%2029-11-2022_AM2_v1.0.8.4.zip','2022-11-29 17:02:48',0),(2635,951,'Issue',1,'Hello,\r\nI carefully studied the Grafana\'s Wireshark capture.\r\nIt appears that GRAFANA passer to the server several NodeId to extract in one call.\r\nie: with one widget or graph contains 3 variables the serveur receive a HistoryRead with 3 variables.\r\nIf a dashboard contains 10 graph or widget made of 3 nodes Grafana will call ten-time HistoryRead.\r\nThis is not perfect but i cannot change that. This is on Grafana side.\r\nOn the serveur side. It make call one by one. I mean that if the server receive a HistoryRead made of 3 nodes it will split them in 3 VfiRead and this is not optimal.\r\nThis is something i can change to improve performance. So this way the server call the VfiRead once for a bunch of node increasing the performance.\r\n\r\nAm i clear ?\r\n\r\nRegards\r\nMichel','2022-11-29 17:41:35',0),(2636,950,'Issue',432,'Tout m\'a l\'air OK (Trace en PJ)\r\n\r\nJe fais plus de tests demain et je transmets ces binaires à eMotors\r\n\r\n\r\nMerci beaucoup,\r\n\r\nL\'équipe Inetum','2022-11-29 18:23:11',0),(2637,951,'Issue',1,'Hello,\r\nI made a first series of changes in both the OOUAServer and the VfiPostGres that should improve the performance with Grafana.\r\nCan we setup a call, in order to:\r\n1- Deploy this new version on a Test environment\r\n2- Run the test with Grafana.\r\n\r\nI\'m only available this afternoon 2-4pm and tomorrow afternoon 3-6pm. Let me know if it fit your agenda\r\n\r\nRegards\r\nMichel','2022-11-30 09:52:42',0),(2638,950,'Issue',432,'Bonjour, \r\n\r\n\r\nJ\'ai continué les tests\r\n\r\n16 test effectués : \r\n\r\n13 OK \r\n2 crash \r\n1 blocage bidirectionnel \r\n0 blocage unidirectionnel\r\n\r\npour le crash et le blocage bidirectionnel je suis en train d\'essayer d\'essayer de rassembler des infos pour vous les transmettre\r\n\r\nPour le moment j\'ai : \r\n\r\npour le crash, 2 traces Wireshark + 2 minidump + 1 paquet de logs PM/LM\r\npour le blocage bidirectionnel, rien pour le moment \r\n\r\n\r\nNous sommes en réunion eMotors toute l\'après-midi, je continue les tests/ vous transmets les résultats plutôt demain\r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2022-11-30 12:27:15',0),(2639,950,'Issue',1,'Bonjour,\r\npourriez-vous partager les logs et minidump.\r\nConcernant les blocages et afin de débloquer la situation avez testé les ResetSessionState ?\r\n\r\nCordialement\r\nMichel Condemine','2022-11-30 14:05:39',0),(2640,950,'Issue',432,'Ci-joint la trace + minidump pour le 2ème crash, et logs + trace + minidump pour le 3ème\r\nPour info le minidump est de type C00...374 donc je pense inexploitable\r\nPossible piste : réception d\'un DeleteMonitoredItemRequest alors que le serveur n\'a jamais répondu au CreateMonitoredItemsRequest \r\n\r\n \r\n\r\nPour le double blocage, non je n\'ai pas testé le Reset, j\'essaye prochaine fois que je le rencontre','2022-11-30 14:39:00',0),(2641,950,'Issue',1,'Bonjour,\r\nmerci pour ces infos.\r\nJe pense que le crash vient de publiscallback lors de la reception d\'un service fault.\r\nJ\'ai fait la modification en sachant qu\'il y avait un risque.\r\nJe regarderai dans l\'AM si possible.\r\n\r\ncordialement\r\nMichel Condemine','2022-11-30 14:45:19',0),(2642,950,'Issue',1,'Les miniDumps des crash2 et crash3 nous amènent dans le ValueInit. \r\nLa callstack cohérente mais douteuse :\r\n!clipboard-202211301459-8ve1z.png!\r\n\r\nJe ne sais pas comment interpréter ce résultat.\r\nLa trace WS du crash3 montre un crash avant une procédure de reprise UAClient. Cependant celle-ci a été lancé comme l\'indique le LOG.\r\n\r\nPOURRIEZ-vous me préciser ce qui crash le LM ou le PM. D\'après ce que je vois dans le Dump ce doit être le LM.\r\n\r\ncordialement\r\nMichel Condemine','2022-11-30 15:21:14',0),(2643,950,'Issue',432,'C\'est bien le LM qui crash\r\nJe ne pense pas non plus que la pile est à prendre en compte. Je pense que on voit ici la victime de la corruption mémoire et non la cause\r\n ','2022-11-30 15:52:27',0),(2644,950,'Issue',432,'J\'ai réussi à avoir un cas de crash et un cas de blocage Bidirectionnel\r\n\r\nPour le crash (crash 4), en PJ minidump logs et traces\r\n\r\nPour le blocage bidirectionnel en PJ logs et traces\r\n\r\n- Au niveau des traces : 1-390 = démarrage PM/ LM et blocage, 390-1478 connexion avec UaExpert pour confirmer que il y a bien un blocage\r\n- J\'ai essayé un ResetSessionState, rien de plus à ce moment là sur les traces ni les logs VpiUaClient/ClientLib. Trois messages sur le log serveur Plant au moment du Reset Session State : \r\n\r\n2022-11-30T17:36:01.839Z SERVER_ERROR AddInSamplingIntervalDiagnosticsArray>AddSamplingIntervalnTheAddressSpace failed 0x805e0000\r\n2022-11-30T17:36:14.684Z SERVER_ERROR configuration file inconsistancy. Cannot find forward reference i=40 ns=1;i=311 -->i=0 \r\n2022-11-30T17:36:15.893Z SERVER_ERROR configuration file inconsistancy. Cannot find forward reference i=40 ns=1;i=311 -->i=0 \r\n\r\nPar la suite, j\'ai éteint les deux serveurs, pas de déblocage de situation de dernière minute\r\n\r\n\r\nRécap des tests aujourd\'hui en démarrage simultané PM/LM\r\n15 OK\r\n4 crash\r\n2 blocage bidirectionnel\r\n0 blocage unidirectionnel \r\n\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n','2022-11-30 18:48:52',0),(2645,952,'Issue',1,'Hello,\r\nAs discuss yesterday this issue is related to a complex situation.\r\nFirst the Log access authorization\r\nSecond the new Archive handling mechanism seem not working properly with you configuration.\r\n\r\nAs agreed on december 1 i will investigate the issue on december 2. So the binaries will be updated and the server will restart couple of time.\r\n\r\nRegards\r\nMichel','2022-12-02 08:52:20',0),(2646,951,'Issue',1,'Hello,\r\nThe new version of the server is now available.\r\nIt fixes performance issue on the HA Facet.\r\nI made a bunch of tests with UAExpert requesting the serveur below a result summary:\r\nWith a graph of 3 nodes :\r\nServer request it to the VFI in one call.\r\nThe VFI request to postgreSQL and receive a replies made of :\r\n* Node 1 : 115988 values\r\n* Node 2 : 53789 values\r\n* Node 3 : 139627 values\r\nIt take 4656ms to extract the complete request from the DB for 193416 values. We are talking about the amount of time required by the VFI to extract data from PostgreSQL.\r\n\r\nThe complete Treatment on server side start at 20:43:59.278 (HistoryRead from UAExpert) and finished at 20:44:28.956 (All reply sent to UAExpert)\r\n+/- 30sec. So, 5sec for PG and 25sec spent on the request fragmentation. \r\nEach fragment is made of 10000 values/node. \r\nThis constraint comes from OPC UA spec in its binary encoding. \r\n\r\n\r\nWhat to keep in mind here ?\r\nPostGreSQL extraction even with dates in text format is not a bottleneck.\r\nThe time is spend the request/reply fragmentation and not in the low level DB extraction\r\nThe number of extracted values (sample) is THE key factor. \r\nThe time span have only an indirect impact.\r\n\r\nI will deploy this new version tomorrow and will drive some live tests.\r\n\r\nRegards\r\nMichel\r\n\r\n','2022-12-04 22:46:08',0),(2647,954,'Issue',1,'Semih can you please use only IMERYS project and its subproject to report issues.\r\nRegards your problem :\r\nYou have 3 log messages.\r\nThe two first one are related to the VpiUaClient.\r\n<pre>\r\nLoadConfigurationFile failed because SAVE_ONCHANGE parameter is not setup\r\n</pre>\r\nThis message is related to the VpiUaClient. Please take a look at the documentation\r\n<pre>\r\nTRIGGER_URI is not specified. So the reconfiguration cannot be requested from a client\r\n</pre>\r\nSame here. This message is related to the VpiUaClient. Take a look at the documentation.\r\n\r\nThe final one is related to VpiValueInit.\r\n<pre>\r\nLoadConfigurationFile C:\\OPCUA\\OOUA_IMERYS_PROD\\Project\\ValuesInit-00200.dat\r\n</pre>\r\nit indicated that the file cannot be found. So fix your configuration.\r\n\r\nRegards\r\nMichel\r\n\r\n','2022-12-06 14:43:03',0),(2648,950,'Issue',432,'Ticket à fermer, le symptôme initial est résolu. \r\nLes tickets 955 956 permettront de tracer les échanges sur les 2 autres cas identifiés\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-12-07 11:41:35',0),(2649,949,'Issue',432,'Plus de fuite!\r\nOn a pris 0,2 MB en 4 heures 30 \r\n\r\nCordialement, \r\n\r\nMichael','2022-12-07 18:59:26',0),(2650,947,'Issue',432,'Notes sur nos investigations aujourd\'hui \r\n\r\n\r\nPour UaExpert : \r\n\r\nL\'ordre des EventFieldList est peut être la cause de la non visibilité des alarmes lors d\'un refresh au niveau de l\'onglet Alarms. L\'ordre actuel constaté est Alarmes, RefreshStart, RefreshEnd\r\n\r\n\r\nPour Genesis : \r\n\r\nLe problème constaté est le non affichage des alarmes sur certains Refresh\r\nLes traces Wireshark montrent une potentielle désynchronisation des ClientHandle sur les Events envoyé \r\n\r\n\r\nCas parfait: \r\n\r\n!clipboard-202212071902-lzaez.png!\r\n\r\n\r\nCas incorrect mais fonctionnel : \r\n\r\n!clipboard-202212071903-ctfiv.png!\r\n\r\nCas incorrect mais fonctionnel : \r\n\r\n!clipboard-202212071902-kqqks.png!\r\n\r\n\r\nAussi pour info nous avons remonté le constat de l\'arrivé du DeleteMonitoredItemsRequest (des anciens items) après un CreateMonitoredItemsRequest (des nouveaux items) lors du Refresh\r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n','2022-12-07 19:05:02',0),(2651,949,'Issue',1,'','2022-12-07 19:08:54',0),(2652,953,'Issue',573,'','2022-12-09 12:53:13',0),(2653,835,'Issue',1,'','2022-12-10 20:30:13',0),(2654,825,'Issue',1,'','2022-12-10 20:30:49',0),(2655,961,'Issue',1,'Bonjour,\r\nje VpiValueInit positionne le DeviceState à OpcUa_Good ou autre après avoir mis à jour la cache du serveur.\r\nCordialement\r\nMichel Condemine','2022-12-13 09:36:36',0),(2656,962,'Issue',1,'Hello,\r\nthis error message is return by Grafana. It shows 2 things at least :\r\n* Grafana is based on a .Net OPC UA implementation\r\n* Grafana is not correctly implementing Historical Access\r\n\r\nWhat does it mean : \"Grafana is not correctly implementing Historical Access\"\r\nIt mean that when Grafana is calling HistoryRead it supposed to support reply with what is called in OPC UA a \"ContinuationPoint\".\r\nIt probably generate an issue with DataTime format. Again the error is on Grafana side.\r\nI suggest 2 quick actions \r\n* Open an issue with Grafana tech support\r\n* Make a Wireshark capture of the OPC UA HistoryRead between Grafana and OpenOpcUaCoreServer\r\n\r\nCan you also provide logs.\r\nThere is nothing more that i can do on my side.\r\n\r\nRegards\r\nMichel\r\n','2022-12-14 06:47:59',0),(2657,961,'Issue',432,'Bonjour, \r\n\r\nPourrez vous svp rouvrir ce ticket? \r\n\r\nNous avons effectué un bout de code qui au démarrage du VpiLine : \r\n\r\nBoucle sur la lecture d\'une valeur restituée par le Values Init (ErpOfList) et la lecture du Device State du VpiValuesInit\r\n\r\nLa boucle s\'arrête dès qu\'on trouve bien un ErpOfList de taille strictement supérieure à 0\r\n\r\n\r\nLe Device State est à Good malgré le fait que l\'on n\'arrive pas à encore récupérer la valeur restituée par le VpiValuesInit\r\n\r\nIl semblerait que du point de vue de la cache serveur le device state est mis à Good avant que la valeur de ErpOfList soit à jour au niveau de la cache\r\n\r\n\r\nNous avons effectué un autre test où nous avons coupé la connexion réseau à la BDD, cette fois le device state n\'est pas à good (comportement souhaité). \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum\r\n\r\n','2022-12-15 17:09:44',0),(2658,961,'Issue',1,'Bonjour,\r\nil n\'y a aucun doute sur le fait que le DeviceState est positionné à Good après l\'appel au TransfertToCoreServerCache.\r\nCependant le ValueInit peut réaliser plusieurs appels au TransfertToCoreServerCache. Le DeviceState passera à Good après le premier.\r\n\r\nCordialement\r\nMichel Condemine','2022-12-15 17:28:07',0),(2659,961,'Issue',432,'Dans le cas testé, il n\'y a d\'après les logs du VpiValuesInit qu\'un seul appel au TransferToCoreServerCache avec 8 mise à jours : \r\n\r\n2022-12-15T16:00:57.700Z ERROR TransfertToCoreServerCache,8/8 to transfert\r\n2022-12-15T16:00:57.703Z ERROR 8 nodes TransfertToCoreServerCache uStatus=0x00000\r\n\r\nPourtant du point de vue des lectures de cache du serveur effectué par le VpiLine, nous nous retrouvons avec un DeviceState à Good et une liste ErpOfList non restituée. \r\nJe comprends que le VpiValuesInit mette le DeviceState à Good après l\'appel du TransferToCoreServerCache\r\n\r\n1) Quelle est la valeur initiale du Device State avant que le VpiValuesInit la mette à jour ? \r\n2) Est-il possible que le DeviceState aies été récupéré par un VpiRead avant que le VpiValuesInit autorise sa sortie dans la cache serveur? \r\n3) Est-il possible que le serveur traite les mises à jour de sa cache dans un ordre autre que celui envoyé par le VpiValuesInit à travers le TransferToCoreServerCache? \r\n\r\n\r\nCordialement, \r\nL\'équipe Inetum\r\n','2022-12-15 18:02:27',0),(2660,961,'Issue',432,'4) Est-ce que la NotifyCallback que l\'on utilise pour lire dans la Cache du serveur renvoie un retour de méthode Global status code à Good si le nœud que l\'on essaye de lire n\'a pas encore été crée ?\r\nAutrement dit, pour savoir si la lecture s\'est bien passé vaut-il mieux consulter ce ustatus global ou les ustatus individuel passés en paramètre et remplis par la Callback? \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-12-15 18:35:29',0),(2661,961,'Issue',1,'Bonjour,\r\nci-dessous mes réponses :\r\n1) Quelle est la valeur initiale du Device State avant que le VpiValuesInit la mette à jour ?\r\n La valeur initiale est Vpi_BadNotConnected\r\n2) Est-il possible que le DeviceState aies été récupéré par un VpiRead avant que le VpiValuesInit autorise sa sortie dans la cache serveur?\r\n Je ne comprends pas bien la question. Le VpiValuesInit n\'interdit pas la lecture de la valeur du DeviceState. Aussitôt dispo un client peut lire le DeviceState\r\n3) Est-il possible que le serveur traite les mises à jour de sa cache dans un ordre autre que celui envoyé par le VpiValuesInit à travers le TransferToCoreServerCache?\r\n Non\r\n4) Est-ce que la NotifyCallback que l\'on utilise pour lire dans la Cache du serveur renvoie un retour de méthode Global status code à Good si le nœud que l\'on essaye de lire n\'a pas encore été crée ?\r\nAutrement dit, pour savoir si la lecture s\'est bien passé vaut-il mieux consulter ce ustatus global ou les ustatus individuel passés en paramètre et remplis par la Callback?\r\nLes deux sont interessant. Mais je recommande en premier d\'utiliser le status individuel.\r\n\r\nCordialement\r\nMichel Condemine','2022-12-16 13:15:43',0),(2662,963,'Issue',1,'Bonjour,\r\nles méthodes doivent toujours s\'executée rapidement. J\'entends par rapidement, moins d\'une seconde.\r\nSi des traitements longs leurs sont associées ils doivent être notifiés au serveur de manière asynchrone.\r\n\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-12-16 13:18:56',0),(2663,962,'Issue',1,'Hello,\r\ndo you have some news about this problem ?\r\nDo you have the serveur LOG ?\r\n\r\nRegards\r\nMichel','2022-12-16 13:19:59',0),(2664,960,'Issue',1,'Hello,\r\nWhat do you mean ?\r\nCan you clarify the issue ?\r\n\r\nRegards\r\nMichel','2022-12-16 13:21:22',0),(2665,961,'Issue',432,'Les deux StatusCode indiquent que c\'est ok \r\n\r\nJe n\'ai plus d\'autres pistes pour comprendre le problème. En voyez vous? \r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-12-16 14:22:34',0),(2666,961,'Issue',1,'Cela signifie que le DeviceState est Good. \r\nDonc que le ValueInit a mise à jour ses valeurs.\r\nVous lisez quel NodeId ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2022-12-16 14:31:35',0),(2667,961,'Issue',432,'ns=1 i=25004 (le subsystem id du du VpiValuesInit étant 25000)\r\n\r\net une liste d\'OF ERP\r\n\r\nCordialement, \r\n\r\nL\'équipe Inetum','2022-12-16 14:35:30',0),(2668,961,'Issue',1,'Vous lisez bien la valeur du DeviceState et pas son StatusCode ?','2022-12-16 14:47:15',0),(2669,961,'Issue',432,'Nous vérifions\r\n\r\nLa Value.StatusCode\r\nSon Status Code\r\nLe status code global de l\'appel au notify callback\r\nLe status code renvoyé en paramètre du notify callback','2022-12-16 14:58:05',0),(2670,960,'Issue',573,'Hello Michel,\r\n\r\nI am not sure but the opc ua server is not running. Stephane can be able to read data from PI. ','2022-12-19 11:09:09',0),(2671,960,'Issue',1,'Hello Semih,\r\ni\'m not sure to understand the relationship between PI and this OpenOpcUa server.\r\nIs the machine hosting the OOUAServer running ?\r\n\r\nRegards\r\nMichel','2022-12-19 13:44:44',0),(2672,965,'Issue',1,'Bonjour,\r\nci-joint :\r\n* l\'exemple OOUA LUA.\r\n* L\'outil Siemens\r\nSource OOUA à venir\r\nA demain pour notre session hebdo.\r\n\r\nCordialement\r\nMichel','2022-12-22 18:05:10',0),(2673,966,'Issue',432,'Nodeset de type d\'exemple \r\n\r\n','2022-12-23 15:50:48',0),(2674,961,'Issue',432,'Je n\'ai pas su aller au bout de la manip\r\n\r\nJe vous propose de continuer en début d\'année\r\n\r\nTrace des actions effectuées aujourd\'hui \r\n\r\n- correction au niveau du VpiValuesInit d\'un appel au NotifyDeviceState trop tôt => on lit bien depuis le VpiLine un VpiBadNotConnected\r\n- découverte que autre chose viens modifier le DeviceState du VpiValuesInit (pas un Vpi) => le VpiLine lit le DeviceState à Good alors que tout n\'est pas encore bon \r\n\r\n\r\nLa console VpiLine : \r\n\r\n!clipboard-202212232003-s9izf.png!\r\n\r\nMichael','2022-12-23 20:04:28',0),(2675,967,'Issue',447,'','2022-12-23 20:31:42',0),(2676,968,'Issue',447,'','2022-12-28 17:13:48',0),(2677,968,'Issue',447,'','2022-12-28 17:21:03',0),(2678,968,'Issue',447,'Log VpiS7 a cleaner\r\n\r\n','2022-12-28 17:55:10',0),(2679,968,'Issue',447,'lOG du PM qui n\'arrive pas à se reconnecter \r\n\r\n09:29: 1ER arrêt LM puis remise ON - pas de reconnexion\r\n09:39: 2nd arrêt LM puis remise ON - pas de reconnexion\r\n10:00: ResetSessionState - rentre dans une boucle : ERROR ResynchronizeHandles failed:cannot retrieve Sessions handle 0x800f0000','2022-12-29 11:06:10',0),(2680,968,'Issue',447,'','2022-12-29 16:35:06',0),(2681,968,'Issue',447,'','2022-12-29 17:42:21',0),(2682,968,'Issue',447,'','2022-12-29 17:45:38',0),(2683,968,'Issue',447,'analyse en .bak','2022-12-30 16:22:54',0),(2684,968,'Issue',447,'Blocage au 2eme rechargement PLC\r\nLog + Trace Wireshark\r\n','2022-12-31 10:38:44',0),(2685,968,'Issue',447,'Même Blocage mais dans les Log il y a une différence\r\nAvant il y a eu un message VpiWarmStart\r\nDans ceux-ci non','2022-12-31 10:54:29',0),(2686,954,'Issue',573,NULL,'2023-01-02 09:55:30',0),(2687,952,'Issue',573,NULL,'2023-01-02 09:55:44',0),(2688,943,'Issue',573,'The file is more than 90 mb. I am uploading to Google Drive','2023-01-02 09:58:40',0),(2689,943,'Issue',573,'Hello Michel,\r\n\r\nI added the pdb file','2023-01-02 10:36:21',0),(2690,943,'Issue',573,'Hello Michel,\r\n\r\n\r\nI already added the PDB files you can find it above.\r\n\r\nBest Regards','2023-01-04 10:23:55',0),(2691,957,'Issue',565,'Bonjour Mr. Condemine,\r\n\r\nPetit up de la demande qui est toujours d\'actualité,\r\n\r\nCordialement,\r\n\r\nValentin','2023-01-04 17:21:44',0),(2692,968,'Issue',447,'','2023-01-05 22:25:24',0),(2693,969,'Issue',1,'Hello Semih,\r\ncan you provide your configuration :\r\n* XPRJ file\r\n* Nodeset file\r\n* NodeIdmap file\r\n* Xmi file\r\n* eapx file\r\n\r\nRegards\r\nMichel','2023-01-06 09:59:34',0),(2694,969,'Issue',573,'Hello Michel,\r\n\r\nWhen I downloaded your Generation file from Redmine, I saw you are using the Ximulator Version v.1.0.5.7. I compared files with this version NodeID OK. Do you have a chance to upload this version to Redmine? \r\n\r\nBest Regards','2023-01-09 09:02:44',0),(2695,962,'Issue',573,'Hello Michel,\r\n\r\nYou can find grafana capture and server log. I added 3 nodes and tested.\r\n\r\nBest Regards','2023-01-10 10:19:46',0),(2696,962,'Issue',573,'Hello Michel,\r\n\r\n\r\nI added the vfi and server logs','2023-01-10 13:07:30',0),(2697,960,'Issue',573,NULL,'2023-01-10 13:10:10',0),(2698,943,'Issue',573,'Hello Michel,\r\n\r\nThe server stopped. Whenever you are free, you can share the new binaries then I can deploy it.\r\n\r\nBest Regards','2023-01-10 13:11:35',0),(2699,968,'Issue',447,'Trace LM assemblage service fault sur data request','2023-01-10 15:03:49',0);
INSERT INTO `journals` VALUES (2700,962,'Issue',1,'Hello,\r\nLogs show a problem in the application configuration. \r\nAn out of range value is trying to be store in the DB. This need to be fixed in the server config.\r\nIt seems that at least 3 node in PAP1, PAP2, Grinders are not properly setup. But this is not the Grafana issue we are tracking.\r\n\r\nNow regarding HistoricalAccess.\r\nI need to make the link between Grafana request and logs.\r\nThe log show some very great performance on Vfi and Server side. \r\nCan you help me to figure this out ?\r\n\r\nRegards\r\nMichel\r\n\r\n\r\n','2023-01-10 15:29:12',0),(2701,962,'Issue',1,'This an assistance request not an issue in OOUA Server.\r\nI move it to the pilot project','2023-01-10 16:13:10',0),(2702,969,'Issue',1,'The last version is on the redmine. Can you use it ?\r\nI move the issue to the Pilot subProject','2023-01-10 16:14:25',0),(2703,968,'Issue',447,'Log sur test du 11/01/23','2023-01-11 18:06:33',0),(2704,961,'Issue',1,'Bonjour,\r\nj\'ai corrigé le \"problème\". \r\nLa correction pourra être vue comme une regression. \r\nElle est cependant indispensable pour permettre le fonctionnement que vos attendez. \r\nCette modification s\'inscrit dans l\'évolution que j\'ai réalisé pour répondre à votre demande lié au VPILine.\r\nJe vous rappel que cette modification a été faite dans le cadre du partenariat et ne serait plus possible dans le cadre des nouvelles modalités.\r\n\r\nA partir de maintenant chaque VPI devra gérer son DeviceState. \r\nIl en sera responsable et pour une initialisation complète du serveur tous les Vpi devront placer leur DeviceState à Good.\r\nJe prévois un lot de problème lié a cette évolution.\r\n\r\nLes nouveau binaires vous seront livrés dans les jours qui viennent.\r\n\r\nCordialemnt\r\nMichel Condemine\r\n','2023-01-11 18:13:16',0),(2705,969,'Issue',1,'Semih,\r\nas discuss today. I\'m stil waiting for the ZIP file made of the XiMulator whole project.\r\nRegards\r\nMichel','2023-01-11 22:26:26',0),(2706,969,'Issue',573,'Hello Michel,\r\n\r\nI found the problem. I didnt use our xprj file and create a new project. I generated a new nodeset file via new xprj. That\'s why NodeID changed. It\'s a good lesson learn for me','2023-01-12 09:24:50',0),(2707,962,'Issue',573,'Log file of the server','2023-01-12 13:08:15',0),(2708,968,'Issue',447,'Crash sur resetsessionstate','2023-01-12 14:48:39',0),(2709,971,'Issue',447,'','2023-01-13 21:02:33',0),(2710,971,'Issue',1,'Crash sur abo sur l\'UAObject station.\r\nCrash sur \r\n!clipboard-202301132127-amucf.png!\r\n!clipboard-202301132127-kidpl.png!\r\n!clipboard-202301132128-filvi.png!\r\n','2023-01-13 21:28:46',0),(2711,970,'Issue',1,'Corrigé avec Lionel. Le correction est dans la derniere livraison.\r\nLe problème était lié à la nouvelle gestion du DeviceState demandé par INETUM pour la synchronisation du démarrage du VpiLine.\r\nCordialement\r\nMichel Condemine','2023-01-15 16:35:26',0),(2712,968,'Issue',1,'','2023-01-15 16:35:57',0),(2713,967,'Issue',1,'Bonjour,\r\nj\'ai corrigé ce problème dans la dernière version \r\n* XiMulator 1.0.2.7\r\n* XmiToNodeSetLibrary 1.0.5.9\r\n\r\nCordialement\r\nMichel Condemine','2023-01-15 16:41:18',0),(2714,943,'Issue',1,'','2023-01-16 08:47:00',0),(2715,972,'Issue',1,'Hello Semih,\r\nin order to be able to use a mini-dump i need the related pdb files.\r\nCan you also provide the related LOG file ?\r\n\r\nRegards\r\nMichel','2023-01-16 08:48:07',0),(2716,972,'Issue',573,'Hello Michel,\r\n\r\nLogs and PDB files','2023-01-16 08:55:42',0),(2717,972,'Issue',1,'Hello Semih,\r\ncan you provide the binaries too ?\r\n\r\nregards\r\nMichel','2023-01-16 13:28:53',0),(2718,973,'Issue',1,'Semih,\r\nwhat anomaly are you talking about ?\r\nWe have a 907ko log file with a bunch of messages.\r\n\r\nCan you clarify ?\r\n\r\nRegards\r\nMichel','2023-01-17 10:51:00',0),(2719,973,'Issue',573,'Hello Michel,\r\n\r\nLine 7581\r\n2023-01-16T16:31:59.670Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage>VfiHistoryReadEx Succeeded in 24953ms\r\n2023-01-16T16:31:59.671Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage>VfiHistoryReadEx return 3280 values for ns=36;i=6274\r\n2023-01-16T16:31:59.671Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage>VfiHistoryReadEx create a CHistoryContinuationPoint from index 1000-->2000\r\n2023-01-16T16:31:59.672Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage>VfiHistoryReadEx create a CHistoryContinuationPoint from index 2001-->3001\r\n2023-01-16T16:31:59.673Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage>VfiHistoryReadEx create a CHistoryContinuationPoint from index 3002-->3280\r\n2023-01-16T16:31:59.775Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage. Search for CP[0/1]={9b3447c3-260e-4088-9cf9-f79361f3915b}\r\n2023-01-16T16:31:59.844Z SERVER_ERROR SecureChannel 1762407883 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-16T16:32:00.083Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage. Search for CP[0/1]={e965c7af-0b78-4ed9-920a-e8a7c8c0033e}\r\n2023-01-16T16:32:25.045Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage. Search for CP[0/1]={9b3447c3-260e-4088-9cf9-f79361f3915b}\r\n2023-01-16T16:32:25.046Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage. GetHistoryContinuationPoint 0/1 failed 0x803e0000\r\n2023-01-16T16:32:25.047Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage>VfiRead and HistoricalResponseStatus was properly done. Your client request is corrupted\r\n2023-01-16T16:32:25.049Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage. Search for CP[0/1]={e965c7af-0b78-4ed9-920a-e8a7c8c0033e}\r\n2023-01-16T16:32:25.050Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage. GetHistoryContinuationPoint 0/1 failed 0x803e0000\r\n2023-01-16T16:32:25.053Z SERVER_ERROR CSessionServer::ProcessQueuedHistoryReadMessage>VfiRead and HistoricalResponseStatus was properly done. Your client request is corrupted\r\n2023-01-16T16:32:25.056Z SERVER_ERROR CSessionServer::ProcessQueuedReadRequest>Could not send response to client. Status 0x80AD0000!','2023-01-17 11:02:07',0),(2720,973,'Issue',1,'What do you want to know ?','2023-01-17 11:06:08',0),(2721,973,'Issue',1,'','2023-01-17 15:43:40',0),(2722,974,'Issue',447,'Dans les logs il faut regarder le Log Du Vpi Assembly','2023-01-17 22:34:44',0),(2723,974,'Issue',447,'Ci-joint les trace Wireshark et Log (Vpi UaClnt-UMY-210-Mod1-Assembly)\r\n\r\nBlocage sur impossible to stop watching thread\r\n\r\nCette anomalie arrive 8 fois sur 10 environ\r\n\r\n!clipboard-202301190131-ezltk.png!\r\n','2023-01-19 01:32:40',0),(2724,974,'Issue',1,'Bonjour,\r\nj\'ai besoin de connaitre l\'IP et le port du LM auquel le PM n\'arrive a se connecter.\r\nJe suppose que le port est le 5775 et que LM en cause est l\'assemblage. \r\n* Est ce correcte ?\r\n* Si oui quel est son IP ?\r\n\r\nCordialement\r\nMichel','2023-01-19 08:08:15',0),(2725,974,'Issue',1,'Bonjour,\r\nl\'étude des log et de la trace WS montrent pas grand chose cependant. On y voit :\r\nWireShark\r\n* Un publish entre 10.57.100.7 et 10.100.8.2, 10.100.2.2, 10.100.1.2\r\n* Un client Python se connecte et se déconnecte sans rien faire de particulier. A quoi sert ce client ?\r\n* Des lectures (Read) sur le node State i=2259, UAExpert et sur le node CurrentTime i=2258, OOUAClientLib (WatchingThread).\r\n\r\nLOG ClientLib UaClnt-UMY_D210_Mod1_Assembly.log. Attention les LOG sont en niveau ERROR seulement.\r\n\r\n<pre>\r\n2023-01-18T22:11:28.262Z CLIENT_ERROR WatchingThread encounter a problem. InternalStatus is not correct 0x800d0000\r\n</pre>\r\nRien après avant 23:51:46. Est ce que le PM était connecté au LM Assemblage dans ce interval ?\r\n<pre>\r\n2023-01-18T23:51:46.726Z CLIENT_ERROR OpcUa_ClientApi_Read failed 0x80ad0000\r\n</pre>\r\nDéclenche un arrêt propre de la WatchingThread La clientLib essai de se reconnecter. Cependant le DiscoverEndpoint échoue sur CommunicationError.\r\nLa situation reste identique jusqu\'a 23:56:35\r\n<pre>\r\n2023-01-18T23:56:35.842Z CLIENT_ERROR Could not create a new session. uStatus=0x800a0000 ServiceResult=0x00000\r\n</pre>\r\nEnsuite la création de session échoue et la WatchingThread après divers tentative de connexion infructueuse se retrouve bloqué.\r\n\r\n<pre>\r\n2023-01-18T23:58:06.159Z CLIENT_ERROR Impossible to stop the InternalWatchingThread. Timeout InternalServerStatus=0xa50000\r\n</pre>\r\nC\'est le dernier message dans le log. Est ce que le serveur a été arrêté a ce moment la ?\r\n\r\nLa fenêtre de donnée WS ne correspond pas à la fenêtre des fichiers LOG.\r\n\r\nEst ce que l\'on pourrait organiser un meeting a 21h00 ce soir ?\r\n\r\nCordialement\r\nMichel Condemine\r\n','2023-01-19 09:52:37',0),(2726,975,'Issue',1,'','2023-01-19 15:24:02',0),(2727,975,'Issue',1,'','2023-01-19 15:24:20',0),(2728,975,'Issue',1,'','2023-01-19 15:44:49',0),(2729,974,'Issue',548,'Bonjour, \r\nJ\'ai voulu faire le test avec WireShark sur le plant tout en rallumant le LM PREPA STACK mais j\'ai eu l\'accès à la VM que tardivement. \r\nJ\'ai un impératif, je ne pourrai donc pas vous fournir les WireShark avant votre point avec Lionel à 21h, mes excuses. \r\nCdt, \r\nLoic','2023-01-19 17:41:18',0),(2730,974,'Issue',447,'Crash sur arret LM assemblage','2023-01-19 22:38:27',0),(2731,974,'Issue',447,'Trace avec Erreur Service Fault BadInetrnalError + Log vpi UaClnt Assembly en .Bak\r\nAddresse IP 10.100.5.2','2023-01-19 23:03:07',0),(2732,974,'Issue',1,'Investigation à mener :\r\n* Pourquoi un serviceFault apparait sur CreateMonitoredItem sur la ligne assemblage\r\n* Pourquoi les client ne peuvent se connecter tant qu\'un Vpi n\'est pas initialisé','2023-01-19 23:49:44',0),(2733,974,'Issue',447,'Au démarrage du LM assemblage nous avons ces messages dans le LOG - peut-etre une piste du pourquoi il y a service fault !\r\n\r\n<pre>\r\n20T01:09:56.919Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.919Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.919Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.919Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.935Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.935Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.935Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.935Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.935Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.935Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.935Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.935Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.951Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:56.951Z SERVER_ERROR SecureChannel 0 received a TransportConnectionClosed. RawRequestContext=0x0\r\n\r\n2023-01-20T01:09:57.107Z SERVER_ERROR VpiParseAddIds was already initialized. Oops !!! It will prehempt VpiParseAddIdEx \r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.169Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.185Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.200Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.295Z SERVER_ERROR VpiParseAddIds was already initialized. Oops !!! It will prehempt VpiParseAddIdEx \r\n2023-01-20T01:09:57.311Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.311Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.311Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.311Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n2023-01-20T01:09:57.311Z SERVER_ERROR UpdateSubscribedTagDetailContent failed: 0x80020000\r\n2023-01-20T01:09:57.327Z SERVER_ERROR UpdateSamplingIntervalAndAddToDeviceSubscriptionDetail failed 0x80020000\r\n</pre>','2023-01-20 02:29:01',0),(2734,976,'Issue',1,'Bonjour,\r\nje peux me rendre disponible à 10h30.\r\nD\'ici là pourriez vous me décrire le problème ?\r\n\r\nCordialement\r\nMichel Condemine','2023-01-20 09:23:25',0),(2735,972,'Issue',573,'Hello Michel,\r\n\r\nCloud OPC UA Sub server stopped again.\r\n\r\nBest Regards','2023-01-20 14:28:14',0),(2736,972,'Issue',1,'Hello,\r\ni released a binaries updpate here : http://www.openopcua.org/redmine/attachments/download/3697/Livraison%20Binaires%20Debug-IPV4%20-%2020-01-2023_v1.0.8.5.zip\r\nCan you deploy it and provide feedback ASAP.\r\n\r\nRegards\r\nMichel','2023-01-20 15:41:13',0),(2737,976,'Issue',447,'Bonjour\n\nAprès quelques analyses voici ce que j\'ai constaté:\nLa conversion Uint16 vers Int16 fonctionne si nous indiquons dans le subsystem du VpiUaclient le même type que dans le serveur distant. C\'est-à-dire Instance Int16, VpiUaClient Unit16 et Serveur de la CN en Uint16.\nLa conversion Doubler vers Float fonctionne si nous indiquons dans le subsystem du VpiUaclient le même type que dans le serveur distant. C\'est-à-dire Instance Float, VpiUaClient Double et Serveur de la CN en Double.\nCeci a pour effet que les client comme UaExpert ou les Vpi comme VpiLine voit ces variables avec le datatype du serveur de la CN. Comme le Datatype est contrôlé par le VpiLine, nous sommes bloqué.\n\nSerait-il possible que le Datatype au niveau du serveur OOUA reste le même que celui de l\'instance?\n\n------------------------------------------------------------------------------------\n\nAutre problème:\nLa conversion Tableau de Byte (Ascii) vers String ne fonctionne pas dans le sens Write (Le read en publish et en read direct fonctionne) sur la connexion au serveur des CN. Le type retourné par la CN est pourtant un byte. En gardant la même configuration que pour les S7-1500 voici ce que nous avons :\n\n!clipboard-202301210512-cxykf.png!\n\net dans les logs :\n!clipboard-202301210512-w9scr.png!\n\n\n','2023-01-21 05:14:11',0),(2738,974,'Issue',447,'Bonjour\r\n\r\nAvec la livraison du 20/01: Le PM s\'est reconnecté une fois au LM et au 2eme redémarrage non. Pour info le LM et PM avait la mise à jour\r\n\r\nAvec cette livraison j\'ai constaté 2 choses: le LM a crashé à l\'arrêt - ci -joint le procdump (Crash_LM_OpenOpcUaCoreServer_Debug.exe_230121_045751)\r\n\r\nEt lors de la 2ème reconnexion du PM il y a eu un crash du PM également (2 fois sur 2 tentatives de reconnexion) - ci-joint le procdump (Crash_PM_OpenOpcUaCoreServer_Debug.exe_230121_002740 et Crash_PM_OpenOpcUaCoreServer_Debug.exe_230119_225302) + trace wireshark + Logs en info (Log du Vpi UaClient Assembly) Adresse IP 10.100.5.2\r\n\r\n\r\n\r\n','2023-01-21 05:21:56',0),(2739,976,'Issue',447,'En complément ca m\'a permis de vérifier que le caractères 13 sur la conversion Tableau de byte vers string dans le sens lecture ne fonctionne pas\r\n\r\n!clipboard-202301210537-sejm0.png!\r\n','2023-01-21 05:37:00',0),(2740,976,'Issue',1,'Lionel Claudel wrote in #note-3:\r\n> En complément ca m\'a permis de vérifier que le caractères 13 sur la conversion Tableau de byte vers string dans le sens lecture ne fonctionne pas\r\n> \r\n> !clipboard-202301210537-sejm0.png!\r\n\r\nJe ne comprends pas. 13==0xD il n\'y a pas de CR dans l\'image ci-dessus','2023-01-21 08:59:52',0),(2741,976,'Issue',1,'Lionel Claudel wrote in #note-2:\r\n> Bonjour\r\n> \r\n> Après quelques analyses voici ce que j\'ai constaté:\r\n> La conversion Uint16 vers Int16 fonctionne si nous indiquons dans le subsystem du VpiUaclient le même type que dans le serveur distant. C\'est-à-dire Instance Int16, VpiUaClient Unit16 et Serveur de la CN en Uint16.\r\n> La conversion Doubler vers Float fonctionne si nous indiquons dans le subsystem du VpiUaclient le même type que dans le serveur distant. C\'est-à-dire Instance Float, VpiUaClient Double et Serveur de la CN en Double.\r\n> Ceci a pour effet que les client comme UaExpert ou les Vpi comme VpiLine voit ces variables avec le datatype du serveur de la CN. Comme le Datatype est contrôlé par le VpiLine, nous sommes bloqué.\r\n> \r\n> Serait-il possible que le Datatype au niveau du serveur OOUA reste le même que celui de l\'instance?\r\n> \r\nLe comportement décrit est conforme à ce qui est implémenté et est parfaitement consistant. A savoir :\r\nOn déclare un type dans le NodeSet (server-side). Il est possible d\'ajuster ce type, dans le subsystem du VpiUaClient, afin de prendre en compte une discordance entre le serveur source (ici la CN) et le serveur agrégateur (ici le Line).\r\nEn aucun cas le Datatype du serveur agrégateur ne doit être contrôlé par un Vpi. Le VpiLine doit tenir compte du type natif déclaré dans le serveur (ici le Line) et faire, comme le fait le VpiUaClient, les conversions appropriées.\r\n> ------------------------------------------------------------------------------------\r\n> \r\n> Autre problème:\r\n> La conversion Tableau de Byte (Ascii) vers String ne fonctionne pas dans le sens Write (Le read en publish et en read direct fonctionne) sur la connexion au serveur des CN. Le type retourné par la CN est pourtant un byte. En gardant la même configuration que pour les S7-1500 voici ce que nous avons :\r\n> \r\n> !clipboard-202301210512-cxykf.png!\r\n> \r\n> et dans les logs :\r\n> !clipboard-202301210512-w9scr.png!\r\n\r\n','2023-01-21 09:08:17',0),(2742,975,'Issue',1,'Je ferme ce ticket dans le lien MQTT pub fonctionne.','2023-01-21 09:09:30',0),(2743,974,'Issue',1,'Bonjour,\r\nj\'ai corrigé le crash associé au mini-dump OpenOpcUaCoreServer_Debug.exe_230121_002740\r\nJe vous fait la livraison dans la journée. Est ce quelle pourrait être test aujourd\'hui ?\r\n\r\nPour le mini-dump OpenOpcUaCoreServer_Debug.exe_230121_045751. C\'est plus compliqué. Il s\'agit un problème lié à des notification en TimeOut. C\'est un très très vieux problème. Je vais regarder.\r\n\r\nCordialement\r\nMichel','2023-01-21 09:32:11',0),(2744,974,'Issue',447,'Crash LM sur fermeture \r\nLe PM ne se s\'arrête plus','2023-01-21 23:09:02',0),(2745,974,'Issue',447,'Reconnexion PM NOK - Impossible to stop watching thread\r\n','2023-01-21 23:12:54',0),(2746,974,'Issue',447,'Crash PM, mais je n\'ai pas fait attention à quel moment','2023-01-21 23:17:16',0),(2747,974,'Issue',1,'Tous les crashes on la même origines \r\n!clipboard-202301212333-dpddj.png!\r\n','2023-01-21 23:34:03',0),(2748,976,'Issue',1,'Bonjour,\r\nj\'ai réglé le problème.\r\nJe vous ferai la livraison demain matin.\r\nIl faudra ajuster les SubSystem. Il est impératif que les types déclarés dans le SubSystem soient concordant avec ceux du serveur agrégateur.\r\n!clipboard-202301221937-0dgpf.png!\r\n!clipboard-202301221939-pyt3u.png!\r\n!clipboard-202301221940-raqe7.png!\r\n\r\nJe vous propose d\'en parler demain matin (23/01/2023)\r\n\r\nCordialement\r\nMichel Condemine','2023-01-22 19:41:26',0),(2749,972,'Issue',573,'Helllo Michel,\r\n\r\nServer stopped again','2023-01-23 11:55:40',0),(2750,972,'Issue',1,'Hello Semih,\r\nthis crash occurs when the server was starting at 11:49:49\r\nThis is not the issue we are tracking. \r\nIt seems that the server cannot clone the .Log file as C:\\OPCUA\\OOUA_IMERYS_PROD\\Logs\\\\SQL-00200.bak\r\n\r\nCan you clarify ?\r\n\r\nRegards\r\nMichel\r\n','2023-01-23 12:23:09',0),(2751,972,'Issue',1,'Michel Condemine Admin wrote in #note-7:\r\n> Hello Semih,\r\n> this crash occurs when the server was starting at 11:49:49\r\n> This is not the issue we are tracking. \r\n> It seems that the server cannot clone the .Log file as C:\\OPCUA\\OOUA_IMERYS_PROD\\Logs\\\\SQL-00200.bak\r\n> \r\n> Can you clarify ?\r\n> \r\n> Regards\r\n> Michel\r\n\r\nI use this feedback to fix the issue related to Open/Read/Write authorization.\r\n\r\nBR\r\nMichel','2023-01-23 13:25:31',0),(2752,888,'Issue',553,'','2023-01-23 16:39:18',0),(2753,974,'Issue',548,'_Un client Python se connecte et se déconnecte sans rien faire de particulier. A quoi sert ce client ?_\r\n--> Pour répondre à la question du programme Python qui se connecte en permanence : il s\'agit d\'un script qui permet de voir si un serveur fonctionne ou non. \r\nPuis de l\'afficher dans un Dashboard. \r\nIl se connecte en permanence au serveur car lorsque je m\'abonne en python, il se peut que la connexion se perde. Il faudrait que j\'améliore le code afin d\'améliorer cela. \r\nEst-ce que ça impacte les performances du serveur ? \r\nCdt, \r\nLoïc ','2023-01-23 16:57:28',0),(2754,977,'Issue',553,'','2023-01-23 17:15:15',0),(2755,976,'Issue',447,'Crash sur abonnement String vers Tableau de Byte','2023-01-23 17:35:34',0),(2756,977,'Issue',1,'Bonjour,\r\ndans la version 1.0.8.5 si vous activez le mode INFO le serveur affichera un message dans le LOG à chaque écriture.\r\n<pre>\r\nServer_Write _[N]_ node(s) to write\r\n</pre>\r\nNotez qu\'avec cette version le niveau de log peut être changé sans redémarrer le serveur.\r\n\r\nCordialement\r\nMichel Condemine','2023-01-23 20:45:47',0),(2757,974,'Issue',447,'A priori la reconnexion fonctionne mais besoin de confirmer cela ce amrdi avec plus de test\r\nen revanche à la fermeture il y a toujours un crash (ci-joint le procdump)','2023-01-23 22:04:22',0),(2758,974,'Issue',447,'Crash sur rechargement PLC','2023-01-23 22:37:32',0),(2759,979,'Issue',1,'Hello Semih,\r\nYou loose the connection.\r\nIs the server Crashed ?\r\nWhat did it happen ?\r\nMaybe the PLC was off-line ?\r\nYou loose the com with just those PLCs ?\r\n\r\nRegards\r\nMichel','2023-01-24 10:36:23',0),(2760,979,'Issue',573,'Hello Michel,\r\n\r\nThe server is running now. The only problem is coming from these 2 PLC. I checked with Stephane and PLCs are running.\r\n\r\nBest Regards','2023-01-24 10:39:34',0),(2761,979,'Issue',573,'Hello Michel,\r\n\r\nThere is no S7Comm activities \r\n\r\nBest Regards','2023-01-24 13:40:34',0),(2762,961,'Issue',432,'Bonjour, \r\n\r\nNous avons pu effectuer des tests avec les binaires Livraison Binaires Debug-IPV4 - 24-01-2023_v1.0.8.5 que eMotors nous a transmis ce matin. \r\nLe comportement est comme souhaité\r\n\r\nMerci\r\n\r\nMichael ','2023-01-24 16:27:09',0),(2763,961,'Issue',1,'Merci pour ce retour.\nNotez que la version livré il y a +/- 10 jours corrigeais déjà ce problème\n\nCordialement\nMichel Condemine','2023-01-24 17:20:15',0),(2764,974,'Issue',450,'Crash au premier démarrage Rotor','2023-01-27 14:22:29',0),(2765,981,'Issue',1,'Bonjour Paul,\r\npourriez vous m\'en dire plus ?\r\nQu\'entendez vous par : \"Y aurit-il une piste de reflexion côté VPIInitValue ?\"\r\n\r\nCordialement\r\nMichel Condemine','2023-01-30 18:24:55',0),(2766,980,'Issue',1,'Bonjour,\r\nla pile des appels ne dit pas grand chose.\r\nJ\'y vois cependant un CancelSendResponse étrange.\r\nDans tous les cas. Il est impératif que les méthodes s\'execute assez vite. \r\nJe dirais impérativement en moins de 15 secondes.\r\nEn tout cas elles ne doivent pas bloquer le serveur au delà de cette valeur.\r\nSinon le serveur perdra la lien avec le client et il se produira un crash de ce genre.\r\n*Je vais voir pour retourner un ServiceFault.*\r\n\r\nCordialement\r\nMichel Condemine','2023-01-30 18:33:19',0),(2767,982,'Issue',1,'Bonjour Guy-Alexis,\r\nIl s\'agit des messages de log relatif aux tentatives de reconnexion sur un serveur OPC UA.\r\nPar défaut la tentative de reconnexion se produit toute les 20 secondes. \r\nJe pourrais modifier la fréquence de reconnexion au fils du temps pour passer de 20 seconde à 1 minute.\r\nDans tous les cas il faut informer l\'utilisateur que le serveur est vivant et tente bien de se reconnecter.\r\n\r\nQu\'en pensez vous ?\r\n\r\nCordialement\r\nMichel Condemine','2023-01-31 10:51:36',0),(2768,982,'Issue',1,'','2023-01-31 10:51:47',0),(2769,976,'Issue',447,'Capture WireShark + Log + Config de test sur SinumerikOne\r\ntest sur Double vers Float, Int16 vers UInt16 et Tableau Byte vers String\r\n\r\nEcriture fonctionne vers SInumerik One mais après un laps de temps dans le serveur OOUA revient la valeur d\'origine\r\nAprès mise à jour de la valeur dans la Sinumerik One le serveur OOUA ne se met pas à jour (test réalisé après l\'écriture)','2023-01-31 11:20:49',0),(2770,976,'Issue',447,'Test Sinumerik One\nAu démarrage, le serveur OOUA reprend bien les valeurs de la CN\nEn changeant les valeurs dans la CN, le serveur OOUA ne récupère pas la mise à jour\nCi-joint trace Wireshark de ce test\n@Ip: 10.100.1.12 Port 5775 dans la CN','2023-01-31 11:34:21',0),(2771,976,'Issue',447,'Crash sur sinumerik One','2023-01-31 12:25:02',0),(2772,981,'Issue',455,'Paul Losson wrote:\r\n> Bonjour Michel,\r\n> nous avons essayés sur des nodes de recharger des valeurs par le VPIInitvalue (VpiLine OFF)\r\n> Nous avons eu un rechargement de valeurs datant d\'il y à 2H alors que des valeurs ont été enregistrer via le VFI en base entre temps\r\n> Y aurit-il une piste de reflexion côté VPIInitValue ?\r\n> Merci\r\n> \r\n> Cordialement\r\n> Losson Paul\r\n\r\n\r\n\r\nMichel Condemine Admin wrote in #note-1:\r\n> Bonjour Paul,\r\n> pourriez vous m\'en dire plus ?\r\n> Qu\'entendez vous par : \"Y aurit-il une piste de reflexion côté VPIInitValue ?\"\r\n> \r\n> Cordialement\r\n> Michel Condemine\r\n\r\n\r\n\r\nBonjour Michel,\r\nVoici un exemple du problème :\r\nAprès la production d\'aujourd\'hui, le compteur NbCompletedOk est à 417, cette valeur est bien la dernière archivée en base\r\n!AvantRechargementInitValue.png!\r\n\r\nDes que l\'on effectue un redémarrage avec uniquement le VFI et VPIInitValue d\'activé la valeur remise à jour dans le node est 88 \r\n(cela va en plus écrire 88 en base car le VFI est actif)\r\n!ApresRechargementInitValue.png!\r\n\r\nle 88 doit être une ancienne valeur que le VFI va chercher trop loin\r\nIl doit y avoir une explication à ce phénomène\r\n\r\nCordialement\r\nLosson Paul','2023-01-31 17:24:59',0),(2773,972,'Issue',573,'Hello Michel,\r\n\r\nThe server stopped again(run 6 days). I added the dump file','2023-02-01 10:11:53',0),(2774,972,'Issue',573,'','2023-02-01 10:12:49',0),(2775,983,'Issue',1,'Bonjour,\r\nqu\'entendez vous par :\r\n<pre>\r\n pourriez vous m\'indiquer les méthodes à utiliser pour lire une configuration.\r\n</pre>\r\nVous pouvez utiliser les fonctions OpenOpcUa_SaveConfig et OpenOpcUa_LoadConfig pour sauvegarder et recharger un configuration à partir d\'un fichier XML conforme au schéma OpenOpcUaClientConfig.xsd.\r\n\r\nCordialement\r\nMichel Condemine','2023-02-01 14:39:10',0),(2776,983,'Issue',431,'Excusez moi, ma question n\'était sans doute pas claire, je cherche à me connecter à un serveur OPC actif et à lire la liste des nodeId afin de récupérer leurs caractéristiques pour les utiliser avec CreateMonitoredItem\r\nMerci','2023-02-01 15:04:38',0),(2777,983,'Issue',1,'Bonjour,\r\ndans ce cas vous devrez utiliser la fonction OpenOpcUa_Browse.\r\n<pre>\r\n // init Browse Description\r\n OpcUa_BrowseDescription* pNodesToBrowse=OpcUa_Null;\r\n OpcUa_Int32 a_nNoOfNodesToBrowse=1;\r\n pNodesToBrowse=(OpcUa_BrowseDescription*)OpcUa_Alloc((sizeof(OpcUa_BrowseDescription)*a_nNoOfNodesToBrowse));\r\n // First one\r\n OpcUa_BrowseDescription_Initialize(&pNodesToBrowse[0]);\r\n pNodesToBrowse[0].BrowseDirection=(OpcUa_BrowseDirection)m_iBrowseDirection;\r\n pNodesToBrowse[0].IncludeSubtypes=true;\r\n pNodesToBrowse[0].NodeClassMask = m_NodeClassMask; //\r\n pNodesToBrowse[0].ResultMask=OpcUa_BrowseResultMask_All;\r\n // On browse a partir de pFromNodeId\r\n OpcUa_NodeId_CopyTo(pFromNodeId,&(pNodesToBrowse[0].NodeId));\r\n OpcUa_NodeId_Initialize(&(pNodesToBrowse[0].ReferenceTypeId));\r\n pNodesToBrowse[0].ReferenceTypeId.IdentifierType=OpcUa_IdentifierType_Numeric;\r\n pNodesToBrowse[0].ReferenceTypeId.NamespaceIndex=0;\r\n pNodesToBrowse[0].ReferenceTypeId.Identifier.Numeric = OpcUaId_HierarchicalReferences; //;OpcUaId_References\r\n \r\n uStatus=OpenOpcUa_BrowseEx(m_hApplication,hSession,a_nNoOfNodesToBrowse,pNodesToBrowse,&iNoOfReferenceDescription,&pReferenceList);\r\n if(uStatus==OpcUa_Good)\r\n {\r\n // do something with iNoOfReferenceDescription and pReferenceList\r\n }\r\n</pre>\r\n\r\nCordialement\r\nMichel Condemine','2023-02-01 15:10:56',0),(2778,976,'Issue',447,'Config UaClient vers CN','2023-02-01 15:41:45',0),(2779,976,'Issue',1,'','2023-02-01 17:47:22',0),(2780,976,'Issue',1,'New conf ok','2023-02-01 17:55:09',0),(2781,976,'Issue',447,'Config qui ne fonctionne pas','2023-02-01 20:53:02',0),(2782,983,'Issue',431,'Bonjour,\r\nMerci pour votre retour, j\'avais identifié ces 2 fonctions OpenOpcUa_BrowseEx et OpenOpcUa_Browse sans parvenir à obtenir de résultat.\r\nQuelle est la différence entre les 2 ?\r\nMalgré les lignes de codes que vous m\'avez transmis et après plusieurs tentatives, je n\'obtiens rien en retour dans a_nNoOfNodesToBrowse ni dans pReferenceList (bien que uStatus == OpcUa_Good)\r\nJe fais sans doute une erreur dans les informations transmises à OpenOpcUa_BrowseEx()\r\nPour préparer l\'appel, j\'initalise :\r\n m_iBrowseDirection = OpcUa_BrowseDirection_Forward;\r\n m_NodeClassMask = OpcUa_NodeClass_Variable;\r\nPeut être est-ce pFromNodeId qu\'il faut initialiser avec des valeurs précises ?\r\nMerci\r\nJacques peigné','2023-02-02 14:33:59',0),(2783,983,'Issue',1,'Bonjour,\r\nvous avez compris. pFromNodeId doit contenir le node à partir duquel le Browse sera réalisé.\r\nIl doit donc être initialisé au moins à partir de i=84.\r\n\r\nCordialement\r\nMichel Condemine','2023-02-02 16:08:48',0),(2784,983,'Issue',431,'Excusez moi, je ne comprends pas votre réponse\r\nAprès avoir initialisé le pFromNodeId, à quoi correspond le i = 84 ?\r\n\r\n OpcUa_NodeId pFromNodeId;\r\n OpcUa_NodeId_Initialize(&pFromNodeId);\r\n pFromNodeId.IdentifierType = OpcUa_IdentifierType_Numeric;\r\n pFromNodeId.NamespaceIndex = 0;\r\n pFromNodeId.Identifier.Numeric = 0;','2023-02-02 17:25:03',0),(2785,983,'Issue',1,'Bonjour,\r\ni=84 est la node \"Root\" qui est présent dans tous les serveur OPC UA.\r\nJe vous invite a vous référer a la specification OPC UA pour comprendre la notation i=84.\r\nici : le NodeId est au format numérique son identifer est 84.\r\n\r\n<pre><code class=\"c\">\r\n OpcUa_NodeId_Initialize(&pFromNodeId);\r\n pFromNodeId.Identifier.Numeric = 84;\r\n</code></pre>\r\nCordialement\r\nMichel Condemine','2023-02-03 09:41:50',0),(2786,985,'Issue',432,'Infos supplémentaires: \r\n\r\nJ\'arrive maintenant à reproduire de façon non systématique mais à haute fréquence le problème\r\n\r\nAvec les binaires récupérés en prod, on récupère parfois à la lecture depuis le VpiLine avec la NotifyCallback une variable avec un StatusCode BadUncertainValue. \r\nEn bouclant la lecture tant que le StatusCode de la variable n\'est pas bon, on reste toujours sur un StatusCode BadUncertainValue. Pour débloquer, on peut effectuer une lecture ou une écriture avec UaExpert. La lecture suivante faite avec la NotifyCallback depuis le VpiLine et cette fois bonne (bonne valeur, bon StatusCode) ','2023-02-03 19:25:42',0),(2787,984,'Issue',432,'Comme discuté au call hebdo eMotors nous a transmis cette fois 2 piles d\'appels de crash du PM de la pre-production avec un contexte similaire : la lecture d\'une variable ConsumptionComponentBuffer\r\n- mappée et très utilisée par le VpiPlant\r\n- mappée au VpiValuesInit\r\n- configurée pour l\'historisation avec le VfiPgSql\r\n\r\nJ\'ouvrirai 2 autres tickets avec les informations pour chacune d\'elles\r\n\r\n\r\nDans le cas des 3 crashs, on était sur une variable qui était mappée à \r\n- un VpiOrchestrateur (VpiPlant ou VpiLine) qui la manipule beaucoup et la mets à jour à travers la VpiNotifyCallback configurée en AccessRight Subsytem Input_Output\r\n- un VpiValuesInit qui restitue la valeur à son démarrage à travers un VpiNotifyCallback configurée en AccessRight Subsytem Input_Output\r\n- configurée pour l\'historisation avec le VfiPgSql\r\n\r\n','2023-02-03 19:27:09',0),(2788,983,'Issue',431,'Bonjour,\r\nMerci par ces précisions, ça fonctionne.\r\nBonne journée\r\nJacques peigné','2023-02-06 09:17:18',0),(2789,983,'Issue',1,'','2023-02-06 09:42:09',0),(2790,988,'Issue',432,'','2023-02-06 14:28:31',0),(2791,988,'Issue',1,'Bonjour,\r\nil n\'est pas utile que vous réalisiez ce genre document quand il est, comme ici, dépourvu de contenu.\r\nJe m\'en occupe.\r\n\r\nCordialement\r\nMichel Condemine','2023-02-06 14:33:54',0),(2792,988,'Issue',1,'Bonjour,\r\nvous trouverez ci-joint une étude des mini-dump.\r\nTBD : \r\n# Utiliser la version du ValueInit livré vendredi et modifié à la demande d\'Emotors. @EMOTORS\r\n# A quel nodeId correspond ns=2;i=6285 @INETUM\r\n# Clarification du contexte du crash OpenOpcUaCoreServer_Debug.exe_230206_092243 @INETUM\r\n# Modification callback @MC\r\n\r\nCordialement\r\nMichel Condemine','2023-02-06 14:54:06',0),(2793,988,'Issue',432,'\r\nJ\'ai transmis les questions à eMotors. Je suis toujours en attente de leur retour\r\n\r\nCordialement, \r\n\r\nMichael Ejigu','2023-02-06 17:16:48',0),(2794,988,'Issue',432,'Bonjour, \r\n\r\n\r\n1) eMotors nous confirme qu\'ils sont bien sur les derniers binaires VpiValuesInit\r\n\r\n2) Il s\'agit d\'un noeud du Nodeset de type (une Variable servant de DataTypeDescription pour un UDT : \r\n!clipboard-202302071122-hzgh4.png!\r\n\r\n3) eMotors a eu le crash sur un redémarrage de serveur avec un UaExpert et un Genesis connectés et abbonnés à plusieurs noeuds. Ce redémarrage faisait suite à la découverte et correction d\'une erreur de configuration sur le fichier subsystem \r\n\r\nCordialement, \r\n\r\nMichael Ejigu\r\n\r\n','2023-02-07 11:26:13',0),(2795,988,'Issue',1,'Bonjour,\r\nIl ne s\'agit pas des derniers binaires. Le PDB du ValuesInit ne correspond pas au source.\r\nMerci de me faire parvenir le NodeSet de type contenant le node ns=1;i=6285.\r\n\r\nIl n\'y a rien de plus à faire avec ces informations.\r\nJe ferme le Ticket.\r\nCordialement\r\nMichel Condemine','2023-02-07 11:32:36',0),(2796,988,'Issue',432,'','2023-02-07 11:37:12',0),(2797,972,'Issue',1,'Hello,\r\nFor each binary I provide you must\r\n# let it run with the procdump until the issue appears.\r\n# Once the issue appears just send me the minidump, logs and any informations that make sense to you in order to understand the issue.\r\n# So, I can investigate more in detail the problem and provide you some new binaries. \r\nLet reiterate starting at 1 until the problem is fixed.\r\nProvide information regularly (at least every day) even if nothing happens.\r\n\r\nRegards\r\nMichel','2023-02-07 14:59:54',0),(2798,989,'Issue',432,'','2023-02-07 15:37:44',0),(2799,989,'Issue',1,'Bonjour,\r\nLes meilleures réponses sont les plus courtes.\r\nMa réponse est : Non\r\nIl n\'y a aucun caractère ajouté ou supprimé par le serveur. L\'appel à la callback est une lecture de la cache du serveur.\r\n\r\nCordialement\r\nMichel Condemine','2023-02-07 16:31:34',0),(2800,989,'Issue',432,'Avant l\'appel par VpiWrite non plus il n\'y a pas de modification d\'une chaine de caractère de type ° par * ? ','2023-02-07 16:35:39',0),(2801,989,'Issue',1,'Non','2023-02-07 16:48:52',0),(2802,989,'Issue',432,'Bonsoir, \r\n\r\nVoici le constat que j\'ai pu faire : \r\n\r\neMotors n\'a pas pu me spécifier le type d\'encodage des chaines de caractères venant des automates mais supposons que ce soit latin1\r\n\r\nCeci concerne uniquement les caractères spéciaux > 0x7F\r\n\r\nSource donnée | VpiLine ancien ou nouveau | encodage d\'insertion Traca VpiLine (spécifiable) | Resultat \r\n\r\nAutomate (latin1) | ancien (fonctionnement VpiWrite) | utf8 | Ok avec caractères remplacés (visualisé en production eMotors)\r\nUaExpert (utf8) |ancien (fonctionnement VpiWrite) | utf8 | Nok tentative en boucle et blocage ( testé en backoffice)\r\nUaExpert (utf8) |ancien (fonctionnement VpiWrite) | latin1 | Ok\r\nAutomate (latin1) | ancien (fonctionnement VpiWrite) | latin | Pas testé devrait être ok \r\nAutomate (latin1) | nouveau (polling) | utf8 | Nok tentative en boucle et blocage (problème reporté en production)\r\nUaExpert (utf8) | nouveau (polling) | utf8 | OK\r\nUaExpert (utf8) | nouveau (polling) | latin1 | Pas testé devrait être NOK\r\nAutomate (latin1) | nouveau (polling) | latin1 | Pas testé devrait être OK => c\'est ce que je souhaite proposer à eMotors\r\n\r\n\r\nPour info, en cherchant la possibilité d\'utiliser une primitive Latin1ToUtf8 je suis tombé sur la fonction Utf8ToLatin qui fait des remplacements du type constaté (caractère spécial vers *) et qui est appelé par SetScalarValue (appelé par SetValue appelé par WriteToVpiTags) \r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n','2023-02-07 18:45:56',0),(2803,985,'Issue',432,'Bonjour, \r\n\r\nCe cas n\'est plus réapparu depuis vendredi ni en production eMotors ni sur ma machine\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-08 17:32:58',0),(2804,985,'Issue',1,'Bonjour,\r\nje sais pas comment interpréter votre message :\r\nIl y a 5 jours vous écrivez :\r\n<pre>\r\nJ\'arrive maintenant à reproduire de façon non systématique mais à haute fréquence le problème\r\n</pre>\r\nMaintenant vous écrivez\r\n<pre>\r\nCe cas n\'est plus réapparu depuis vendredi ni en production eMotors ni sur ma machine\r\n</pre>\r\nDeux questions\r\n# Avez vous changé quelque chose ?\r\n# Doit on fermer l\'incident ?\r\nCordialement\r\nMichel Condemine','2023-02-08 17:48:22',0),(2805,985,'Issue',432,'Nous avons mis en place une fonctionnalité qui relit la valeur en cas de retour VpiUncertainValue au moment de la lecture en cache, et donc livré une mise à jour des VpiLine et VpiPlant\r\n\r\nSur les cas où j\'ai réussi à reproduire le problème, avec le correctif appliqué, il fallait manuellement avec un client OpcUa effectuer une lecture de la variable pour que la lecture en cache faite par le VpiLine ou VpiPlant fonctionne.\r\n\r\nDonc je ne pense pas qu\'on soit sur un cas où le correctif mis en place masque le problème. Plutôt que le problème n\'apparait plus. \r\n\r\nJe pense qu\'on peut fermer l\'incident dans l\'immédiat. Au cas où le problème réarrive, pourrez vous svp répondre à la question suivante ? : \r\n\r\nDans quel cas peut on avoir un StatusCode 0x40920000 au niveau du StatusCode individuel retourné par paramètre au moment de l\'appel de la VpiNotifyCallback ?\r\n\r\nPour rappel c\'est un noeud qui est mappé au VpiLine/VpiPlant, VpiValuesInit et VFI \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-08 17:57:04',0),(2806,985,'Issue',1,'Bonjour,\r\n0x40920000 correspond à UncertainInitialValue.\r\nCe message me semble assez explicite. \r\nLa Callback retourne la valeur dans la cache du serveur.\r\nIl y a donc une valeur non initialisé dans la cache du serveur au moment de l\'appel par votre VPI.\r\n\r\nCordialement\r\nMichel Condemine','2023-02-08 18:03:38',0),(2807,514,'Issue',1,'Bonjour,\r\nJe viens de faire des tests sur ce très ancien ticket... Enfin\r\nLe serveur ne plante pas,. Il détecte l\'erreur de configuration et permet le browsing.\r\n!clipboard-202302081856-et7ga.png!\r\nChaque accès à la mauvaise référence génère un message d\'erreur.\r\n!clipboard-202302081855-ucaui.png!\r\n!clipboard-202302081856-hltdn.png!\r\n\r\nJe ferme ce ticket\r\n\r\nCordialement\r\nMichel Condemine','2023-02-08 18:57:33',0),(2808,658,'Issue',1,'As usual\r\n:(','2023-02-08 18:58:32',0),(2809,985,'Issue',1,'','2023-02-10 15:47:36',0),(2810,985,'Issue',432,'Plusieurs redémarrages sans UaExpert (serveur déconnecté et puis application fermée) => Pas rencontré le cas\r\nLa présence d\'un client UaExpert au démarrage semble donc sans impact\r\n\r\nMême si par conséquent inutile, j\'ai fait quelques tests avec un UaExpert où le client est abonné à la variable en question. => Pas de différence, toujours pas rencontré le cas\r\n\r\nNous vous tenons au courant si on a de nouvelles pistes ou bien si d\'autres cas arrivent en preprod/prod ou en backoffice \r\n\r\n\r\nCordialement,\r\nMichael','2023-02-10 17:40:56',0),(2811,991,'Issue',1,'Bonjour,\r\nles messages me semble claire.\r\nLe PM ne répond pas à UAExpert et donc aux autres clients. 0x800A0000 = Timeout\r\nSans doute un problème dans la conception et/ou dans l\'implmentation de votre couche Rest JSON so called OData.\r\n\r\nJe ferme ce ticket.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2023-02-11 11:32:51',0),(2812,992,'Issue',1,'Bonjour,\r\nj\'ai fait une modification pour prendre en compte ce problème.\r\nCompte tenu des informations disponibles et l\'impossibilité à reproduire ce problème. Il s\'agira d\'une modification à l\'aveugle.\r\nJe peux vous fournir cette version mais j\'ai besoin d\'un retour très rapide. Avant demain soir.\r\n*Est ce possible pour vous ?*\r\n\r\nCordialement\r\nMichel Condemine','2023-02-13 18:52:02',0),(2813,993,'Issue',1,'Bonjour,\r\nje viens de faire des tests et je ne rencontre aucun problème.\r\nAurez vous un minidump ?\r\n\r\nCordialement\r\nMichel Condemine','2023-02-13 18:54:27',0),(2814,987,'Issue',1,'Les binaires fournit sont inexploitables sur mon poste.\r\n','2023-02-13 19:09:28',0),(2815,986,'Issue',1,'cf issue 992','2023-02-13 19:11:13',0),(2816,992,'Issue',432,'Bonjour, \r\n\r\nOui je peux tester cette version en backoffice et eMotors peut aussi tester en pre prod si vous le souhaitez même si nous ne reproduisons pas non plus le problème. Il arrive de façon aléatoire\r\n\r\nQuelle est la correction effectuée? Je demande ça afin de mieux comprendre le problème ainsi que de pouvoir cibler les tests\r\n\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-14 09:44:44',0),(2817,992,'Issue',1,'Bonjour,\r\nla nouvelle version des binaires est ici: http://www.openopcua.org/redmine/attachments/download/3792/Livraison%20Binaires%20Debug-IPV4%20-%2014-02-2023_v1.0.8.5.zip\r\nJ\'ai ajouté deux verrouillages.\r\nmerci de tester l\'ensemble des fonctionnalités, multi-Vpi, Vfi, Lua, etc\r\n\r\ncordialeemnt\r\nMichel','2023-02-14 09:51:47',0),(2818,992,'Issue',432,'J\'ai déployé les nouveaux binaires sur la plateforme de dev backoffice\r\n\r\nJ\'ai eu 2 crashs du PM et 2 deadlocks du LM(pendant mise à jour de la cache serveur par VpiNotifyCallback par le VpiLine)\r\n\r\nEn PJ les minidumps pour les 2 crashs et less logs pour le 2ème crash \r\n\r\nLe deuxième minidump demande le téléchargement des Symboles Microsoft. C\'est en court. Je poste les piles d\'appels des 2 minidump quand c\'est fait\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-14 11:53:51',0),(2819,992,'Issue',432,'OpenOpcUaCoreServer_Debug_PM.exe_230214_104017\r\n!clipboard-202302141158-blslg.png!\r\n\r\n\r\nOpenOpcUaCoreServer_Debug_PM.exe_230214_112429.dmp:\r\n!clipboard-202302141157-ld44b.png!\r\n\r\n\r\nNote : J\'ai du cloner une version de OpenOpcUaCoreServer_Debug.exe en OpenOpcUaCoreServer_Debug_PM.exe pour pouvoir analyser les minidump','2023-02-14 11:59:50',0),(2820,992,'Issue',1,'Deux callstack qui n\'ont rien a voir avec la modification et avec ce que l\'on track.\r\n<pre>\r\nNote : J\'ai du cloner une version de OpenOpcUaCoreServer_Debug.exe en OpenOpcUaCoreServer_Debug_PM.exe pour pouvoir analyser les minidump\r\n</pre>\r\nPourquoi ?\r\n\r\nJe regarde les minidump dans l\'AM\r\n\r\nCordialement\r\nMichel Condemine','2023-02-14 12:09:38',0),(2821,992,'Issue',432,'A noter que l\'on a aussi des deadlocks du LM en milieu de mise à jour de la cache serveur. Lorsqu\'il y a un deadlock, aucun client OPC UA ne peut se connecter\r\n\r\nNous renommons l\'exe du PM afin de pouvoir lancer PM et LM sur même PC et d\'avoir des procdump attachés à chacun\r\n\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-14 12:21:09',0),(2822,993,'Issue',432,'En PJ un minidump et logs avec les binaires de ce matin\r\n \r\nLes logs n\'indiquent pas de message à ce sujet\r\n\r\nLa pile d\'appels : \r\n\r\n!clipboard-202302141228-v8zsl.png!\r\n\r\n\r\n','2023-02-14 12:29:07',0),(2823,992,'Issue',1,'Concernant le fichier OpenOpcUaCoreServer_Debug_PM.exe_230214_104017.dmp\r\nLes fichiers et symboles ne sont pas cohérent.\r\n!clipboard-202302141334-3dgbb.png!\r\nNous avons une erreur 0xC0000005 sur un pointeur null mais le code ne montre aucun pointeur null. Êtes vous certain d\'utiliser les bons binaires ?\r\nLe second correspond à un 0xC0000374*. Beaucoup plus grave. Cependant toutes les variables semblent correctes. Il n\'y a aucune raison qu\'un 0xC000374 se produise ici.\r\n!clipboard-202302141338-wuzd5.png!\r\n','2023-02-14 13:39:05',0),(2824,993,'Issue',1,'Il semble qu\'ici vous utilisez un client qui ne passe pas de SessionName et il semble que cela produise le crash.\r\nJ\'ai modifié le code pour qu\'un NodeId vide ne puisse être utilisé.\r\nUpdate à suivre.','2023-02-14 14:03:02',0),(2825,992,'Issue',432,'Suite au call en début d\'après midi + la livraison Livraison Binaires Debug-IPV4 - 14-02-2023_v1.0.8.5_14h00 nous avons réeffectué des tests et constaté un crash au bout de 2 heures d\'activités. \r\n\r\n\r\nEn PJ minidump et binaires \r\n\r\nCordialement, \r\n\r\nMichael ','2023-02-14 18:27:58',0),(2826,993,'Issue',432,'Ticket à fermer: problème résolu en rajoutant un nom de session au client qui active le ServerDiagnostics comme conseillé ','2023-02-14 18:29:23',0),(2827,992,'Issue',432,'Bonjour, \r\n\r\nNous avons laissé tourner la conf, elle a cette fois tenu toute la nuit jusqu\'à 9h36 \r\n\r\nEn PJ logs et minidump \r\n\r\nLa pile d\'appel est malheureusement la même que celle que vous avez essayé de corriger avec la mutex \r\n\r\n\r\nCordialement, \r\n\r\nMichael\r\n\r\n','2023-02-15 09:38:25',0),(2828,995,'Issue',1,'Bonjour,\r\nvous voulez dire que vous avez trouvé une limite sur la taille des tableaux d\'UDTs.\r\nLimite à 10k elements ?\r\nSans doute lié à la taille de l\'enregistrement ici 2.3Mo.\r\nOn pourrait considérer que c\'est un limite by design.\r\n\r\nEst ce que ce cas est susceptible de se présenter chez EMOTORS ?\r\n\r\n\r\nCordialement\r\nMichel Condemine','2023-02-15 11:11:11',0),(2829,990,'Issue',548,'Bonjour Michel, \r\nAvez-vous pu avancer sur le sujet ? :) \r\nCdt, \r\nLoic','2023-02-15 11:14:39',0),(2830,990,'Issue',1,'Bonjour,\r\nj\'ai, comme prévu, créé la base du VpiKpi. Il est dans la repo subversion\r\n!clipboard-202302151116-eqpn3.png!\r\n\r\nIl faudrait que l\'on cale un point pour avancer davantage.\r\n\r\n\r\nCordialement\r\nMichel Condemine','2023-02-15 11:17:38',0),(2831,995,'Issue',432,'Je pense personnellement que oui c\'est susceptible d\'arriver en cas de problème d\'accès au de fonctionnement de l\'ERP\r\n\r\nSouhaitez vous que je pose la question à Lionel ? \r\n\r\nCordialement, \r\n\r\nMichael','2023-02-15 11:22:48',0),(2832,995,'Issue',1,'Pourquoi pas. \r\nIl faut déterminer avant d\'aller plus loin si le problème est :\r\nDans le VfiPg, \r\ndans le ValuesInit,\r\ndans l\'usage qui en est fait.\r\n\r\nCordialement\r\nMichel Condemine\r\n','2023-02-15 11:27:55',0),(2833,995,'Issue',432,'Je ne vois pas d\'autre potentiel coupable autre que le VFI \r\n\r\nQuel scénario voyez vous? \r\n\r\n','2023-02-15 11:41:13',0),(2834,995,'Issue',1,'Coupable ????\r\nLe message de log \r\n<pre>\r\nExtractDataFromSqlServer>Critical error on the SQL extraction. Your table should be corrupted\r\n</pre>\r\nvient du VpiValueInit ou du VfiPg ?\r\n\r\nCordialement\r\nMichel Condemine','2023-02-15 11:50:59',0),(2835,995,'Issue',432,'Par coupable je veut dire la cause de cette corruption \r\n\r\nLe VpiValuesInit a l\'air d\'être la victime de la corruption. Est-il sensé pouvoir décoder un enregistrement en base tel que celui mis en PJ (BAD) ? Il n\'a pas de séparateur entre le nombre d\'élément et l\'URI du noeud TypeId','2023-02-15 11:56:54',0),(2836,995,'Issue',432,'Pour info, Lionel m\'indique que ils étaient à 8700 éléments semaine dernière et que le cas 10 000 peut effectivement arriver','2023-02-15 12:04:49',0),(2837,994,'Issue',432,'Bridgeworx fait maintenant un CloseSession \r\n\r\nNous monitorons les échanges en lançant une longue simulation\r\nMerci pour le temps accordé hier pour l\'investigation\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-15 17:49:39',0),(2838,990,'Issue',548,'Merci pour votre retour Michel. \r\nIl semblerait que nous n\'ayons pas accès à ce dossier (cf capture ci-joint)\r\n\r\n!clipboard-202302151743-idemu.png!\r\n','2023-02-15 17:50:53',0),(2839,979,'Issue',573,NULL,'2023-02-16 11:13:44',0),(2840,972,'Issue',573,'Hello Michel\r\n\r\nThe cloud opc ua server stopped again. I attached the binaries','2023-02-16 11:16:53',0),(2841,972,'Issue',1,'Hello Semih,\r\na new VpiMqttSub is available in the last binaries version http://www.openopcua.org/redmine/attachments/download/3819/Livraison%20Binaires%20Debug-IPV4%20-%2016-02-2023_v1.0.8.5.zip\r\nCan you deploy and test it ASAP.\r\n\r\nRegards\r\nMichel','2023-02-16 14:52:00',0),(2842,992,'Issue',1,'Bonjour,\r\npourriez vous mettre en test la version livrée à l\'instant.\r\n\r\nCordialement\r\nMichel Condemine','2023-02-16 14:53:42',0),(2843,992,'Issue',432,'Bonjour \r\n\r\nOui je lance les tests\r\n\r\nPour info malgré les 2 crashs aperçus sur les dernier binaires, ça tourne là depuis 24h avec une forte activité, RAS\r\n\r\nQuestion subsidiaire, cette livraison prend t-elle aussi en compte le ticket 995?\r\n\r\n\r\nCordialement, \r\n\r\nMichael ','2023-02-16 15:06:24',0),(2844,995,'Issue',1,'Bonjour,\r\nle VpiValuesInit, par definition, decode le contenu extrait de la DB.\r\nIl est essentiel que vous m\'indiquiez si le message vient du Value init ou du VFI.\r\n\r\nCordialement\r\nMichel Condemine','2023-02-16 15:43:55',0),(2845,995,'Issue',432,'Le message vient du VpiValuesInit \r\n\r\nJ\'ai l\'impression de ne pas comprendre quelque chose\r\n\r\nAurez vous 5 minutes pour en discuter ou bien tout est clair de votre côté? \r\n\r\nMichael ','2023-02-16 15:46:22',0),(2846,995,'Issue',1,'Tout est claire. \r\nLe Vfi encode sur 4 positions et le Vpi decode de la même manière.\r\nIl avait été convenu d\'encoder le nombre d\'element sur 4 positions soit 9999 element dans un tableau.\r\nSi 10000 ou plus il y un problème.\r\n\r\nCordialement\r\nMichel Condemine','2023-02-16 15:52:55',0),(2847,995,'Issue',432,'Dac merci pour la clarification\r\n\r\nDonc potentiellement les 2 à mettre à jour ou bien la limite de 9999 à accepter \r\n\r\nMichael','2023-02-16 15:55:22',0),(2848,995,'Issue',1,'Exactement','2023-02-16 15:57:46',0),(2849,992,'Issue',432,'1h30 que ça tourne RAS\r\nJe continue à monitorer','2023-02-16 16:37:59',0),(2850,992,'Issue',432,'Je suis tombé sur un freeze du LM \r\n\r\nContrairement à la modification précédente, je ne sais pas s\'il s\'agit d\'un blocage sur le VpiNotifyCallback appelé par le VpiLine\r\n\r\nOn le fait à 2 instants : \r\n\r\n- pour de l\'écriture (tracé en logs en info)\r\n- pour de la lecture (pas de trace) \r\n\r\nDonc potentiellement un deadlock sur appel VpiNotifyCallback du VpiLine pour lecture ou bien autre chose\r\nJe peux aussi tracer pour la lecture si cette information vous est utile\r\n\r\nAutres applications : client OPC UA Python qui simule les automates sur le fonctionnel, VFI, VpiValuesInit et client OPC UA UaExpert abonné à quelques variables\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-16 17:21:02',0),(2851,992,'Issue',432,'Je me corrige, la thread principale du VpiLine s\'exécute toujours donc visiblement pas un blocage sur VpiNotifyCallback du VpiLine \r\n\r\nLes clients OPC UA qui veulent s\'y connecter (PM, UaExpert et client Python) eux ne peuvent pas. \r\n\r\nUaExpert indique un bad timeout, PM indique : \r\nsur VpiUaClient\r\n\r\n2023-02-16T15:35:36.894Z ERROR ShutdownMessage: Receive a shutdown message. on session 0x0000027533FF3470 Error code is :0x800a0000 uStatus=0x800a0000\r\n2023-02-16T15:35:36.914Z ERROR ShutdownMessage: Receive a shutdown message. on session 0x0000027533FF3470 Error code is :0x80af0000 uStatus=0x80af0000\r\n2023-02-16T15:41:28.086Z ERROR ShutdownMessage: Receive a shutdown message. on session 0x000002751CF510B0 Error code is :0x800a0000 uStatus=0x800a0000\r\n\r\n\r\net \r\n\r\nsur LibClient \r\n\r\n2023-02-16T15:35:36.873Z CLIENT_ERROR OpcUa_ClientApi_Read failed 0x800a0000\r\n2023-02-16T15:35:36.882Z CLIENT_ERROR WatchingThread> encounter a problem. ReadFailed 0x800a0000\r\n2023-02-16T15:35:36.898Z CLIENT_INFO NotifyStatusChange succeeded. Last Status is 0x800a0000 \r\n2023-02-16T15:35:36.907Z CLIENT_INFO WatchingThread>Shutdown sent to the client host application. InternalServerStatus changed 0x800a0000\r\n2023-02-16T15:35:36.917Z CLIENT_INFO NotifyStatusChange succeeded. Last Status is 0x80af0000 \r\n2023-02-16T15:35:36.929Z CLIENT_INFO PublishingThread stopped pSession=0000027533FF3470.\r\n2023-02-16T15:35:36.932Z CLIENT_INFO PublishingThread stopped properly\r\n2023-02-16T15:35:36.941Z CLIENT_ERROR WatchingThread stopped properly. pSession=0000027533FF3470.\r\n2023-02-16T15:35:36.954Z CLIENT_INFO InternalWatchingThread stopped properly\r\n2023-02-16T15:35:36.958Z CLIENT_INFO Call to OpcUa_ClientApi_DeleteMonitoredItems: 18 items\r\n2023-02-16T15:35:37.495Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:35:38.360Z CLIENT_WARNING Call OpenOpcUa_LoadConfig: .\\Project\\UaClnt-ManuelLineX-00301-0.xml\r\n2023-02-16T15:35:47.876Z CLIENT_INFO Call to OpcUa_ClientApi_DeleteMonitoredItems done 0x800a0000\r\n2023-02-16T15:35:47.878Z CLIENT_ERROR DeleteAllSubscriptions>DeleteMonitoredItems failed uStatus=0x800a0000\r\n2023-02-16T15:35:57.887Z CLIENT_ERROR DeleteAllSubscriptions failed 0x800a0000\r\n2023-02-16T15:36:27.898Z CLIENT_ERROR Destructor CSessionClient>Close failed 0x800a0000\r\n2023-02-16T15:36:27.901Z CLIENT_INFO KeepAliveThread Stopped\r\n2023-02-16T15:36:27.912Z CLIENT_INFO KeepAliveThread stopped properly\r\n2023-02-16T15:36:27.921Z CLIENT_INFO CSubscriptionClient 10101 destructor called\r\n2023-02-16T15:36:27.932Z CLIENT_INFO CSubscriptionClient empty m_pMonitoredItemsNotificationList made of 0 MonitoredItemsNotification\r\n2023-02-16T15:36:27.942Z CLIENT_INFO CSubscriptionClient empty m_pMonitoredItemsNotificationList DONE\r\n2023-02-16T15:36:27.953Z CLIENT_INFO MonitoredItemsNotificationThread stopped\r\n2023-02-16T15:36:27.955Z CLIENT_INFO MonitoredItemsNotificationThread in Subscription 10101 stopped properly\r\n2023-02-16T15:36:27.963Z CLIENT_INFO CSubscriptionClient 10101 properly destroyed\r\n2023-02-16T15:36:27.968Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:36:57.976Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:37:27.969Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:37:57.975Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:38:27.979Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:38:57.969Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:39:27.973Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:39:57.979Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:40:27.970Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:40:57.975Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:41:27.979Z CLIENT_WARNING Call OpenOpcUa_GetSessions\r\n2023-02-16T15:41:28.089Z CLIENT_INFO CClientApplication::NotifyStatusChange>. Last Status is 0x800a0000\r\n2023-02-16T15:41:28.092Z CLIENT_ERROR CClientApplication::DiscoverEndpoints failed:0x800a0000\r\n2023-02-16T15:41:28.094Z CLIENT_INFO LoadConfiguration failed:OpenOpcUa_GetEndpoints on opc.tcp://localhost:6011/LineMiddleware1 return 0x800a0000\r\n2023-02-16T15:41:28.096Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.169Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.172Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.174Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.185Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.196Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.207Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.217Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.227Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.229Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.231Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.232Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.234Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.236Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.237Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.238Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.240Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.241Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.243Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.245Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.246Z UNKNOWN xmlClientConfigEndElementHandler>LoadConfiguration will not continue. Internal error 0x800a0000\r\n2023-02-16T15:41:28.248Z CLIENT_INFO Critical error>Cannot load ClientConfiguration file uStatus=0x800a0000,.\\Project\\ UaClnt-ManuelLineX-00301-0.xml','2023-02-16 17:31:25',0),(2852,992,'Issue',1,'Nous avons des Timeout (0x800a0000) dans la clientLib et dans le VpiUaClient.\r\nIl semble qu\'un LM ne réponde plus aux clients.\r\n* MAX session atteint.\r\n* Deadlock\r\n\r\n* Est ce que le VpiUaClient continue des à faire des tentatives de connexion ?\r\nVoir dans les log pour vérifier.\r\n* Est ce qu\'un client est encore connecté sur ce LM ?\r\n\r\nCordialement \r\nMichel Condemine\r\n','2023-02-16 18:14:54',0),(2853,992,'Issue',432,'Le PM a arrêté ces tentatives de connexion\r\n\r\nLes client connectés (UaExpert) ont été déconnecté donc je pense plutôt deadlock plutôt que nb de sessions atteints \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-16 18:21:59',0),(2854,992,'Issue',1,'Je vous conseil de vous attacher au code, d\'arrêter l\'execution et d\'analyser les threads en fonctionnement. SI IL Y EN A UN DEADLOCK.\r\nce sera sur la MUTEX de la CUAVariable et/ou sur la MUTEX de la serveur cache.\r\n\r\nJ\'attends votre retour\r\nCordialement\r\nMichel Condemine\r\n','2023-02-16 18:36:29',0),(2855,992,'Issue',432,'Bonjour, \r\n\r\nPourrez vous svp me rappeler comment à partir de cette fenêtre je peux voir les Mutex/sémaphores bloqués? \r\n\r\n\r\n!clipboard-202302170909-mzjly.png!\r\n\r\n(Sachant que tous les threads indiquent une pile d\'appel menant à un SemaphoreWait ou MutexLock)\r\n\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-17 09:12:08',0),(2856,992,'Issue',1,'Il faut utiliser soit cette onglet, soit l\'onglet hiérarchie d\'appels.\r\nPuis chercher qui a pris la mutex détient la mutex.\r\ncordialement\r\nMichel Condemine','2023-02-17 09:17:06',0),(2857,992,'Issue',432,'Je ne trouve personne qui est n\'est pas bloqué sur une OpenOpcUaMutexLock \r\n\r\nConcernant les Sémaphores, je trouve cette thread qui n\'est pas bloquée, c\'est la seule : \r\n\r\n!clipboard-202302170935-v3elu.png!\r\n\r\n\r\nOn peut regarder ensemble si vous le souhaitez \r\nJe suis dispo jusqu\'à 10h ou bien à partir de 10h30 \r\n\r\n\r\nCordialement, \r\n\r\nMichael','2023-02-17 09:46:35',0),(2858,992,'Issue',1,'ok, regardons rapidement maintenant.\r\nJ\'attends votre invitation','2023-02-17 09:51:00',0),(2859,999,'Issue',573,'','2023-02-17 11:15:58',0),(2860,990,'Issue',1,'\r\nJ\'ai mis à jour les droits.\r\nIl faudra installer un plug-in pour VS. Par exemple\r\nhttps://visualstudio.microsoft.com/vs/features/python/?wt.mc_id=aka_ms_python','2023-02-17 13:44:22',0),(2861,990,'Issue',548,'Bonjour Michel, \r\n\r\nCi-joint le draw.io. \r\n\r\nL\'idéal serait que l\'on monte un atelier ensemble afin de monter en compétence sur les VPI en prenant le VPI KPI comme use case. \r\nJe vais regarder de mon côté le code que vous nous avez partagé. \r\n\r\nTrès bon weekend à vous ! \r\n\r\nCdt, \r\nLoïc ','2023-02-17 18:38:51',0);
/*!40000 ALTER TABLE `journals` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_roles`
--
DROP TABLE IF EXISTS `member_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_roles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
`inherited_from` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_member_roles_on_member_id` (`member_id`),
KEY `index_member_roles_on_role_id` (`role_id`),
KEY `index_member_roles_on_inherited_from` (`inherited_from`)
) ENGINE=InnoDB AUTO_INCREMENT=1867 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_roles`
--
LOCK TABLES `member_roles` WRITE;
/*!40000 ALTER TABLE `member_roles` DISABLE KEYS */;
INSERT INTO `member_roles` VALUES (1,1,3,NULL),(2,1,4,NULL),(3,1,5,NULL),(4,2,3,NULL),(5,2,4,NULL),(6,2,5,NULL),(9,4,4,NULL),(10,4,5,NULL),(11,5,4,NULL),(12,5,5,NULL),(13,5,3,NULL),(14,6,3,NULL),(15,6,4,NULL),(16,6,5,NULL),(17,7,3,NULL),(18,7,4,NULL),(19,7,5,NULL),(20,8,3,NULL),(21,8,4,NULL),(22,8,5,NULL),(24,10,5,NULL),(25,11,3,NULL),(26,11,4,NULL),(27,11,5,NULL),(28,12,3,NULL),(29,12,4,NULL),(30,12,5,NULL),(31,13,3,NULL),(32,13,4,NULL),(33,13,5,NULL),(38,16,3,NULL),(39,16,4,NULL),(40,16,5,NULL),(46,20,3,NULL),(47,20,4,NULL),(48,20,5,NULL),(50,22,3,NULL),(51,22,4,NULL),(52,22,5,NULL),(56,25,3,NULL),(57,25,4,NULL),(58,25,5,NULL),(59,26,3,NULL),(60,26,4,NULL),(61,26,5,NULL),(65,29,3,NULL),(66,29,4,NULL),(67,29,5,NULL),(75,34,3,NULL),(76,34,4,NULL),(77,34,5,NULL),(84,39,5,NULL),(86,41,5,NULL),(87,42,5,NULL),(88,43,5,NULL),(89,44,5,NULL),(90,45,5,NULL),(94,49,5,NULL),(95,50,5,NULL),(97,43,4,NULL),(115,69,3,NULL),(116,69,4,NULL),(117,69,5,NULL),(130,78,4,NULL),(131,78,5,NULL),(136,83,5,NULL),(137,84,5,NULL),(142,89,5,NULL),(165,111,3,NULL),(166,111,4,NULL),(167,111,5,NULL),(176,120,3,NULL),(177,120,4,NULL),(178,120,5,NULL),(179,121,3,NULL),(180,121,4,NULL),(181,121,5,NULL),(182,122,3,NULL),(183,122,4,NULL),(184,122,5,NULL),(192,129,5,NULL),(213,150,5,NULL),(214,151,5,NULL),(218,155,5,NULL),(220,157,5,NULL),(227,164,5,NULL),(264,201,5,NULL),(266,203,5,NULL),(275,212,5,NULL),(276,213,5,NULL),(278,215,5,NULL),(287,224,5,NULL),(288,225,5,NULL),(289,226,5,NULL),(299,236,5,NULL),(303,240,5,NULL),(304,241,5,NULL),(313,250,5,NULL),(337,273,6,NULL),(338,274,6,NULL),(339,275,6,NULL),(347,283,6,NULL),(348,284,6,NULL),(358,290,3,NULL),(359,290,4,NULL),(361,291,3,NULL),(362,291,4,NULL),(406,313,5,NULL),(407,314,6,NULL),(408,315,6,NULL),(413,316,3,NULL),(414,316,4,NULL),(415,316,5,NULL),(416,316,6,NULL),(419,318,3,NULL),(420,318,4,NULL),(421,318,5,NULL),(422,318,6,NULL),(423,319,3,NULL),(424,319,4,NULL),(425,319,5,NULL),(426,319,6,NULL),(427,320,3,NULL),(428,320,4,NULL),(429,320,5,NULL),(430,320,6,NULL),(431,321,3,NULL),(432,321,4,NULL),(433,321,5,NULL),(434,321,6,NULL),(435,322,3,NULL),(436,322,4,NULL),(437,322,5,NULL),(438,322,6,NULL),(471,331,6,NULL),(472,332,6,NULL),(474,334,6,NULL),(475,335,6,NULL),(477,337,6,NULL),(479,339,6,NULL),(480,340,6,NULL),(481,341,6,NULL),(483,343,6,NULL),(484,344,6,NULL),(485,345,6,NULL),(486,346,6,NULL),(487,347,6,NULL),(488,348,6,NULL),(490,350,6,NULL),(492,352,6,NULL),(493,353,6,NULL),(496,356,6,NULL),(497,357,6,NULL),(498,358,6,NULL),(499,359,6,NULL),(500,360,6,NULL),(503,363,6,NULL),(504,364,6,NULL),(506,366,6,NULL),(507,367,6,NULL),(508,368,6,NULL),(510,370,6,NULL),(511,371,6,NULL),(512,372,6,NULL),(514,374,6,NULL),(517,377,6,NULL),(518,378,6,NULL),(519,379,6,NULL),(520,380,6,NULL),(521,381,6,NULL),(522,382,6,NULL),(524,384,6,NULL),(526,386,6,NULL),(527,387,6,NULL),(530,390,6,NULL),(532,392,6,NULL),(534,394,6,NULL),(536,396,6,NULL),(537,397,6,NULL),(538,398,6,NULL),(540,400,6,NULL),(542,402,6,NULL),(543,403,6,NULL),(544,404,6,NULL),(546,406,6,NULL),(547,407,6,NULL),(552,412,6,NULL),(553,413,6,NULL),(554,414,6,NULL),(557,417,6,NULL),(558,418,3,NULL),(559,418,4,NULL),(560,418,5,NULL),(561,418,6,NULL),(562,419,6,NULL),(568,422,3,NULL),(569,422,4,NULL),(570,422,5,NULL),(571,422,6,NULL),(572,423,6,NULL),(573,424,3,NULL),(574,424,4,NULL),(575,424,5,NULL),(576,424,6,NULL),(579,426,6,NULL),(580,427,3,NULL),(581,427,4,NULL),(582,427,5,NULL),(583,427,6,NULL),(584,428,6,NULL),(585,429,6,NULL),(586,430,6,NULL),(587,431,6,NULL),(588,432,6,NULL),(589,433,6,NULL),(592,436,6,NULL),(593,437,6,NULL),(594,438,6,NULL),(595,439,6,NULL),(596,440,6,NULL),(597,441,6,NULL),(599,443,6,NULL),(600,444,6,NULL),(601,445,6,NULL),(602,446,3,NULL),(603,446,4,NULL),(604,446,5,NULL),(605,446,6,NULL),(620,454,3,NULL),(621,454,4,NULL),(623,456,6,NULL),(624,457,6,NULL),(630,463,6,NULL),(631,463,3,NULL),(632,463,4,NULL),(633,463,5,NULL),(649,479,3,NULL),(656,462,8,NULL),(666,480,8,NULL),(667,470,8,NULL),(671,472,8,NULL),(683,467,8,NULL),(688,491,7,NULL),(691,466,8,NULL),(692,493,8,NULL),(693,474,8,NULL),(694,475,8,NULL),(699,90,8,NULL),(709,496,3,NULL),(710,496,4,NULL),(711,496,5,NULL),(712,496,6,NULL),(719,499,4,NULL),(720,499,5,NULL),(721,499,6,NULL),(722,500,4,NULL),(723,500,5,NULL),(724,500,6,NULL),(725,501,4,NULL),(726,501,5,NULL),(727,501,6,NULL),(728,502,4,NULL),(729,502,5,NULL),(730,502,6,NULL),(731,503,7,NULL),(732,504,7,NULL),(734,458,8,NULL),(735,486,8,NULL),(736,506,3,NULL),(737,506,4,NULL),(738,507,4,NULL),(739,507,5,NULL),(740,507,7,NULL),(744,509,4,NULL),(745,509,5,NULL),(746,509,7,NULL),(747,510,4,NULL),(748,510,5,NULL),(749,510,7,NULL),(750,511,4,NULL),(751,511,5,NULL),(752,511,7,NULL),(754,461,8,NULL),(755,471,8,NULL),(757,492,8,NULL),(761,516,5,NULL),(762,516,6,NULL),(763,516,7,NULL),(765,517,3,NULL),(766,517,4,NULL),(768,519,6,NULL),(769,519,7,NULL),(775,487,8,NULL),(779,523,6,NULL),(780,523,7,NULL),(781,514,8,NULL),(782,513,8,NULL),(783,483,8,NULL),(784,482,8,NULL),(786,488,8,NULL),(787,485,8,NULL),(789,469,8,NULL),(790,468,8,NULL),(792,484,8,NULL),(793,521,8,NULL),(796,524,3,NULL),(797,524,7,NULL),(798,525,7,NULL),(799,526,7,NULL),(800,526,5,NULL),(801,525,5,NULL),(806,529,3,NULL),(807,529,4,NULL),(808,530,5,NULL),(809,530,6,NULL),(810,530,7,NULL),(811,531,5,NULL),(812,531,6,NULL),(815,533,3,NULL),(816,533,4,NULL),(820,535,5,NULL),(821,535,6,NULL),(822,535,7,NULL),(823,536,5,NULL),(824,536,6,NULL),(825,536,7,NULL),(826,537,5,NULL),(827,537,6,NULL),(828,537,7,NULL),(829,538,5,NULL),(830,538,6,NULL),(831,538,7,NULL),(833,540,5,NULL),(834,540,6,NULL),(835,540,7,NULL),(841,544,3,NULL),(842,544,4,NULL),(847,547,3,NULL),(848,547,4,NULL),(849,547,7,NULL),(850,548,3,NULL),(851,548,4,NULL),(852,548,5,NULL),(853,548,6,NULL),(854,548,7,NULL),(855,549,3,NULL),(856,549,4,NULL),(857,549,5,NULL),(858,549,6,NULL),(859,549,7,NULL),(860,550,5,NULL),(861,550,6,NULL),(862,550,7,NULL),(863,489,8,NULL),(864,522,8,NULL),(865,478,8,NULL),(866,527,8,NULL),(868,552,6,NULL),(869,552,7,NULL),(872,554,3,NULL),(873,555,6,NULL),(874,555,7,NULL),(875,556,6,NULL),(876,556,7,NULL),(877,557,6,NULL),(878,557,7,NULL),(879,558,6,NULL),(880,558,7,NULL),(881,559,6,NULL),(882,559,7,NULL),(883,539,8,NULL),(884,560,6,NULL),(885,560,7,NULL),(886,561,6,NULL),(887,561,7,NULL),(888,562,6,NULL),(889,562,7,NULL),(890,563,6,NULL),(891,563,7,NULL),(894,565,6,NULL),(895,565,7,NULL),(896,566,3,NULL),(897,566,4,NULL),(898,566,5,NULL),(899,566,6,NULL),(900,566,7,NULL),(901,566,8,NULL),(902,567,5,NULL),(903,567,6,NULL),(905,568,5,NULL),(906,568,6,NULL),(908,569,5,NULL),(909,569,6,NULL),(911,570,5,NULL),(912,570,6,NULL),(914,558,5,NULL),(915,555,5,NULL),(916,528,8,NULL),(917,464,8,NULL),(918,515,8,NULL),(919,542,8,NULL),(920,571,3,NULL),(921,572,5,NULL),(922,572,6,NULL),(923,572,7,NULL),(929,575,3,NULL),(930,575,4,NULL),(937,543,8,NULL),(938,541,8,NULL),(941,580,3,NULL),(942,580,4,NULL),(943,581,5,NULL),(944,581,6,NULL),(945,582,3,NULL),(946,582,4,NULL),(947,583,5,NULL),(948,583,6,NULL),(949,583,7,NULL),(950,584,6,NULL),(951,584,7,NULL),(952,565,5,NULL),(953,585,5,NULL),(954,585,6,NULL),(955,585,7,NULL),(956,586,5,NULL),(957,586,6,NULL),(958,586,7,NULL),(959,587,5,NULL),(960,587,6,NULL),(961,587,7,NULL),(965,589,3,NULL),(966,589,4,NULL),(967,589,5,NULL),(968,589,6,NULL),(969,590,5,NULL),(970,590,6,NULL),(971,590,7,NULL),(972,591,5,NULL),(973,591,6,NULL),(974,591,7,NULL),(975,592,5,NULL),(976,592,6,NULL),(977,592,7,NULL),(978,593,5,NULL),(979,593,6,NULL),(980,593,7,NULL),(987,595,5,NULL),(988,595,6,NULL),(989,596,5,NULL),(990,596,6,NULL),(991,597,3,NULL),(992,597,4,NULL),(993,598,5,NULL),(994,598,6,NULL),(995,598,7,NULL),(1002,601,5,NULL),(1003,601,6,NULL),(1004,601,7,NULL),(1005,602,5,NULL),(1006,602,6,NULL),(1007,602,7,NULL),(1008,603,5,NULL),(1009,603,6,NULL),(1010,603,7,NULL),(1011,604,5,NULL),(1012,604,6,NULL),(1013,604,7,NULL),(1014,605,5,NULL),(1015,605,6,NULL),(1016,605,7,NULL),(1017,606,5,NULL),(1018,606,6,NULL),(1019,606,7,NULL),(1020,574,8,NULL),(1021,573,8,NULL),(1022,588,8,NULL),(1023,594,8,NULL),(1024,607,5,NULL),(1025,607,6,NULL),(1027,570,8,NULL),(1028,569,8,NULL),(1029,568,8,NULL),(1030,567,8,NULL),(1034,609,3,NULL),(1035,610,5,NULL),(1036,610,6,NULL),(1037,610,7,NULL),(1041,612,5,NULL),(1042,612,6,NULL),(1043,613,3,NULL),(1044,613,4,NULL),(1045,613,5,NULL),(1046,613,6,NULL),(1047,613,7,NULL),(1048,613,8,NULL),(1049,614,5,NULL),(1050,614,6,NULL),(1051,614,7,NULL),(1052,615,5,NULL),(1053,615,6,NULL),(1054,615,7,NULL),(1055,616,5,NULL),(1056,616,6,NULL),(1057,616,7,NULL),(1058,552,5,NULL),(1059,553,8,NULL),(1061,608,8,NULL),(1062,512,8,NULL),(1063,518,8,NULL),(1064,599,8,NULL),(1065,600,8,NULL),(1066,617,6,NULL),(1067,617,7,NULL),(1068,618,3,NULL),(1069,618,4,NULL),(1070,618,5,NULL),(1071,618,6,NULL),(1072,618,7,NULL),(1073,619,5,NULL),(1074,619,6,NULL),(1075,619,7,NULL),(1076,620,3,NULL),(1077,620,4,NULL),(1078,620,5,NULL),(1079,621,5,NULL),(1080,621,6,NULL),(1081,621,7,NULL),(1082,622,3,NULL),(1083,623,5,NULL),(1084,623,6,NULL),(1085,623,7,NULL),(1086,624,6,NULL),(1087,624,7,NULL),(1088,625,3,NULL),(1089,626,7,NULL),(1090,627,7,NULL),(1091,628,5,NULL),(1092,628,6,NULL),(1093,628,7,NULL),(1094,629,6,NULL),(1095,629,7,NULL),(1096,630,3,NULL),(1097,631,5,NULL),(1098,631,6,NULL),(1099,631,7,NULL),(1100,632,3,NULL),(1101,633,6,NULL),(1102,633,7,NULL),(1103,634,3,NULL),(1104,634,4,NULL),(1105,635,6,NULL),(1106,635,7,NULL),(1109,637,3,NULL),(1110,638,5,NULL),(1111,638,6,NULL),(1112,638,7,NULL),(1116,640,3,NULL),(1117,640,4,NULL),(1118,641,6,NULL),(1119,641,7,NULL),(1120,642,6,NULL),(1121,642,7,NULL),(1122,643,6,NULL),(1123,643,7,NULL),(1126,642,5,NULL),(1127,641,5,NULL),(1128,643,5,NULL),(1132,646,3,NULL),(1133,647,5,NULL),(1134,647,6,NULL),(1135,648,5,NULL),(1136,648,6,NULL),(1137,649,5,NULL),(1138,649,6,NULL),(1139,650,3,NULL),(1140,651,5,NULL),(1141,651,6,NULL),(1142,652,5,NULL),(1143,652,6,NULL),(1144,653,5,NULL),(1145,653,6,NULL),(1146,654,5,NULL),(1147,654,6,NULL),(1148,655,3,NULL),(1149,656,5,NULL),(1150,656,6,NULL),(1153,658,5,NULL),(1154,658,6,NULL),(1155,659,5,NULL),(1156,659,6,NULL),(1157,660,5,NULL),(1158,660,6,NULL),(1159,661,5,NULL),(1160,661,6,NULL),(1161,662,5,NULL),(1162,662,6,NULL),(1163,663,3,NULL),(1164,664,5,NULL),(1168,578,8,NULL),(1169,576,8,NULL),(1170,577,8,NULL),(1171,651,7,NULL),(1172,666,5,NULL),(1173,666,6,NULL),(1174,667,5,NULL),(1175,667,6,NULL),(1176,667,7,NULL),(1177,668,5,NULL),(1178,668,6,NULL),(1179,668,7,NULL),(1180,669,3,NULL),(1181,669,4,NULL),(1182,670,5,NULL),(1183,670,6,NULL),(1184,671,5,NULL),(1185,671,6,NULL),(1186,672,5,NULL),(1187,672,6,NULL),(1188,673,5,NULL),(1189,673,6,NULL),(1190,674,5,NULL),(1191,674,6,NULL),(1192,675,5,NULL),(1193,675,6,NULL),(1194,676,3,NULL),(1195,676,4,NULL),(1196,677,5,NULL),(1197,677,6,NULL),(1198,677,7,NULL),(1199,678,5,NULL),(1200,678,6,NULL),(1201,678,7,NULL),(1202,579,8,NULL),(1203,607,8,NULL),(1204,611,5,NULL),(1205,611,7,NULL),(1206,679,5,NULL),(1207,679,6,NULL),(1208,679,7,NULL),(1209,664,8,NULL),(1210,680,3,NULL),(1221,686,3,NULL),(1222,687,3,NULL),(1223,688,5,NULL),(1224,688,6,NULL),(1227,690,3,NULL),(1228,691,3,NULL),(1229,692,3,NULL),(1276,709,5,NULL),(1277,709,6,NULL),(1278,709,7,NULL),(1279,710,3,NULL),(1283,712,5,NULL),(1285,712,6,NULL),(1287,712,7,NULL),(1289,714,5,NULL),(1291,714,6,NULL),(1293,714,7,NULL),(1295,716,5,NULL),(1297,716,6,NULL),(1299,716,7,NULL),(1301,718,5,NULL),(1303,718,6,NULL),(1305,718,7,NULL),(1307,720,5,NULL),(1309,720,6,NULL),(1311,720,7,NULL),(1313,722,5,NULL),(1315,722,6,NULL),(1317,722,7,NULL),(1319,724,5,NULL),(1321,724,6,NULL),(1323,724,7,NULL),(1325,726,5,NULL),(1327,726,6,NULL),(1329,726,7,NULL),(1331,728,5,NULL),(1333,728,6,NULL),(1335,728,7,NULL),(1337,730,5,NULL),(1338,730,6,NULL),(1339,730,7,NULL),(1340,731,5,NULL),(1341,731,6,NULL),(1342,731,7,NULL),(1343,732,5,NULL),(1344,732,6,NULL),(1345,732,7,NULL),(1346,733,5,NULL),(1347,733,6,NULL),(1348,733,7,NULL),(1349,734,5,NULL),(1350,734,6,NULL),(1351,734,7,NULL),(1352,735,5,NULL),(1353,735,6,NULL),(1354,735,7,NULL),(1355,736,5,NULL),(1356,736,6,NULL),(1357,736,7,NULL),(1358,737,5,NULL),(1359,737,6,NULL),(1360,737,7,NULL),(1361,738,5,NULL),(1362,738,6,NULL),(1363,738,7,NULL),(1364,739,5,NULL),(1365,739,6,NULL),(1366,739,7,NULL),(1367,740,5,NULL),(1368,740,6,NULL),(1369,740,7,NULL),(1370,741,5,NULL),(1371,741,6,NULL),(1372,741,7,NULL),(1373,742,5,NULL),(1374,742,6,NULL),(1375,742,7,NULL),(1376,743,5,NULL),(1377,743,6,NULL),(1378,743,7,NULL),(1379,744,5,NULL),(1380,744,6,NULL),(1381,744,7,NULL),(1382,745,5,NULL),(1383,745,6,NULL),(1384,745,7,NULL),(1385,746,5,NULL),(1386,746,6,NULL),(1387,746,7,NULL),(1388,747,5,NULL),(1389,747,6,NULL),(1390,747,7,NULL),(1391,748,5,NULL),(1392,748,6,NULL),(1393,748,7,NULL),(1394,749,3,NULL),(1395,750,3,NULL),(1396,751,5,NULL),(1398,751,6,NULL),(1400,751,7,NULL),(1402,753,5,NULL),(1403,753,6,NULL),(1404,753,7,NULL),(1405,754,5,NULL),(1406,754,6,NULL),(1407,754,7,NULL),(1408,755,5,NULL),(1409,755,6,NULL),(1410,755,7,NULL),(1411,756,5,NULL),(1412,756,6,NULL),(1413,756,7,NULL),(1414,757,3,NULL),(1415,758,5,NULL),(1416,758,6,NULL),(1417,758,7,NULL),(1418,759,5,NULL),(1419,759,6,NULL),(1420,759,7,NULL),(1421,760,6,NULL),(1422,760,7,NULL),(1423,761,6,NULL),(1424,761,7,NULL),(1425,762,6,NULL),(1426,762,7,NULL),(1427,763,3,NULL),(1431,765,5,NULL),(1432,765,6,NULL),(1433,765,7,NULL),(1434,766,5,NULL),(1435,766,6,NULL),(1436,766,7,NULL),(1437,767,5,NULL),(1438,767,6,NULL),(1439,767,7,NULL),(1440,768,4,NULL),(1441,768,5,NULL),(1442,768,6,NULL),(1443,769,4,NULL),(1444,769,5,NULL),(1445,769,6,NULL),(1446,770,4,NULL),(1447,770,5,NULL),(1448,770,6,NULL),(1449,771,3,NULL),(1453,773,5,NULL),(1454,773,6,NULL),(1455,773,7,NULL),(1456,774,3,NULL),(1457,775,5,NULL),(1458,775,6,NULL),(1459,775,7,NULL),(1460,776,5,NULL),(1461,776,6,NULL),(1462,776,7,NULL),(1463,777,5,NULL),(1464,777,6,NULL),(1465,777,7,NULL),(1478,782,3,NULL),(1479,783,5,NULL),(1480,783,6,NULL),(1481,783,7,NULL),(1482,784,5,NULL),(1483,784,6,NULL),(1484,784,7,NULL),(1485,785,5,NULL),(1486,785,6,NULL),(1487,785,7,NULL),(1488,786,5,NULL),(1489,786,6,NULL),(1490,786,7,NULL),(1503,791,3,NULL),(1504,792,5,NULL),(1505,792,6,NULL),(1506,792,7,NULL),(1507,793,5,NULL),(1508,793,6,NULL),(1509,793,7,NULL),(1510,794,5,NULL),(1511,794,6,NULL),(1512,794,7,NULL),(1513,795,5,NULL),(1514,795,6,NULL),(1515,795,7,NULL),(1516,761,5,NULL),(1517,760,5,NULL),(1518,762,5,NULL),(1519,796,5,NULL),(1520,796,6,NULL),(1521,796,7,NULL),(1522,797,5,NULL),(1523,797,6,NULL),(1524,797,7,NULL),(1528,799,5,NULL),(1529,799,6,NULL),(1530,799,7,NULL),(1531,800,5,NULL),(1532,800,6,NULL),(1533,800,7,NULL),(1534,801,3,NULL),(1535,801,4,NULL),(1536,802,6,NULL),(1537,802,7,NULL),(1538,803,3,NULL),(1539,804,5,NULL),(1540,804,6,NULL),(1541,804,7,NULL),(1542,805,5,NULL),(1543,805,6,NULL),(1544,805,7,NULL),(1545,806,5,NULL),(1546,806,6,NULL),(1547,806,7,NULL),(1548,807,5,NULL),(1549,807,6,NULL),(1550,807,7,NULL),(1551,808,5,NULL),(1552,808,6,NULL),(1553,808,7,NULL),(1554,809,5,NULL),(1555,809,6,NULL),(1556,809,7,NULL),(1557,810,5,NULL),(1558,810,6,NULL),(1559,810,7,NULL),(1560,811,5,NULL),(1561,811,6,NULL),(1562,811,7,NULL),(1579,818,3,1116),(1580,818,4,1117),(1581,819,6,1118),(1582,819,7,1119),(1583,819,5,1127),(1584,820,6,1120),(1585,820,7,1121),(1586,820,5,1126),(1587,821,6,1122),(1588,821,7,1123),(1589,821,5,1128),(1611,830,3,1116),(1612,830,4,1117),(1613,831,6,1118),(1614,831,7,1119),(1615,831,5,1127),(1616,832,6,1120),(1617,832,7,1121),(1618,832,5,1126),(1619,833,6,1122),(1620,833,7,1123),(1621,833,5,1128),(1627,836,5,NULL),(1628,837,5,1627),(1629,838,5,1627),(1630,836,6,NULL),(1631,837,6,1630),(1632,838,6,1630),(1633,836,7,NULL),(1634,837,7,1633),(1635,838,7,1633),(1636,839,5,NULL),(1637,840,5,1636),(1638,841,5,1636),(1639,839,6,NULL),(1640,840,6,1639),(1641,841,6,1639),(1642,839,7,NULL),(1643,840,7,1642),(1644,841,7,1642),(1645,842,3,NULL),(1646,843,5,NULL),(1647,843,6,NULL),(1648,843,7,NULL),(1649,844,5,NULL),(1650,844,6,NULL),(1651,844,7,NULL),(1652,845,5,NULL),(1653,845,6,NULL),(1654,845,7,NULL),(1655,846,5,NULL),(1656,846,6,NULL),(1657,846,7,NULL),(1658,847,5,NULL),(1659,847,6,NULL),(1660,847,7,NULL),(1661,848,5,NULL),(1662,848,6,NULL),(1663,848,7,NULL),(1664,849,5,NULL),(1665,849,6,NULL),(1666,849,7,NULL),(1667,850,5,NULL),(1668,850,6,NULL),(1669,850,7,NULL),(1670,851,5,NULL),(1671,851,6,NULL),(1672,851,7,NULL),(1690,861,3,1148),(1691,862,5,1149),(1692,862,6,1150),(1695,864,5,1153),(1696,864,6,1154),(1697,865,5,1155),(1698,865,6,1156),(1699,866,5,1157),(1700,866,6,1158),(1701,867,5,1159),(1702,867,6,1160),(1703,868,5,1161),(1704,868,6,1162),(1705,869,5,1223),(1706,869,6,1224),(1707,870,5,NULL),(1708,871,5,1707),(1709,870,6,NULL),(1710,871,6,1709),(1711,870,7,NULL),(1712,871,7,1711),(1713,872,5,NULL),(1714,872,6,NULL),(1715,873,5,NULL),(1716,873,6,NULL),(1717,874,5,NULL),(1718,874,6,NULL),(1719,875,5,NULL),(1720,875,6,NULL),(1721,875,7,NULL),(1722,876,3,NULL),(1723,877,5,NULL),(1724,877,6,NULL),(1725,877,7,NULL),(1726,878,5,NULL),(1727,878,6,NULL),(1728,878,7,NULL),(1729,879,5,NULL),(1730,879,6,NULL),(1731,879,7,NULL),(1732,880,5,NULL),(1733,880,6,NULL),(1734,880,7,NULL),(1735,881,5,NULL),(1736,881,6,NULL),(1737,881,7,NULL),(1738,882,5,NULL),(1739,882,6,NULL),(1740,882,7,NULL),(1741,883,5,NULL),(1742,883,6,NULL),(1743,883,7,NULL),(1744,884,5,NULL),(1745,884,6,NULL),(1746,884,7,NULL),(1747,885,5,NULL),(1748,885,6,NULL),(1749,885,7,NULL),(1750,886,5,NULL),(1751,886,6,NULL),(1752,886,7,NULL),(1753,887,5,NULL),(1754,887,6,NULL),(1755,887,7,NULL),(1756,888,5,NULL),(1757,888,6,NULL),(1758,888,7,NULL),(1759,889,5,NULL),(1760,889,6,NULL),(1761,889,7,NULL),(1762,890,5,NULL),(1763,890,6,NULL),(1764,890,7,NULL),(1765,891,5,NULL),(1766,891,6,NULL),(1767,891,7,NULL),(1768,892,3,NULL),(1769,893,5,NULL),(1770,893,6,NULL),(1771,893,7,NULL),(1772,894,5,NULL),(1773,894,6,NULL),(1774,894,7,NULL),(1775,895,5,NULL),(1776,895,6,NULL),(1777,895,7,NULL),(1778,896,5,NULL),(1779,896,6,NULL),(1780,896,7,NULL),(1781,897,5,NULL),(1782,897,6,NULL),(1783,897,7,NULL),(1784,898,5,NULL),(1785,898,6,NULL),(1786,898,7,NULL),(1787,899,5,NULL),(1788,899,6,NULL),(1789,899,7,NULL),(1790,900,3,NULL),(1791,901,5,NULL),(1792,901,6,NULL),(1793,901,7,NULL),(1794,902,5,NULL),(1795,902,6,NULL),(1796,902,7,NULL),(1797,903,5,NULL),(1798,903,6,NULL),(1799,903,7,NULL),(1800,904,5,NULL),(1801,904,6,NULL),(1802,904,7,NULL),(1803,905,5,NULL),(1804,875,5,1803),(1805,905,6,NULL),(1806,875,6,1805),(1807,905,7,NULL),(1808,875,7,1807),(1809,906,3,NULL),(1810,907,5,NULL),(1811,907,6,NULL),(1812,907,7,NULL),(1813,908,5,NULL),(1814,908,6,NULL),(1815,908,7,NULL),(1816,909,5,NULL),(1817,909,6,NULL),(1818,909,7,NULL),(1819,910,5,NULL),(1820,910,6,NULL),(1821,910,7,NULL),(1822,911,5,NULL),(1823,911,6,NULL),(1824,912,5,NULL),(1825,912,6,NULL),(1826,913,5,NULL),(1827,914,5,1826),(1828,915,5,1826),(1829,913,6,NULL),(1830,914,6,1829),(1831,915,6,1829),(1832,913,7,NULL),(1833,914,7,1832),(1834,915,7,1832),(1835,916,5,NULL),(1836,916,6,NULL),(1837,916,7,NULL),(1838,917,5,NULL),(1839,917,6,NULL),(1840,917,7,NULL),(1841,918,5,NULL),(1842,919,3,NULL),(1843,920,5,NULL),(1844,920,6,NULL),(1845,921,5,NULL),(1846,921,6,NULL),(1847,922,5,NULL),(1848,922,6,NULL),(1849,923,5,NULL),(1850,923,6,NULL),(1851,924,5,NULL),(1852,924,6,NULL),(1853,925,5,NULL),(1854,925,6,NULL),(1855,926,5,NULL),(1856,926,6,NULL),(1857,927,5,NULL),(1858,927,6,NULL),(1859,928,5,NULL),(1860,928,6,NULL),(1861,929,3,NULL),(1862,929,4,NULL),(1863,905,4,NULL),(1864,875,4,1863),(1865,870,4,NULL),(1866,871,4,1865);
/*!40000 ALTER TABLE `member_roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `members`
--
DROP TABLE IF EXISTS `members`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `members` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT '0',
`project_id` int(11) NOT NULL DEFAULT '0',
`created_on` datetime DEFAULT NULL,
`mail_notification` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `index_members_on_user_id_and_project_id` (`user_id`,`project_id`),
KEY `index_members_on_user_id` (`user_id`),
KEY `index_members_on_project_id` (`project_id`)
) ENGINE=InnoDB AUTO_INCREMENT=930 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `members`
--
LOCK TABLES `members` WRITE;
/*!40000 ALTER TABLE `members` DISABLE KEYS */;
INSERT INTO `members` VALUES (1,1,3,'2012-01-09 12:04:51',0),(2,1,4,'2012-01-09 13:39:13',0),(4,4,6,'2012-01-12 13:41:12',0),(5,1,6,'2012-01-12 13:41:12',0),(6,1,7,'2012-01-12 18:21:46',0),(7,1,5,'2012-01-12 18:22:05',0),(8,1,8,'2012-01-12 18:51:22',0),(10,6,6,'2012-01-15 02:37:30',0),(11,1,9,'2012-01-18 00:27:50',0),(12,1,10,'2012-01-18 01:07:49',0),(13,1,13,'2012-01-18 01:57:32',0),(16,1,14,'2012-01-18 02:06:48',0),(20,1,15,'2012-01-18 02:52:55',0),(22,1,16,'2012-01-18 02:54:18',0),(25,1,18,'2012-01-18 03:17:08',0),(26,1,17,'2012-01-18 11:34:15',0),(29,1,19,'2012-01-18 12:03:25',0),(34,1,11,'2012-01-18 15:58:34',0),(39,8,5,'2012-01-18 17:14:00',0),(41,8,6,'2012-01-18 17:14:29',0),(42,8,9,'2012-01-18 17:14:43',0),(43,5,9,'2012-01-18 17:14:52',0),(44,8,10,'2012-01-18 17:15:15',0),(45,5,5,'2012-01-18 20:15:47',0),(49,10,6,'2012-02-01 10:16:51',0),(50,10,9,'2012-02-01 10:16:57',0),(69,1,21,'2012-03-27 14:36:47',0),(78,6,21,'2012-03-28 11:47:33',0),(83,30,21,'2012-04-05 15:54:15',0),(84,30,19,'2012-04-05 16:01:36',0),(89,29,21,'2012-04-11 15:00:27',0),(90,29,19,'2012-04-11 15:00:34',0),(111,1,23,'2012-06-19 16:57:25',0),(120,1,24,'2012-06-25 00:39:17',0),(121,1,25,'2012-06-25 00:51:06',0),(122,1,26,'2012-06-25 00:52:10',0),(129,5,21,'2012-07-04 12:24:04',0),(150,12,19,'2012-08-28 10:24:26',0),(151,12,25,'2012-08-28 10:24:35',0),(155,66,20,'2012-08-28 10:26:49',0),(157,66,21,'2012-08-28 10:26:58',0),(164,66,19,'2012-08-28 10:28:51',0),(201,70,20,'2012-08-28 10:47:14',0),(203,70,21,'2012-08-28 10:47:52',0),(212,70,19,'2012-08-28 10:50:12',0),(213,71,20,'2012-08-28 11:11:47',0),(215,71,21,'2012-08-28 11:12:01',0),(224,71,19,'2012-08-28 11:12:59',0),(225,72,20,'2012-08-28 11:13:48',0),(226,72,21,'2012-08-28 11:13:53',0),(236,72,19,'2012-08-28 11:15:12',0),(240,73,20,'2012-08-28 11:38:34',0),(241,73,21,'2012-08-28 11:38:39',0),(250,73,19,'2012-08-28 11:40:09',0),(273,103,1,'2012-10-30 01:26:35',0),(274,103,20,'2012-10-30 01:26:41',0),(275,103,25,'2012-10-30 01:26:45',0),(283,103,17,'2012-10-30 01:27:32',0),(284,103,19,'2012-10-30 01:27:37',0),(290,1,28,'2012-12-12 00:28:51',0),(291,1,29,'2012-12-12 23:17:48',0),(313,30,25,'2013-03-15 12:10:15',0),(314,25,1,'2013-04-23 12:04:28',0),(315,121,1,'2013-04-23 12:08:55',0),(316,1,30,'2014-01-10 10:13:04',0),(318,1,31,'2014-01-10 11:54:14',0),(319,1,32,'2014-01-15 12:26:05',0),(320,1,33,'2014-01-15 17:27:45',0),(321,1,34,'2014-01-31 18:48:55',0),(322,1,35,'2014-01-31 21:04:44',0),(331,164,1,'2014-02-13 10:28:02',1),(332,162,1,'2014-02-13 10:35:11',0),(334,161,1,'2014-02-13 10:35:34',0),(335,152,1,'2014-02-13 10:37:12',0),(337,27,1,'2014-02-13 10:37:12',0),(339,64,1,'2014-02-13 10:37:12',0),(340,149,1,'2014-02-13 10:37:12',0),(341,30,1,'2014-02-13 10:37:12',0),(343,136,1,'2014-02-13 10:37:12',0),(344,93,1,'2014-02-13 10:37:12',0),(345,107,1,'2014-02-13 10:37:12',0),(346,109,1,'2014-02-13 10:37:12',0),(347,85,1,'2014-02-13 10:37:12',0),(348,12,1,'2014-02-13 10:37:12',0),(350,47,1,'2014-02-13 10:37:12',0),(352,95,1,'2014-02-13 10:37:12',0),(353,68,1,'2014-02-13 10:37:12',0),(356,92,1,'2014-02-13 10:37:12',0),(357,106,1,'2014-02-13 10:37:12',0),(358,82,1,'2014-02-13 10:37:12',0),(359,16,1,'2014-02-13 10:37:12',0),(360,44,1,'2014-02-13 10:37:12',0),(363,84,1,'2014-02-13 10:37:12',0),(364,94,1,'2014-02-13 10:37:12',0),(366,129,1,'2014-02-13 10:37:12',0),(367,99,1,'2014-02-13 10:37:12',0),(368,40,1,'2014-02-13 10:37:12',0),(370,112,1,'2014-02-13 10:37:12',0),(371,115,1,'2014-02-13 10:37:12',0),(372,41,1,'2014-02-13 10:37:12',0),(374,73,1,'2014-02-13 10:37:12',0),(377,114,1,'2014-02-13 10:37:12',0),(378,137,1,'2014-02-13 10:37:12',0),(379,10,1,'2014-02-13 10:37:12',0),(380,159,1,'2014-02-13 10:37:12',0),(381,118,1,'2014-02-13 10:37:12',0),(382,22,1,'2014-02-13 10:37:12',0),(384,33,1,'2014-02-13 10:37:12',0),(386,134,1,'2014-02-13 10:37:12',0),(387,65,1,'2014-02-13 10:37:12',0),(390,42,1,'2014-02-13 10:37:12',0),(392,74,1,'2014-02-13 10:37:13',0),(394,34,1,'2014-02-13 10:37:13',0),(396,31,1,'2014-02-13 10:37:13',0),(397,108,1,'2014-02-13 10:37:13',0),(398,36,1,'2014-02-13 10:37:13',0),(400,62,1,'2014-02-13 10:37:13',0),(402,156,1,'2014-02-13 10:37:13',0),(403,101,1,'2014-02-13 10:37:13',0),(404,55,1,'2014-02-13 10:37:13',0),(406,140,1,'2014-02-13 10:37:13',0),(407,70,1,'2014-02-13 10:37:13',0),(412,91,1,'2014-02-13 10:37:13',0),(413,6,1,'2014-02-13 10:37:13',0),(414,116,1,'2014-02-13 10:37:13',0),(417,61,1,'2014-02-13 10:37:13',0),(418,1,1,'2014-02-22 00:21:22',0),(419,160,1,'2014-02-22 00:27:24',0),(422,1,40,'2014-03-12 15:18:49',0),(423,177,1,'2014-03-12 16:56:58',0),(424,1,42,'2014-03-12 17:42:39',0),(426,163,1,'2014-03-21 11:57:58',0),(427,1,43,'2014-04-03 13:23:10',0),(428,181,1,'2014-04-11 10:49:45',0),(429,189,1,'2014-05-12 17:37:23',0),(430,190,1,'2014-05-12 17:38:17',0),(431,188,1,'2014-05-12 17:38:51',0),(432,187,1,'2014-05-12 17:39:19',0),(433,182,1,'2014-05-12 17:39:41',0),(436,178,1,'2014-05-12 17:41:04',0),(437,176,1,'2014-05-12 17:42:23',0),(438,175,1,'2014-05-12 17:42:44',0),(439,174,1,'2014-05-12 17:43:15',0),(440,172,1,'2014-05-12 17:43:50',0),(441,170,1,'2014-05-12 17:44:07',0),(443,168,1,'2014-05-12 17:44:42',0),(444,167,1,'2014-05-12 17:44:54',0),(445,166,1,'2014-05-12 17:45:20',0),(446,1,44,'2014-05-17 18:08:16',0),(454,1,45,'2015-01-28 21:06:06',0),(456,220,1,'2015-02-20 13:12:32',0),(457,226,1,'2015-04-01 13:30:46',0),(458,226,46,'2015-04-01 13:40:20',0),(461,92,46,'2015-04-01 13:40:33',0),(462,47,46,'2015-04-01 13:40:48',0),(463,1,46,'2015-04-01 13:43:24',0),(464,219,46,'2015-04-01 19:38:09',0),(466,222,46,'2015-04-02 10:15:32',0),(467,223,46,'2015-04-03 09:08:23',0),(468,228,46,'2015-04-07 14:19:46',0),(469,229,46,'2015-04-08 11:17:41',0),(470,177,46,'2015-04-10 22:15:20',0),(471,231,46,'2015-04-16 10:11:04',0),(472,230,46,'2015-04-16 10:14:05',0),(474,234,46,'2015-05-13 09:35:59',0),(475,235,46,'2015-06-02 13:39:33',0),(478,238,46,'2015-06-18 14:26:34',0),(479,1,47,'2015-08-09 12:36:01',0),(480,239,46,'2015-08-19 15:05:40',0),(482,241,46,'2015-09-28 17:36:07',0),(483,244,46,'2015-10-27 22:28:14',0),(484,243,46,'2015-10-28 13:45:09',0),(485,245,46,'2015-10-30 15:39:30',0),(486,246,46,'2015-11-13 17:02:33',0),(487,247,46,'2015-11-26 19:48:09',0),(488,250,46,'2016-01-04 12:35:29',0),(489,248,46,'2016-01-08 13:14:29',0),(491,253,46,'2016-01-12 14:40:11',0),(492,257,46,'2016-01-26 14:02:53',0),(493,258,46,'2016-01-28 14:56:14',0),(496,1,48,'2016-07-01 10:58:01',0),(499,269,48,'2016-07-01 11:50:31',0),(500,270,48,'2016-07-01 11:50:56',0),(501,271,48,'2016-07-01 11:51:29',0),(502,268,48,'2016-07-01 11:52:13',0),(503,254,46,'2016-07-05 13:55:50',0),(504,259,46,'2016-07-05 13:55:50',0),(506,1,49,'2016-08-03 14:37:12',0),(507,253,49,'2016-08-03 14:37:26',0),(509,273,49,'2016-08-03 14:38:27',0),(510,259,49,'2016-08-03 14:38:45',0),(511,255,49,'2016-08-03 14:39:17',0),(512,270,46,'2016-09-08 14:35:09',0),(513,282,46,'2016-10-25 09:35:31',0),(514,283,46,'2016-10-25 09:35:48',0),(515,281,46,'2016-10-25 09:48:08',0),(516,285,46,'2016-10-30 16:22:36',0),(517,1,50,'2016-11-04 15:20:18',0),(518,286,46,'2016-11-07 03:14:25',0),(519,287,50,'2016-11-07 15:50:48',0),(521,294,46,'2017-01-02 15:44:58',0),(522,296,46,'2017-02-10 13:51:13',0),(523,298,50,'2017-02-17 11:28:04',0),(524,1,51,'2017-04-05 13:45:28',0),(525,304,51,'2017-04-05 13:54:10',0),(526,303,51,'2017-04-05 13:54:19',0),(527,308,46,'2017-04-28 10:53:58',0),(528,309,46,'2017-05-15 09:56:51',0),(529,1,52,'2017-06-12 13:26:56',0),(530,314,52,'2017-06-12 15:15:05',0),(531,315,52,'2017-06-12 15:19:39',0),(533,1,53,'2017-06-20 09:14:06',0),(535,317,53,'2017-06-20 09:14:59',0),(536,319,53,'2017-06-20 09:20:33',0),(537,318,53,'2017-06-20 09:20:49',0),(538,320,53,'2017-06-20 10:38:04',0),(539,324,53,'2017-07-13 11:33:57',0),(540,323,53,'2017-07-13 11:34:11',0),(541,304,46,'2017-08-01 16:39:07',0),(542,325,46,'2017-08-15 15:11:35',0),(543,303,46,'2017-08-31 14:45:51',0),(544,1,54,'2017-09-01 10:54:04',0),(547,1,55,'2017-09-17 15:48:59',0),(548,285,55,'2017-09-17 15:49:17',0),(549,1,56,'2017-10-01 16:27:58',0),(550,328,56,'2017-10-02 13:17:34',0),(552,331,54,'2017-11-22 10:43:38',0),(553,333,46,'2017-11-23 23:08:35',0),(554,1,57,'2017-11-23 23:10:17',0),(555,333,57,'2017-11-23 23:10:31',0),(556,335,57,'2017-12-10 16:18:13',0),(557,336,57,'2017-12-10 16:18:13',0),(558,334,57,'2017-12-10 16:18:13',0),(559,341,53,'2017-12-14 12:14:45',0),(560,342,53,'2017-12-14 13:36:12',0),(561,339,53,'2017-12-14 13:36:31',0),(562,338,53,'2017-12-14 13:38:57',0),(563,340,53,'2017-12-14 13:39:47',0),(565,345,52,'2017-12-18 18:57:40',0),(566,1,58,'2018-01-04 13:46:33',0),(567,346,58,'2018-01-04 14:51:06',0),(568,347,58,'2018-01-04 14:51:06',0),(569,348,58,'2018-01-04 14:51:06',0),(570,349,58,'2018-01-04 14:51:06',0),(571,1,59,'2018-02-07 14:36:38',0),(572,254,59,'2018-02-07 14:36:51',0),(573,350,46,'2018-02-09 18:49:40',0),(574,346,46,'2018-03-08 15:55:03',0),(575,1,60,'2018-03-15 16:40:45',0),(576,353,60,'2018-03-15 16:42:59',0),(577,354,60,'2018-03-15 16:43:12',0),(578,355,60,'2018-03-15 16:52:20',0),(579,353,46,'2018-04-24 15:52:55',0),(580,1,61,'2018-05-17 08:53:56',0),(581,257,61,'2018-05-17 08:54:11',0),(582,1,62,'2018-05-29 15:19:01',0),(583,361,62,'2018-05-30 11:36:34',0),(584,362,61,'2018-06-04 17:49:05',0),(585,365,49,'2018-07-12 14:17:34',0),(586,365,59,'2018-07-12 14:18:20',0),(587,368,56,'2018-07-20 17:09:03',0),(588,366,46,'2018-07-27 12:10:26',0),(589,1,63,'2018-07-30 11:57:48',0),(590,371,56,'2018-07-30 14:45:20',0),(591,373,63,'2018-07-31 16:14:04',0),(592,374,49,'2018-08-08 11:43:56',0),(593,374,59,'2018-09-12 11:43:27',0),(594,377,46,'2018-09-14 15:13:01',0),(595,382,52,'2018-10-18 13:08:42',0),(596,381,52,'2018-10-18 13:08:53',0),(597,1,64,'2018-10-24 11:08:15',0),(598,380,64,'2018-10-24 11:08:25',0),(599,380,46,'2018-10-24 12:02:13',0),(600,383,46,'2018-10-24 12:02:27',0),(601,383,64,'2018-10-24 12:03:43',0),(602,386,63,'2018-11-05 10:34:42',0),(603,389,63,'2018-11-05 10:34:42',0),(604,390,63,'2018-11-05 10:34:42',0),(605,388,63,'2018-11-05 10:34:42',0),(606,387,63,'2018-11-05 10:36:23',0),(607,374,46,'2018-11-13 16:02:25',0),(608,396,46,'2018-12-12 08:30:09',0),(609,1,65,'2018-12-12 18:17:06',0),(610,328,65,'2018-12-12 18:17:19',0),(611,398,46,'2018-12-14 15:23:18',0),(612,399,1,'2019-02-08 16:01:15',0),(613,1,66,'2019-03-01 18:11:25',0),(614,401,66,'2019-03-10 19:02:53',0),(615,403,54,'2019-03-22 11:00:04',0),(616,404,54,'2019-03-22 11:00:39',0),(617,410,46,'2019-07-02 14:28:08',0),(618,1,67,'2019-07-10 15:02:54',0),(619,411,67,'2019-07-10 15:38:43',0),(620,1,68,'2019-10-07 09:29:40',0),(621,223,68,'2019-10-07 09:30:27',0),(622,1,69,'2019-10-24 11:03:11',0),(623,417,69,'2019-10-24 11:07:03',0),(624,416,69,'2019-10-24 11:07:15',0),(625,1,70,'2020-02-14 13:26:57',0),(626,420,70,'2020-02-20 21:36:29',0),(627,421,70,'2020-02-20 21:36:29',0),(628,422,70,'2020-03-05 10:42:40',0),(629,424,70,'2020-05-13 14:01:50',0),(630,1,71,'2020-06-09 15:30:37',0),(631,426,71,'2020-06-18 16:17:21',0),(632,1,72,'2020-06-24 09:52:21',0),(633,427,72,'2020-06-24 09:55:25',0),(634,1,73,'2020-07-29 08:14:52',0),(635,429,73,'2020-07-29 14:44:17',0),(637,1,74,'2020-08-12 10:02:26',0),(638,430,74,'2020-08-12 16:55:09',0),(640,1,75,'2020-09-04 13:39:10',0),(641,436,75,'2020-09-04 13:39:23',0),(642,432,75,'2020-09-04 13:39:23',0),(643,433,75,'2020-09-04 13:39:23',0),(646,1,76,'2020-09-23 08:54:29',0),(647,440,76,'2020-09-23 09:20:46',0),(648,441,76,'2020-09-23 09:20:57',0),(649,439,76,'2020-09-23 09:21:50',0),(650,1,77,'2020-09-28 12:56:53',0),(651,443,77,'2020-09-28 16:21:06',0),(652,442,77,'2020-09-28 16:21:25',0),(653,445,77,'2020-10-21 14:26:03',0),(654,446,77,'2020-10-21 14:27:16',0),(655,1,78,'2020-11-04 20:03:57',0),(656,448,78,'2020-11-04 20:04:11',0),(658,450,78,'2020-11-04 20:05:23',0),(659,451,78,'2020-11-04 20:05:36',0),(660,447,78,'2020-11-04 20:05:51',0),(661,454,78,'2020-11-16 15:24:57',0),(662,455,78,'2020-11-16 15:25:07',0),(663,1,79,'2020-12-02 15:17:01',0),(664,461,79,'2020-12-02 15:17:16',0),(666,464,70,'2021-02-12 13:23:15',0),(667,467,72,'2021-02-16 09:25:08',0),(668,466,72,'2021-02-16 09:25:23',0),(669,1,80,'2021-02-22 10:20:29',0),(670,471,80,'2021-02-23 07:23:34',0),(671,468,80,'2021-02-23 07:23:49',0),(672,470,80,'2021-02-23 07:24:05',0),(673,469,80,'2021-02-23 07:24:59',0),(674,472,80,'2021-02-23 09:12:59',0),(675,473,80,'2021-02-23 09:13:59',0),(676,1,81,'2021-02-24 12:49:04',0),(677,474,81,'2021-02-25 11:02:15',0),(678,477,81,'2021-03-19 10:10:48',0),(679,462,79,'2021-04-09 12:14:57',0),(680,1,82,'2021-06-30 16:48:57',0),(686,1,83,'2021-08-19 09:41:20',0),(687,1,84,'2021-08-19 09:45:15',0),(688,489,78,'2021-08-19 14:51:16',0),(690,1,85,'2021-09-21 17:18:50',0),(691,1,86,'2021-09-21 17:21:21',0),(692,1,87,'2021-09-21 17:22:47',0),(709,502,88,'2021-10-18 16:33:41',0),(710,1,89,'2021-10-19 18:22:16',0),(712,498,81,'2021-10-20 16:15:13',0),(714,497,81,'2021-10-20 16:15:13',0),(716,499,81,'2021-10-20 16:15:13',0),(718,496,81,'2021-10-20 16:15:13',0),(720,508,81,'2021-10-20 16:15:13',0),(722,495,81,'2021-10-20 16:15:13',0),(724,492,81,'2021-10-20 16:15:13',0),(726,501,81,'2021-10-20 16:15:13',0),(728,500,81,'2021-10-20 16:15:13',0),(730,504,88,'2021-10-20 16:49:33',0),(731,513,82,'2021-10-26 09:37:00',0),(732,505,82,'2021-10-26 09:37:00',0),(733,503,82,'2021-10-26 09:37:00',0),(734,507,82,'2021-10-26 09:37:00',0),(735,506,82,'2021-10-26 09:37:00',0),(736,510,82,'2021-10-26 09:37:00',0),(737,512,82,'2021-10-26 09:37:00',0),(738,511,82,'2021-10-26 09:37:00',0),(739,514,82,'2021-10-26 11:56:31',0),(740,513,89,'2021-10-27 10:47:01',0),(741,505,89,'2021-10-27 10:47:01',0),(742,514,89,'2021-10-27 10:47:01',0),(743,503,89,'2021-10-27 10:47:01',0),(744,507,89,'2021-10-27 10:47:01',0),(745,506,89,'2021-10-27 10:47:01',0),(746,510,89,'2021-10-27 10:47:01',0),(747,512,89,'2021-10-27 10:47:01',0),(748,511,89,'2021-10-27 10:47:01',0),(749,1,90,'2021-10-28 11:38:46',0),(750,1,91,'2021-10-28 11:46:55',0),(751,515,81,'2021-11-15 10:31:53',0),(753,436,89,'2021-11-15 15:29:09',0),(754,517,86,'2021-11-15 15:30:55',0),(755,516,86,'2021-11-15 15:30:55',0),(756,518,89,'2021-11-15 15:31:48',0),(757,1,92,'2021-11-15 15:33:01',0),(758,436,92,'2021-11-15 15:33:34',0),(759,513,92,'2021-11-15 15:33:34',0),(760,518,92,'2021-11-15 15:33:58',0),(761,510,92,'2021-11-15 15:33:58',0),(762,512,92,'2021-11-15 15:33:58',0),(763,1,93,'2021-11-17 08:49:26',0),(765,436,94,'2021-11-17 13:35:37',0),(766,432,94,'2021-11-17 13:35:37',0),(767,433,94,'2021-11-17 13:35:37',0),(768,489,94,'2021-11-17 13:35:57',0),(769,447,94,'2021-11-17 13:35:57',0),(770,448,94,'2021-11-17 13:35:57',0),(771,1,94,'2021-11-17 13:36:11',0),(773,455,94,'2021-12-01 13:21:32',0),(774,1,95,'2022-01-03 09:00:49',0),(775,500,95,'2022-01-03 09:01:06',0),(776,496,95,'2022-01-03 09:01:19',0),(777,498,95,'2022-01-03 09:01:42',0),(782,1,96,'2022-01-13 17:11:46',0),(783,524,96,'2022-01-13 17:14:15',0),(784,528,96,'2022-01-13 17:14:15',0),(785,526,96,'2022-01-13 17:14:15',0),(786,525,96,'2022-01-13 17:14:15',0),(791,1,97,'2022-01-18 17:29:58',0),(792,531,97,'2022-01-18 17:30:23',0),(793,530,97,'2022-01-18 17:30:23',0),(794,532,97,'2022-01-18 17:30:23',0),(795,529,97,'2022-01-18 17:30:23',0),(796,493,85,'2022-01-24 16:32:15',0),(797,534,87,'2022-02-02 09:32:18',0),(799,533,97,'2022-02-15 16:15:41',0),(800,436,47,'2022-02-16 17:27:32',0),(801,1,98,'2022-02-16 17:29:54',0),(802,436,98,'2022-02-16 17:30:04',0),(803,1,99,'2022-02-23 13:09:56',0),(804,535,99,'2022-02-24 09:09:31',0),(805,538,93,'2022-02-28 09:04:07',0),(806,536,93,'2022-02-28 09:04:07',0),(807,537,93,'2022-02-28 09:04:07',0),(808,541,93,'2022-02-28 14:02:07',0),(809,539,93,'2022-02-28 14:02:07',0),(810,542,93,'2022-02-28 14:02:07',0),(811,540,93,'2022-02-28 14:02:07',0),(818,1,100,'2022-03-07 18:49:13',0),(819,436,100,'2022-03-07 18:49:13',0),(820,432,100,'2022-03-07 18:49:13',0),(821,433,100,'2022-03-07 18:49:13',0),(830,1,101,'2022-03-07 18:50:01',0),(831,436,101,'2022-03-07 18:50:01',0),(832,432,101,'2022-03-07 18:50:01',0),(833,433,101,'2022-03-07 18:50:01',0),(836,545,75,'2022-03-08 12:06:15',0),(837,545,101,'2022-03-08 12:06:15',0),(838,545,100,'2022-03-08 12:06:15',0),(839,546,75,'2022-03-11 16:08:14',0),(840,546,101,'2022-03-11 16:08:14',0),(841,546,100,'2022-03-11 16:08:14',0),(842,1,102,'2022-03-20 22:47:06',0),(843,538,102,'2022-03-20 22:47:59',0),(844,541,102,'2022-03-20 22:47:59',0),(845,539,102,'2022-03-20 22:47:59',0),(846,543,102,'2022-03-20 22:47:59',0),(847,544,102,'2022-03-20 22:47:59',0),(848,542,102,'2022-03-20 22:47:59',0),(849,536,102,'2022-03-20 22:47:59',0),(850,537,102,'2022-03-20 22:47:59',0),(851,540,102,'2022-03-20 22:47:59',0),(861,1,103,'2022-03-25 14:36:27',0),(862,448,103,'2022-03-25 14:36:27',0),(864,450,103,'2022-03-25 14:36:27',0),(865,451,103,'2022-03-25 14:36:27',0),(866,447,103,'2022-03-25 14:36:27',0),(867,454,103,'2022-03-25 14:36:27',0),(868,455,103,'2022-03-25 14:36:27',0),(869,489,103,'2022-03-25 14:36:27',0),(870,548,78,'2022-03-25 14:37:32',0),(871,548,103,'2022-03-25 14:37:32',0),(872,550,103,'2022-03-28 18:01:19',0),(873,551,103,'2022-03-28 18:02:27',0),(874,552,103,'2022-03-28 18:02:42',0),(875,549,103,'2022-03-28 18:56:21',0),(876,1,104,'2022-03-29 09:04:28',0),(877,553,104,'2022-03-29 09:04:39',0),(878,555,104,'2022-03-29 09:07:49',0),(879,556,104,'2022-03-29 09:07:49',0),(880,554,104,'2022-03-29 09:07:49',0),(881,557,104,'2022-03-29 09:14:57',0),(882,558,104,'2022-03-29 09:20:41',0),(883,492,98,'2022-04-05 17:50:42',0),(884,512,47,'2022-04-26 15:09:44',0),(885,503,47,'2022-04-26 15:10:20',0),(886,565,73,'2022-05-03 10:41:31',0),(887,566,49,'2022-05-03 16:12:06',0),(888,567,49,'2022-05-03 16:12:24',0),(889,568,49,'2022-05-03 16:12:43',0),(890,570,49,'2022-05-03 16:13:35',0),(891,569,49,'2022-05-03 16:13:35',0),(892,1,105,'2022-05-30 14:16:37',0),(893,422,105,'2022-05-30 14:17:00',0),(894,424,105,'2022-05-30 14:17:24',0),(895,464,105,'2022-05-30 14:17:57',0),(896,505,92,'2022-06-03 15:06:20',0),(897,572,97,'2022-06-14 11:37:37',0),(898,573,92,'2022-06-23 17:05:00',0),(899,512,98,'2022-06-27 17:55:50',0),(900,1,106,'2022-07-04 08:36:02',0),(901,574,106,'2022-07-05 09:02:26',0),(902,574,81,'2022-07-05 09:07:12',0),(903,575,71,'2022-07-12 13:19:58',0),(904,503,92,'2022-07-12 17:15:18',0),(905,549,78,'2022-07-29 11:22:59',0),(906,1,107,'2022-08-02 16:36:37',0),(907,447,107,'2022-08-02 16:36:53',0),(908,549,107,'2022-08-02 16:36:53',0),(909,577,107,'2022-08-02 17:04:24',0),(910,573,89,'2022-08-09 15:44:01',0),(911,510,47,'2022-08-29 14:10:38',0),(912,505,47,'2022-08-29 17:15:08',0),(913,578,75,'2022-09-08 14:08:45',0),(914,578,101,'2022-09-08 14:08:45',0),(915,578,100,'2022-09-08 14:08:45',0),(916,578,94,'2022-09-08 14:09:28',0),(917,431,73,'2022-11-16 11:07:56',0),(918,447,47,'2022-12-10 20:45:28',0),(919,1,108,'2023-01-10 16:06:47',0),(920,513,108,'2023-01-10 16:07:14',0),(921,505,108,'2023-01-10 16:07:14',0),(922,503,108,'2023-01-10 16:07:14',0),(923,507,108,'2023-01-10 16:07:14',0),(924,573,108,'2023-01-10 16:07:14',0),(925,510,108,'2023-01-10 16:07:14',0),(926,512,108,'2023-01-10 16:07:14',0),(927,565,47,'2023-01-24 16:31:04',0),(928,565,26,'2023-01-24 16:31:50',0),(929,1,109,'2023-01-25 11:07:53',0);
/*!40000 ALTER TABLE `members` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `messages`
--
DROP TABLE IF EXISTS `messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`board_id` int(11) NOT NULL,
`parent_id` int(11) DEFAULT NULL,
`subject` varchar(255) NOT NULL DEFAULT '',
`content` text,
`author_id` int(11) DEFAULT NULL,
`replies_count` int(11) NOT NULL DEFAULT '0',
`last_reply_id` int(11) DEFAULT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL,
`locked` tinyint(1) DEFAULT '0',
`sticky` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `messages_board_id` (`board_id`),
KEY `messages_parent_id` (`parent_id`),
KEY `index_messages_on_last_reply_id` (`last_reply_id`),
KEY `index_messages_on_author_id` (`author_id`),
KEY `index_messages_on_created_on` (`created_on`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `messages`
--
LOCK TABLES `messages` WRITE;
/*!40000 ALTER TABLE `messages` DISABLE KEYS */;
INSERT INTO `messages` VALUES (1,1,NULL,'New forum','Hello,\r\nIf you have questions about the OpenOpcUaCoreServer project please post here.\r\n\r\nBest Regards\r\nMichel Condemine\r\nOpenOpcUa Project Leader\r\n',1,0,NULL,'2014-03-22 02:25:35','2014-03-22 02:25:35',0,0),(2,1,NULL,'LDS missing? OpcUa_Channel_ResponseAvailable: Request failed! (0x800A0000)','When I run my OpenopcUa-Client application for more than 5 minutes \r\nI get this errorcodes several times, for almost each callback for my MonitoredItems\r\n(about all two seconds)\r\n\r\n...\r\n\r\nOpenOpcUa:5752> OpcUa_Channel_ResponseAvailable: Request failed! (0x800A0000)\r\n\r\n...\r\n\r\nI use Windows7 and do not have installed a LDS! Is this the reason for the problem?\r\nWhen I stop my Client, the OpenOpcUsServer has lots and lots of this output:\r\nThey seem to be kept until the Client is stopped!\r\n\r\n...\r\n\r\n|4376| 12:24:47.512Z OpcUa_SecureListener_BeginSendResponse: fail with 0x808A0000\r\n\r\n|4376| 12:24:47.512Z OpcUa_Listener_BeginSendResponse failed (0x808A0000)\r\n\r\n|4376| 12:24:47.612Z OpcUa_SecureListener_BeginSendResponse: fail with 0x808A0000\r\n\r\n|4376| 12:24:47.612Z OpcUa_Listener_BeginSendResponse failed (0x808A0000)\r\n\r\n...\r\n\r\nAt startup ofthe OpenOpcuaServer I get this errorcodes:\r\n\r\n|5724| 12:31:20.147Z Your XML configuration file : .\\Opc.Ua.SimulationNodeSet2.xml has been parsed\r\n\r\n|5724| 12:31:20.147Z SetEvent.. StartSimulation\r\n\r\n|5724| 12:31:20.147Z Your XML configuration file : .\\OpenOpcUa.Simulation.xml has been parsed\r\n\r\n|5724| 12:31:20.147Z Start Post-Parsing initialization\r\n\r\n|5724| 12:31:20.147Z Start Updating inverse references\r\n\r\n|5724| 12:31:20.157Z Start Updating UAVariablesBuiltinType\r\n\r\n|5724| 12:31:20.157Z UpdateBuiltinType>You specify an incorrect NodeId: ns=0;i=887 BrowseName=EngineeringUnits\r\n\r\n|5724| 12:31:20.157Z Configuration inconsistency.Error during Built-In type update Please check you XMLs files\r\n\r\n|5724| 12:31:20.157Z Start Updating UAVariablesEncodeableObject\r\n\r\n|5724| 12:31:20.157Z Warning FindBuiltinType ns=0;i=887 failed 0x803e0000\r\n\r\n|5724| 12:31:20.177Z End Post-Parsing initialization\r\n\r\n|5724| 12:31:20.187Z Your certificate validate your server\r\n\r\nfrom: 01/08/2013 16:23:34.000\r\n\r\n\r\nto: 06/07/2018 16:23:34.000\r\n\r\n\r\n|5724| 12:31:20.187Z Could not add server certificate to the LDS store.\r\n\r\n|5724| 12:31:20.187Z Server listening at urn:NB-21.RST-AUTOMATION.local:OpenOpcUa:4CEUAServer.\r\n\r\n|5724| 12:31:20.187Z Press Q or q and Enter to exit.\r\n\r\n|1016| 12:31:20.257Z Server Endpoint open. It\'s now listening at opc.tcp://NB-21.RST-AUTOMATION.local:16664/4CEUAServer with Binary Serializer\r\n\r\n|6832| 12:31:21.243Z OpcUa_Socket_HandleEvent: OPCUA_SOCKET_EXCEPT_EVENT: 0\r\n\r\n|6832| 12:31:21.243Z OpcUa_Channel_OnNotify: Underlying connection raised unexpected error event!\r\n\r\n|1016| 12:31:21.245Z Could not connect to server.\r\n\r\n|1016| 12:31:21.247Z DiscoverEndpoints>Channel connect to LDS failed 0x80050000\r\n\r\n|1016| 12:31:21.252Z OpcUa_SecureConnection_Disconnect: Connection in invalid state!\r\n\r\n|1016| 12:31:21.254Z DiscoverEndpoints failed uStatus=0x80050000\r\n\r\n++++\r\nThe problem seems to be this (see above)\r\n\r\n|6832| 12:31:21.243Z OpcUa_Socket_HandleEvent: OPCUA_SOCKET_EXCEPT_EVENT: 0\r\n\r\n|6832| 12:31:21.243Z OpcUa_Channel_OnNotify: Underlying connection raised unexpected error event!\r\n\r\n|1016| 12:31:21.245Z Could not connect to server.\r\n\r\n+++\r\nWill the installation of a LDS fix this problem?\r\n\r\nwith regards,\r\n F.Haferkorn\r\n\r\n\r\n\r\n',2,0,NULL,'2014-04-01 15:00:29','2014-04-01 15:00:29',0,0),(3,1,NULL,'Informations','Bonjour, j\'aimerai savoir comment compiler ce serveur ? et quelle capacité a t\'il?\r\nmerci d\'avance',197,1,4,'2014-06-06 16:53:12','2014-06-06 17:07:53',0,0),(4,1,3,'RE: Informations','Bonjour,\r\nLe serveur peut être généré sous Windows et sous Linux.\r\nSous Windows, vous pourrez le générer en utilisant Visual Studio 2008 (OpenOpcUa 1.0.2.2)\r\nIl s\'articule autour d\'une solution OpenOpcUa_V1.sln et de quatre projets\r\n# OpenOpcUaCoreServer.vcproj \r\n# OpenOpcUaSharedLib.vcproj \r\n# OpenOpcUaStackV1.vcproj \r\n# XMLSAXParser.vcproj \r\n\r\ndonc pour compiler, charger le la solution puis générer dans l\'ordre suivant :\r\n1- XMLSAXParser\r\n2- OpenOpcUaStackV1\r\n3- OpenOpcUaSharedLib\r\n4- OpenOpcUaCoreServer\r\n\r\nCordialement\r\nMichel',1,0,NULL,'2014-06-06 17:07:53','2014-06-06 17:07:53',0,0),(5,1,NULL,'Error executing OpenOpcUaCoreServer in Windows after successful build','I build the project in VS 2013 successfully, but when I go to the command line to run the output with the sample configuration (by running \"OpenOpcUaCoreServer.exe Config \" the following error pops up:\r\n\"The ordinal 3509 could not be located in the dynamic link library OpenOpcUaStackV1d.dll\".\r\n\r\n\r\nLinux works fine.\r\n\r\nTHanks\r\nCos',92,0,NULL,'2015-03-25 03:33:03','2015-03-25 03:33:03',0,0),(6,4,NULL,'OpenOpcUa','www.openopcua.org',1,0,NULL,'2016-07-01 11:02:13','2016-07-01 11:02:13',0,0),(7,4,NULL,'VIP cooperl','Après avoir testé la cooperlbox avec le VIP cooperl. \r\n\r\nJe n\'ai aucune réponse du VIP Cooperl pour le node NS=0;I=2048.\r\n\r\nIl semble que la connexion soit fermée à l\'initiative du serveur opc.\r\n\r\nTrame demande :\r\n< ---- N° sequence ----><--Taille--><---Node--><Code action ><Type>\r\n<0x00><0x00><0x00><0x01><0x00><0x0b>NS=0;I=2048 R <0x0D>\r\n\r\n\r\nPouvez vous me confirmer que le VPI Cooperl répond à cette trame de demande ?\r\n\r\nbonne journée',269,1,9,'2016-07-18 18:37:05','2016-11-03 17:40:38',0,0),(8,1,NULL,'Segmentation fault','Bonjour,\r\n\r\nJ\'ai une erreur lors de l\'execution de la demo sur debian.\r\n\r\nCi joint une capture de l\'erreur. \r\n\r\nMErci bien et Bonne journee',277,0,NULL,'2016-08-03 12:47:04','2016-08-03 12:47:04',0,0),(9,4,7,'RE: VIP cooperl','oops voila un ancien message que j\'avais raté. \r\nLe sujet est clos maintenant. Nous avons fait des progrès.\r\n\r\nEnjoy\r\nMichel',1,0,NULL,'2016-11-03 17:40:38','2016-11-03 17:40:38',0,0),(10,6,NULL,'A quoi correspond le nom d\'un node ?','Le nom d\'un node est une notion assez vague qui ne signifie pas grand-chose. Est-ce que l\'on parle du DisplayName, du BrowseName, du nodeId ou d\'autres chose ?\r\nLa question est ouverte et j\'attends vos réponses. Cela me permettra de clarifier la situation et d\'aborder les dangers associés à une mauvaise interprétation.\r\n\r\nCordialement \r\nMichel',1,0,NULL,'2017-07-19 22:43:04','2017-07-19 22:43:04',0,0);
/*!40000 ALTER TABLE `messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news`
--
DROP TABLE IF EXISTS `news`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) DEFAULT NULL,
`title` varchar(60) NOT NULL DEFAULT '',
`summary` varchar(255) DEFAULT '',
`description` text,
`author_id` int(11) NOT NULL DEFAULT '0',
`created_on` datetime DEFAULT NULL,
`comments_count` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `news_project_id` (`project_id`),
KEY `index_news_on_author_id` (`author_id`),
KEY `index_news_on_created_on` (`created_on`)
) ENGINE=InnoDB AUTO_INCREMENT=294 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `news`
--
LOCK TABLES `news` WRITE;
/*!40000 ALTER TABLE `news` DISABLE KEYS */;
INSERT INTO `news` VALUES (1,13,'Test compatibilité...','Quelques news sur le projet de certification du serveur','Bonjour,\r\nJe vous rappel que j\'ai commencé à certifier le QuickServer.\r\nCette certificiation se déroulera en 3 étapes :\r\n# Test avec les \"Server Test Application\" (Il s\'agit d\'une application .Net)\r\n# Test avec le CTT de la Fondation OPC\r\n# Test dans un TestLab (Scottsdale)\r\n\r\nCordialement\r\nMichel',1,'2012-03-06 19:48:51',0),(2,1,'Documentation','Documentation OpenOpcUa','Bonjour,\r\nLa fonction CMS Redmine etant totalement inadaptée à la gestion des documents.\r\nJ\'ai placé la documentation du Serveur, de la Stack C, de la SharedLib et du client sous controle de subversion.\r\nLes documentations seront donc accessible directement depuis votre client SVN.\r\n\r\nCordialement\r\nMichel\r\n',1,'2012-03-19 11:24:41',0),(3,11,'Mise à jour du server 1.0.0.3','Mise à jour importante dans le code du serveur','Bonjour,\r\nDans le cadre du test de compatibilité de la souche \"Server OpenOpcUa\". Je viens de procéder à une mise à jour majeure.\r\nCette mise à jour corrige de nombreux défauts de jeunesse et apporte de nombreuses améliorations.\r\nQuelques une en vrac :\r\n* Séquence de démarrage\r\n* Séquence d’arrêt\r\n* Service Discovery\r\n > FindServers\r\n > GetEndPoints\r\n* Gestion des attributs\r\n > Lecture, tableau, scalaire\r\n > Ecriture, tableau, scalaire\r\n > Filtres en lecture et ecriture\r\n* KeepAlive\r\n* Etc.\r\n\r\nCordialement\r\nMichel Condemine',1,'2012-05-11 19:59:10',0),(4,1,'Vpi Modbus','Vpi for Modbus devices, TCP and RTU.','This project implement the master part of the Modbus communication protocole.\r\nThe pre-release is now available. Please contact me to test it or to contribute in the project.\r\nMichel',1,'2012-06-19 18:01:09',0),(5,25,'UAClientLib','Dispo beta UAClientLib','Bonjour à tous,\r\nla toute première beta de la bibliothèque OPC UA permettant de réaliser des clients est disponible.\r\nCette bibliothèque est en licence CeCill-C au sein du projet OpenOpcUa.\r\n\r\nCette bibliothèque est fournit avec un petit exemple écrit en MFC.\r\nJ\'attends vos feedback !!!\r\n\r\nMichel\r\n',1,'2012-07-05 02:02:26',0),(6,20,'Binaire du sample client .Net','Ajout du binaire du sample client .net dans le module Fichier.','Bonjour,\r\nvous trouverez un binaire du client UA .Net dans le section fichier du projet clients.\r\n\r\nCordialement\r\nMichel Condemine',1,'2012-08-23 01:11:25',0),(7,13,'Register-UnregisterNode','Implementation de deux nouveaux services\r\nRegisterNodes et UnregsiterNode','Bonjour,\r\nje viens de finir l\'implementatiuon et le test,CTT compliant, des services RegisterNodes et UnregisterNode.\r\n\r\nTestez les...\r\n\r\nMichel',1,'2012-11-15 18:41:08',0),(8,13,'Bug Fix with UAExpert','I just fix a critical bug with UAExpert','Hello,\r\nGood news folks,\r\nI just fixed a critical bug with UAExpert (an OPC UA Client).\r\nWhen starting a connection with UAExpert.It trying to subscribe to events of Server Node (i=2253)\r\nThe OpenOpcUa CoreServer was not prepare for this and the server crashed.\r\nI now add the support for such a feature (EventFilter)...\r\n\r\nFeel free to contact me for detail and enjoy it\r\n\r\nMichel',1,'2012-12-26 12:07:46',0),(9,13,'Support de securité','Support de mode Sign et Sign&Encrypt','Bonjour,\r\nun \"vieux\" bug s\'etait glissé dans la souche OpenOpcUa pour le support de \"SecurityMode\" Sign et Sign&Encrypt.\r\nJe viens de le corriger dans le cadre du passage du test de compatibilité.\r\nJ\'ai par ailleurs réalisé un nouveau binaire de démo.\r\n\r\nMerci de tester les nouveaux binaires et de me donner votre avis.\r\n\r\nCordialement\r\nMichel',1,'2013-01-09 18:32:32',0),(10,3,'OpenSSL 1.0.1c','La souche OpenOpcUa utilise OpenSSL 1.0.1c','Bonjour,\r\nJ\'ai réalisé la mise à niveau en OpenSSL 1.0.1c dans le cadre du tracking du bug sur des \"SecurityMode\" Sign et Sign&Encrypt.\r\nLe build d\'openSSL 1.0.1c fait partie de la souche OpenOpcUa et sera publié dans le cadre d\'un projet independant dans notre forge.\r\n\r\nSi vous souhaitez avoir accès au code contactez moi.\r\n\r\nCordialement\r\nMichel',1,'2013-01-09 18:37:20',0),(11,13,'OpenOpcUaCoreServer Compliant','La souche du serveur OpenOpcUa est certifié','Bonjour à tous,\r\nun grand pas vient d\'être réalisé dans le projet OpenOpcUa. \r\nLa souche du serveur OpenOpcUa passe le test de compatibilité de la Fondation OPC avec succès.\r\nLe serveur a utilisé la \"Core Server Facet\" pour son test. Il sera prochainement présenté a la Fondation OPC pour certification.\r\nLes sources sont sur la forge, le binaire correspondant sera prochainement publié. *version 1.0.0.7*\r\n\r\nEnjoy it\r\nMichel',1,'2013-01-11 15:58:49',0),(12,3,'Modification stack pour Spec UA 1.02','Support AxisInformation et AxisScaleEnumeration','Bonjour,\r\nJe viens d\'ajouter le support de nouveaux UADataType définies dans la part8 v1.02 AxisInformation et AxisScaleEnumeration.\r\n\r\nMerci de les tester.\r\nCordialement\r\nMichel\r\n\r\nPS: \r\nJ\'en profite pour vous rappeler que la version actuelle de la stack (ANSIC based) ne supporte PAS la definition dynamique de types.\r\nC\'est une lacune majeure dans l\'implémentation de toutes les stack OPC UA. Notre version 2, bientot disponible, corrige ce problème. Contactez moi pour plus d\'explication.',1,'2013-01-12 13:52:47',0),(13,25,'Correction dansUAClientLib','','Je viens de corriger un problème sur la UAClientLib. \r\nCe problème était généré par deux sources :\r\n1. Problème de mise en forme de nodeId exprimées sous la forme de chaine ns=x ;s=yyyyy\r\n2. Le nouveau mécanisme de surveillance de la connexion s’appuie sur la lecture du nodeId ns=0 ;i=2258. \r\n Si on réalise une lecture de ce nœud avant l\'activation de la session le wrapper coupe le secureChannel.\r\nIl s’agit d’un problème spécifique au wrapper UA/DA-COM. J’ai corrigé le code de l\'UAClientLib pour en tenir compte.\r\n\r\nCordialement\r\nMichel',1,'2013-01-21 17:42:14',0),(14,1,'OpenOpcUa sur le site de la Fondation OPC','http://opcfoundation.org/Default.aspx/ua/embedded.asp','Une référence officielle à notre projet sur le site de la Fondation OPC.\r\nhttp://opcfoundation.org/Default.aspx/ua/embedded.asp\r\n\r\nCa fait toujours plaisir..\r\n\r\nBon week end\r\nMichel',1,'2013-02-01 19:45:01',0),(15,13,'OpenOpcUa sur le site de la Fondation OPC','http://opcfoundation.org/Default.aspx/ua/embedded.asp','Bonjour à tous,\r\n\r\nUne référence officielle à notre projet sur le site de la Fondation OPC.\r\nhttp://opcfoundation.org/Default.aspx/ua/embedded.asp\r\n\r\nCa fait toujours plaisir..\r\n\r\nBon week end\r\nMichel\r\n',1,'2013-02-01 19:47:24',0),(16,25,'Buld Linux','Suppression for each residuels','Bonsoir,\r\nafin d\'assurer une portabilité du code de l\'UACLientLib vers Linux et VXWorks j\'ai supprimé l\'ensemble des *for each*.\r\nN\'hésitez pas a tester cette nouvelle version.\r\n\r\nJ\'attends vos commentaires\r\n\r\nCordialement\r\nMichel',1,'2013-02-07 20:08:58',0),(17,25,'UAClientLib pour Linux','CMakeList pour Linux','Bonjour,\r\nJe viens de placer sur tronc du projet UAClientLib le CMakeList.txt permettant la génération sous Linux.\r\n\r\nCordialement\r\nMichel',1,'2013-03-13 14:43:16',0),(18,13,'OpenOpcUa Unified codebase','','Hello,\r\nyou can find here a fully unified OpenOpcUa codebase for both Windows and Linux.\r\n* Windows xp to 8 - VS2008\r\n* Linux Debian 2.6 - GCC\r\n\r\nhttp://www.openopcua.org/redmine/attachments/download/37/OpenOpcUa_V1_26-03-2013.zip\r\n\r\nFeel free to contact me for comment or help.\r\n\r\nEnjoy it\r\nMichel',1,'2013-03-26 08:22:00',0),(19,13,'Quelques news','OpenOpcUaCoreServer news','Bonjour à tous,\r\nquelques nouvelles du projet OpenOpcUa...\r\nPour commencer je viens de valider la compilation sous Linux UBUNTU et CENTOS.\r\nJ\'ai commencé la validation 64bits sous Linux et sous Windows elle sera finaliser dans quelques semaines.\r\nEn parallèle j\'ai entamé la préparation d\'un démonstrateur sur raspBerry Pi plus d\'info [[http://www.raspberrypi.org]]\r\n\r\nSi vous avez des besoins associé contactez moi\r\n\r\nCordialement\r\nMichel',1,'2013-06-19 14:40:47',0),(20,13,'Quelques news','OpenOpcUaCoreServer news','Bonjour à tous,\r\nquelques nouvelles du projet OpenOpcUa...\r\nPour commencer je viens de valider la compilation sous Linux UBUNTU et CENTOS.\r\nJ\'ai commencé la validation 64bits sous Linux et sous Windows elle sera finaliser dans quelques semaines.\r\nEn parallèle j\'ai entamé la préparation d\'un démonstrateur sur raspBerry Pi plus d\'info [[http://www.raspberrypi.org]]\r\n\r\nSi vous avez des besoins associé contactez moi\r\n\r\nCordialement\r\nMichel',1,'2013-06-19 14:40:48',0),(21,3,'Correction in V1 Stack','Mettez a jour vos stac un gros problème vient d\'être corrigé.','Bonjour à tous,\r\nla base de code OpenOpcUa va être mise à jour dans peu de temps.\r\nCependant avant cette mise à jour je souhaite publier une nouvelle version de la stack OpenOpcUa qui corrige un problème dans le fonctionnement des sémaphores.\r\nCe problème ne concerne que Linux sur plateforme x86.\r\n\r\nEnjoy\r\nMichel',1,'2013-12-17 10:02:14',0),(22,3,'Correction in V1 Stack','Mettez a jour vos stack un gros problème vient d\'être corrigé.','Bonjour à tous,\r\nla base de code OpenOpcUa va être mise à jour dans peu de temps.\r\nCependant avant cette mise à jour je souhaite publier une nouvelle version de la stack OpenOpcUa qui corrige un problème dans le fonctionnement des sémaphores.\r\nCe problème ne concerne que Linux sur plateforme x86.\r\n\r\nEnjoy\r\nMichel',1,'2013-12-17 10:02:23',0),(23,1,'Historical Access Support','OPC UA HA support on OpenOpcUa','Hello, \r\nI started couple of weeks ago OPC UA HA implementation in OpenOpcUa.\r\nOpenOpcUa will use a unique Virtual Fiel Interface mecanism. Those VFIs will be Add-in for archive access.\r\nThe first VFI is called VFI-CSV. We are looking for sponsors and testers.\r\nFeel free contact me directly : MichelC@4ce-industry.com\r\n\r\nMichel\r\n',1,'2014-03-12 17:03:12',0),(24,1,'Information about the OpenOpcUa','','Dear followers, contributors and sponsors,\r\nThank for your interest in the OpenOpcUa project. I want to remind you that OpenOpcUa prove it’s an efficiency for:\r\n • Embedded UA Server development\r\n • Desktop Server development\r\n • Gateway server\r\n • Multiplatform client on rich and light target\r\n • The server use at least 3 unique features.\r\n 1. AdressSpace based on the UANodeSet.xsd of the OPC Foundation (Part 6 Annexe E)\r\n 2. VPI concept for low level communication\r\n 3. VFI concept for historian capabilities\r\n • OpenOpcUA Server is also OPC Foundation CTT compliant\r\n\r\nBest Regards\r\nMichel Condemine\r\nOpenOpcUa Project Leader\r\nwww.OpenOpcUa.org\r\n+33 (0 4 67 79 07 37\r\n',1,'2014-03-22 02:07:44',0),(25,1,'Heartbleed fixed on OpenOpcUa 1.0.2.3','OpenOpcUa 1.0.2.3 use OpenSSL 1.0.1g','Hello,\r\nOpenOpcUa server support HTTPS Binary. So it was impacted by heartbleed.\r\nWe just rebuild the codebase with the last fix from OpenSSL.org 1.0.1g.\r\nFeel free to sponsor OpenOpcUa to get the last package before the summer release.\r\n\r\nBest Regards\r\nMichel Condemine\r\nOpenOpcUa Project Leader\r\nwww.OpenOpcUa.org\r\n+33 (0 4 67 79 07 37',1,'2014-04-11 10:48:08',0),(26,1,'Version 1.0.2.3','RC of the 1.0.2.3 is ready for Beta-test','Hello,\r\nThe version 1.0.2.3 of OpenOpcUa server codebase is ready for the beta test phase.\r\nI\'m looking for testerw for this new Beta. Please contact me ASAP.\r\n\r\nThe realease will occurs early july 2014.\r\nWe remember you that a new OpenOpcUa codebase is release every 6 months. Only sponsors can access online changes.\r\n\r\nBest Regards\r\nMichel',1,'2014-05-12 17:33:20',0),(27,1,'Conf Call','OpenOpcUa Conf-Call','Hello,\r\ni plan to organize a series of conference call to called feedback about OpenOpcUa and to prepare the 1.0.2.3 release next july.\r\nSo if you are interest in participating in this call please @mail me at :\r\nmichelc@4ce-industry.com\r\n\r\nThanks,\r\nMichel',1,'2014-05-20 15:07:55',0),(28,1,'REMINDER - CONF CALL','COLLABORATION REQUEST','Hello,\r\ni plan to organize a series of conference call to collect feedback about OpenOpcUa and to prepare the 1.0.2.3 release next july.\r\nSo if you are interest in participating in this call please @mail me at :\r\nmichelc@4ce-industry.com\r\n\r\nThanks,\r\nMichel\r\n',1,'2014-05-21 15:29:28',0),(29,1,'OpenOpcUa and Ignition UA','Fixe with Ignition UA in the OpenOpcUa 1.0.2.3 RC3 codebase.','Hello,\r\nI just fixed an old problem with Ignition UA implementation.\r\nI didn\'t have to time to look at it in the last month. The problem was fix today in a couple of minute.\r\nIgnition use -1 instead of 0 the tells that a array is empty. (ProfileUris on GetEndpoints)\r\nThis was confusing for the server. I put a workaround and everything works fine now.\r\n\r\nEnjoy it\r\nMichel\r\n\r\n!!',1,'2014-12-16 16:42:40',0),(30,1,'OpenOpcUaClientSdk Demo','Source code of a OPC UA Client for Windows.','Hello, \r\nI just publish an OpenOpcUaClientSdk demo with source code. This demo contains the source code of a simple OPC UA client MFC based. \r\nThe client use the OpenOpcUaClientLibrary 1.0.2.3. \r\nEnjoy it \r\nhttp://www.openopcua.org/download/Files/OpenOpcUaClientLib_1_0_2_3_Demo.zip\r\n \r\nIf you want more information on how to use the OpenOpcUaQuickCLient you just generate. \r\nRead PDF available in the Doc section.\r\nContact OpenOpcUa team for more information.\r\n\r\nMichel',1,'2015-02-04 10:15:16',0),(31,1,'OpenOpcUaClientSdk Demo','Source code of a OPC UA Client for Windows.','Hello, \r\nI just publish an OpenOpcUaClientSdk demo with source code. This demo contains the source code of a simple OPC UA client MFC based. \r\nThe client use the OpenOpcUaClientLibrary 1.0.2.3. \r\nEnjoy it \r\nhttp://www.openopcua.org/download/Files/OpenOpcUaClientLib_1_0_2_3_Demo.zip\r\n \r\nIf you want more information on how to use the OpenOpcUaQuickCLient you just generate. \r\nRead PDF available in the Doc section.\r\nContact OpenOpcUa team for more information.\r\n\r\nMichel',1,'2015-02-04 10:15:21',0),(32,1,'OpenOpcUa workshop in New York City','OpenOpcUa is organizing a developer\'s workshop on April 23 - 24 at New York City','Hello,\r\nOpenOpcUa, jointly with its sponsors, invites you to attend a hands-on workshop on OPC UA and OpenOpcUa. This exceptional event will allow you to discover the benefits of the new OPC Foundation Unified Architecture: OPC UA and how to develop UA components using OpenOpcUa.\r\n\r\nMore info here http://www.openopcua.org/Events/NY-April2015.html\r\n\r\nContact me for more detail.\r\nKind regards,\r\nMichel ',1,'2015-02-26 03:38:50',0),(33,1,'New IdentityToken in OpenOpcUa','OpenOpcUa support now 2 identityToken, AnonymousIdentityToken and UserNameIdentityToken','Hello,\r\nOpenOpcUa support now 2 identityToken, AnonymousIdentityToken and UserNameIdentityToken.\r\nThis allow you to log not only anonymously but also via User/password. The password be crypted according to the Encryption Algorythm associate with the selected Endpoint.\r\n\r\nEnjoy it\r\nMichel',1,'2015-03-05 04:09:17',0),(34,1,'New API','Two new API in OpenOpcUa client lib','Hello,\r\nthe new OpenOpcUaClientLibrary 1.0.2.5 has been release. In contains 2 new APIs\r\n* OpenOpcUa_GetInternalNodeByMonitoredItemId\r\n* OpenOpcUa_GetInternalNodeByClientHandle\r\nThe total of 50 APIs for powerfull, easy to create OPC UA client\r\n\r\nEnjoy it\r\nMichel',1,'2015-04-01 19:51:13',0),(35,1,'New API','Two new API in OpenOpcUa client lib','Hello,\r\nthe new OpenOpcUaClientLibrary 1.0.2.5 has been release. In contains 2 new APIs\r\n* OpenOpcUa_GetInternalNodeByMonitoredItemId\r\n* OpenOpcUa_GetInternalNodeByClientHandle\r\nThe total of 50 APIs for powerfull, easy to create OPC UA client\r\n\r\nEnjoy it\r\nMichel',1,'2015-04-01 19:56:46',0),(36,46,'How to use the 1.0.2.8','recommandation','Hello,\r\nin order to use the new codebase 1.0.2.8 on Windows you need to use the OpenSSL package built with CRT2013.\r\nThis package is avalablle in the Files section.\r\n\r\nContact me for more information.\r\n\r\nRegards\r\nMichel',1,'2015-06-10 14:16:21',0),(37,1,'VXWorks integration','Build of OpenOpcUa codebase to VXWorks','Hello,\r\nWindRiver just loan us a VXWorks evaluation Platform. More about VXWorks and Windriver here : http://www.windriver.com/\r\nSo, we plan to release a VXWorks pre-version on August 15.\r\nWe are looking for :\r\n* Testers\r\n* Reviewer\r\n\r\nAll of them need to be sponsors from (Green to Gold).\r\n\r\nContact me for more information\r\n\r\nKind regards,\r\nMichel',1,'2015-06-11 10:12:33',0),(38,1,'OpenOpcUaConfigManager','A configuration tool for OpenOpcUaCoreServer','Hello,\r\nwe just release the Beta 3.1 of the OpenOpcUa configuration tool.\r\nThis tool allows to handle every aspect of the OpenOpcUaCoreServer configuration.\r\n* General Server XML server config\r\n* XML NodeSet for addressSpace configuration\r\n* SubSystem configuration (VPI)\r\n* Historical Access configuration (VFI) \r\n\r\nThis tool is available a part of the OpenOpcUa sponsorShip.\r\n\r\nContact me for more information.\r\n\r\nKind regards\r\nMichel\r\n!!',1,'2015-08-17 17:16:23',0),(39,46,'OpenOpcUaClientSdk 1.0.2.9','New version of the clientSdk','Hello,\r\nI\'m releasing the beta 1 of OpenOpcUa_1_0_2_9_ClientSdk.\r\nYou can download codebase in the file section. This version contains minor fix.\r\nCan you please provide feedback before the final release.\r\nFeel free to contact me for more information.\r\n\r\nKind regards\r\nMichel',1,'2015-09-03 10:28:39',0),(40,1,'OpenOpcUaCoreServer as Windows Service','OpenOpcUaCoreServer as Windows Service','Hello folks,\r\nIn order to make OpenOpcUa more easy to use in professional application. \r\nI decide to implement a version of OpenOpcUacCoreServer as a Windows service.\r\nTo make it real in a short term i\'m looking for partners :\r\n> 1- Financial partners. a financial partner can contribute from 250€ \r\n> 2- Tester partners\r\nBoth will receive a full implementation version. Every other project follower will access this binary in 2017.\r\nFeel free to contact me for any information you may need.\r\nKind regards,\r\nMichel\r\n',1,'2015-09-24 14:08:01',0),(41,1,'OpenOpcUa SSL support','New update in the OpenSSL integration','Hi folks,\r\nIn order to increase the quality of our shared implementation of OPC UA technology. we just migrate OpenOpcUa codebase to OpenSSL 1.0.2d.\r\nThis version of openSSL include huge changes and fixe security issues in OpenSSL.\r\nThe OpenSSL is now easier to read and to debug. \r\nWe will also provide the debug binary files.\r\nThose changes will comes with the next 1.0.3.0 of OpenOpcUa codebase.\r\nThis coming version include new features like the ability to run the server as a Windows Service and a lot of bug fix.\r\n\r\nFeel free to contact me for more information.\r\nKind Regards\r\nMichel',1,'2015-10-20 11:13:04',0),(42,1,'OpenOpcUa 1.0.3.2 codebase','The new OpenOpcUa codebase is available for active sponsors.','Hello,\r\nThe new OpenOpcUa codebase 1.0.3.2 is available for download.\r\nThis is a maintenance release and resolves issues reported by user. This release also adds the new feature such as the ability for the server to run as a Windows Service. Visual Studio 2013 is supported. \r\nEnjoy it,\r\nMichel',1,'2015-11-11 17:33:33',0),(43,1,'OpenOpcUa 1.0.4.0 codebase Beta 4','OpenOpcUa 1.0.4.0 codebase Beta 4','Hello,\r\nthe new OpenOpcUa 1.0.4.0 codebase Beta 4 is ready for download.\r\nIt contains new features, bug fixes and enhancements including, LUA support, new VPIs, etc.\r\n\r\nEnjoy it\r\nMichel\r\n',1,'2015-12-10 17:10:35',0),(44,1,'OpenOpcUa on Facebook','OpenOpcUa on Facebook','Hello,\r\nIn order to increase the visibility and for a better communication between contributors. I just create a public group for OpenOpcUa on Facebook.\r\nFeel free to join at :https://www.facebook.com/groups/1529093320717132/\r\n\r\nEnjoy it,\r\nMichel',1,'2015-12-12 15:54:03',0),(45,1,'OpenOpcUa 1.0.4.0 RC1','OpenOpcUa codebase Release Candidate 1','Hello,\r\nFirst of all i wish you a happy new year for 2016.\r\n\r\nI just release the new OpenOpcUaCodebase 1.0.4.0 RC1.\r\nThis deliverable contains the new codebase for both OpenOpcUaClientLib, OpenOpcUaCoreServer and OpenOpcUaStack.\r\n\r\n1- Changes in the OpenOpcUaCoreServer\r\nThe server codebase fix bugs and add new internal performance enhancement. The server support now the priority between subscriptions.\r\n\r\n2- Change in the OpenOpcUaStack\r\nA new trace mechanism which offer a greater granularity is now part of the OpenOpcUaStack.\r\nUse the following keyword in your configuration file\r\n• To Debug the stack\r\no STACK_DEBUG\r\no STACK_ERROR\r\no STACK_WARNING\r\no STACK_INFO\r\n• To debug the server\r\no SERVER_DEBUG\r\no SERVER _ERROR\r\no SERVER _WARNING\r\no SERVER _INFO\r\n• To debug the sharedlib and the parser\r\no EXTRA_DEBUG\r\no EXTRA _ERROR\r\no EXTRA _WARNING\r\no EXTRA _INFO\r\nExample : <Trace Level=\"SERVER_ERROR\" Output=\"FILE\"></Trace>\r\n\r\n3- Changes in the OpenOpcUaClientLib\r\nNew API\r\n• OpenOpcUa_GetInternalNodeByMonitoredItemId\r\n• OpenOpcUa_GetInternalNodeByClientHandle\r\n• OpenOpcUa_CreateMonitoredItemsEx\r\n• OpenOpcUa_CreateFilterObject \r\n• OpenOpcUa_StatusCodeToString \r\nChange of function prototype\r\n• OpenOpcUa_SetShutdownCallback\r\n• OpcUa_StatusCode OpenOpcUa_InitializeAbstractionLayer(OpcUa_CharA* szApplicationName, OpcUa_Handle* hApplication, OpcUa_UInt32 uiDefaultTimeout)\r\n\r\nEnjoy it\r\nMichel\r\n',1,'2016-01-07 14:40:52',0),(46,1,'VPI Campain 2016','OpenOpcUa team is leading the 2016 VPI campain. Join us !!!','Hello,\r\nWe are starting the 2016 VPI\'s campain.\r\nThe target are the following :\r\n* Create a S7 VPI\r\n* Validation the new high performance Modbus master VPI\r\n* Review/Update the Vpi contract\r\n* Integrate OPC UA DI in the VPI concept\r\n\r\nIf you are interested please contact me.\r\n\r\nKind regards\r\nMichel4CE',1,'2016-02-10 10:03:06',0),(47,1,'Certificate management','A new feature to ease the certificate management in OpenOpcUaCoreServer','Hello,\r\nin order to enhance security and ease the certificate management we just add a new feature in the OpenOpcUaCoreServer 1.0.4.0.\r\nThis feature made of simple steps :\r\nWhen a unknown client try to connect with a secure credential \r\n1- its certificate is copied in _CertifcateStore/rejected_ folder\r\n2- the connection is refused\r\n3- When you want to allow this client to connect. you can simple move the rejected certicate from _CertifcateStore/rejected_ to _CertifcateStore/certs_\r\n\r\nEnjoy !!\r\nMichel4CE\r\n\r\nFind this news on our Facebook group \r\nhttps://www.facebook.com/groups/openopcua/ ',1,'2016-02-11 10:23:41',0),(48,1,'UAFlexClient Beta1','A new flexible OPC UA Client','I just released the new version of the UAFlex Client. This is an OPC UA client written in C ++ with Qt. I\'m awaiting for your feedback.\r\n\r\nContact me for more information.\r\n\r\nEnjoy it\r\nMichel',1,'2016-05-16 00:07:39',0),(49,48,'Welcome','Welcome in the Cooperl project','Hello',1,'2016-07-01 10:59:40',0),(50,1,'OpenOpcUa 1.0.4.2','New codebase available for sponsor','Hello,\r\nyou can download the new codebase 1.0.4.2 from the Sponsor Sub-Project.\r\nIt contains a lot new features and bug fix. See ChangeLog for details.\r\n\r\nRegards\r\nMichel',1,'2016-07-11 10:54:35',0),(51,1,'AutomationML demo','Interesting in AutomationML ?','Hello,\r\nThe AutomationML data format, developed by AutomationML e.V., standardised in IEC 62714, is an open, neutral, XML-based, and free data exchange format which enables a domain and company spanning transfer of engineering data of production systems in a heterogeneous engineering tool landscape. The goal of AutomationML is to interconnect engineering tools in their different disciplines, e.g. plant planning, mechanical engineering, electrical engineering, process engineering, process control engineering, HMI development, PLC programming, robot programming.\r\n\r\nWe just working on a demo using the Nodeset available on the OPCF website.\r\nContact me for more detail and/or to participate.\r\n\r\nRegards\r\nMichel',1,'2016-09-23 15:06:41',0),(52,48,'Runtime C VS2013','Runtime C/C++ VS2013 ','Bonjour,\r\nPour faire fonctionner le serveur sur une cible Windows. Il faut télécharger et installer le Runtime C/C++ (32bits) pour Visual studio 2013.\r\nCi-contre le lien de téléchargement : https://www.microsoft.com/fr-fr/download/details.aspx?id=40784\r\n\r\nCordialement\r\nMichel',1,'2016-09-27 14:17:34',0),(53,1,'1.0.4.4 fall 2016 codebase','Enjoy this new version !!!! ','Hello,\r\nyou can download the new codebase 1.0.4.4 from the Sponsor Sub-Project.\r\nIt contains a lot new features and bug fix. See ChangeLog for details.\r\nRegards\r\nMichel',1,'2016-10-12 13:35:29',0),(54,1,'OpenOpcUaCore Server 64 bits','The Beta 2 of the 64bits codebase ','Hello,\r\nOpenOpcUa 64bit codebase is available for download on request for sponsors. \r\nBinaries are available to everyone.\r\n\r\nContact me for details\r\nKind Regards\r\nMichel',1,'2016-11-17 13:52:49',0),(55,50,'RC 01','Dernières evolutions','Bonjour,\r\nla RC01 du VpiEternet/Ip est sur le Redmine.\r\nCette version est prête à l\'emploi. Utilisez la version release que vous lancez avec le batch : StartServerRelease.bat.\r\nTous les type sont supportés et ont été correctement testé. RA n\'a pas fournit d\'aide l\'interprétation du format des chaines est donc empirique.\r\nAucune nouvelle fonctionnalité ne sera ajoutée à cette version. Les bugs seront corrigés dans le cadre du support.\r\n\r\n\r\nUtilisez le Redmine pour le remonter.\r\n\r\nEnjoy\r\nMichel Condemine',1,'2016-12-02 16:36:19',0),(56,1,'Happy new year','Happy New Year from your friends at OpenOpcUa.\r\n','Dear OpenOpcUa follower,\r\nI wish you a great and happy new year 2017.\r\n\r\nKind regards\r\nMichel\r\n',1,'2017-01-04 11:05:13',0),(57,53,'UML View ','Free EA UML Viewer','Vous trouverez ici un Viewer EA gratuit en attendant votre version complète.\r\n[[http://www.sparxsystems.eu/enterprisearchitect/ea-lite-edition/]]\r\n Enjoy\r\nMichel',1,'2017-06-29 19:42:01',0),(58,49,'Mise à jour 29-6-2017','Deux mises à jour aujourd\'hui','Bonjour,\r\nDeux mises à jour aujourd\'hui pour corriger des bugs dans la serveur et dans le VpiModbus.\r\nLa dernière mise à jour concerne les reprises en cas d\'erreur de communication.\r\n\r\nVersion 1.0.5.0 du serveur et 1.0.2.3 du Vpi Modbus\r\nN\'hésite pas à me contacter pour plus d\'explication.\r\n\r\nCordialement\r\nMichel\r\n',1,'2017-06-29 22:54:37',0),(59,1,'Vpi Modbus TCP update','Update of the VpiModbus','Hello,\r\na new version of the VpiModbus is available for sponsors Silver, Titanium and Gold.\r\nThis new version support String, Little-Endian and Big-Endian byte order and various other enhancement.\r\nSee change log for details.\r\n\r\nEnjoy it\r\nMichel',1,'2017-07-05 00:16:59',0),(60,46,'Vpi Contract','Vpi contract enhancemnent','hello,\r\nthis summer the Vpis concept will be enhanced with a set of new function and feature.\r\nThe first one was the introduction of VpiSet Node and subNode in the Server address Space.\r\nToday i just added VpiParseAddIds. this function allows Vpi to parse tags in one call from the CoreServer.\r\nPerformance will be far better compare to current approach. Huge configuration will benefit on startup. \r\nThe first Vpi supporting the function is VpiModbus (VpiMdbMaster). \r\nThe two next one will be VpiComDa and VpiUaClient. The function signature is :\r\n*Vpi_StatusCode VpiParseAddIds(Vpi_Handle hVpi, Vpi_UInt32 UiNbOfNodeId, Vpi_ParseStruct* pParseStruct)* \r\n\r\nIn the next week i will add function to populate the addressSpace from the Vpi itself.\r\n\r\nThe full set of function will be detail later and will be available to active sponsors fall 2017.\r\n\r\nContact me for more detail.\r\n\r\nkind regards\r\nMichel',1,'2017-07-05 19:27:19',0),(61,53,'VFIHDFS','Lib pour la realisation du VFI','Le VFIHDFS fera partie du projet OpenOpcUa. \r\nQuelques information sur la librairie permettant la réalisation de ce Vfi ici : https://hadoop.apache.org/docs/r1.2.1/libhdfs.html\r\n\r\nEnjoy\r\nMichel',1,'2017-07-12 23:48:55',0),(62,1,'OpenOpcUaFlexClient','OpenOpcUaFlexClient 1.0.0.2 is available in RC1','You can download the RC1 of OpenOpcUaFlexClient 1.0.0.2.\r\nThis version is available on demand...\r\n\r\nRegards\r\nMichel',1,'2017-07-19 00:41:21',0),(63,53,'Support des Images','Le Server OpenOpcUa support les UAVariables contenant des images','Bonjour,\r\nj\'ai corrigé/amélioré le serveur pour qu\'il supporte plus simplement les UAVariables contenant des images. \r\nChaque UAVariable est déclaré ainsi :\r\n <UAVariable NodeId=\"ns=1;s=evt_4256_IMG\" BrowseName=\"Localisation PL1\" DataType=\"ImageBMP\" AccessLevel=\"3\" UserAccessLevel=\"3\">\r\n <DisplayName>Image Localisation PL1</DisplayName>\r\n <References>\r\n <!-- <Reference ReferenceType=\"HasTypeDefinition\">i=30</Reference> -->\r\n <!-- <Reference ReferenceType=\"HasTypeDefinition\">i=2000</Reference> -->\r\n <Reference ReferenceType=\"HasComponent\" IsForward=\"false\">ns=1;s=evt_4256_DiagFolder</Reference>\r\n </References>\r\n <Value> \r\n <ByteString>IHMPDiag4.bmp</ByteString></Value>\r\n </UAVariable>\r\nvoir : http://www.openopcua.org/redmine/attachments/download/385/ResultInUAExpert.png\r\n\r\nL\'image doit impérativement se trouver dans le répertoire courant.\r\n\r\nEnjoy\r\nMichel',1,'2017-08-20 22:03:24',0),(64,1,'August New feature ','Couple of new OpenOpcUaCoreServer feature','Hello,\r\nBelow a none exhaustive list of new features in OpenOpcUaCoreServer\r\n- Support for IPV6\r\n- Support for ExceptionDeviation in Historical Access (Save on change)\r\n The server support Absolute Value, Percent of EU Range, Percent of Range and Percent of value.\r\n- New VfiSql fully tested with MS SQL Server\r\n- New VpiUAClient for UA Server aggregation. This new version support automatic configuration.\r\n\r\nEnjoy\r\nMichel',1,'2017-08-29 15:22:17',0),(65,54,'Demo du 6-9-2017','Usage demo','Bonjour,\r\ncette demo fonctionne correctement en Debug. Il faudra vérifier quelques points en Release. Mais le code est compilé. Cependant Cette Release crash lors de la lecture des chaines.\r\n\r\nConcentre toi sur la Debug.\r\n\r\nCordialement\r\nMichel',1,'2017-09-06 08:56:55',0),(66,55,'Quelque info en vrac','j\'ai trouvé cela','https://link.springer.com/article/10.1007/s11760-016-0935-0',1,'2017-09-17 15:56:42',0),(67,46,'November news','Status of the November OOUACodebase','Hello,\r\nA lot of changes in the current codebase.\r\nThe new version will be 1.0.5.2. \r\nI jump couple of versions. Some of you receive the betas of 1.0.4.9 and 1.0.5.0 and 1.0.5.1. Those will never officially released\r\nSeveral changes in those intermediate version. I will cumulate all of them in the 1.0.5.2\r\n\r\nThose changes covers VPI contract update, client API update, stack conformance with OPC UA 1.04. \r\nThe list of enhancement in Vpi are huge. Contact me for details.\r\nA new Historical Access features for \"save one change\" is now implemented. This feature is using exception deviation. As always all is setup in Nodeset files.\r\nI also fixes minor issues with OpcUa_Trace functions.\r\nI fix bugs on method call. A bug appears with a client calls several LUA method in one request.\r\nSome VPI and VFI available for Titanium and Gold sponsors updated or release. It include VpiUaClient, VfiSql for SQL Server.\r\n\r\nEnjoy and contact me for more explanation\r\nRegards\r\nMichel\r\n',1,'2017-11-08 02:10:25',0),(68,51,'Desinstallation du serveur','Fixe de la regression lors de la désinstallation du serveur','Bonjour,\r\nJe viens de mettre a jour le code du serveur. Cette mise à jour ne nécessite pas de nouvelle version.\r\nPour désinstaller le serveur tapez simplement \r\n OpenOpcUaCoreServer_Release.exe Uninstall\r\nLa doc est à jour v0.96\r\nCordialement\r\nMichel',1,'2017-11-16 22:57:28',0),(69,52,'Mise à jour Harmonisateur','MAJ Harmo -Q1 2018','Bonjour,\r\nje viens de procéder a la mise à jour de l\'harmonisateur. \r\nCette mise à jour concerne principalement le VpiUaClient qui prend en charge l\'agrégation des Nodes des SSI.\r\nLa mise à jour corrige le problème rapporté par Patrick. \r\nCe problème était associé a la version préliminaire en place depuis le fin décembre. \r\nIl ne concernait que cette version préliminaire. La version du mois de novembre n\'était pas impactée.\r\nParmis les améliorations de cette version 1.0.0.3 du Vpi :\r\n1- Introduction d\'un mecanisme de type KeepAlive permettant de surveiller les SSI\r\n2- Reconnection automatique délégué à l\'OpenOpcUaClientLib\r\n3- Numérotation des handles Client \"1 based\" au lieu d\'un cast des pointeurs. Cette évolution permettra la migration 64bits.\r\n4- Emplacement des fichiers de log paramétrables\r\n5- Emplacement des fichiers de configuration paramétrable\r\n6- Nouveau paramètre permettant de régler le timeout d\'appel des services. TIMEOUT_HINT voir docuemntation VpiUaClient ou OPC UA part 4 §7.28 pour plus de détails.\r\n7- Autres evolutions et correctifs propre à OpenOpcUa 1.0.5.2\r\n\r\nCette version est encore une version préliminaire qu\'il convient de tester dans les heures, jours et semaines à venir.\r\n\r\nJe reste à votre disposition pour plus d\'information.\r\n\r\nCordialement et bonne année 2018\r\nMichel',1,'2018-01-03 13:54:42',0),(70,58,'DisplayName Issue','','Bonjour,\r\nJ\'ai régler 3 problèmes suite a notre échange de ce jour\r\n1- Les DisplayNames ainsi que l\'ensemble des champs de données d\'un fichier XML doivent faire au moins 2 caractères.\r\nPour coder un DisplayName contenant X Il faudra ajouter un espace. Par exemple\r\n <UAVariable NodeId=\"ns=1;i=102\" BrowseName=\"X\" DataType=\"Int32\" AccessLevel=\"1\" UserAccessLevel=\"1\">\r\n <DisplayName>X </DisplayName>\r\n <References>\r\n <Reference ReferenceType=\"HasTypeDefinition\">i=23</Reference>\r\n <Reference ReferenceType=\"HasModellingRule\">i=78</Reference>\r\n </References>\r\n <Value>\r\n <UInt32 xmlns=\"http://opcfoundation.org/UA/2008/02/Types.xsd\">0</UInt32>\r\n </Value>\r\n\r\n2- Le SubSystemId doit être supérieur à 100. J\'ai clarifié le message associé dans le fichier de log\r\n3- En cas de mauvaise configuration du SubSystemId. Un effet en cascade faisait crasher le serveur. J\'ai corrigé ce problème.\r\n\r\nJe vais poster une nouvelle demo du VpiOS et un nouvelle base de code. La version de cette base de code restera 1.0.5.2\r\n\r\nJe vous remercie pour cette collaboration.\r\nBien cordialement\r\nMichel\r\n',1,'2018-01-04 21:49:25',0),(71,49,'Test UAClient sous Xp','','Bonjour Anthony,\r\nj\'ai passé un long moment à tester le serveur OpenOpcUa et son VpiUaClient sous windows Xp.\r\nJe n\'ai pas pu reproduire le problème de fonctionnement en configuration manuelle.\r\nJ\'ai déclaré des nodes en lecture seule et d\'autre en lecture/ecriture. Dans les deux cas la remontée de données fonctionne correctement.\r\nATTENTION : Il est impératif que l\'ensemble de la chaine sont consistante sans quoi l\'échange ne fonctionnera pas.\r\nJ\'entends par consistante que les nodes sources en R/W soit en R/W dans le serveur d\'aggregation et dans la configuration du Vpi.\r\nLe Vpi ne permet pas de changer dynamiquement cet attribut.\r\n\r\nCordialement\r\nMichel',1,'2018-01-09 21:23:07',0),(73,52,'Harmonisateur VpiUaClient 1.0.0.4','Mise à jour Harmonisateur','Bonjour à tous,\r\nje viens de procéder à la mise à jour des l\'Harmonisateur. Cette mise à jour concerne l\'ensemble des composants du sevreurs. \r\nOpenOpcUaCoreServer (v1.0.5.2)\r\nOpenOpcUaClientLibrary (v1.0.5.2)\r\nOpenOpcUaVpiLibrary (v1.0.3.4)\r\nVpiUaClient (v1.0.0.4)\r\nCette mise à jour corrige les régression introduite dans le VpiUaClient v1.0.0.2. En particulier l\'impossibilité d\'ajouter plusieurs nodes en une seule fois au sein du Vpi.\r\nCe bug ne concernait que le VpiUaCLient et pas le serveur. La prise en compte de erreur de communication est finalisé et la perte et les retour des serveur SSI fonctionne correctement.\r\nIl reste encore plusieurs points à finaliser. L\'arrêt du serveur pose encore quelques problème et peux provoquer un crash dans des cas que j\'ai bien identifié.\r\nJe pense fournir un nouvelle version en fin de semaine. Celle-ci corrigera ces problème résiduels.\r\nAvec cette version le fournisseur de l\'UAE pour avancer dans ces tests.\r\nJ\'attends avec impatience votre retour et reste a votre disposition pour plus d\'informations.\r\nBien cordialement\r\nMichel',1,'2018-01-22 00:05:57',0),(74,52,'MAJ 1.0.0.5','MAJ 22-1-2018','Bonjour,\r\nje viens d\'installer la mise à jour du VpiUaClient V1.0.0.5.\r\nCette mise à jour corrige le problème rapporté et mis en évidence par l\'outil de Patrick.\r\nIl reste encore le problème de l\'arrêt du serveur.\r\nLes simulateurs sont prêt à être installé en tant que service. J\'ai fabriqué les GUID et modifié le fichier de configuration du P2.\r\nIl faut les droits d\'admin pour finaliser. Je propose de le faire avec Kamel demain.\r\n\r\nOn tient le bon bout.\r\n\r\nCordialement\r\nMichel\r\n',1,'2018-01-22 20:39:04',0),(75,1,'OpenOpcUa 1.0.5.2','January 2018 codebase','Hello,\r\nThe January 2018 codebase is available for download for active sponsor.\r\nIt contains +9 months effort. A lot of new feature and bug fix.\r\nContact me for detail...\r\n\r\nEnjoy \r\nMichel',1,'2018-01-24 22:58:21',0),(76,56,'VpiTyco 0.0.7.3','V0.0.7.3','Bonjour,\r\nla version 0.0.7.3 est en ligne. Elle intègre les eventcode (EVENTLOGDATA) que vous m\'avez demandé.\r\nJe n\'ai pas pu les tester car ils ne sont pas supporté par ma maquette.\r\nIl faut que vous vérifiez avant le 29/01 à 12h le bon fonctionnement.\r\n\r\nNotez que les groupes (EVENT) ne sont pas implémenté car j\'attends que vous corrigiez les doublons.\r\n\r\n\r\nCordialement\r\nMichel',1,'2018-01-29 01:28:08',0),(77,52,'MAJ 29-1-2018','Fix ISSUE 29-1-2018','Bonjour,\r\nje viens d\'installer le correctif qui fixe le problème lié au nombre de nodes abonnées/SSI.\r\nCe problème apparaissait quand un client s\'abonnait sur un SSI à plus de 30000 nodes.\r\nJ\'ai changé l\'encodage de la variable subscriptionDetail afin de régler le problème.\r\n\r\nMerci de me faire vos retours ASAP.\r\n\r\nCordialement\r\nMichel',1,'2018-01-29 14:09:08',1),(78,56,'V 0.0.7.4','Version preliminaire','Bonjour,\r\nje viens de poster une version préliminaire de la 0.0.7.4.\r\nPourriez vous la tester et m\'envoyer les log.\r\nJe cherche observer si le VpiTyco vide bien les EventLogData.\r\nCordialement\r\nMichel',1,'2018-01-30 09:28:05',1),(79,52,'Fix 1-2-2018','Fix','Bonjour,\r\nje viens de corriger le problème d\'aspiration du serveur FinSecure.\r\nLe problème était lié aux n° utilisés pour les nodeId. La fonction de comparaison dans la stack UA s\'appuyait sur des Int32 et non pas de UINT32.\r\n\r\nLe max théorique était de 2147483647 (0x7FFFFFFF )\r\nFinSecure va au de là, allez comprendre. Rien ne l\'interdit !!!!\r\nOn pourrait s\'interroger sur la pertinence dans la numérotation des nodeId chez FinSecure.\r\nPourquoi ne pas commencer à ns=x;i=1 ?????\r\n\r\nJ\'ai corrigé le problème. L\'harmonisateur fonctionne maintenant correctement. \r\nJ\'ai ajouté beaucoup de traces. Je les laisserai quelques temps afin de surveiller l\'aspiration.\r\n\r\nEnfin, faire compliquer c\'est toujours plus simple ......\r\n!!\r\nEnjoy\r\nMichel',1,'2018-02-01 23:09:52',0),(80,52,'Mise à jour 13-2-2018','Mise à jour','Bonjour,\r\nje viens de procéder à une mise à jour qui fixe plusieurs problème dans le VpiUAClient et dans l\'OpenOpcUaClientLib.\r\nParmi ces correctifs. \r\n* L\'arrêt des souscriptions, \r\n* la reconnexion automatique, \r\n* le support étendu du keepalive.\r\nJ\'ai validé les scénarios de Patrick. Le Vpi semble se comporter correctement. J\'espère avoir bien reproduit les procédures.\r\n\r\nPourriez vous procéder a quelques test et me faire votre retour.\r\nLe livrerai une autre MAJ dans les jours a venir.\r\n\r\nCordialement\r\nMichel',1,'2018-02-13 12:21:19',0),(81,57,'14-2-2018 new','Last new from the front','Hello,\r\nI conduct long test Last night and today.\r\nI made 3 runs of 2500 loop each on both windows and linux with 2 different version of the TerminalClient.\r\nThe 3 runs were a success. This is very good to say !!!\r\nIf you look in the ClientLibrary you can notice that the WatchingThread is disable.\r\nSo i just reactivate it and restart a long run.\r\nIf this one succeeded i will release the 1.0.5.3\r\n\r\nFeel from to contact me for more detail\r\nRegards\r\nMichel',1,'2018-02-14 20:59:50',2),(82,57,'16-2-2018 Client Library ','','Hello,\r\nSome information about tests and fixes on the ClientLibrary.\r\nI conducted several huge endurance tests on the ClientLibrary. All of them was a success.\r\nI discover a problem i need to fix before the release. This problem appears when a host application add thousands of monitored items in one call.\r\nThis can put the subscription and/or the session in time.\r\n\r\nI\'ll let you know.\r\n\r\nRegards\r\nMichel\r\n',1,'2018-02-16 08:43:29',1),(83,57,'OpenOpcUa 1.0.5.3 RC02','Update RC02','Hello,\r\nhere is the new update of the OOUA 1.0.5.3. This RC2 contains bug fixes.\r\nPlease test it and let me know.\r\n\r\nI\'m out of my office this week but will take care of you feedback\r\n\r\nRegards\r\nMichel',1,'2018-02-19 13:23:49',0),(84,52,'Nodeset Type ','NodeSet conforme a l\'annexe F02','Bonjour,\r\nje viens de placer sur dans la section fichier les nouveaux fichiers Nodeset conforment à *l\'Annexe 1 Version F02*.\r\nIls contiennent les nouveaux objets et quelques corrections.\r\nCes fichiers sont en place sur l\'harmonisateur et sur les simulateurs.\r\nN\'hésitez pas à me contacter pour plus d\'explication.\r\n\r\nBien cordialement\r\nMichel\r\n',1,'2018-03-04 16:23:14',0),(85,57,'Fundamental question from Ticket 256','User DataType and well-known Datatype.','Hello,\r\nIn OPC UA there are some amazing typing capabilities.\r\nLet consider two differents category of types. \r\nThe first one is made of ObjectType, VariableType and ReferenceType\r\nThe second one is made of DataType\r\n\r\nWhen we talk about Datatypes we talk about types transported in the Variable. Datatype are always a nodeId.\r\nFor instance i=1 is boolean, i=862 is ServerStatusDataType.\r\nIn datatype we must consider 3 families. \r\n1- Built-in type\r\n2- well known datatype (structure)\r\n3- user define datatype (structure)\r\n\r\nFrom the client perspective Families 1 and 2 and quiet easy to handle you don\'t need any tricky function to browse a server. Just browse and readattribute.\r\nFor variables transporting a userdefine data type you need a function capable to read the datatype dictionnary in order to decode the user define datatype.\r\nThis is precisly what the function OpenOpcUa_GetBinaryDataTypeDictionnaries and OpenOpcUa_GetInstanceValue are made for \r\n\r\nKeep in mind couple of this about it :\r\nHandling Datatype dictionnary is a unique OpenOpcUa feature\r\nThis is a very new feature available as beta\r\nServer\'s exposing User define datatype are RARE\r\nA small amount of people understand this amazing OPC UA Capability.\r\n\r\nSo my advice is to focus first on regular case (family 1 and 2). Then it let me time to fixe family 3 handling in OpenOpcUaClientLibrary.\r\n\r\nRegards\r\nMichel Condemine',1,'2018-03-06 11:59:38',1),(86,1,'A Lire','Brochure sur OPC UA en FR','Brochure OPC UA en Français. \r\nhttp://fr.calameo.com/books/0054992231a060bb57326\r\nCette brochure est soutenue par OpenOpcUa Team\r\nEnjoy\r\nMichel Condemine',1,'2018-03-07 19:28:12',0),(87,57,'Simulation 2018 demo','Demo with GUID and OPAQUE nodeId','Hello,\r\nYou can find in file section a binary demo of the OpenOpcUaCoreServer running files with OPAQUE and GUID nodeIds.\r\nEnjoy\r\nMichel Condemine',1,'2018-03-10 00:43:38',1),(88,52,'Livraison Harmonisateur 8-4-2018','L\'harmonisateur est en approche finale','Bonjour,\r\nAprès un week end très studieux.\r\nJ\'ai installé une nouvelle version de l\'harmonisateur.\r\nCette nouvelle version \"debug\" se trouve dans le répertoire E:\\Harmonisateur_OpcUa_Debug.\r\nAttention, Il y a un gros volume d\'instrumentation dans les fichiers log.\r\n\r\nJ\'attends que des problèmes se produisent pour finaliser.\r\n\r\nParmi les problèmes à corriger. Il y a :\r\n* Crash du serveur quand l\'UAE se deconnecte\r\n* Discordance des ClientHandle après reconstruction des subscriptions\r\n\r\nJe continue biensur le travail. J\'attends vos retours et serait dispo cette semaine pour en parler.\r\n\r\nBien cordialement\r\nMichel',1,'2018-04-08 19:10:22',0),(89,57,'New','What news ','Hello,\r\nthere are a couple of weeks since i didn\'t hear from you guy.\r\nDo you need any help ?\r\nI fixed couple of issue in the client library. It will be release in couple of days.\r\nDo you have feedback ?\r\n\r\nRegards\r\nMichel Condemine',1,'2018-04-09 10:35:27',1),(90,52,'Version 1.0.1.2','Correction du cas particulier remonté par Patrick ce soir','Bonsoir,\r\nj\'ai corrigé le problème remonté par Patrick.\r\nIl s\'agissait d\'un problème relatif au passage de commandes sur des nodes auxquelles aucun client n\'est abonné.\r\nDans ce cas le Vpi ne trouvaite pas la node. Il considèrait le demande invalide et ne réalisait pas l\'écriture.\r\nJ\'ai donc amélioré le VpiUaClient afin qu\'il cherche les nodes dans le serveur \"Graine\" même sans client abonné.\r\n\r\nIl reste encore des problèmes intempestifs et non systèmatique :\r\n# Quand client UA se déconnecte.\r\n# Quand le serveur s\'arrête\r\n\r\nJe poursuivrais mes recherches demain.\r\n\r\nJ\'attends toujours vos retours.\r\n\r\nBien Cordialement\r\nMichel Condemine',1,'2018-04-10 01:20:44',0),(91,56,'READWRITE_TIMEOUT','création d\'un paramètre permettant le contrôle du timeout sur le pour USB-SERIE via FTDI.','Bonjour,\r\nLe paramètre READWRITE_TIMEOUT peut être ajouté dans le fichier complémentaire de configuration pour contrôler le timeout sur le port série.\r\nLa valeur est exprimée en millisecondes. La valeur par défaut est de 5000.\r\nExemple :\r\nREADWRITE_TIMEOUT 5000\r\nCordialement \r\nMichel',1,'2018-04-10 21:31:18',0),(92,52,'OOUA Server 1.0.5.4','Livraison 11-4','Bonjour,\r\nEn travaillant sur un autre projet utilisant le serveur OpenOpcUa j\'ai découvert une potentielle régression qui pourrait expliquer les crashes au moment la déconnexion du client UAE.\r\nJ\'ai corrigé cette regression et déployé la version 1.0.5.4 du serveur et de l\'ensemble des composants associés (en version débug E:\\Harmonisateur_OpcUa_Debug).\r\nJ\'ai fait quelques essais qui ont été concluant.\r\nPourriez vous continuer de votre côté et me faire part de vos observations.\r\n\r\nJe viens de reproduire le problème :( \r\nJe continue mes recherches\r\nCordialement\r\nMichel\r\n',1,'2018-04-11 23:43:32',0),(93,56,'Fichier de configuration du Vpi','Full OLW SubSystem','Bonjour,\r\nj\'ai placé le fichier de configuration du SubSystem Vpi sur le RedMine. _Opc.Ua.SubSystem.Tyco.xml_\r\nLe fichier et bien généré mais j\'ai noté quelques erreurs sur les accessRight qui proviennent probablement du fichier NodeSet.\r\n\r\nJe vous invite a corriger les deux\r\n\r\nCordialement\r\nMichel',1,'2018-04-12 17:50:33',0),(94,52,'Test Harmonisateur','UAE Indisponible','Bonjour,\r\nj\'avais prévu de travailler sur l\'harmonisateur ce week end.\r\nMalheureusement je n\'arrive pas a lancer le plug-in de l\'UAE. \r\nJ\'obtiens une erreur de log-in.\r\nEst ce que vous pourriez faire le necessaire afin que je puisse reprendre mes tests lundi 23/4 ?\r\nJ\'ai malgré tout installé la mise à jour dans le repertoire E:\\Harmonisateur_OpcUa_Debug\r\n\r\nSi vous prévoyez de l\'utiliser lancez le version debug :\r\n1- StartServer_Debug.bat\r\n2- ProcDumpStartServer.bat\r\n\r\nEn cas de crash a le deconnexion de l\'UAE un fichier minidump sera automatiquement créé.\r\n\r\nCordialement\r\nMichel\r\n',1,'2018-04-22 21:22:39',0),(95,52,'VpiUaClient 1.0.1.4','La nouvelle version est enfin prête','Bonjour,\r\naprès plusieurs semaines de travail la version 1.0.1.4 du VpiUaClient est enfin prête.\r\nL\'ensemble des composants de l\'harmonisateur seront mise à jour.\r\nJe vous propose de faire un point Skype pour faire le tour des problèmes résiduels et libérer cette version.\r\n\r\nJ\'attends vos propositions de date et remarques. Je suis dispo toute la semaine.\r\n\r\nCordialement\r\nMichel Condemine',1,'2018-04-24 18:13:52',0),(96,56,'Update 13-5-2018','Mise à jour importante','Bonjour,\r\nje viens de livrer une mise à jour importante. Cette mise à jour est disponible dans la section fichier (Livraison 13-5-2018.zip)\r\nElle corrige un problème dans le serveur. Ce problème était causé par une regression introduite dans la livraison précédente. Elle ne concerne pas le VPI.\r\nJ\'ai cependant mis à jour l\'ensemble des composants du serveur. VPITYCO est en version 0.0.9.0\r\n\r\nMerci de mettre à jour le site ASAP\r\n\r\nN\'hésitez pas à me contacter pour plus d\'information.\r\n\r\nCordialement\r\nMichel',1,'2018-05-13 11:11:04',0),(97,53,'XmiToNodeSet RC06','Nouvelle version','Bonjour,\r\nla nouvelle version (RC06) est en ligne.\r\nElle permet une génération complète à +90%.\r\nIl reste quelques problèmes dans les \"typeDefinitions\".\r\nJe vais les corriger dans la semaine\r\n\r\nMerci de me faire vos retours ASAP\r\n\r\nCordialement\r\nMichel Condemine\r\n',1,'2018-07-01 21:22:43',0),(98,52,'GUID - EGIDIUM 1','GUID a utiliser sur EGIDIUM 1','Bonjour,\r\nci-après le GUID à utiliser sur EGIDIUM1 {A4AD60E7-ED40-4C13-8645-C60249EF237A}\r\n\r\nCordialement\r\nMichel',1,'2018-07-25 15:06:49',0),(99,46,'July new','OpenOpcUA 1.0.5.5','I just published the OpenOpcUa 1.0.5.5. The 1.0.5.6 is coming next month with OpenSSL 1.1 and fully tested 64bits support.\r\n1.0.5.3 and 1.0.5.4 was release for Silver and > sponsors\r\n\r\nRegards\r\nMichel',1,'2018-07-27 15:03:32',0),(100,49,'VpiUAClient 9/8/2018','VpiUaClient Status','Bonjour,\r\nJe rencontre des problèmes avec le test du VpiUaClient en mode Manuel.\r\nL\'ensemble des types simples fonctionnent correctement. Cependant l\'appel des méthodes pose un problème.\r\nJ\'espère régler ce problème avant vendredi. \r\n\r\nCordialement\r\nMichel Condemine',1,'2018-08-09 00:25:39',0),(101,49,'Livraison 09-08-2018','Livraison','Bonjour,\r\nje viens de livrer la nouvelle base de code OpenOpcUa 1.0.5.6 beta 03. \r\nElle contient le support complet du 64 bits et quelques nouvelles signatures pour les fonctions de peuplement de l\'espace d\'adressage depuis les Vpis.\r\n\r\nLe projet contient aussi les sources du VpiUaClient en 32 et 64bits lui aussi. \r\nEn outre vous trouverez un projet demonstraant de l\'usage du VpiUaCLient en configuration manuelle dans le fichier Demo_VpiUaClnt_x64.zip\r\nJ\'ai pu tester uniquement l\'appel de méthodes sans paramètre mais il est certain que l\'appel avec paramètre fonctionnera.\r\nVous devrez installer le serveur OPCF qui écoute en opc.tcp://MACHINE_NAME:51210/UA/SampleServer pour tester cette demo.\r\n\r\nCordialement\r\nMichel Condemine\r\n',1,'2018-08-09 17:06:46',0),(102,56,'Nouveau parametre','SUPERVISION_REQUEST_THREAD_RATE','J\'ai introduit la paramètre SUPERVISION_REQUEST_THREAD_RATE qui permet de régler la vitesse d\'envoi de la \"supervision request\".\r\nLa valeur est exprimée en milliseconde.\r\nexemple :\r\nSUPERVISION_REQUEST_THREAD_RATE 55000\r\n\r\nCordialement\r\nMichel',1,'2018-08-20 16:48:34',0),(103,52,'Relation Harmonisateur/Concentrateur','Relation Harmonisateur/Concentrateur','Bonjour,\r\nAu démarrage les concentrateurs peuvent mettre quelques secondes ou minutes pour être totalement opérationnels.\r\nIl convient que l\'harmonisateur soit informé de leurs disponibilités avant de démarrer l\'aspiration. \r\nA défaut nous pourrions être confronté à des problèmes.\r\n\r\nJe propose d\'utiliser le Node d\'Id i=2259 pour cela. Ce node est obligatoire dans les serveurs OPC. il se trouve dans l\'espace d\'adressage de la Fondation OPC.\r\n\r\nIl s\'agit d\'une énumération qui peut prendre les valeurs suivantes :\r\n* Running = 0,\r\n* Failed = 1,\r\n* NoConfiguration = 2,\r\n* Suspended = 3,\r\n* Shutdown = 4,\r\n* Test = 5,\r\n* CommunicationFault = 6,\r\n* Unknown = 7\r\nLes concentrateurs basculeront sa i=2259 la valeur en fonction de leur etat interne. L\'harmonisateur utilisera cette valeur pour aspirer la configuration.\r\nLes trois etats suivants déclencheront l\'aspiration.\r\n\r\nRunning aura la signification suivante (ASPIRATION):\r\n* Configuration chargé\r\n* Communication active\r\n\r\nCommunicationFault aura la signification suivante (ASPIRATION):\r\n* Configuration chargé\r\n* Pas de communication avec les centrales\r\n\r\nTest aura la signification suivante (ASPIRATION):\r\n* Configuration chargé\r\n* Concentrateur en mode test\r\n\r\nJe suis a votre disposition pour plus d\'explication.\r\n\r\nCordialement\r\nMichel Condemine\r\n',1,'2018-10-18 16:48:15',0),(104,52,'MAJ WRAPPER','Wrapper OLW','Bonjour,\r\nj\'ai mis à jour le wrapper sur EGIDIUM1.\r\nL\'ensemble des variables sont configurées. La couche de communication (COM DA) est désactivée.\r\n\r\nBon tests à tous.\r\nCordialement\r\nMichel\r\n',1,'2018-11-03 21:22:30',1),(105,56,'Livraison 4-11-2018','','Bonjour,\r\nje viens de faire une livraison qui contient la mise à jour du VpiTyco et du VpiTycoEx.\r\nLe VpiTyco ne contient pas de modifications mais il est recompilé avec les derniers binaires du CoreServer.\r\nLe VpiTycoEx (config auto) contient les dernières evolutions de la couche protocole. Il s\'agit en particulier de l\'utilisation des packetId 148,149 et 150.\r\n\r\nComme demandé il s\'agira de lire les leds en face avant des centrales par un Polling régulier.\r\n\r\nhttp://www.openopcua.org/redmine/attachments/download/974/Livraison%204-11-2018.zip\r\n\r\nJe suis en déplacement du 5 au 9 novembre. Je finaliserai le VpiTycoEx à mon retour.\r\nCordialement\r\nMichel',1,'2018-11-04 10:50:42',0),(106,56,'Livraison OOUAConfigManager','','Bonjour Norbert,\r\nje viens de poster la version \"Debug\" du configManager. Elle contient les DLL qui vous permettront de l\'executer sur un poste standard.\r\nC\'est la version que j\'ai utilisé pour fabriquer le Wrapper Siemens.\r\nTenez moi au courant.\r\n\r\nCordialement\r\nMichel',1,'2018-11-08 09:03:00',0),(107,63,'Valgrind command on OOUA/Debian 9','','valgrind --leak-check=full --track-origins=yes -v ./OpenOpcUaCoreServer ./SIMULATION.oouaprj \r\n',1,'2018-11-09 00:02:14',0),(108,59,'Configuration 1000 Nodes','','Bonjour,\r\nj\'ai travaillé sur la configuration 1000 nodes.\r\nAprès quelques adaptations et finalisations elle fonctionne avec le serveur 1.0.5.6 Officiel.\r\nUne reserve de taille cependant la Deadlock que j\'avais évoqué lors d\'un CALL est bien présente si on active la ligne suivante : \r\nuStatus=pUAVariable->WriteToVpiTags(pDataValue[ii]); dans la VpiNotifyCallback.\r\n\r\nLa fonction d\'agregation multi-core fonctionne parfaitement mais l\'échange inter-core ne fonctionne donc pas. \r\nIl faudrait si on souhaite l\'utiliser que je modifie la code du serveur.\r\n\r\nCordialement\r\nMichel\r\n',1,'2018-11-16 00:50:47',0),(109,56,'Prise en compte de En_Srv','Prise en compte de En_Srv dans le Vpi legacy','Bonjour,\r\nJ’ai mis en place la modification qui permet de régler l’état en-service/hors service d’une centrale.\r\nVous devrez déclarer dans le fichier .dat les lignes suivantes :\r\nPANEL_EN_SRV 1,2,10,15\r\nNe déclarez que les centrales en services. Les autres seront considéré hors-service.\r\n\r\nBien cordialement\r\nMichel Condemine\r\n',1,'2018-11-21 16:15:33',0),(110,56,'Version 0.1.0.9','','Bonjour,\r\nla nouvelle version prend en compte votre demande de support de ELD 456 pour le retour a FALSE des ARR_DRG_SON. \r\nAttention les ARR_ALM_SON ne sont pas concernées.\r\n\r\nJ\'ai aussi amélioré le comportement des NODES EN_SRV selon les constations du jour.\r\n\r\nCordialement\r\nMichel Condemine',1,'2018-11-22 18:51:13',0),(111,49,'Transfert Inter-Core','Ca Marche','Bonjour,\r\nje viens de régler le problème de transfert inter-core dont nous avons parler lors du call de 14h.\r\nLe problème venait d\'une DeadLock provoqué par le VpiUaClient.\r\nJe vais maintenant me concentrer sur la propagation des appels de méthodes.\r\nJe passerai ensuite aux structures.\r\nUne version sera disponible demain 30/12/2018\r\n\r\nCordialement\r\nMichel Condemine',1,'2018-11-29 16:18:35',0),(112,52,'MAJ HARMO','Mise à jour','Bonjour,\r\nJ\'ai procèdé à une mise à jour de l\'harmonisateur pour corriger les problèmes d\'instabilités constatés ces derniers jours.\r\nJe repasserai l\'harmonisateur en mode service quand j\'aurai vérifié sa stabilité.\r\nMerci de partager le résultat de vos tests ASAP\r\n\r\nCordialement\r\nMichel\r\n',1,'2018-11-29 16:29:46',0),(113,52,'MAJ Harmo 2-12-2018','','Bonjour,\r\nAprès 3 jours de fonctionnement sans problème en mode instrumenté.\r\nJe viens de mettre à jour l\'harmonisateur et de le basculer en mode service.\r\nCette mise à jour intègre : \r\n1- De nouvelles fonctionnalités héritées d\'autres projets sur lesquels je travaille, \r\n2- La correction de bugs\r\n3- Plus de stabilité de l\'ensemble des composants.\r\n\r\n\r\nElle version supporte la Security Policy Basic256Sha256. La fondation OPC recommande de ne plus utiliser les algo SHA1. Donc \"out\" Basic128Rsa15 et Basic256. \r\nJ\'ai remarqué que depuis plusieurs semaines le nombre de tests et le stress imposé à l\'harmonisateur ont grandement baissé.\r\nLe plug-in est très souvent, voir toujours HS.\r\nAfin de maximiser les chances de réussite du projet il est essentiel que l\'Harmonisateur soit en fonctionnement à forte charge H24.\r\n\r\nJe vous rappel que l\'harmonisateur est un ESB (Enterprise Service Bus). https://en.wikipedia.org/wiki/Enterprise_service_bus\r\nUn ESB est un composant essentiel dans l\'architecture d\'un GTC/GTB moderne. L\'harmonisateur apporte :\r\n\r\n1- Plus de simplicité de les interactions avec des concentrateurs hétérogènes.\r\n2- Un double archivage des données\r\n3- Une plus grande évolutivité, prise en compte des système \"LEGACY\", conversion de protocoles.\r\n4- Gouvernance\r\n5- Abstraction et modélisation métier\r\n6- Confinement des sous-systèmes\r\n7- L\'harmonisateur est enfin un ESB Normalisé. Il s\'appuie sur les concepts de l\'ESB et sur une norme internationnale, clé de voute de architecture de l\'industrie 4.0\r\n\r\nCette liste n\'est pas exhaustive.\r\nEn résumé je dirais qu\'une architecture composé d\'un ESB est la seule qui garantisse la pérénité et le professionnalisme d\'un système industriel moderne.\r\n\r\nJe reste à votre disposition pour plus d\'information.\r\n\r\nCordialement\r\nMichel Condemine\r\n',1,'2018-12-02 17:59:02',0),(114,58,'OOUA 1.0.5.6','Mise à jour','Bonjour,\r\nla version 1.0.5.6 de la base de code OpenOpcUa est disponible.\r\nSouhaitez vous faire une MAJ pour livrer votre client ?\r\n\r\nCordialement\r\nMichel Condemine\r\n',1,'2018-12-03 10:13:02',0),(115,1,'Happy 2019','Happy new year','Dear sponsor, supporter and follower. \r\nI wish you a happy new year.\r\nMay 2019 bring you happiness, joy and success.\r\n\r\nMichel Condemine\r\nOpenOpcUa project leader',1,'2018-12-30 17:51:35',0),(116,59,'Support des structure encapsulées','','Bonjour,\r\nles structures encapsulées fonctionnent, enfin.\r\nAucune modification n\'ai necessaire dans le code existant.\r\nSeule la déclaration du DTD doit être adapté.\r\n!STR_BATIVUE_PAR.PNG!\r\n\r\nCordialement\r\nMichel',1,'2019-03-11 17:42:13',0),(117,66,'QCM v0.0.1','','Bonjour Didier,\r\nj\'ai placé dans la section fichier une version TRES préliminaire du QCM.\r\nMerci d\'ajouter tes commentaires.\r\nOn en parle vendredi \r\n\r\nCordialement\r\nMichel',1,'2019-03-13 08:59:17',0),(118,66,'Systerel OPC','','Pour info\r\nhttp://www.systerel.fr/innovation/produits/safe-secure-opc/\r\n',1,'2019-04-03 19:19:32',0),(119,56,'VpiTycoEx','Nouvelles fonctionnalités','Bonjour,\r\nci-dessous la liste paramètres de réglage des vitesse de fonctionnement des threads. \r\n* POOLING_THREAD_RATE valeur par défaut 15000\r\n* SUPERVISION_REQUEST_THREAD_RATE valeur par défaut 60000\r\n* SYNC_DATETIME_RATE valeur par défaut 1800000\r\n* COMMON_THREAD_RATE valeur par défaut 15000\r\n* MAINTENANCE_THREAD_RATE valeur par défaut 90000\r\n* ADDRESSSPACE_THREAD_RATE valeur par défaut 15000\r\n\r\nCordialement\r\nMichel Condemine',1,'2019-04-29 11:49:29',0),(120,56,'Version 0.0.1.2','Modification dans la nom des dll','Bonjour,\r\nSuite a votre demande. les deux DLL principales utilisées dans la prise en compte du protocole MXSpeak distinguent maintenant la version série et la version ftdi.\r\n* pour la version ftdi :\r\nOpenOpcUaVpiLibraryFtdi.dll et VpiTycoExFtdi.dll\r\n* pour la version série\r\nOpenOpcUaVpiLibrary.dll et VpiTycoEx.dll\r\n\r\nPensez a changer le nom du Vpi dans le fichier subSystem\r\n\r\nCordialement\r\nMichel Condemine',1,'2019-04-30 18:12:35',0),(121,56,'Traitements associés au thread','','Bonjour,\r\nCi-dessous quelques explication sur les traitements réalisés par les différentes thread\r\n1- POOLING_THREAD\r\n Lecture des PointInformation\r\n2- SUPERVISION_REQUEST\r\n Envoi des SupervisionRequet\r\n3-SYNC_DATETIME\r\n Synchronise l\'heure des centrales\r\n4- TYCO_THREAD\r\n Il s\'agit d\'une thread qui réalise l\'initialisation de la communication entre le Vpi et les centrales raccordées.\r\n Au démarrage cette thread réalise :\r\n On fixe la vitesse de fonctionnement de la thread VpiTycoThread a COMMON_THREAD_RATE\r\n Quand on a reçu le premier ELD :\r\n On provoque un \"FireReset\" pour resynchroniser la cache du serveur\r\n Une fois que le Vpi a reçu son ClientId :\r\n les demandes de synchronisation (PID:237)\r\n L\'envoi des PointStatusMap (PID:133)\r\n L\'abonnement aux Zones (PID:131)\r\n5- MAINTENANCE_THREAD\r\n Surveille MODIF_BD, LS_XXXX and CSSI_ADP_XXXXX.DFT\r\n6- ADDRESSSPACE_THREAD\r\n Création de l\'espace d\'adressage (Node et Tag)\r\n\r\nJe reste a votre disposition pour plus d\'explication\r\n\r\nCordialement\r\nMichel',1,'2019-05-03 11:35:15',0),(122,1,'Server OffLine','Server off line for 3 weeks','Hello,\r\nThe OOUA webserver is back online after three weeks… \r\n\r\nFeel free to contact me for more detail.\r\n\r\nBR\r\nMichel Condemine',1,'2019-06-07 15:13:24',0),(123,56,'VpiTycoEx 0.0.2.9','','Bonjour,\r\nJe viens de livrer la version VpiTycoEx 0.0.2.9 du VpiTycoEx.\r\nLe fichier ZIP contient le dernier serveur 1.0.5.7 RC07 qui sera certifié en Octobre par la Fondation OPC.\r\nCette version du serveur corrige plusieurs incompatibilités avec la version OPC UA 1.03.\r\nPlusieurs amélioration ont été introduite dans cette version concernant les CRLs, les certificats d’autorités et les CRLDP.\r\n\r\nConcernant le VpiTycoEx. \r\nElle corrige le problème que vous m’aviez indiqué sur le déclencheur manuel.\r\nAttention, Pour l’utiliser vous devrez supprimer le répertoire CertificateStore existant et laisser le serveur le recréer.\r\n\r\nJe reste à votre disposition pour plus d’information\r\n\r\nCordialement\r\nMichel Condemine',1,'2019-09-05 20:07:53',0),(124,56,'Nouveaux binaires','Nouvelle livraison','Bonjour Norbert,\r\nles ZIP postés ce jour contiennent l\'ensemble des binaires OOUA et VpiTycoEx.\r\nIl s\'agit de la version 64bits en cours de certification par la Fondation OPC. Le CTT passe à 100%\r\nIl y a des changement dans le fichier OOUAPRJ. \r\nJ\'ai placé une configuration complète qui vous permettra facilement de voir les changements.\r\nIl faut s\'en inspirer pour la plateforme sur site\r\n\r\nJ\'ai, bien sur, testé ces binaires sur ma maquette.\r\n\r\nN\'hésitez pas à m\'appeler pour plus d\'explication.\r\n\r\nCordialement\r\nMichel',1,'2019-11-06 23:27:07',0),(125,56,'VpiTycoEx 0.0.3.4','Intégration de 3 evolutions','Bonjour,\r\nquelques évolutions dans le VpiTycoEx suite à votre demande.\r\nLa nouvelle version est la 0.0.3.4\r\nLes modifications sont les suivantes :\r\n1 – réactivité ALD : \r\nAfin d\'améliorer la rapidité de la remontée de l’information ALD (G1601 interrogé via le polling des faces avant des CMSI maitre).\r\nVous avez souhaité que l\'on interroge G1601 uniquement lors de l’apparition d’un feu de n’importe quelle centrale.\r\nLa lecture de groupe 1601 est intégrée dans une demande qui interroge les centrales pour tous les groupes actifs. \r\nCette demande qui était précédemment en polling ne sera réalisé que lorsque un départ feu est détecté. Le départ feu est associé au G100, G960, G1001, G1002\r\n\r\n2 – Pause Polling - POLLING_TEMPORIZATION \r\nSuspendre le polling pendant 3 minutes lors de la réception d’un message de réarmement. Une valeur paramétrable qui se trouve dans le fichier .dat du projet est utilisée pour indiquer la durée de la temporisation.\r\nPOLLING_TEMPORIZATION 300000 \r\nLa valeur est exprimée en milliseconde. 300000 pour une temporisation de 5 minutes \r\n\r\n3- Séquence de démarrage\r\nToutes les communications sont assurées par des threads. ListeningThread, VpiTycoThread, PollingThread. \r\nChacune de ces thread ne démarreront leurs échanges avec les centrales que lorsque l\'espace d\'adressage OPC UA sera construit.\r\nCette modification introduite dans la version 0.0.3.4 du VpiTycoEx evitera l\'utilisation des temporisations demandés ci-dessous. \r\n\r\n* Attendre 5 minutes avant d’envoyer la requête pour les zones status map (Elles ne sont initialisées que quand la TycoThread est débloquée)\r\n* Attendre 10 minutes avant de commencer le polling des face avants (La thread de polling ne démarre que lorsque l\'espace d\'adressage est constuit)\r\n* Attendre 15 minutes avant de passer MODIF_BD à True le cas échéant\r\n\r\nCordialement\r\nMichel Condemine',1,'2020-02-19 10:37:57',0),(126,70,'Version 0.9 operationnelle','Livraison 11-5-2020 v0.9','Bonjour,\r\nje viens de déposer sur le redmine la première version iso-fonctionnelle, Windows, Debian et Yocto-SK.\r\nJ\'ai rencontré de nombreux problèmes avec la cible et la génération du VpiSk. J\'ai modifié les CMakeLists.txt par rapport à la précédente livraison.\r\nLe code source reste inchangé.\r\nCette livraison contient l\'ensemble du code.\r\nJe reste à votre disposition pour plus d\'explication.\r\n\r\nCordialement\r\nMichel Condemine',1,'2020-05-11 19:53:14',0),(127,55,'Quelle toolkit Open Source ?','Quelle toolkit Open Source?','Si c\'est juste des mesures avec des flottants et qu\'on a suffisamment d\'anomalies oui xgboost c\'est bien. S\'il y a de l\'image ca sera plutot du transfert d\'apprentissage sur des reseaux de neurones profond comme ResNet. Si c\'est des flottants mais avec des anomalies très rares et tres diverses il faudra autre chose.\r\n\r\nLa dernière methode avec du clustering est plus simple parce qu\'elle ne demande aucune données labellisées pr apprendre. Juste des exemples d\'observations ie des mesures qu\'on essaie de regrouper',1,'2020-06-04 19:43:20',0),(128,1,'OpenOpcUa Redmine','The OpenOpcUa Redmine project is fully operational','Hello,\r\nWe are very proud to announce that OpenOpcUa (OOUA) Redmine server is back online.\r\nafter a long effort the OOUA Redmine project is now totaly migrated on AZURE.\r\nWe had couple of issue with @mail but as you can see this last issue is now fixed.\r\n\r\nFor those who missed the 1.0.5.8 codebase is available for download.\r\n\r\nFeel free to contact me for more detail.\r\n\r\nBR\r\nMichel Condemine',1,'2020-07-26 16:44:10',0),(129,74,'Welcome ','Welcome to the OOUA Certification Redmine project','Welcome to the OOUA Certification Redmine project.\r\nI fixed most of the problem. Feel free to comment in the issues section.\r\n\r\nKind regards\r\nMichel',1,'2020-08-12 16:56:46',0),(130,56,'Livraison 0.0.3.9','Nouvelle version du VpiTycoEx','Bonjour,\r\nj\'ai corrigé l\'initialisation du port série et de la configuration de la carte TLI.\r\nLe documentation est assez ambiguë sur ce point. J\'ai donc extrapolé comme a l\'habitude.\r\nN\'ayant pas de maquette je n\'ai pas pu tester ces modifications.\r\n@Norbert. Merci de faire les tests en précisant tous les paramètre relative au port série :\r\nBAUDRATE,DATABITS,PARITY,STOP\r\n\r\nmerci de me tenir au courant ASAP\r\n\r\nCordialement\r\nMichel',1,'2020-09-05 10:56:56',0),(131,77,'Meeting du 28-9-2020','Lien vers le meeting de ce jour','Bonjour,\r\nci-dessous le lien vers l\'enregistrement de ce jour\r\nhttps://web.microsoftstream.com/video/21793e90-f36b-4baf-9144-a4235e599b95 \r\n\r\nCordialement\r\nMichel',1,'2020-09-28 16:29:51',0),(132,70,'InternalKrnlApi','Support Scalar ExtensionObject ','Bonjour,\r\nje viens de poster une mise à jour qui supporte les extensionObject de type Scalaire.\r\nJe ferai des tests plus approfondi cette semaine. \r\nMerci de me faire un retour ASAP.\r\n\r\nCordialement\r\nMichel Condemine',1,'2020-09-29 17:32:43',1),(133,56,'Version 0.0.4.4','Suppression de la lecture 1113','Bonjour,\r\ncomme demandé j\'ai supprimé dans la version 0.0.4.4 la lecture du groupe 1113.\r\nCordialement\r\nMichel Condemine',1,'2020-10-20 16:36:26',0),(134,56,'0.0.4.5','Suppression lecture 1402','Bonjour,\r\ncomme demandé j\'ai supprimé dans la version 0.0.4.5 la lecture du groupe 1402.\r\n\r\nCordialement\r\nMichel Condemine',1,'2020-10-25 11:36:03',1),(135,70,'@mail live','@mail server restored','Merci pour votre retour.\r\nLa messagerie du redmine est a nous operationnelle\r\nCordialement\r\nMichel Condemine',1,'2020-10-26 17:38:45',0),(136,56,'0.0.4.6','StateInformation suppression traitement du bit 8','Bonjour,\r\ncomme demandé suite à notre échange j\'ai supprimé le traitement du bit 8 sur les StateInformation.\r\nCordialement\r\nMichel Condemine',1,'2020-10-27 09:51:08',0),(137,70,'Livraison 1.0.5.9','Nouveaux sources','Bonjour,\r\nje viens de livrer une nouvelle version des sources.\r\nIl s\'agit de la version 1.0.5.9 de l\' OOUACoreServer et de ses dépendances. \r\nL\'internalKrnlApi et le VpiSk ont été largement modifiés pour prendre en compte le support des \"SCALAR ExtensionObject\".\r\nJ\'ai testé cette version sous Windows seulement mais elle y fonctionne parfaitement.\r\n\r\nJ\'attends votre retour.\r\nBien Cordialement\r\nMichel Condemine',1,'2020-10-27 21:28:29',0),(138,70,'New 1.0.5.9','Version validée sous Linux','Bonjour,\r\nje viens de poster une version de la base code que j\'ai entièrement validé sous Windows et sous Linux Debian x64.\r\nLes tests ont porté sur l\'OOUACoreServer+VpiSk+InternalKrnlApi+KrnlApiTester.\r\n\r\nElle fonctionne parfaitement sur les deux plateformes aussi bien pour les types simples que pour les ExtensionObjet.\r\nJ\'ai noté que la version posté hier et validé sous Windows n\'a pas été téléchargé ?\r\nJe vais donc ouvrir un ticket qui nous permettra de suivre la validation de cette nouvelle version.\r\n\r\nBien cordialement\r\nMichel Condemine',1,'2020-10-28 21:29:52',0),(140,78,'Atelier','Travaux à la maison','Bonjour,\r\nje viens de poster le support de l\'atelier 1.\r\nMerci de préparer cet atelier pour notre prochaine session.\r\nN\'hésitez pas à créer de nouveau ticket de support si vous avez des questions.\r\n\r\nCordialement\r\nMichel\r\n\r\nPS: Le support de la session précédente sera posté après notre prochaine échange.',1,'2020-11-12 11:43:40',0),(141,70,'Livraison 1.0.5.9 + VpiSk0.0.0.5 + InternalKrnlApi 1.0.0.4','Mise à jour de la base de code','Bonjour,\r\nje viens de livrer la nouvelle version de la base de code OpenOpcUa, du VpiSk et de l\'internalKrnlAPi. OpenOpcUa_1_0_5_9_SK_22-11-2020.zip\r\nCette nouvelle version contient tous les types définis dans le modèle. \r\nLe programme contenant l\'exemple d\'invocation, KrnlAPITest, contient un exemple d\'appel pour chacun d\'entre eux. \r\nComme de nombreuses chaines sont définies dans le modèles leurs invocations sont assez complexes. Il convient d\'encoder les appels selon l\'encodage binaire OPC UA. \r\nReportez vous à la spécification OPC UA Part 6 pour d\'autres explications.\r\n\r\nJe vais aussi livrer la configuration d\'exemple pour Windows. Vous pourrez/devrez l\'utilisez pour votre configuration Linux.\r\nVous noterez que le fichier Opc.Ua.NodeSet2.SK_Model_19-11-2020.xml a évolué durant le week-end. Attention à ne pas utiliser l\'ancienne version.\r\n\r\nJe reste à votre disposition pour d\'autres information.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\n',1,'2020-11-22 22:22:35',1),(142,79,'Projet Exelsius','Mise en ligne du projet Exelsius sur le Redmine OOUA','Bonjour,\r\nmerci de créer un compte sur le Redmine OpenOpcUa pour accéder à ce projet.\r\n\r\n[[http://www.openopcua.org/redmine]]\r\n\r\nCordialement\r\nMichel Condemine',1,'2020-12-02 15:21:00',1),(143,78,'OOUAConfigManager','Nouveautés','Bonjour,\r\ndeux nouveautés dans l\'OOUAConfigManager.\r\n1- Démarrage du serveur depuis l\'IHM de l\'application:\r\n!clipboard-202012092315-fqzga.png!\r\n2- Copier/Coller du chemin associé au projet lors de sa création (Demande de Lionel)\r\n!clipboard-202012092316-40yp9.png!\r\n\r\nEnjoy it !\r\nN\'hésitez pas à faire des demandes d\'évolution\r\nCordialement\r\nMichel\r\n',1,'2020-12-09 23:18:22',0),(144,1,'Redmine is back-onli','The OOUA redmine was off-line for 3 days.\r\n','OOUA redmine is now back online.\r\nEnjoy and happy holiday season.\r\n\r\nKind regards\r\nMichel',1,'2020-12-21 19:39:49',0),(145,1,'Happy new year','I wish you the best for 2021','After the special 2020 made of huge progress on the OOUA technical side but with the corona crisis in background.\r\nI wish you all the best for 2021.\r\nStay healthy and safe.\r\n\r\nKind regards\r\nMichel Condemine (OOUA Team Leader)',1,'2021-01-01 00:23:15',0),(146,79,'New codebase','nouvelle base de code 1.0.5.9 + Vpi','Bonjour,\r\nj\'ai placé une nouvelle livraison des binaires OOUA. \r\nL\'ensemble des fichiers ont été générés en 64bits avec VS2017. ils donc tous sont mise à jour.\r\nSNAP7 \r\nIl est généré sur la base de la version 1.4.2 en utilisant VS2017. La communauté SNAP7 ne livre pas de chaine de compilation pour VS2017. \r\nIl s\'agit d\'un build spécifique au projet OOUA et sans adhérence à Windows XP.\r\nOpenSSL \r\nIl a aussi été mis à jour. Le livrable contient la version 1.1.1i d\'OpenSSL du 08-Dec-2020\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-01-08 09:48:57',0),(147,79,'MAJ 8-1-2021','Installation MAJ','Bonjour,\r\nje viens d\'installer la mise à jour, vous exécutiez toujours la version du 28 décembre 2020.\r\nLa version en service contient les mises à jour listées dans la précédente news.\r\nMerci de m\'informer de son comportement.\r\nCordialement\r\nMichel Condemine',1,'2021-01-08 21:59:02',20),(148,79,'MAJ 11-1-2021','Mise à jour binaires','Bonjour,\r\nje viens d\'installer la mise à jour de la base de code.\r\nCette mise à jour vient avec une nouvelle version du fichier Opc.Ua.NodeSet2.Part5.xml\r\nJ\'ai lancé et arrête la configuration UAExpert UATest.uap une dizaine de fois sans provoquer de problème.\r\nJe reste disponible demain pour continuer les investigations.\r\nJ\'attends votre retour.\r\nCordialement\r\nMichel Condemine\r\n\r\n',1,'2021-01-11 20:25:45',6),(149,79,'Crash à l\'arrêt','Etude crash','Bonjour,\r\nj\'ai noté un crash à l\'arrêt du serveur probablement lié à la libération de certaines suscriptions.\r\nAfin de comprendre et corriger le problème je procède à des arrêts/relances du serveur.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-01-12 16:24:20',1),(150,56,'Utiliser http au lieu de https','Problème de certificat sur le redmine OOUA','Bonjour,\r\na titre temporaire pour vous connecter sur le Redmine OOUA vous devez utiliser une connexion http au lieu de https.\r\nRemplacez simplement https://www.openopcua.org/redmine/...... par http://www.openopcua.org/redmine/......\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-01-21 00:10:35',0),(151,75,'VfiSqL','Log Sql sur Azure','Bonjour,\r\nci dessous l\'archivage SQL sur Azure réalisé par le VfiSql.\r\nVue Azure Studio\r\n!clipboard-202101212142-xzlia.png!\r\nVue UAExpert\r\n!clipboard-202101212159-ppy3i.png!\r\n\r\nCordialement\r\nMichel',1,'2021-01-21 21:59:40',0),(152,75,'vcpkg et vpprest','','Bonjour,\r\nj\'ai compilé les dernier version de vcpkg et cpprestsdk sous Windows.\r\n!clipboard-202101221831-f03lu.png!\r\ncordialement\r\nMichel',1,'2021-01-22 18:32:00',0),(153,73,'Test OPC ','Résumé des tests OPC UA sur 192.168.2.2','Bonjour,\r\nj\'ai travaillé sur la machine de test.\r\nDes bonnes et des mauvaises nouvelles.\r\nLa bonne est que le serveur démarre de fonctionne.\r\nLa mauvaise est que la connexion VPN est trop lente pour que je puisse travailler.\r\nIl y a des problèmes dans la correspondance des adresses lors du multi-Vpi.\r\nIl faudrait pour diagnostiquer et corriger le problème :\r\n# Pouvoir accéder aux valeurs du PLC pendant que le serveur y est connecté\r\n# Améliorer les performances du VPN\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-01-26 22:13:30',1),(154,78,'XiMulator','Mise à jour','Bonjour,\r\nune mise à jour majeur de XiMulator sera disponible demain.\r\nElle permet de fragmenter les modèles en plusieurs fichiers nodeset :\r\n* ShareClasses\r\n* MacroModel\r\n* Stator\r\n* Rotor\r\n* Assemblage\r\n* MAchining\r\n* SFM\r\n* etc.\r\n\r\nCe découpage permet une régénération, individuelle de chaque modèle, plus rapide et plus fréquente.\r\n\r\nJe vous propose une session pour vous présenter l\'outils.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-02-08 17:20:24',0),(155,78,'XiMulator Version 1.0.0.8','Mise à jour majeur du XiMilator','Bonjour,\r\nune nouvelle version du XiMulator est disponible en téléchargement.\r\nCette version comprends de nombreuses nouveautés.\r\n* Fractionnement de l\'espace d\'adressage\r\n* Temps de génération amélioré\r\n* Nouvelle organisation de l\'IHM\r\n* Nouveau format du fichier Xml de sauvegarde\r\n* Nouvelle extension pour le fichier de sauvegarde du projet\r\n* Possibilité de changer l\'URI d\'un modèle\r\n* Possibilité de ne générer que le nodeset sans la documentation\r\n* etc.\r\n\r\nJe vous propose d\'organiser un call dédié pour vous les présenter.\r\n\r\nCordialement\r\nMichel',1,'2021-02-14 20:44:10',0),(156,80,'Enterprise Architect Demo','','https://www.sparxsystems.com/products/ea/trial/request.html ',1,'2021-02-23 14:28:54',0),(157,1,'1.0.5.9 RC08','The new RC of OOUA is available','Hello,\r\nthe OpenOpcUaCode base 1.0.5.9 RC08 is available in the Sponsor Section.\r\nFeel free to download it and/or contatc me for more information.\r\n\r\nRegards\r\nMichel Condemine',1,'2021-04-08 09:48:23',0),(158,73,'Manuel de l\'utilisateur OOUAConfigManager','Draft Doc OOUAConfigManager','Bonjour,\r\nla version préliminaire de la documentation de OOUAConfigManager est disponible sur le Redmine.\r\nJe vous la remet en avant première. \r\nMerci de me faire part de vos commentaires.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-04-22 14:26:07',0),(159,68,'VpiRauUdpEx','VpiRauUdpEx version ','Bonjour,\r\nje viens de livrer la version 1.0.0.2 du VpiRauUdpEx.\r\nIl s\'agit du livraison 64bits pour Windows générée avec VS2017. \r\nElle comprend :\r\nLes binaires du serveur, du Vpi et d\'OpenSSL.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-04-23 13:16:27',0),(160,1,'MQTT JSON PUBLISHER for OpenOpcUa','OOUA MQTT JSON PUBLISHER','Hello,\r\nThe first beta version of the MQTT JSON Publisher for OpenOpcUa is available. It appears as a VPI.\r\nI\'m looking for testers and testing tools.\r\nContact me for more information.\r\nRegards\r\nMichel Condemine',1,'2021-05-17 19:27:25',0),(161,78,'XiMulator 1.0.1.5 XmiToNodeSetLibrary 1.0.2.0','La nouvelle version de l\'outil XiMulator et de ses dépendances est disponible.','Bonjour,\r\nLe XiMulator version 1.0.1.5 et de la XmiToNodeSetLibrary 1.0.2.0 sont disponible.\r\nCette version contient la prise en compte du problème remonté vendredi.\r\nElle comprend de nombreuses améliorations. Ces améliorations concernent aussi bien la création du projet, son chargement et son exploitation.\r\nIl est essentiel de comprendre le principe des fichiers NodeIdMap pour bien exploiter cette version, on en a parlé vendredi.\r\nUn répertoire Resources contient les fichiers nodeset qui seront automatiquement copiés lors de la création d\'un projet.\r\nNotez que les fichiers qui composent le projet sont automatiquement copiés dans le répertoire associé.\r\n\r\nLe XiMulator m\'a permis de trouver et de corriger plus de 10 erreurs dans le modèle EMOTORS. J\'ai transmis ces erreurs à Lionel. \r\nIl vous passera une version officiel mais j\'attache à cette news ma version corrigée.\r\n\r\nJe compte sur vous pour tester cette version dans les meilleurs délais. \r\n\r\nCordialement\r\nMichel Condemine',1,'2021-06-05 16:06:33',0),(162,75,'XiMulator version 1.0.1.5','XiMulator update et nouveau modèle.','Bonjour,\r\nLe XiMulator version 1.0.1.5 et de la XmiToNodeSetLibrary 1.0.2.0 sont disponible.\r\nCette version contient la prise en compte du problème remonté vendredi.\r\nElle comprend de nombreuses améliorations. Ces améliorations concernent aussi bien la création du projet, son chargement et son exploitation.\r\nIl est essentiel de comprendre le principe des fichiers NodeIdMap pour bien exploiter cette version, on en a parlé vendredi.\r\nUn répertoire Resources contient les fichiers nodeset qui seront automatiquement copiés lors de la création d\'un projet.\r\nNotez que les fichiers qui composent le projet sont automatiquement copiés dans le répertoire associé.\r\n\r\nLe XiMulator m\'a permis de trouver et de corriger plus de 10 erreurs dans le modèle EMOTORS. J\'ai transmis ces erreurs à Lionel.\r\nIl vous passera une version officiel mais j\'attache à cette news ma version corrigée.\r\n\r\nJe compte sur vous pour tester cette version dans les meilleurs délais.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-06-07 12:01:44',0),(163,75,'XiMulator Vv1.0.1.5 _ v1.0.2.1','Nouvelle version XiMulator','Bonjour,\r\ncette version améliore sensiblement la mise à plat.\r\nIl reste des interrogations sur le traitement des tableaux lors de cette mise plat.\r\nMerci de tester cette version et de valider le NodeSet généré ASAP.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-06-08 08:35:23',0),(164,78,'XiMulator upgrade','','Bonjour,\r\ncette version améliore sensiblement la mise à plat.\r\nIl reste des interrogations sur le traitement des tableaux lors de cette mise plat.\r\nMerci de tester cette version et de valider le NodeSet généré ASAP.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-06-08 08:35:56',0),(165,75,'New release XiMulator','New release XiMulator ','Bonjour,\r\nune nouvelle version du XiMulator est disponible en téléchargement.\r\nElle corrige un bug de génération sur le SharedClasses qui entrainait un crash. \r\nElle ajoute la génération de tous les attributs encapsulés dans les dataTypes lors de la conversion en VariableType.\r\nmerci de vérifier en détail la génération.\r\nVous devrez utiliser un projet AE corrigé que vous fournira Lionel. Je lui ai remonté 6 nouveaux problèmes. Ils ont tous été détecté par XiMulator.\r\n\r\nCordialement\r\nMLichel Condemine',1,'2021-06-09 01:43:08',0),(166,78,'XiMulator 9-6-2021','New XiMulator','Bonjour,\r\nune nouvelle version du XiMulator est disponible en téléchargement.\r\nElle corrige un bug de génération sur le SharedClasses qui entrainait un crash. \r\nElle ajoute la génération de tous les attributs encapsulés dans les dataTypes lors de la conversion en VariableType.\r\nmerci de vérifier en détail la génération.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-06-09 01:43:57',0),(167,78,'Livraison OOUA','Nouveaux binaires pour OOUA IPV4','Bonjour,\r\nje viens de livrer de nouveaux binaires.\r\nIls concernent plusieurs aspect de l\'OOUA Codebase :\r\n* VpiUaClient, modification pour la prise en compte de connexion User/Password sécurisée\r\n* VfiCsv, rechargement entre deux arrêts/démarrages du serveur\r\n* Archivage par serveur, archivage des bool sur changement.\r\n\r\nAttention dans le cas du VfiCSV. Le fichier de configuration complémentaire (.DAT) doit s\'appeler VfiCSV-xxxxx.DAT\r\nDans certaine maquette il s\'appel VfiCSV00200.Dat. Ce nom doit être changé pour VfiCSV-00200.DAT.\r\n\r\nCordialement \r\nMichel Condemine',1,'2021-06-23 14:52:54',0),(168,75,'Livraison Binaires OOUA','Binaires OOUA IPV4 - 23-6-2021','Bonjour,\r\nje viens de livrer de nouveaux binaires.\r\nIls concernent plusieurs aspect de l\'OOUA Codebase :\r\n* VpiUaClient, modification pour la prise en compte de connexion User/Password sécurisée\r\n* VfiCsv, rechargement entre deux arrêts/démarrages du serveur\r\n* Archivage par serveur, archivage des bool sur changement.\r\n\r\nAttention dans le cas du VfiCSV. Le fichier de configuration complémentaire (.DAT) doit s\'appeler VfiCSV-xxxxx.DAT\r\nDans certaine maquette il s\'appel VfiCSV00200.Dat. Ce nom doit être changé pour VfiCSV-00200.DAT.\r\n\r\nCordialement \r\nMichel Condemine',1,'2021-06-23 14:53:37',0),(169,75,'XiMulator 1.0.1.6','Nouvelle version du XiMulator','Bonjour,\r\nune nouvelle version du XiMulator est disponible.\r\nMerci de procéder à un test approfondi. \r\n*Ce test doit en particulier vérifier les fichiers de types générés.*\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-06-24 09:23:56',0),(170,75,'XiMulator 1.0.1.7','Nouvelle version du XiMulator.','Bonjour,\r\nune nouvelle version du XiMulator est disponible.\r\nElle corrige 3 problèmes fonctionnels majeurs non détecté à ce jour :\r\n* Mauvaise héritage des classes entre deux packages\r\n* Pas d\'héritage des attributs sur les classes appartenant à des packages différents. Correction ci-dessous\r\n!clipboard-202106252246-gfxyq.png!\r\n* Impossibilité pour le serveur d\'encoder des UDT déclarées entre deux packages séparés. Correction ci-dessous\r\n!clipboard-202106252247-rwxck.png!\r\n\r\nL\'utilisation de cette nouvelle version exige une régénération complète du modèle. \r\nAttention le format du fichier NodeIdMap a changé.\r\n\r\nCette version ne contient pas l\'évolution discuté cette semaine.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-06-25 22:49:55',0),(171,78,'Nouvelle verison XiMulator 1.0.1.7','Mise à jour majeure du XiMulator','Bonjour,\r\nune nouvelle version du XiMulator est disponible.\r\nElle corrige 3 problèmes fonctionnels majeurs non détecté à ce jour :\r\nMauvaise héritage des classes entre deux packages\r\nPas d\'héritage des attributs sur les classes appartenant à des packages différents. Correction ci-dessous\r\n!clipboard-202106252255-mavgs.png!\r\nImpossibilité pour le serveur d\'encoder des UDT déclarées entre deux packages séparés. Correction ci-dessous.\r\n!clipboard-202106252255-6assd.png!\r\n\r\nL\'utilisation de cette nouvelle version exige une régénération complète du modèle.\r\nAttention le format du fichier NodeIdMap a changé.\r\nAttention à bien verrouiller les fichiers en cas d\'utilisation avec l\'OOUAConfigManager. \r\n\r\nCette version ne contient pas l\'évolution discuté cette semaine.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-06-25 22:58:12',0),(172,82,'Modélisation OPC UA','Modeleur UML','Bonjour,\r\nnous utiliserons UML pour la modélisation OPC UA.\r\nVeuillez télécharger une version de démonstration d\'Enterprise Architect depuis le site de SparX.\r\n[[https://www.sparxsystems.com/products/ea/trial/request.html]] \r\n\r\nSi vous possédez déjà cet outil, une version 13,14 ou 15 d\'AE conviendra\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-07-01 14:39:55',0),(173,78,'Vfi PostGreSql','Nouvelle version 0.0.1.1 du VfiPgSql','Bonjour,\r\nsuite à la remontée de Lionel je viens de poster une nouvelle version 0.0.1.1 du VfiPgSql qui corrige les problèmes relatifs au type String (Read/Write).\r\nMerci pour ce retour.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-07-19 17:36:53',0),(174,75,'Nouvelle version du VFI PostGreSql','Vfi SQL version 0.0.1.1','Bonjour,\r\nsuite à la remontée de Lionel je viens de poster une nouvelle version 0.0.1.1 du VfiPgSql qui corrige les problèmes relatifs au type String (Read/Write).\r\n\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-07-19 17:40:05',0),(175,73,'OOUAConfigManager','Nouvelle version disponible','Bonjour,\r\nLa version 0.0.9.7 corrige le problème décrit dans l\'ISSUE 588\r\nCordialement\r\nMichel Condemine',1,'2021-07-22 11:18:46',0),(176,75,'Nouvelle Version de l\'OOUAConfigManager','Version 0.0.9.7','Bonjour,\r\nLa version 0.0.9.7 de l\'OOUAConfigManager est disponible au téléchargment.\r\nElle corrige un problème lors de l\'import CSV (Potentiel arrpet de l\'OOUAConfigManager)\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-07-22 11:21:00',0),(177,70,'VpiUaMqttJSonPub','QuickStart','1- Décompressez et copiez les sources \r\n2- Compilez l\'ensemble des source, serveur et dépendances, VpiSk et dépendances.\r\n3- Décompressez et compilez le VpiUaMqttJsonPub en utilisant le CMakeList.txt\r\n4- Décompressez le répertoire de démo\r\n5- Copiez les binaires dans ce répertoire\r\na. Serveur + Dépendance\r\nb. VpiUaMqttJsonPub\r\n6- Téléchargez HiveMQ (https://www.hivemq.com/downloads/hivemq/)\r\n7- Décompressez HiveMq \r\n8- Lancez HiveMq\r\n9- Placez vous dans le répertoire de démo (point 4)\r\na. Editez le fichier Publisher-00150.dat \r\nb. Changez IP_ADDRESS 127.0.0.1 par l’adresse de la machine qui héberge le Broker MQTT\r\nc. Réglez votre parefeu pour que le publisher puisse accéder au port 1883 sur cette IP\r\n10- Lancez le publisher : Le serveur OpenOpcUa avec son VpiUaMqttPub\r\n11- Connectez-vous au broker hiveMQ avec un navigateur web http://localhost:8080/\r\n12- Si la Vpi réussi à se connecter au broker vous devriez le voir listé parmi les clients du broker\r\n \r\n!clipboard-202109101844-lih0s.png!\r\n',1,'2021-09-10 19:13:16',4),(178,75,'MAJ OOUACoreServer','MAJ Serveur pour test Genesis','Bonjour,\r\nj\'ai posté une MAJ du serveur avec le fix pour les alarmes.\r\nmerci de la tester ASAP\r\nCordialement\r\nMichel Condemine',1,'2021-10-07 11:44:10',0),(179,75,'Redmine en ligne','Le serveur est à nouveau disponible','Bonjour,\r\nLe serveur est à nouveau disponible. \r\nMerci de valider',1,'2021-10-13 18:15:17',1),(180,78,'Redmine','Redmine is back','Bonjour,\r\nle serveur Redmine d\'OpenOpcUa est back-online.\r\nL\'arrêt était lié à un défaillance mondiale des VM AZURE.\r\n\r\nCela laisse pensif !!!\r\n\r\nMerci d\'ouvrir des tickets pour les problèmes en cours.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-10-13 22:16:11',0),(181,75,'VfiPgSql','Evolution majeur du VfiPgSql','Bonjour,\r\nune évolution majeur du VfiPgSql est disponible (v0.0.1.8).\r\nElle a entrainé des changements dans le code du serveur et de la VfiLibrary. \r\nces évolutions doivent impérativement être installées sur le site de TREMERY.\r\nJe vous invite à revenir vers moi ASAP pour récupérer sources et/ou binaires.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\nPS: Ce message sera posté sur le Redmine EMOTORS',1,'2021-10-22 15:43:21',0),(182,78,'VfiPgSql','Evolution majeure sur le VfiPgSql','Bonjour,\r\nune évolution majeur du VfiPgSql est disponible (v0.0.1.8).\r\nElle a entrainé des changements dans le code du serveur et de la VfiLibrary. \r\nces évolutions doivent impérativement être installées sur le site de TREMERY.\r\nJe vous invite à revenir vers moi ASAP pour récupérer sources et/ou binaires.\r\n\r\nCordialement\r\nMichel Condemine\r\n\r\nPS: Ce message sera posté sur le Redmine INETUM',1,'2021-10-22 15:44:19',0),(183,78,'Update ClientLib','MAJ binaire ClientLib 1.0.6.0','Une mise à jour de la clientLib est disponible en complement des binaire livrés précédemment.\r\nhttp://www.openopcua.org/redmine/attachments/2160\r\nCette version corrige le problème sur le remplissage du log en cas d\'absence des PLCs.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-10-22 16:20:41',0),(184,89,'Find information about OPC UA','How can i find information about OPC UA','To find information on any aspect of the spec you can try to use a tool available here https://reference.opcfoundation.org/ ',1,'2021-10-27 12:39:11',0),(185,70,'Nouvelle version du VpiUaMqttJsonPub','La nouvelle version de VpiUaMqttJsonPub est disponible. ','Bonjour,\r\nLa nouvelle version du VpiUaMqttJsonPub est disponible. Elle supporte TLS 1.2 et a été testée avec Mosquitto, AWS et AZURE.\r\nIl semble exister des limites avec AZURE concernant en particulier le nom des topics. \r\nLe suffixe des topics, obligatoire avec OPC UA, $Metadata n\'est apparemment pas supporté.\r\nci-joint les fichiers de configuration pour les trois broker ayant fait l\'objet de tests.\r\n\r\nJe reste à votre disposition pour plus d\'information.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-11-01 20:55:24',0),(186,75,'Ne pas installer la version livrée en fin d\'AM','Ne pas installer la version livrée en fin d\'AM','Ne pas installer la version livrée en fin d\'AM',1,'2021-11-03 22:43:11',7),(187,84,'RDV','Synchronisation M2O','https://teams.microsoft.com/l/meetup-join/19%3ameeting_MTFjYWI5N2EtZjc0Yi00MjY3LTliMGMtNjBkOTJiNWMyYmRj%40thread.v2/0?context=%7b%22Tid%22%3a%22ebcceac7-1a2e-408f-9722-0ce18b7bd031%22%2c%22Oid%22%3a%2210403ef1-4afe-4682-82e8-08eca53d4735%22%7d',1,'2021-11-15 12:08:59',0),(188,78,'Nouvelle livraison','Nouveaux binaires','Bonjour,\r\nUne nouvelle livraison est disponible ici : http://www.openopcua.org/redmine/attachments/2237\r\nElle contient le VpiS7 avec les modifications demandées.\r\nAinsi que plusieurs améliorations et instrumentations permettant de mieux étudier et de prendre en compte les problèmes en cours.\r\n\r\nMerci de déployer cette version ASAP.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-11-17 22:15:12',0),(189,75,'Nouvelle version','Nouveaux binaires','Bonjour,\r\nUne nouvelle livraison est disponible ici : http://www.openopcua.org/redmine/attachments/2237\r\nElle contient le VpiS7 avec les modifications demandées.\r\nAinsi que plusieurs améliorations et instrumentations permettant de mieux étudier et de prendre en compte les problèmes en cours.\r\n\r\nMerci de déployer cette version ASAP.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-11-17 22:15:54',0),(190,94,'Nouvelle version majeur','Evolution majeure des binaires','Bonjour,\r\nWeek-End studieux !!!\r\nj\'ai réalisé plusieurs évolutions majeures dans la base de code OpenOpcUa et plus particulièrement dans :\r\n1- OpenOpcUaClientLibrary version 1.0.6.3\r\n2- VpiUaClient version 1.0.3.0\r\n\r\n*OpenOpcUaClientLibrary* \r\n* Nouveau mode de creation des monitoredItems en cas d\'utilisation de l\'API OpenOpcUa_LoadConfig. Les MonitoredItem (MI) déclarés dans le fichier XML (ClientConfig.xsd) seront chargés par paquets de 300 MI.\r\n *Avantage* : Une seule instance du VpiUaClient pourra/devra être utilisé pour dialoguer avec un PLC même si le nombre de MI est supérieur à 1000.\r\n* La section URI est maintenant obligatoire dans le fichier XML de configuration de la liaison client/server (ClientConfig.xsd). Elle permet de résoudre les index/Uri. voir ci-dessous.\r\n* !clipboard-202111212326-ni1ga.png!\r\n<pre>\r\n Il pourra être OBLIGATOIRE de revoir vos fichiers de configuration.\r\n</pre>\r\n* Nouveau niveau d\'instrumentation dans les LOG\r\n* Correction du comportement des LOG dans cas d\'utilisation de la ClientLib par plusieurs processes. exemple: Plusieurs instances du VpiUaClient\r\n* Optimisation mémoire\r\n\r\n*VpiUaClient* \r\n* Utilisation du nouveau mode de creation des monitoredItems en cas de configuration manuelle.\r\n* Nouveau Node de type Variable permettant de demander un rechargement de la configuration client/serveur. Il s\'agit d\'un boolean. une écriture force me rechargement la configuration.\r\n* !clipboard-202111212332-3hetz.png!\r\n* Optimisation mémoire\r\n\r\nIl reste encore du travail mais cette version est un grand pas en avant.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-11-21 23:38:43',0),(191,93,'Evaluations','Evaluation formation OPC 2410','Bonjour,\r\nvous avez recement participé à l\'une de nos formations.\r\nMerci de faire un évaluation ici : [[https://4ce-industry.com/evaluer-nos-formations/]] \r\n\r\nBien cordialement\r\nMichel Condemine',1,'2021-11-22 12:18:15',0),(192,84,'Evaluation formation','Evaluation formation 2510','Bonjour,\r\nvous avez recement participé à l\'une de nos formations.\r\nMerci de faire un évaluation ici : [[https://4ce-industry.com/evaluer-nos-formations/]]\r\n\r\nBien cordialement\r\nMichel Condemine',1,'2021-11-22 12:19:11',0),(193,82,'Evaluation formation','Formation modélisation','Bonjour,\r\nvous avez recement participé à l\'une de nos formations.\r\nMerci de faire un évaluation ici : [[https://4ce-industry.com/evaluer-nos-formations/]]\r\n\r\nBien cordialement\r\nMichel Condemine',1,'2021-11-22 12:19:49',0),(194,94,'Nouvelle livraison','Livraison du 29/11/2021','Bonjour,\r\nje viens de poster une nouvelle version des binaires OOUA.\r\nPourriez vous faire un teste avec ces binaires et m\'envoyer *ASAP* :\r\n* une trace wireshare\r\n* les fichiers de LOG associé\r\n* une description sommaire du comportement\r\n\r\nIl s\'agira d\'une version temporaire sur le chemin de la résolution définitive de tous les problème.\r\n\r\nMerci pour votre collaboration.\r\nCordialement\r\nMichel Condemine',1,'2021-11-29 11:28:10',0),(195,70,'Nouvelle version VpiUaMqttJsonPub','Nouvelle version','Bonjour,\r\nje viens de livrer une nouvelle version du VpiuaMqttJsonPub.\r\nCette livraison nécessite la régénération complète de la base de code.\r\nDeux nouveaux paramètres sont présents dans le fichier .DAT\r\n* MQTT_REQUEST_TIMEOUT 30000\r\n* MQTT_PING_RATE 20000\r\nDans cette version les transactions sont synchrone avec un timeout de MQTT_REQUEST_TIMEOUT dont la valeur est exprimées en ms.\r\n\r\nJe reste à votre disposition pour plus d\'information.\r\nBien cordialement\r\nMichel Condemine\r\n',1,'2021-12-06 12:30:08',0),(196,94,'New VpiUaClient','Evolution dans VpiUaClient','Bonjour,\r\nDeux nouveaux paramètres dans le fichier DAT de configuration.\r\nFRAGMENT_SIZE 100\r\nFRAGMENT_TIMEOUT 5\r\n\r\nIls permettent de contrôler la fragmentation des appels dans les services CreateMonitoredItem, DeleteMonitoredItem et ReadAttribute.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-12-07 15:39:16',0),(197,70,'Livraison 12-12-2021','Nouvelle base de code pour Pub/Sub','Bonjour,\r\nje viens de réaliser une nouvelle livraison de la base de code OOUA.\r\nElle contient de nombreuses améliorations. Le publisher a été testé sous linux pendant 12 heures sur le Broker AZURE.\r\nIl y a fonctionné sans problème sur des types simples. Je n\'ai pas encore testé les ExtensionObjet mais ils ne devraient pas poser de problème.\r\nJe suis disponible lundi 13 jusqu\'à 11h pour vous aider puis jeudi 16 et vendredi 17 matin entre 8 et 10h.\r\n\r\nBien cordialement\r\nMichel Condemine',1,'2021-12-12 23:36:46',0),(198,94,'Document à compléter','Bilan S49','Bonjour,\r\nje viens de poster le document bilan de la semaine 49.\r\nMerci de compléter ce document ASAP.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-12-13 12:03:43',0),(199,55,'XGBoost Project Link','','https://xgboost.ai/\r\nScalable and Flexible Gradient Boosting ',1,'2021-12-20 10:46:14',0),(200,55,'Terminologie','','Les Data Scientist n\'existent plus. Il y a les Data Engineer et les Machine Learning Engineer.\r\nLes Data Engineer mettent en forme les données venant d\'origines variées. Ils codent le Data Loader\r\nLes Machine Learning Engineer s\'occupe d\'entrainer les IA... \r\n\r\nMerci de confirmer/corriger.\r\n\r\n',1,'2021-12-24 16:58:45',0),(201,75,'Signature fonction VPI','Modification signature fonction VPI','Bonjour,\r\nj\'ai du modifier la signature de la fonction VpiGlobalStart des Vpi.\r\nLa nouvelle signature est \r\n<pre>\r\nVpi_StatusCode VpiGlobalStart(Vpi_String szSubSystemName, Vpi_NodeId SubsystemId, Vpi_String szProjectFolder, Vpi_String szLogFolder, Vpi_Handle* hVpi)\r\n</pre>\r\n\r\nLes fonctions VpiSetProjectFolder et VpiSetLogFolder doivent être supprimée.\r\n\r\nCordialement\r\nMichel Condemine',1,'2021-12-27 16:30:47',2),(202,95,'Meilleurs voeux ','Bonne année 2022','Bonjour,\r\nje vous présente mes meilleurs vœux pour cette nouvelle année et vous souhaite la bienvenue dans le Projet FactoryLab.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-01-03 09:03:42',0),(203,75,'Livraison 5-1-2022','Nouveaux binaires et sources','Bonjour je viens de livrer les sources et les derniers binaires.\r\nUtilisez les sources pour générer les mise à jour et vos Vpis et les binaires pour réaliser les tests.\r\nVeuillez ne livrer que ces binaires à EMOTORS.\r\nBinaires :\r\nhttp://www.openopcua.org/redmine/attachments/download/2363/Livraison_BinairesDebug_IPV4%2005-01-2022.zip\r\n\r\nSources :\r\nhttp://www.openopcua.org/redmine/attachments/download/2329/OpenOpcUa_1_0_7_0_INETUM_8-12-2021.zip \r\n\r\nCordialement\r\nMichel Condemine',1,'2022-01-05 13:26:31',0),(204,93,'Feedback','Formation 2410','Bonjour,\r\nvous avez recement participé à l\'une de nos formations.\r\nMerci de faire un évaluation ici : [[https://4ce-industry.com/evaluer-nos-formations/]]',1,'2022-01-13 17:07:32',0),(205,55,'Apprentissage fédéré (en anglais : federated learning) ','','En intelligence artificielle et en apprentissage machine, l\'apprentissage fédéré (en anglais : federated learning) est une méthode,\r\nou un paradigme qui consiste à entraîner un algorithme sur la machine des utilisateurs d\'une application \r\net à partager les apprentissages réalisés sur la machine de chaque utilisateur. \r\nCette méthode s\'oppose à l\'apprentissage centralisé où l\'apprentissage se fait sur les serveurs du fournisseur de service. \r\nElle permet notamment un meilleur respect de la vie privée des utilisateurs.',1,'2022-01-17 21:02:32',0),(206,97,'Welcome','Welcome on the OOUA Redmine','Hi,\r\nWelcome in the VERKOR\'s Redmine project\r\n\r\nRegards\r\nMichel Condemine',1,'2022-01-18 17:31:27',0),(207,97,'2410 recording','','Hello, \r\n2410 recording available here :\r\n[[https://4ceindustry-my.sharepoint.com/:v:/g/personal/michelc_4ce-industry_com/EVmlOerjbzFFmVZYQhHTmOQBg4L2grQEAX-Kdes1CtjBlg?email=michelc%404ce-industry.com]]\r\n\r\nEnjoy\r\nMichel Condemine',1,'2022-01-18 17:57:08',0),(208,94,'New XiMulator 1.0.3.5','Nouvelle version du XiMulator','Bonjour,\r\naprès plusieurs jours de travail sur le XiMulator je pense que nous tenons une version stable.\r\nJ\'ai généré la SharedClass et le JobOrder dans plus plusieurs situations, génération initiale, régénération, rechargement du projet puis régénération. \r\nA chaque fois le modèle généré a été chargé avec succès dans SIOME.\r\n\r\nN\'hésitez pas à le tester dans les jours qui viennent et me faire part de vos commentaires.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-01-18 22:56:27',0),(209,88,'Cibles potentielles','','Cible du questionnaire ?\r\nhttps://www.symop.com/qui-est-le-symop/12-groupes-symop/machines-outils/membres/',1,'2022-01-20 14:31:56',0),(210,70,'Livraison 23-1-2022','Nouvelle livraison de la base de code','Bonjour,\r\nje vais procéder à une nouvelle livraison de la base de code OpenOpcUa.\r\nCette livraison est composée du code source OpenOpcUa et d\'un exemple de configuration pour Linux (VpiSk+VpiUaMqttJsonPub)\r\nIl est impératif de recompiler tous les binaires, coreServer et ses dépendances, VpiSk et ses dépendances, VpiUaMqttJsonPub et ses dépendances.\r\n\r\nJe reste à votre disposition pour d\'autres informations.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-01-23 10:08:05',0),(211,56,'Nouvelle version du VpiTycoEx','Version du VpiTycoEx 0.0.6.7','Bonjour et meilleures vœux pour 2022,\r\nLa version du VpiTycoEx 0.0.6.7 est disponible. \r\nElle tient compte de derniere modification réalisé dans le VPISDK .\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-01-24 11:49:09',0),(212,95,'VpiModbus client version 1.0.3.9','VpiModbus 1.0.3.9','Bonjour,\r\nj\'ai apporté les améliorations demandées sur le VpiModbus Client. \r\nCes modifications permettent de déclarer des blocs de communication dans le fichier complémentaire de configuration du Vpi.\r\nLa documentation à jour ce trouve dans la section Fichiers du Redmine OOUA. \r\nJ\'ai installé une configuration opérationnelle sur le poste de Cluses en utilisant TeamViewer. \r\nCette configuration se trouve dans un nouveau répertoire *C:\\FactoryLab_4CE*\r\nCi-dessous un screenshot de UAExpert connecté au serveur OpenOpcUa.\r\n!clipboard-202201242339-1tdoy.png!\r\n\r\nJe reste à votre disposition pour plus d\'information.\r\nCordialement\r\nMichel Condemine',1,'2022-01-24 23:41:54',0),(213,94,'Ximulator v1.0.2.2 - XmiToUANodeSetLibrary v1.0.3.6','Nouvelle version du XiMulator','Bonjour,\r\nla nouvelle version du XiMulator est disponible ici http://www.openopcua.org/redmine/attachments/download/2462/XiMulator_1.0.2.2_v1.0.3.6.zip\r\nElle corrige de nombreux problèmes et améliore certains aspects de la génération.\r\nUn paramètre (Max Loop) a été introduit. Il permet régler la profondeur de la recherche des objets encapsulés. La valeur par défaut est 200.\r\n!clipboard-202201281030-w14fb.png!\r\nAugmentez ou réduisez cette valeur en fonction de vos besoins. \r\nNotez qu\'un valeur plus grande augmentera le temps de génération.\r\n\r\nJ\'attends vos retours\r\nCordialement\r\nMichel Condemine',1,'2022-01-28 10:30:55',0),(214,95,'Amélioration VpiModbus','Support complet des bytes','Bonsoir,\r\nj\'ai amélioré le VpiModbusClient afin de permettre le support des Bytes.\r\nIl est maintenant possible de lire l\'octet 0, 1, 2 ou 3 individuellement. \r\nCette nouvelle fonctionnalité est implémenté dans la version 1.0.4.0.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-02-01 18:56:00',0),(215,94,'XiMulator ','','Bonsoir,\r\nune nouvelle version du XiMulator est disponible. ici : http://www.openopcua.org/redmine/attachments/download/2492/XiMulator_1.0.2.2_v1.0.3.7.zip \r\nElle corrige deux erreurs majeur pendant la génération :\r\n* Une erreur qui provoque la non-génération d\'attributs. Cette erreur était liée à l\'impossibilité de trouver le NodeClass d\'un Objet UML.\r\n* L\'absence de reference entre une méthode et son parent.\r\n\r\nMerci de tester cette version et de me faire part de votre retour\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-02-01 21:17:09',0),(216,92,'New XiMulator','MAjor fix for Ximulator v1.0.2.2 v1.0.3.7','Hello,\r\na new version of XiMulator is available for download. here http://www.openopcua.org/redmine/attachments/download/2493/XiMulator_1.0.2.2_v1.0.3.7.zip \r\nIt fixed issues we met on monday.\r\nFeel free to test it an to provide feedback.\r\n\r\nRegards\r\nMichel\r\n',1,'2022-02-01 21:21:01',0),(217,75,'Livraison Livraison Binaires Debug-IPV4_3-2-2022-7h00.zip','Tester : Livraison Binaires Debug-IPV4_3-2-2022-7h00.zip','Bonjour,\r\nje viens de faire une livraison ce matin.\r\nmerci de tester ces binaires dans le cadre du bug en cours d\'investigation.\r\nA savoir flux d\'ERP_OF, montant et descendant entre le plant et le line.\r\nVeuillez rester dans le contexte de la maquette que vous m\'avez mis à disposition. Pas de VpiValuesInit dans un premier temps.\r\nVous pouvez, bien sur, mettre à jour vos binaires.\r\n\r\nIl s\'agit de tester un maximum d\'échange ERP_OF/PART_Produce.\r\nJ\'attends votre retour pour notre point de 13h30\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-02-03 07:04:08',0),(218,93,'Evaluation formation','','Bonjour,\r\nvous avez recement participé à l\'une de nos formations.\r\nMerci de faire un évaluation ici : [[https://4ce-industry.com/evaluer-nos-formations/]]',1,'2022-02-03 16:33:39',0),(219,97,'UML modeler','Enterprise Architect','The Enterprise Architect modeler is available here : https://sparxsystems.com/products/ea/downloads.html\r\n',1,'2022-02-08 15:56:15',0),(220,70,'Livraison 18-2-2022','Une nouvelle version des sources est disponible','Bonjour,\r\nje viens de livrer une nouvelle version des sources OOUA. Elle est disponible ici [[http://www.openopcua.org/redmine/attachments/download/2610/OpenOpcUa_1_0_7_0_SK_18-02-2022.zip]]\r\nElle porte particulièrement sur le VpiUaMqttJsonPub. Il faudra compiler l\'ensemble des livrables.\r\nPar manque de temps je n\'ai pas eu le temps de faire un test sous Linux.\r\nLes points suivant sont corrigés/améliorés :\r\n# Problème de reprise sur erreur read et write \r\n# Mise en forme des messages JSON\r\n# # suppression du retour chariot\r\n# # ajout balises manquantes\r\n* Arrêt du serveur\r\n\r\nQuelques screenshot :\r\n\r\n!clipboard-202202180049-gnaxq.png!\r\n!clipboard-202202180050-5ck7g.png!\r\n\r\nCordialement\r\nMichel Condemine\r\n',1,'2022-02-18 00:51:06',0),(221,70,'Captures sur AZURE IOT','D\'autres captures','!clipboard-202202180057-jf3zd.png!\r\n\r\n!clipboard-202202180058-fns3k.png!\r\n\r\nEnjoy\r\nMichel Condemine',1,'2022-02-18 00:58:28',0),(222,75,'Source code','Sources pour projet EMOTORS','Bonjour,\r\nje viens de livrer les sources de StructureEmotors, du SDK et du VpiTesteur.\r\nJ\'ai aussi livré ma maquette de test.\r\nJe vous enverrai les binaires OOUA ASAP.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-02-23 16:44:07',1),(223,99,'Evaluation','Evaluation formation OPC 2620','Bonjour,\r\nvous avez recement participé à l\'une de nos formations.\r\nMerci de faire un évaluation ici : [[https://4ce-industry.com/evaluer-nos-formations/]]\r\n\r\nBien cordialement\r\nMichel Condemine',1,'2022-02-25 16:40:04',0),(224,70,'Livraison 17-03-2022','Nouvelle livraison de l\'ensemble des sources','Bonjour,\r\nla livraison de ce matin contient l\'ensemble du code OOUA mise à jour. \r\nLa principale nouveauté est le VpiUaMqttJsonSub.\r\nA l\'occasion des modifications ont été réalisé dans l\'OOUAVpiLivrary et dans le VpiUaMqttJsonPub. \r\n\r\nBien cordialement\r\nMichel Condemine',1,'2022-03-17 09:26:25',0),(225,75,'Init des types \"Range\"','Comment initialiser un Range','Bonjour,\r\nJ\'ai modifié le serveur pour que l\'on puisse initialiser des UAVariable de type range à partir du nodeset.\r\nLa syntaxe est la suivante :\r\n<pre>\r\n <UAVariable NodeId=\"ns=1;i=3\" BrowseName=\"TankRange\" DataType=\"i=884\" AccessLevel=\"3\" UserAccessLevel=\"3\">\r\n <DisplayName>TankRange</DisplayName>\r\n <References>\r\n <Reference ReferenceType=\"HasTypeDefinition\">i=68</Reference>\r\n <Reference ReferenceType=\"HasComponent\" IsForward=\"false\">ns=1;i=10</Reference>\r\n </References>\r\n <Value>\r\n <ExtensionObject>\r\n <TypeId>\r\n <Identifier>i=884</Identifier>\r\n </TypeId>\r\n <Body>\r\n <Range>\r\n <Low>0</Low>\r\n <High>10</High> \r\n </Range>\r\n </Body>\r\n </ExtensionObject>\r\n </Value>\r\n </UAVariable>\r\n</pre> \r\n\r\nCordialement\r\nMichel Condemine',1,'2022-03-17 17:59:05',0),(226,93,'Formation OPC UA Session 2','Rappel Session 2','Bonjour,\r\nla deuxième session de formation à OPC UA aura lieu mardi 22 mars.\r\nA ce jour il manque toujours les bilans pour la première session de M. Turquet, M. Gridin et M. Hermet.\r\nMerci de me les faire parvenir ASAP.\r\n\r\nBien cordialement\r\nMichel Condemine',1,'2022-03-20 23:00:20',0),(227,93,'Session 02','Formation OPC UA - 22/03/2022','Formation OPC UA - 22/03/2022\r\nHoraires :\r\n• 9h00 – 12h30\r\n• 14h00 – 17h00\r\n\r\nLa session portera sur le développement de clients et de serveurs OPC UA ainsi que sur l’intégration d’OPC UA dans les produits existants, PLC, CN, PLM, MES, LIMS, ERP, SCADA, etc\r\n________________________________________________________________________________ \r\nRéunion Microsoft Teams \r\n[[https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZmMyYTkyNmUtYThhMi00MTQzLWFmNjItYTRkZjE2OTkwYTQz%40thread.v2/0?context=%7b%22Tid%22%3a%22ebcceac7-1a2e-408f-9722-0ce18b7bd031%22%2c%22Oid%22%3a%2210403ef1-4afe-4682-82e8-08eca53d4735%22%7d]]\r\n \r\n',1,'2022-03-20 23:15:32',0),(228,102,'Session 03','Formation OPC UA - 24/03/2022','Formation OPC UA - 24/03/2022\r\nHoraires :\r\n• 9h00 – 12h30\r\n• 14h00 – 17h00\r\nLa session portera sur la modélisation avec OPC UA. Il s’agit aussi bien de la création de nouveaux types, de l’utilisation de types existants que de l’instanciation.\r\n________________________________________________________________________________ \r\n[[https://teams.microsoft.com/l/meetup-join/19%3ameeting_NWFiNjMzZjQtZmFmYy00ZWRhLTgzYjAtNDJhYjMxYTQ0ZmU4%40thread.v2/0?context=%7b%22Tid%22%3a%22ebcceac7-1a2e-408f-9722-0ce18b7bd031%22%2c%22Oid%22%3a%2210403ef1-4afe-4682-82e8-08eca53d4735%22%7d]]\r\n\r\n',1,'2022-03-20 23:17:11',0),(229,1,'ws.reputation.1','SEP issue','Hello, \r\nsome Symantec user can receive a ws.reputation.1 error.\r\nThis can appear when using a very new version of OOUA.\r\nResolution here :\r\nhttps://knowledge.broadcom.com/external/article/191764/endpoint-protection-detects-known-good-a.html \r\n\r\nHope it helps.\r\nRegards\r\nMichel Condemine',1,'2022-03-28 00:18:12',0),(230,78,'Nouvelle fonctionnalité dans XiMulator','XiMulator Update','Bonjour,\r\nune nouvelle version du XiMulator sera livrée aujourd\'hui.\r\nElle supporte :\r\n# La déclaration des dépendances inter-modèles,\r\n# La création des règles de modélisation (HasModellignRule),\r\n# La génération des paramètres des méthodes,\r\n# La versioning des modèles\r\n# Correction d\'erreurs de génération en particulier sur les références HasTypeDefinition\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-03-28 11:51:04',0),(231,81,'XiMulator','Nouvelle version','Bonjour,\r\nune nouvelle version du XiMulator sera livrée aujourd\'hui.\r\nElle supporte :\r\n# La déclaration des dépendances inter-modèles,\r\n# La création des règles de modélisation (HasModellignRule),\r\n# La génération des paramètres des méthodes,\r\n# La versioning des modèles\r\n# Correction d\'erreurs de génération en particulier sur les références HasTypeDefinition\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-03-28 11:51:39',0),(232,75,'XiMulator','Nouvelle version','Bonjour,\r\nune nouvelle version du XiMulator sera livrée aujourd\'hui.\r\nElle supporte :\r\n# La déclaration des dépendances inter-modèles,\r\n# La création des règles de modélisation (HasModellignRule),\r\n# La génération des paramètres des méthodes,\r\n# La versioning des modèles\r\n# Correction d\'erreurs de génération en particulier sur les références HasTypeDefinition\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-03-28 11:52:22',0),(233,103,'Bienvenue dans le projet QUALAXY_OPTIMU','Projet QUALAXY_OPTIMU','Bonjour,\r\nvous avez maintenant accès au Redmine QUALAXY_OPTIMU au sein du projet OpenOpcUa.\r\n\r\nEnjoy it.\r\nCordialement\r\nMichel Condemine',1,'2022-03-28 18:58:00',0),(234,78,'VpiS7 1.0.1.3','Nouvelle version','Bonjour,\r\nla nouvelle version du VpiS7 est disponible dans la section FICHIERS.\r\nElle supporte la déclaration manuelle des blocs de communication qui devrait améliorer le temps de démarrage.\r\nLa déclaration des blocs se fait dans le fichier .DAT.\r\nAjoutez les elements suivant à la fin du fichier. L\'exemple ci-dessous place le vpi en mode Manuel et déclare deux blocs de DB.\r\n<pre>\r\nBLOCK_MODE MANU\r\nNUMBER_OF_BLOCK 2\r\nBLOCK_001 000-030,DB.01\r\nBLOCK_002 280-310,DB.01\r\n</pre>\r\n\r\nIl reste à traiter le caractère 13 (CR) en fin de chaine.\r\n\r\nMerci de me faire un retour sur cette version ASAP.\r\n\r\nEnjoy it\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-03-29 00:25:08',1),(235,78,'VpiS7 1.0.1.5','Nouvelle version','Bonjour,\r\nun modification mineur dans la syntaxe de déclaration des blocs.\r\n<pre>\r\nBLOCK_MODE MANU\r\nNUMBER_OF_BLOCK 2\r\nBLOCK_001 00000-00030,DB.001\r\nBLOCK_002 00280-00310,DB.001\r\n</pre>\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-03-29 16:56:21',0),(236,78,'VpiS7 v1.0.1.6','Nouvelle version','Bonjour,\r\nChangement dans la déclaration des DB (4 digits)\r\nBLOCK_MODE MANU\r\nNUMBER_OF_BLOCK 2\r\nBLOCK_001 00000-00030,DB.0001\r\nBLOCK_002 00280-00310,DB.0001\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-03-29 17:09:47',0),(237,75,'NodeSet Part14','Nodeset officiel OOUA pour part14','Le fichier est ici : http://www.openopcua.org/redmine/attachments/download/2811/Opc.Ua.NodeSet2.Part14.xml\r\n',1,'2022-03-29 21:54:59',0),(238,1,'OOUAVpi Sdk','Changes in Vpi Sdk','Hello,\r\nNew signature for functions in Vpi Sdk API\r\nNew encoding for Vpi_Variant_ToString encodind a both number and String Array .\r\n\r\nNew version of the library is 1.0.4.0\r\n\r\nEnjoy\r\nMichel Condemine',1,'2022-03-30 08:56:21',0),(239,75,'Déclaration des blocs pour VpiS7','Nouvelle version du VpiS7','Bonjour,\r\nci dessous les entrées à ajouter au fichier .DAT de configuration S7.\r\n\r\n<pre>\r\nBLOCK_MODE MANU\r\nNUMBER_OF_BLOCK 2\r\nBLOCK_001 00000-00030,DB.0001\r\nBLOCK_002 00280-00310,DB.0001\r\n</pre>\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-03-31 12:08:46',0),(240,94,'VpiValuesInit v0.0.1.0','Nouvelle version','Bonjour,\r\nsuite à la demande de Lionel, relative au problème de démarrage du serveur. J\'ai apporté une modification dans le VpiValueInit. \r\ncette version est disponible ici : http://www.openopcua.org/redmine/attachments/download/2827/VpiValuesInitd_v0.0.1.0.zip\r\nElle ne corrige pas le problème mais permet de l\'instrumenter. Merci de l\'installer et de relancer le serveur.\r\nAprès quelques minutes.\r\nVeuillez copier les logs et me les transmettre.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-04-04 13:38:38',0),(241,78,'Rappel sur les LOG dans OOUA','Le niveau de log peut être changé pendant le fonctionnement du serveur.','!clipboard-202204041402-o4eqz.png!\r\nLa fonctionnalité decrite ci-dessus est ancienne mais sont fonctionnement doit être validé.\r\nJ\'attends votre retour.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-04-04 14:03:57',0),(242,101,'Nouvelle version pour test EMOTORS','Nouvelle version IPV4','Bonjour,\r\nune nouvelle version des binaires IPV4 est disponible ici : http://www.openopcua.org/redmine/attachments/2913\r\nCette version sera testée par Lionel pour étudier différents problèmes en cours.\r\nElle ne sera déployée que sur la plateforme de test d\'EMOTORS.\r\nVous pouvez aussi la tester de votre côté car elle correspond à la base de code OOUA au 20 avril 2022.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-04-20 09:50:02',0),(243,55,'IMERYS Project','Run model train into the cloud on to the EDGE.','Trained Edge model will interact with the OOUA InternalKrnlAPI\r\nThe project will be sponsored by IMERYS in the context of the LIHXE MVP.\r\n* Question 1. What are the XGBoost component ?\r\n* Question 2. What binary is used to run a trained model ? \r\n* Question 3 : is an API available to interact with such a model ?',1,'2022-04-28 21:32:51',1),(244,89,'Job to be done ','CondensorType, CoolingTowerType, Evaporator,...','Object list to complete :\r\nCondensorType, CoolingTowerType, Evaporator,...\r\n!clipboard-202205051749-vckza.png!\r\n',1,'2022-05-05 17:50:02',0),(245,90,'XiMulator ','XiMulator new release','Hello,\r\nthe new XiMulator is available for download.\r\nIt fixe a minor issue related to UANodeSet extension declaration.\r\nIt also introduce the possibility to apply multiple stereotype on each classe\'s attribute. Below an example:\r\n!clipboard-202205071739-ibmnh.png!\r\n\r\nIf not shared Feel free to ask for download.\r\n\r\nEnjoy \r\nMichel Condemine\r\n',1,'2022-05-07 17:42:09',0),(246,97,'Modeling rule','New Modeling ','* ProductionLine=sumOf(Station)\r\n* Station=SumOf(Unit)\r\n* Unit=SumOf(Machine)',1,'2022-05-12 11:03:39',0),(247,92,'Model Demo','New demo','Hello,\r\ni posted here a demo of the model generated with XiMulator.\r\nThe model generate properly. It can be loaded without error in Siome.\r\nThe folder contain a full demo, without instances, based on OOUACoreServer.\r\nStart the server with StartServerRelease.bat\r\nConnect a client at: opc.tcp://localhost:16664/ImerysServer\r\n\r\nThe Ximulator prject is in the \\Project folder in ImerysTypes.xprj\r\n\r\nEnjoy the demo.\r\nMichel Condemine',1,'2022-05-27 18:21:43',0),(248,78,'VpiS7','VpiS7 v1.0.2.2','Bonjour,\r\nla nouvelle version du VpiS7 est disponible ici http://www.openopcua.org/redmine/attachments/download/3059/VPIS7d_v1.0.2.2.zip\r\nElle supprime le charactère 13 (0xd) des chaines d\'octet. \r\nIl s\'agit de la conversion d\'un tableau d\'octets dans le PLC vers une String OPC UA.\r\n\r\nJ\'ai testé cette version sur mon simulateur avec succès.\r\nMerci de la valider avec un PLC ASAP\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-06-04 00:41:14',0),(249,78,'Subversion EMotors','Tout est dans le titre','Bonjour,\r\nLe Subversion EMotors est disponible. \r\nVous pouvez l\'accéder de deux manières : \r\n# Avec un client Subversion à l\'adresse : http://www.openopcua.org/OpenOpcUa/EMotors/\r\n# En utilisant le Redmine OOUA : http://www.openopcua.org/redmine/projects/emotors/repository\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-06-04 02:04:15',0),(250,75,'Nouvelle version du serveur','OOUACoreServer 1.0.7.0','Bonjour,\r\nje viens de poster une nouvelle version du serveur qui corrige le problème relatif à l\'appel de méthodes.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-06-10 09:58:33',0),(251,97,'Model 0.0.2.0','The new model is ready for instanciation','Hello,\r\nI just release a new version of the model and all the related nodeset.\r\nThe next step is to create a bunch of instances according to the process.\r\nBelow some instances i quickly created.\r\n!clipboard-202206150130-1xu68.png!\r\n\r\nEnjoy it.\r\nMichel Condemine',1,'2022-06-15 01:31:38',0),(252,78,'XiMulator 1.0.4.9','Une nouvelle version du XiMulator est disponible','Bonjour,\r\nUn nouvelle version du XiMulator est disponible.\r\nElle devrait corriger l\'ensemble des problèmes.\r\nIl y a malgré tout un nouveau problème mineur identifier. Il concerne les generations successives. \r\nUn contournement simple consiste a arrêter le XiMulator entre deux générations.\r\n\r\nJe travaillerai sur ce problème un fois les VpiSPC terminés.\r\n\r\nJ\'attends vos retour.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-06-15 22:31:34',0),(253,75,'XiMulator 1.0.4.9','Nouvelle version du XiMulator','Bonjour,\r\nUne nouvelle version du XiMulator est disponible.\r\nElle devrait corriger l\'ensemble des problèmes.\r\nIl y a malgré tout un nouveau problème mineur identifier. Il concerne les generations successives. \r\nUn contournement simple consiste a arrêter le XiMulator entre deux générations.\r\n\r\nJe travaillerai sur ce problème un fois les VpiSPC terminés.\r\n\r\nJ\'attends vos retour.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-06-15 22:32:46',0),(254,78,'XiMulator','Nouvelle version du XiMulator ','Bonjour,\r\nune nouvelle version du XiMulator est disponible ici : http://www.openopcua.org/redmine/attachments/3109\r\nElle corrige les problèmes relatifs au HasTypeDefinition\r\nElle introduit une nouvelle fonctionnalité permettant de contrôler l\'evolution du numéro de version dans le modèle.\r\n!clipboard-202206230936-pptaj.png!\r\n\r\nJ\'attends vos retours\r\nCordialement\r\nMichel Condemine',1,'2022-06-23 09:36:29',0),(255,75,'XiMulator','XiMulator version 1.0.2.5 _ v1.0.5.0','Bonjour,\r\nune nouvelle version du XiMulator est disponible dans la section \"Fichiers\"\r\nElle corrige les problèmes relatifs aux HasTypeDefinition\r\nElle introduit une nouvelle fonctionnalité permettant de contrôler l\'evolution du numéro de version dans le modèle.\r\n!clipboard-202206230939-w9vb6.png!\r\n\r\nMerci de tester cette version ASAP et de l\'utiliser durant la présentation à IMERYS.\r\nJe reste à votre disposition pour plus d\'information et j\'attends vos retours.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-06-23 09:41:02',3),(256,75,'XiMulator 1.0.5.1','Evolution mineur','Bonjour,\r\nje viens de faire une petite evolution dans le XiMulator pour la prise en compte des EUInformation.\r\nElle est dispo dans section download.\r\n\r\nEnjoy it\r\nMichel Condemine',1,'2022-06-23 10:25:08',1),(257,75,'Livrable 1.0.7.2','Nouvelle version important','Bonjour,\r\nje viens de livrer une nouvelle version qui corrige plusieurs problèmes et apporte quelques nouveautés.\r\n* Un nouveau mécanisme permet le chargement des Vpis de manière sequentielles après les opérations de PostProcessing.\r\n* Un nouveau mécanisme permet de limiter et de controller la taille des fichiers de LOG\r\n* Le VpiUaMqttJsonPub reprend correctement en cas d\'erreur de communication\r\n\r\nMerci d\'installer ces binaires chez IMERYS ASAP.\r\n\r\nCordialement Michel Condemine\r\n',1,'2022-06-27 09:33:50',3),(258,78,'OOUA Binaires v1.0.7.2','Nouvelle version des binaires OOUA','Bonjour,\r\nune nouvelle version des binaires OOUA est disponible. Elle apporte plusieurs amélioration et correction.\r\nEn particulier :\r\n* Un nouveau mécanisme permet de limiter et de controller la taille des fichiers de LOG\r\n* Un nouveau mécanisme permet de charger les Vpis de manière séquentielle et synchrone. \r\n Il n\'est donc plus necessaire de mettre de pause dans le code des Vpis.\r\n\r\nJe laisse le soin a INETUM de vous livrer.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-06-27 09:50:42',0),(259,101,'Projet EMOTORS','Situation au 30 juin','Bonjour,\r\npetit résumé des points bloquants :\r\n\r\nVpiQualaxy : \r\n* Les méthodes REST ne sont pas toutes disponibles. Il manque en particulier celles permettant de prendre en compte les moyens de mesure. Point bloquant\r\n* Pour la prise en compte des gammes il me manque le mapping entre le modèle EMOTORS et les attributs Qualaxy.\r\n\r\nVpiOptimu : \r\n* Une nouvelle version a été livré le 29/6 je suis en attente de retours.\r\n\r\nEncodeur générique\r\n* Je vais avancer sur ce sujet ce jour \r\n\r\nN\'hésitez pas à commenter\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-06-30 09:04:08',0),(260,92,'Generation 2.1.3','New version of Imerys Types','Hello,\r\nI new version of the Types based on the Model 2.1.3 is available here : http://www.openopcua.org/redmine/attachments/download/3164/Generation_2.1.3.zip\r\nEnjoy it.\r\n\r\nRegards\r\nMichel Condemine',1,'2022-06-30 17:18:50',0),(261,75,'OOUA 1.0.7.4','MAJ mineur Serveur 1.0.7.4','Bonjour,\r\nj\'ai fait un MAJ mineur pour mieux synchroniser la démarrage.\r\nElle est dispo ici : http://www.openopcua.org/redmine/attachments/download/3167/Livraison%20Binaires%20Debug-IPV4%20-%2030-6-2022_v1.0.7.4.zip\r\nMerci de me faire un retour ASAP\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-06-30 21:35:50',1),(262,75,'Aggregate description','','https://fr.mathworks.com/help/icomm/ug/opc-ua-aggregate-functions.html',1,'2022-07-06 15:32:37',0),(263,55,'What is XGBoost and what are its top alternatives?','','!clipboard-202207071538-v0vsd.png!\r\n',1,'2022-07-07 15:38:47',0),(264,71,'Accès Redmine actif','Accès au project Techpap au sein du Redmine OpenOpcUa','Welcome !!!',1,'2022-07-12 13:20:58',0),(265,89,'Client dev solution','Low code OPC UA Toolkit','Hello,\r\nhere is a LowCode OPC UA client dev solution.\r\nThis solution need to be evaluate but sound promising :\r\nhttps://demo.smart-hmi.com/demo-controls/\r\n\r\nKind regards\r\nMichel Condemine',1,'2022-07-16 16:00:19',0),(266,101,'VpiS7','Modification VpiS7','Bonjour,\r\nLa version 1.0.2.4 du VpiS7 est disponible ici : http://www.openopcua.org/redmine/attachments/download/3230/VPIS7d_version_1.0.2.4.zip\r\nElle ajoute une trace dans la fonction de lecture.\r\nJe vous confirme par ailleurs que pour les tags déclarés Output (write-only) la callback du Vpi ne sera jamais appelée.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-07-19 19:43:02',4),(267,75,'Server update','Nouvelle version du serveur OOUA','Bonjour,\r\nune nouvelle version du serveur est disponible.\r\nJe souhaite organiser une session de test sur les alarmes ASAP\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-07-20 17:43:48',0),(268,89,'OOUAConfigManager 0.1.0.2','Export capabilities','Hello ,\r\nthe new version of the OOUAConfigManager is available.\r\nThis version contains several fixes and new feature.\r\nNew features include the new export capabilities with 3 new column in the exported CSV :\r\n* AccessLevel, Read, Write, HistoryRead, HistoryWrite, etc.\r\n* Historizing : True or False\r\n* HistorizingModel : OnChanhe, OnTime or None\r\n\r\nAn export of Lixhe based on the UML model version 1.0.8 is available in the file section.\r\n\r\nEnjoy it\r\nMichel Condemine',1,'2022-07-21 14:53:04',0),(269,75,'Binaires ver 1.0.7.5','Nouvelle version des binaires','Bonjour,\r\nune nouvelle version des binaires est disponible ici : http://www.openopcua.org/redmine/attachments/download/3247/Livraison%20Binaires%20Debug-IPV6%20-%2025-07-2022_v1.0.7.5.zip\r\nElle corrige :\r\n* les fuites dans le VpiMqttPub\r\n* Le comportement HA\r\n\r\nmerci de valider les deux fonctionnalités ASAP\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-07-25 13:43:43',0),(270,89,'VpiS7 v1.0.2.6','New VpiS7 release','Hello,\r\na new version of the VpiS7 is available.\r\nThis new version workaround the issue related to enumerations declared as Boolean or Int16 in the Subsystem file.\r\n\r\nRegards\r\nMichel Condemine',1,'2022-08-01 10:37:54',0),(271,107,'Welcome','Bienvenu dans le projet EMOTORS-->SODEL','Bonjour,\r\nmerci d\'utiliser ce projet pour remonter les incidents relatif au projet.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-08-02 17:05:45',0),(272,75,'Nouveaux binaires 1.0.7.7','Update clientlib','Bonjour,\r\nla livraison du jour ne concerne que la clientlib, le vpiuaclient et la vpiLib\r\n\r\nmerci de tenter de reproduire le problème remonté par Lionel.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-08-04 13:33:07',9),(273,101,'Base64 encode/decode','Performance de l\'encoder/decoder base64','Bonjour,\r\nj\'ai écrit un programme de test afin d\'évaluer les performances de l\'encodeur/décodeur base64.\r\nIl s\'agit d\'un programme qui charge un fichier passé en invite de commande, l\'encode puis le décode et compare le résultat afin de vérifier que le contenu décodé et égal au contenu avant encodage.\r\nEn utilisant un fichier de 4188KO\r\n* Temps d\'encodage : 31ms \r\n* Temps de décodage : 5min15 sec\r\nLa payload avant et après encodage/décodage est identique.\r\n*Le résultat est OK mais la performance INACCEPTABLE.* \r\n\r\nJ\'ai donc modifié l\'implémentation du décodeur base64.\r\nAvec la nouvelle version \r\n\r\n* Temps d\'encodage 31ms \r\n* Temps de décodage 453ms\r\nLa payload avant et après encodage/décodage est identique.\r\n*Le résultat est OK et la performance acceptable.* \r\n\r\nCette avancé permettra d\'améliorer le temps de démarrage du serveur (VpiValueInit), le temps d\'accès aux UDT depuis un client UA.\r\nMais surtout de mettre en place un mécanisme de verification de la cohérence des UDT avant leurs enregistrement par le VfiPgSql.\r\n\r\nIl reste à :\r\n# modifier la VpiLibrary. La VfiLibrary est déjà corrigé. \r\n# modifier le VfiPgSql\r\n# Fabriquer une nouvelle livraison\r\n# Réaliser des tests.\r\n\r\n\r\nJ\'attends vos commentaires\r\n\r\nCordialement\r\nMichel Condemine\r\n',1,'2022-09-02 17:58:40',1),(274,78,'Encodeur/décodeur BASE64','Performance de l\'encodeur/décodeur Base64','Bonjour,\r\nj\'ai écrit un programme de test afin d\'évaluer les performances de l\'encodeur/décodeur base64.\r\nIl s\'agit d\'un programme qui charge un fichier passé en invite de commande, l\'encode puis le décode et compare le résultat afin de vérifier que le contenu décodé et égal au contenu avant encodage.\r\nEn utilisant un fichier de 4188KO\r\n* Temps d\'encodage : 31ms\r\n* Temps de décodage : 5min15 sec\r\nLa payload avant et après encodage/décodage est identique.\r\n*Le résultat est OK mais la performance INACCEPTABLE.*\r\n\r\nJ\'ai donc modifié l\'implémentation du décodeur base64.\r\nAvec la nouvelle version\r\n* Temps d\'encodage 31ms\r\n* Temps de décodage 453ms\r\nLa payload avant et après encodage/décodage est identique.\r\n*Le résultat est OK et la performance acceptable.*\r\n\r\nCette avancé permettra d\'améliorer le temps de démarrage du serveur (VpiValueInit), le temps d\'accès aux UDT depuis un client UA.\r\nMais surtout de mettre en place un mécanisme de verification de la cohérence des UDT avant leurs enregistrement par le VfiPgSql.\r\n\r\nIl reste à :\r\n# modifier la VpiLibrary. La VfiLibrary est déjà corrigé.\r\n# modifier le VfiPgSql\r\n# Fabriquer une nouvelle livraison\r\n# Réaliser des tests.\r\n\r\nJ\'attends vos commentaires\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-09-02 18:01:28',0),(275,89,'ISO TCP Configuration','In progress configuration','Hello,\r\ni will work the whole day on the Prod server configuration.\r\n2 topics will be addresses :\r\n* ISO TCP PLC (Sinec H1). The configuration is ready on the gateway PC BESVLIX104. It\'s now time to agregate informations in BESVLIX100\r\n* History configuration.\r\n\r\nCan you please not changing the PROD server.\r\n\r\nFeel free to contact me for further information.\r\nRegards\r\nMichel',1,'2022-09-06 10:26:31',0),(276,101,'Vpi/Vfi package','A tester','Bonjour,\r\npourriez vous tester le plus rapidement possible cette livraison. http://www.openopcua.org/redmine/attachments/3359\r\nElle comprends la VpiLib, la VfiLib, le ValueInit et le VfiPgSql avec une meilleure gestion de la mémoire.\r\n\r\nj\'attends votre retour ASAP\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-09-07 17:01:59',8),(277,89,'Binaries update','New binaries 1.0.7.8','Hello,\r\nI applied a new OOUA Binary set. It contains bug fixes and enhancement for several OOUA components.\r\nThis new set is running on the LIXHE PROD server.\r\n\r\nKind regards\r\nMichel',1,'2022-09-08 14:27:55',0),(278,75,'Nouveaux Binaires 1.0.7.8','Livraison des binaires 1.0.7.8','Bonjour,\r\ncette livraison pour EMOTORS. Elle contient des nombreuses améliorations. CF ChangeLog\r\nElle corrige le problème du crash sur le décodage Base64\r\n *A TESTER D\'URGENC* E\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-09-08 19:28:12',1),(279,96,'Maquette Agrégateur','Maquette agrégateur 100% OOUA','Bonjour,\r\nj\'ai réalisé un nouvelle maquette qui fonctionne localement.\r\nElle est dispo ici : http://www.openopcua.org/redmine/attachments/download/3390/Demo_VpiUaClnt_AutoCfg_Release_x64_OOUA_SEED.zip\r\nElle présente un serveur OOUA Seed et un OOUA Agrégateur\r\n* Lancez depuis le repertoire SEED StartServerRelease.bat\r\n* Lancez depuis le répertoire Agregator StartServerRelease.bat\r\n* Ouvrez le projet UAExpert Aggregator.uap\r\n\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-09-15 16:21:06',0),(280,89,'ISO TCP Gateway','The ISO TCP Gateway based on OpenOpcUa is Up and running','Hello,\r\nA very good news for the MVP.\r\nThe ISO TCP Gateway based on OpenOpcUa is Up and running.\r\nI made the following changes:\r\n* Binaries update on the Data platform (BESVLIX100) \r\n* Changes in configuration on OOUA Gateway for 2 nodes\r\n* Changes in configuration on Data platform for 2 nodes\r\n\r\nFeel free to contact me for any information you may need.\r\n\r\n\r\nKind regards\r\nMichel Condemine',1,'2022-09-16 10:51:35',1),(281,89,'XiMulator (1.0.2.6) XmiToUANodeSetLibrary (1.0.5.6)','New XiMulator version','Hello,\r\nA new version of XiMulator is available.\r\nIt contains a new attribute in the configuration section.\r\nThis attribute is called FilterUserNodeSet. It allows to exclude OPCF NodeSet when searching DataTypes.\r\nThis means that DataType will not be search in NodeSet but only in UML builtin and in UserDataType.\r\n\r\nEnjoy It\r\nMichel',1,'2022-10-15 18:02:57',0),(282,78,'XiMulator (1.0.2.6) XmiToUANodeSetLibrary (1.0.5.6)','New Ximulator version','Hello,\r\nA new version of XiMulator is available.\r\nIt contains a new attribute in the configuration section.\r\nThis attribute is called FilterUserNodeSet. It allows to exclude OPCF NodeSet when searching DataTypes.\r\nThis means that DataType will not be search in NodeSet but only in UML builtin and in UserDataType.\r\n\r\nEnjoy It\r\nMichel Condemine',1,'2022-10-15 18:03:35',0),(283,75,'XiMulator (1.0.2.6) XmiToUANodeSetLibrary (1.0.5.6)','New XiMulator version','Hello,\r\nA new version of XiMulator is available.\r\nIt contains a new attribute in the configuration section.\r\nThis attribute is called FilterUserNodeSet. It allows to exclude OPCF NodeSet when searching DataTypes.\r\nThis means that DataType will not be search in NodeSet but only in UML builtin and in UserDataType.\r\n\r\nEnjoy It\r\nMichel Condemine\r\n',1,'2022-10-15 18:04:38',0),(284,96,'Note sur le VpiUaClient','Note d\'utilisation','Bonjour,\r\nDans le cas de la déclaration de plusieurs instances du VpiUaClient en mode Automatique au sein du même serveur OOUA. \r\nIl convient que l’URI, racine d’aspiration, préexiste dans le serveur hôte. \r\nSi ce n’est pas le cas la création des nodes pourrait ne pas être réalisée correctement.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-10-17 17:56:25',0),(285,78,'VpiS7 1.0.2.8','New Vpi version','Hello,\r\nA new Vpi version is available. It fixes a leak on read operation.\r\nThis version is available here http://www.openopcua.org/redmine/attachments/download/3479/VPIS7d_1.0.2.8.zip\r\n\r\nRegards\r\nMichel Condemine\r\n',1,'2022-10-21 17:26:34',1),(286,75,'OOUA 1.0.8.4','Nouvelle livraison','Bonjour,\r\nje viens de livrer une nouvelle version des binaires et des PDB associés.\r\nCette version est concentrée sur le VpiUaClient mais tous les binaires doivent être mise à jour.\r\nUn nouveau paramètre PARANOID_MODE peut être utilisé dans le fichier .DAT du Vpi.\r\nCe paramètre permet de forcer la resynchronisation des handles quand la ClientLib transmet un Shutdown associé à un status Good.\r\nSyntaxe possible\r\nPARANOID_MODE 1 \r\nPARANOID_MODE 0\r\n\r\nJ\'attends votre retour ASAP.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-11-28 10:32:44',0),(287,89,'New binaries','New binaries deployment on PROD Server','Hello,\r\nI deployed the new binaires for OOUA Server, dependencies and Add-Ins.\r\nThis new release fixe performance issue on HA layer. \r\nKnown issue :\r\nIf a discordance exists between URI name and Table name this can cause an unexpected behavior.\r\nThe current configuration is discordant several action have to be taken :\r\n* @Semih : Fix the configuration and deploy ASAP\r\n* @Michel : investigate the discordance issue and handle it on the server side.\r\n* @All : deploy a test DB on the TEST platform\r\n\r\nRegards\r\nMichel',1,'2022-12-05 20:59:19',0),(288,55,'Various info','GPT','GPT stands for Generative Pre-trained Transformers. The three terms to understand are:\r\n\r\nGenerative: These are models that model the underlying distribution of the data and generate new data similar to the data they were trained on.\r\n\r\nPre-trained: A pre-trained model is a model that was previously trained on a large dataset. GPT models are pre-trained on a broad distribution of data from the internet (like Wikipedia, books, etc.) (https://lnkd.in/gczVXNXN)\r\n\r\nTransformers: A type of neural network that uses attention mechanisms to process sequential data, such as natural language text. Read this blog post to understand transformer models (https://lnkd.in/ggHG33ym)\r\nThere have been the following models in the GPT family\r\n\r\nGPT-1 -> GPT-2 -> GPT-3 -> InstructGPT -> ChatGPT\r\n\r\nDid you know that GPT-3 was 100x bigger than GPT-2 and had 175 billion parameters?\r\n\r\n\r\nBut something changed in January 2022. OpenAI published a paper (https://lnkd.in/g2DtpmDJ) and a blog (https://lnkd.in/gDVXB8hm is in part because,t aligned with their users.).\r\n\r\n\r\nThey added InstructGPT models (which are 100x smaller than GPT-3) to the OpenAI API.\r\n\r\nInstructGPT models performed better than GPT-3!!\r\n\r\nHuman labelers prefer InstructGPT outputs. They also hallucinate much less.\r\n\r\nWhy?\r\n\r\nBecause of alignment.\r\n\r\nLarge Language Models (LLMs) are not inherently better at following users’ intent and are not aligned with the users. They have been trained to predict the next word given a prompt based on a large body of internet text. But that means the model is always trying to predict what a user will say next and gives bizarre responses to questions. We need to make sure the responses are better aligned with how a natural dialogue and interaction takes place.\r\n\r\nOpenAI used reinforcement learning to fine-tune a GPT-3 model that was fine-tuned using data from human labelers (supervised) to make it more aligned and in turn safer and more useful. ****The training process can be found here and will be detailed in my next post (https://lnkd.in/g2DtpmDJ)\r\n\r\n\r\nWhat is special about InstructGPT/ChatGPT?\r\n\r\nParaphrasing what they wrote on their blog, this is the first time OpenAI has applied their alignment research (https://lnkd.in/gvmrmc-y Alignment research focuses on,critical part of our mission.) to a product. This research is really important to build safer AI systems.\r\n\r\nFun Fact: OpenAI collaborated with Deep Mind’s safety team in 2017 to lay the foundations of the RL algorithm they used for InstructGPT. Reference here - https://lnkd.in/ghdhB46F\r\n\r\nOpenAI model index: https://lnkd.in/gFmRfQbx',1,'2022-12-11 11:14:18',0),(289,78,'New binaries','New OOUA Full package','Bonjour,\r\nje viens de livrer un package complet pour test, ClientLib 1.0.8.3 VpiUaClient 1.0.4.8.\r\nIl faut impérativement utiliser l\'ensemble des binaires, Serveur et dépendances, VpiUaClient et dépendances.\r\nJ\'ai réalisé une maquette avec 3 seeds : 2 locales et un remote.\r\nune dizaine et connexion/déconnexion ont été réalisé avec succès.\r\nJ\'attends votre retour.\r\n\r\nCordialement\r\nMichel Condemine',1,'2022-12-26 21:45:40',0),(290,78,'New binaries','Nouvelle version des binaires pour le VpiUaCLient','Bonjour,\r\nj\'ai modifié légèrement la client Lib afin de favoriser l\'arrêt de la WatchingThread.\r\nMerci de test la version des binaires livrés ce matin et de me faire un retour aSAP\r\nCordialement\r\nMichel',1,'2023-01-10 08:13:03',0),(291,108,'Imerys pilot','Welcome','Hello, \r\nwelcome in the new Pilot Project.\r\nIt\'s a subproject of IMERYS project. You can reach this project here.http://www.openopcua.org/redmine/projects/imerys-pilot \r\nCan you please use this project to report issue, shared documents any every collaborative actions.\r\n \r\nRegards\r\nMichel',1,'2023-01-10 16:11:53',0),(292,108,'New binaries - Jan 2023','OOUA binaries January 2023','Hello,\r\nNew OOUA binaries are available. There a called OOUA 1.0.8.5 January 2023 - \r\nBug Fix \r\n \r\nNew features\r\n - GenericInitialization mechanism for structure from the nodeset.\r\n - \r\nCoreServer ver: 1.0.8.5\r\n - New declaration for OpenOpcUaSystemType\r\n - New enumeration for TraceLevel and TraceOutput for live change. \r\n This new enumeration apply to VPIs as well\r\n - fix a memory leak on server data cache update\r\n - New support for continuation point in historyRead call. Calls are fragmented in 10000 samples.\r\n A continuation point is sent to the client when more thnan 10000 samples are suppose to be send.\r\n Client shall support continuation point. See OPC UA spec for details\r\n \r\nOpcUaSharedLibrary ver: 1.0.6.2\r\n - New copy function for CurrencyUnitType\r\n - Fix memory leak (CMonitoredItemBase::SetValue)\r\n * \r\nClientLibrary ver: 1.0.9.2\r\n Bug fixes :\r\n - Fragmented reconnection was not supported. The new version of the ClientLibrary support it.\r\n So, in case of reconnection the Client/Server link may not be restored properly. Critical update needed.\r\n - Reconnection mechanism.\r\n - Session destruction. A new mechanism is implemented\r\n - Trace are now able to mix various level, like ERROR and INFO\r\n - Cleanup error messages\r\n\r\nOther :\r\n - \r\nVPIs\r\n - VpiUaClient ver: 1.0.5.6 \r\n - Change RestoreClientConnectionFromSessionConfiguration when Vpi is facing an illegal situation.\r\n - The Vpi is now checking the validity of hSessions and hApplication\r\n - Various optimization on the reconnection mechanism\r\n - Stop is now handled in a better way\r\n - Cleanup error messages\r\n - Reconnection is now working properly in manual configuration\r\n - The time-stamp synchronization between client is now configurable.\r\n The default timespan is 30000 msec. The value can be setup in the Extra configuration file\r\n in using the parameter TIMEOUT_HINT\r\n - New DeviceState behavior\r\n - New TraceLevel mechanism\r\n Note : Most of the test are made on the manual configuration\r\n - VpiS7 ver: 1.0.3.1\r\n - fix a memory leak on String convert to Byte array\r\n - New DeviceState behavior\r\n - New TraceLevel mechanism\r\n - VpiUaMqttJsonPub ver: 0.0.0.9\r\n - Fix messages clean up\r\n - New DeviceState behavior\r\n - New TraceLevel mechanism\r\n - VpiUaMqttJsonSub ver: 0.0.0.4\r\n - Fix crash on server stop\r\n - Fix messages clean up\r\n - New DeviceState behavior\r\n - New TraceLevel mechanism\r\n \r\nVpi Library ver: 1.0.4.3\r\n - \r\n - New API : \r\n\r\n\r\nVFI Library ver: 0.0.1.0\r\n - \r\n \r\nUANodeManager (v1.0.0.9)\r\n - Cleanup\r\n - New server dependency integration\r\n\r\nOpenOpcUaConfigManager ver: 0.1.0.3\r\n - Fix creation wizard\r\n - Fix save project\r\n - New instantiation features\r\n - New Import/export features\r\n - Global cleanup\r\n \r\n\r\nXiMulator (1.0.2.7) XmiToUANodeSetLibrary (1.0.5.9)\r\n - Fix generation issue in datatype some nested attributes\r\n \r\nEnjoy\r\nMichel Condemine',1,'2023-01-16 17:45:21',0),(293,75,'Livraison','Source OOUA','Nouveaux sources disponible. http://www.openopcua.org/redmine/attachments/download/3802/OpenOpcUa_1_0_8_5.zip\r\n',1,'2023-02-14 15:14:11',0);
/*!40000 ALTER TABLE `news` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `open_id_authentication_associations`
--
DROP TABLE IF EXISTS `open_id_authentication_associations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `open_id_authentication_associations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`issued` int(11) DEFAULT NULL,
`lifetime` int(11) DEFAULT NULL,
`handle` varchar(255) DEFAULT NULL,
`assoc_type` varchar(255) DEFAULT NULL,
`server_url` blob,
`secret` blob,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `open_id_authentication_associations`
--
LOCK TABLES `open_id_authentication_associations` WRITE;
/*!40000 ALTER TABLE `open_id_authentication_associations` DISABLE KEYS */;
/*!40000 ALTER TABLE `open_id_authentication_associations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `open_id_authentication_nonces`
--
DROP TABLE IF EXISTS `open_id_authentication_nonces`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `open_id_authentication_nonces` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timestamp` int(11) NOT NULL,
`server_url` varchar(255) DEFAULT NULL,
`salt` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `open_id_authentication_nonces`
--
LOCK TABLES `open_id_authentication_nonces` WRITE;
/*!40000 ALTER TABLE `open_id_authentication_nonces` DISABLE KEYS */;
/*!40000 ALTER TABLE `open_id_authentication_nonces` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `projects`
--
DROP TABLE IF EXISTS `projects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `projects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`description` text,
`homepage` varchar(255) DEFAULT '',
`is_public` tinyint(1) NOT NULL DEFAULT '1',
`parent_id` int(11) DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`updated_on` datetime DEFAULT NULL,
`identifier` varchar(255) DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '1',
`lft` int(11) DEFAULT NULL,
`rgt` int(11) DEFAULT NULL,
`inherit_members` tinyint(1) NOT NULL DEFAULT '0',
`default_version_id` int(11) DEFAULT NULL,
`default_assigned_to_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_projects_on_lft` (`lft`),
KEY `index_projects_on_rgt` (`rgt`)
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `projects`
--
LOCK TABLES `projects` WRITE;
/*!40000 ALTER TABLE `projects` DISABLE KEYS */;
INSERT INTO `projects` VALUES (1,'OpenOpcUa','A reference implementation for OPC UA. This project contains both client and server. The client is a API for Windows and Linux.\r\nThe server a reference implementattion avaliable for Windows, Linux and many Embedded systems.','www.OpenOpcUa.org',1,NULL,'2011-12-19 02:27:29','2015-03-30 21:35:15','openopcua',1,111,184,0,NULL,NULL),(3,'OpcUa Stack V1','Implementation de la stack OpcUa V1. \r\naccès svn : http://www.openopcua.org/OpenOpcUa/uastackv1/','',0,7,'2012-01-09 11:10:27','2012-01-23 23:16:01','uastackv1',1,145,146,0,NULL,NULL),(4,'OpcUa Stack V2','Implementation de la stack OpcUa V2','',0,7,'2012-01-09 11:11:10','2012-01-09 11:11:10','uastackv2',1,147,148,0,NULL,NULL),(5,'Information Model','','',0,NULL,'2012-01-12 10:04:29','2021-10-28 11:43:16','informationmodel',1,99,110,0,NULL,NULL),(6,'Bacnet','Access for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/Bacnet/','',0,5,'2012-01-12 13:40:33','2012-01-23 23:12:03','bacnet',1,102,103,0,NULL,NULL),(7,'Stack UA','projet pour l\'implementation d\'une stack OPC UA unifié et multiplateforme','',0,1,'2012-01-12 18:04:02','2012-01-12 18:04:02','uastack',1,144,149,0,NULL,NULL),(8,'MAPE','Modèle d\'information pour le projet MAPE\r\nAccess for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/mape','',0,5,'2012-01-12 18:49:35','2012-01-23 23:12:45','mape',1,106,107,0,NULL,NULL),(9,'ISA95','Modelisation S95 sur OPC UA\r\nAccess for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/isa95','',0,5,'2012-01-18 00:26:57','2012-01-25 19:32:00','isa95',1,104,105,0,NULL,NULL),(10,'RTE','Définition du modèle information pour le demonstrateur RTE.\r\nAccess for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/rte','',0,5,'2012-01-18 01:05:49','2012-01-23 23:13:57','rte',1,108,109,0,NULL,NULL),(11,'Servers V1','Serveurs basés sur la Stack V1','',0,1,'2012-01-18 01:52:04','2012-01-18 01:52:04','servers-v1',1,136,141,0,NULL,NULL),(12,'Servers V2','Serveurs basés sur la Stack V2','',0,1,'2012-01-18 01:53:10','2012-01-25 19:32:18','servers-v2',1,142,143,0,NULL,NULL),(13,'OpenOpcUaCoreServer','Serveur UA de type shell, basé sur la stack V1.\r\nAccess for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/opcua-cpp-quickserver\r\n\r\nHere is the repository coming from the MC VS2017. This is the last version of the server','',0,11,'2012-01-18 01:56:30','2022-05-27 01:02:58','opcua-cpp-quickserver',1,137,138,0,NULL,NULL),(14,'SharedLib','Access for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/sharedlib','',0,11,'2012-01-18 02:05:48','2012-01-23 23:15:20','sharedlib',1,139,140,0,NULL,NULL),(15,'Tools','outils utilisés dans le projet OpenOpcUa','',0,1,'2012-01-18 02:52:30','2012-01-18 02:52:30','tools',1,150,157,0,NULL,NULL),(16,'XMLSAXParser','Parser XML basé sur expat.\r\nAccess for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/xmlsaxparser','',0,15,'2012-01-18 02:54:05','2012-01-23 23:18:08','xmlsaxparser',1,155,156,0,NULL,NULL),(17,'VPIs','Virtual Protocol Interface project','',0,1,'2012-01-18 03:06:31','2012-01-18 03:06:31','vpis',1,160,183,0,NULL,NULL),(18,'VpiBinClient','Implementation de la couche client du protocole binaire RTE.\r\nAccess for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/vpibinclient','',0,17,'2012-01-18 03:08:20','2012-12-12 18:00:13','vpibinclient',1,167,168,0,NULL,NULL),(19,'VPIOperatingSystem','VPi de démonstration pour la prise en charge de donnée issue du PC. Coordonnée X,Y de la souris, %CPU, type CPU, etc.\r\nAccess for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/vpi-operating-system/','',0,17,'2012-01-18 12:01:50','2012-04-06 14:41:35','vpi-operating-system',1,181,182,0,NULL,NULL),(20,'Clients','','',0,1,'2012-03-09 09:50:52','2013-04-23 12:07:41','uaclient',1,112,123,0,NULL,NULL),(21,'MFCQuickClient','Access for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/mfcquickclient','',0,20,'2012-03-27 14:25:28','2014-03-12 17:36:41','mfcquickclient',9,113,114,0,NULL,NULL),(23,'VpiMdbMaster','Vpi Modbus Maitre RTU et TCP.\r\nAccess for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/VpiMdbMaster/','',0,17,'2012-06-19 16:54:45','2012-06-19 17:57:42','vpimdbmaster',1,175,176,0,NULL,NULL),(24,'VpiMca166','Access for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/vpimca166','vpimci166',0,17,'2012-06-25 00:29:41','2012-08-02 14:37:48','vpimca166',1,171,172,0,NULL,NULL),(25,'UAClientLib','Access for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/uaclientlib','uaclientlib',0,20,'2012-06-25 00:50:50','2012-08-02 14:38:14','uaclientlib',1,121,122,0,NULL,NULL),(26,'QtQuickClient','Access for web SVN client and like TortoiseSVN : http://www.openopcua.org/OpenOpcUa/qtquickclient','qtquickclient',0,20,'2012-06-25 00:51:57','2012-08-02 14:38:05','qtquickclient',1,119,120,0,NULL,NULL),(28,'VpiAcqCtrl','Ce Vpi est conçu pour permettre a une application externe d\'interagir avec la cache du serveur OpenOpcUa en utilisant un jeu d\'API spécifique.','',0,17,'2012-12-12 00:27:55','2013-04-23 12:07:21','vpiacqctrl',1,165,166,0,NULL,NULL),(29,'VpiMensor','Vpi pour capteur de pression mensor','',0,17,'2012-12-12 23:15:11','2012-12-12 23:16:33','vpimensor',1,177,178,0,NULL,NULL),(30,'vpimca527','Vpi for GBS MCA 527\r\nhttp://www.openopcua.org/OpenOpcUa/vpimca527','',0,17,'2014-01-10 10:12:41','2014-03-17 10:37:29','vpimca527',1,173,174,0,NULL,NULL),(31,'VpiNull','Empty VPI for training purpose\r\nhttp://www.openopcua.org/OpenOpcUa/vpinull','',0,17,'2014-01-10 11:28:58','2014-03-17 10:39:48','vpinull',1,179,180,0,NULL,NULL),(32,'OpenOpcUaQuickClient','QuickClient based on OpenOpcUa\r\nhttp://www.openopcua.org/OpenOpcUa/openopcuaquickclient','',0,20,'2014-01-15 11:26:38','2014-03-21 10:14:40','openopcuaquickclient',1,117,118,0,NULL,NULL),(33,'Deliver','Projet for delivery of codebase and binary.','',0,1,'2014-01-15 17:27:31','2014-01-15 17:27:31','deliver',1,126,127,0,NULL,NULL),(34,'OpenOpcUaVpiLibrary','Library for VPI Creation. \r\nhttp://www.openopcua.org/OpenOpcUa/openopcuavpilibrary','',0,17,'2014-01-31 18:48:40','2014-03-17 10:02:19','openopcuavpilibrary',1,163,164,0,NULL,NULL),(35,'demo','Demo projects\r\nhttp://www.openocpua.org/OpenOpcUa/demo','',0,1,'2014-01-31 20:53:02','2014-03-20 15:33:32','demo',1,128,129,0,NULL,NULL),(40,'Virtual File Interface','Top project for VFI development','',0,1,'2014-03-12 15:16:23','2014-03-12 15:16:23','vfis',1,158,159,0,NULL,NULL),(42,'OpenOpcUaClientSdk','Package for client development. This project contains only shared and code deliverable.','',0,20,'2014-03-12 17:40:45','2014-03-12 17:40:45','openopcuaclientsdk',1,115,116,0,NULL,NULL),(43,'CoreServer','','',0,1,'2014-04-03 12:20:25','2014-04-03 12:20:25','coreserver',1,124,125,0,NULL,NULL),(44,'OpenOpcUa V2','OpenOpcUa Project Version 2','',0,NULL,'2014-05-17 18:07:08','2014-05-17 18:07:08','openopcua-v2',1,187,188,0,NULL,NULL),(45,'VpiComDa','VpiComDa is a Vpi Wrapper for OPC COM DA Server\r\nhttp://www.openopcua.org/OpenOpcUa/vpicomda','',0,17,'2015-01-28 21:01:10','2015-01-28 22:13:24','vpicomda',1,169,170,0,NULL,NULL),(46,'OpenOpcUa Release codebase','Private project for OpenOpcUa sponsors\r\nREMINDER: The fork of the OpenOpcUa code base is forbidden.\r\nBy accessing this Redmine you unconditionally accept all terms of use associated with it.','',0,NULL,'2015-04-01 13:34:26','2021-10-28 11:45:06','openopcuasponsors',1,185,186,0,NULL,NULL),(47,'OpenOpcUaConfigManager','http://www.openopcua.org/OpenOpcUa/openopcuaconfigmanager','',0,15,'2015-08-09 12:35:43','2015-08-09 16:02:09','openopcuaconfigmanager',1,151,152,0,NULL,NULL),(48,'Cooperl','Gestion du projet Cooperl\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2016-07-01 10:57:20','2021-10-28 11:40:00','cooperl',1,8,9,0,NULL,NULL),(49,'TIAMA','RAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2016-08-03 14:36:57','2022-05-02 21:03:08','tiama',1,48,51,0,NULL,NULL),(50,'EthernetIp','Project for ODVA\'s CIP based Vpi implementation','',0,17,'2016-11-04 15:20:02','2016-11-04 15:20:02','ethernetip',1,161,162,0,NULL,NULL),(51,'Prosyst','Private project for the OpenOpcUa Titanium Sponsoring made by Prosyst\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2017-04-05 13:44:45','2021-10-28 11:48:17','prosyst',1,86,87,0,NULL,NULL),(52,'ADP','Modèle de données et serveur OPC UA pour la détection incendie chez Groupe ADP\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2017-06-12 13:26:41','2021-10-28 11:39:06','adp',1,2,3,0,NULL,NULL),(53,'Renault SAS','Projet Modèle Renault\r\nProjet XmiToNodeSet\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2017-06-20 09:13:49','2021-10-28 11:48:49','renault-sas',1,90,91,0,NULL,NULL),(54,'Resolution Spectra','Projet Modèle RS\r\nProjet extension VpiDirectAccess\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2017-09-01 10:53:44','2021-10-28 11:50:07','resolutionspectra',1,92,93,0,NULL,NULL),(55,'DLAD in Industrial Process','Deep Learning for Anomaly detection in industrial processing\r\n','',0,1,'2017-09-17 15:48:30','2017-09-17 15:48:30','dladip',1,130,131,0,NULL,NULL),(56,'Tyco','Implementation d\'un VPI pour les équipements TYCO\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2017-10-01 16:27:26','2021-10-28 11:50:41','tyco',1,52,55,0,NULL,NULL),(57,'SDPLEX','Private project for a first 6 month collaboration. Between OOUA and SDPlex','',0,91,'2017-11-23 23:10:04','2021-10-28 11:49:53','sdplex',1,94,95,0,NULL,NULL),(58,'MedianeSysteme','Project for OPC UAServer developement\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2018-01-04 13:46:16','2021-10-28 11:47:44','medianesystem',1,78,79,0,NULL,NULL),(59,'TM15','','',0,49,'2018-02-07 14:36:18','2018-02-07 14:36:18','tm15',1,49,50,0,NULL,NULL),(60,'PI_SYSTEM_AUTOMATION','PI_SYSTEM_AUTOMATION project started on March 15 2018\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2018-03-15 16:40:24','2021-10-28 11:48:01','pisysautomation',1,84,85,0,NULL,NULL),(61,'PELLENC ST','Intégration OpenOpcUa dans les solutions Pellenc ST\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2018-05-17 08:53:39','2021-10-28 11:47:14','pellencst',1,82,83,0,NULL,NULL),(62,'NeuAutomation','Project for OPC UAServer developement\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2018-05-29 15:18:45','2021-10-28 11:49:08','neuautomation',1,80,81,0,NULL,NULL),(63,'SISE','Project for OPC UAServer developement\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2018-07-30 11:57:35','2021-10-28 11:49:22','sise',1,96,97,0,NULL,NULL),(64,'SHICK-ESTEVE','Project for OPC UAServer developement\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2018-10-24 11:07:59','2021-10-28 11:42:07','sick-esteve',1,44,45,0,NULL,NULL),(65,'P1-P3','','',0,56,'2018-12-12 18:16:53','2018-12-12 18:16:53','p1-p3',1,53,54,0,NULL,NULL),(66,'EDF','Projet EDF DIPDE','',0,90,'2019-03-01 15:05:28','2021-10-28 11:40:29','edf-dipde',1,10,11,0,NULL,NULL),(67,'REHAU','Projet REHAU. \r\nObjectif : Definition d\'un demonstrateur EUROMAP\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2019-07-10 15:02:32','2021-10-28 11:48:33','rehau',1,88,89,0,NULL,NULL),(68,'Maitrise Technologique','Project for OPC UAServer developement\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2019-10-07 09:29:22','2021-10-28 11:42:32','maitrise-technologique',1,38,39,0,NULL,NULL),(69,'JPB SYSTEME','Gestion du projet JPB SYSTEME\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2019-10-24 11:02:46','2021-10-28 11:47:31','jpb',1,76,77,0,NULL,NULL),(70,'Sames Kremlin','Gestion du projet Sames Kremlin\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2020-02-14 13:26:43','2021-10-28 11:46:06','sameskremlin',1,40,43,0,NULL,NULL),(71,'TechPap','Gestion du projet TECHPAP\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2020-06-09 15:30:24','2021-10-28 11:49:36','techpap',1,46,47,0,NULL,NULL),(72,'I-MC','Private project for the OpenOpcUa Titanium Sponsoring made by I-MC \r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,91,'2020-06-24 09:52:07','2021-10-28 11:51:40','imc',1,74,75,0,NULL,NULL),(73,'Vinci Construction','Private project for the OpenOpcUa Titanium Sponsoring made by Vinci Construction \r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2020-07-29 08:14:28','2021-10-28 11:44:12','vinciconstruction',1,58,59,0,NULL,NULL),(74,'OOUA_CERTIFICATION','Project for OOUA Certification ','',0,1,'2020-08-12 10:02:01','2020-08-12 10:02:14','oouacert',1,134,135,0,NULL,NULL),(75,'GFI-INETUM','Gestion du projet GFI\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit.\r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2020-09-04 13:30:38','2021-10-28 11:45:33','gfi',1,26,31,0,NULL,NULL),(76,'CNR','Gestion du projet CNR\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit.\r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2020-09-23 08:54:14','2021-10-28 11:39:34','cnr',1,6,7,0,NULL,NULL),(77,'EDM','Utilisation d\'OPC UA au sein d\'EDM\r\nhttps://www.electricitedemayotte.com/edm/ \r\n','',0,90,'2020-09-28 12:52:17','2021-10-28 11:40:46','edm',1,14,15,0,NULL,NULL),(78,'EMOTORS','Espace de travail pour le projet EMOTORS.\r\nCe projet recouvre le travail de modélisation des objets relatifs au procédé de fabrication et de leur instanciation.\r\n','',0,90,'2020-11-04 20:03:33','2021-10-28 11:41:00','emotors',1,16,23,0,NULL,NULL),(79,'Exelsius','Projet pour l\'intégration OPC UA sur le machine EXELSIUS\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit.\r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2020-12-02 15:16:38','2021-10-28 11:40:14','exelsius',1,24,25,0,NULL,NULL),(80,'AATV','Espace collaboratif du Groupe de Travail (GT) en charge de la réalisation d’un modèle de données pour les abattoirs et les ateliers de travail des viandes.\r\nLes aspects logistiques en amont (élevage et transfert des animaux jusqu’à l’entrée de l’abattoir) et logistique en aval (après conditionnement de la viande) feront l’objet d’autres spécifications techniques.\r\nCette spécification concerne ','',0,5,'2021-02-22 10:20:08','2021-02-22 10:20:08','aatv',1,100,101,0,NULL,NULL),(81,'CETIM','Gestion du projet CETIM\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit.\r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,NULL,'2021-02-24 12:48:43','2021-02-24 12:50:26','cetim',1,61,72,0,NULL,NULL),(82,'Modelisation','Private project for the OpenOpcUa OPC2530 trainee \r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associées.','',0,83,'2021-06-30 16:48:14','2021-08-19 09:41:53','modelisation',1,190,191,0,NULL,NULL),(83,'Training','General project for OPC UA Training','',0,NULL,'2021-08-19 09:40:54','2021-08-19 09:40:54','training',1,189,202,0,NULL,NULL),(84,'OPC2510','Private project for the OpenOpcUa OPC2510 trainee \r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associées.','',0,83,'2021-08-19 09:43:37','2021-08-19 09:43:37','opc2510',1,196,197,0,NULL,NULL),(85,'Fanuc','Positionnement Fanuc : \r\n* OPC UA, \r\n* Companion Specification, \r\n* Approche hard,\r\n* Approche soft,\r\n* Positionnement green Field & Brown Field,\r\n* Implémentations, \r\n* cas d’usage , …\r\n','',0,81,'2021-09-21 17:18:09','2021-09-21 17:20:06','fanuc',1,64,65,0,NULL,NULL),(86,'Siemens','Positionnement Siemens : \r\n* OPC UA, \r\n* Companion Specification, \r\n* Approche hard,\r\n* Approche soft,\r\n* Positionnement green Field & Brown Field,\r\n* Implémentations, \r\n* cas d’usage , …','',0,81,'2021-09-21 17:21:00','2021-09-21 17:21:00','siemens',1,68,69,0,NULL,NULL),(87,'Heidenhain','Positionnement Heidenhain : \r\n* OPC UA, \r\n* Companion Specification, \r\n* Approche hard,\r\n* Approche soft,\r\n* Positionnement green Field & Brown Field,\r\n* Implémentations, \r\n* cas d’usage , …','',0,81,'2021-09-21 17:22:19','2021-09-21 17:22:19','heidenhain',1,66,67,0,NULL,NULL),(88,'SYMOP','Gestion du projet CMOP\r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,81,'2021-10-18 16:27:26','2022-01-31 11:40:56','cmop',1,70,71,0,NULL,NULL),(89,'IMERYS','Gestion du projet IMERYS\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit.\r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2021-10-19 18:21:53','2021-10-28 11:41:17','imerys',1,32,37,0,NULL,NULL),(90,'Active Sponsors','','',0,NULL,'2021-10-28 11:38:30','2021-10-28 11:42:50','sponsors',1,1,60,0,NULL,NULL),(91,'Inactive Sponsors','','',0,NULL,'2021-10-28 11:46:43','2021-10-28 11:46:43','inactive-sponsors',1,73,98,0,NULL,NULL),(92,'Lixhe - Modelization ','','',0,89,'2021-11-15 15:32:43','2021-11-15 15:34:55','modelization',1,35,36,0,NULL,NULL),(93,'OPC2410','Introduction à OPC','',0,83,'2021-11-17 08:49:07','2021-11-17 08:49:07','opc2410',1,192,193,0,NULL,NULL),(94,'Tremery','Projet commun EMOTOR/INETUM pour suivi des incidents sur le site de tremery','',0,78,'2021-11-17 13:35:12','2021-11-17 13:35:12','tremery',1,21,22,0,NULL,NULL),(95,'FactoryLab','Espace collaboratif associé au projet Factory Lab','',0,81,'2022-01-03 09:00:07','2022-01-03 09:00:07','factorylab',1,62,63,0,NULL,NULL),(96,'Bontoux','Gestion du projet Bontoux\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit.\r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2022-01-13 17:11:24','2022-01-13 17:12:15','bontoux',1,4,5,0,NULL,NULL),(97,'VERKOR','VERKOR Management project\r\nREMINDER: The fork of the OpenOpcUa code base is prohibited.\r\nBy accessing this Redmine you unconditionally accept all the terms of use associated with it.','',0,90,'2022-01-18 17:29:44','2022-01-18 17:29:44','verkor',1,56,57,0,NULL,NULL),(98,'XiMulator','Modeling tool for OOUA','',0,15,'2022-02-16 17:29:35','2022-02-16 17:29:35','ximulator',1,153,154,0,NULL,NULL),(99,'OPC2620','Private project for the OpenOpcUa OPC2620 trainee \r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit. \r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associées.','',0,83,'2022-02-23 13:08:30','2022-02-23 13:08:30','opc2620',1,198,199,0,NULL,NULL),(100,'inetum_imerys','','',0,75,'2022-03-07 18:49:13','2022-03-07 18:49:13','inetum_imerys',1,29,30,1,NULL,NULL),(101,'inetum_emotors','','',0,75,'2022-03-07 18:50:01','2022-03-07 18:50:01','inetum_emotors',1,27,28,1,NULL,NULL),(102,'Sur mesure','Formations OPC UA sur mesure','',0,83,'2022-03-20 22:46:54','2022-03-20 22:46:54','sur-mesure',1,200,201,0,NULL,NULL),(103,'QUALAXY_OPTIMU','','',0,78,'2022-03-25 14:36:27','2022-03-25 14:36:27','qualaxy_optimu',1,17,18,1,NULL,NULL),(104,'EDITAG','Gestion du projet EDITAG\r\nRAPPEL : Le fork de la base de code OpenOpcUa est interdit.\r\nEn accédant a ce Redmine vous acceptez inconditionnellement toutes le conditions d\'utilisation qui lui sont associés.','',0,90,'2022-03-29 08:48:25','2022-03-29 08:48:25','editag',1,12,13,0,NULL,NULL),(105,'SamesCloud','','',0,70,'2022-05-30 14:16:15','2022-05-30 14:16:15','samescloud',1,41,42,0,NULL,NULL),(106,'OPC2430','Introduction à OPC UA et Ateliers','',0,83,'2022-07-04 08:35:39','2022-07-04 08:35:39','opc2430',1,194,195,0,NULL,NULL),(107,'SODEL','','',0,78,'2022-08-02 16:36:21','2022-08-02 16:36:21','sodel',1,19,20,0,NULL,NULL),(108,'IMERYS-PILOT','','',0,89,'2023-01-10 16:06:16','2023-01-10 16:06:16','imerys-pilot',1,33,34,0,NULL,NULL),(109,'OOUA Schemas','Schemas used in OOUA project','',0,1,'2023-01-25 11:07:32','2023-01-25 11:07:32','ooua-schemas',1,132,133,0,NULL,NULL);
/*!40000 ALTER TABLE `projects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `projects_trackers`
--
DROP TABLE IF EXISTS `projects_trackers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `projects_trackers` (
`project_id` int(11) NOT NULL DEFAULT '0',
`tracker_id` int(11) NOT NULL DEFAULT '0',
UNIQUE KEY `projects_trackers_unique` (`project_id`,`tracker_id`),
KEY `projects_trackers_project_id` (`project_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `projects_trackers`
--
LOCK TABLES `projects_trackers` WRITE;
/*!40000 ALTER TABLE `projects_trackers` DISABLE KEYS */;
INSERT INTO `projects_trackers` VALUES (1,1),(1,2),(1,3),(3,1),(3,2),(3,3),(4,1),(4,2),(4,3),(5,1),(5,2),(5,3),(6,1),(6,2),(6,3),(7,1),(7,2),(7,3),(8,1),(8,2),(8,3),(9,1),(9,2),(9,3),(10,1),(10,2),(10,3),(11,1),(11,2),(11,3),(12,1),(12,2),(12,3),(13,1),(13,2),(13,3),(14,1),(14,2),(14,3),(15,1),(15,2),(15,3),(16,1),(16,2),(16,3),(17,1),(17,2),(17,3),(18,1),(18,2),(18,3),(19,1),(19,2),(19,3),(20,1),(20,2),(20,3),(21,1),(21,2),(21,3),(23,1),(23,2),(23,3),(24,1),(24,2),(24,3),(25,1),(25,2),(25,3),(26,1),(26,2),(26,3),(28,1),(28,2),(28,3),(29,1),(29,2),(29,3),(30,1),(30,2),(30,3),(31,1),(31,2),(31,3),(32,1),(32,2),(32,3),(33,1),(33,2),(33,3),(34,1),(34,2),(34,3),(35,1),(35,2),(35,3),(40,1),(40,2),(40,3),(42,1),(42,2),(42,3),(43,1),(43,2),(43,3),(44,1),(44,2),(44,3),(45,1),(45,2),(45,3),(46,1),(46,2),(46,3),(47,1),(47,2),(47,3),(48,1),(48,2),(48,3),(49,1),(49,2),(49,3),(50,1),(50,2),(50,3),(51,1),(51,2),(51,3),(52,1),(52,2),(52,3),(53,1),(53,2),(53,3),(54,1),(54,2),(54,3),(55,1),(55,2),(55,3),(56,1),(56,2),(56,3),(57,1),(57,2),(57,3),(58,1),(58,2),(58,3),(59,1),(59,2),(59,3),(60,1),(60,2),(60,3),(61,1),(61,2),(61,3),(62,1),(62,2),(62,3),(63,1),(63,2),(63,3),(64,1),(64,2),(64,3),(65,1),(65,2),(65,3),(66,1),(66,2),(66,3),(67,1),(67,2),(67,3),(68,1),(68,2),(68,3),(69,1),(69,2),(69,3),(70,1),(70,2),(70,3),(71,1),(71,2),(71,3),(72,1),(72,2),(72,3),(73,1),(73,2),(73,3),(74,1),(74,2),(74,3),(75,1),(75,2),(75,3),(76,1),(76,2),(76,3),(77,1),(77,2),(77,3),(78,1),(78,2),(78,3),(79,1),(79,2),(79,3),(80,1),(80,2),(80,3),(81,1),(81,2),(81,3),(82,1),(82,2),(82,3),(83,1),(83,2),(83,3),(84,1),(84,2),(84,3),(85,1),(85,2),(85,3),(86,1),(86,2),(86,3),(87,1),(87,2),(87,3),(88,1),(88,2),(88,3),(89,1),(89,2),(89,3),(90,1),(90,2),(90,3),(91,1),(91,2),(91,3),(92,1),(92,2),(92,3),(93,1),(93,2),(93,3),(94,1),(94,2),(94,3),(95,1),(95,2),(95,3),(95,4),(95,5),(96,1),(96,2),(96,3),(96,4),(96,5),(97,1),(97,2),(97,3),(97,4),(97,5),(98,1),(98,2),(98,3),(98,4),(98,5),(99,1),(99,2),(99,3),(99,4),(99,5),(100,1),(100,2),(100,3),(100,4),(100,5),(101,1),(101,2),(101,3),(101,4),(101,5),(102,1),(102,2),(102,3),(102,4),(102,5),(103,1),(103,2),(103,3),(103,4),(103,5),(104,1),(104,2),(104,3),(104,4),(104,5),(105,1),(105,2),(105,3),(105,4),(105,5),(106,1),(106,2),(106,3),(106,4),(106,5),(107,1),(107,2),(107,3),(107,4),(107,5),(108,1),(108,2),(108,3),(108,4),(108,5),(109,1),(109,2),(109,3),(109,4),(109,5);
/*!40000 ALTER TABLE `projects_trackers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `queries`
--
DROP TABLE IF EXISTS `queries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) DEFAULT NULL,
`name` varchar(255) NOT NULL DEFAULT '',
`filters` text,
`user_id` int(11) NOT NULL DEFAULT '0',
`column_names` text,
`sort_criteria` text,
`group_by` varchar(255) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`visibility` int(11) DEFAULT '0',
`options` text,
PRIMARY KEY (`id`),
KEY `index_queries_on_project_id` (`project_id`),
KEY `index_queries_on_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `queries`
--
LOCK TABLES `queries` WRITE;
/*!40000 ALTER TABLE `queries` DISABLE KEYS */;
/*!40000 ALTER TABLE `queries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `queries_roles`
--
DROP TABLE IF EXISTS `queries_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queries_roles` (
`query_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
UNIQUE KEY `queries_roles_ids` (`query_id`,`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `queries_roles`
--
LOCK TABLES `queries_roles` WRITE;
/*!40000 ALTER TABLE `queries_roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `queries_roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `repositories`
--
DROP TABLE IF EXISTS `repositories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `repositories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL DEFAULT '0',
`url` varchar(255) NOT NULL DEFAULT '',
`login` varchar(60) DEFAULT '',
`password` varchar(255) DEFAULT '',
`root_url` varchar(255) DEFAULT '',
`type` varchar(255) DEFAULT NULL,
`path_encoding` varchar(64) DEFAULT NULL,
`log_encoding` varchar(64) DEFAULT NULL,
`extra_info` longtext,
`identifier` varchar(255) DEFAULT NULL,
`is_default` tinyint(1) DEFAULT '0',
`created_on` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_repositories_on_project_id` (`project_id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `repositories`
--
LOCK TABLES `repositories` WRITE;
/*!40000 ALTER TABLE `repositories` DISABLE KEYS */;
INSERT INTO `repositories` VALUES (2,3,'http://magneto/OpenOpcUa/uastackv1','Michel','382181MCI','http://magneto/OpenOpcUa/uastackv1','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(3,5,'http://magneto/OpenOpcUa/informationmodel','Michel','382181MCI','http://magneto/OpenOpcUa/informationmodel','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(4,6,'http://magneto/OpenOpcUa/bacnet','Michel','382181MCI','http://magneto/OpenOpcUa/bacnet','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(5,1,'http://magneto/OpenOpcUa','Michel','382181MCI',NULL,'Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(6,4,'http://magneto/OpenOpcUa/uastackv2','Michel','382181MCI',NULL,'Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(7,7,'http://magneto/OpenOpcUa/uastack','Michel','382181MCI',NULL,'Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(8,8,'http://magneto/OpenOpcUa/mape','Michel','382181MCI','http://magneto/OpenOpcUa/mape','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(9,9,'http://magneto/OpenOpcUa/isa95','Michel','382181MCI','http://magneto/OpenOpcUa/isa95','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(10,10,'http://magneto/OpenOpcUa/rte','Michel','382181MCI','http://magneto/OpenOpcUa/rte','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(11,13,'http://magneto/OpenOpcUa/opcua-cpp-quickserver','Michel','382181MCI','http://magneto/OpenOpcUa/opcua-cpp-quickserver','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(12,14,'http://magneto/OpenOpcUa/sharedlib','Michel','382181MCI','http://magneto/OpenOpcUa/sharedlib','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(13,16,'http://magneto/OpenOpcUa/xmlsaxparser','Michel','382181MCI','http://magneto/OpenOpcUa/xmlsaxparser','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(14,18,'http://magneto/OpenOpcUa/vpibinclient','Michel','382181MCI','http://magneto/OpenOpcUa/vpibinclient','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(17,19,'http://magneto/OpenOpcUa/vpi-operating-system','Michel','382181MCI','http://magneto/OpenOpcUa/vpi-operating-system','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(18,21,'http://magneto/OpenOpcUa/mfcquickclient','Michel','382181MCI','http://magneto/OpenOpcUa/mfcquickclient','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(20,23,'http://magneto/OpenOpcUa/vpimdbmaster/','Michel','382181MCI','http://magneto/OpenOpcUa/vpimdbmaster','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(21,26,'http://magneto/OpenOpcUa/qtquickclient','Michel','382181MCI','http://magneto/OpenOpcUa/qtquickclient','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(22,25,'http://magneto/OpenOpcUa/uaclientlib','Michel','382181MCI','http://magneto/OpenOpcUa/uaclientlib','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(23,24,'http://magneto/OpenOpcUa/vpimca166','Michel','382181MCI','http://magneto/OpenOpcUa/vpimca166','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(24,28,'http://magneto/OpenOpcUa/vpiacqctrl','Michel','382181MCI','http://magneto/OpenOpcUa/vpiacqctrl','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(25,17,'http://magneto/OpenOpcUa/vpis','Michel','382181MCI','http://magneto/OpenOpcUa/vpis','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(26,29,'http://magneto/OpenOpcUa/vpimensor','','',NULL,'Repository::Subversion',NULL,NULL,NULL,NULL,1,NULL),(27,30,'http://magneto/OpenOpcUa/vpimca527','Michel','382181MCI','http://magneto/OpenOpcUa/vpimca527','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(28,31,'http://magneto/OpenOpcUa/vpinull','Michel','382181MCI','http://magneto/OpenOpcUa/vpinull','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(29,32,'http://magneto/OpenOpcUa/openopcuaquickclient','Michel','382181MCI','http://magneto/OpenOpcUa/openopcuaquickclient','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(30,33,'http://magneto/OpenOpcUa/deliver','Michel','382181MCI','http://magneto/OpenOpcUa/deliver','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(31,34,'http://magneto/OpenOpcUa/openopcuavpilibrary','Michel','382181MCI','http://magneto/OpenOpcUa/openopcuavpilibrary','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(32,35,'http://magneto/OpenOpcUa/demo','Michel','382181MCI','http://magneto/OpenOpcUa/demo','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(38,40,'http://magneto/OpenOpcUa/vfis','Michel','382181MCI','http://magneto/OpenOpcUa/vfis','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(39,42,'http://magneto/OpenOpcUa/openopcuaclientsdk','Michel','382181MCI','http://magneto/OpenOpcUa/openopcuaclientsdk','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(40,43,'http://magneto/OpenOpcUa/coreserver','Michel','382181MCI','http://magneto/OpenOpcUa/coreserver','Repository::Subversion',NULL,NULL,'--- {}\n\n','',1,NULL),(41,44,'http://magneto/OpenOpcUa/openopcua-v2','Michel','382181MCI','http://magneto/OpenOpcUa/openopcua-v2','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(42,45,'http://magneto/OpenOpcUa/vpicomda','Michel','382181MCI','http://magneto/OpenOpcUa/vpicomda','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(43,47,'http://magneto/OpenOpcUa/openopcuaconfigmanager','Michel','382181MCI','http://magneto/OpenOpcUa/openopcuaconfigmanager','Repository::Subversion',NULL,NULL,'--- {}\n\n',NULL,1,NULL),(44,43,'http://www.openopcua.org/OpenOpcUa/ooua','Michel','382181*McI','','Repository::Subversion',NULL,NULL,NULL,'ooua',0,'2022-05-26 23:38:33'),(46,78,'http://magneto/OpenOpcUa/Emotors','Michel','382181*McI','http://magneto/OpenOpcUa/Emotors','Repository::Subversion',NULL,NULL,NULL,'emotors',1,'2022-06-03 20:55:56'),(48,109,'http://www.openopcua.org/OpenOpcUa/ooua-schemas','Michel','382181*McI','','Repository::Subversion',NULL,NULL,NULL,'',1,'2023-01-25 10:12:58');
/*!40000 ALTER TABLE `repositories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roles`
--
DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `roles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`position` int(11) DEFAULT NULL,
`assignable` tinyint(1) DEFAULT '1',
`builtin` int(11) NOT NULL DEFAULT '0',
`permissions` text,
`issues_visibility` varchar(30) NOT NULL DEFAULT 'default',
`users_visibility` varchar(30) NOT NULL DEFAULT 'all',
`time_entries_visibility` varchar(30) NOT NULL DEFAULT 'all',
`all_roles_managed` tinyint(1) NOT NULL DEFAULT '1',
`settings` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roles`
--
LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'Non member',1,1,1,'---\n- :add_messages\n- :view_calendar\n- :view_documents\n- :view_files\n- :view_gantt\n- :view_issues\n- :add_issues\n- :add_issue_notes\n- :save_queries\n- :comment_news\n- :view_time_entries\n- :view_wiki_pages\n- :view_wiki_edits\n- :view_news\n- :view_messages\n','default','all','all',1,NULL),(2,'Anonymous',2,1,2,'---\n- :view_calendar\n- :view_documents\n- :view_files\n- :view_gantt\n- :view_issues\n- :browse_repository\n- :view_changesets\n- :view_time_entries\n- :view_wiki_pages\n- :view_wiki_edits\n- :view_news\n- :view_messages\n','default','all','all',1,NULL),(3,'Manager ',3,1,0,'---\n- :add_project\n- :edit_project\n- :select_project_modules\n- :manage_members\n- :manage_versions\n- :add_subprojects\n- :manage_boards\n- :add_messages\n- :edit_messages\n- :edit_own_messages\n- :delete_messages\n- :delete_own_messages\n- :view_calendar\n- :view_documents\n- :manage_files\n- :view_files\n- :view_gantt\n- :manage_categories\n- :view_issues\n- :add_issues\n- :edit_issues\n- :manage_issue_relations\n- :manage_subtasks\n- :set_issues_private\n- :set_own_issues_private\n- :add_issue_notes\n- :edit_issue_notes\n- :edit_own_issue_notes\n- :move_issues\n- :delete_issues\n- :manage_public_queries\n- :save_queries\n- :view_issue_watchers\n- :add_issue_watchers\n- :delete_issue_watchers\n- :manage_news\n- :comment_news\n- :manage_repository\n- :browse_repository\n- :view_changesets\n- :commit_access\n- :log_time\n- :view_time_entries\n- :edit_time_entries\n- :edit_own_time_entries\n- :manage_project_activities\n- :manage_wiki\n- :rename_wiki_pages\n- :delete_wiki_pages\n- :view_wiki_pages\n- :export_wiki_pages\n- :view_wiki_edits\n- :edit_wiki_pages\n- :delete_wiki_pages_attachments\n- :protect_wiki_pages\n- :add_documents\n- :edit_documents\n- :delete_documents\n- :view_news\n- :view_messages\n','all','all','all',1,NULL),(4,'Développeur ',4,1,0,'---\n- :manage_versions\n- :add_messages\n- :edit_own_messages\n- :view_calendar\n- :view_documents\n- :manage_files\n- :view_files\n- :view_gantt\n- :manage_categories\n- :view_issues\n- :add_issues\n- :edit_issues\n- :manage_issue_relations\n- :manage_subtasks\n- :add_issue_notes\n- :save_queries\n- :comment_news\n- :browse_repository\n- :view_changesets\n- :commit_access\n- :log_time\n- :view_time_entries\n- :delete_wiki_pages\n- :view_wiki_pages\n- :view_wiki_edits\n- :edit_wiki_pages\n- :view_news\n- :view_messages\n','default','all','all',1,NULL),(5,'Rapporteur ',5,1,0,'---\n- :save_queries\n- :view_messages\n- :add_messages\n- :edit_own_messages\n- :view_calendar\n- :view_files\n- :manage_files\n- :view_gantt\n- :view_issues\n- :add_issues\n- :edit_issues\n- :add_issue_notes\n- :view_news\n- :comment_news\n- :view_wiki_pages\n- :view_wiki_edits\n','default','all','all',1,'--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\npermissions_all_trackers: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n view_issues: \'1\'\n add_issues: \'1\'\n edit_issues: \'1\'\n add_issue_notes: \'1\'\n delete_issues: \'1\'\npermissions_tracker_ids: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n view_issues: []\n add_issues: []\n edit_issues: []\n add_issue_notes: []\n delete_issues: []\n'),(6,'Observateur',6,1,0,'---\n- :view_messages\n- :add_messages\n- :edit_own_messages\n- :view_calendar\n- :view_files\n- :view_gantt\n- :view_issues\n- :add_issues\n- :add_issue_notes\n- :edit_own_issue_notes\n- :view_news\n- :comment_news\n- :view_wiki_pages\n','default','all','all',1,'--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\npermissions_all_trackers: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n view_issues: \'1\'\n add_issues: \'1\'\n edit_issues: \'1\'\n add_issue_notes: \'1\'\n delete_issues: \'1\'\npermissions_tracker_ids: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n view_issues: []\n add_issues: []\n edit_issues: []\n add_issue_notes: []\n delete_issues: []\n'),(7,'Actif sponsors',7,1,0,'---\n- :save_queries\n- :view_messages\n- :add_messages\n- :view_calendar\n- :view_documents\n- :view_files\n- :view_gantt\n- :view_issues\n- :add_issues\n- :add_issue_notes\n- :view_news\n- :comment_news\n- :view_time_entries\n- :view_wiki_pages\n- :view_wiki_edits\n','default','all','all',1,'--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\npermissions_all_trackers: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n view_issues: \'1\'\n add_issues: \'1\'\n edit_issues: \'1\'\n add_issue_notes: \'1\'\n delete_issues: \'1\'\npermissions_tracker_ids: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n view_issues: []\n add_issues: []\n edit_issues: []\n add_issue_notes: []\n delete_issues: []\n'),(8,'Inactif sponsors',8,1,0,'---\n- :add_messages\n- :view_calendar\n- :view_documents\n- :view_gantt\n- :view_issues\n- :add_issues\n- :add_issue_notes\n- :save_queries\n- :comment_news\n- :view_time_entries\n- :view_wiki_pages\n- :view_wiki_edits\n- :view_news\n- :view_messages\n','default','all','all',1,NULL);
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roles_managed_roles`
--
DROP TABLE IF EXISTS `roles_managed_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `roles_managed_roles` (
`role_id` int(11) NOT NULL,
`managed_role_id` int(11) NOT NULL,
UNIQUE KEY `index_roles_managed_roles_on_role_id_and_managed_role_id` (`role_id`,`managed_role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roles_managed_roles`
--
LOCK TABLES `roles_managed_roles` WRITE;
/*!40000 ALTER TABLE `roles_managed_roles` DISABLE KEYS */;
/*!40000 ALTER TABLE `roles_managed_roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `schema_migrations`
--
DROP TABLE IF EXISTS `schema_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `schema_migrations` (
`version` varchar(255) NOT NULL,
UNIQUE KEY `unique_schema_migrations` (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `schema_migrations`
--
LOCK TABLES `schema_migrations` WRITE;
/*!40000 ALTER TABLE `schema_migrations` DISABLE KEYS */;
INSERT INTO `schema_migrations` VALUES ('1'),('10'),('100'),('101'),('102'),('103'),('104'),('105'),('106'),('107'),('108'),('11'),('12'),('13'),('14'),('15'),('16'),('17'),('18'),('19'),('2'),('20'),('20090214190337'),('20090312172426'),('20090312194159'),('20090318181151'),('20090323224724'),('20090401221305'),('20090401231134'),('20090403001910'),('20090406161854'),('20090425161243'),('20090503121501'),('20090503121505'),('20090503121510'),('20090614091200'),('20090704172350'),('20090704172355'),('20090704172358'),('20091010093521'),('20091017212227'),('20091017212457'),('20091017212644'),('20091017212938'),('20091017213027'),('20091017213113'),('20091017213151'),('20091017213228'),('20091017213257'),('20091017213332'),('20091017213444'),('20091017213536'),('20091017213642'),('20091017213716'),('20091017213757'),('20091017213835'),('20091017213910'),('20091017214015'),('20091017214107'),('20091017214136'),('20091017214236'),('20091017214308'),('20091017214336'),('20091017214406'),('20091017214440'),('20091017214519'),('20091017214611'),('20091017214644'),('20091017214720'),('20091017214750'),('20091025163651'),('20091108092559'),('20091114105931'),('20091123212029'),('20091205124427'),('20091220183509'),('20091220183727'),('20091220184736'),('20091225164732'),('20091227112908'),('20100129193402'),('20100129193813'),('20100221100219'),('20100313132032'),('20100313171051'),('20100705164950'),('20100819172912'),('20101104182107'),('20101107130441'),('20101114115114'),('20101114115359'),('20110220160626'),('20110223180944'),('20110223180953'),('20110224000000'),('20110226120112'),('20110226120132'),('20110227125750'),('20110228000000'),('20110228000100'),('20110401192910'),('20110408103312'),('20110412065600'),('20110511000000'),('20110902000000'),('20111201201315'),('20120115143024'),('20120115143100'),('20120115143126'),('20120127174243'),('20120205111326'),('20120223110929'),('20120301153455'),('20120422150750'),('20120705074331'),('20120707064544'),('20120714122000'),('20120714122100'),('20120714122200'),('20120731164049'),('20120930112914'),('20121026002032'),('20121026003537'),('20121209123234'),('20121209123358'),('20121213084931'),('20130110122628'),('20130201184705'),('20130202090625'),('20130207175206'),('20130207181455'),('20130215073721'),('20130215111127'),('20130215111141'),('20130217094251'),('20130602092539'),('20130710182539'),('20130713104233'),('20130713111657'),('20130729070143'),('20130911193200'),('20131004113137'),('20131005100610'),('20131124175346'),('20131210180802'),('20131214094309'),('20131215104612'),('20131218183023'),('20140228130325'),('20140903143914'),('20140920094058'),('20141029181752'),('20141029181824'),('20141109112308'),('20141122124142'),('20150113194759'),('20150113211532'),('20150113213922'),('20150113213955'),('20150208105930'),('20150510083747'),('20150525103953'),('20150526183158'),('20150528084820'),('20150528092912'),('20150528093249'),('20150725112753'),('20150730122707'),('20150730122735'),('20150921204850'),('20150921210243'),('20151020182334'),('20151020182731'),('20151021184614'),('20151021185456'),('20151021190616'),('20151024082034'),('20151025072118'),('20151031095005'),('20160404080304'),('20160416072926'),('20160529063352'),('20161001122012'),('20161002133421'),('20161010081301'),('20161010081528'),('20161010081600'),('20161126094932'),('20161220091118'),('20170207050700'),('20170302015225'),('20170309214320'),('20170320051650'),('20170418090031'),('20170419144536'),('20170723112801'),('20180501132547'),('20180913072918'),('20180923082945'),('20180923091603'),('20190315094151'),('20190315102101'),('20190510070108'),('20190620135549'),('21'),('22'),('23'),('24'),('25'),('26'),('27'),('28'),('29'),('3'),('30'),('31'),('32'),('33'),('34'),('35'),('36'),('37'),('38'),('39'),('4'),('40'),('41'),('42'),('43'),('44'),('45'),('46'),('47'),('48'),('49'),('5'),('50'),('51'),('52'),('53'),('54'),('55'),('56'),('57'),('58'),('59'),('6'),('60'),('61'),('62'),('63'),('64'),('65'),('66'),('67'),('68'),('69'),('7'),('70'),('71'),('72'),('73'),('74'),('75'),('76'),('77'),('78'),('79'),('8'),('80'),('81'),('82'),('83'),('84'),('85'),('86'),('87'),('88'),('89'),('9'),('90'),('91'),('92'),('93'),('94'),('95'),('96'),('97'),('98'),('99');
/*!40000 ALTER TABLE `schema_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `settings`
--
DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`value` text,
`updated_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_settings_on_name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `settings`
--
LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
INSERT INTO `settings` VALUES (1,'activity_days_default','30','2011-12-19 02:30:20'),(2,'diff_max_lines_displayed','1500','2011-12-19 02:30:20'),(3,'app_title','OpenOpcUa','2011-12-19 02:30:20'),(4,'attachment_max_size','100000','2015-04-01 13:37:57'),(5,'host_name','www.openopcua.org/redmine','2020-12-21 11:28:24'),(6,'repositories_encodings','','2011-12-19 02:30:20'),(7,'wiki_compression','','2011-12-19 02:30:20'),(8,'protocol','https','2021-01-02 00:09:19'),(9,'file_max_size_displayed','512','2011-12-19 02:30:20'),(10,'text_formatting','textile','2011-12-19 02:30:20'),(11,'feeds_limit','15','2011-12-19 02:30:20'),(12,'per_page_options','25,50,100','2011-12-19 02:30:20'),(13,'cache_formatted_text','0','2011-12-19 02:30:20'),(14,'welcome_text','*Bienvenue le portail collaboratif du projet OpenOpcUa.*\r\nPour l\'accès au code source nous vous conseillons :\r\n* Sous Windows http://ankhsvn.open.collab.net/ ou http://tortoisesvn.net/\r\n* Sous Linux http://tortoisesvn.net/\r\n\r\n*Welcome on the OpenOpcUa project forge*\r\nTo access the source we advice you \r\n* Using Windows http://ankhsvn.open.collab.net/ ou http://tortoisesvn.net/\r\n* Using Linux http://tortoisesvn.net/','2012-01-18 18:39:17'),(15,'time_format','','2012-01-07 01:22:45'),(16,'ui_theme','classic','2020-12-20 23:53:08'),(17,'default_language','en','2012-01-11 08:48:48'),(18,'start_of_week','1','2012-01-07 01:22:45'),(19,'gravatar_default','wavatar','2012-01-07 01:22:45'),(20,'date_format','','2012-01-07 01:22:45'),(21,'user_format','firstname_lastname','2012-01-07 01:22:45'),(22,'gravatar_enabled','1','2012-01-07 01:22:45'),(23,'self_registration','1','2012-01-07 01:23:16'),(24,'openid','0','2012-01-07 01:23:16'),(25,'autologin','1','2020-12-20 02:32:26'),(26,'rest_api_enabled','0','2020-12-03 17:37:10'),(27,'password_min_length','8','2017-06-20 09:25:47'),(28,'lost_password','1','2012-01-07 01:23:16'),(29,'login_required','1','2020-12-20 03:28:33'),(30,'new_project_user_role_id','3','2012-01-07 01:23:36'),(31,'default_projects_public','0','2020-07-26 13:40:50'),(32,'sequential_project_identifiers','0','2012-01-07 01:23:36'),(33,'default_projects_modules','--- \n- issue_tracking\n- time_tracking\n- news\n- documents\n- files\n- wiki\n- repository\n- boards\n- calendar\n- gantt\n','2012-01-07 01:23:36'),(34,'issue_group_assignment','1','2012-01-07 01:24:03'),(35,'default_issue_start_date_to_creation_date','1','2012-01-07 01:24:03'),(36,'issues_export_limit','500','2012-01-07 01:24:03'),(37,'issue_list_default_columns','--- \n- tracker\n- status\n- priority\n- subject\n- assigned_to\n- updated_on\n- due_date\n- done_ratio\n','2012-01-07 01:24:03'),(38,'gantt_items_limit','500','2012-01-07 01:24:03'),(39,'issue_done_ratio','issue_field','2012-01-07 01:24:03'),(40,'display_subprojects_issues','1','2012-01-07 01:24:03'),(41,'cross_project_issue_relations','1','2012-01-07 01:24:03'),(42,'default_notification_option','all','2012-01-13 17:48:30'),(43,'mail_from','michel@openopcua.org','2020-07-25 20:49:50'),(44,'bcc_recipients','1','2012-01-07 01:26:27'),(45,'emails_header','','2012-01-07 01:26:27'),(46,'notified_events','--- \n- issue_added\n- issue_updated\n- issue_note_added\n- issue_status_updated\n- issue_priority_updated\n- news_added\n- news_comment_added\n- document_added\n- file_added\n- message_posted\n- wiki_content_added\n- wiki_content_updated\n','2012-01-07 01:26:27'),(47,'plain_text_mail','0','2012-01-07 01:26:27'),(48,'emails_footer','You have received this notification because you have either subscribed to it, or are involved in it.\r\nTo change your notification preferences, please click here: http://www.OpenOpcUa.org/redmine/my/account','2014-03-22 02:28:49'),(49,'repository_log_display_limit','100','2012-01-07 01:27:10'),(50,'commit_logtime_enabled','1','2012-01-07 01:27:10'),(52,'autofetch_changesets','1','2012-01-07 01:27:10'),(54,'enabled_scm','--- \n- Subversion\n- Filesystem\n','2020-07-26 13:34:57'),(55,'sys_api_enabled','1','2012-01-11 08:44:14'),(56,'commit_ref_keywords','refs,references,IssueID','2012-01-07 01:27:10'),(58,'commit_logtime_activity_id','0','2012-01-10 01:34:16'),(59,'sys_api_key','','2012-01-12 17:09:09'),(60,'commit_update_keywords','---\n- keywords: fixes,closes\n status_id: \'1\'\n done_ratio: \'100\'\n','2020-11-25 21:01:47'),(61,'jsonp_enabled','0','2020-12-03 16:10:57'),(62,'show_custom_fields_on_registration','1','2020-12-03 16:13:39'),(63,'password_required_char_classes','--- []\n','2020-12-03 16:13:39'),(64,'password_max_age','0','2020-12-03 16:13:39'),(65,'session_lifetime','480','2020-12-03 16:13:39'),(66,'session_timeout','240','2020-12-03 16:13:39'),(67,'search_results_per_page','10','2020-12-20 11:28:53'),(68,'force_default_language_for_anonymous','0','2020-12-20 19:28:57'),(69,'force_default_language_for_loggedin','0','2020-12-20 19:28:57'),(70,'timespan_format','decimal','2020-12-20 19:28:57'),(71,'thumbnails_enabled','1','2020-12-20 19:28:57'),(72,'thumbnails_size','100','2020-12-20 19:28:57'),(73,'new_item_menu_tab','2','2020-12-20 19:28:57'),(74,'max_additional_emails','5','2022-08-29 14:12:37'),(75,'unsubscribe','0','2022-08-29 14:12:37'),(76,'default_users_hide_mail','1','2022-08-29 14:12:37'),(77,'default_users_time_zone','Paris','2022-08-29 14:12:37');
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_entries`
--
DROP TABLE IF EXISTS `time_entries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_entries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL,
`author_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
`issue_id` int(11) DEFAULT NULL,
`hours` float NOT NULL,
`comments` varchar(1024) DEFAULT NULL,
`activity_id` int(11) NOT NULL,
`spent_on` date NOT NULL,
`tyear` int(11) NOT NULL,
`tmonth` int(11) NOT NULL,
`tweek` int(11) NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `time_entries_project_id` (`project_id`),
KEY `time_entries_issue_id` (`issue_id`),
KEY `index_time_entries_on_activity_id` (`activity_id`),
KEY `index_time_entries_on_user_id` (`user_id`),
KEY `index_time_entries_on_created_on` (`created_on`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_entries`
--
LOCK TABLES `time_entries` WRITE;
/*!40000 ALTER TABLE `time_entries` DISABLE KEYS */;
INSERT INTO `time_entries` VALUES (1,3,3,2,3,1,'Evolution faites, en attente de validation par Michel Condemine',9,'2012-01-19',2012,1,3,'2012-01-19 10:31:49','2012-01-19 10:31:49'),(2,3,3,2,3,1,'Vérification impact pour windows et validation par Michel Condemine',9,'2012-01-19',2012,1,3,'2012-01-19 11:57:43','2012-01-19 11:57:43'),(3,3,1,1,5,0.0833333,'',9,'2012-03-13',2012,3,11,'2012-03-13 10:22:06','2012-03-13 10:22:06'),(4,49,1,1,91,4,'',9,'2016-10-10',2016,10,41,'2016-10-10 18:10:05','2016-10-10 18:10:05'),(5,51,1,1,143,8,'',9,'2017-09-18',2017,9,38,'2017-09-18 19:58:33','2017-09-18 19:58:33');
/*!40000 ALTER TABLE `time_entries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tokens`
--
DROP TABLE IF EXISTS `tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tokens` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT '0',
`action` varchar(30) NOT NULL DEFAULT '',
`value` varchar(40) NOT NULL DEFAULT '',
`created_on` datetime NOT NULL,
`updated_on` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `tokens_value` (`value`),
KEY `index_tokens_on_user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6272 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tokens`
--
LOCK TABLES `tokens` WRITE;
/*!40000 ALTER TABLE `tokens` DISABLE KEYS */;
INSERT INTO `tokens` VALUES (2,1,'feeds','a6b910af537585ddeb0106dea3d0b0e1ebf2d058','2011-12-19 02:25:13','2011-12-19 01:25:13'),(7,4,'register','691b0bbfe88ff1a1ed8558b3c50c4c9f798ecc41','2012-01-09 19:45:05','2012-01-09 18:45:05'),(11,4,'feeds','fb7b00276cf7ff811e3ed0b929f0455d035d244d','2012-01-10 10:44:22','2012-01-10 09:44:22'),(12,5,'register','9b31d4f6005808e46bfcf3eae376399bf549060f','2012-01-13 17:26:39','2012-01-13 16:26:39'),(14,5,'feeds','953aadf05aff0e868facb97b5cdca99fd9d094ff','2012-01-13 17:36:14','2012-01-13 16:36:14'),(17,6,'feeds','03880de8074768a6d8478db0a7afdf33732da0a6','2012-01-13 17:51:28','2012-01-13 16:51:28'),(21,8,'register','6d8539109d080637dbc2f0b7914d694bc63e38d5','2012-01-18 17:07:43','2012-01-18 16:07:43'),(22,5,'recovery','34949ecd669a1f91b1a917b444a59aafcfbee898','2012-01-18 18:04:07','2012-01-18 17:04:07'),(28,10,'autologin','99754fe2cf9419f5c24210bb71cce600ce4eeb49','2012-01-27 14:14:28','2012-01-27 13:14:28'),(30,10,'feeds','2466c80060f227d1d44915c4b02c3dc8e5b2ee11','2012-01-27 14:14:29','2012-01-27 13:14:29'),(46,11,'feeds','82a121dbb18f0cd029a855df27cb0d19432d419b','2012-02-14 09:59:29','2012-02-14 08:59:29'),(50,12,'feeds','e0078b04c0819a7c6aae0debb51fe28fd5358727','2012-02-15 14:45:11','2012-02-15 13:45:11'),(55,13,'feeds','78d165ff2d7087ea7fbb5e056a091d782f722092','2012-02-22 10:12:56','2012-02-22 09:12:56'),(64,16,'feeds','0425db8a214ce8d3b4f5e327be8a841c95ca2ffe','2012-02-24 15:45:52','2012-02-24 14:45:52'),(80,19,'feeds','ebf2adee67b7ce7fdc8a18fb8624d5a2d8015dec','2012-03-05 17:23:30','2012-03-05 16:23:30'),(89,22,'register','b1b7b4dcb20cd7b9221907616a098af50cb8842e','2012-03-09 03:52:30','2012-03-09 02:52:30'),(104,8,'feeds','4574722c812b5185c90aadf0de93398d00479a3e','2012-03-15 18:52:19','2012-03-15 17:52:19'),(106,25,'register','f6c10196e50e803ae65991f492dac7338ce2a59e','2012-03-18 09:27:07','2012-03-18 08:27:07'),(108,25,'feeds','32718f4822b6e8ed10993374374325df04dd09c4','2012-03-18 09:28:14','2012-03-18 08:28:14'),(121,27,'feeds','b2e9c9fe290d9ee5d22c8b7416f89aa8c3e4db24','2012-03-23 13:42:48','2012-03-23 12:42:48'),(134,29,'feeds','3b54d328d3abb78527f040c1b920daa9fba68a1d','2012-04-04 21:48:59','2012-04-04 19:48:59'),(139,30,'feeds','97bbd33af5e3ad64f8555f5941ee9c298322e644','2012-04-05 15:41:07','2012-04-05 13:41:07'),(145,31,'feeds','64e91c1e09a86f70e54ed37883a89e92954d3dae','2012-04-07 16:42:47','2012-04-07 14:42:47'),(155,33,'feeds','7b696130243eb65d70c7661d5ad7ad24ae79dd9e','2012-04-21 11:19:30','2012-04-21 09:19:30'),(164,34,'feeds','52ef22a6f4df02f3d5cb78995f4e396a96534720','2012-05-04 06:02:53','2012-05-04 04:02:53'),(169,36,'feeds','24596eec18b49538f89fd6030350cb221e041e82','2012-05-07 09:09:42','2012-05-07 07:09:42'),(192,40,'feeds','1a8ecb3e6203b00d5f50cb00caa5eae13a37fc54','2012-06-18 13:49:36','2012-06-18 11:49:36'),(195,41,'feeds','f81c19cf645b1320c71f8d531aba5f58bccf3449','2012-06-18 17:15:40','2012-06-18 15:15:40'),(196,41,'autologin','54f6fe722319395feeb0c967068568f397e9812c','2012-06-18 18:55:30','2012-06-18 16:55:30'),(200,42,'feeds','d4d780e7fcc0f8c5a567182629413af403c8cf7a','2012-06-20 16:11:01','2012-06-20 14:11:01'),(206,44,'feeds','6105f7d5965daa88019592fd562ddab5c0c204da','2012-06-22 20:53:54','2012-06-22 18:53:54'),(208,45,'autologin','083fa47774f4993d528868c9a81c6d60dd0e80c1','2012-06-23 23:10:00','2012-06-23 21:10:00'),(210,45,'feeds','223f772959af94b4c8023b85254bac5112a6b51f','2012-06-23 23:10:00','2012-06-23 21:10:00'),(215,46,'feeds','b5c2b15a8234a821080e79591ca61e69d48511d9','2012-06-26 11:24:26','2012-06-26 09:24:26'),(218,47,'feeds','dad9c84700c84328cbb166a301990b39a9694b3b','2012-06-27 09:48:59','2012-06-27 07:48:59'),(221,48,'feeds','af90b5c51564334c4ff0efe6c25fb48e0ddda921','2012-06-27 09:51:21','2012-06-27 07:51:21'),(237,52,'autologin','da78b21c9366c49ad21386f96c71a6650292cd5f','2012-07-06 07:09:46','2012-07-06 05:09:46'),(239,52,'feeds','5f9b82c32588011838eff993cd12d0549e605a5d','2012-07-06 07:09:46','2012-07-06 05:09:46'),(242,53,'feeds','5460ece41b2d6d5cb7ba8d8e4f93ca4c4c49e7ae','2012-07-06 10:35:53','2012-07-06 08:35:53'),(245,54,'feeds','0c0101384f5fd9b7d661583c0ebf2f091477ad66','2012-07-09 19:54:54','2012-07-09 17:54:54'),(248,55,'feeds','5e9748500476f517358d6e0f98ac87c56036e410','2012-07-09 22:58:03','2012-07-09 20:58:03'),(251,56,'feeds','6dc4373a23437cbbeec61fa8ff0c719b8ededef7','2012-07-10 15:52:36','2012-07-10 13:52:36'),(255,57,'feeds','68cbda9748d19e16844630c8e2cd70f3cd68716c','2012-07-24 15:38:30','2012-07-24 13:38:30'),(264,58,'autologin','9cbe46e0d457b1d276d55ff6f4f21c18cf37d6a5','2012-08-09 10:50:59','2012-08-09 08:50:59'),(266,58,'feeds','04f2dfa746be449ab73aadf4b5590003bd0a3e54','2012-08-09 10:50:59','2012-08-09 08:50:59'),(273,60,'feeds','14773e45eb51089b6093c368472ef3ec68cea1f7','2012-08-10 08:46:57','2012-08-10 06:46:57'),(278,61,'feeds','ff0a86d7a7bef40a53875da4b9db2dbc9654dcf0','2012-08-14 12:52:56','2012-08-14 10:52:56'),(282,62,'feeds','51a1bee0c735a987f72c96574bbaee2716d4017e','2012-08-14 17:26:35','2012-08-14 15:26:35'),(286,63,'feeds','65125a4bb6fd90ac06b2fa9cd9eaf87f66e8d7d3','2012-08-16 23:38:42','2012-08-16 21:38:42'),(291,64,'feeds','b9d8364e90184e86aa5e72512b5f910568028a07','2012-08-24 23:53:59','2012-08-24 21:53:59'),(294,65,'feeds','302b940b64a91776e099139932f70012c8eb7a82','2012-08-27 13:50:44','2012-08-27 11:50:44'),(297,66,'feeds','335c2382d91353b02620489b0655dc70e84acaf3','2012-08-27 14:31:41','2012-08-27 12:31:41'),(298,65,'autologin','726778e14904a007fb96b495492c8287a84dab3a','2012-08-27 18:06:05','2012-08-27 16:06:05'),(306,69,'feeds','cdee8e4a47446666c1f9b80ba6ab58a8e8348a23','2012-08-28 10:11:50','2012-08-28 08:11:50'),(308,68,'feeds','ef3b666378cae6f68a9ef41cd7237ff2246854cc','2012-08-28 10:12:57','2012-08-28 08:12:57'),(312,70,'feeds','7305bab2e0547a35c36fb414af272b96c2edf084','2012-08-28 10:46:17','2012-08-28 08:46:17'),(313,71,'autologin','43e689fb45b1af70d58eb2e5824685ce1d308bb5','2012-08-28 10:52:25','2012-08-28 08:52:25'),(315,71,'feeds','b4c374c4d41ac78dd130fa1b361d6d4934a32f98','2012-08-28 10:52:26','2012-08-28 08:52:26'),(318,72,'feeds','12f8c540247f7c6791b858048f1a93cc7c54e861','2012-08-28 11:05:04','2012-08-28 09:05:04'),(320,73,'autologin','f57ea98bd80dba3c93b4fcc4b5586ae3222119c8','2012-08-28 11:22:05','2012-08-28 09:22:05'),(322,73,'feeds','3c661eb08f6a77c4399f4a5118bf06f0acd45d49','2012-08-28 11:22:06','2012-08-28 09:22:06'),(323,70,'autologin','181e6d5e1bee88d754f5757e09bbfb679526b2e9','2012-08-28 14:51:54','2012-08-28 12:51:54'),(326,74,'feeds','be9199485025daba73b9b7ff7a325fe9b6cb26a0','2012-08-29 10:55:05','2012-08-29 08:55:05'),(329,75,'feeds','bf75ccd0df9c4ec005addf15cde2bf613037365e','2012-08-29 11:05:47','2012-08-29 09:05:47'),(335,77,'feeds','43ab6856f1703f99f6c5ce3e7733a5e1dc9ad848','2012-08-30 02:33:03','2012-08-30 00:33:03'),(338,78,'feeds','a8a0e2b8353958579976234181e33566be760633','2012-09-03 14:31:50','2012-09-03 12:31:50'),(350,80,'feeds','009f9b13f771f8ad0e9422deed88ac4f3c6b5fef','2012-09-10 04:40:59','2012-09-10 02:40:59'),(357,82,'feeds','1f8dd690edc1e69cda3996de5d5fe18ddaffbd84','2012-09-12 11:27:41','2012-09-12 09:27:41'),(362,83,'feeds','da3cedc28747f2d81c11eb5e536c3bc6f500ec6c','2012-09-20 09:23:50','2012-09-20 07:23:50'),(365,84,'feeds','286e4dbaf7a1c6bd73b2d0cc12e10f353dfab20d','2012-09-20 09:40:24','2012-09-20 07:40:24'),(369,85,'feeds','6ddebc85f3c93bf724bfb707a85abf3e391d564f','2012-09-20 15:58:44','2012-09-20 13:58:44'),(372,86,'feeds','7bbdbf1819b89591490caae65444549a74f2c1cf','2012-09-20 20:36:27','2012-09-20 18:36:27'),(375,87,'feeds','ee70ec0cd130efea086db4155b89ffa7899f53d4','2012-09-26 07:32:55','2012-09-26 05:32:55'),(378,88,'feeds','5412395a8f088ebc2439b92180b2bdf32f577ff2','2012-09-27 11:58:10','2012-09-27 09:58:10'),(383,89,'feeds','6f05f27bfb08ec8b6b71918bf13943c3bad9830b','2012-09-28 01:08:19','2012-09-27 23:08:19'),(389,91,'autologin','f5863d42f426eaa46a91be902154e0b0e621fbce','2012-10-05 13:31:11','2012-10-05 11:31:11'),(391,91,'feeds','9819186355759af08edb1250050716da8712ec8b','2012-10-05 13:31:11','2012-10-05 11:31:11'),(394,92,'feeds','f3a17e0a7e751af96ae37f0f5f3bd8b767d46c0e','2012-10-08 03:53:05','2012-10-08 01:53:05'),(399,94,'feeds','25926dd89c5eaf09ee3a8e10a18fdcbbd16a3b7d','2012-10-11 11:47:36','2012-10-11 09:47:36'),(402,95,'feeds','d196e65d49f33250ebbcde6958873d88dd4b8e23','2012-10-11 12:28:28','2012-10-11 10:28:28'),(403,19,'recovery','5de689995102306706f399c19976b25e67d13332','2012-10-11 14:19:15','2012-10-11 12:19:15'),(405,96,'autologin','1c1e5a05c2c0e994a2da9470a4f0fc85cb55f088','2012-10-11 14:20:59','2012-10-11 12:20:59'),(407,96,'feeds','50657e14c5bfbc6a203fee611dd56398f94ee0b8','2012-10-11 14:20:59','2012-10-11 12:20:59'),(410,97,'feeds','1de53c12027009d62fc8aeb6d39554b6ec9bfbb2','2012-10-11 14:26:37','2012-10-11 12:26:37'),(412,98,'autologin','a441c9f6566947792fa8a92ead878ff36091ce72','2012-10-11 16:25:13','2012-10-11 14:25:13'),(414,98,'feeds','a388b24afe570631a5fee96586b15cfa0f895bb6','2012-10-11 16:25:13','2012-10-11 14:25:13'),(418,99,'feeds','b56343b4c1cf296b9e81e3416feed578f91a0786','2012-10-12 19:13:21','2012-10-12 17:13:21'),(426,101,'feeds','1c513698ec08f0a82807d2b458f4566f7f701ae8','2012-10-26 17:00:49','2012-10-26 15:00:49'),(431,103,'feeds','840368a81d2dc55819d82071733fc4011b330f4a','2012-10-29 15:21:39','2012-10-29 14:21:39'),(433,93,'feeds','bd41068bfa317da29aeaab8feec1f1041ba68840','2012-10-29 16:45:49','2012-10-29 15:45:49'),(441,105,'feeds','fff594dc7f6db83879287bf0cd8e9361dbca2374','2012-11-09 11:28:41','2012-11-09 10:28:41'),(445,106,'feeds','ef960354f354b6dfffde6ea52872e31d8ad36307','2012-11-18 05:02:09','2012-11-18 04:02:09'),(451,107,'feeds','bb6be44a8b64925661cdac85c579767793c7a709','2012-11-29 16:41:58','2012-11-29 15:41:58'),(455,108,'feeds','83cbf52fed4e00e7d1d08f544c2bc8d7228eea37','2012-11-29 23:44:37','2012-11-29 22:44:37'),(458,109,'feeds','11a519ca2d6b6655432f4a46cf0185fd9e614c0b','2012-11-30 06:02:38','2012-11-30 05:02:38'),(461,110,'recovery','eda23355cdb7e24231e9ca49f5672454dee71318','2012-12-05 11:09:56','2012-12-05 10:09:56'),(463,110,'feeds','4d3e051fec23d95764e4543af66891e186a615f9','2012-12-05 17:43:43','2012-12-05 16:43:43'),(470,112,'feeds','afd775d7ee785ef817955d9579e1f98f3ea4f274','2012-12-07 13:54:35','2012-12-07 12:54:35'),(476,114,'autologin','6d666d4ddfd94e5d3e3fc447338c698ef3dd9fbf','2013-01-03 09:42:00','2013-01-03 08:42:00'),(478,114,'feeds','0f302dec83b8670ebabc3c82142bf1df48d95efb','2013-01-03 09:42:01','2013-01-03 08:42:01'),(480,87,'autologin','363426a84cbd90aba93af88ea312abb2c8a5ab7c','2013-01-09 08:11:09','2013-01-09 07:11:09'),(482,115,'autologin','a7816ad6f7957364ac694d4f776e4b73aab4df41','2013-01-09 13:46:51','2013-01-09 12:46:51'),(484,115,'feeds','8919b7664e7c2183ad2898de2de657e1958c64c4','2013-01-09 13:46:51','2013-01-09 12:46:51'),(487,117,'register','1e00d20bc463f507409d273cc2a3a7e0f6d04b50','2013-01-10 17:39:41','2013-01-10 16:39:41'),(489,116,'feeds','40aca9e4a58779a66a7b758458a13e842a3df075','2013-01-11 09:14:18','2013-01-11 08:14:18'),(493,118,'feeds','1fd40456a388117e19e76685b87309789d3835e1','2013-01-14 17:01:23','2013-01-14 16:01:23'),(497,119,'feeds','f2427b7221f295ab53d4e02329049ec3c1c5fb82','2013-01-16 11:59:16','2013-01-16 10:59:16'),(503,121,'feeds','40f9ca5506f5b8d983579b0e7378fa623b03513f','2013-01-21 17:16:19','2013-01-21 16:16:19'),(505,11,'autologin','decc1e90d8a36fc07108046cc2a0926a510c0069','2013-01-22 10:19:33','2013-01-22 09:19:33'),(515,119,'autologin','2b88fea68ed1fc58cf78681cbb291066f3466839','2013-01-28 12:50:40','2013-01-28 11:50:40'),(517,5,'autologin','180367c67860453af3418ed64c5309e6ff04b87d','2013-01-29 10:06:51','2013-01-29 09:06:51'),(520,122,'feeds','e2c329a4feb3f33b10c7abc927c45b154b567d61','2013-02-02 00:54:41','2013-02-01 23:54:41'),(525,27,'autologin','fa7e33a6dbf9c5f8dc5c531104982d0a83fc066b','2013-02-08 02:35:39','2013-02-08 01:35:39'),(526,123,'register','454027467817d808ca084dd7873383217955efa6','2013-02-12 01:17:08','2013-02-12 00:17:08'),(533,126,'autologin','fef78f5ebc332c77a9f3b6f27949dce2c14e6d67','2013-02-20 21:46:43','2013-02-20 20:46:43'),(535,126,'feeds','b9d976c06d652da387f010ffb85b5b9c8b43be73','2013-02-20 21:46:44','2013-02-20 20:46:44'),(539,127,'autologin','380ae71d2ce1617ce9ce14335ef2af5adf921fca','2013-02-23 23:03:14','2013-02-23 22:03:14'),(541,127,'feeds','487ad652639e28d619dbab8ad3fc560e0fdd95b2','2013-02-23 23:03:14','2013-02-23 22:03:14'),(544,129,'autologin','7e39fdba43eecaf2c7ed738226b08e3503b8da5e','2013-02-25 16:52:17','2013-02-25 15:52:17'),(546,129,'feeds','60e55c7b3cc1a8a0e78b2547b8f1b81d3a15205d','2013-02-25 16:52:18','2013-02-25 15:52:18'),(552,12,'autologin','617cbf09992d4ae113062b67112f295ae8caa02a','2013-03-10 17:40:17','2013-03-10 16:40:17'),(555,131,'feeds','8dc27080a5672dddf8ba2005f3930f6b40e93f91','2013-03-14 10:25:08','2013-03-14 09:25:08'),(564,133,'feeds','0db60708078279a30de02cdf8ab079cf4c983650','2013-04-09 17:36:00','2013-04-09 15:36:00'),(569,134,'feeds','ef0f02ee95cce38ac2fdac0354d8d9dc4c33765e','2013-04-29 13:07:35','2013-04-29 11:07:35'),(575,121,'autologin','48fd248b1685b767964174c6c9aa96c69f8a64b5','2013-05-23 18:09:20','2013-05-23 16:09:20'),(578,136,'feeds','1898cee9d16a0c7ffb78e59dda0686c1867c0ab4','2013-05-27 17:45:23','2013-05-27 15:45:23'),(581,138,'autologin','e095f6452ce92beaf44ac7230873024ec2f96972','2013-07-11 14:36:39','2013-07-11 12:36:39'),(583,138,'feeds','bfc2c46a2cccad385eced684af18bbb5dc182e2d','2013-07-11 14:36:40','2013-07-11 12:36:40'),(585,137,'feeds','7c27cb29d794b27553029ef2d02a35c10683e966','2013-07-11 14:38:23','2013-07-11 12:38:23'),(591,140,'autologin','d8657a2cfe4721561962357f9450c9a2e346ca76','2013-07-16 14:13:46','2013-07-16 12:13:46'),(593,140,'feeds','650f1cd8545cec209bd1ef0b2538b1797656363e','2013-07-16 14:13:47','2013-07-16 12:13:47'),(607,143,'recovery','6a718f42dff57d2f01d04c7686fb2230fa5688d1','2013-08-25 11:40:48','2013-08-25 09:40:48'),(609,143,'feeds','bf86da40c0a3fd57def8a5bada2c93c09d5b7ba7','2013-08-25 11:44:07','2013-08-25 09:44:07'),(613,145,'feeds','0456dda8833c9d938d0ec6f5f23850f3fa72eef0','2013-08-28 17:11:14','2013-08-28 15:11:14'),(617,146,'feeds','10aaa7558bf9cf0c4b2d2cf90500c00e1caecd60','2013-09-02 04:05:31','2013-09-02 02:05:31'),(623,148,'feeds','94574c3d031e42706ed616838723a4ff276c7f1e','2013-09-02 11:07:15','2013-09-02 09:07:15'),(627,149,'feeds','9677e2f8ff849abdb617c9f15670e821d20721d3','2013-09-05 02:38:26','2013-09-05 00:38:26'),(636,152,'register','3273fc651d98e6d2c2b1eb0ff2f329884d5ff907','2013-09-13 21:44:40','2013-09-13 19:44:40'),(642,154,'feeds','25800fb9829dea91aeb39b37550f6153f035c166','2013-09-16 11:15:13','2013-09-16 09:15:13'),(643,154,'autologin','0eee1ed4c709795832d33307ba5ad6aff3acf8ee','2013-09-17 11:49:56','2013-09-17 09:49:56'),(650,156,'register','dd4788b1d0f837749c1155b037951fa7cc2f0e07','2013-10-10 17:03:36','2013-10-10 15:03:36'),(655,152,'feeds','cceb08f1338dead92ed475314fb983bd15905e65','2013-10-23 13:47:57','2013-10-23 11:47:57'),(658,156,'feeds','e954bd65b63b92bb90da5bf1fc81c0babb8daf11','2013-10-23 14:42:38','2013-10-23 12:42:38'),(664,159,'feeds','a0295d2f1c45abcedec397f2bf4e2b4e5dc0fe37','2013-10-28 11:08:23','2013-10-28 10:08:23'),(665,160,'register','6cb969e534b4c22500da49501e04db553b8ae25b','2013-12-05 08:55:58','2013-12-05 07:55:58'),(668,161,'feeds','5920a0d1742d2f507eca619f02035bc6cc4e9bf8','2013-12-17 18:58:30','2013-12-17 17:58:30'),(672,162,'feeds','339162cb5fcd750872e8db55e9f4cdd526645bca','2014-01-26 14:06:13','2014-01-26 13:06:13'),(673,163,'register','49435567037782e137057b2a930a458c09e41aa3','2014-02-06 09:57:42','2014-02-06 08:57:42'),(674,164,'register','d68d82f7ba00d9b754e8d4f34973f1d5532a0cd1','2014-02-12 16:04:57','2014-02-12 15:04:57'),(679,164,'feeds','81b8354a360bd267fb06bea7dd135714b821ba0e','2014-02-13 11:33:51','2014-02-13 10:33:51'),(684,166,'feeds','9dc55c46d74f405afcb7e6ce86b639f1294bb6f3','2014-02-13 21:48:52','2014-02-13 20:48:52'),(689,167,'feeds','70a05995aae4af4dfe7bed76f31ee0559913d547','2014-02-19 16:09:32','2014-02-19 15:09:32'),(693,168,'feeds','25abfcfe3628d8c5d4eee9b97ee3353d5e059db6','2014-02-20 07:31:25','2014-02-20 06:31:25'),(702,170,'feeds','659b0b9a6ff6aa3245a14326e64cced554a7957b','2014-03-02 11:55:58','2014-03-02 10:55:58'),(705,171,'feeds','27ac138b0b07ddbe7f66c10ae58fbfbbc66d6444','2014-03-03 21:55:00','2014-03-03 20:55:00'),(707,172,'autologin','be1c5ce944d58789de72c98b1cfe2062cd090cfe','2014-03-05 14:56:03','2014-03-05 13:56:03'),(709,172,'feeds','0cd941a28b4cef23c887fb6ad2846c3b17a964dd','2014-03-05 14:56:04','2014-03-05 13:56:04'),(714,174,'feeds','7bc308bcfdfc92a9f3fc61ef87dd59891aaa3537','2014-03-10 08:42:41','2014-03-10 07:42:41'),(718,175,'feeds','937f0a02b6e6d6f1ada4da154e4af69b862a030d','2014-03-10 16:47:00','2014-03-10 15:47:00'),(721,176,'feeds','c1ba702e06a5d8f9b03f8335a15cdd7789cfbfd2','2014-03-10 20:22:03','2014-03-10 19:22:03'),(724,177,'feeds','0e469cdea58f8877241e2efe07c0bf4ef0003ce4','2014-03-12 15:36:50','2014-03-12 14:36:50'),(729,178,'feeds','3100c19f29842c573a9e8e747e74efa5629c5def','2014-03-19 20:31:49','2014-03-19 19:31:49'),(732,163,'feeds','8d586df00bb8124d6055d9f617dff2aefc1132c3','2014-03-21 11:59:02','2014-03-21 10:59:02'),(733,163,'autologin','f525e901f3af20143efb29d7b3938f1b9a4d5a69','2014-03-24 10:38:53','2014-03-24 09:38:53'),(745,181,'register','641af366ffe58b6676f5411c1276929763e530a3','2014-04-03 18:14:21','2014-04-03 16:14:21'),(752,182,'feeds','036eb454e7bfb969d616f4024399ee06d05df0c5','2014-04-10 09:28:21','2014-04-10 07:28:21'),(763,187,'feeds','165ed73156c4379dc5e9484cc49f7ed036abe6e8','2014-04-17 15:12:36','2014-04-17 13:12:36'),(766,188,'feeds','5f1afdddb12842422e08182e145f105762af3602','2014-04-29 17:06:46','2014-04-29 15:06:46'),(767,189,'register','41d2c2eb2a8532f3a6ae4705ef308c152ffeb91d','2014-05-03 19:24:37','2014-05-03 17:24:37'),(770,190,'autologin','90df7f39d9c9943a465d130f3fb43f1900743bf1','2014-05-06 23:28:35','2014-05-06 21:28:35'),(772,190,'feeds','7dbe773d0541865f45f6e933aa7bcdbf9e632fe7','2014-05-06 23:28:36','2014-05-06 21:28:36'),(776,189,'feeds','4586330ecc5945478d1b14716c643b1a21bb8624','2014-05-13 07:07:16','2014-05-13 05:07:16'),(780,181,'feeds','0bf93fafbd1c069362719560a73cf08e8dc1d6e5','2014-05-20 07:59:06','2014-05-20 05:59:06'),(781,191,'register','50bdfbb0e2a11f147b5ef9948246c554f9be7f8a','2014-05-20 18:54:18','2014-05-20 16:54:18'),(785,191,'feeds','1f94bf48d0649025aa86036b3455344fe45f9154','2014-05-22 12:10:52','2014-05-22 10:10:52'),(791,193,'feeds','cd9b03d22b57b87d379ddd70f39b6533b0919bea','2014-05-26 06:36:42','2014-05-26 04:36:42'),(800,194,'feeds','08d1eed58426b15d5b95fc825e23b75f67539a2c','2014-05-27 15:55:40','2014-05-27 13:55:40'),(801,33,'autologin','2eb40d6e65b7a3cf425a2cdd1bf3cfd20307ec1c','2014-05-27 19:23:23','2014-05-27 17:23:23'),(811,196,'feeds','1c2b68ed44ebc5868d9931d4fc5c4aa92101c453','2014-06-06 14:58:45','2014-06-06 12:58:45'),(814,197,'feeds','5ef66e4c45acf5c23a5f642d394c166b0261e85e','2014-06-06 15:47:49','2014-06-06 13:47:49'),(818,198,'feeds','167276d7e36d8a51a8d39f889ecb1dcb2c99cd16','2014-06-11 23:03:20','2014-06-11 21:03:20'),(826,193,'autologin','03bed05d5968f76307d6b922150accfa03fc6c8c','2014-07-01 23:10:37','2014-07-01 21:10:37'),(829,199,'feeds','7e73f3a1b47e49416fcc43567d1007d8536ab17e','2014-07-02 12:30:31','2014-07-02 10:30:31'),(830,196,'autologin','2ce9ca29368d36bce4eb0e7cece2cbb4fdd77e20','2014-07-04 10:08:36','2014-07-04 08:08:36'),(836,202,'feeds','12cf8edf68a59cdfe7a83470da9e086d4f9a02ba','2014-07-11 14:59:05','2014-07-11 12:59:05'),(840,203,'feeds','228fc589f6b9eac8317800d44be336495476d668','2014-07-22 08:32:07','2014-07-22 06:32:07'),(843,204,'feeds','0ae95062b7aecef610f12d0043b4c5f6d74e1b51','2014-07-23 02:44:27','2014-07-23 00:44:27'),(845,205,'autologin','1519b9365f3f36fd036f2093cf1f2636a277f34c','2014-07-31 14:30:21','2014-07-31 12:30:21'),(847,205,'feeds','33151ff10bdbd56d26d7be3f680e61658f090160','2014-07-31 14:30:22','2014-07-31 12:30:22'),(851,207,'feeds','e280952ca0d1eb128e5d40fef56c95b55ecd7936','2014-08-19 14:56:34','2014-08-19 12:56:34'),(856,208,'autologin','7d8e403ff358f9aad2d8aa498a95d2efa4ad031c','2014-08-28 17:15:50','2014-08-28 15:15:50'),(858,208,'feeds','518e3987972dacda8aebd51399da03c5d996b769','2014-08-28 17:15:51','2014-08-28 15:15:51'),(861,209,'feeds','080144c0b9f5aaf6fd70ef16c0b136acf5c537b8','2014-09-02 14:09:14','2014-09-02 12:09:14'),(862,210,'register','b03a3f3401e1dd1bace4f45d6099de38dfd47ef7','2014-09-15 17:32:02','2014-09-15 15:32:02'),(865,211,'feeds','9478ae650102f55ad3f21311b15ab49cde56aa9c','2014-09-22 04:15:51','2014-09-22 02:15:51'),(869,212,'feeds','7b78ea8865ea075fc34ea5c4666d05fb3f28087f','2014-10-23 00:36:13','2014-10-22 22:36:13'),(870,213,'register','7ae67f2c3320dead94bf373158e28fc4bb6b37e1','2014-12-03 05:41:25','2014-12-03 04:41:25'),(873,214,'feeds','dc9ad0967a87a10244ed5668d8a98200846d3dfd','2014-12-03 05:53:17','2014-12-03 04:53:17'),(876,215,'feeds','67877b27ad45bcdaed6604b34d9f9a2d8908c118','2014-12-12 09:17:51','2014-12-12 08:17:51'),(882,216,'feeds','a1683f0522085901154629737be71f07addf9651','2015-01-21 06:02:43','2015-01-21 05:02:43'),(885,217,'feeds','b01535a0b2612e53123c11d9af1c2c35ff07d524','2015-01-21 09:53:41','2015-01-21 08:53:41'),(890,218,'feeds','4c104cf6c56ad1942eadadeedfc402a6bf98190b','2015-01-22 10:55:27','2015-01-22 09:55:27'),(894,22,'feeds','64234fec2e090a3f89dc62e4febdb0db7e425cd8','2015-01-26 21:24:31','2015-01-26 20:24:31'),(896,22,'autologin','d1f19d236b503b12eec912589d9c9e0b52998ccb','2015-02-01 20:34:57','2015-02-01 19:34:57'),(897,164,'recovery','4517aea1bbe6dfc277d285e4645040eee031d43e','2015-02-04 10:38:21','2015-02-04 09:38:21'),(898,164,'autologin','de6294b6bc4287306d139d6ae185258eb10baeb5','2015-02-04 10:40:12','2015-02-04 09:40:12'),(901,219,'feeds','853b78e01985fc34807d9d003d4cb44659da37c9','2015-02-09 11:06:18','2015-02-09 10:06:18'),(904,220,'feeds','7ba82b2f4bbaf6f37bb0733c07d39fc76a48a9db','2015-02-09 12:06:59','2015-02-09 11:06:59'),(917,177,'autologin','d0beb2a14078f0c9fc24319b391de706b2575ab8','2015-03-08 00:57:06','2015-03-07 23:57:06'),(921,93,'autologin','6a30d5594d5ec5dc50b52fe33da212df2b802eee','2015-03-12 19:41:50','2015-03-12 18:41:50'),(925,222,'feeds','7b51bff50f02fa3b27a229c69fa6bdf7b5b86f78','2015-03-23 14:20:52','2015-03-23 13:20:52'),(932,223,'feeds','28fc79d5afa26d392fef0fc5633436d13cf90378','2015-03-24 16:54:33','2015-03-24 15:54:33'),(937,224,'feeds','9a2c3f913d6ddf9e5eaf1345c63faf80f93d973c','2015-03-28 10:14:45','2015-03-28 09:14:45'),(941,225,'feeds','228fa81e4a9b84ee954b521d395dca8921824ed8','2015-03-28 10:18:23','2015-03-28 09:18:23'),(942,226,'register','7c055cc2828b89919e6e162ab73f93d48ec50549','2015-03-31 15:54:56','2015-03-31 13:54:56'),(945,226,'feeds','2542bca304872e44ad06ef6c35b4e9ffe60658c7','2015-04-01 17:16:55','2015-04-01 15:16:55'),(949,227,'feeds','110620ab2b6a8ac078154d6cf1b9e78fd2a8943f','2015-04-05 14:43:23','2015-04-05 12:43:23'),(952,225,'recovery','718caca0389530e0c25683d3100499f4d0ce5737','2015-04-07 12:04:39','2015-04-07 10:04:39'),(955,228,'feeds','bce061155a59e917245d3dd29ec154b1d81ab6ae','2015-04-07 13:46:22','2015-04-07 11:46:22'),(958,229,'feeds','3019f7e740172efd2c4852c7599e772bcaa258c1','2015-04-08 10:44:57','2015-04-08 08:44:57'),(961,61,'autologin','03ce993d2b1c23d784db879bce5a0fdc6647772e','2015-04-10 15:38:36','2015-04-10 13:38:36'),(965,230,'feeds','7d464a55492647acd85264921877d252aa50557a','2015-04-10 18:02:56','2015-04-10 16:02:56'),(966,231,'register','ff577a150ad8f61bd62c720c15fc6623003b2df1','2015-04-14 09:12:46','2015-04-14 07:12:46'),(974,231,'feeds','9bd19f88b91bec32ad492df36f2688b8bb2c1720','2015-04-16 10:14:52','2015-04-16 08:14:52'),(980,233,'feeds','99a2466a01c25d25331dcfa32cc26f399646f74b','2015-04-30 11:27:49','2015-04-30 09:27:49'),(983,234,'feeds','617f40fdb7051bbe9986683522f4036423c99368','2015-05-13 09:23:43','2015-05-13 07:23:43'),(987,235,'feeds','8f72fdb9ada902b36383d2139a1adb9285760bb7','2015-06-02 10:27:55','2015-06-02 08:27:55'),(1002,238,'feeds','e0f59a65d23a37ef59a4ecd0c49205cbf67296f8','2015-06-18 14:05:50','2015-06-18 12:05:50'),(1011,239,'feeds','13d6fde19b787ee4997a5e19eed1e3fb38da7dcb','2015-08-19 15:05:34','2015-08-19 13:05:34'),(1018,240,'feeds','61bc16b061d8b25bbfd83952e27a7f0f7d340a96','2015-09-01 10:08:26','2015-09-01 08:08:26'),(1022,241,'feeds','e8ae4f48e9d57f2c1ed83ca7a5531699a3fef36d','2015-09-25 16:56:19','2015-09-25 14:56:19'),(1025,242,'feeds','7a13bd1d397f8a75b842fec4654054e891bb9aac','2015-10-14 04:44:27','2015-10-14 02:44:27'),(1032,243,'feeds','a0c3e749e5ee5b4ade66c2f32a4be482f55f0d09','2015-10-27 10:55:54','2015-10-27 09:55:54'),(1036,244,'feeds','64ea5a7c1b553bd9de2b773fba7b486abbb6aae4','2015-10-27 16:49:20','2015-10-27 15:49:20'),(1039,245,'feeds','f6b62538bd99089dba2acd1acc3f109bcfc160bf','2015-10-29 21:00:11','2015-10-29 20:00:11'),(1044,246,'feeds','051990de1aee0114e9742f1d0bfb69d7f9a2107a','2015-11-13 16:57:02','2015-11-13 15:57:02'),(1049,247,'feeds','40e1e4b09b2eec37c789822a497b29698f81f919','2015-11-26 18:58:22','2015-11-26 17:58:22'),(1052,248,'feeds','ed7356eb71cf3fa27380a120c23006bd8357947e','2015-11-27 16:53:10','2015-11-27 15:53:10'),(1060,249,'feeds','67a4efb36eaeb743ed0da701cf4d171614e751f1','2015-12-23 06:05:24','2015-12-23 05:05:24'),(1064,250,'feeds','16c101d9538038e3ff18008a4a9b6cb30c202a97','2016-01-04 10:58:46','2016-01-04 09:58:46'),(1068,251,'autologin','0270ec6ec7e4251939d4b53711ff8f434b46193f','2016-01-05 15:44:44','2016-01-05 14:44:44'),(1070,251,'feeds','4d034e161ac4320a7c6fe3b432da850b4f7dc9a9','2016-01-05 15:44:44','2016-01-05 14:44:44'),(1075,252,'feeds','f3b89672ce52959d6e5ce769dceda7421b2fbf44','2016-01-08 13:20:43','2016-01-08 12:20:43'),(1082,253,'feeds','1e719321f7b423432cdc12e6ba648fa1a44f2c6d','2016-01-12 14:32:20','2016-01-12 13:32:20'),(1086,254,'feeds','e9b1ac2a2c0a91a96381a4c72744c6d891d1087d','2016-01-12 14:51:58','2016-01-12 13:51:58'),(1087,255,'register','097a2ddd9a84158d86f1de270398955c86d26cbb','2016-01-15 11:44:47','2016-01-15 10:44:47'),(1091,256,'autologin','caded0ac1e1a48eb80cc401f96662c410f037115','2016-01-19 14:49:38','2016-01-19 13:49:38'),(1093,256,'feeds','39afd73ee291448c02a68f884a37242f103b155a','2016-01-19 14:49:39','2016-01-19 13:49:39'),(1097,257,'feeds','85357bfa08076682026235bb7b154a4e6564fc23','2016-01-26 13:56:31','2016-01-26 12:56:31'),(1100,258,'feeds','0b9611a55740b58fd36818f1db3f2711e32477a5','2016-01-28 14:55:33','2016-01-28 13:55:33'),(1104,258,'autologin','616ea75ba831c3f6fa924adbc0073c2a161d79cb','2016-02-08 09:03:49','2016-02-08 08:03:49'),(1109,259,'feeds','fb4a65460917febf6f6dd45dfcd41982db0804c8','2016-02-15 10:16:15','2016-02-15 09:16:15'),(1119,261,'autologin','16757d2148eba20925f3524f70b48890314657e9','2016-03-11 10:32:41','2016-03-11 09:32:41'),(1121,261,'feeds','63dcdee5eab814a8665b77f4ca4a01d880826c06','2016-03-11 10:32:43','2016-03-11 09:32:43'),(1123,226,'recovery','9a522e1fbddf536eaab1684cd8f417cd7829662a','2016-03-15 23:59:30','2016-03-15 22:59:30'),(1130,262,'feeds','b40e3aad3bc23dbf557936391d02af7306e6ec23','2016-05-11 10:05:32','2016-05-11 08:05:32'),(1134,263,'feeds','4fa22a65349864c9d469b27cfa960ed04d0b046b','2016-05-18 11:39:58','2016-05-18 09:39:58'),(1137,264,'feeds','3cea210279e9ab0ae8516fa9a590b4a8a05525ff','2016-05-18 18:42:22','2016-05-18 16:42:22'),(1140,265,'feeds','9a7746da8b3d290326fee88c14e80f364d613333','2016-05-20 11:19:50','2016-05-20 09:19:50'),(1144,266,'feeds','fec93bead42201574df3f9ce52b7047867a0a729','2016-05-27 16:31:06','2016-05-27 14:31:06'),(1148,267,'feeds','0180989edb5d7871fe3e80bd9e60e3df64b69f1d','2016-06-06 18:45:43','2016-06-06 16:45:43'),(1153,268,'feeds','04987869cb682cbea4ecdc84edc7c6743c5b9485','2016-07-01 11:22:14','2016-07-01 09:22:14'),(1156,269,'feeds','f13f5801aadbdfea3a5370b1632ee5d729654f93','2016-07-01 11:44:44','2016-07-01 09:44:44'),(1159,271,'autologin','eb97110272e3fe167df120528a0af3f3f1a5804f','2016-07-01 11:47:41','2016-07-01 09:47:41'),(1161,271,'feeds','4ed1ea9788698b26480f61ddaa41986951ec73e8','2016-07-01 11:47:42','2016-07-01 09:47:42'),(1163,270,'feeds','dcd1e854ee057c2129bbfed6bd68a0a2546748d5','2016-07-01 11:48:45','2016-07-01 09:48:45'),(1167,272,'feeds','6d96d4cbf86d61d7ff5f897385d23d2f618bfc62','2016-07-01 20:23:00','2016-07-01 18:23:00'),(1170,273,'feeds','6a84616d76013de36c0b8939087a5075ca6bd923','2016-07-08 14:46:21','2016-07-08 12:46:21'),(1171,259,'autologin','a45e00a8bc09b9f757321b8b18a7221e8cb0167c','2016-07-11 10:51:32','2016-07-11 08:51:32'),(1174,274,'feeds','0ae5486355febc0fa493bb626659591b1b4ac9d8','2016-07-14 17:00:10','2016-07-14 15:00:10'),(1178,275,'feeds','5ad973b42f434b13f3f48ec4a2d83c85b4095c1a','2016-07-19 08:02:45','2016-07-19 06:02:45'),(1184,277,'feeds','4cf1835c61cb02333ea7ea4fecef49f47ee4e0a0','2016-07-28 14:06:33','2016-07-28 12:06:33'),(1185,246,'autologin','e0268aa5c75ea35af41d856249dcf30f16ecda93','2016-08-16 15:34:18','2016-08-16 13:34:18'),(1187,226,'autologin','b588279476415db00afb39eb36dbde80e9768957','2016-09-08 11:07:44','2016-09-08 09:07:44'),(1193,278,'feeds','b3d26481276f18bfbfc17eac1fa05ce8e07260f5','2016-09-19 11:41:01','2016-09-19 09:41:01'),(1200,280,'feeds','0caf2671a2590c666d6f4c80625542b2e85dceb5','2016-10-19 16:45:24','2016-10-19 14:45:24'),(1203,281,'feeds','054a70867496c2731346aa91a9604dd02e3f0884','2016-10-24 14:27:39','2016-10-24 12:27:39'),(1206,282,'feeds','5777c45f0e2adc8d3045db7e8daa7139f8aff077','2016-10-24 22:31:01','2016-10-24 20:31:01'),(1209,283,'feeds','c736719fece1135ab49d6870e789fb1b0444925d','2016-10-25 00:04:01','2016-10-24 22:04:01'),(1212,284,'feeds','f421034454297b33985cb0d23d16db777274e680','2016-10-25 09:58:09','2016-10-25 07:58:09'),(1218,285,'feeds','f82fb54ae96e749aaa5fdd0f0a9c4f99b9d33387','2016-10-30 16:22:07','2016-10-30 15:22:07'),(1224,286,'feeds','65f5c6e8545482e5f1340b7efe6777b887b8ed1a','2016-11-06 22:54:01','2016-11-06 21:54:01'),(1228,287,'feeds','f252a97b98dd52275ef13304943db8b3b89157b6','2016-11-07 08:32:24','2016-11-07 07:32:24'),(1230,288,'autologin','a9795739174dfba22cca6c828c5fbc07bb511da2','2016-11-15 13:32:02','2016-11-15 12:32:02'),(1232,288,'feeds','a0a7eac7db334a09f4372700906cc36a7fe727e0','2016-11-15 13:32:02','2016-11-15 12:32:02'),(1235,289,'feeds','24363f1283d99ec7e84ba3b73c9530211478d1b7','2016-11-21 15:16:22','2016-11-21 14:16:22'),(1244,291,'feeds','be8bd708cfb02dcbd1bbec312ee00d2cc58a2bb6','2016-12-14 21:48:42','2016-12-14 20:48:42'),(1248,292,'feeds','82cb2849a80cac82dc433b16bc32177e247345aa','2016-12-17 11:20:47','2016-12-17 10:20:47'),(1249,118,'autologin','9877799d2028548647b995523dfc49216025cf4b','2016-12-23 18:11:54','2016-12-23 17:11:54'),(1251,293,'autologin','2779e3fac644a9f7190e49c5ea732ff6faec6a0d','2016-12-28 07:43:52','2016-12-28 06:43:52'),(1253,293,'feeds','765806e21c4817fe28ac2bcdaee20d5ab9a72cab','2016-12-28 07:43:54','2016-12-28 06:43:54'),(1257,294,'feeds','9383a95fba4e07d5e2166f97660bbfc6b2980d38','2016-12-30 02:18:41','2016-12-30 01:18:41'),(1265,295,'feeds','54bc43e4ee41613451ff71724c5ccdc72aae4311','2017-01-16 14:04:21','2017-01-16 13:04:21'),(1266,295,'autologin','a65c6d91d66ff2e00cde8d3a04dbf5d16cce9ec3','2017-01-19 08:18:16','2017-01-19 07:18:16'),(1267,296,'register','c37a0f04f3413f0723b89946f31668f7ed6505eb','2017-02-10 13:29:13','2017-02-10 12:29:13'),(1270,296,'feeds','2a16ff3a359bae01354dd130784de3e290db96ba','2017-02-10 13:53:42','2017-02-10 12:53:42'),(1273,298,'register','3c8b15b27c9987f33d4433d07569f140785c9c46','2017-02-17 11:27:15','2017-02-17 10:27:15'),(1275,298,'feeds','2be0e7686de92fd5f59c121536b6f5079dcf687a','2017-02-17 11:27:51','2017-02-17 10:27:51'),(1277,299,'autologin','c75cd9698a5329b07f4c6ffb0ff5cd38ce5906a7','2017-03-16 11:34:32','2017-03-16 10:34:32'),(1279,299,'feeds','7e7dcce542c5a3371879a967e62958b62be56692','2017-03-16 11:34:48','2017-03-16 10:34:48'),(1281,300,'autologin','b0be5618d233f10faa4e6e774e77efa470d5b71b','2017-03-21 15:27:33','2017-03-21 14:27:33'),(1283,300,'feeds','a47e8a241594857cba79c708ebf017be67060983','2017-03-21 15:27:34','2017-03-21 14:27:34'),(1289,301,'register','cbf628d26597d9737a9f7b197472e0c096507db8','2017-04-03 10:27:55','2017-04-03 08:27:55'),(1292,302,'feeds','a3fb7a442bf3b773f561d1338085808a63ac4620','2017-04-03 11:04:22','2017-04-03 09:04:22'),(1297,303,'feeds','5887f2ebdf65473b4c8c070d9eedd4a586ac21e3','2017-04-05 13:50:49','2017-04-05 11:50:49'),(1300,304,'feeds','ab3bd85efbb6e70402246e766c830c766f739e63','2017-04-05 13:52:09','2017-04-05 11:52:09'),(1306,306,'register','cc40ba9c202daca3a7d624bede87d229a0d508ed','2017-04-20 11:39:26','2017-04-20 09:39:26'),(1307,307,'register','595215100a3ec3102ef0938f9252ff2243501cd6','2017-04-20 16:56:29','2017-04-20 14:56:29'),(1311,308,'register','6389e40233c28609157350190a5ad2338c1954c4','2017-04-27 10:15:19','2017-04-27 08:15:19'),(1313,308,'feeds','02eac4f1406d81448bff5533beb15131cafb27b1','2017-04-28 10:44:46','2017-04-28 08:44:46'),(1320,309,'feeds','7cf8df40d2fbd486850966ebd6a53b280dfd65f1','2017-05-15 09:49:36','2017-05-15 07:49:36'),(1324,310,'feeds','f58dc67dafbace0362a3e5ce84c419c31f1878bd','2017-05-21 09:00:26','2017-05-21 07:00:26'),(1327,312,'autologin','c45da4083cd9b6aafae7298fc93d4b80fc87816b','2017-05-22 05:04:29','2017-05-22 03:04:29'),(1329,312,'feeds','b1f5f836b1643fbb5fc0dd5ca443d846a3ac98f8','2017-05-22 05:04:30','2017-05-22 03:04:30'),(1336,314,'feeds','f5605c77ea6adb08c3d603fcf8e237cc2901561a','2017-06-12 15:11:19','2017-06-12 13:11:19'),(1339,315,'feeds','57648066085d874d230385dbffc51f6cf2354d26','2017-06-12 15:19:18','2017-06-12 13:19:18'),(1341,306,'feeds','6dde7b621a4f4781333fca2e30e14b990bbbb3c1','2017-06-13 13:34:40','2017-06-13 11:34:40'),(1344,316,'feeds','ea330bb50632dd0e5cbfc418a96c1e3bbd290547','2017-06-13 14:26:30','2017-06-13 12:26:30'),(1348,317,'feeds','d796a75876a5e91a758f81e061cc51d120f7db63','2017-06-19 11:15:28','2017-06-19 09:15:28'),(1351,318,'feeds','73e77bad80fc0b6b3dd5720998dd6aa51a75ce5b','2017-06-20 09:17:28','2017-06-20 07:17:28'),(1355,319,'feeds','5a26c2517c1aae8cf40eeb947a41499e360c5ac3','2017-06-20 09:19:37','2017-06-20 07:19:37'),(1359,320,'autologin','aaada346ef09f6febc1aa4e614d0b83bc32925f9','2017-06-20 09:29:39','2017-06-20 07:29:39'),(1361,320,'feeds','c30ef53d0d310f13da7a1c625cb943c680b13d29','2017-06-20 09:29:39','2017-06-20 07:29:39'),(1368,321,'feeds','db745bd6319c1e6331dfa3f4f2336e4e98cceca0','2017-07-04 12:13:16','2017-07-04 10:13:16'),(1369,321,'autologin','006c115b722925e02c6451e5ac5beb384353f7e1','2017-07-04 17:54:11','2017-07-04 15:54:11'),(1372,322,'feeds','d16905df8184e7d9952a4578fd360a503dc7157f','2017-07-05 09:10:17','2017-07-05 07:10:17'),(1373,322,'autologin','15b58758ca441baa31eb85b3294b189a4542d076','2017-07-05 09:12:53','2017-07-05 07:12:53'),(1374,294,'autologin','815cfa5b14d2cfe11e54e4cca62b4d8d7ab598c1','2017-07-06 03:23:58','2017-07-06 01:23:58'),(1380,324,'feeds','c7994b5c24979b7116d33d1af4c3ddac8765e168','2017-07-10 15:15:16','2017-07-10 13:15:16'),(1382,323,'feeds','880b76f9ecac9bd17992a9b2630f041be79cf2e9','2017-07-10 15:16:19','2017-07-10 13:16:19'),(1386,325,'feeds','0ab75db30d86c3330b5dd0a2b15d1d2ae930534e','2017-08-15 13:06:20','2017-08-15 11:06:20'),(1391,319,'autologin','24b8f12ded08b51390ebb4fcbf1f78d8bb7d39c7','2017-08-21 07:35:30','2017-08-21 05:35:30'),(1394,247,'autologin','503df6e32eafe0eb8e5e1dbe09fddfea05db8fe5','2017-08-24 15:56:27','2017-08-24 13:56:27'),(1410,328,'feeds','c6ff8fd18863b891ce95eb131b65e5b3eaafff7c','2017-10-02 12:31:29','2017-10-02 10:31:29'),(1413,324,'autologin','3fe38271c221c8ee32bd98d74c967a9824503966','2017-10-13 15:37:12','2017-10-13 13:37:12'),(1414,329,'register','0da1dec7dd6c89475ed650dbfab4dce01dd7321c','2017-10-13 17:16:59','2017-10-13 15:16:59'),(1426,332,'autologin','f715248c8dac37d4b72d3b09678f8d254e359042','2017-11-01 02:36:55','2017-11-01 01:36:55'),(1428,332,'feeds','947d53c0e7bfa861f22bdff0fe5cd829d0d46e91','2017-11-01 02:36:56','2017-11-01 01:36:56'),(1435,333,'feeds','2d4e20fca75de4f57fceeb916e7e11828d5212cf','2017-11-23 22:43:24','2017-11-23 21:43:24'),(1439,334,'feeds','0d3c28b0f57dfa47511bdd784989808221883aa5','2017-11-23 23:18:07','2017-11-23 22:18:07'),(1442,335,'feeds','7cc4a6338a6763114a0112f93cf3a6ee25c16c19','2017-11-23 23:53:54','2017-11-23 22:53:54'),(1445,336,'feeds','368d6a9263db0a1d9147ff053ede322b7713ae0a','2017-11-24 01:12:23','2017-11-24 00:12:23'),(1450,331,'feeds','ef7025e0b8eec1b572f30de43cdd22ff962c840a','2017-11-27 11:29:52','2017-11-27 10:29:52'),(1453,334,'autologin','4cf1462cf0e23fa299f8511bc7b260b3e62100c7','2017-12-05 07:54:33','2017-12-05 06:54:33'),(1457,337,'feeds','60669f863d124b3e08f5dd78a37769456739f394','2017-12-11 03:26:45','2017-12-11 02:26:45'),(1463,338,'feeds','c03fa3964042f9a48c6a0c470862f04cb0c2634d','2017-12-12 15:43:16','2017-12-12 14:43:16'),(1466,339,'feeds','2793ae7ab83c4371c5921d4a0a62dc8f7b705c78','2017-12-12 15:44:03','2017-12-12 14:44:03'),(1470,342,'feeds','e8018615cbcbb30112a63a7d17fb048369837f14','2017-12-12 15:45:43','2017-12-12 14:45:43'),(1471,343,'autologin','e9ffbc3109dd71276db5bfcc341f45a2f5ec4121','2017-12-12 15:45:48','2017-12-12 14:45:48'),(1473,343,'feeds','b8ccbd3d66732d0f979af46549036f36ac85500c','2017-12-12 15:45:49','2017-12-12 14:45:49'),(1476,341,'feeds','e5638cd9dc20a5a7f46559cf531313e94ebedf2e','2017-12-12 16:13:38','2017-12-12 15:13:38'),(1478,340,'feeds','d124c24013655db2dd9bbecc0254b223f33b2b23','2017-12-12 16:16:23','2017-12-12 15:16:23'),(1483,341,'autologin','9e0d3d5d10ec9daad2d18ef816b8231c99e1c296','2017-12-14 12:58:24','2017-12-14 11:58:24'),(1486,344,'feeds','62e08fb5db78d1dae3240bf40ff08fd6351ae05e','2017-12-15 16:04:51','2017-12-15 15:04:51'),(1494,329,'feeds','a34918ffd242c4dc92d053cca1e2c7d1d2041d58','2017-12-18 14:48:53','2017-12-18 13:48:53'),(1497,345,'feeds','2cf6bf8129e3a46df518a3bac80a1235ad620e1f','2017-12-18 18:42:10','2017-12-18 17:42:10'),(1501,346,'register','ad6d271836e438c1889c481cfe076ba8f7307048','2018-01-04 14:39:36','2018-01-04 13:39:36'),(1502,346,'recovery','0f9806295bc66d1ca0db51562f70895bbf64457a','2018-01-04 14:42:33','2018-01-04 13:42:33'),(1504,348,'register','fd5a82159924909804e811e2b924e22a9f5a98df','2018-01-04 14:42:55','2018-01-04 13:42:55'),(1506,347,'feeds','cbbe687e100415a7a426cca2133e2511d3a78b0f','2018-01-04 14:43:23','2018-01-04 13:43:23'),(1509,349,'feeds','23b5d26e59f93065c8e296abe355c75d97205e87','2018-01-04 14:49:49','2018-01-04 13:49:49'),(1511,346,'feeds','11cb9ff050858627903472ee9b85c58fb19ae7a1','2018-01-04 14:50:46','2018-01-04 13:50:46'),(1513,348,'feeds','3ac5eaa6b4e68bf4c73b66b1d041c7761c70f581','2018-01-04 14:50:47','2018-01-04 13:50:47'),(1516,350,'register','dd651a6227d4146df331e7065552c22c88cf01f6','2018-01-12 01:50:01','2018-01-12 00:50:01'),(1520,351,'feeds','50ab76a7dca18baa9d73a2d0fd6e8fc6c01fc569','2018-01-15 02:09:14','2018-01-15 01:09:14'),(1532,350,'feeds','456ec1baeffb0421393fe7b8b7feaaa3d9d2ba8a','2018-01-31 11:31:54','2018-01-31 10:31:54'),(1542,350,'autologin','f42e3676a4d342b3b84bef65e9eacc078f09e0cb','2018-02-14 16:26:53','2018-02-14 15:26:53'),(1551,352,'feeds','e18e51543aa0f55123572830358da365636c0c0a','2018-03-10 22:27:37','2018-03-10 21:27:37'),(1553,353,'register','c88362f7a63baa9f5fd5d6eadd3f233e58c8f888','2018-03-14 15:26:46','2018-03-14 14:26:46'),(1554,354,'register','c68b3827bc89407eb5b132eb51465b39a5d9806f','2018-03-14 17:26:05','2018-03-14 16:26:05'),(1557,354,'feeds','04285fbce1d6af4c2fd3a4ceac4afcac787b7449','2018-03-15 16:42:04','2018-03-15 15:42:04'),(1558,355,'register','ff09b3ad1cae048860453cf172c079d6325812be','2018-03-15 16:44:30','2018-03-15 15:44:30'),(1560,353,'feeds','0297c97dec9b770ef1403620d5f1f892ebca90e0','2018-03-15 16:48:14','2018-03-15 15:48:14'),(1563,355,'feeds','aeb85e9d166d9e7c31f2e1ebaa8224dd73025c2b','2018-03-15 16:52:27','2018-03-15 15:52:27'),(1582,356,'autologin','1b1d32d5655e5e9b6cbae0c02fb12d6509c7c312','2018-03-29 16:47:37','2018-03-29 14:47:37'),(1584,356,'feeds','8dd6be988df799858dddd1a800022f1b28708131','2018-03-29 16:47:38','2018-03-29 14:47:38'),(1593,358,'feeds','4f3cec1a7d6a035e5a714d3124467fc4d1095478','2018-04-10 10:34:49','2018-04-10 08:34:49'),(1596,359,'feeds','8c554c2c853c48bc2e39f84f687f5fa096b3423a','2018-04-10 11:12:02','2018-04-10 09:12:02'),(1601,360,'autologin','f2ef392667bbd963ca4c9f48c2cec892fd460eb5','2018-05-17 06:14:15','2018-05-17 04:14:15'),(1603,360,'feeds','2e6631fa333abd91ed3867aa882f5bc478a42380','2018-05-17 06:14:15','2018-05-17 04:14:15'),(1605,325,'autologin','58e0358c29635b236bd22cd741b3af2a6e81d4a8','2018-05-19 14:46:20','2018-05-19 12:46:20'),(1609,361,'feeds','f33ea0e457f0db8df06e5095ab3e24d9667d3a25','2018-05-30 11:35:59','2018-05-30 09:35:59'),(1610,257,'autologin','122413e2f70c1b2ec2f770cf4e331c694af1aac2','2018-06-04 17:09:04','2018-06-04 15:09:04'),(1613,362,'feeds','50a0031af1594536587f328b7d8659195d536048','2018-06-04 17:38:32','2018-06-04 15:38:32'),(1614,363,'register','3352e68ed3bb259d14ff5eee6399b86bef6addc1','2018-06-15 13:14:03','2018-06-15 11:14:03'),(1616,2,'recovery','7512e14e9ca85730816aad3c6989b09d841a4706','2018-07-06 01:41:04','2018-07-05 23:41:04'),(1617,365,'register','0a8eee2300578b1ee858802b9ee39c20588346dd','2018-07-12 14:16:43','2018-07-12 12:16:43'),(1619,365,'feeds','fd6575df3a39b52632c4ef181966c015e39fe6f6','2018-07-12 14:18:05','2018-07-12 12:18:05'),(1621,366,'recovery','f197816f322f3b6c940edf1ea967cf0b1a6d0fff','2018-07-18 09:41:36','2018-07-18 07:41:36'),(1623,366,'feeds','46f66df537427d6bc08c923bcf221f3a1c63bd1c','2018-07-18 11:32:47','2018-07-18 09:32:47'),(1626,367,'feeds','0f8aabda7c6efb8717ec2bf5351ae1f54a44b89d','2018-07-18 12:27:56','2018-07-18 10:27:56'),(1627,368,'register','31d872f5d2bab6eca0fa7281a92cf2330ef9aed1','2018-07-20 16:54:36','2018-07-20 14:54:36'),(1629,369,'register','3241e9b135c0234c10de9484f95772897ebdd918','2018-07-30 13:34:35','2018-07-30 11:34:35'),(1633,371,'feeds','a6f6ba6c9e014da378c736ed1181d47eef028836','2018-07-30 14:09:05','2018-07-30 12:09:05'),(1636,372,'feeds','d042e829b988773099df3372ca184a08848e8808','2018-07-30 14:10:11','2018-07-30 12:10:11'),(1639,373,'feeds','53685b213cb5820b7120c3045c67437ccc17eff7','2018-07-30 15:52:15','2018-07-30 13:52:15'),(1643,374,'feeds','aca8295cacacf04220ec4c7580c555c9a474de3f','2018-08-07 15:19:19','2018-08-07 13:19:19'),(1646,375,'feeds','b549f80feccaecbe05d4ed998ac984c48e215887','2018-08-09 09:24:42','2018-08-09 07:24:42'),(1651,376,'feeds','0cc0c5a66c4b42dc9d1cb8562acb7a008441b4c7','2018-08-17 16:39:47','2018-08-17 14:39:47'),(1657,377,'feeds','a1d638deea1ed5d9fb410595f79fbfa5a9ee3e81','2018-09-06 00:24:30','2018-09-05 22:24:30'),(1660,378,'feeds','fdf68b098e8c2ca49d72fd9c3487e3ce076da532','2018-09-08 00:25:17','2018-09-07 22:25:17'),(1666,379,'feeds','3ef10a4dd99934448f150ccfa16ee0d526293543','2018-09-25 10:02:29','2018-09-25 08:02:29'),(1668,308,'autologin','f731fc290882f570e46deae0bc0cb543d32eebd1','2018-10-06 16:27:11','2018-10-06 14:27:11'),(1673,380,'feeds','0e8de307c1af016d6a7c6071bfea45032d500cdc','2018-10-17 14:30:54','2018-10-17 12:30:54'),(1677,381,'feeds','290fb10bcd3d894bcf15b0586c47028bf2eda293','2018-10-18 13:11:00','2018-10-18 11:11:00'),(1680,383,'feeds','3f322e6b00e286e79eac7ee94c19510740f8396e','2018-10-24 11:14:49','2018-10-24 09:14:49'),(1683,384,'feeds','8344f55ebf5956b5fbe974231a5a2ea546f95644','2018-10-29 20:26:07','2018-10-29 19:26:07'),(1689,385,'feeds','b5ffd391e98d17b0438f91872587accb9e32c932','2018-11-02 01:24:41','2018-11-02 00:24:41'),(1691,385,'autologin','31a94a48753e62eb8d704442c3c6b2cd92624385','2018-11-02 04:32:32','2018-11-02 03:32:32'),(1694,387,'register','a198adaad7821142537e027be0e8d95333d0748d','2018-11-05 10:01:30','2018-11-05 09:01:30'),(1699,386,'feeds','8701026e047594061dd5412e5061c6ad3149b1b3','2018-11-05 10:19:42','2018-11-05 09:19:42'),(1701,389,'feeds','cebc6153afdea9375c351ce33e47328d56f465bb','2018-11-05 10:31:36','2018-11-05 09:31:36'),(1703,388,'feeds','ba091aecec9f84a2e73a051781b1f08da8c7b05a','2018-11-05 10:33:23','2018-11-05 09:33:23'),(1705,390,'feeds','bf8f807c6ff03dfc46c31ba9e6d9bdce0ce12076','2018-11-05 10:33:55','2018-11-05 09:33:55'),(1707,387,'feeds','ce695310442f29b57e4020c8e6204e5827e5562f','2018-11-05 10:36:02','2018-11-05 09:36:02'),(1715,389,'autologin','9d5bd66825e97264af4d9bd892f7aeccbc23c52e','2018-11-08 14:47:16','2018-11-08 13:47:16'),(1716,254,'autologin','5dd7b56c6eaa44335f6b2786de0f13e33538f18f','2018-11-13 15:10:36','2018-11-13 14:10:36'),(1721,393,'feeds','e5954cc9db7c34577b9f4742055760271aab14c9','2018-11-22 23:03:11','2018-11-22 22:03:11'),(1724,394,'feeds','fdb963297ce55b9b7e613a0779a3aa32f830b2a1','2018-11-23 00:52:08','2018-11-22 23:52:08'),(1728,395,'feeds','7e5dbb3d6e44fea8f64ac747ac4b1989db336674','2018-12-06 16:46:21','2018-12-06 15:46:21'),(1731,396,'feeds','207a6679909e1731804945ccb4783f4dcecc3ed4','2018-12-10 10:38:56','2018-12-10 09:38:56'),(1733,397,'recovery','f9adec18180d198b4be91a44992bf4ab7ab8330c','2018-12-10 10:51:38','2018-12-10 09:51:38'),(1735,397,'feeds','ead9b1362cd304e04e4a71dd9eb1225069ec520b','2018-12-10 10:57:45','2018-12-10 09:57:45'),(1736,396,'autologin','7b4a74c893cf8ce7e7747b4e8dbd0b6224144e74','2018-12-11 00:18:12','2018-12-10 23:18:12'),(1737,398,'register','dca3b6dc8c63d8f02965ca47689c246ef3048bb1','2018-12-13 14:16:25','2018-12-13 13:16:25'),(1739,398,'feeds','761662bdbd8b55afaec621d9a2911de1397d286d','2018-12-13 15:41:53','2018-12-13 14:41:53'),(1747,399,'feeds','f0e2e5a0058546a91566f5e61b2c3148f956e482','2019-02-08 16:01:00','2019-02-08 15:01:00'),(1748,398,'autologin','09154190c479fb9958301b3f4fe9bec7a6716191','2019-02-18 18:26:32','2019-02-18 17:26:32'),(1751,400,'feeds','2fc14679413da44ce9003031ad2d5a2b225e08b4','2019-02-22 03:51:29','2019-02-22 02:51:29'),(1754,401,'feeds','752fe38f5b801bd073f77348e3e5ae6fbcf86082','2019-03-05 17:38:09','2019-03-05 16:38:09'),(1757,402,'autologin','eb86714c15d5b4827347c5d43da4aac09c413557','2019-03-12 11:13:58','2019-03-12 10:13:58'),(1759,402,'feeds','6988788c08c183f50034231d89e95d5909b9bc6c','2019-03-12 11:13:58','2019-03-12 10:13:58'),(1763,403,'feeds','ba82d48e132ad7629bea8bc2473b164686dd0b6c','2019-03-20 15:07:52','2019-03-20 14:07:52'),(1767,404,'feeds','d9fddab6bf0abb1553c7035e28a49f24e44775d3','2019-03-20 15:08:47','2019-03-20 14:08:47'),(1770,405,'feeds','ee98d94d876c19c7d6d992a3114f1d3478b00401','2019-03-28 23:40:29','2019-03-28 22:40:29'),(1773,406,'feeds','d32e1883513c1a6690480cc19e0d0744c704b95a','2019-04-03 09:11:49','2019-04-03 07:11:49'),(1774,407,'register','f25c39dac490c2c2de9d65f25ffa6c85e97fb500','2019-04-07 22:47:40','2019-04-07 20:47:40'),(1782,409,'feeds','7679d3a242bb4eef7acb24a72049ffe887f8a983','2019-04-26 05:56:04','2019-04-26 03:56:04'),(1783,409,'autologin','3eeaffdb6c6ba8de28970d8e6d52c569eb6b77eb','2019-04-26 06:39:03','2019-04-26 04:39:03'),(1787,410,'feeds','eed74896a46a42780d94b1e6ee6aef13891fd057','2019-07-02 12:39:46','2019-07-02 10:39:46'),(1793,411,'feeds','300daafc741300c9ee9967ec31a148e53fc70a7c','2019-07-10 15:38:43','2019-07-10 13:38:43'),(1794,411,'autologin','f8597c605b9da4abcb54d7666e3153c80eb6ec23','2019-07-10 15:45:01','2019-07-10 13:45:01'),(1795,410,'autologin','884ae23c3e95c25f631b01a120f6360b41432b46','2019-07-15 07:52:15','2019-07-15 05:52:15'),(1797,374,'autologin','4b3feb19e8916a18652d1554687f291b3d1ecbbe','2019-07-19 17:47:04','2019-07-19 15:47:04'),(1801,412,'feeds','f6f5331eb5eab0cc2b35170cd083341290d7dc9e','2019-07-25 06:28:44','2019-07-25 04:28:44'),(1806,346,'autologin','75fd88ca2269ca0994ad7e7e0f7530f61916c139','2019-08-28 17:37:55','2019-08-28 15:37:55'),(1809,415,'feeds','16b7d2168e46e989bba7fbffae6e4922c628e261','2019-10-15 10:01:45','2019-10-15 08:01:45'),(1812,416,'register','c33fd745bc9bcf4ad7960d9dd1421b4c9b56355a','2019-10-24 10:50:42','2019-10-24 08:50:42'),(1813,417,'register','469ec6a5b8a379794391da733ab3f213d56130c6','2019-10-24 11:03:10','2019-10-24 09:03:10'),(1815,416,'feeds','6c2aeaf90c02c5ec913b7c20a575411c514bc836','2019-10-24 11:05:04','2019-10-24 09:05:04'),(1817,417,'feeds','9d7de32704a56bb82e50e3218934775957f350f6','2019-10-24 11:07:40','2019-10-24 09:07:40'),(1819,416,'recovery','5da96cd09b546929480b630196bb3bf8f205f448','2019-12-20 13:53:44','2019-12-20 12:53:44'),(1820,404,'autologin','0bf79dbeed69d346f5c21e2b821396fb351a6192','2020-01-07 09:27:27','2020-01-07 08:27:27'),(1823,418,'feeds','2b85a4f80700296c47e634384ae9141ca2e1ceae','2020-02-03 01:57:07','2020-02-03 00:57:07'),(1826,419,'feeds','6da799d936ab9f39ac144309bc3c6afc8935ef39','2020-02-18 08:20:29','2020-02-18 07:20:29'),(1827,420,'register','3f23c7b775c2d67155383047832ce3f8381935fd','2020-02-20 15:57:55','2020-02-20 14:57:55'),(1828,421,'register','276a07e0e04d8b288174f4ecf33f1609ff95a9d4','2020-02-20 16:05:33','2020-02-20 15:05:33'),(1831,421,'feeds','2860e5cd07ab5f9fd4f6ce904f51d59d708851b4','2020-02-27 14:00:38','2020-02-27 13:00:38'),(1833,420,'recovery','d489b3375a267b443d1e345f78db31e58a7d3430','2020-02-27 14:41:49','2020-02-27 13:41:49'),(1835,420,'feeds','b68259fb73d5f1455f29a0703bfa3cd9393fd634','2020-02-28 09:53:59','2020-02-28 08:53:59'),(1836,422,'register','5e7a4b1dfa97162c744b34c5e1be3e1457ecf291','2020-03-03 20:14:20','2020-03-03 19:14:20'),(1839,423,'feeds','e0c22c27209cf58fd64fb0cd39caa86e52f351fd','2020-03-04 02:28:09','2020-03-04 01:28:09'),(1844,424,'register','c3cc68ac0c357f79b042822597861534732a01d3','2020-04-01 17:19:57','2020-04-01 15:19:57'),(1846,422,'feeds','956ac3576c9e4a4a710ce91f6358204de5430fc9','2020-04-07 13:17:23','2020-04-07 11:17:23'),(1849,424,'autologin','5b2d70b350ce0f87f4e463eb483b556a07dbb1e7','2020-05-13 14:02:58','2020-05-13 12:02:58'),(1850,422,'recovery','6111f20aeee4c448c18da8c4cfe71a4aae3163f7','2020-05-13 14:18:41','2020-05-13 12:18:41'),(1852,424,'feeds','72315c51ccf8f5b2ce039a2133f98284214a2e84','2020-06-02 07:38:21','2020-06-02 05:38:21'),(1853,425,'register','e60b59db36f09c54ddf5841fe5591d615e8624de','2020-06-17 01:58:45','2020-06-16 23:58:45'),(1854,425,'recovery','603f52a717f160ad10bec4b15f6fc24a3f0146e0','2020-06-17 02:01:59','2020-06-17 00:01:59'),(1855,426,'register','c44f2974e3469e1f04a07de1deafeef3f458ceb6','2020-06-18 16:02:54','2020-06-18 14:02:54'),(1857,426,'feeds','566da3eae7cdcc9a97476990e1d464db696b67e1','2020-06-18 16:29:02','2020-06-18 14:29:02'),(1859,426,'autologin','d5550419c7aae036733dd9f6492d092850a0e539','2020-06-22 09:39:14','2020-06-22 07:39:14'),(1860,427,'register','e996c799fe0df81dc4cc7becf22c071ceeed21bd','2020-06-24 09:50:48','2020-06-24 07:50:48'),(1862,427,'feeds','9c1748cd8507df9c3fe964a74ade5a5e22a7e8db','2020-06-24 09:55:47','2020-06-24 07:55:47'),(1866,428,'register','1ba619d0d352b8568c750f0b2ae9a87a7ca458c1','2020-07-29 08:57:13','2020-07-29 06:57:13'),(1867,429,'register','ce1ff9e5b6cdab17c89f3ba988c51580af4e89e2','2020-07-29 12:38:36','2020-07-29 10:38:36'),(1869,428,'feeds','bec7903eae58a3d23ddcf411dc3be7d77b73054b','2020-07-29 14:48:05','2020-07-29 12:48:05'),(1871,425,'feeds','a5345c255aaaedb670935e30574b56cc3fd3941c','2020-07-29 23:44:07','2020-07-29 21:44:07'),(1875,430,'feeds','7104ce4dec0c99e6523bba680454dc72603f5ad8','2020-08-12 10:29:31','2020-08-12 08:29:31'),(1876,431,'register','d6c9b30c588096541db2c0f38f68656e68c10407','2020-08-12 15:41:04','2020-08-12 13:41:04'),(1877,431,'recovery','6b69bdd917717c43d5b3dfe69b4092cc0541669b','2020-08-12 17:55:32','2020-08-12 15:55:32'),(1879,431,'feeds','67145a7566e7a145f2f9bfa20dfd66a68a45b6d8','2020-08-13 09:04:58','2020-08-13 07:04:58'),(1883,428,'autologin','a6a414e950655ec2ebf48295e71574289b58b2ea','2020-08-31 10:42:30','2020-08-31 08:42:30'),(1884,432,'register','3b8a0250b1a9721fffb52fdb16fca8501d66d79f','2020-09-04 13:33:53','2020-09-04 11:33:53'),(1890,433,'feeds','aeb70403c54a07272d3e4f4029d4dca76d6c7a77','2020-09-04 13:36:41','2020-09-04 11:36:41'),(1892,435,'feeds','724188f4f7e34f2997eff1274b673092bbb7fe2f','2020-09-04 13:37:22','2020-09-04 11:37:22'),(1894,434,'feeds','11176d42a887670e65b3a2e2887bd9c757dadd3b','2020-09-04 13:37:34','2020-09-04 11:37:34'),(1895,436,'register','c969cef87ec6a9627b91f07425e2047a875d6452','2020-09-04 13:38:10','2020-09-04 11:38:10'),(1897,432,'feeds','2a114633e63875d80b4a3429b84afa742b9c4f42','2020-09-04 13:38:31','2020-09-04 11:38:31'),(1899,436,'feeds','bafe8cea30fd3da8067d69c721a4efc0cc4d3f34','2020-09-04 13:40:02','2020-09-04 11:40:02'),(1901,427,'autologin','1f62be10323caac773423e19e40f4902a5d4fd59','2020-09-10 09:55:59','2020-09-10 07:55:59'),(1902,437,'register','152941b13b8b1355f27ca4f40630d666f0b89810','2020-09-12 17:15:06','2020-09-12 15:15:06'),(1903,438,'register','29fa03669026788f9451c545ae11b2584de92206','2020-09-18 11:14:59','2020-09-18 09:14:59'),(1905,438,'feeds','b9cedf55c31bd1d8fc87c0e3434f4241c37d5d9b','2020-09-21 11:04:17','2020-09-21 09:04:17'),(1909,439,'feeds','35705711bd9d4722978258048bc078be5e2a08e3','2020-09-23 09:18:57','2020-09-23 07:18:57'),(1912,441,'feeds','549d83102abd8c0ffd2b82e3b4b614f8d2b5f0ec','2020-09-23 09:20:12','2020-09-23 07:20:12'),(1914,440,'feeds','8fffa20ceace3f13be11fab7471841dc8dea9708','2020-09-23 09:20:14','2020-09-23 07:20:14'),(1917,442,'feeds','1663353d7cd8e6eb6e48a9d705921f10c9d04d1d','2020-09-28 13:27:09','2020-09-28 11:27:09'),(1920,443,'feeds','84a7565c604b7a9c1246f7832fdfab2d20fe3d95','2020-09-28 15:46:28','2020-09-28 13:46:28'),(1921,422,'autologin','35574c4df793fc91b06eb25020bfa6bae6e448f7','2020-09-29 17:48:17','2020-09-29 15:48:17'),(1922,444,'register','baeb1e0e1924712b6e54b5562c7065c8fc663346','2020-10-11 09:19:35','2020-10-11 07:19:35'),(1923,444,'recovery','b2c32b27b3888c60cb858cba0b959df65096f686','2020-10-11 09:26:14','2020-10-11 07:26:14'),(1926,445,'register','800db94d055b7da772455eb982b121e94688b577','2020-10-21 13:37:56','2020-10-21 11:37:56'),(1927,446,'register','4bf9ac92da62843fc2d83ec032edf44272b63f44','2020-10-21 13:45:24','2020-10-21 11:45:24'),(1931,445,'feeds','f586e09469971535e083c3022543f48a220545cc','2020-10-21 14:26:52','2020-10-21 12:26:52'),(1933,446,'feeds','99607b2c349c0585150ac06392724c0e5e668c93','2020-10-21 14:27:15','2020-10-21 12:27:15'),(1935,442,'recovery','bd1f44a5385ebe62465b4e830ab7eabff997f694','2020-10-21 14:27:55','2020-10-21 12:27:55'),(1936,424,'recovery','4a267b20e6412ebad4bbbb043ea24328b7a79dd4','2020-10-27 23:28:51','2020-10-27 22:28:51'),(1937,443,'autologin','4641452f4a6dbd7ac3cf96129f5241a1766e1295','2020-11-02 11:41:14','2020-11-02 10:41:14'),(1939,448,'register','882cc46af6de93f980905098dbf2c46258e630b5','2020-11-04 18:06:25','2020-11-04 17:06:25'),(1942,447,'feeds','543b6d26c05e8c9c040f8cf769865da291537140','2020-11-04 18:06:49','2020-11-04 17:06:49'),(1945,449,'feeds','02fd99cb12bc6a657f8b6a2f5254e5e88c23a3e4','2020-11-04 18:07:22','2020-11-04 17:07:22'),(1957,450,'feeds','4c4328bea09334feddade84eb1fd652d7c3b8a27','2020-11-04 18:09:42','2020-11-04 17:09:42'),(1960,451,'feeds','47665eb3865b3c91c4d0177aa60205851a273320','2020-11-04 18:47:12','2020-11-04 17:47:12'),(1964,452,'feeds','ef0dbd6a035eca6502bef63692947f98959642b0','2020-11-05 15:27:43','2020-11-05 14:27:43'),(1968,454,'feeds','2e8323c52217f5bbfc438a9669fe236c8fe68212','2020-11-06 17:38:39','2020-11-06 16:38:39'),(1969,454,'autologin','3d0ee0f6fe437c28ab469c1d354f0b989758b21b','2020-11-06 17:38:47','2020-11-06 16:38:47'),(1972,455,'feeds','dd47bb322994d28f25f7979027bce2a17b3f4834','2020-11-09 10:38:58','2020-11-09 09:38:58'),(1977,456,'feeds','25848e3bb96dc4e98ef7c7360e36d1a1a0b648ad','2020-11-12 06:23:27','2020-11-12 05:23:27'),(1984,448,'feeds','033d1284637e1d2ed5aa414ff8bf1c424f254ed9','2020-11-16 14:43:20','2020-11-16 13:43:20'),(1986,447,'autologin','b944f822b666d613d89ea66f0c552c785388ee5b','2020-11-17 09:57:48','2020-11-17 08:57:48'),(1987,286,'autologin','7d94ddf6dab93f34e07532017c6267e2a3dec945','2020-11-19 08:51:19','2020-11-19 07:51:19'),(1989,454,'recovery','e79812f760a7d2e793318072e56475828ac4564d','2020-11-19 09:04:56','2020-11-19 08:04:56'),(1991,450,'autologin','a615d2ddc779df965e99897badb2d7d5ebd06d0d','2020-11-19 10:43:17','2020-11-19 09:43:17'),(1992,449,'autologin','b82078af9bf356cb63adf7f3bec0bd2aba827f83','2020-11-19 16:49:17','2020-11-19 15:49:17'),(2000,398,'autologin','98d6345d544c0f29b59f415d25931e46975cf287','2020-11-30 08:28:31','2020-11-30 07:28:31'),(2001,454,'session','81032740bdae5a1d7fb997993fac20e60c87606b','2020-11-30 11:14:52','2020-12-01 15:54:29'),(2004,450,'autologin','c58aaf415bc498c299930cf37bcdac2a970d353b','2020-11-30 11:15:31','2020-11-30 10:15:31'),(2009,398,'autologin','6be1816c3ccb87a60c98291d4a2509c3db0328b4','2020-12-01 09:35:26','2020-12-01 08:35:26'),(2011,429,'feeds','d3824abe2a4d5e85ed5330e41dd4e2e5449aab8b','2020-12-01 10:13:41','2020-12-01 09:13:41'),(2012,452,'session','2d83c3c855ee2c9ca29db2ddcfd130283df204e1','2020-12-01 12:57:24','2020-12-01 12:06:02'),(2016,459,'register','e80b882c8fba99adbedc92376846e74b2e2bb705','2020-12-01 13:48:42','2020-12-01 12:48:42'),(2021,450,'autologin','d6c515f746e458d60cd69703f1b9de7415bb44a8','2020-12-01 18:28:47','2020-12-01 17:28:47'),(2028,461,'feeds','bcbc4653c4e1b44966f4328547f67f84f1daf4db','2020-12-02 15:01:21','2020-12-02 14:01:21'),(2031,426,'session','6f8e8664bacb2a91c4bcab8988a20a3a8e60ad3c','2020-12-03 11:43:07','2020-12-03 10:44:00'),(2035,1,'api','728a5f3becff99d1b0e979a0fe797b61c6a1d4ee','2020-12-03 16:19:20','2020-12-03 15:19:20'),(2047,449,'session','565dc9ac74bac1fdeaf9b40d8d4f0c7699005423','2020-12-04 14:04:17','2020-12-04 15:11:45'),(2048,454,'session','6c9d85da2a9f5674047ed1af36c387185431f4c2','2020-12-04 14:07:43','2020-12-04 15:28:28'),(2049,450,'session','ee54b3d16b2563af2fac54cb6c3da73a4be17f4d','2020-12-04 14:08:19','2020-12-04 13:17:28'),(2062,449,'session','fa4bccc3e9ed79ede166e9788c07787f2ae566fa','2020-12-07 14:13:31','2020-12-07 13:13:41'),(2063,454,'session','1bc8aed26373e1443f37a1a713700baf359d6214','2020-12-07 14:14:33','2020-12-07 13:14:35'),(2066,462,'feeds','3c77b4b76e5c16d20d1946248684c49c4546df95','2020-12-07 16:20:50','2020-12-07 15:20:50'),(2067,347,'session','0b3eb2fe1407d1007d862d531b7ae8e1ae3d89ca','2020-12-07 17:59:51','2020-12-07 17:00:11'),(2088,424,'autologin','596fc95428ef55418858c2f6e97ce604e1d62f5a','2020-12-09 11:07:48','2020-12-09 10:07:48'),(2093,454,'session','a4c39f3480e4c3eaea9d2b13ecde5fa9c950e396','2020-12-09 15:12:55','2020-12-09 14:15:05'),(2123,377,'session','72c7a7a6a6f30eb2a4faae8da297790fbae5d9d4','2020-12-15 22:41:04','2020-12-15 21:43:26'),(2186,463,'session','c9fa852389c9351766e2bcf0a90c485d1ad65947','2020-12-24 15:36:26','2020-12-24 14:37:30'),(2187,463,'feeds','224f9b5c3950cd631e06636285087c1b77596312','2020-12-24 15:36:26','2020-12-24 14:36:26'),(2206,448,'session','16a4185dcb53eee8df204833311eb58101847e6c','2021-01-07 18:44:39','2021-01-07 17:46:06'),(2228,459,'feeds','3b7732952c22c5927ff0b941dd45d338908c3471','2021-01-12 16:17:27','2021-01-12 15:17:27'),(2236,461,'session','287eff71fdf107b7c89d5b1636c9b34ca068b548','2021-01-13 14:42:24','2021-01-13 13:45:30'),(2237,461,'autologin','1908d5b051d77da333c83ae67dc8937b7ff9888b','2021-01-13 14:42:24','2021-01-13 13:42:24'),(2243,461,'session','81636063a8aff59c55f3e139e0e0102ec5f496f3','2021-01-14 10:29:06','2021-01-14 15:34:21'),(2244,461,'autologin','2bf403a7cdb717679e26dd76d10fe565ded8c877','2021-01-14 10:29:06','2021-01-14 09:29:06'),(2255,461,'session','c7b6725c7d0b3c3c77ed1b6afe0aa35832de9109','2021-01-18 08:10:41','2021-01-18 07:17:04'),(2256,461,'autologin','4ca614b946231e41da061759b334f4cb537480bc','2021-01-18 08:10:41','2021-01-18 07:10:41'),(2258,461,'session','ec2494358136addef68463a7711c46c82507e650','2021-01-18 13:00:43','2021-01-18 12:02:15'),(2259,461,'autologin','ab6c8d9aa5c91dadf006dc6ac3f586eb27987d6d','2021-01-18 13:00:43','2021-01-18 12:00:43'),(2267,443,'autologin','adea0f56847dc14408c41758a203e254f9e944e4','2021-01-19 07:30:44','2021-01-19 06:30:44'),(2269,461,'session','48f4362b0e9263960333b6f120bda619840c7fd0','2021-01-19 09:15:27','2021-01-19 08:16:11'),(2270,461,'autologin','cefda064ab0e936fd233b4ffefa6fa07144988aa','2021-01-19 09:15:27','2021-01-19 08:15:27'),(2272,461,'session','7203f99b979dba6020b198ffc1e521d578d4bc11','2021-01-19 13:25:36','2021-01-19 13:55:52'),(2273,461,'autologin','038e3172f4bb54672139e6dbe9979b38d620b74b','2021-01-19 13:25:36','2021-01-19 12:25:36'),(2276,461,'session','1873f940235173b28f93e72d8c7ea856a843d302','2021-01-20 10:55:09','2021-01-20 13:10:59'),(2277,461,'autologin','de68a446947cdb9fe073f12fd4f9efcb387788a8','2021-01-20 10:55:09','2021-01-20 09:55:09'),(2281,461,'session','fa4a427537fd408dbae89aed634eafc2e9d66190','2021-01-21 09:10:27','2021-01-21 08:17:57'),(2282,461,'autologin','0cab99b24079979da852bc64e4c371726b869c97','2021-01-21 09:10:27','2021-01-21 08:10:27'),(2285,443,'autologin','bd944bbebec4997f56e940039f7c6332e0d3f594','2021-01-21 10:18:06','2021-01-21 09:18:06'),(2323,443,'autologin','56e90acb693852525436524cfc94b1b61fe1ff8e','2021-01-25 08:59:13','2021-01-25 07:59:13'),(2339,443,'autologin','b2181d02958f68e42d0dea10edb6c7ceb7481731','2021-01-27 09:41:02','2021-01-27 08:41:02'),(2379,432,'autologin','e2bf6628dab103336b8e5479450d3fec3eb86e4d','2021-02-01 10:15:58','2021-02-01 09:15:58'),(2385,443,'autologin','14c5866f44eb4aedf3475396dbd4a6aec7bd2706','2021-02-03 06:44:06','2021-02-03 05:44:06'),(2396,443,'autologin','141594e5c87693dfe354577fe83ea3e445f785a5','2021-02-04 14:19:31','2021-02-04 13:19:31'),(2424,443,'session','89dcfb46ca713211a933ca689e70712ce61b6a13','2021-02-04 15:11:56','2021-02-04 14:11:56'),(2425,443,'session','344d9d01048eda527b74653227fef03f400f6b60','2021-02-04 15:11:58','2021-02-04 14:11:58'),(2426,443,'session','d8438f172699b018015e8d5bff3a9f63d2d56598','2021-02-05 08:07:58','2021-02-05 07:07:58'),(2427,443,'session','ab84e2e6fdd007c067357e2ca678aeef18cbd339','2021-02-05 08:08:02','2021-02-05 07:08:02'),(2428,443,'session','10085219e1110bde929ba8987503dfa36cbce4f4','2021-02-05 08:09:07','2021-02-05 07:09:07'),(2440,241,'session','d20ae9654c4cdc02e3fba9d1f64580b340b0721f','2021-02-10 15:55:46','2021-02-10 14:56:09'),(2447,464,'session','a326671ffc01dbd8bdf26ac1e1ec86fdd1003543','2021-02-12 12:04:09','2021-02-12 16:16:00'),(2448,464,'feeds','52218164299772e74477eec520c9bb312a92eca8','2021-02-12 12:04:09','2021-02-12 11:04:09'),(2456,427,'session','2a9446c765020fc63b19c9afc95677c92ba45a68','2021-02-12 17:15:26','2021-02-12 16:15:26'),(2461,465,'register','797597bd5f69aff5029660e294c983286205e38b','2021-02-15 09:19:12','2021-02-15 08:19:12'),(2464,450,'recovery','000ad12a68bec0cf6f9d462f1f494c0b31baba78','2021-02-15 10:54:48','2021-02-15 09:54:48'),(2465,450,'session','4a3ebe0e22a6fa27ed396b39e0c28b02537e8f48','2021-02-15 10:56:02','2021-02-15 10:02:19'),(2479,466,'register','20f032b6616fac7dd8db43bc0e50df5c3927b6fc','2021-02-16 09:20:27','2021-02-16 08:20:27'),(2480,467,'register','fb646ef39ef74d9603ffba8b12e4f475ae45c610','2021-02-16 09:21:02','2021-02-16 08:21:02'),(2481,467,'session','b688354f77bac686701c40a929c2e39a325349d3','2021-02-16 09:25:01','2021-02-16 08:28:18'),(2482,467,'autologin','0563337070d68708f1392e7f08de0e5a1b19c989','2021-02-16 09:25:01','2021-02-16 08:25:01'),(2483,467,'feeds','b443ad87c5607085f20746d30ca4340e56e04c42','2021-02-16 09:25:01','2021-02-16 08:25:01'),(2484,466,'session','b30c19758d37217833ff67a0e3aeda947548e26b','2021-02-16 09:25:45','2021-02-16 08:28:50'),(2485,466,'feeds','3e2a81b594b028b63f1420e1a1028badc93d2bcf','2021-02-16 09:25:45','2021-02-16 08:25:45'),(2486,466,'session','edc02b59b62d3c528d5d540ee98cafe6d5e98293','2021-02-16 09:55:13','2021-02-16 08:55:13'),(2489,398,'autologin','ceae0a482eaaca182bfa00bff164e15cdcfcd750','2021-02-16 14:13:48','2021-02-16 13:13:48'),(2491,466,'session','8e8bde8be0738ce373be6c334c286c3189fb0bed','2021-02-16 14:34:19','2021-02-16 15:05:05'),(2494,443,'session','f21f1087a47247d8bf92f00bde2d2505b2afa220','2021-02-17 08:40:56','2021-02-17 07:41:26'),(2495,464,'session','fa823b2c8d1e973c94618baac6543f932c7d30fe','2021-02-17 11:04:38','2021-02-17 10:05:05'),(2497,450,'session','dfe224a8e1f3a76bd1a1db6f9377787c5634c152','2021-02-17 15:50:57','2021-02-17 14:51:10'),(2498,450,'autologin','f86b1f0a94e674b5ce257a31c2644b04acc3287c','2021-02-17 15:50:57','2021-02-17 14:50:57'),(2502,466,'session','b61e07ff0f36b0d9269f5d8b20bd7f37baa64cab','2021-02-18 10:52:34','2021-02-18 09:53:00'),(2503,466,'session','a65c1d1dff51caf2d273046d1b97ba4ffb83fe8b','2021-02-18 14:33:46','2021-02-18 15:49:57'),(2504,466,'session','2127552dab3f54931f2e4822770425fc436ab823','2021-02-18 16:50:34','2021-02-18 15:50:44'),(2515,468,'register','f5844401167877b50906d93d4f06bda2bfa0cf64','2021-02-22 11:10:12','2021-02-22 10:10:12'),(2520,471,'register','01d49ff97b4a2e912c8d1d5e4fdbf2d5b90f29a4','2021-02-22 17:28:31','2021-02-22 16:28:31'),(2521,469,'register','d563a878fa524a75c3c8edcecec02852374a3af5','2021-02-22 18:06:36','2021-02-22 17:06:36'),(2522,470,'register','daac46090dacf44d9a21346547190825cd8a4e02','2021-02-22 18:15:46','2021-02-22 17:15:46'),(2526,468,'session','9c714dfd4fd14bad5714e14f35ef6cd7d4b8dc4f','2021-02-23 08:30:30','2021-02-23 09:23:17'),(2527,468,'autologin','1cdb6662e3e414a2a9182b37d05ec3ab033bd3f0','2021-02-23 08:30:30','2021-02-23 07:30:30'),(2528,468,'feeds','b10c7a0b76fbb5fd4184010569179afc54f92b5e','2021-02-23 08:30:30','2021-02-23 07:30:30'),(2530,469,'session','9eea13367b28105a856f074286bc25542e6cac4e','2021-02-23 08:47:01','2021-02-23 07:47:01'),(2531,469,'autologin','71d39371f189323a7903e13c6135e0f43ee70898','2021-02-23 08:47:01','2021-02-23 07:47:01'),(2532,469,'feeds','fd7f3691d73593e3a23c53b271bcb1c65958e8c2','2021-02-23 08:47:01','2021-02-23 07:47:01'),(2534,471,'autologin','2b6434522aeba581e814fd9f533c3cacb1597b94','2021-02-23 08:54:46','2021-02-23 07:54:46'),(2535,471,'feeds','7ff0fe69f60767d13fb56e84e7a2e67e13559e93','2021-02-23 08:54:46','2021-02-23 07:54:46'),(2536,469,'session','d314f9ff08cbb102fd530befcc2da06d686f5e38','2021-02-23 08:56:32','2021-02-23 07:56:32'),(2537,469,'autologin','25b0d117524693697aacd6f5defdc02848f67815','2021-02-23 08:56:32','2021-02-23 07:56:32'),(2540,472,'session','2f2423583a299d9c39efc2dfc0ae2b713de5a3a9','2021-02-23 09:04:38','2021-02-23 09:02:47'),(2541,472,'feeds','1d730c88c8efdcb6153f780e18f1aa7a282071f7','2021-02-23 09:04:39','2021-02-23 08:04:39'),(2542,469,'session','5d45295837fb570964e18aa185e04281f011a6cd','2021-02-23 09:05:25','2021-02-23 09:02:52'),(2543,470,'session','197178154a9c082452b18c2403bbf957cb892ff1','2021-02-23 09:06:13','2021-02-23 12:47:59'),(2544,470,'feeds','4e481da4af7445253f7b663100f93000fc8d0a8e','2021-02-23 09:06:13','2021-02-23 08:06:13'),(2547,473,'session','e4971a4c87a4f7c2c6def804d64f6134812c1a28','2021-02-23 09:12:18','2021-02-23 09:04:17'),(2548,473,'autologin','9fd5f25ca125a5a0fa31d369e40210539255b1eb','2021-02-23 09:12:18','2021-02-23 08:12:18'),(2549,473,'feeds','5a3d9a9cd94fd75eef7e13715548e8a83a938397','2021-02-23 09:12:18','2021-02-23 08:12:18'),(2554,473,'session','2b19b2b1635906876c458b71b0be3c92c277d269','2021-02-24 08:39:30','2021-02-24 10:07:07'),(2556,470,'session','2a0077bc91d158e9db6a66835aaa9dd9c8dfb6c4','2021-02-24 11:04:05','2021-02-24 10:05:58'),(2557,469,'session','cada93c646365da361ea805374cf51958002ad56','2021-02-24 11:06:20','2021-02-24 14:31:56'),(2558,469,'autologin','8d1c99de39f283eff0def268372a55e53e834d8a','2021-02-24 11:06:20','2021-02-24 10:06:20'),(2559,470,'session','82859419b8ea23d5c5b45639be5319e3aa561cd4','2021-02-24 11:06:26','2021-02-24 14:31:59'),(2561,471,'autologin','2daa0427cecc839a853b5adfd650d03b414d7ad4','2021-02-24 11:06:45','2021-02-24 10:06:45'),(2562,472,'session','87e15c0aec3a524446bd8488cb78fb8ef12cd07f','2021-02-24 11:06:57','2021-02-24 10:07:09'),(2563,468,'session','ecd382fb58aef82ddf02bbfe350bce4fe7bb467d','2021-02-24 11:07:15','2021-02-24 10:08:05'),(2564,468,'autologin','313d75d00bc6bf1ee9886a9674eaaaf7502b12dd','2021-02-24 11:07:15','2021-02-24 10:07:15'),(2565,474,'register','7ee46074266fcd11839484ca7f4b41a7293068d5','2021-02-24 14:37:25','2021-02-24 13:37:25'),(2566,472,'session','0bac0665ef60c765629641d9fb98d4a5ca19b37b','2021-02-24 15:15:11','2021-02-24 16:47:31'),(2567,468,'session','1bd76d10c485920e26c7f7bcf7a24a948ec22bad','2021-02-24 15:15:18','2021-02-24 14:36:25'),(2568,473,'session','46a13b20ddb042489f0d41438b60a69ef1ce811a','2021-02-24 15:32:06','2021-02-24 15:20:20'),(2569,473,'autologin','6f7533152e50f7d33b0eb2dd59b6580335f3252e','2021-02-24 15:32:06','2021-02-24 14:32:06'),(2575,474,'feeds','ad2920fb8bd0bec3c3c0355d56796615ddfe1d4a','2021-02-25 11:02:16','2021-02-25 10:02:16'),(2583,475,'register','51ab6ccf71b48cabe673d180fe22ccb58a3d5c78','2021-02-26 18:38:36','2021-02-26 17:38:36'),(2594,468,'session','3ab3dd29b2d1637aebbdafa5cf7f7745ae7ef582','2021-03-02 16:23:33','2021-03-02 15:23:52'),(2595,443,'session','1d45334780da70a5e34a7c608cd8839d12205ea4','2021-03-03 08:28:35','2021-03-03 07:34:24'),(2596,443,'autologin','36409520abcb72344460f5d97d3fccf9ffc0ba0f','2021-03-03 08:28:35','2021-03-03 07:28:35'),(2618,461,'session','e1e166472e862814e4fab9ff28e0348cd47d7973','2021-03-08 10:11:30','2021-03-08 12:22:18'),(2619,461,'autologin','e50a8abbb350b056518696e0f9afc8c3841172f1','2021-03-08 10:11:30','2021-03-08 09:11:30'),(2631,443,'session','c708e1c08859eed5f2833018b60ba9805226a7e0','2021-03-10 09:01:53','2021-03-10 08:25:48'),(2634,459,'autologin','844cba5195ffac3fbc65379594cfc4d30dc95b67','2021-03-10 12:22:14','2021-03-10 11:22:14'),(2641,476,'register','ac205160e1a0a840235642e852b5f5f60e34e3e0','2021-03-10 23:57:42','2021-03-10 22:57:42'),(2649,432,'autologin','0c0371f6b5476bef6b9408122964bd8ec7a5b968','2021-03-15 09:46:22','2021-03-15 08:46:22'),(2665,461,'session','082d4307d1d37e10ff63c3dc88a7b1d9ad341991','2021-03-18 10:19:07','2021-03-18 13:09:10'),(2666,461,'autologin','bd3867614715f4ed06d543405a6ad77893568ade','2021-03-18 10:19:08','2021-03-18 09:19:08'),(2671,477,'register','57e1c31acbfa6b739f2c941bc89b48eec665ba58','2021-03-19 10:08:24','2021-03-19 09:08:24'),(2674,477,'feeds','5fd512aa1c926468aead2f781811de67be5051bb','2021-03-19 10:14:52','2021-03-19 09:14:52'),(2677,467,'session','247d4c00274df2ab2d2f880c0c11a45330e1f44c','2021-03-19 10:41:20','2021-03-19 10:06:01'),(2683,432,'autologin','f4c6c553ffafed1da6728bcd8029e5686ccb0bc7','2021-03-22 09:27:12','2021-03-22 08:27:12'),(2697,398,'session','848357413a10fc7fc9421c262e6675dd3791fb3b','2021-03-26 11:46:23','2021-03-26 10:46:39'),(2700,398,'session','51bb53473004952128f6aac5773d3a6c5b69dd5e','2021-03-29 16:47:14','2021-03-29 14:48:23'),(2712,443,'session','2f7291362f42aabb23545c4dda6246078abc4284','2021-04-07 07:23:49','2021-04-07 06:40:39'),(2713,443,'autologin','9918e4086cc2499d590dea20696dcbb3673d4e3d','2021-04-07 07:23:49','2021-04-07 05:23:49'),(2714,398,'session','163e6df67f5cccb93a96e7f12707101ffd623c83','2021-04-07 08:36:35','2021-04-07 08:35:35'),(2716,398,'session','94894b8f7f21ff8a8f579b058886fe313fa13d64','2021-04-07 10:49:00','2021-04-07 08:49:15'),(2717,398,'session','ce98664a80322a689ff40f700e7e36747ec1af9b','2021-04-07 11:47:51','2021-04-07 09:48:09'),(2721,398,'session','2c1de32b1aeba3daf95159a89ff97653134cebb0','2021-04-08 09:44:20','2021-04-08 07:50:22'),(2727,431,'autologin','1a5c878c8a89bb300178d2132758ded0513f6350','2021-04-08 13:57:52','2021-04-08 11:57:52'),(2750,431,'session','b710113dc161890fc787795b8ebd8fde971072c3','2021-04-12 15:49:14','2021-04-12 17:00:38'),(2754,443,'session','2030e54d01cd0fb7e3040879547ce299b2dbdbc4','2021-04-14 09:23:35','2021-04-14 07:24:09'),(2755,443,'autologin','609abf726eb61b54d6de41fb70c3ba6e489abf52','2021-04-14 09:23:35','2021-04-14 07:23:35'),(2767,328,'autologin','78dd1ed02e94033c46507a7c67fdd0727ffad8d2','2021-04-15 16:35:49','2021-04-15 14:35:49'),(2775,466,'session','3dc3b0b883fd1849d2a52b4f097f06b187b96128','2021-04-19 11:28:56','2021-04-19 09:30:30'),(2778,462,'session','994ffd5aa14ce42bc2e5b53af7c2efb2ea84c785','2021-04-19 18:03:40','2021-04-19 16:04:21'),(2779,462,'session','a6ae8e108d5abf7c72d43cb3aa403c82b328b123','2021-04-20 09:47:03','2021-04-20 07:48:08'),(2784,462,'session','3a5c20e6e8fef5c8f5c669a842594b06dfd82ac1','2021-04-22 11:52:41','2021-04-22 09:52:46'),(2791,223,'session','bcf21bc83270a71d2146e7da7d1d04d33b275dc0','2021-04-23 12:07:20','2021-04-23 10:41:22'),(2796,429,'session','4ef7197ee7ef3fc2c29c588a08978af6e124ab52','2021-04-26 17:54:12','2021-04-26 15:58:12'),(2802,479,'register','80188ad2e089ffeedd80719f62daf978e90ee005','2021-04-28 04:29:22','2021-04-28 02:29:22'),(2804,474,'autologin','9ab18ce88bbff09f0e9237e7cb42a0d98c8bc7ab','2021-04-28 11:44:53','2021-04-28 09:44:53'),(2806,477,'session','b262af1c43040fd4feb0db6c79890a416c2e6f75','2021-04-28 11:47:03','2021-04-28 09:49:33'),(2809,477,'session','82676e3441f3e27c6f27f2beffacf7364af86f39','2021-04-28 18:05:44','2021-04-28 16:08:00'),(2818,398,'session','7df63ab7064b95cdc9db9441d4813f218e42bf3b','2021-04-30 08:07:40','2021-04-30 06:09:00'),(2823,474,'autologin','786fe1ba4d17ce0555c894e5e0aaa7193797966a','2021-04-30 11:36:50','2021-04-30 09:36:50'),(2826,426,'session','6e29ba1a8415ed40adc892aa90735bc03fe47e9f','2021-04-30 16:01:59','2021-04-30 14:02:27'),(2832,462,'session','244fceda1306ffa54ef913b00eae4d4780ba4ed7','2021-05-03 09:05:32','2021-05-03 07:05:52'),(2838,477,'session','012b91c3aace98d913a9e1330e4268e60456d01e','2021-05-04 10:01:21','2021-05-04 08:03:29'),(2844,462,'session','8dc3e35d10c5cfad234eded6e383ccaf2e469479','2021-05-04 18:05:30','2021-05-04 16:05:48'),(2849,462,'session','4dc1d7a2c7249d3ac8f2894f534f77e3404e1513','2021-05-05 16:23:52','2021-05-05 14:24:01'),(2851,459,'session','5fca47d43481e1dd4b0d40f6a5f490a7cc806225','2021-05-06 11:04:32','2021-05-06 11:10:23'),(2861,429,'session','a64b5a4ca0ffb69251f8e854633faf7a80d881e5','2021-05-08 13:19:22','2021-05-08 11:19:35'),(2862,398,'session','4e379c4bcae16ed15bf23a0722732af9ca50213b','2021-05-10 09:18:21','2021-05-10 07:19:03'),(2866,462,'session','f68b0f24bc1cfbdc29df2c5fd73c8687c3606b88','2021-05-12 13:18:03','2021-05-12 11:30:00'),(2869,93,'recovery','6f13b8119393d4c03f021e02816196faaeaec1ae','2021-05-17 19:37:56','2021-05-17 17:37:56'),(2874,432,'autologin','275c980371a81c4956a1648aee75925440b12960','2021-05-18 15:28:53','2021-05-18 13:28:53'),(2875,480,'register','7211102f4a6b27fa1ce03ccf8f597e57113e4eb3','2021-05-18 22:04:57','2021-05-18 20:04:57'),(2876,438,'session','6089e6e71dadf9646512edb5fe3e58ce28c1a9e7','2021-05-19 16:23:30','2021-05-19 14:26:12'),(2897,481,'register','45ca237e6bfe00e91d2df275b92b8390a31258b8','2021-06-01 09:05:57','2021-06-01 07:05:57'),(2908,462,'session','23f2b34294a5c3670eb8923e7ec3719681ea7ec1','2021-06-02 16:40:07','2021-06-02 14:41:47'),(2916,482,'register','ea8c3ac7471b71b5fc4aa442f95a9e1b32606cfd','2021-06-07 08:38:44','2021-06-07 06:38:44'),(2934,398,'session','0856b7c5f047c826a797c772dab5f7dcdb9b4b50','2021-06-14 08:37:19','2021-06-14 06:38:50'),(2935,398,'session','c8114d8de13948724d7e1f7968c668af7e8ed62f','2021-06-14 08:39:34','2021-06-14 06:40:19'),(2938,425,'session','4fd9210718629bcb54d503f1a4650f554b21b079','2021-06-15 16:13:38','2021-06-15 14:15:28'),(2948,451,'session','436758a2de1e8c6cf3c219c1a64e6db88373d378','2021-06-16 17:23:50','2021-06-16 15:25:05'),(2952,432,'autologin','46da2df4dc62355670a2d21fcd0fad33a9281cd7','2021-06-21 09:51:54','2021-06-21 07:51:54'),(2963,474,'autologin','3a9a2c4cf4b96f4c5374a34e2e653294772ed9e3','2021-06-24 10:32:16','2021-06-24 08:32:16'),(2974,347,'session','4917bfedbeaa54e5aeb3b0f7b9c59bc2ca613aed','2021-06-25 15:03:29','2021-06-25 13:05:49'),(2977,459,'session','1c33753607541ed16cc14753baa3b1db426b0b38','2021-06-28 09:30:58','2021-06-28 07:31:25'),(2985,483,'register','6867b9391868325dd9a58c6341df6b5b74ba4d73','2021-06-30 16:58:19','2021-06-30 14:58:19'),(2986,484,'register','7ac3581a4bd57452484073a9e83c70abfbd921fb','2021-06-30 17:01:02','2021-06-30 15:01:02'),(2989,483,'session','507f040d288190f3a27379b0617a0e6b76775b70','2021-07-01 08:09:32','2021-07-01 06:10:21'),(2990,483,'feeds','57e236a3098d91a0725b86c7165938ab4f586847','2021-07-01 08:09:37','2021-07-01 06:09:37'),(2991,485,'register','3902af1c9c07a402e1a975827168719bbbc52852','2021-07-01 09:01:33','2021-07-01 07:01:33'),(2992,486,'register','4b4eef8b9af3a15214df33e36d9f0ab90e364540','2021-07-01 10:03:54','2021-07-01 08:03:54'),(2995,485,'feeds','885300d304aaad9115755d7b88885b49671f40d7','2021-07-01 10:43:34','2021-07-01 08:43:34'),(2997,486,'feeds','da360f084a544a654b223d4f45cc23f7c87922b6','2021-07-01 10:59:54','2021-07-01 08:59:54'),(2999,487,'register','8916f280b82317d3005465e1510633e867bc56dd','2021-07-01 11:46:01','2021-07-01 09:46:01'),(3000,487,'session','e5ff000893c697b4784b720958a0b390aebbbedb','2021-07-01 14:01:37','2021-07-01 12:02:01'),(3001,487,'feeds','eddeb2a52889d6d2ed72b5d2a319ff4f3ec23389','2021-07-01 14:01:42','2021-07-01 12:01:42'),(3002,484,'session','cec29bcdcce11d887c1d40205df2da1fa5e0f003','2021-07-01 14:06:01','2021-07-01 12:06:39'),(3003,484,'feeds','7b8a0ea38707ad1a624b1790e32179e1d2804c37','2021-07-01 14:06:06','2021-07-01 12:06:06'),(3007,328,'autologin','8e5041c053500a08fc79fe1ec19f8f3b8b59bb2a','2021-07-02 16:06:57','2021-07-02 14:06:57'),(3009,485,'session','1cb153e367f25a21a044669cb68c0c91b4eaa7e3','2021-07-04 11:01:12','2021-07-04 10:35:39'),(3010,483,'session','7c7ad526c4ddb90c66ff3a79e196e7b39037505f','2021-07-04 21:09:56','2021-07-04 19:09:56'),(3011,485,'session','5c9d62c1d4b4c95779868c340879fa057a37dcf7','2021-07-05 08:17:23','2021-07-05 06:35:47'),(3013,486,'session','3e4f2f7f6b98d0afcd691bb2b536a8dd0888b098','2021-07-05 08:35:44','2021-07-05 13:37:23'),(3014,483,'session','04104f258727e076ed034c9b36c36b5f145de958','2021-07-05 08:35:45','2021-07-05 13:39:04'),(3015,487,'session','361ea3ae8d09114a80a02848f9bb6e97bdd0c805','2021-07-05 08:36:14','2021-07-05 13:37:38'),(3016,484,'session','ee2fa66048d5f68ca9a8b26b8b8e1f8bf5b6a98c','2021-07-05 08:36:15','2021-07-05 13:40:57'),(3017,485,'session','a6beca32a1884e11821940438a4d27489674c104','2021-07-05 15:34:03','2021-07-05 15:44:35'),(3020,484,'session','ba9b0339019c0d1e6cf3292288f1e33743a9c058','2021-07-05 17:36:50','2021-07-05 15:42:11'),(3021,485,'session','18076aa0913a949b7afc424c91a4d6eecdb0788c','2021-07-06 08:54:10','2021-07-06 09:14:55'),(3022,486,'session','5404ebcdd986a2510ce3f862188d02500b057262','2021-07-06 08:57:27','2021-07-06 06:58:10'),(3023,450,'session','c5a7d4ec0c9f27c129fa4053f53ae51e2a37fb94','2021-07-06 08:58:01','2021-07-06 06:58:31'),(3027,483,'session','a58eccdb8e7cd6afbfc1944ce17947c1589dd008','2021-07-06 16:05:27','2021-07-06 15:15:06'),(3028,484,'session','9d2d6c23d2b0b3f387c3510cca85d5e91519bda2','2021-07-06 16:05:49','2021-07-06 15:06:14'),(3029,486,'session','089af15cb75c86a3e771359efe73c69884b4cc89','2021-07-06 16:06:11','2021-07-06 15:15:33'),(3030,485,'session','b76ce7a0548bdf545931ea8f5e7f574c3e9406a5','2021-07-06 16:06:19','2021-07-06 15:06:02'),(3031,487,'session','e11a2ce835c1777d17a2c1dca6741e7e240c7015','2021-07-06 16:06:38','2021-07-06 15:06:25'),(3032,483,'session','eff299fdd5c6e312e1010955e0debd43898d1a6b','2021-07-07 08:19:41','2021-07-07 06:22:24'),(3033,485,'session','486c692e2b390e852108318f7b2aaaad4c8ec1c0','2021-07-07 08:21:28','2021-07-07 06:21:37'),(3035,485,'session','f351efa38a6d30056469066c3d5e773de9a7747e','2021-07-07 08:46:38','2021-07-07 06:49:39'),(3036,484,'session','ae3f6d24249dd28b30c5d51574e90c6c0b8a71f4','2021-07-07 11:40:29','2021-07-07 09:41:39'),(3042,474,'autologin','7a1833410c44a13bb83176dbf707d03cfe2eb8a2','2021-07-13 14:39:45','2021-07-13 12:39:45'),(3046,349,'session','6ca6c31e47e34ded7f1e9c993501134b04241a9b','2021-07-16 11:54:28','2021-07-16 12:40:08'),(3049,459,'session','03a98edf2a586cfa8e0f8b39e7ee01bb67447099','2021-07-19 12:14:00','2021-07-19 13:12:18'),(3051,459,'session','d5a7a5a4330db6e2c7eaf89b898614dda37f159e','2021-07-19 18:03:01','2021-07-19 16:23:42'),(3052,459,'session','b3de81ad866ae4a5ba924a6811530f94f55445dd','2021-07-20 09:33:02','2021-07-20 07:55:39'),(3053,459,'session','1945385a6254a06e1c9c34215692e5efa8cba2dc','2021-07-20 10:09:00','2021-07-20 13:08:06'),(3057,459,'session','1253cedb3071eea53c030bbc0d22d9287cb964c0','2021-07-21 17:11:35','2021-07-21 15:16:22'),(3061,459,'session','30aacb8fd74cd0d3129e490863450e4870967c4d','2021-07-22 14:47:56','2021-07-22 13:05:44'),(3072,422,'session','c1a6a4bd9bc0b156ddb635889ea2e6ea6820f483','2021-07-30 12:46:31','2021-07-30 10:46:48'),(3099,459,'session','ab743e3222ef47b975de2bd7093d8a1825d5c83a','2021-08-16 10:47:09','2021-08-16 08:47:15'),(3101,459,'session','b6522009faa0781015dadb637de7d09549326fa4','2021-08-17 09:58:12','2021-08-17 08:04:35'),(3103,489,'register','55955b97f53adb02c92eec40136e5be97e6c6d5a','2021-08-17 12:08:55','2021-08-17 10:08:55'),(3109,490,'feeds','2b426d516c0aa70052c7199d6b48f04aa189a2df','2021-08-19 11:24:23','2021-08-19 09:24:23'),(3114,489,'autologin','5c4e64a86c86200edb1775774197204d3d1d3265','2021-08-20 14:19:25','2021-08-20 12:19:25'),(3115,489,'feeds','f6f27dc105ac54e4f845b008a728e33cb11e678f','2021-08-20 14:19:25','2021-08-20 12:19:25'),(3126,490,'session','5b8f5b67dac7068219eb31bc7771225af8acd770','2021-08-24 09:02:53','2021-08-24 14:05:05'),(3133,490,'session','3ba66703cc10aa1fc0fb656cb4510a70b18e7ce6','2021-08-25 10:09:40','2021-08-25 08:09:58'),(3135,490,'session','ca80a0b399d9835612ca2af6bc117ffdbe325495','2021-08-25 15:17:00','2021-08-25 17:52:57'),(3138,490,'session','1c4adc13c48e65b2f0e05e252a86128e180517ad','2021-08-26 08:34:12','2021-08-26 07:01:50'),(3161,471,'session','c36828d830f70a1bee5e99b447efed1a6b97b280','2021-09-13 08:45:59','2021-09-13 06:46:00'),(3162,471,'autologin','eb12347d69f2934f554ef70430657ca9c7e22417','2021-09-13 08:45:59','2021-09-13 06:45:59'),(3165,491,'register','a68be749de1c5b53d5505ea63d36a502b84b995e','2021-09-13 23:51:10','2021-09-13 21:51:10'),(3173,490,'session','38dc862bee28e43dd71852a8223de3603d77d3a5','2021-09-16 17:59:43','2021-09-16 15:59:57'),(3187,474,'autologin','d14ebccc9744708c3f4cc95feba253cc9d94a44a','2021-09-21 12:36:18','2021-09-21 10:36:18'),(3191,471,'session','06baab4c07467e6c914b186d39fa6c9ed791b083','2021-09-22 09:52:26','2021-09-22 07:52:26'),(3196,492,'feeds','882dd265b6f7af364fe4ebb4c894dae3d5d759df','2021-09-22 16:42:25','2021-09-22 14:42:25'),(3218,489,'autologin','938eb586872a8fe0f50d7cdd2d2dd211ab32ef76','2021-09-28 10:38:22','2021-09-28 08:38:22'),(3233,471,'session','13647d81452277c5e683398d77636aa624875732','2021-10-05 11:32:28','2021-10-05 09:32:28'),(3241,259,'session','87499a37f239ecdf10f3b3834f81472e2d0f28b6','2021-10-08 10:09:35','2021-10-08 08:12:41'),(3266,494,'register','5265cc95f6949deb5d08e93d988f304ffa61c983','2021-10-14 08:29:24','2021-10-14 06:29:24'),(3273,495,'session','a6711b3a6a70f5b8331e2ce2a959bc3d5250a6ad','2021-10-14 09:21:47','2021-10-14 14:12:26'),(3274,495,'autologin','5b5b327c5442ce392cdcfb767431a7ad3e38330e','2021-10-14 09:21:47','2021-10-14 07:21:47'),(3275,495,'feeds','6720544b130232b323533601b363dad25412b263','2021-10-14 09:21:47','2021-10-14 07:21:47'),(3280,496,'feeds','9d5fcf8a284357aea1e53fefd93357829caa1d3c','2021-10-14 09:23:45','2021-10-14 07:23:45'),(3281,498,'session','da0731ef74cf31d61ad70cee31c51e690c803d9f','2021-10-14 09:24:07','2021-10-14 10:23:25'),(3282,498,'feeds','5ec61b124a5200678448ef6f4d7019af9446904f','2021-10-14 09:24:07','2021-10-14 07:24:07'),(3284,497,'feeds','3f9f6768983e148b67de3dfc474d03447c150eef','2021-10-14 09:25:12','2021-10-14 07:25:12'),(3286,477,'recovery','91595b19d0145a2f2041bdd08a6435fa36a48078','2021-10-14 09:51:39','2021-10-14 07:51:39'),(3287,477,'session','4bdf929c30d6d4af0f8a68850d2fbb4e60e77525','2021-10-14 09:52:07','2021-10-14 12:31:09'),(3289,499,'session','4c965a04e1f0d43febdc919bf02d34f17de888b9','2021-10-14 09:56:33','2021-10-14 15:07:15'),(3290,499,'feeds','c6aaf14a2b89eb1196f267a70fcedc2294ce85c7','2021-10-14 09:56:33','2021-10-14 07:56:33'),(3294,500,'feeds','21c82d8680a6b535fd6f572db85d50be1926ea07','2021-10-14 11:01:00','2021-10-14 09:01:00'),(3295,474,'session','51763b05fc68bc7752d79f237a247e0355eab6a8','2021-10-14 12:17:48','2021-10-14 12:52:05'),(3296,474,'autologin','e6f3e27f7d7b89b68f44f2763b948381869da3fd','2021-10-14 12:17:48','2021-10-14 10:17:48'),(3298,497,'session','2278642abc6f77b1e13e3d85935755b6045ed0e5','2021-10-14 12:19:07','2021-10-14 12:53:34'),(3301,501,'session','2c60f5a8113965575aa88b9dc896c6b67a36fef2','2021-10-14 12:23:58','2021-10-14 10:23:58'),(3302,501,'autologin','64c910df334436d8d758ad104c5dfa762c9e0c67','2021-10-14 12:23:58','2021-10-14 10:23:58'),(3303,501,'feeds','e1d5897b669fee0765e36b98bd055ee16a813eaf','2021-10-14 12:23:58','2021-10-14 10:23:58'),(3304,498,'session','519a9a626d0151a92610b26f92e11ed3fa9f299e','2021-10-14 14:12:40','2021-10-14 12:12:51'),(3305,501,'session','0af7d58703deaabe90207e21dd43898add7c2c25','2021-10-14 14:14:40','2021-10-14 12:15:09'),(3309,501,'session','0d62e032c057c3201c98b8f279d122cebfc26fca','2021-10-14 14:31:52','2021-10-14 12:37:29'),(3310,501,'autologin','7d9468c68774d44fdc7d7c651fe1cc454b77f6f3','2021-10-14 14:31:52','2021-10-14 12:31:52'),(3313,471,'session','f8b2bcaad6065c885731a10b7037d4a5696f79ff','2021-10-14 15:45:09','2021-10-14 13:45:09'),(3315,501,'session','d83338a099d00e9f480575871b7a664dc622420e','2021-10-14 16:22:28','2021-10-14 14:22:28'),(3332,495,'session','c3cfe5f90f06a559ee002b8fb14e4e2c9a22a7ee','2021-10-18 10:30:27','2021-10-18 08:30:27'),(3333,495,'autologin','cdf0edcaeac2541294124f8966ffe9d8ccbf7e54','2021-10-18 10:30:27','2021-10-18 08:30:27'),(3334,286,'session','e55bf95f1434fe297db0233942986f140c4210fb','2021-10-18 12:31:40','2021-10-18 10:38:43'),(3335,286,'autologin','86123e83207b8e893939edfdf83fc5c42564a546','2021-10-18 12:31:40','2021-10-18 10:31:40'),(3337,502,'register','15d4b2c5811865ae1147151ffe77c7c8eb8d3fa4','2021-10-18 16:30:39','2021-10-18 14:30:39'),(3338,286,'session','eee0bda368f16e095107c645975a0b7fe996becb','2021-10-18 19:58:25','2021-10-18 18:04:57'),(3345,503,'feeds','eec6a19f2f1eaecb048d0aecf865b44f1e7f4645','2021-10-20 06:06:07','2021-10-20 04:06:07'),(3349,504,'feeds','3458e36ba1650f246c0ecf3ed34e523f0cc2ba56','2021-10-20 08:24:15','2021-10-20 06:24:15'),(3350,505,'register','ba2bca53e56a53a0390abf491778008eea54168a','2021-10-20 08:25:36','2021-10-20 06:25:36'),(3353,495,'session','daa996386ff384067eb0717c1c2c1ec57b1e390d','2021-10-20 09:10:20','2021-10-20 14:11:00'),(3354,495,'autologin','eaf3729c4ddc25d1a0a16baa454ceeee1084a83b','2021-10-20 09:10:20','2021-10-20 07:10:20'),(3355,498,'session','55860d88b03b35d0938d16c25477eda01b154fed','2021-10-20 09:41:11','2021-10-20 12:42:09'),(3356,506,'register','64c00bbe9a7467dd08b80d914ff7773f096280ab','2021-10-20 10:09:13','2021-10-20 08:09:13'),(3357,507,'register','23adc5c83a5c2e0aaeafbdeaa5d14f4798d4cfb9','2021-10-20 10:14:44','2021-10-20 08:14:44'),(3358,499,'session','b81fbcce017a6676e34ccb6c861e50a243769101','2021-10-20 10:36:40','2021-10-20 14:08:27'),(3359,500,'session','7f060d77153474f35786834e09ed6f312ff97cdf','2021-10-20 10:37:03','2021-10-20 09:28:30'),(3363,474,'session','865f471a5aeb46f02ada336f2b5f443cf3447dd9','2021-10-20 10:37:57','2021-10-20 14:09:00'),(3364,474,'autologin','efc92df57e6091ba0aab0c2e851e4a5b9392e6bb','2021-10-20 10:37:57','2021-10-20 08:37:57'),(3365,497,'session','8882b24c3456f26edcedabc4088f309ae5983a58','2021-10-20 10:39:02','2021-10-20 14:33:52'),(3366,508,'register','5180a92767cd9fb8b9728d794845ca8a3d4c22ef','2021-10-20 10:53:50','2021-10-20 08:53:50'),(3367,508,'session','ddb0bd311ba8c4a32e99b4c07f5015d00ce8faa5','2021-10-20 10:54:49','2021-10-20 12:49:08'),(3368,508,'autologin','1082d1908b46a212810c383bbfb4fb77e841510c','2021-10-20 10:54:49','2021-10-20 08:54:49'),(3369,508,'feeds','4217b27a6628f299952aad85b9493b69221c3196','2021-10-20 10:54:49','2021-10-20 08:54:49'),(3370,501,'session','d9149490f36db8034d43ccbce6506648402c74f6','2021-10-20 11:34:12','2021-10-20 09:36:16'),(3371,502,'session','38f873188a6e74dbe7eb55890b195a3662756bc0','2021-10-20 13:19:05','2021-10-20 11:27:05'),(3372,502,'feeds','c2cf9728331fda44b5cce80002009c2d253ac0de','2021-10-20 13:19:05','2021-10-20 11:19:05'),(3375,477,'session','518ffc3d205f3355e7f580b26cd4df3b2070904d','2021-10-20 14:07:51','2021-10-20 14:28:23'),(3376,508,'session','3592dd6c6c729ad07bbba2d3753d9098f2df760d','2021-10-20 14:50:33','2021-10-20 14:09:43'),(3380,509,'session','65d7332523972a2a54a7d397d4c0b41f95b8a660','2021-10-20 15:44:51','2021-10-20 13:44:59'),(3381,509,'feeds','a2baa375a62a4789bb3982251ad4e5cdf9edc692','2021-10-20 15:44:51','2021-10-20 13:44:51'),(3382,508,'session','da5a8629420e1f532448087983a0c62c415a9cd7','2021-10-20 16:11:14','2021-10-20 15:47:42'),(3383,500,'session','ba18238ea8ce81b70e827bd032c5ba0186fa3d00','2021-10-20 16:11:17','2021-10-20 15:29:52'),(3384,501,'session','a3b3e8b04b610a0faca25df29e825af246dd68b0','2021-10-20 16:11:53','2021-10-20 14:12:43'),(3385,499,'session','5d7eb8dd49943befe29cc24699c2a63a4dc33b38','2021-10-20 16:25:15','2021-10-20 14:57:37'),(3388,500,'session','13c3a961f6bd348a4c3806aca3b5cb7ca21b2d19','2021-10-20 17:54:01','2021-10-20 15:58:12'),(3390,499,'session','21f3a13d1834029becd0e028349453c1e328d6d7','2021-10-20 18:48:55','2021-10-20 16:50:53'),(3391,510,'register','c5a825dc8678379b7f450d1c19bb442a2a149899','2021-10-21 09:45:29','2021-10-21 07:45:29'),(3392,498,'session','8951a0ac684c69a1bfdb46a3ba2a971d835265c7','2021-10-21 10:13:34','2021-10-21 08:15:20'),(3393,474,'session','e76fadbe9ad05bfaf974d9b2ef4698e139bc0298','2021-10-21 10:29:04','2021-10-21 09:45:39'),(3395,328,'session','ba0fb7fc6acb16d6bd99170e060ea3abf4255f2f','2021-10-21 13:56:37','2021-10-21 13:27:45'),(3396,328,'autologin','0c1665c97b34accb36b0823ece0dea2bed7a27fe','2021-10-21 13:56:37','2021-10-21 11:56:37'),(3398,511,'register','aaceb731e10fed33d58af53d38d3e5806c96c4cb','2021-10-22 08:50:37','2021-10-22 06:50:37'),(3399,474,'session','91e87c3012ea99c1edf4eae16b563436eda256bc','2021-10-22 10:24:36','2021-10-22 08:26:02'),(3400,474,'autologin','9dfd480f2edf4940b298240a495082d43f03459c','2021-10-22 10:24:36','2021-10-22 08:24:36'),(3403,471,'session','1bdd3a67d1f1c8fdee38a242b9d67ed0dca738a7','2021-10-22 14:16:29','2021-10-22 12:16:29'),(3412,512,'register','7eb68394c7c4ec38b5f5eac023ed3b724b6d6a0d','2021-10-26 09:31:45','2021-10-26 07:31:45'),(3415,513,'session','7e7f9d9bf6ece5d162859b5746ed761c8e166b04','2021-10-26 09:34:07','2021-10-26 12:33:21'),(3416,513,'feeds','3b6c5ea50e9597d5b00e4ae72333fb6eb955d136','2021-10-26 09:34:07','2021-10-26 07:34:07'),(3418,510,'feeds','6858fdbfc03041327590a96fcaaf67078b67b64e','2021-10-26 09:34:32','2021-10-26 07:34:32'),(3420,512,'feeds','95b80cdc4dba7bc46fc530b5986b30679517bad2','2021-10-26 09:36:11','2021-10-26 07:36:11'),(3422,507,'session','ae2b7178add5cc8442df720b56139e2f75ee01d6','2021-10-26 09:39:27','2021-10-26 12:04:16'),(3423,507,'autologin','5e40b29df011751cd7f672350d66b5f383a77570','2021-10-26 09:39:27','2021-10-26 07:39:27'),(3424,507,'feeds','8f7a93f4c9545ce7d26ca07d162a0e23866deb93','2021-10-26 09:39:27','2021-10-26 07:39:27'),(3425,511,'session','1bb06b78e137c56192191bd318fc1004d596ec6d','2021-10-26 09:40:04','2021-10-26 12:04:29'),(3426,511,'feeds','248df4b2d1cf30ed305b79648d51f2746f15ba69','2021-10-26 09:40:04','2021-10-26 07:40:04'),(3428,505,'feeds','f0f4a1fe6df3c934b52964b5f08c90d8740225ae','2021-10-26 10:23:21','2021-10-26 08:23:21'),(3429,506,'session','80168454009f0db65f834a32dc07790ee5e48ce0','2021-10-26 10:24:36','2021-10-26 12:18:40'),(3430,506,'autologin','7ae460fe17045ff008967a9fc2c58bb1303bff4a','2021-10-26 10:24:36','2021-10-26 08:24:36'),(3431,506,'feeds','659351fa924a2dfb0d5df822b986bb1b66a9d045','2021-10-26 10:24:36','2021-10-26 08:24:36'),(3433,514,'session','5700f9f4c7536ee19ca185842dbcbd709595b084','2021-10-26 11:54:49','2021-10-26 13:10:57'),(3434,514,'autologin','fd701c86cca243d909cf094436682dc396f2f8b8','2021-10-26 11:54:49','2021-10-26 09:54:49'),(3435,514,'feeds','1ccc370cf731a6a585fe49a952d0616e2a4c230a','2021-10-26 11:54:50','2021-10-26 09:54:50'),(3439,507,'session','153a08bc225d78a88cfc27cf1148aa59938dd83d','2021-10-27 09:36:32','2021-10-27 11:30:41'),(3440,513,'session','4bec14e2f74ad29a2d00d7b82c59f9218a14f038','2021-10-27 09:36:58','2021-10-27 14:43:42'),(3441,506,'session','6e641cb2f83982e7643192de03a64e8ef3fed450','2021-10-27 09:38:31','2021-10-27 11:14:11'),(3443,514,'session','803c3fd25d4602520a7c108e453025e439ee3f73','2021-10-27 10:15:37','2021-10-27 11:38:27'),(3444,511,'session','d0c99f523b55d5c3e1421b4a5cf2493c1aa2e777','2021-10-27 10:19:32','2021-10-27 13:33:03'),(3451,511,'session','75e6a0d39bf701e509bf3cc36f2b78f41878f5de','2021-10-28 07:56:19','2021-10-28 06:02:27'),(3464,515,'register','f09c9fe048efa03ae80c96079bb4bd3adb83f8e7','2021-10-29 16:50:26','2021-10-29 14:50:26'),(3508,516,'register','5ac548a20129ef9b9f471480ff78eac467524bcb','2021-11-15 10:40:53','2021-11-15 09:40:53'),(3511,517,'register','77f95fda5f823c36e8aae277f73d9550a6a23672','2021-11-15 14:35:40','2021-11-15 13:35:40'),(3514,518,'register','c1617eb20977477161b5bc345ebf4d034b32ae06','2021-11-15 15:30:35','2021-11-15 14:30:35'),(3516,516,'session','0efb0c851d39ca4654140174aa1611924d899e94','2021-11-15 16:02:57','2021-11-15 15:10:35'),(3517,516,'feeds','a23e85a23e601f561050f8f198c33d634677dc99','2021-11-15 16:02:58','2021-11-15 15:02:58'),(3518,474,'session','f81b4d3eee817ca95ba2d32a401fadd09fc3e252','2021-11-15 16:33:56','2021-11-15 15:33:56'),(3522,517,'feeds','df9c4733335368e5e26d20c9bc2f56df2cafb10e','2021-11-15 19:49:32','2021-11-15 18:49:32'),(3528,515,'session','af4ff5e3f5dbc64c39e4489e2a1ceb19bbe3bc50','2021-11-16 12:44:48','2021-11-16 11:45:25'),(3529,515,'autologin','ca9f6cf149e88425a2fda5a55af5e0b47fd0a8df','2021-11-16 12:44:48','2021-11-16 11:44:48'),(3530,515,'feeds','ab913be869f71100d7db535de548c15c58e9420d','2021-11-16 12:44:48','2021-11-16 11:44:48'),(3531,515,'session','f859f79f3b4eed03652ac7d0f4a470520c62d5ae','2021-11-16 12:45:47','2021-11-16 13:21:33'),(3532,471,'session','99abdbfe99a725f44c48db8ed4702e74108114bc','2021-11-16 14:18:45','2021-11-16 13:18:45'),(3540,519,'register','60b7add1f3ac826e37de1dcf0654a7da4d8f0cd6','2021-11-17 09:03:53','2021-11-17 08:03:53'),(3542,519,'feeds','9b3a6c739cd56cf72baa5c0baf9765de2ce2cee3','2021-11-17 09:05:59','2021-11-17 08:05:59'),(3547,519,'session','a57316e20955df5ebb57eec5d2418210bbde8341','2021-11-17 14:16:13','2021-11-17 13:17:01'),(3548,519,'session','8b7fdfc7376528cea8da3cd9bebcda235615dd2b','2021-11-17 14:19:21','2021-11-17 16:19:13'),(3551,519,'session','7ce648bca25ee9c8f9ddcce48f113f3917188941','2021-11-17 16:38:58','2021-11-17 16:18:39'),(3552,519,'autologin','95f470ba34e15c3260114139ec2cab947276734d','2021-11-17 16:38:58','2021-11-17 15:38:58'),(3554,519,'session','a1b9878b720858fc75f3bdf37edc55b4283c518b','2021-11-17 17:19:47','2021-11-17 16:22:05'),(3555,519,'session','a1ec5b19594fd2a0dbf0905173c30194433b288c','2021-11-17 17:30:59','2021-11-17 16:33:08'),(3556,519,'autologin','f0d98105673797659c6e26814625acc7023fdee4','2021-11-17 17:30:59','2021-11-17 16:30:59'),(3562,519,'session','64a25ba1e7fcdeb48c9ec84fed2dee3a774224f7','2021-11-18 12:30:18','2021-11-18 13:22:15'),(3563,519,'session','2f45ba6583733a815c14a1db2d72fc4bd9813b8d','2021-11-18 14:32:27','2021-11-18 14:17:51'),(3564,519,'session','b26c12d5a6863d285bc100602c0e6463f6fb9a39','2021-11-18 14:54:46','2021-11-18 13:56:22'),(3575,520,'session','d302d94f99479886fdfdfb82d9d9a9e1c03a1a5f','2021-11-19 03:04:56','2021-11-19 02:48:59'),(3576,520,'autologin','de13722510420f190b7385fd954a70241588fcc0','2021-11-19 03:04:56','2021-11-19 02:04:56'),(3577,520,'feeds','ed2adce4eb47bd5bca5f96d897842c2ad9f8994b','2021-11-19 03:04:56','2021-11-19 02:04:56'),(3582,520,'session','1601a814ce4dc66b529327de072ca061772532d8','2021-11-19 11:31:08','2021-11-19 10:34:24'),(3620,506,'session','4c29ce092b4e503d18dc1a1dc2ef31dda8e32382','2021-11-25 16:19:01','2021-11-25 15:19:24'),(3621,506,'autologin','0bc3d3a0660753842a0e9a2f29aada0e499a44b7','2021-11-25 16:19:01','2021-11-25 15:19:01'),(3626,506,'session','1a90e11a14af93fd681fbf43212f73db29162155','2021-11-26 10:23:08','2021-11-26 09:23:08'),(3631,325,'session','99bf928238c05254391abd0b38b7c0779a5f0977','2021-11-26 22:55:55','2021-11-26 22:00:11'),(3632,325,'autologin','4a9107cb657078d28e3c00fe6e0fed456ce45bbd','2021-11-26 22:55:55','2021-11-26 21:55:55'),(3652,496,'autologin','906cf8962c381d3397ecc609ac51b5c17ab2d597','2021-11-30 11:21:06','2021-11-30 10:21:06'),(3653,498,'session','0194763c9b537789a56556f6289799dd182b5d96','2021-11-30 11:27:20','2021-11-30 10:30:45'),(3656,471,'session','701d7cd0c0788a6df2f43b52ffd48e8957be87b4','2021-11-30 15:26:35','2021-11-30 14:26:36'),(3676,521,'session','0d55374a9fdb2ad130c21ab6506101a8bb988ae4','2021-12-02 15:12:36','2021-12-02 14:13:36'),(3677,521,'autologin','c8131d043cfd11b020cd108563b98c2cf8d53f2d','2021-12-02 15:12:36','2021-12-02 14:12:36'),(3678,521,'feeds','2a7189283dd07622fc2e67edd22ab848af998ac6','2021-12-02 15:12:37','2021-12-02 14:12:37'),(3679,474,'session','2e67b60b039c7f42b0d04c20da0dbf9ec9a8332d','2021-12-02 17:05:59','2021-12-02 16:06:34'),(3687,474,'session','43a4c176589999d04bbd3a55978e57aa47a469a5','2021-12-03 17:56:18','2021-12-03 17:03:29'),(3731,518,'feeds','0d3da4afbbe0d646b38f8e9a1259f4f79524da3c','2021-12-13 12:25:47','2021-12-13 11:25:47'),(3738,498,'session','fcac14b2ab986a3731d45b1ee188c88574013e93','2021-12-14 11:20:11','2021-12-14 10:21:05'),(3739,498,'autologin','63b9e01daef02fede0fc6be99f9505f932bf11c3','2021-12-14 11:20:11','2021-12-14 10:20:11'),(3741,500,'session','29a8500eb013ff9caca2bbb702d32dac9f832c3e','2021-12-14 17:42:09','2021-12-14 16:43:39'),(3746,515,'session','6b08bcc2ebe6e7b4b6b2da0ee0648e0d574330d7','2021-12-16 08:59:23','2021-12-16 08:00:09'),(3764,285,'session','f2ea2b8695e426d45eeaff07565852a522e1208c','2021-12-20 13:58:19','2021-12-20 13:05:58'),(3770,432,'autologin','8acea71b91b5445fbd267f73807a42052d689212','2021-12-21 10:16:25','2021-12-21 09:16:25'),(3788,522,'register','1adcd1c390b43400d03162ffb20b8a94b86bf092','2021-12-25 13:15:57','2021-12-25 12:15:57'),(3809,523,'register','39312912abd40b765667b175e080f6bd75f0fa30','2022-01-06 16:36:56','2022-01-06 15:36:56'),(3813,498,'session','6fffec180af8fff2b03c1052d8c430b31c0ade8e','2022-01-07 11:25:03','2022-01-07 11:09:51'),(3822,500,'session','84cb68d4ee25808ceec897c4dd34ae2e9f6e92ef','2022-01-10 09:07:56','2022-01-10 08:08:20'),(3826,422,'session','2a215c10e4c2b71e6fd0b9add6a69b753043590f','2022-01-10 14:53:33','2022-01-10 13:53:33'),(3827,471,'session','8e70d1edc417d5c837a0e742f6b08b3f8e73e9d9','2022-01-10 15:49:47','2022-01-10 14:49:47'),(3839,500,'session','cfdc67b847200f819f94712c859fb871f530a124','2022-01-12 15:31:34','2022-01-12 14:32:57'),(3844,474,'session','32ccd510c7a727d0916cf921214ef22452f3fb8f','2022-01-13 09:13:25','2022-01-13 08:13:25'),(3851,524,'feeds','c8d23979c91460e96b3fc055f469bf78e083647f','2022-01-13 09:57:14','2022-01-13 08:57:14'),(3854,525,'session','c131becbcc5a8a66e0eb0c19feecc035fcd97ea5','2022-01-13 11:03:13','2022-01-13 16:26:44'),(3855,525,'feeds','a231a19e70f56828c78aa0ece8bb869bd48051a7','2022-01-13 11:03:13','2022-01-13 10:03:13'),(3859,526,'feeds','1f52faa98422398d5f929984c327d89c22a5d524','2022-01-13 11:04:24','2022-01-13 10:04:24'),(3863,528,'feeds','b8994e2b671a6ff36d5ea4fca95dcb7945a78194','2022-01-13 11:07:29','2022-01-13 10:07:29'),(3867,519,'session','850eff595a13560251595faacf4ab98df551687f','2022-01-13 13:59:03','2022-01-13 13:07:44'),(3868,519,'session','b061aea773b8f5b859290ce3c9fad7dbc877f8f5','2022-01-13 14:09:25','2022-01-13 13:12:51'),(3870,513,'session','80e6d744a5603df43bdb53af077fa212b1fb166a','2022-01-13 16:27:30','2022-01-13 16:36:37'),(3875,524,'session','64f476e767358a08e7a57784b3f15ccfc5d68604','2022-01-14 09:15:27','2022-01-14 08:21:12'),(3876,525,'session','3fb435b1ba7455f9071f04ca07c03bac362c5a79','2022-01-14 09:22:32','2022-01-14 08:25:06'),(3877,525,'autologin','ada7e91fbcce7ed7339c1bc8d17487b10c6d9e2b','2022-01-14 09:22:32','2022-01-14 08:22:32'),(3878,524,'session','2fec3c8cdfa9e127372b642d017a28914e130af0','2022-01-14 09:24:36','2022-01-14 08:24:53'),(3880,524,'session','624a37436aa0e8f9e9857fc41001cb14a32885e7','2022-01-14 09:36:08','2022-01-14 08:36:44'),(3881,524,'session','3e31d38fbef44134d144b97a62d360d0a1fe76d4','2022-01-14 09:39:26','2022-01-14 08:39:32'),(3886,526,'autologin','9e598e7006528e2fde7735f33a72dcdf082e276c','2022-01-14 14:39:24','2022-01-14 13:39:24'),(3888,493,'session','e829fa65920fc461b357076e54a1a15f27b5adbd','2022-01-14 15:40:29','2022-01-14 14:47:43'),(3889,493,'autologin','e7b1bd6fec92937b9b569e7d828813e2c8aa1d71','2022-01-14 15:40:29','2022-01-14 14:40:29'),(3890,493,'feeds','44ca01ed074caed2715f649136575a602fe1879d','2022-01-14 15:40:35','2022-01-14 14:40:35'),(3909,529,'register','30d6525ff5c32656d9b3977cc3b57d181689d996','2022-01-18 14:05:38','2022-01-18 13:05:38'),(3912,529,'session','6a1a2fc51d76b9bec71060c4427389a7b7370237','2022-01-18 14:08:11','2022-01-18 14:10:54'),(3913,529,'feeds','5332403a6107c81c529cd005239ac0ef766c00b7','2022-01-18 14:08:11','2022-01-18 13:08:11'),(3916,531,'feeds','13df516ca5e15ed7251447d2e9c69fba3f2c4df1','2022-01-18 14:09:07','2022-01-18 13:09:07'),(3917,530,'recovery','ccbc2d4c448bfede5298e989cf217f8eaf1e0a97','2022-01-18 14:09:17','2022-01-18 13:09:17'),(3919,532,'autologin','0daba0a6be5bcf054ed4291090e67501d3dba6aa','2022-01-18 14:09:44','2022-01-18 13:09:44'),(3920,532,'feeds','b26a6908b08a7ca9953aa034af81296a3d31cb21','2022-01-18 14:09:45','2022-01-18 13:09:45'),(3921,462,'session','dbf056add8e478fb52fa6b9469ba4295c24814eb','2022-01-18 14:14:35','2022-01-18 13:16:57'),(3923,530,'session','8bbc5c1662b424061f246b5ef0ecd78b7b3bf3a7','2022-01-18 17:25:15','2022-01-18 16:25:56'),(3924,530,'feeds','66e073339e864f9b9dd83c7f54b043152ce2854c','2022-01-18 17:25:15','2022-01-18 16:25:15'),(3933,526,'autologin','f787aa49ea458acf4d376e05df5d9018ef322785','2022-01-19 13:58:06','2022-01-19 12:58:06'),(3941,532,'autologin','adf8f80f2cf9baca96f2e0eeafb6d4973202ba95','2022-01-20 09:06:33','2022-01-20 08:06:33'),(3942,530,'session','b9a6e143236db5afb73bc5acf8c23828929ff062','2022-01-20 09:06:49','2022-01-20 11:09:55'),(3952,532,'autologin','81ffa771bea7dd809fe341de7d6b49f0c19e7ba3','2022-01-21 15:44:40','2022-01-21 14:44:40'),(3965,471,'session','cad79a7075ebd00aa340aa7707fbceb60a81147d','2022-01-24 10:53:09','2022-01-24 09:53:09'),(3968,493,'session','0f49878ce8eeca8dee1202b04da80e74219dc46b','2022-01-24 15:12:50','2022-01-24 15:42:02'),(3978,532,'autologin','cebe973b328b8c043cab191032c76db260559862','2022-01-25 15:03:18','2022-01-25 14:03:18'),(3983,500,'session','6900e1ea51136ff98366d615af815552582edde0','2022-01-26 14:19:19','2022-01-26 13:24:06'),(3997,436,'session','9d5dfbd782e7292e21637153640783d41ee61828','2022-01-28 11:58:02','2022-01-28 10:59:31'),(4003,493,'session','9b04a41b16295b86b89ecf3674d171cd20a211d3','2022-01-31 08:19:49','2022-01-31 07:20:17'),(4004,493,'autologin','033fec71b551407e9088606c05a726aae11294f1','2022-01-31 08:19:49','2022-01-31 07:19:49'),(4022,500,'session','39b8220915654ad9ec99c8a8ffa020e7bcb32987','2022-02-01 10:02:30','2022-02-01 09:03:06'),(4032,534,'register','c4a4903fa7f11a7faf8cae3f2f162afbbc83159b','2022-02-02 09:30:51','2022-02-02 08:30:51'),(4033,534,'session','3957c9a6d12dbde3e2681008165808d4dabfcf91','2022-02-02 09:32:29','2022-02-02 08:43:04'),(4034,534,'autologin','f615c5c1e64c110583171c7211e52ff23b71dd3b','2022-02-02 09:32:29','2022-02-02 08:32:29'),(4035,534,'feeds','960cc88c32028afdc66d6220d459defa6cb66eb0','2022-02-02 09:32:29','2022-02-02 08:32:29'),(4041,532,'autologin','732d0ffac66a6bd946d7a51d64650ca6e091435a','2022-02-02 15:33:29','2022-02-02 14:33:29'),(4045,500,'session','66aac9024847f9e26035608bad01784f74bdf1ac','2022-02-02 16:16:52','2022-02-02 15:17:01'),(4047,530,'session','1eeb9e26a89a7b8f4700d1dbf58b1d342af36854','2022-02-02 18:38:51','2022-02-02 18:28:28'),(4061,535,'autologin','29ff19a6b4c578d14ec73d4ec9a5ab01737bc419','2022-02-03 14:06:21','2022-02-03 13:06:21'),(4062,535,'feeds','d44898503c9702a6ab0ad38dcce36e9a02f91a20','2022-02-03 14:06:21','2022-02-03 13:06:21'),(4065,535,'session','6925755d3353ab5aa5ef5aea20d41a37c6cf3ce1','2022-02-03 16:46:39','2022-02-03 16:02:58'),(4066,535,'session','16b24c510eeb6e61fb36d6b00818146e516d48ee','2022-02-03 17:47:13','2022-02-03 17:10:18'),(4068,328,'session','24aa69c65d2586b7a558efed0cda38642c9b1fa1','2022-02-03 19:11:30','2022-02-03 18:16:58'),(4069,328,'autologin','e55fe2e4e61034db2abc766164d4376cf3c5e349','2022-02-03 19:11:30','2022-02-03 18:11:30'),(4100,286,'session','2c758825ca45852c244e72abca63951e20baa7d9','2022-02-07 20:32:55','2022-02-07 19:36:25'),(4107,436,'session','a54bda08479fa186e790b76ca841d96559b7f877','2022-02-08 09:47:44','2022-02-08 08:56:06'),(4108,530,'session','2f676258da22e3c692283dc174b7195b6dd35bdb','2022-02-08 14:03:59','2022-02-08 13:04:10'),(4110,500,'session','74f1433393394ceaa9da0c8e4427f21f70f77158','2022-02-08 14:23:47','2022-02-08 13:25:26'),(4111,500,'autologin','73b6c1538f1bd4de04e22b393d57f4d0197f15d4','2022-02-08 14:23:47','2022-02-08 13:23:47'),(4132,530,'session','353aeb275d0264af8621f882312befb04063aafd','2022-02-10 14:06:27','2022-02-10 14:12:53'),(4140,530,'session','344055eafb573f82bdc4936fe382590ea4e598de','2022-02-11 15:24:21','2022-02-11 14:24:59'),(4141,530,'session','899c28996f4f65581005ac4d47dad83802f5c8d1','2022-02-12 08:41:08','2022-02-12 07:42:16'),(4144,535,'session','d35fdcb4455d22776fb3cbc54eaef17ad6b15b3a','2022-02-13 09:47:50','2022-02-13 09:01:02'),(4152,436,'session','a82d525a86577b63f58b82f94f18da1223c6c32a','2022-02-14 13:29:37','2022-02-14 12:29:55'),(4166,533,'register','591b01f41c659770e02d59b93aa3a5a702cfb2f0','2022-02-15 16:12:06','2022-02-15 15:12:06'),(4168,533,'feeds','87afb042afc81d5cb822d4beb6609d115332e7b3','2022-02-15 16:15:46','2022-02-15 15:15:46'),(4186,328,'session','4ef3f3097a679a94fd258a493263872ce47e2ac7','2022-02-17 18:30:08','2022-02-17 17:33:35'),(4187,328,'autologin','ddc10d6591c083265bd9d6d8009b3d47a3df2020','2022-02-17 18:30:08','2022-02-17 17:30:08'),(4189,464,'session','1e1e404554ef1e49e5aec973db9e0fcd51606d67','2022-02-18 09:14:12','2022-02-18 09:03:36'),(4223,535,'session','af81d7667bf8937de4a2b9260905cbf71a79db26','2022-02-24 10:52:36','2022-02-24 13:21:19'),(4225,532,'session','c1982b44ff1cd19ea05414bbf4428542c0e3eadd','2022-02-24 13:46:30','2022-02-24 12:46:47'),(4228,535,'session','94a43b54d00e0952bf131e57970c373f700d2674','2022-02-24 20:00:17','2022-02-24 19:00:17'),(4229,535,'session','1add902ddf98e9dc42f9194f60b28779010ebb7f','2022-02-25 06:49:32','2022-02-25 05:52:21'),(4230,535,'session','b34d5cfa63936e27efab39d350e6b7623e70e45c','2022-02-25 09:07:49','2022-02-25 08:42:56'),(4234,535,'session','1eb64d00fbe65bd7fcb9fe9e57366aa50a3a4f74','2022-02-25 14:57:24','2022-02-25 15:37:37'),(4235,535,'session','beb872546e98caffab64766d0774ba0cce86081a','2022-02-25 16:38:18','2022-02-25 16:58:52'),(4236,535,'session','0d1fcbab4deacf4d1b215314c00bc67580ac5a13','2022-02-27 16:11:15','2022-02-27 15:40:28'),(4238,536,'register','ecde4969afa58d546d8bd16248086af11d43a203','2022-02-28 08:24:34','2022-02-28 07:24:34'),(4239,537,'register','8c4c3230fd4801a13775421a6fae0df9a88590bf','2022-02-28 08:25:56','2022-02-28 07:25:56'),(4240,538,'register','95437dc1c1fec09b6df12bfaba24079c6aa62e5b','2022-02-28 08:27:43','2022-02-28 07:27:43'),(4247,538,'feeds','76b2e24091bc3f29781e6e08c4b2fec88fdfb59f','2022-02-28 13:54:29','2022-02-28 12:54:29'),(4250,539,'feeds','fc32f18a9cf8209206bff7d482cb5ded0123ae17','2022-02-28 13:59:07','2022-02-28 12:59:07'),(4252,537,'feeds','18e05e9cc1c15d8865c4e2ffe3feb6df670f7b87','2022-02-28 13:59:25','2022-02-28 12:59:25'),(4254,540,'register','adb6c3d25d44b3ee3389e67c7bdebd14b7f04a38','2022-02-28 14:00:29','2022-02-28 13:00:29'),(4255,541,'register','e164e35e234ffd61eaf45a08efe9d383c5a29735','2022-02-28 14:00:45','2022-02-28 13:00:45'),(4256,542,'register','85a108ff3c053f7a1ee780411f4d22d7f4548f77','2022-02-28 14:01:13','2022-02-28 13:01:13'),(4257,536,'session','b141612f72a47d428e6d65073dda9bab1cf1b0c0','2022-02-28 14:01:34','2022-02-28 15:41:46'),(4258,536,'feeds','e818c41066812258673af528628a144ac128929b','2022-02-28 14:01:35','2022-02-28 13:01:35'),(4259,541,'session','e7dc89a30ceb061226f61971e727bdaf0e912dcd','2022-02-28 14:01:41','2022-02-28 13:02:53'),(4260,541,'feeds','457468a42f1b220a6b8266c86ff3b7cba09acb09','2022-02-28 14:01:42','2022-02-28 13:01:42'),(4261,540,'session','f4a96af46eb059a7f3a61d2a53456829bd31ea04','2022-02-28 14:01:49','2022-02-28 15:58:02'),(4262,540,'autologin','75eaadf493f95aa3f49d05b57065929bca59e5b9','2022-02-28 14:01:49','2022-02-28 13:01:49'),(4263,540,'feeds','a44a0f9d144ee1f560145732f033595e20bfac80','2022-02-28 14:01:49','2022-02-28 13:01:49'),(4265,543,'session','c315e6951b2c0717b1222ec136f887cf53f6bc50','2022-02-28 14:02:58','2022-02-28 15:57:50'),(4266,543,'feeds','165a3fa2fa40fd9ea31c4c92effc39f2698d5b95','2022-02-28 14:02:58','2022-02-28 13:02:58'),(4268,542,'session','a2f4a828f2329ace3efb81e1734bedebaa5b1110','2022-02-28 14:04:20','2022-02-28 15:54:45'),(4269,542,'feeds','65892c93a8c4dca51ba61dc71204563343262a3d','2022-02-28 14:04:20','2022-02-28 13:04:20'),(4270,544,'session','069a7ae0e330e607a66b4091918ca573ba4e4d6d','2022-02-28 14:04:30','2022-02-28 15:56:12'),(4271,544,'feeds','852fef60ddbc6eb8af25f5621ea425ab8febb68c','2022-02-28 14:04:30','2022-02-28 13:04:30'),(4272,539,'session','bc675502460ff2c3f125d86c644344027f492ba3','2022-02-28 16:54:16','2022-02-28 15:54:37'),(4276,543,'session','bc5c228d1453b42088bbf1bc243f5717d630c3d9','2022-03-01 08:43:05','2022-03-01 07:43:48'),(4277,541,'session','5f91d1b92176b65417af8b6bb9093611f91f8dcf','2022-03-01 08:49:10','2022-03-01 07:55:32'),(4278,541,'autologin','fa7ca2bd6fe30b0ccdbab3fa242ed4c3fb7083b4','2022-03-01 08:49:10','2022-03-01 07:49:10'),(4282,471,'session','5bb9c4398628d6e8dfdfa58225cb067fef6d4e2a','2022-03-01 18:50:44','2022-03-01 17:50:58'),(4289,526,'autologin','e6d78ca7f66b6e64012622aacf93786318552d0a','2022-03-03 08:44:14','2022-03-03 07:44:14'),(4291,524,'session','c956ea943730efbd1bd7508943c250d71bb07000','2022-03-03 08:58:40','2022-03-03 15:19:31'),(4294,525,'session','3397403ecadc5ab812580d5af0a6398797e541da','2022-03-03 09:44:42','2022-03-03 15:32:04'),(4295,525,'autologin','7083bc647331d85e75056d6dfd29d9bbb264c969','2022-03-03 09:44:42','2022-03-03 08:44:42'),(4306,533,'session','03320df97abea90c51667cde463752f438e5bb6b','2022-03-04 15:40:36','2022-03-04 14:40:44'),(4311,532,'session','ff496cbed6981c4632c76f1b4aafd199f5c3c1ec','2022-03-07 15:26:11','2022-03-07 14:26:21'),(4315,545,'register','4badc6a4da47ae594098b6cbf0659f8452bef07e','2022-03-08 11:06:38','2022-03-08 10:06:38'),(4325,532,'session','cb5454a037ed0a860ad14ed7610a71f7c709ea5d','2022-03-08 23:23:18','2022-03-08 22:23:51'),(4332,532,'session','9b03cad2882e96af99f731e0173381f5a47099cc','2022-03-09 14:45:56','2022-03-09 13:52:05'),(4336,467,'recovery','fefcd8271b9025c4e7674fb950dc8d2397340ee0','2022-03-10 00:31:12','2022-03-09 23:31:12'),(4337,467,'session','f0e89d1e9d3b721d13fe0bf0e21b6a16a61d2557','2022-03-10 09:16:05','2022-03-10 08:16:05'),(4347,546,'register','41403682d492fdbe252f4ddf5c4666fe324302bf','2022-03-11 16:07:02','2022-03-11 15:07:02'),(4349,546,'feeds','f3a9dce8252c62cbfa50f3e2cef202e132ebf45d','2022-03-11 16:08:58','2022-03-11 15:08:58'),(4353,547,'register','b978ea87dd9d64b3e4c7fc36f3055005f05751da','2022-03-13 23:31:42','2022-03-13 22:31:42'),(4367,429,'session','f895c73f1c209d55a5d9c25edf18cdb39c94e60a','2022-03-15 09:50:35','2022-03-15 08:57:51'),(4371,524,'session','746da3834d1725943973936837cfc01e11dd720b','2022-03-16 08:54:45','2022-03-16 11:11:39'),(4376,526,'autologin','fdcf6dea48464c65d8d8cf789fbd03e525c0388b','2022-03-16 10:40:24','2022-03-16 09:40:24'),(4380,524,'session','5e11ae530c4f110bcf6172a1e3342e2db9710003','2022-03-16 14:57:32','2022-03-16 15:11:30'),(4381,525,'session','65d782bd4782da7b983a278a317bf3c26f73690b','2022-03-16 14:59:25','2022-03-16 14:39:38'),(4388,506,'session','bc959136aac3096a32124b444a3010a9b1ca351e','2022-03-17 10:21:17','2022-03-17 13:20:01'),(4394,532,'session','9df6beaa83da8fc97f9d91e942ab7682cae0cc84','2022-03-18 08:44:25','2022-03-18 08:15:33'),(4397,436,'session','157d924b53fd4397cb9b34993101ba64b1dc6972','2022-03-18 11:50:06','2022-03-18 10:51:30'),(4414,548,'feeds','75c2dd924c56a882f3e54341e975f3e613cb62c6','2022-03-21 09:40:06','2022-03-21 08:40:06'),(4416,538,'recovery','70f09dce375df16871306f29150970abb9e37659','2022-03-21 09:58:17','2022-03-21 08:58:17'),(4421,544,'session','c73f0200fb94dc7f24c7716432761acb2f402f51','2022-03-22 08:25:13','2022-03-22 07:44:56'),(4422,541,'session','ae7af253d6b5f2b9d1449398cef1939cbb8bad3e','2022-03-22 08:58:53','2022-03-22 08:01:14'),(4423,539,'session','861513b030b5ad49c543c6edaf973337973cf962','2022-03-22 09:00:52','2022-03-22 08:04:31'),(4424,538,'session','7fcd21cdbebba0f0cec25e979182d2c850c40532','2022-03-22 09:02:20','2022-03-22 10:16:33'),(4426,537,'session','327666754dacebbf8d2cb358ca63f130c335e428','2022-03-22 09:06:06','2022-03-22 10:01:29'),(4428,542,'session','e61f68b83a8881df0c444d03cc4a4cde6cac51b6','2022-03-22 09:08:23','2022-03-22 09:49:30'),(4429,536,'session','289bcdab3fc505fa48026ec5641392a88d431b21','2022-03-22 09:08:34','2022-03-22 10:52:03'),(4430,540,'session','4afcaf2474dfbe95a37f7d8a58e4b53e991b6308','2022-03-22 09:16:31','2022-03-22 13:46:08'),(4431,541,'session','79f952b72bdef5b9aeee6dd50214b0784b5da500','2022-03-22 11:02:57','2022-03-22 10:04:07'),(4432,542,'session','451037ffb0b54d2facb2f89b836bc1e56b01a5bc','2022-03-22 11:03:57','2022-03-22 13:46:40'),(4433,539,'session','5924eb0be0231eae5bbfa9d302a2ae98e5d45390','2022-03-22 11:06:55','2022-03-22 10:07:46'),(4434,538,'session','449b2488b760cc6e6491f52aafe7c129d55a8914','2022-03-22 11:19:48','2022-03-22 10:52:37'),(4436,544,'session','9dc6d0697486342899b817ed8e8863be4e3723fa','2022-03-22 11:43:51','2022-03-22 15:13:53'),(4437,536,'session','361a439f5025beb13859623cf0732714f03bf6aa','2022-03-22 11:53:21','2022-03-22 13:20:16'),(4439,541,'session','48b70cd96b0f225f24b33eac55ca31e5455542ac','2022-03-22 14:20:20','2022-03-22 15:13:42'),(4440,537,'session','7c0b6364e17ee598e5bff1830cba2f0a0d63e91a','2022-03-22 14:23:50','2022-03-22 13:24:40'),(4442,539,'session','3dbd87de48879c3a19cd3a613ad768ee5375d0d5','2022-03-22 14:32:46','2022-03-22 13:45:55'),(4443,536,'session','ffe4c7ca2f6bc72cfa232b91699f1ac159d012ad','2022-03-22 14:45:25','2022-03-22 15:14:09'),(4445,537,'session','fa332ac2f2479a668c2e8ea6689299f8b2041752','2022-03-22 16:13:32','2022-03-22 15:13:45'),(4447,532,'session','f37e788556d4fc0f71b09f1f215f6df6a4ed14c0','2022-03-23 10:10:08','2022-03-23 09:10:42'),(4450,544,'session','066d87c3176b4b31e1b911ed53da3241cb5ccc70','2022-03-23 13:04:23','2022-03-23 12:05:09'),(4451,544,'autologin','a938bc06bbd3a1361164130bd688e2041dde024a','2022-03-23 13:04:23','2022-03-23 12:04:23'),(4452,542,'session','ad7ef3ae88d294e0e5d1ab0d96295fcda1bc169f','2022-03-23 13:44:07','2022-03-23 12:44:35'),(4456,542,'session','32e2eb0d142333fdbda0c20d1759cadac36afec3','2022-03-24 08:36:32','2022-03-24 07:37:48'),(4457,540,'session','284e7793b3b555871fb1054597c670dc24018989','2022-03-24 08:36:57','2022-03-24 08:52:31'),(4458,541,'session','dd7b170e27e3f6573f012d8466ab1fb4061a692d','2022-03-24 09:07:46','2022-03-24 08:32:57'),(4459,538,'session','cae937e6664ebb4e7bbe43c868a0c26ab79dfbc3','2022-03-24 13:07:51','2022-03-24 14:28:59'),(4460,542,'session','898fdb5d419b22a2e4dfdfb723fb1ad475520bd0','2022-03-24 13:21:20','2022-03-24 14:25:20'),(4461,541,'session','316887196b096e59d032ed74f289893a94707a5b','2022-03-24 13:22:49','2022-03-24 14:24:36'),(4462,539,'session','5c2f259bc3fbd7977215e7ec506e4b75d11072e8','2022-03-24 13:23:21','2022-03-24 12:24:55'),(4463,537,'session','bdf7bdc2b1e126e6c581a88c357852805a577546','2022-03-24 13:23:43','2022-03-24 13:58:50'),(4464,536,'session','e187471b4ccde3992d195d34c0fc289c50f2d9db','2022-03-24 13:24:57','2022-03-24 14:25:17'),(4466,422,'session','8db885fbc32dbbdd6f131a973af56ef6a4a15e77','2022-03-24 13:37:50','2022-03-24 12:38:02'),(4467,544,'session','4b8985447fefb1c820745c0fe004c2e1f6ee8a84','2022-03-24 13:44:17','2022-03-24 14:25:03'),(4468,540,'session','5ab10e8b9ace87efb1f977a18409930e2a3dbbb5','2022-03-24 14:18:32','2022-03-24 14:25:26'),(4469,539,'session','111f323d50006bce95a8bde23ce11b3af2fae5bb','2022-03-24 14:58:14','2022-03-24 14:00:28'),(4470,537,'session','a5fad4c379052be2e527da0c8735b25b3f8b24fc','2022-03-24 15:22:52','2022-03-24 14:23:07'),(4471,539,'session','430ce9a3d17a54afcacd09a43d7a0b68107e6e5f','2022-03-24 15:25:00','2022-03-24 14:25:26'),(4472,537,'session','a58e51338e2d774e437369905a04d83fc9e101c3','2022-03-24 15:25:10','2022-03-24 14:25:39'),(4476,532,'session','1034e859bc7652043d074371868b10c5cc3b2a7e','2022-03-24 17:44:32','2022-03-24 16:46:08'),(4484,549,'feeds','f52ad173fcfbdf44d3a6ae41fac1acbba86eafb6','2022-03-25 14:49:34','2022-03-25 13:49:34'),(4487,550,'feeds','2767335cc16c0773d921b6eeda29a2c4202e1ca0','2022-03-25 15:33:50','2022-03-25 14:33:50'),(4493,118,'session','3ada83ee9e4fbf145de0869bd79014b63c0eea23','2022-03-28 00:45:09','2022-03-27 22:45:35'),(4496,551,'feeds','3fb6bbb90bdf1f946802f290c9a759a3885fb8f1','2022-03-28 08:19:45','2022-03-28 06:19:45'),(4500,552,'feeds','31908a5092fa1e625798650b5c5d0fe3b61d5f8c','2022-03-28 09:02:15','2022-03-28 07:02:15'),(4502,533,'session','277a6eef95c2ad1bfe90c9619dcf88afd97208b2','2022-03-28 09:29:46','2022-03-28 08:04:09'),(4519,553,'register','8ec0d6fbe3be6e97f0afc65531a10565f73d0ce5','2022-03-29 09:02:29','2022-03-29 07:02:29'),(4522,553,'feeds','794157fbada9fe899cb27de2b9a9cf2d9aa5b1b2','2022-03-29 09:04:06','2022-03-29 07:04:06'),(4524,555,'register','8d071142f66e8bb681b836c2f5d9d2a269a3a424','2022-03-29 09:06:55','2022-03-29 07:06:55'),(4525,556,'register','a5aa7a3e042acf26f270ff4a843d45196fb0a328','2022-03-29 09:06:56','2022-03-29 07:06:56'),(4526,554,'register','3d089b7c45087642c83d629404618ddd3721ef20','2022-03-29 09:07:05','2022-03-29 07:07:05'),(4527,555,'session','8aa667dfa92008b82e3e30a25c59a9219b4de4b2','2022-03-29 09:07:31','2022-03-29 14:59:50'),(4528,555,'feeds','2b2659ea59f38b98c9c1a08921bf4faafa75f26e','2022-03-29 09:07:31','2022-03-29 07:07:31'),(4529,556,'session','ad958f231a589f70b392c94e60bd1269596d89f6','2022-03-29 09:07:31','2022-03-29 07:32:05'),(4530,556,'autologin','3c67022583d4c0727dfaf778f44fcbac452b1212','2022-03-29 09:07:31','2022-03-29 07:07:31'),(4531,556,'feeds','16f7266eabd15c7a3715bcc64428cd2070442194','2022-03-29 09:07:31','2022-03-29 07:07:31'),(4532,554,'session','4bbed399ae7120d4edfe2306567f43b5e3a4ae40','2022-03-29 09:07:34','2022-03-29 07:25:09'),(4533,554,'feeds','f09789a09ee66a7317e31e3162ae6887f6a4181b','2022-03-29 09:07:34','2022-03-29 07:07:34'),(4534,557,'register','362ddcc170d1aaa3a254244c9f6da654e38c146e','2022-03-29 09:13:02','2022-03-29 07:13:02'),(4535,557,'session','d650d26feb6d944a3aa209883181f198eca9ff64','2022-03-29 09:15:22','2022-03-29 14:50:30'),(4536,557,'feeds','0470083c475c5e8bef0e4ed2c101baea03ebaae8','2022-03-29 09:15:22','2022-03-29 07:15:22'),(4538,558,'register','960ee4f44e64481e6e188e53a8a1e5d02d8af9dd','2022-03-29 09:17:04','2022-03-29 07:17:04'),(4539,558,'session','ad65948e341db8744666d6b97777b6a512ce361c','2022-03-29 09:21:26','2022-03-29 15:19:16'),(4540,558,'feeds','4b73ac58ac2b4c821c6b3662bfc7cbf708cd58dc','2022-03-29 09:21:26','2022-03-29 07:21:26'),(4548,552,'session','4edbe046f28b26557213a363e5f54b0c50b9a973','2022-03-29 10:56:21','2022-03-29 08:56:28'),(4550,545,'feeds','72048fe993509cd9a9b36ac912accda7388db6ef','2022-03-29 10:56:49','2022-03-29 08:56:49'),(4552,554,'session','34ee71dc4f77d6a2688bbb715e9b11dacb97338a','2022-03-29 13:34:43','2022-03-29 14:15:28'),(4553,556,'session','688f69124b588333dcc583ae30f182d019f2f820','2022-03-29 13:39:11','2022-03-29 11:41:10'),(4554,429,'session','b221eccfa1bc61730426332d30bd5508177a34ea','2022-03-29 15:10:08','2022-03-29 13:15:33'),(4555,558,'session','23524d774a0b0edb2000f3e2309ad63c346f5b4f','2022-03-29 17:26:38','2022-03-29 22:19:27'),(4567,10,'session','90dc7fcccbffd64c8909989348b894c1b0789e45','2022-03-30 13:09:43','2022-03-30 11:12:21'),(4569,533,'session','e2fdc859ee2b971e41a4645f2edeb3e66ed98f97','2022-03-30 14:39:19','2022-03-30 12:44:55'),(4572,548,'autologin','cd9a3d640c19903200ddfc36c8f1ba2f3886e6c2','2022-03-30 15:43:35','2022-03-30 13:43:35'),(4585,556,'session','e39f5aff1b9a42893cec5dae29dc00535aed5eda','2022-03-31 15:56:09','2022-03-31 13:58:26'),(4586,556,'autologin','963e1815ffa83069154673f7f4c822750bb2478d','2022-03-31 15:56:09','2022-03-31 13:56:09'),(4599,533,'session','c793bba070cc0084ac93776076e96a0339f221f6','2022-04-04 16:29:30','2022-04-04 15:03:05'),(4600,532,'session','5d4e33ca68a80db75fca7de6d6c3f7aaab529f71','2022-04-04 17:19:01','2022-04-04 15:23:58'),(4602,507,'session','fc17eab4192e09329b14a295f2cd64be99cb4866','2022-04-05 01:30:48','2022-04-04 23:34:53'),(4603,507,'autologin','5e1cfe34fffcfb2f586598e295408968096cbbe1','2022-04-05 01:30:48','2022-04-04 23:30:48'),(4614,552,'session','1dd1ec53609022fa627a443cce6622f7f59d1585','2022-04-05 15:47:17','2022-04-05 13:47:23'),(4616,531,'autologin','cfd66a9b397d8cf858ac8f12a9f0846be0acb485','2022-04-05 16:03:22','2022-04-05 14:03:22'),(4626,559,'register','3534b174b810bdb47364d9d5d64d92117821760a','2022-04-06 16:05:31','2022-04-06 14:05:31'),(4637,531,'autologin','59024af0d8dee22be0042de56cc4b168881e079e','2022-04-07 10:28:18','2022-04-07 08:28:18'),(4651,436,'session','2b08577ee2edbe5697580c0b3067a5388b4fa79c','2022-04-08 16:27:34','2022-04-08 14:28:37'),(4653,533,'session','59160cf221400707f0cf3c830c8ce76920267050','2022-04-11 09:12:19','2022-04-11 07:18:37'),(4654,533,'autologin','fb337944046ec7e11a505960cb8d0c38c0d5b1fb','2022-04-11 09:12:19','2022-04-11 07:12:19'),(4661,555,'session','896e0f86acec6d1a345c87525ff074945d843d54','2022-04-11 15:47:40','2022-04-11 13:50:50'),(4665,531,'autologin','fb8db1585c567e5a22bc6b609fb57dcc310dcf1a','2022-04-11 16:56:26','2022-04-11 14:56:26'),(4666,533,'session','8e3272342be75ec25c0d405f1c189734acbf5e80','2022-04-11 17:08:22','2022-04-11 15:11:30'),(4668,560,'register','16fcb44110e56ee7a2fd75a307ba006209d09467','2022-04-12 03:55:40','2022-04-12 01:55:40'),(4669,561,'register','7bff7b8777138199361bdaa4a000a3d3f45a670e','2022-04-12 03:58:25','2022-04-12 01:58:25'),(4671,554,'session','675d5e32e9071f2156657d438042e195483028ea','2022-04-12 08:51:07','2022-04-12 13:50:15'),(4672,555,'session','34b8941115e57c49468d4cc6d1a235fb7321c2d5','2022-04-12 09:10:06','2022-04-12 12:51:55'),(4673,556,'session','ab4e60d16dc260d9193a08eb34ad522fe73dc107','2022-04-12 09:11:15','2022-04-12 12:51:05'),(4674,556,'autologin','9679331232f246d061cd27a2fdd73057a5b002a4','2022-04-12 09:11:15','2022-04-12 07:11:15'),(4677,558,'session','497dcceb28f1be4394538372c2fd9b78ba63e14f','2022-04-12 09:13:37','2022-04-12 13:41:33'),(4700,556,'session','625d20d92cc5075df07c2a26ac99e20d83e4d0f8','2022-04-13 11:16:52','2022-04-13 09:17:04'),(4701,556,'autologin','e0f9341f092b628389d877f9fee8d8c8af9bb594','2022-04-13 11:16:52','2022-04-13 09:16:52'),(4705,531,'autologin','77dbaccdb1d1eda6450aecefb30d767f9a22c4e0','2022-04-13 14:34:42','2022-04-13 12:34:42'),(4708,531,'autologin','cdfef19dcfca77ea79c6c06ff55091011d50e75e','2022-04-13 16:03:45','2022-04-13 14:03:45'),(4718,513,'session','13e6807b14e5892a4595ae2605cb73a25ec97af4','2022-04-14 12:28:42','2022-04-14 10:28:42'),(4719,532,'session','bdc1d1fa39b63a595e9c46a4c472f66d42dfc166','2022-04-14 13:47:15','2022-04-14 11:47:47'),(4721,551,'session','a241c0657f4d6bbfa5ccbce9d237b7ce23216acb','2022-04-14 16:19:30','2022-04-14 14:20:02'),(4724,556,'session','e68d92001741a2d03418d49f430f0ad615fa7c19','2022-04-14 23:13:29','2022-04-14 21:13:29'),(4731,518,'session','c457cec6f2c818f07d8cb9903ea16e82a0927d09','2022-04-15 11:41:46','2022-04-15 11:56:49'),(4732,518,'autologin','a4548e67e4fbf37f33a1f3c1aba50ad7b7d8f1ce','2022-04-15 11:41:46','2022-04-15 09:41:46'),(4752,551,'session','7a50e5021147fb1f4a41a633dd6ff1fb09b18a1f','2022-04-20 19:19:57','2022-04-20 17:19:57'),(4753,551,'session','114937eb88403e96131b4c5199f74a8d398524f6','2022-04-20 19:47:38','2022-04-20 17:47:48'),(4757,507,'recovery','e3a055671d8267a40aa22f86c488c8a487f2e0c3','2022-04-21 10:27:14','2022-04-21 08:27:14'),(4758,507,'session','65aa5002ba044d7076506043346a1b4f35d4808f','2022-04-21 10:27:42','2022-04-21 08:28:07'),(4759,507,'autologin','263758ef4957bec0a31dd41702acae0d432dd127','2022-04-21 10:27:42','2022-04-21 08:27:42'),(4765,552,'session','14fd7623527663a6db0b736e121857f6c4cffe46','2022-04-22 09:54:57','2022-04-22 07:56:06'),(4774,429,'session','85da8fb722287a01b01f6b08869ba11f6c546418','2022-04-25 09:51:11','2022-04-25 07:51:15'),(4778,518,'session','00d07a1ac5fce267096471058a92173e9e0a63e3','2022-04-26 13:08:06','2022-04-26 11:43:03'),(4784,562,'session','ebfa6cf83b57d15bbd3e1cf970430b5b6975456e','2022-04-26 17:13:20','2022-04-26 15:13:20'),(4785,562,'autologin','a7238dcb20f62453363318b85cf32ee5d0a88fe0','2022-04-26 17:13:20','2022-04-26 15:13:20'),(4786,562,'feeds','5215e1062173bf9ab767db996dd3566d2b0615a5','2022-04-26 17:13:20','2022-04-26 15:13:20'),(4787,562,'session','a9bcf341400492e92e9196d2de931f0666365919','2022-04-26 17:14:14','2022-04-26 15:16:11'),(4790,531,'session','d67d2a0570da6d6d6ef0cf69f1a51f2eff39952b','2022-04-27 15:03:41','2022-04-27 13:45:21'),(4792,533,'session','6032f339d94f40f600c3ebbc6e3b6951454e1230','2022-04-27 16:25:50','2022-04-27 14:28:24'),(4793,533,'autologin','e71f3b8259809946f14a830382d2fa413c759540','2022-04-27 16:25:50','2022-04-27 14:25:50'),(4796,531,'session','69cf64e2063a266a759fd771ab2d9a0b17dd544b','2022-04-28 09:17:42','2022-04-28 07:30:20'),(4797,533,'session','0e5235d448b1287ad4c755a4e24c5c69034ca91a','2022-04-28 09:25:36','2022-04-28 07:35:03'),(4801,564,'session','2f1e2bb99907686b99ad683f90817e2eea5e6155','2022-04-28 10:03:46','2022-04-28 08:45:08'),(4802,564,'feeds','20338bfb5f9b8d63d4c246e5a1a7d505e152215d','2022-04-28 10:03:46','2022-04-28 08:03:46'),(4803,562,'session','ffd3da1bae11e6ef9f6bd02bbe10c0891c0291ae','2022-04-28 10:06:55','2022-04-28 08:07:20'),(4812,551,'session','00d270cdb3ba2938f3885756cd76c00d276c32ce','2022-04-29 15:10:58','2022-04-29 13:13:36'),(4815,563,'session','accd1acf5592dec35128e02f422dfd490c469244','2022-05-02 08:18:29','2022-05-02 06:21:03'),(4816,563,'autologin','362b8a5efcadff258d818e6c557f33194121cd56','2022-05-02 08:18:29','2022-05-02 06:18:29'),(4817,563,'feeds','7ae95810506dfc30d7107ab5fa8ec087dbe07679','2022-05-02 08:18:39','2022-05-02 06:18:39'),(4819,531,'session','fcbbf5849d3876a29363cfe7da33e594e157ad5c','2022-05-02 14:06:22','2022-05-02 12:14:45'),(4820,531,'autologin','d2e48b863adf94e71c043cd4502d752ea3a8de58','2022-05-02 14:06:22','2022-05-02 12:06:22'),(4821,564,'session','9116cfd54a700927c7ed07c91ef9062daf43085e','2022-05-02 14:28:04','2022-05-02 12:28:28'),(4822,429,'session','fb1cf9e0e1620d684685c20e7acb75abaed06b79','2022-05-02 17:40:41','2022-05-02 15:56:10'),(4823,429,'autologin','fe50937f5ecc46ec5422a97dc2ce8df88a251c9d','2022-05-02 17:40:41','2022-05-02 15:40:41'),(4825,429,'session','04fdc12187b72373f94ba7cd12f43f5513ae65c9','2022-05-03 09:11:36','2022-05-03 07:11:36'),(4829,548,'autologin','3afe4b5d0eb43be0d032736585949858efffdaba','2022-05-03 09:39:44','2022-05-03 07:39:44'),(4831,565,'feeds','c045e75000089146a368fc249f2257d530808871','2022-05-03 10:13:03','2022-05-03 08:13:03'),(4836,566,'register','02fde81d77665c75c39e8425ad7f4a245d5cf96e','2022-05-03 16:09:55','2022-05-03 14:09:55'),(4837,567,'register','1ccd7fc5138945115cdd7288fc5b6f13226adcef','2022-05-03 16:10:02','2022-05-03 14:10:02'),(4838,568,'register','f491f6deb588bdb1efca88be7df9accd25f90c71','2022-05-03 16:10:13','2022-05-03 14:10:13'),(4839,566,'session','3f033c17f9832478b279803c6f10f0f5077e00cc','2022-05-03 16:10:20','2022-05-03 15:05:59'),(4840,566,'feeds','46bde3d527a1be21d4a91268babf625825f45007','2022-05-03 16:10:21','2022-05-03 14:10:21'),(4841,568,'session','3b5c11cc2bb5b6792845e7bf1beb85d52e35a78d','2022-05-03 16:10:31','2022-05-03 14:14:54'),(4842,568,'feeds','edf40260024b5d2b497d799e6b27758664659216','2022-05-03 16:10:31','2022-05-03 14:10:31'),(4843,567,'session','0b0656c2a8ab1184b5eeffb84981aba694a4c0ec','2022-05-03 16:11:04','2022-05-03 14:57:35'),(4844,567,'autologin','26dd92df82af3da0922e12cd2616907f11f3419e','2022-05-03 16:11:04','2022-05-03 14:11:04'),(4845,567,'feeds','edd8b57bbf56aa8794b066fee711496e99c3b1a0','2022-05-03 16:11:04','2022-05-03 14:11:04'),(4846,569,'register','8bdc8e60b695ae72d8503b347cdbc6e6b14b102c','2022-05-03 16:11:21','2022-05-03 14:11:21'),(4847,570,'register','afde8aa4a0fa23013b6d56b454f7771dccce5525','2022-05-03 16:12:02','2022-05-03 14:12:02'),(4848,569,'session','c444a9d9a4259134f4760d27c5fd08d8835b7bb8','2022-05-03 16:13:47','2022-05-03 14:38:44'),(4849,569,'autologin','0888eab792cd864840ec8564ef4eea18508da656','2022-05-03 16:13:47','2022-05-03 14:13:47'),(4850,569,'feeds','6cdbc1ed15f7c66c728bf2aaa790d1774380bd61','2022-05-03 16:13:47','2022-05-03 14:13:47'),(4851,570,'session','d1ee23adbccb5a4b6cac50523309a56b87f17089','2022-05-03 16:14:18','2022-05-03 14:25:47'),(4852,570,'feeds','57fa6b89c1e7b6687bc6a637668a414427a4dc94','2022-05-03 16:14:19','2022-05-03 14:14:19'),(4853,568,'session','719b078aee1e1bc074c574040ba4d531746e92ca','2022-05-03 16:17:17','2022-05-03 14:18:41'),(4854,568,'session','1505964986d56160e44f19416c98b32ec5f7afea','2022-05-03 16:22:24','2022-05-03 14:23:23'),(4856,531,'session','704392bfad1f4aa48e9017c13fb5c2b0cad3c816','2022-05-03 17:09:20','2022-05-03 17:23:51'),(4859,569,'session','e3d5ea3b075200863bf7b13690d7cb162204ea42','2022-05-04 08:56:14','2022-05-04 07:24:08'),(4860,567,'session','8c7b863be8732b45910e36be2e653ff0c4f8fa6f','2022-05-04 09:02:21','2022-05-04 07:41:05'),(4861,566,'session','69a9384a8b20472f5e31db4541f444d8a0583844','2022-05-04 09:08:58','2022-05-04 07:14:19'),(4862,570,'session','bac2f79ede3aecd371204e246b5c0a792e201a74','2022-05-04 09:37:21','2022-05-04 07:41:26'),(4863,505,'session','6550e37690e8f54068f03e1cd138a22f93244c56','2022-05-04 09:40:49','2022-05-04 07:41:30'),(4865,429,'session','5b0e51d3999d4a2d1e5d2ec8efbb41ec637bf7e0','2022-05-04 11:26:16','2022-05-04 09:26:18'),(4867,569,'session','5d5ddffeb89a4c302cba11008cceec7cb9e6b1a6','2022-05-04 13:27:56','2022-05-04 15:53:19'),(4870,567,'session','a0f35ba90364fa5509483fc0a7d64437b9188b0a','2022-05-04 15:03:40','2022-05-04 13:04:46'),(4871,566,'session','625f37641e128c5451785c251c2f511a9d72f07e','2022-05-04 15:06:03','2022-05-04 13:06:13'),(4873,518,'session','0a77f12db19310194f9eb3d114fa0bedc8522bff','2022-05-04 17:13:51','2022-05-04 15:15:08'),(4877,567,'session','bd5412c8a6ee871e0f55c61ddec095dd34053380','2022-05-05 09:30:13','2022-05-05 07:36:13'),(4878,569,'session','0e7c13244cc5c33030e37c247cada3243a59383a','2022-05-05 09:30:29','2022-05-05 07:34:02'),(4879,569,'autologin','984fe753364aa1fc0993b428754ba02ca2cf723a','2022-05-05 09:30:30','2022-05-05 07:30:30'),(4882,531,'session','07205d489e51fb532f74f0c863bade113d05acbf','2022-05-05 14:06:00','2022-05-05 12:06:01'),(4885,429,'session','9857647f42ad4ad7ab87231780ff63207be6cd09','2022-05-05 17:13:47','2022-05-05 15:13:54'),(4890,551,'session','cddf837f5f8ca25ff44f6bdc5c1367f45575d534','2022-05-06 08:39:18','2022-05-06 06:39:36'),(4891,513,'session','a487f3e5d6a5fd9dd71a8ee20b6aca2ee9f0c2f0','2022-05-06 08:44:37','2022-05-06 06:46:20'),(4893,526,'autologin','d33e329cb0ac815cfb3538c3bd1f9b5ea7b9bc29','2022-05-06 09:14:54','2022-05-06 07:14:54'),(4899,524,'session','c195f122c3e6896c5fb886b2342b390ba157f74c','2022-05-06 14:12:11','2022-05-06 12:12:38'),(4900,524,'session','e0da6f2433c7a0c608787147501fa29c552e5509','2022-05-06 16:12:14','2022-05-06 14:12:45'),(4901,524,'session','79e9254d7cc045492174e18c1e41f5a9ae0a1748','2022-05-06 16:13:45','2022-05-06 14:14:05'),(4907,533,'session','5611f8e8ef0a25db26bdf396d210474403904b09','2022-05-09 11:46:42','2022-05-09 09:53:49'),(4909,533,'session','a8653ebc634072f1a368d1f5477e703d5d527dc8','2022-05-09 13:54:28','2022-05-09 11:55:00'),(4918,566,'session','d9c7796da98c4878803693f64ff2bd6d7fd17878','2022-05-10 09:36:50','2022-05-10 14:27:56'),(4921,513,'session','1777bb6973b474d25ddc554524eef35300d38f52','2022-05-10 10:57:31','2022-05-10 09:31:15'),(4922,570,'session','90b5042550dca2243999efac760df5ad17fd9ea7','2022-05-10 13:55:00','2022-05-10 13:28:51'),(4923,570,'autologin','0369292c97664d180ae5a9036d915f0dbf81c476','2022-05-10 13:55:00','2022-05-10 11:55:00'),(4925,567,'session','fa17723c3cfdd92b9f43ffd06fc8e143fffce188','2022-05-10 15:33:37','2022-05-10 14:54:53'),(4926,567,'autologin','be9b154d197f8e8737556f376f8597fe49225c05','2022-05-10 15:33:37','2022-05-10 13:33:37'),(4928,569,'session','39b01a720835f1a18b97c171867d5b6c1b9df783','2022-05-10 15:54:42','2022-05-10 14:27:31'),(4929,569,'autologin','bb92dc3801f071ff762e9c9e29e33a8e21a92207','2022-05-10 15:54:42','2022-05-10 13:54:42'),(4933,569,'session','b76d40d7b97fd38ded0b3d3e5239baf33f5292f3','2022-05-11 09:09:43','2022-05-11 07:10:03'),(4934,567,'session','fafba78e4fefaf20ffc2367bfb1f942754a86aa0','2022-05-11 09:39:09','2022-05-11 07:39:28'),(4936,433,'autologin','65f670579cdf9fc4375e3e84f76955982f955943','2022-05-11 09:46:33','2022-05-11 07:46:33'),(4937,567,'session','b809e4a21f4bab1b2f607b92b2b7029f4da9f63b','2022-05-11 09:55:00','2022-05-11 07:55:09'),(4948,433,'autologin','4fcc3d8c5e49f24bc910d88079788bb5c029b355','2022-05-12 10:51:04','2022-05-12 08:51:04'),(4953,568,'session','054a7655e2b2ee0877a5ca0bd9fc1a6e098f6263','2022-05-12 16:15:27','2022-05-12 14:16:47'),(4977,551,'session','fed9a3f70d0b4e288df5eedeb09a40e33f48e9dd','2022-05-18 08:00:01','2022-05-18 06:02:39'),(4985,570,'session','838eb80517ea3ddc4ce023afef3244bbec62dff0','2022-05-23 08:33:44','2022-05-23 06:49:07'),(4988,496,'session','c6fc33680b4fa43c90f67f4a3b385c231a767b62','2022-05-23 15:44:58','2022-05-23 13:45:11'),(4991,496,'session','577080e713a37373b7bb36cdaf0513a4db5eb149','2022-05-23 17:43:33','2022-05-23 15:44:17'),(4994,328,'session','55fe4739573d03fde35114b726578048ed56fb89','2022-05-24 11:36:23','2022-05-24 12:14:13'),(4995,328,'autologin','b0a14a63de089cc3d462361620c70567bfc0d9ec','2022-05-24 11:36:23','2022-05-24 09:36:23'),(4997,552,'session','932e96d8db75b1413af0881b0eb25a716ebb1585','2022-05-24 14:45:35','2022-05-24 15:05:31'),(5000,571,'register','70eb7e0d33138d9fec38a9d5ffee9e4396c1d1b3','2022-05-24 14:52:28','2022-05-24 12:52:28'),(5002,532,'session','8d25148e1cf33733c309eb406734f0753ad7027f','2022-05-24 15:48:21','2022-05-24 13:48:52'),(5003,532,'autologin','644214e6ad78d625d4c3ab5d7c15703a3e1033ac','2022-05-24 15:48:21','2022-05-24 13:48:21'),(5004,328,'session','edbc96fb72784aa01fe7f16c6b89f76e9e1af87c','2022-05-24 18:44:51','2022-05-24 16:45:43'),(5007,526,'session','080d6eeeb4ce98cd0c2dc594518ac1efde521ce9','2022-05-25 13:39:52','2022-05-25 11:40:11'),(5008,552,'session','89e656ee6750b52ab7a8be1677815885788a29e8','2022-05-25 14:37:22','2022-05-25 12:53:52'),(5018,464,'session','4516e81afc11aca77295311f0022ee1769744592','2022-05-30 14:18:12','2022-05-30 12:18:25'),(5019,422,'session','ae6bca1397dd67ca194ebff54dc998a92c9acecf','2022-05-30 14:18:21','2022-05-30 12:18:27'),(5034,552,'session','8358b78fb6c28180e2e9eea2ddcae8e141e4c5b2','2022-06-02 10:43:42','2022-06-02 08:54:47'),(5046,433,'autologin','bc75c06ae14978998930d4eb94a4ef47f77edabd','2022-06-02 18:49:02','2022-06-02 16:49:02'),(5049,550,'autologin','dafddce588e6907b394424b93e9def91ed2a82b7','2022-06-03 13:27:33','2022-06-03 11:27:33'),(5052,551,'session','af264554a766edf637bf9139fe484fa74fe53f04','2022-06-03 14:59:22','2022-06-03 12:59:58'),(5053,505,'session','97ca0bdb55d3086177bd0a04d6ddb342360978fb','2022-06-03 15:01:20','2022-06-03 14:39:38'),(5057,436,'session','19dce99e323f7c61448d04eb340f8dcbd14fdcb0','2022-06-03 16:41:59','2022-06-03 14:42:51'),(5061,455,'autologin','2009708bc97fc48a14c530611aacba66b3bd719f','2022-06-05 22:17:38','2022-06-05 20:17:38'),(5063,436,'session','cc3112fad6463db7ed09af29c17b2832b1bba96d','2022-06-06 10:43:29','2022-06-06 08:45:14'),(5065,433,'autologin','c372fc4ea3d006bbb094e4b317deb309342f9431','2022-06-06 11:12:11','2022-06-06 09:12:11'),(5066,436,'session','b58ec9b9ccef3aa5244fd51ed5f5e3b2035dda16','2022-06-06 14:49:43','2022-06-06 14:49:04'),(5067,552,'session','cddc813692872fa592598ef7e860065940770f8b','2022-06-07 09:14:35','2022-06-07 07:15:07'),(5068,526,'session','1b1747da45525463b2fc0e2f48246f2ea973256b','2022-06-07 10:20:51','2022-06-07 08:21:16'),(5084,551,'session','eed4fafcf7595858ece878188ef992b7e65ca992','2022-06-10 13:35:55','2022-06-10 11:37:38'),(5086,328,'session','fe9a0b3c715b1d1e008e53e75562603da493bb20','2022-06-10 15:35:59','2022-06-10 17:07:30'),(5087,328,'autologin','bf837f7306bcbc45035d1d800082eb6c0493f74e','2022-06-10 15:35:59','2022-06-10 13:35:59'),(5096,328,'session','a3414fd137c150a2003570a747895d1b9a557940','2022-06-13 16:28:25','2022-06-13 15:05:54'),(5097,328,'autologin','7595b3506a2ca609291b161dcdd2a7aea1db395a','2022-06-13 16:28:25','2022-06-13 14:28:25'),(5101,503,'autologin','9ad3fab824342fc2e299d11f1f3a69dc79cb69ad','2022-06-14 00:37:44','2022-06-13 22:37:44'),(5102,503,'session','3eb50abfe16987c5be0505e3ceaf2b7956967be2','2022-06-14 00:38:23','2022-06-13 22:38:23'),(5103,503,'session','99c26bf656940c6f5603d4940922dc4b9b60a2b6','2022-06-14 00:40:27','2022-06-13 22:41:22'),(5104,531,'session','4cec477a3e9c7cecbec4dba94345b1cf166296c7','2022-06-14 10:07:50','2022-06-14 08:23:32'),(5105,531,'autologin','25faf0ddc4eabb495cec438146c1776bebdcf8c9','2022-06-14 10:07:50','2022-06-14 08:07:50'),(5107,572,'register','4a3635065028c793c1bdeef28ff4f39328c4f6e8','2022-06-14 10:34:54','2022-06-14 08:34:54'),(5112,572,'feeds','cf36273d076bf3856ef46f92fbf407b3d0307d5d','2022-06-14 11:37:29','2022-06-14 09:37:29'),(5114,572,'autologin','fb70447800066ec6915999c39d78299b7472731b','2022-06-14 11:37:47','2022-06-14 09:37:47'),(5126,328,'session','ebcb7fcde2d97342431c67854aa2115895c56a55','2022-06-15 15:15:57','2022-06-15 15:48:13'),(5127,328,'autologin','62f02ecbb07e14227db346f6eade6a59d87536c4','2022-06-15 15:15:57','2022-06-15 13:15:57'),(5128,552,'session','cde031a02296d19019dd095874615a443e01a851','2022-06-15 15:59:20','2022-06-15 13:59:48'),(5130,572,'autologin','c43c2319dc3feb0b819746acfb778fa2130da574','2022-06-15 16:32:43','2022-06-15 14:32:43'),(5135,550,'session','074e6854c5e26180765eabe80cda191ca0764374','2022-06-16 08:36:20','2022-06-16 06:39:45'),(5136,550,'autologin','897e07d8f230e31cb09050f55c4adfd4cfe51b5c','2022-06-16 08:36:20','2022-06-16 06:36:20'),(5143,525,'session','f00ff1e6c04f471f05055574ff6ed4d7ad113ff6','2022-06-16 15:47:01','2022-06-16 13:47:23'),(5145,550,'session','d5177c18d7b40eed43cd674e6b8b8209d205964f','2022-06-17 08:54:27','2022-06-17 09:23:57'),(5146,550,'autologin','733c0359081e7a99ee066edf914107bf6584b05a','2022-06-17 08:54:27','2022-06-17 06:54:27'),(5152,531,'session','3353fa02172da3229799c051a8c37a24f23ffe6d','2022-06-17 16:21:26','2022-06-17 14:21:33'),(5153,531,'autologin','fe89e0e7e0336d3550ed7f5a938aa7abf31cbc63','2022-06-17 16:21:26','2022-06-17 14:21:26'),(5159,552,'session','39ffa32d038f7287677e4c41c7463ecaee7c3a4d','2022-06-20 08:41:43','2022-06-20 06:42:40'),(5160,511,'recovery','e7e0a1eae6f2efd6ef2c0e3ef05e34d99d0ef11b','2022-06-20 08:57:10','2022-06-20 06:57:10'),(5161,550,'session','d25242e3038d10bee0a52f7f9ba81e2b3d0b06fe','2022-06-20 08:59:02','2022-06-20 07:06:43'),(5164,551,'session','f16eaeabe8a2fdd844cbbbb21e34e6cb2009924d','2022-06-20 10:18:57','2022-06-20 08:19:34'),(5165,550,'session','747ba96f01ab08f19d6fcc5a87f27eef563d8778','2022-06-20 10:32:04','2022-06-20 12:40:10'),(5167,531,'session','a2e7b2e16ecfb21ae0162b5b7213376bea84f2ce','2022-06-20 11:49:06','2022-06-20 09:49:06'),(5173,550,'session','13d5b2cf56bd59459cd23f44aa49e7f23eb75eac','2022-06-21 10:06:37','2022-06-21 09:06:34'),(5181,550,'session','302106ac069cafaf45ed23abc0476a943b9f74b1','2022-06-22 11:31:32','2022-06-22 14:27:57'),(5187,572,'session','a54e840d706bae2d72f8de57813795810632c1e7','2022-06-22 17:07:09','2022-06-22 15:10:14'),(5188,572,'autologin','ca10b2b1dfc5b3ae2f46c401174a848b860fa198','2022-06-22 17:07:09','2022-06-22 15:07:09'),(5196,518,'session','fd7820e152662edde1800c34a238d6685b3308c9','2022-06-23 10:48:07','2022-06-23 08:48:41'),(5204,573,'feeds','75f7995c161321909c8901428d17d94e493a1131','2022-06-23 16:28:36','2022-06-23 14:28:36'),(5213,550,'session','d48e8c1ca2851fc13b04ca8f2981ea0f9d8bdd76','2022-06-24 14:42:25','2022-06-24 12:49:52'),(5215,553,'autologin','858e8dbc33bfe7ff2e87cc20ec09770dec340941','2022-06-24 15:54:23','2022-06-24 13:54:23'),(5218,551,'session','5d5789bef490e55f951f8f5f04d240ae31c9795c','2022-06-24 19:27:03','2022-06-24 17:27:03'),(5223,553,'session','6a2d796dfe79d6c22e093db7c35bfb4c662e3849','2022-06-27 12:48:12','2022-06-27 10:48:20'),(5224,572,'session','e747fd64b9c979da48e014bfc6352669fa158aec','2022-06-27 14:04:53','2022-06-27 15:08:27'),(5225,572,'autologin','523b17077f1c08c3cc4df4903160e1fdd345bf2c','2022-06-27 14:04:53','2022-06-27 12:04:53'),(5226,553,'session','3c95c3aaaae96ca4cb9a2c2cf03ce2a6dab80eb1','2022-06-27 14:32:05','2022-06-27 12:32:08'),(5227,553,'autologin','fbba863cdfc93f73a5071076b367c3e8b4b6b58b','2022-06-27 14:32:05','2022-06-27 12:32:05'),(5233,572,'session','d46416d58342a55bd91c634d15270466c2105ecf','2022-06-27 21:37:37','2022-06-27 19:41:18'),(5234,572,'session','9332c0204086c6eef6d328379536bd6daa6074dd','2022-06-28 09:05:13','2022-06-28 07:05:13'),(5237,518,'session','96ea16c5843ec3f243bb679c0e0519c6716f03f9','2022-06-28 09:23:40','2022-06-28 07:24:22'),(5239,548,'autologin','23573d76954ee095433e852549fa9e2dbe571f9d','2022-06-28 12:53:48','2022-06-28 10:53:48'),(5249,492,'session','7a201e5011e9a6199ae7ec7b5331a671fa57e7d9','2022-06-29 08:43:08','2022-06-29 06:43:15'),(5252,512,'session','5df0f31b02f858e70000dddd74bd3fb7d8879e2f','2022-06-29 14:50:46','2022-06-29 12:50:55'),(5253,512,'session','b4863cb47f004df5e8b3f643cb4900711a6e80b9','2022-06-29 14:51:10','2022-06-29 12:51:44'),(5254,512,'session','038f43972ce8949a7f53fb0bcb8fd417291248e9','2022-06-29 14:56:07','2022-06-29 12:56:32'),(5260,512,'session','d16aa370975c491c0ce5e8565c0d64a885a857f2','2022-06-29 21:44:20','2022-06-29 19:44:43'),(5264,546,'session','947ccfa075cc744e95f1d184de9f4c351736165f','2022-06-30 15:09:13','2022-06-30 17:43:23'),(5269,546,'session','f46a43b661bb4fdabcebf9fc0d7d2d845a9c3ad6','2022-07-01 08:59:59','2022-07-01 11:55:40'),(5273,572,'session','2d985587ff20f7ee6296e9d8c5e4863a3a494ed5','2022-07-01 09:44:43','2022-07-01 08:14:16'),(5274,572,'autologin','a57d04e8e9abc1660595f46542ba812b9945d611','2022-07-01 09:44:43','2022-07-01 07:44:43'),(5277,546,'session','28706fcbf198cc91dcb22058f1d1d4a22f8497c2','2022-07-01 13:59:40','2022-07-01 16:12:35'),(5279,546,'session','acb9b908e7699396bf5c662d2244a06f602d5867','2022-07-01 18:15:01','2022-07-01 17:52:51'),(5280,512,'session','3133cade2f56d81738fa9c717e4d762b6cfb4c8f','2022-07-01 19:13:09','2022-07-01 17:17:48'),(5281,503,'session','eed6bb9abd94c9684db00e9e8bab72e02b8e596d','2022-07-01 19:15:27','2022-07-01 17:17:33'),(5282,503,'autologin','050cb8c2459a1aafd7c2bf7a869d9dfa6384d61c','2022-07-01 19:15:27','2022-07-01 17:15:27'),(5286,572,'session','d8f353b3eb6a1c6a02215e473e58bb2225787fa7','2022-07-04 03:32:56','2022-07-04 01:34:31'),(5287,531,'session','ac91be4bd6fdc93322d92d45536fd100e494540a','2022-07-04 04:20:21','2022-07-04 02:52:10'),(5288,531,'autologin','98fa0ee167b37b4b55c0d0e9366f33735393d387','2022-07-04 04:20:21','2022-07-04 02:20:21'),(5291,548,'autologin','47b77f7c4629bd660d3650d529d9c9ffe850c42a','2022-07-04 09:26:52','2022-07-04 07:26:52'),(5301,574,'register','1f772e04c304ab3cabcf08140313384e14d9753c','2022-07-05 09:01:13','2022-07-05 07:01:13'),(5302,574,'session','59d9c97a6018bca7aeabc4b96301b23e1c1c2802','2022-07-05 09:02:02','2022-07-05 10:04:47'),(5303,574,'autologin','21686a3e882812607f8f335d9f9b29efbca6d9be','2022-07-05 09:02:02','2022-07-05 07:02:02'),(5304,574,'feeds','456786ee3d1c83cdd372b7454fe24491f1fb2361','2022-07-05 09:02:02','2022-07-05 07:02:02'),(5317,574,'session','5043b9fc7d00ee16ac321b43882b8595f2bf10d6','2022-07-06 13:53:32','2022-07-06 12:16:20'),(5318,505,'session','14542a95350743a8ff4f6bb1c88d3031baefb296','2022-07-06 16:36:37','2022-07-06 14:36:54'),(5319,496,'session','15b06c3319e4b08a4d63835d2b036bd0ca6d9b9c','2022-07-06 17:02:18','2022-07-06 15:18:58'),(5320,550,'session','4207906089696477aa8547611c64a95f1743370f','2022-07-06 17:40:37','2022-07-06 15:59:40'),(5322,512,'session','d36b4664591f538586ffdf2d5b0b61db46e312a9','2022-07-07 05:09:11','2022-07-07 03:13:19'),(5323,574,'session','218c37f4549128afb1cc386bbe0b1abae2580571','2022-07-07 10:37:30','2022-07-07 08:37:30'),(5328,512,'session','838a681d80d9b43cd2e8eb1a7849be16678b4797','2022-07-07 21:50:27','2022-07-07 20:06:42'),(5332,433,'autologin','d4f6f50db6f06700837e45f4123154179237de18','2022-07-08 14:55:17','2022-07-08 12:55:17'),(5333,512,'session','9e0fb82cf84d0cf510c90123ece7e45aeee7706c','2022-07-08 15:17:15','2022-07-08 13:17:15'),(5336,546,'session','b40673f28604bef05c42a240b969426d7c450b80','2022-07-08 15:27:03','2022-07-08 13:27:12'),(5337,503,'session','00864ab016c498c741069caeae98ade8e37a1007','2022-07-08 16:32:56','2022-07-08 14:33:17'),(5338,503,'autologin','ac52f4f02041cb1b339bc6e2c13e8045968837df','2022-07-08 16:32:56','2022-07-08 14:32:56'),(5345,575,'register','43049a00d3b3c6e1d78e554482b49648587162a2','2022-07-12 11:40:50','2022-07-12 09:40:50'),(5347,575,'feeds','84d21560c58285c4e2b93e72ec96b708473b23de','2022-07-12 13:55:27','2022-07-12 11:55:27'),(5348,492,'session','e77a6615010b1f326aa78cc62ebe2f097e769a0b','2022-07-12 14:01:58','2022-07-12 12:02:07'),(5353,503,'session','5ce8dcb072f66cb9b89b5708b32ba730f3751095','2022-07-12 17:16:30','2022-07-12 16:01:25'),(5356,574,'session','12a1745702823649b3de4e2e4e57d19d2c74aa4b','2022-07-13 10:03:40','2022-07-13 13:45:25'),(5357,574,'autologin','6729e536838b974bdd01eab9dbfe0517225c6e0b','2022-07-13 10:03:40','2022-07-13 08:03:40'),(5360,496,'session','64da8d418e4dde914e590f8dcf1c5f9dd888cefd','2022-07-13 19:39:49','2022-07-13 17:46:19'),(5362,572,'session','27a66f2f9910f778c8e859cbd28ccb693e9edc81','2022-07-15 11:37:13','2022-07-15 09:38:08'),(5363,572,'autologin','e1da20b7f114d3317c8f6626f7f943ce63d600cf','2022-07-15 11:37:13','2022-07-15 09:37:13'),(5372,505,'session','dc3e557d8bb8d23fe78f210a3581454e38dd17cc','2022-07-18 08:01:33','2022-07-18 06:01:33'),(5376,575,'session','e4f6d8f59bb0796990df43728803da6d4559ca72','2022-07-19 08:45:39','2022-07-19 06:47:05'),(5386,575,'session','f97767c9501a9cd677774f4c396f817f72e81e7c','2022-07-21 08:45:48','2022-07-21 06:58:30'),(5387,575,'autologin','63ede6f3b421a529493d7b53148af9639c09a112','2022-07-21 08:45:48','2022-07-21 06:45:48'),(5388,492,'session','4d1b0c0429ccb3e23913382ec4d97d753e1da0a0','2022-07-21 11:44:09','2022-07-21 11:15:19'),(5389,575,'session','428eccbbd88da632195c5959d438cf09ec3b1250','2022-07-21 14:02:54','2022-07-21 12:02:54'),(5390,546,'session','92027e346f52ded853ee5a170252e220d3855772','2022-07-21 14:55:20','2022-07-21 12:55:20'),(5393,503,'session','acbd132d515f6b8165e8a81219e4cd1c5c91119a','2022-07-21 15:30:20','2022-07-21 13:30:58'),(5394,503,'autologin','8d4bee20f0c17a3d4139bf201fd9b5c92e9f2715','2022-07-21 15:30:20','2022-07-21 13:30:20'),(5397,575,'session','f8301b2b0cbba162bf268878dce16164a912207e','2022-07-22 08:55:47','2022-07-22 06:56:17'),(5398,575,'autologin','4d99d33bcb6dca5f28f0da90396605ada43bfbfb','2022-07-22 08:55:47','2022-07-22 06:55:47'),(5406,545,'session','5b38e5b234da57c4767b9114bbd260e5fb8f42c7','2022-07-25 09:36:46','2022-07-25 07:38:33'),(5408,546,'session','3dbb30ad646ffef58eba27fb0243cfeb06d44dd5','2022-07-25 14:27:35','2022-07-25 15:13:19'),(5409,546,'session','de30fd08c2fbd2059b079ceb7b5a946a340343aa','2022-07-25 14:32:53','2022-07-25 12:33:35'),(5411,545,'session','18d67d54de2fdcb1e40f84f550d95dffc5b6f677','2022-07-25 18:45:34','2022-07-25 16:45:53'),(5423,545,'session','8878a31b2939d127bbeafa206d894c175b1e7491','2022-07-28 09:27:20','2022-07-28 10:21:44'),(5424,492,'session','8194af84eb075b31d7a5862dccfe5b79519d3592','2022-07-28 09:41:38','2022-07-28 09:41:38'),(5427,553,'session','6566a78b1be138a3ad598c11ca9f49011816729b','2022-07-28 17:37:39','2022-07-28 15:44:07'),(5428,553,'autologin','0a5eab38d257eaca479e24d690f97b4c54e22172','2022-07-28 17:37:39','2022-07-28 15:37:39'),(5429,553,'session','78af30273edd4bd7825daf63db622a0058aefc8d','2022-07-28 17:53:49','2022-07-28 16:13:39'),(5432,474,'session','de28c8cae16fe70581bf53855cbf47fbce634ee3','2022-07-29 09:35:59','2022-07-29 08:05:24'),(5433,474,'autologin','1779f64c868d785fc9b1669faaf8f846aa573e1e','2022-07-29 09:35:59','2022-07-29 07:35:59'),(5434,496,'session','4d4fa25c4a39e5e4271867b2013964fe3f75c04c','2022-07-29 09:52:52','2022-07-29 07:53:13'),(5435,553,'session','6c518a69b6f51407ea78dd1c668ba69bb5d8bdac','2022-07-29 10:50:15','2022-07-29 08:52:22'),(5436,545,'session','73ca39c2ce02670ed9feb639519dd2f7be12b50d','2022-07-29 10:52:38','2022-07-29 09:50:52'),(5439,553,'session','bda5a4038958f1ad388181aab11660d18793ba5f','2022-07-29 13:45:12','2022-07-29 11:46:04'),(5441,576,'session','be52ad717fb9f9941233f6758a9a35d19d8a66ba','2022-07-29 14:09:47','2022-07-29 15:06:59'),(5442,576,'feeds','49afb99b6ce96e9234d0707e0b029b39fa8b8a20','2022-07-29 14:09:47','2022-07-29 12:09:47'),(5443,553,'session','fa9ad1a11f29ffa3c42294947303e3c0082428ab','2022-07-29 14:13:58','2022-07-29 12:33:37'),(5445,553,'session','85e8a4f65f8a034ee0bea6b173e147e7548fd14d','2022-07-29 14:44:07','2022-07-29 12:58:09'),(5446,576,'session','32a0f695b4f63674779175bebb7843fff0e6b9d9','2022-07-29 17:03:44','2022-07-29 15:03:44'),(5447,545,'session','ffa74bc348a04e0558f64149f72addba18c41c0b','2022-07-29 17:09:34','2022-07-29 15:38:56'),(5450,545,'session','182abbef9aa078b4a423b4b9c3d886a5b6c826e1','2022-08-01 11:46:19','2022-08-01 09:47:15'),(5457,106,'session','d16da3f8b41df35b32ad8ee22a3087bac95777fc','2022-08-02 03:35:40','2022-08-02 01:36:58'),(5458,106,'autologin','0c1b7956bc4a41545d84fc00e29004b33c1df7f6','2022-08-02 03:35:40','2022-08-02 01:35:40'),(5465,545,'session','bd9f37c4ed5a2607f0488ad2b10d650caad9e44f','2022-08-02 15:20:03','2022-08-02 13:25:32'),(5469,577,'session','581c8ad3ef65c4936f6f8bd5c8dfbe9cccd1c472','2022-08-02 16:56:41','2022-08-02 14:57:29'),(5470,577,'feeds','f7e77f1ffde6cea58dfeb1e720487d767929ba0a','2022-08-02 16:56:41','2022-08-02 14:56:41'),(5475,545,'session','0cdd5da897ed25cf00f47fe73db457f699b4e4a5','2022-08-03 12:16:20','2022-08-03 15:27:15'),(5481,531,'session','c0ee55f9c8f8572c443fc72073443b7f1152cdeb','2022-08-04 11:34:37','2022-08-04 09:35:08'),(5482,531,'autologin','d40390ba4b332a177d8946dea868606f09845a56','2022-08-04 11:34:37','2022-08-04 09:34:37'),(5494,503,'session','bc3c3c1f797d77729ea4cf9196d6e4e3ec2488bd','2022-08-05 22:13:56','2022-08-05 20:16:56'),(5495,503,'autologin','fa3c4584702036f330e63762aaea1f44f4733c40','2022-08-05 22:13:56','2022-08-05 20:13:56'),(5504,503,'session','6f3ab2431c2e5eb5bc210bc4e979987872e8ad22','2022-08-09 00:45:32','2022-08-08 22:45:58'),(5505,503,'autologin','8298180eeda4d5a132d6f6435e5191abc6831c02','2022-08-09 00:45:32','2022-08-08 22:45:32'),(5506,503,'session','eb6a9218f6caf7c58b927f22c56059b88ab1c720','2022-08-09 05:50:24','2022-08-09 03:50:24'),(5511,512,'session','8b9818b971b12eef0f2722e6c3774953f1880e9a','2022-08-09 15:37:37','2022-08-09 13:46:03'),(5513,512,'session','6e6d27fa10e1a2ee7adb6b142c5ff31ef428ab85','2022-08-09 15:44:25','2022-08-09 13:44:28'),(5546,572,'session','96231d83174c6775ced5528bd8fd1c895f087289','2022-08-19 13:12:02','2022-08-19 12:03:08'),(5547,572,'autologin','47f385f2b6c2e892bfd323ebeb648e5657f661bc','2022-08-19 13:12:02','2022-08-19 11:12:02'),(5563,505,'session','326f3b85acc840821fe82ff1ae9cc143427f7d06','2022-08-25 11:07:47','2022-08-25 09:07:47'),(5572,492,'session','5969b9226e2d3c4da81cc0f8919c9f7a5cd443f4','2022-08-29 08:59:31','2022-08-29 06:59:46'),(5574,548,'autologin','8ff333fcc42424b450d134097185fcf2cf62976e','2022-08-29 09:26:36','2022-08-29 07:26:36'),(5580,572,'session','e483287513617afb754209a8cc5b2b81506a429e','2022-09-01 16:12:12','2022-09-01 14:12:26'),(5581,553,'session','344cae3122436816e703d972060080bcde2f7e78','2022-09-01 17:14:45','2022-09-01 15:14:46'),(5593,433,'autologin','a2c5667c7d11f4e3b8d4756df5526053d61dc6ad','2022-09-06 09:52:03','2022-09-06 07:52:03'),(5594,539,'session','fbbe24b79ae747247b34792287e14f92d16e9369','2022-09-06 11:19:17','2022-09-06 09:21:14'),(5597,546,'session','6a38a1c0aad3c280de9d2f11b405c9f0e5e19116','2022-09-06 14:20:05','2022-09-06 14:43:09'),(5603,546,'session','9f0fadf934de5a3a8c9adeadde77d9247b9bfef8','2022-09-07 16:15:02','2022-09-07 14:15:11'),(5606,578,'feeds','1a53ca631d22a63e305691b07aca42b605e10e9a','2022-09-07 18:12:38','2022-09-07 16:12:38'),(5609,578,'session','f43ba118fc5ea460f817e507e3e8eff561f32fc1','2022-09-08 08:53:41','2022-09-08 06:53:41'),(5620,545,'session','18da0634ec4db14ca80bc37a78823ae99c5ecf52','2022-09-08 16:28:35','2022-09-08 16:04:55'),(5629,550,'session','013327cca0cd8016725c0275a539da924882a6df','2022-09-09 14:09:33','2022-09-09 12:13:22'),(5630,422,'session','f6f69cd2e3b043cc0d172671537f32d31abc7655','2022-09-09 15:03:32','2022-09-09 13:11:56'),(5636,505,'session','ca8cef7d2a266a756bd07e5968822d89df55299f','2022-09-12 14:25:48','2022-09-12 12:25:51'),(5640,545,'session','854d0e2c4bf160ae100fe52e471d60c65421c161','2022-09-12 18:07:44','2022-09-12 16:07:51'),(5641,429,'session','f557b36b1b1cf7d7ab6eff6c23e78742808b363a','2022-09-13 09:46:25','2022-09-13 07:46:25'),(5649,526,'session','0cbcae5bcf5f15709b4c54c38256541aa511b16a','2022-09-15 14:28:24','2022-09-15 12:37:29'),(5650,526,'autologin','e54b6e8e6131e969b0aef80636d7eb6d2c900033','2022-09-15 14:28:24','2022-09-15 12:28:24'),(5654,539,'session','98529bc0470ce68e3b73a94e9de33ba51b9ea994','2022-09-15 14:55:34','2022-09-15 12:58:04'),(5655,539,'session','b43c41fd9235cf5563dbb2292a5fdd57b946bd0f','2022-09-15 15:14:40','2022-09-15 13:16:17'),(5666,510,'session','267531d9c340c65dd3b270c4d33328b025c0f44d','2022-09-20 11:12:26','2022-09-20 11:43:45'),(5669,505,'session','0b5c6f9e0f68a0e032f554a2c3f9d2775d13737d','2022-09-20 14:16:57','2022-09-20 12:18:05'),(5671,510,'session','5cd38aa8f647a2b622bbc051061e0c6387d3d561','2022-09-21 08:49:16','2022-09-21 09:43:42'),(5685,572,'session','216c941aa2ce10dbbe0b7dd68cce2d1c5fa288bd','2022-09-23 13:21:58','2022-09-23 11:21:58'),(5687,548,'autologin','d217c4425275d55414d9e568b231e195f58ddd6c','2022-09-23 13:51:25','2022-09-23 11:51:25'),(5691,505,'session','f9fb405ea016e4262cdbb7e31a89408d4fe85b42','2022-09-28 09:42:47','2022-09-28 07:53:02'),(5697,526,'session','3bfcacb9d62c028c1d3c499caca2285e6275efc2','2022-09-28 14:42:07','2022-09-28 12:42:11'),(5698,526,'autologin','e284bdb2f1713865e372ecebeeca3425477eafe4','2022-09-28 14:42:07','2022-09-28 12:42:07'),(5704,505,'session','751bb38db57c19cec93c638a9d777962e2108663','2022-09-29 14:04:35','2022-09-29 12:05:18'),(5705,526,'session','ab0280e5768187f89633e268807862c8eccba36f','2022-09-29 15:11:27','2022-09-29 13:17:59'),(5706,526,'autologin','57aef69db3c06013736be5efe1d81a24ea154f26','2022-09-29 15:11:27','2022-09-29 13:11:27'),(5708,433,'session','9b816c835e23b965c1a245f71db97bc37831445b','2022-09-29 17:03:02','2022-09-29 15:03:02'),(5709,433,'autologin','8c546b25d3819903e40b7660febd2b6a1028b7ca','2022-09-29 17:03:02','2022-09-29 15:03:02'),(5717,433,'session','c1b4806d11dc34176b3d6bda73883dff86a3dcae','2022-09-30 16:12:07','2022-09-30 15:43:58'),(5719,433,'session','d19da5292569e91e5a7497c988cfd6b66a300327','2022-09-30 17:51:59','2022-09-30 15:56:20'),(5720,433,'autologin','40910744920e616697c3d5e2e466bd81b365cacc','2022-09-30 17:51:59','2022-09-30 15:51:59'),(5721,579,'session','46117c533c71d653f5439c454b23289b86a10f15','2022-09-30 17:56:09','2022-09-30 16:01:02'),(5722,579,'feeds','cdc5da8262f3b4a5f621259320cf8e5fef449953','2022-09-30 17:56:10','2022-09-30 15:56:10'),(5728,496,'session','f4ed811184781de104d88a4886686ef47c0931ab','2022-10-04 14:03:12','2022-10-04 12:41:13'),(5730,496,'session','991e906eee88f8ebf5eb4d58db25df885a1ead53','2022-10-04 17:32:38','2022-10-04 16:04:17'),(5734,328,'session','f90b69c9e41eb18e3af7032302c66ec031f696d3','2022-10-06 12:47:11','2022-10-06 17:26:03'),(5735,328,'autologin','cb9f7213c871e01049cc6734aa68676087968812','2022-10-06 12:47:12','2022-10-06 10:47:12'),(5738,526,'session','d1bcb547896d1b14d3a9e7f7081932f431d3046f','2022-10-06 14:13:07','2022-10-06 14:09:07'),(5744,328,'session','10a55f26958bb28c5de0ef78e7028e2e7124d087','2022-10-07 09:52:28','2022-10-07 07:53:16'),(5751,510,'session','ee3481e2a018f5c89e66fab3c7a726377870706d','2022-10-10 08:32:09','2022-10-10 06:33:05'),(5752,474,'session','ec74e355aca9c9975f2f559d9e17dacfac582211','2022-10-10 09:51:30','2022-10-10 07:51:33'),(5757,432,'autologin','0c0411d56016765d22dc06d34f17cbaecaf18e1a','2022-10-10 14:31:50','2022-10-10 12:31:50'),(5763,526,'session','e1f311f05eaa0c682195497679d7cd1e93c92ea6','2022-10-11 14:00:17','2022-10-11 12:00:39'),(5764,526,'autologin','f2f3887b29de220c0790d0387bf6378ac3d8015d','2022-10-11 14:00:17','2022-10-11 12:00:17'),(5785,528,'session','4b3a4a5c195cced9ac90fa78a9580b036fd83621','2022-10-18 09:14:28','2022-10-18 07:39:44'),(5788,528,'session','9465143c7bfea6e1dd326bc128c3f5f2cfef08d1','2022-10-18 14:07:05','2022-10-18 12:07:05'),(5789,526,'session','ac8aa04665f595d752e7ad0c40ba1ade7b966523','2022-10-18 14:10:36','2022-10-18 12:10:39'),(5790,526,'autologin','611ba827f9ffc4ed522c9df84bfe39f4d829af4e','2022-10-18 14:10:36','2022-10-18 12:10:36'),(5796,565,'autologin','f45e1baee370f8ed6a6087e33e8d061624d98882','2022-10-18 15:56:50','2022-10-18 13:56:50'),(5797,496,'session','f0defd13f052114e8ba50d2a68f1d4485c3ef5dc','2022-10-18 17:27:45','2022-10-18 15:29:29'),(5798,558,'session','e7296931175032f37dcb1e3860322b1e50367a00','2022-10-18 21:46:19','2022-10-18 19:54:09'),(5801,296,'recovery','fb8f9e06b9fc2dc4c05c6db10e8e52e97c142718','2022-10-19 11:34:25','2022-10-19 09:34:25'),(5802,528,'session','c6e86722128957c213fb42e67bba57da01a92085','2022-10-19 13:04:57','2022-10-19 11:04:57'),(5808,489,'session','39c5b9b61559049378bf053f87b906719a81f8df','2022-10-21 10:53:15','2022-10-21 08:53:57'),(5811,436,'session','80ca6b0d70b35835fe37ac66819c27b282eda6a4','2022-10-21 14:51:20','2022-10-21 12:52:08'),(5814,1,'autologin','2ae0814baa8a05fb27785e128b40e2501b8b4697','2022-10-23 13:52:16','2022-10-23 11:52:16'),(5817,548,'autologin','f27b1fc2e3075a1155994c1ea5aa1457bea2de1a','2022-10-24 16:37:20','2022-10-24 14:37:20'),(5819,528,'session','9aa5a1521fc325f60586a56160a0dd3d3b395196','2022-10-26 16:00:52','2022-10-26 14:07:19'),(5820,403,'recovery','c02f319ddea4615495db2d696a88a9395b53729e','2022-10-27 12:14:32','2022-10-27 10:14:32'),(5831,489,'session','6fa766b98130fccd8c1a7c4626f6920683f226b5','2022-10-31 14:30:00','2022-10-31 13:30:57'),(5834,548,'autologin','9b620fedb01b83afe299e83b649cc9ef2387ab2d','2022-11-02 09:24:11','2022-11-02 08:24:11'),(5835,492,'session','a111a8a37e8404bf5bc347bb32ec9f2d13526abd','2022-11-02 13:58:58','2022-11-02 12:59:08'),(5836,528,'session','280ff113f2dd9806a61c3283d457534e37532edb','2022-11-02 14:12:24','2022-11-02 13:12:24'),(5838,526,'session','8bb39f18aff68bdae1a3eb0c30dfe1b9a943ad19','2022-11-02 14:14:05','2022-11-02 13:16:56'),(5841,496,'session','ba29b883a7ea774554c7ffbacacaed87f6d55d81','2022-11-02 15:02:57','2022-11-02 15:13:39'),(5845,528,'session','7f40ca99887d66ffa756014ed5e48d7e9b02a6d6','2022-11-04 08:50:06','2022-11-04 07:50:15'),(5847,492,'session','46acf447dd9ce177fd401d8b5ebd479a3c79a87b','2022-11-04 14:09:13','2022-11-04 13:17:14'),(5848,433,'session','88a0e88da520e41e2c11e20a75567ca37a9c7039','2022-11-04 14:24:18','2022-11-04 13:24:39'),(5849,433,'autologin','ad5b884e63338dd1b0635a83cadbb908999a90ec','2022-11-04 14:24:18','2022-11-04 13:24:18'),(5850,433,'session','66104e7fd7ed3f0781fd7c24be56eef5e45f0eb8','2022-11-04 14:26:25','2022-11-04 16:07:24'),(5852,492,'session','ab2e29fd27cff0fc7851055f3958fc2eee283421','2022-11-07 09:16:26','2022-11-07 08:18:04'),(5856,424,'session','1697f2c475b6eea3c603e7af7f07bee34d94a455','2022-11-08 08:33:05','2022-11-08 07:46:37'),(5861,433,'session','3438ed08b24bb372c65d9e70101225b9bfa6c5cc','2022-11-09 12:21:57','2022-11-09 13:04:03'),(5863,433,'session','1cb98f92a92ece622343d5c2862908bb35cb2850','2022-11-09 18:43:42','2022-11-09 17:43:47'),(5864,549,'session','bc6d0b80676c23d88651cc7aae22f99c073bd304','2022-11-10 10:33:42','2022-11-10 09:33:59'),(5868,433,'session','5da75273e271d4cf98df0fdc85dd06a9e2d30e82','2022-11-10 17:23:37','2022-11-10 16:24:31'),(5869,433,'autologin','061bf457b95794443211b0fabc5e84ad24fd3d41','2022-11-10 17:23:37','2022-11-10 16:23:37'),(5878,433,'session','f2411992f3a82918989ac19a619f000d90524679','2022-11-15 15:50:24','2022-11-15 14:52:48'),(5881,424,'session','892997c8284e08106def0d0358a7dc21102b25ca','2022-11-16 11:19:00','2022-11-16 10:19:00'),(5882,528,'session','c74088658070822bd88aaf579cdc81cbadb05d13','2022-11-16 11:25:26','2022-11-16 10:28:41'),(5883,431,'session','69a713d83de8d08c9f4bc2b7ac5afc8915a1683b','2022-11-16 13:47:50','2022-11-16 12:52:58'),(5886,431,'session','fc34d35adadd658c32bff3ccb319c34da955efa2','2022-11-17 08:54:57','2022-11-17 07:56:21'),(5891,549,'session','da08b95861ef32ec21313b1be4f6fb0e45d27191','2022-11-18 13:41:09','2022-11-18 12:41:50'),(5895,424,'session','de683cb006bce44c3543a163ef00a2cb75025b63','2022-11-18 20:27:50','2022-11-18 19:27:51'),(5906,424,'session','f8310f419ffc7af30dc091bae7665d8d73462659','2022-11-24 16:25:30','2022-11-24 15:25:30'),(5915,510,'session','3e8f8210219b6fff5a85cf94edad8db94afe962c','2022-11-28 14:48:46','2022-11-28 13:49:27'),(5917,550,'session','525e65a996d205953b83a848604b24406db42da5','2022-11-29 07:58:28','2022-11-29 07:03:30'),(5928,514,'recovery','85b6422b23f1232303f97e94768ba18198168b3d','2022-12-01 11:47:10','2022-12-01 10:47:10'),(5930,528,'session','24a11a8f4a8f099d4763095d324830ee5615cc99','2022-12-01 14:15:58','2022-12-01 13:16:53'),(5931,526,'session','1be822429c495c1efec7eeab1289c71579894eb8','2022-12-01 14:16:29','2022-12-01 13:16:54'),(5932,505,'session','5a08f6af9e6d3fd1dd8305055b26f75384f7d17b','2022-12-01 14:52:22','2022-12-01 14:37:59'),(5937,528,'session','e790b52d95a0b40fdd953446c2268ea3a7e0eb30','2022-12-02 15:49:36','2022-12-02 14:49:42'),(5944,92,'session','97714f2ecf51af07cbb32c684bafbb5872942284','2022-12-06 13:37:50','2022-12-06 12:59:27'),(5949,431,'session','8d6c3f785a83156488a9d26fd553315eaadd8e24','2022-12-07 18:37:21','2022-12-07 17:40:47'),(5952,431,'session','206f36a3770d474f7dbcf5d7dbc3b471a6e0eee1','2022-12-08 07:48:11','2022-12-08 06:50:40'),(5956,492,'session','ebde8e55e14dca3e403ec3bb179e8afd122545ca','2022-12-08 11:05:48','2022-12-08 10:07:30'),(5958,510,'session','0a42591f13de44486b809627d9fab340d1d7b0f1','2022-12-09 08:21:10','2022-12-09 07:21:14'),(5968,424,'session','590102a6c4e31c3cc0dfb194f8ee3c72e76473b1','2022-12-13 15:54:04','2022-12-13 14:54:04'),(5971,424,'session','5410053d8e3f0a21c4d8b98729596a5e708a6b52','2022-12-14 10:24:07','2022-12-14 09:24:07'),(5979,510,'session','3c1817e4ae1ea4cea9091de159ad75dd0e3be7f8','2022-12-16 11:26:00','2022-12-16 10:26:49'),(5986,580,'session','f5688560c48981a5d5e5ee57f4450560bcc96638','2022-12-19 15:08:14','2022-12-19 14:23:52'),(5987,580,'feeds','2fe8e713df16e743c30ad5bbefc4c137ec731ff6','2022-12-19 15:08:14','2022-12-19 14:08:14'),(5990,431,'session','9107e8e655cf9836b0636a068140e975024a9e76','2022-12-22 11:21:59','2022-12-22 13:23:57'),(5991,431,'autologin','3fec9aa7befae0a20f209a726c6205ad12ba8527','2022-12-22 11:21:59','2022-12-22 10:21:59'),(6008,489,'session','116ed1e7c2c6a17fc6a461f08f4fcdc47314feb5','2022-12-29 15:58:45','2022-12-29 15:00:16'),(6018,489,'session','d2dadb92eada0bab808f7bcfda7d1b7cb627c47e','2023-01-02 11:08:44','2023-01-02 10:40:59'),(6019,489,'autologin','f20e6be92ce9cd75147335ea720fb9228e5c4267','2023-01-02 11:08:44','2023-01-02 10:08:44'),(6021,549,'session','d4b53c16a97b9761504a4928daf7d0997e98cb93','2023-01-03 15:38:33','2023-01-03 14:38:39'),(6022,510,'session','1eca33cd1e06f6b9d4bbf708635e8b3a77f35ccd','2023-01-03 16:12:58','2023-01-03 15:13:27'),(6030,549,'session','0e12ff53dd1c15814831deab43a2b6cba38b52f2','2023-01-05 14:26:02','2023-01-05 13:26:31'),(6041,510,'session','edc3dbf74b1cc2960c77bfce64568a3fa9af3875','2023-01-09 13:45:58','2023-01-09 12:52:23'),(6042,549,'session','a138a61f86d84cda571777f9b8bb3fb392cdbee9','2023-01-09 13:54:53','2023-01-09 13:39:06'),(6043,549,'session','63297655b8b6398ef8c248b3d322e00f50f23988','2023-01-09 13:56:40','2023-01-09 12:56:41'),(6058,450,'session','0855eefd20dbe66dbdecf7c41b6e1ebbeeafc0b5','2023-01-11 11:42:02','2023-01-11 10:43:21'),(6059,450,'autologin','546283c05c2f24c910ff09cc51da9e31ab32e0f1','2023-01-11 11:42:02','2023-01-11 10:42:02'),(6067,510,'session','9847279aa93c23ea0baa933efad3e2b12b54d4a2','2023-01-12 09:36:55','2023-01-12 08:38:22'),(6068,433,'session','27262ef319be309008e62cad1c9a68aa02e18f5e','2023-01-12 09:49:35','2023-01-12 08:49:35'),(6072,552,'session','bdb86b64a3f67d054ac63554735dbf4ad6a31139','2023-01-12 17:20:15','2023-01-12 16:37:55'),(6074,450,'session','de52bc925c73b09b6dd2b93295381dbfe7b8bb9d','2023-01-13 09:27:21','2023-01-13 08:27:30'),(6075,450,'autologin','84598d2672a7f879b3d0b2c3850616b3f792a675','2023-01-13 09:27:21','2023-01-13 08:27:21'),(6077,549,'session','0a070ef8a45fd40923e1a05bbbcdef52113590ab','2023-01-13 14:09:14','2023-01-13 13:10:24'),(6090,455,'session','a365a54398b174a408a5dd461328957bcaba1d62','2023-01-16 12:31:43','2023-01-16 11:32:34'),(6092,492,'session','9c2cec05c1cb1c00bce5b1b55c1b81eddb1ebe9b','2023-01-16 15:30:17','2023-01-16 14:30:25'),(6094,549,'session','cd9b7e9ed2f88c0367e686705f764c03a243e184','2023-01-16 17:53:17','2023-01-16 16:54:00'),(6096,528,'session','162c165eb276abf2e59724fb31082c44eb373540','2023-01-17 09:15:05','2023-01-17 08:15:37'),(6111,548,'session','2aea1dcb45c053f3cc1502c97065203b094b45dc','2023-01-19 14:46:32','2023-01-19 16:41:19'),(6112,548,'autologin','d5744e194766ca371ab398183503e799c6209c8e','2023-01-19 14:46:32','2023-01-19 13:46:32'),(6117,455,'session','de14d1933ade99bd5d9e266f710ec9c1be1d7f5c','2023-01-20 09:07:37','2023-01-20 08:33:04'),(6120,548,'session','7c532c6ebcc5bed4183ca1561ba19435dd8cc5c1','2023-01-20 14:07:39','2023-01-20 14:25:54'),(6130,581,'register','b08ec2ca9df8a6620e4691060542bb73a8c86cbd','2023-01-22 17:48:01','2023-01-22 16:48:01'),(6132,489,'session','3b4857025431ac5e71b91bef720090ea49784c8e','2023-01-23 08:42:27','2023-01-23 07:44:25'),(6134,565,'session','c4b64ce44b04828c034a2665073935a3211f5864','2023-01-23 09:18:16','2023-01-23 08:26:16'),(6139,553,'session','11d65f857dbf846666a0c4ddca85846999074a39','2023-01-23 16:38:32','2023-01-23 16:15:15'),(6140,548,'session','bfd9b73bf654c7ef68752d6782fc15e877c41d1e','2023-01-23 16:51:26','2023-01-23 15:57:29'),(6145,489,'session','6f4aa36b0a489c6be5ad2352d646feba708da434','2023-01-23 22:34:08','2023-01-23 21:34:09'),(6148,573,'session','bfc4ac130a609c07251892126cda72a02d46ca90','2023-01-24 09:26:17','2023-01-24 12:40:34'),(6151,565,'session','bbbe319e73d355fe877f94817357c2220b0ae43f','2023-01-24 16:05:43','2023-01-24 16:39:30'),(6155,489,'session','25f0f24ea69f94ebe7c62d9e96d9a3f22288bc3e','2023-01-25 09:08:21','2023-01-25 08:09:31'),(6158,565,'session','4615ce074fca61f7d95c4b8d330446001b9192e5','2023-01-25 10:55:52','2023-01-25 10:51:01'),(6160,447,'session','60afb0075caa8719aa6c33823d521bc93bbd8fe1','2023-01-25 18:59:20','2023-01-25 19:46:20'),(6161,455,'session','fe0b3221e1ff58c9c9cb6876c60f72ed808d2bf3','2023-01-26 09:07:06','2023-01-26 08:07:06'),(6162,450,'session','f1f5e969a7cead5c0276b0097d7dfd504369d35a','2023-01-26 13:16:21','2023-01-26 12:16:43'),(6163,450,'autologin','1c0e3f11e849826333745650065e8f80cd24e1e1','2023-01-26 13:16:21','2023-01-26 12:16:21'),(6164,462,'session','546726dfa8e3d57d6b53bb72ed0f51f5fdc2e86c','2023-01-27 12:24:14','2023-01-27 11:26:40'),(6165,447,'session','1ffc06d7d27bb1d94ff72fe34085c60043050933','2023-01-27 14:17:53','2023-01-27 13:18:06'),(6166,450,'session','56e1dd333f545bb6fb425a31f48ad93a60d9fddc','2023-01-27 14:20:55','2023-01-27 13:22:29'),(6167,450,'autologin','6f016ebb80a1b68dbe809e1e5f6bbe95005f2474','2023-01-27 14:20:55','2023-01-27 13:20:55'),(6170,455,'session','92c834bad872b323d1045e4b2d0dfb405863a60f','2023-01-30 17:17:44','2023-01-30 16:23:42'),(6173,489,'session','6ac0ee557aaa09ff9f0d71f5eab0d8c843a42c68','2023-01-31 08:54:50','2023-01-31 07:54:50'),(6174,450,'session','eb74f95acc330f040041d637b7d256a00b71fb67','2023-01-31 09:20:18','2023-01-31 08:23:34'),(6175,450,'autologin','31fe7ec6be0b1c293b95baa9407b9ef095eac2a5','2023-01-31 09:20:18','2023-01-31 08:20:18'),(6176,565,'session','61696d98cebd54c97217747697b700cfe351ecb6','2023-01-31 09:34:54','2023-01-31 08:35:04'),(6177,549,'session','51e982bac1dd96ef0f0994b3c297573ef354494d','2023-01-31 09:38:05','2023-01-31 08:38:15'),(6178,447,'session','cfa655677a0dc6bb00fba7eb8025b049cebbff10','2023-01-31 11:17:47','2023-01-31 11:25:04'),(6180,455,'session','73284cfaae1875998bad4d9822b9cac7d19a314c','2023-01-31 17:12:57','2023-01-31 16:25:00'),(6181,447,'session','fa13a478b10d187e03ef30765071710d773edef4','2023-01-31 19:21:59','2023-01-31 18:22:13'),(6182,573,'session','735d2533e05c412d510380c0d71643c8a75b76fc','2023-02-01 10:10:32','2023-02-01 09:11:53'),(6183,573,'session','4bb92b0acc290b44f2d9fc9dc0c529ff492c67e5','2023-02-01 10:12:16','2023-02-01 09:12:49'),(6185,431,'session','bc06d740339a912fe27d80a0f2ff76c0af198381','2023-02-01 14:20:51','2023-02-01 17:35:42'),(6186,447,'session','ab9d022eb0ea06dcd57db6e3df3ec5f724f7d176','2023-02-01 15:41:10','2023-02-01 14:41:46'),(6187,447,'session','0ebe46bad4a581e53df6621cc454c5e91172f4db','2023-02-01 20:23:52','2023-02-01 19:53:03'),(6189,431,'session','ce643030cb32e7091fe990f454d618a884e91d11','2023-02-02 10:04:50','2023-02-02 09:04:50'),(6190,447,'session','22b353eac3a95a270e0d48b9d587c6b41e8c74d0','2023-02-02 11:26:23','2023-02-02 10:27:04'),(6192,431,'session','455f9d0b168f00213a9b5fed28b9b325adc7095d','2023-02-02 14:21:18','2023-02-02 16:56:03'),(6194,565,'session','d9930a5cfd5b93e3b2464f2eb7bb5d9b3118c5b7','2023-02-02 17:58:40','2023-02-02 17:01:39'),(6196,565,'session','7803af1b667d87edab7c74a196936d0e92cadea3','2023-02-03 09:52:38','2023-02-03 10:50:10'),(6198,455,'session','c7a858e0c7a31f10ed571613449cdd258ae718cb','2023-02-03 13:37:48','2023-02-03 12:39:12'),(6199,450,'session','9591fc2138ea59a5de19973fbe37fd09a5029fab','2023-02-03 13:46:56','2023-02-03 12:47:11'),(6200,450,'autologin','c0b4cbfe93a0e5da1b0f7b1825e297c2dc944474','2023-02-03 13:46:56','2023-02-03 12:46:56'),(6202,455,'session','7459c0b733ecc27e928a27a2124831361b1a1045','2023-02-03 14:06:25','2023-02-03 13:07:27'),(6204,447,'session','9cc4b987ee7a08bdecb9b8c4cf395b5e291df541','2023-02-03 16:43:46','2023-02-03 16:41:36'),(6205,447,'session','39d218a06de1292ae3fe71c368b62f48e387dd95','2023-02-04 08:37:19','2023-02-04 07:37:26'),(6206,431,'session','8bd2565c4ee179d34bde509bd04507d1e10f4041','2023-02-06 09:15:55','2023-02-06 08:45:16'),(6212,565,'session','c6acbf8cbc2642223b168bd2ffe8ca3667d1f834','2023-02-07 15:00:32','2023-02-07 14:02:33'),(6213,573,'session','683e38652c02ad98db56fff924e3e5cf2541d66e','2023-02-07 16:11:50','2023-02-07 15:21:36'),(6217,573,'session','5eb08e7cc07ff3d7999ac905875a5b04369837a4','2023-02-08 09:35:51','2023-02-08 08:36:08'),(6218,565,'session','a93c5fb6b05aefdb86b77e32d290f8cab93b7fb8','2023-02-08 14:35:19','2023-02-08 16:25:49'),(6220,424,'session','23aabbcdc8ddd063fef0dd48bc794a0e08df6264','2023-02-08 17:17:52','2023-02-08 16:18:25'),(6221,432,'session','12b83b8564991d53a2356cc7e7b25a8430938797','2023-02-08 17:26:00','2023-02-08 16:57:05'),(6223,573,'session','020f56d5223849db453585c44716a6a784d79176','2023-02-09 18:04:15','2023-02-09 17:04:27'),(6224,424,'session','4eeb1a29847aaf7dabdc7b2003698b8a0b7f171c','2023-02-10 09:23:58','2023-02-10 08:23:58'),(6225,432,'session','b2f71fcb6f6af9c184f883aeb0e4683f17ac2c98','2023-02-10 10:36:59','2023-02-10 17:21:08'),(6227,447,'session','f40c70a62efe4c8531d5e53eb09f75a497535e0f','2023-02-10 13:53:26','2023-02-10 12:54:12'),(6228,489,'session','1e608ff894cb499eb861cfe15b404bcac651e63d','2023-02-10 14:24:57','2023-02-10 13:28:30'),(6229,573,'session','fff039e046bc8925b9d49d53ff1959764dd1ea9c','2023-02-10 14:47:39','2023-02-10 13:47:57'),(6230,573,'session','a2453a005c5ffd9a11bea8b71270cf6da9fc406f','2023-02-10 14:48:08','2023-02-10 13:48:20'),(6231,424,'session','ce0ea00f9f8ad3af31b9dff50bce89aa8fbb41a4','2023-02-10 14:56:21','2023-02-10 13:56:22'),(6232,548,'session','d7fabffac547cedc9aab3b2bdc0eb4abedf9f357','2023-02-10 17:23:40','2023-02-10 16:49:49'),(6233,1,'session','3afd8acb0190bdbf8fbffb06cf61a3ae0bca9ec8','2023-02-10 18:01:46','2023-02-10 17:43:20'),(6234,1,'session','f0410f0b29249ac44f87ff9fbf7e5de88a3a00ba','2023-02-11 11:28:08','2023-02-11 10:32:58'),(6235,1,'session','dfb45ae42dcdcf73cd35eda8ed153e49cda0c70d','2023-02-11 18:59:38','2023-02-11 18:02:18'),(6236,432,'session','363a8e8d9169ab59ac0e98c194990c30c7269c7d','2023-02-13 13:53:35','2023-02-13 17:15:15'),(6237,1,'session','f37af02a7d19455f5f26c50a66b7607eac474eb4','2023-02-13 16:01:29','2023-02-13 15:02:56'),(6238,1,'session','cdc4dbf425b5b3dd4b1a9382022b0e9d0b2d69ab','2023-02-13 16:43:22','2023-02-13 18:11:14'),(6239,432,'session','af03faa41bc955b08c0a7bcbb2f822b1ce56e8f6','2023-02-14 09:38:00','2023-02-14 13:51:31'),(6240,1,'session','89cd8e4dcd4a5f92267fca8c42d648c31e6eca43','2023-02-14 09:48:06','2023-02-14 14:22:25'),(6241,432,'session','fb94813f1855464093cbae33b91dce9609cc9dcf','2023-02-14 18:25:12','2023-02-14 17:40:53'),(6242,432,'session','eeacd913965d42ac2260a440ac21f8c29f469db2','2023-02-15 09:34:15','2023-02-15 11:05:00'),(6243,548,'session','ac75986dcec48899372aa196ce81413915f227b8','2023-02-15 11:01:35','2023-02-15 10:14:39'),(6244,548,'autologin','05fbb3d3c9fc32794bdd1dca9297d70889edcebe','2023-02-15 11:01:36','2023-02-15 10:01:36'),(6245,1,'session','75eba9591e73f46cbafaa08ab6011dc1a739ab8b','2023-02-15 11:05:29','2023-02-15 10:51:04'),(6246,424,'session','9356d8f15849b405f4f0c9ab53863ffe2f77b9f9','2023-02-15 11:45:56','2023-02-15 10:46:54'),(6247,455,'session','283f55c98d8af8695e001bcd80c5399287dd64bb','2023-02-15 13:34:45','2023-02-15 12:39:42'),(6248,496,'session','d4978d88cb46c16b63dbc8189dcc9aa1752ff547','2023-02-15 17:08:14','2023-02-15 16:12:39'),(6249,548,'session','6fb06ed065915da52bfd9fe67e1ef6e90cfec436','2023-02-15 17:39:41','2023-02-15 16:39:41'),(6250,548,'session','07164f45ff648e4d47ff2f0ec7b9e97d856b8778','2023-02-15 17:39:51','2023-02-15 16:51:16'),(6251,432,'session','2368553fabb87d91614cf596e859364ba972c6fd','2023-02-15 17:48:06','2023-02-15 16:49:40'),(6252,455,'session','1cd2f876ca5bc6b7a4533d19d0729775622ba1c8','2023-02-16 08:39:47','2023-02-16 09:15:34'),(6253,510,'session','5cb4216e10235a1f0ccc1a20228697e94cbb70b4','2023-02-16 08:56:38','2023-02-16 09:53:23'),(6254,548,'session','11c1592bf604cf27e4128ac5fe640b934ef2a6f3','2023-02-16 09:42:11','2023-02-16 08:42:44'),(6255,489,'session','e3aa922e079cbe1dc591cee5bb7c43677d876004','2023-02-16 10:52:03','2023-02-16 09:52:23'),(6256,1,'session','b9dbc547c8f85364e69dacb293515838410d30b4','2023-02-16 10:58:07','2023-02-16 17:36:39'),(6257,573,'session','9330aa8748fb6cab79b15633e820285c8f84b2f3','2023-02-16 11:12:31','2023-02-16 10:16:55'),(6258,503,'session','944c0fca8fdc0ebe7319ec5d61e87786c354254d','2023-02-16 13:55:54','2023-02-16 13:06:14'),(6259,503,'autologin','085aa6d9e097f2454576ac138a4b8a1449699cf1','2023-02-16 13:55:56','2023-02-16 12:55:56'),(6260,565,'session','f2533c463aac1d3a300499e4d4f6323e2b9bec63','2023-02-16 13:56:14','2023-02-16 12:56:21'),(6261,432,'session','70305a430c213b8aaead3b99cd7f9280a3ceef0f','2023-02-16 15:03:48','2023-02-16 17:22:08'),(6262,432,'session','5010da8e9f36b3cb084067a007ed0dcbb7339930','2023-02-17 09:07:23','2023-02-17 13:32:08'),(6263,1,'session','e480928f7250dafbc144f9cf815789e31218f0c4','2023-02-17 09:15:24','2023-02-17 14:07:19'),(6264,565,'session','d62643ec77ca8c0de5b9cd301457a1446e590f17','2023-02-17 09:34:25','2023-02-17 08:55:51'),(6265,432,'session','2f8e9291c264bc86c7d91bfc1ce6ce64a860b7d7','2023-02-17 10:37:12','2023-02-17 09:37:41'),(6266,573,'session','1b7c825eee48a13ac0943bf5ab7bc05bc99c59ec','2023-02-17 10:59:47','2023-02-17 10:15:58'),(6267,549,'session','f8195819e622d99295cfdfb69387baa35a103ea5','2023-02-17 13:38:24','2023-02-17 12:44:52'),(6268,548,'session','6ce9a4ce8264942eca23f8eb78c3b8076bfce609','2023-02-17 14:01:48','2023-02-17 13:03:12'),(6269,455,'session','eb41da931cc08dd4a3e66bcda2398689679f75d0','2023-02-17 14:39:54','2023-02-17 13:42:41'),(6270,548,'session','f88505f04b3786ca71b2db38f27f53f0e2a4d06e','2023-02-17 18:35:58','2023-02-17 17:39:07'),(6271,1,'session','a0b3fedeb4db8f2bbb5110aaa81e8e3907c17b19','2023-02-18 19:58:38','2023-02-18 18:59:32');
/*!40000 ALTER TABLE `tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `trackers`
--
DROP TABLE IF EXISTS `trackers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `trackers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL DEFAULT '',
`description` varchar(255) DEFAULT NULL,
`is_in_chlog` tinyint(1) NOT NULL DEFAULT '0',
`position` int(11) DEFAULT NULL,
`is_in_roadmap` tinyint(1) NOT NULL DEFAULT '1',
`fields_bits` int(11) DEFAULT '0',
`default_status_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `trackers`
--
LOCK TABLES `trackers` WRITE;
/*!40000 ALTER TABLE `trackers` DISABLE KEYS */;
INSERT INTO `trackers` VALUES (1,'Anomalie',NULL,1,1,0,0,1),(2,'Evolution',NULL,1,2,1,0,1),(3,'Assistance',NULL,0,3,0,0,1),(4,'Aléas','',0,4,1,0,1),(5,'Reclamation','',0,5,1,0,1);
/*!40000 ALTER TABLE `trackers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_preferences`
--
DROP TABLE IF EXISTS `user_preferences`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_preferences` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT '0',
`others` text,
`hide_mail` tinyint(1) DEFAULT '1',
`time_zone` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_user_preferences_on_user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=540 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_preferences`
--
LOCK TABLES `user_preferences` WRITE;
/*!40000 ALTER TABLE `user_preferences` DISABLE KEYS */;
INSERT INTO `user_preferences` VALUES (1,2,'--- {}\n\n',0,NULL),(2,1,'---\n:gantt_zoom: 2\n:diff_type: sbs\n:warn_on_leaving_unsaved: \'1\'\n:gantt_months: 6\n:no_self_notified: \'0\'\n:comments_sorting: asc\n:recently_used_project_ids: \'43,75,78\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings:\n issuesassignedtome:\n :sort: priority:desc,id:desc,updated_on:desc\n :columns:\n - project\n - priority\n - tracker\n - status\n - subject\n:activity_scope:\n- issues\n- changesets\n- news\n- documents\n- files\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,'Paris'),(4,4,'--- \n:diff_type: inline\n:warn_on_leaving_unsaved: \"1\"\n:gantt_months: 6\n:no_self_notified: false\n:gantt_zoom: 2\n:comments_sorting: asc\n',0,'Paris'),(5,5,'--- \n:gantt_months: 6\n:diff_type: inline\n:no_self_notified: false\n:gantt_zoom: 2\n',0,NULL),(6,6,'--- {}\n\n',0,NULL),(8,8,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:gantt_months: 6\n:gantt_zoom: 2\n:comments_sorting: asc\n',0,'Eastern Time (US & Canada)'),(9,10,'---\n:gantt_months: 6\n:diff_type: inline\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:gantt_zoom: 2\n:comments_sorting: asc\n:recently_used_project_ids: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,'Eastern Time (US & Canada)'),(10,11,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(11,12,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(12,13,'--- {}\n\n',0,NULL),(14,16,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(18,19,'--- {}\n\n',0,NULL),(23,22,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Eastern Time (US & Canada)'),(24,25,'--- \n:no_self_notified: false\n',0,NULL),(26,27,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(28,29,'--- \n:diff_type: inline\n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(29,30,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(30,31,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',1,''),(32,33,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: true\n:comments_sorting: asc\n',0,''),(33,34,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(34,36,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:gantt_zoom: 2\n:gantt_months: 6\n:comments_sorting: asc\n',0,''),(38,40,'--- \n:warn_on_leaving_unsaved: \"1\"\n:gantt_zoom: 2\n:no_self_notified: false\n:gantt_months: 6\n:comments_sorting: asc\n',1,''),(39,41,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(40,42,'--- \n:gantt_months: 6\n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:gantt_zoom: 2\n:comments_sorting: asc\n',1,''),(42,44,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(43,45,'--- {}\n\n',0,NULL),(44,46,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(45,47,'--- {}\n\n',0,NULL),(46,48,'--- {}\n\n',0,NULL),(49,52,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(50,53,'--- {}\n\n',0,NULL),(51,54,'--- {}\n\n',0,NULL),(52,55,'--- {}\n\n',0,NULL),(53,56,'--- {}\n\n',0,NULL),(54,57,'--- {}\n\n',0,NULL),(55,58,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(57,60,'--- {}\n\n',0,NULL),(58,61,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: true\n:gantt_months: 6\n:gantt_zoom: 2\n:comments_sorting: asc\n',1,'Belgrade'),(59,62,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(60,63,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(61,64,'--- {}\n\n',0,NULL),(62,65,'--- \n:no_self_notified: false\n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(63,66,'--- {}\n\n',0,NULL),(65,69,'--- {}\n\n',0,NULL),(66,68,'--- {}\n\n',0,NULL),(67,70,'--- \n:diff_type: sbs\n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(68,71,'--- {}\n\n',0,NULL),(69,72,'--- {}\n\n',0,NULL),(70,73,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(71,74,'--- {}\n\n',0,NULL),(72,75,'--- {}\n\n',0,NULL),(73,77,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(74,78,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(76,80,'--- {}\n\n',0,NULL),(78,82,'--- {}\n\n',0,NULL),(79,83,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(80,84,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(81,85,'--- \n:gantt_zoom: 2\n:warn_on_leaving_unsaved: \"1\"\n:gantt_months: 6\n:no_self_notified: true\n:comments_sorting: asc\n',1,''),(82,86,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(83,87,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(84,88,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(85,89,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(86,91,'--- \n:gantt_zoom: 2\n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:gantt_months: 6\n:comments_sorting: asc\n',0,''),(87,92,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:comments_sorting: asc\n:recently_used_project_ids: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,'Eastern Time (US & Canada)'),(88,94,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(89,95,'--- \n:gantt_zoom: 2\n:warn_on_leaving_unsaved: \"1\"\n:gantt_months: 6\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(90,96,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:gantt_zoom: 2\n:gantt_months: 6\n:comments_sorting: desc\n',1,'Paris'),(91,97,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(92,98,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(93,99,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(94,101,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(95,103,'--- {}\n\n',0,NULL),(96,93,'---\n:gantt_zoom: 2\n:gantt_months: 12\n:recently_used_project_ids: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(97,105,'--- {}\n\n',0,NULL),(98,106,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:gantt_zoom: 2\n:gantt_months: 6\n:comments_sorting: asc\n:recently_used_project_ids: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,'Central Time (US & Canada)'),(99,107,'--- \n:warn_on_leaving_unsaved: \"0\"\n:no_self_notified: false\n:gantt_zoom: 2\n:gantt_months: 6\n:comments_sorting: asc\n',1,''),(100,108,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(101,109,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: true\n:gantt_zoom: 2\n:gantt_months: 6\n:comments_sorting: asc\n',1,''),(102,110,'--- {}\n\n',0,NULL),(104,112,'--- {}\n\n',0,NULL),(106,114,'--- {}\n\n',0,NULL),(107,115,'--- {}\n\n',0,NULL),(108,116,'--- {}\n\n',0,NULL),(109,118,'---\n:no_self_notified: \'0\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,''),(110,119,'--- \n:gantt_months: 6\n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:gantt_zoom: 2\n:comments_sorting: asc\n',0,'Paris'),(111,121,'--- \n:warn_on_leaving_unsaved: \"1\"\n:gantt_months: 6\n:no_self_notified: false\n:gantt_zoom: 2\n:comments_sorting: asc\n',0,''),(112,122,'--- {}\n\n',0,NULL),(114,126,'--- {}\n\n',0,NULL),(115,127,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(116,129,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(117,131,'--- {}\n\n',0,NULL),(118,133,'--- {}\n\n',0,NULL),(119,134,'--- {}\n\n',0,NULL),(121,136,'--- {}\n\n',0,NULL),(122,138,'--- {}\n\n',0,NULL),(123,137,'--- {}\n\n',0,NULL),(125,140,'--- {}\n\n',0,NULL),(128,143,'--- {}\n\n',0,NULL),(129,145,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:gantt_months: 6\n:gantt_zoom: 2\n:comments_sorting: asc\n',0,''),(130,146,'--- {}\n\n',0,NULL),(132,148,'--- {}\n\n',0,NULL),(133,149,'--- {}\n\n',0,NULL),(135,154,'--- {}\n\n',0,NULL),(136,152,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',1,''),(137,156,'--- \n:no_self_notified: false\n',0,NULL),(139,159,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',1,''),(140,161,'--- {}\n\n',0,NULL),(141,162,'--- {}\n\n',0,NULL),(142,164,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Brussels'),(143,166,'--- {}\n\n',0,NULL),(144,167,'--- {}\n\n',0,NULL),(145,168,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: true\n:comments_sorting: asc\n',1,''),(146,160,'--- \n:no_self_notified: false\n',0,NULL),(148,170,'--- {}\n\n',0,NULL),(149,171,'--- {}\n\n',0,NULL),(150,172,'--- {}\n\n',0,NULL),(151,174,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Paris'),(152,175,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(153,176,'--- {}\n\n',0,NULL),(155,177,'--- {}\n\n',0,NULL),(156,178,'--- {}\n\n',0,NULL),(157,163,'--- \n:no_self_notified: false\n',0,NULL),(161,182,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Madrid'),(162,181,'--- \n:no_self_notified: false\n',0,NULL),(163,187,'--- {}\n\n',0,NULL),(164,188,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:my_page_layout: \n left: \n - issuesassignedtome\n right: \n - issuesreportedbyme\n top: \n - news\n - documents\n:comments_sorting: asc\n',1,'Prague'),(165,190,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(166,189,'--- \n:no_self_notified: false\n',0,NULL),(167,191,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',1,''),(168,193,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Abu Dhabi'),(169,194,'--- {}\n\n',0,NULL),(170,196,'--- {}\n\n',0,NULL),(171,197,'--- {}\n\n',0,NULL),(172,198,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Mountain Time (US & Canada)'),(173,199,'--- {}\n\n',0,NULL),(174,202,'--- {}\n\n',0,NULL),(175,203,'--- {}\n\n',0,NULL),(176,204,'--- {}\n\n',0,NULL),(177,205,'--- {}\n\n',0,NULL),(178,207,'--- {}\n\n',0,NULL),(179,208,'--- {}\n\n',0,NULL),(180,209,'--- {}\n\n',0,NULL),(181,211,'--- {}\n\n',0,NULL),(182,212,'--- {}\n\n',0,NULL),(183,214,'--- {}\n\n',0,NULL),(184,215,'--- {}\n\n',0,NULL),(185,216,'--- {}\n\n',0,NULL),(186,217,'--- {}\n\n',0,NULL),(187,218,'--- {}\n\n',0,NULL),(188,219,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: true\n:comments_sorting: asc\n',0,'Berlin'),(189,220,'--- {}\n\n',0,NULL),(191,222,'--- {}\n\n',0,NULL),(192,223,'---\n:no_self_notified: \'0\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'68,1\'\n',0,''),(193,224,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(194,225,'--- {}\n\n',0,NULL),(195,226,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(196,227,'--- {}\n\n',0,NULL),(197,228,'--- {}\n\n',0,NULL),(198,229,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(199,230,'--- {}\n\n',0,NULL),(201,231,'--- \n:no_self_notified: false\n',0,NULL),(202,233,'--- {}\n\n',0,NULL),(203,234,'--- {}\n\n',0,NULL),(204,235,'--- {}\n\n',0,NULL),(207,238,'--- {}\n\n',0,NULL),(208,239,'--- {}\n\n',0,NULL),(209,240,'--- {}\n\n',0,NULL),(210,241,'---\n:no_self_notified: \'1\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,''),(211,242,'--- {}\n\n',0,NULL),(212,243,'--- {}\n\n',0,NULL),(213,244,'--- {}\n\n',0,NULL),(214,245,'--- {}\n\n',0,NULL),(215,123,'--- \n:no_self_notified: false\n',0,NULL),(216,117,'--- \n:no_self_notified: false\n',0,NULL),(217,246,'--- {}\n\n',0,NULL),(218,247,'--- {}\n\n',0,NULL),(219,248,'--- {}\n\n',0,NULL),(220,249,'--- {}\n\n',0,NULL),(221,250,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',1,'Berlin'),(222,251,'--- {}\n\n',0,NULL),(223,252,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(224,253,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(225,254,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(226,256,'--- {}\n\n',0,NULL),(227,257,'--- {}\n\n',0,NULL),(228,258,'--- {}\n\n',0,NULL),(229,259,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:comments_sorting: asc\n:recently_used_project_ids: \'1,46,49\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,'Paris'),(231,261,'--- {}\n\n',0,NULL),(232,255,'--- \n:no_self_notified: false\n',0,NULL),(233,262,'--- {}\n\n',0,NULL),(234,263,'--- {}\n\n',0,NULL),(235,264,'--- {}\n\n',0,NULL),(236,265,'--- {}\n\n',0,NULL),(237,266,'--- {}\n\n',0,NULL),(238,267,'--- {}\n\n',0,NULL),(239,268,'--- {}\n\n',0,NULL),(240,269,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(241,271,'--- {}\n\n',0,NULL),(242,270,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(243,272,'--- {}\n\n',0,NULL),(244,273,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(245,274,'--- {}\n\n',0,NULL),(246,275,'--- {}\n\n',0,NULL),(248,277,'--- {}\n\n',0,NULL),(249,278,'--- {}\n\n',0,NULL),(250,280,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:gantt_months: 6\n:gantt_zoom: 2\n:comments_sorting: asc\n',0,''),(251,281,'--- {}\n\n',0,NULL),(252,282,'--- {}\n\n',0,NULL),(253,283,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(254,284,'--- {}\n\n',0,NULL),(255,285,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:comments_sorting: asc\n:recently_used_project_ids: \'55\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(256,286,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:comments_sorting: asc\n:recently_used_project_ids: \'46\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,'Berlin'),(257,287,'--- {}\n\n',0,NULL),(258,288,'--- {}\n\n',0,NULL),(259,289,'--- {}\n\n',0,NULL),(261,291,'--- {}\n\n',0,NULL),(262,292,'--- {}\n\n',0,NULL),(263,293,'--- {}\n\n',0,NULL),(264,294,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(265,295,'--- {}\n\n',0,NULL),(266,296,'--- \n:no_self_notified: false\n',0,NULL),(267,298,'--- \n:no_self_notified: false\n',0,NULL),(268,299,'--- {}\n\n',0,NULL),(269,300,'--- {}\n\n',0,NULL),(270,302,'--- {}\n\n',0,NULL),(271,303,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(272,304,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(274,308,'--- \n:no_self_notified: false\n',0,NULL),(275,309,'--- {}\n\n',0,NULL),(276,310,'--- {}\n\n',0,NULL),(277,312,'--- {}\n\n',0,NULL),(279,314,'--- {}\n\n',0,NULL),(280,315,'--- \n:gantt_months: 6\n:gantt_zoom: 2\n',0,NULL),(281,306,'--- \n:no_self_notified: false\n',0,NULL),(282,316,'--- \n:gantt_months: 6\n:no_self_notified: false\n:gantt_zoom: 2\n',0,NULL),(283,317,'--- {}\n\n',0,NULL),(284,318,'--- {}\n\n',0,NULL),(285,319,'--- {}\n\n',0,NULL),(286,320,'--- {}\n\n',0,NULL),(287,321,'--- {}\n\n',0,NULL),(288,322,'--- {}\n\n',0,NULL),(289,324,'--- {}\n\n',0,NULL),(290,323,'--- {}\n\n',0,NULL),(291,325,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:comments_sorting: asc\n:recently_used_project_ids: \'1,46\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,''),(292,328,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: \'0\'\n:comments_sorting: asc\n:recently_used_project_ids: \'56,65\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',0,''),(294,332,'--- {}\n\n',0,NULL),(295,333,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: true\n:comments_sorting: asc\n',0,'Seoul'),(296,334,'--- {}\n\n',0,NULL),(297,335,'--- {}\n\n',0,NULL),(298,336,'--- {}\n\n',0,NULL),(299,331,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(300,337,'--- {}\n\n',0,NULL),(301,338,'--- {}\n\n',0,NULL),(302,339,'--- {}\n\n',0,NULL),(303,342,'--- {}\n\n',0,NULL),(304,343,'--- {}\n\n',0,NULL),(305,341,'--- {}\n\n',0,NULL),(306,340,'--- {}\n\n',0,NULL),(307,344,'--- {}\n\n',0,NULL),(308,329,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Paris'),(309,345,'--- {}\n\n',0,NULL),(310,347,'---\n:recently_used_project_ids: \'58,1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(311,349,'---\n:recently_used_project_ids: \'58,1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(312,348,'--- \n:no_self_notified: false\n',0,NULL),(313,346,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Paris'),(314,351,'--- {}\n\n',0,NULL),(315,350,'--- \n:no_self_notified: false\n',0,NULL),(316,352,'--- {}\n\n',0,NULL),(317,354,'--- \n:no_self_notified: false\n',0,NULL),(318,353,'---\n:no_self_notified: \'0\'\n:recently_used_project_ids: \'60,46,1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',0,''),(319,355,'--- \n:no_self_notified: false\n',0,NULL),(320,356,'--- {}\n\n',0,NULL),(322,358,'--- {}\n\n',0,NULL),(323,359,'--- {}\n\n',0,NULL),(324,360,'--- {}\n\n',0,NULL),(325,361,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(326,362,'--- {}\n\n',0,NULL),(327,365,'--- \n:no_self_notified: false\n',0,NULL),(328,366,'--- {}\n\n',0,NULL),(329,367,'--- {}\n\n',0,NULL),(330,368,'--- \n:no_self_notified: false\n',0,NULL),(331,371,'--- {}\n\n',0,NULL),(332,372,'--- {}\n\n',0,NULL),(333,373,'--- {}\n\n',0,NULL),(334,374,'--- {}\n\n',0,NULL),(335,375,'--- {}\n\n',0,NULL),(336,376,'--- {}\n\n',0,NULL),(337,377,'---\n:recently_used_project_ids: \'46\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(338,378,'--- {}\n\n',0,NULL),(339,379,'--- {}\n\n',0,NULL),(340,380,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:my_page_layout: \n left: []\n\n right: []\n\n top: \n - news\n - documents\n:comments_sorting: asc\n',0,''),(341,381,'--- \n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(342,383,'--- {}\n\n',0,NULL),(343,384,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Kuala Lumpur'),(344,385,'--- {}\n\n',0,NULL),(345,386,'--- {}\n\n',0,NULL),(346,389,'--- {}\n\n',0,NULL),(347,388,'--- {}\n\n',0,NULL),(348,390,'--- {}\n\n',0,NULL),(349,387,'--- \n:no_self_notified: false\n',0,NULL),(350,393,'--- {}\n\n',0,NULL),(351,394,'--- {}\n\n',0,NULL),(352,395,'--- {}\n\n',0,NULL),(353,396,'--- {}\n\n',0,NULL),(354,397,'--- {}\n\n',0,NULL),(355,398,'---\n:no_self_notified: false\n:recently_used_project_ids: \'1,46\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(356,399,'--- {}\n\n',0,NULL),(357,400,'--- {}\n\n',0,NULL),(358,401,'--- {}\n\n',0,NULL),(359,402,'--- {}\n\n',0,NULL),(360,403,'--- {}\n\n',0,NULL),(361,404,'--- {}\n\n',0,NULL),(362,405,'--- {}\n\n',0,NULL),(363,406,'--- {}\n\n',0,NULL),(364,409,'--- {}\n\n',0,NULL),(365,410,'--- {}\n\n',0,NULL),(366,411,'--- {}\n\n',0,NULL),(367,412,'--- {}\n\n',0,NULL),(368,415,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,'Beijing'),(369,417,'--- \n:no_self_notified: false\n',0,NULL),(370,416,'--- \n:no_self_notified: false\n',0,NULL),(371,418,'--- {}\n\n',0,NULL),(372,419,'--- {}\n\n',0,NULL),(373,420,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(374,421,'--- \n:no_self_notified: false\n',0,NULL),(375,423,'--- {}\n\n',0,NULL),(376,422,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: \'0\'\n:comments_sorting: asc\n:recently_used_project_ids: \'70,105\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',0,''),(377,424,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:comments_sorting: asc\n:recently_used_project_ids: \'70,1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,''),(378,426,'---\n:no_self_notified: false\n:recently_used_project_ids: \'71\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(379,427,'---\n:no_self_notified: false\n:recently_used_project_ids: \'72\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(380,428,'--- \n:no_self_notified: false\n',0,NULL),(381,429,'---\n:no_self_notified: false\n:recently_used_project_ids: \'73,1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(382,425,'--- \n:no_self_notified: false\n',0,NULL),(383,407,'--- \n:no_self_notified: false\n',0,NULL),(384,369,'--- \n:no_self_notified: false\n',0,NULL),(385,430,'--- {}\n\n',0,NULL),(386,431,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:comments_sorting: asc\n:recently_used_project_ids: \'73,1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,'Paris'),(387,433,'---\n:recently_used_project_ids: \'75,101,94\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(388,435,'--- {}\n\n',0,NULL),(389,434,'---\n:recently_used_project_ids: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(390,432,'---\n:no_self_notified: false\n:recently_used_project_ids: \'75,101,100\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(391,436,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:comments_sorting: asc\n:recently_used_project_ids: \'94,1,89\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,''),(392,438,'---\n:no_self_notified: false\n:recently_used_project_ids: \'1,75\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:activity_scope:\n- issues\n- documents\n- files\n',0,NULL),(393,437,'--- \n:no_self_notified: false\n',0,NULL),(394,439,'--- {}\n\n',0,NULL),(395,441,'--- {}\n\n',0,NULL),(396,440,'--- {}\n\n',0,NULL),(397,442,'--- \n:warn_on_leaving_unsaved: \"1\"\n:no_self_notified: false\n:comments_sorting: asc\n',0,''),(398,443,'---\n:recently_used_project_ids: \'77\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(399,444,'--- \n:no_self_notified: false\n',0,NULL),(400,445,'--- \n:no_self_notified: false\n',0,NULL),(401,446,'--- \n:no_self_notified: false\n',0,NULL),(402,447,'---\n:gantt_months: 6\n:gantt_zoom: 2\n:recently_used_project_ids: \'78,94,103\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:activity_scope:\n- issues\n- changesets\n- news\n- files\n- wiki_edits\n- messages\n',0,NULL),(403,449,'---\n:recently_used_project_ids: \'78\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(404,450,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:gantt_months: 6\n:gantt_zoom: 2\n:comments_sorting: asc\n:recently_used_project_ids: \'78\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,'Paris'),(405,448,'---\n:warn_on_leaving_unsaved: \'1\'\n:no_self_notified: false\n:comments_sorting: asc\n:recently_used_project_ids: \'78\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,''),(406,451,'---\n:gantt_months: 6\n:gantt_zoom: 2\n:recently_used_project_ids: \'78\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(407,452,'---\n:recently_used_project_ids: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(408,454,'---\n:gantt_months: 6\n:gantt_zoom: 2\n:recently_used_project_ids: \'78\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,NULL),(409,455,'---\n:recently_used_project_ids: \'94,1,78\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:gantt_zoom: 2\n:gantt_months: 6\n',0,NULL),(410,456,'--- {}\n\n',0,NULL),(412,459,'---\n:no_self_notified: \'0\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'73\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',0,''),(414,461,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'79\'\n',1,''),(415,462,'---\n:no_self_notified: \'0\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n:recently_used_project_ids: \'79,1\'\n',1,'Paris'),(416,463,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1\'\n',1,''),(417,464,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'70,1\'\n',1,''),(418,465,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(419,466,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1,72\'\n',1,''),(420,467,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'72,1\'\n',1,''),(421,468,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'80\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,''),(422,469,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'80,1\'\n',1,''),(423,470,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'80,1\'\n',1,''),(424,471,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'80\'\n',1,''),(425,472,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'80\'\n',1,''),(426,473,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'80\'\n',1,''),(427,474,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'81,88,82\'\n',1,''),(428,475,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(429,476,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(430,477,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'88,82,81\'\n',1,''),(432,479,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(433,480,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(434,481,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(435,482,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(436,483,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82\'\n',1,''),(437,484,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82,1\'\n',1,''),(438,213,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(439,210,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(440,485,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82\'\n',1,''),(441,486,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82\'\n',1,''),(442,487,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82\'\n',1,''),(444,489,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'78,94,103\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,''),(445,490,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1,84\'\n',1,''),(446,363,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(447,307,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(448,301,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(449,491,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(450,492,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'81,1,98\'\n',1,''),(451,493,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'85,1\'\n',1,''),(452,494,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(453,495,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82\'\n',1,''),(454,496,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'95,81,1\'\n',1,''),(455,497,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82\'\n',0,''),(456,498,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'95,81,82\'\n',1,''),(457,499,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82,81,1\'\n',1,''),(458,500,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'95,81,1\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,''),(459,501,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82,1\'\n',1,''),(460,502,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'88\'\n',1,''),(461,503,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1,89,92\'\n',1,''),(462,504,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:activity_scope:\n- issues\n- news\n- documents\n- files\n:recently_used_project_ids: \'88,1\'\n',1,''),(463,505,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'92,82,47\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,''),(464,506,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'89,82\'\n',1,''),(465,507,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'89,82\'\n',1,''),(466,508,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82,1\'\n',1,''),(467,509,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(468,510,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'108,92,89\'\n',1,''),(469,511,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'89,1,82\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,''),(470,512,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'89,47,98\'\n',1,''),(471,513,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'92,89,82\'\n',1,''),(472,514,'---\n:no_self_notified: \'0\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'82,89\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,''),(473,515,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'81,88\'\n',1,''),(474,516,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n top:\n - documents\n:my_page_settings: {}\n:recently_used_project_ids: \'1,86\'\n',1,''),(475,517,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'86\'\n',0,''),(476,518,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'89,92\'\n',1,''),(477,519,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1,93\'\n',1,''),(478,520,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(479,521,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1\'\n',1,''),(480,522,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(481,523,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(482,524,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'96,1,93\'\n',1,''),(483,525,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'96,93\'\n',1,''),(484,526,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'96,93\'\n:activity_scope:\n- issues\n- changesets\n- news\n- documents\n- files\n- wiki_edits\n- messages\n- time_entries\n',1,''),(486,528,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'96,1,93\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,''),(487,529,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'93,1\'\n',1,''),(488,530,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'97,1\'\n',1,''),(489,531,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'97,1\'\n',1,''),(490,532,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'97,1,93\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',0,''),(491,533,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'97\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,''),(492,534,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'87\'\n',1,''),(493,535,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'99,93,1\'\n',1,''),(494,536,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'102,93\'\n',1,''),(495,537,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'102,93\'\n',1,''),(496,538,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n:recently_used_project_ids: \'102,93,1\'\n',1,''),(497,539,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'93,102,1\'\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n',1,''),(498,540,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'102,93,1\'\n',1,''),(499,541,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'102,93\'\n',1,''),(500,542,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'102,93\'\n',1,''),(501,543,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1\'\n',1,''),(502,544,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'102,1\'\n',1,''),(503,545,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'101,75,100\'\n',1,''),(504,546,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'101,75,100\'\n:activity_scope:\n- issues\n- news\n- files\n- wiki_edits\n- messages\n',1,''),(505,547,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(506,548,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'78,1,103\'\n',1,''),(507,549,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'78,103,107\'\n:diff_type: inline\n',1,''),(508,550,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'103\'\n',1,''),(509,551,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'103\'\n',1,''),(510,552,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'103,1\'\n',1,''),(511,553,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'104,1\'\n',1,''),(512,554,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'104\'\n',1,''),(513,555,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'104,1\'\n',0,''),(514,556,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'104\'\n',1,''),(515,557,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'104\'\n',1,''),(516,558,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'104\'\n',1,''),(517,559,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(518,560,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(519,561,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(520,562,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1\'\n',1,''),(521,563,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1\'\n',1,''),(522,564,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1\'\n',1,''),(523,565,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'73,47,1\'\n',1,''),(524,566,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'49\'\n',1,''),(525,567,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:gantt_zoom: 2\n:gantt_months: 6\n:recently_used_project_ids: \'49\'\n:activity_scope:\n- issues\n- changesets\n- news\n- documents\n- files\n- wiki_edits\n- messages\n- time_entries\n',1,''),(526,568,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:gantt_zoom: 2\n:gantt_months: 6\n:recently_used_project_ids: \'49\'\n',1,''),(527,569,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'49\'\n',1,''),(528,570,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'49,1\'\n:gantt_zoom: 2\n:gantt_months: 6\n',1,''),(529,571,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,''),(530,572,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'97\'\n',1,''),(531,573,'---\n:no_self_notified: \'1\'\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:comments_sorting: asc\n:warn_on_leaving_unsaved: \'1\'\n:textarea_font: \'\'\n:recently_used_projects: 3\n:history_default_tab: notes\n:recently_used_project_ids: \'108,89,92\'\n',1,''),(532,574,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'106,81,1\'\n',1,''),(533,575,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n top:\n - documents\n:my_page_settings: {}\n:recently_used_project_ids: \'71\'\n',1,''),(534,576,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1\'\n',1,''),(535,577,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',0,''),(536,578,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,'Paris'),(537,579,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1\'\n',1,'Paris'),(538,580,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n:recently_used_project_ids: \'1\'\n',1,'Paris'),(539,581,'---\n:no_self_notified: true\n:my_page_layout:\n left:\n - issuesassignedtome\n right:\n - issuesreportedbyme\n:my_page_settings: {}\n',1,'Paris');
/*!40000 ALTER TABLE `user_preferences` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`login` varchar(255) NOT NULL DEFAULT '',
`hashed_password` varchar(40) NOT NULL DEFAULT '',
`firstname` varchar(30) NOT NULL DEFAULT '',
`lastname` varchar(255) NOT NULL DEFAULT '',
`admin` tinyint(1) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1',
`last_login_on` datetime DEFAULT NULL,
`language` varchar(5) DEFAULT '',
`auth_source_id` int(11) DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`updated_on` datetime DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`identity_url` varchar(255) DEFAULT NULL,
`mail_notification` varchar(255) NOT NULL DEFAULT '',
`salt` varchar(64) DEFAULT NULL,
`must_change_passwd` tinyint(1) NOT NULL DEFAULT '0',
`passwd_changed_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_users_on_id_and_type` (`id`,`type`),
KEY `index_users_on_auth_source_id` (`auth_source_id`),
KEY `index_users_on_type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=582 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'michel','eda879696701d315e8210db5f230cb488962da98','Michel Condemine','Admin',1,1,'2023-02-18 19:58:37','en',NULL,'2011-12-19 02:21:44','2022-04-06 19:54:59','User',NULL,'all','a574cf6b730453518f860516cd90885f',0,'2022-04-06 19:54:59'),(2,'','','','Anonymous',0,0,NULL,'',NULL,'2011-12-19 02:23:38','2011-12-19 02:23:38','AnonymousUser',NULL,'only_my_events',NULL,0,NULL),(4,'camilleguerin','61cd2d358262440e31d1fc945e3cac8fe30fa465','Camille','Guerin',0,1,'2012-11-13 09:49:22','fr',NULL,'2012-01-09 19:45:05','2012-11-13 09:49:22','User',NULL,'all','91c25b9d53080b06bb528555ceaaa388',0,NULL),(5,'eoursel','ff4df91aad5e140960817810886527472a02a440','Eric','OURSEL',0,1,'2013-01-29 10:06:51','fr',NULL,'2012-01-13 17:26:39','2013-01-29 10:06:51','User',NULL,'only_my_events','4bc00fecbcb041a951b50dc1ad272246',0,NULL),(6,'God','87cf392606a8bbc8516f7a3c752a153528c98f4b','The','God',0,1,'2012-03-28 11:45:58','en',NULL,'2012-01-13 17:50:43','2012-03-28 11:45:58','User',NULL,'all','2b6675626eb8dfd05fe1702d4cf1fd0b',0,NULL),(8,'thomas.burke@opcfoundation.org','dc79ebffa0d3f453ec14e829a5efb5580f9c453b','Thomas','Burke',0,1,'2012-03-15 18:52:19','en',NULL,'2012-01-18 17:07:42','2012-03-15 18:52:19','User',NULL,'all','73c71b980781ddc6c0e8bcf477365a09',0,NULL),(10,'JimLuth','0a2369f622b842b19545e28bdd965360df68ae8b','Jim','Luth',0,1,'2022-03-30 13:09:43','en',NULL,'2012-01-27 14:13:32','2016-12-23 17:07:38','User',NULL,'all','4148883dc4721798142fc6c08afb53c3',0,NULL),(11,'tuan.dang@edf.fr','86fab23f3b38522fb00f5def712df5f0499e2100','Tuan','DANG',0,1,'2013-10-28 09:14:53','en',NULL,'2012-02-14 09:56:35','2013-10-28 09:14:53','User',NULL,'all','f8230ab3cea9d83a56b2dc8783e64188',0,NULL),(12,'ctinard','a45781546dee199e626a45f1a48b05635549ab94','Cedric','TINARD',0,1,'2013-03-25 17:36:01','fr',NULL,'2012-02-15 14:44:18','2013-03-25 17:36:01','User',NULL,'all','304fb02d950da07e31b1b34b14ba342a',0,NULL),(13,'stefanspichiger','adecdb2cbaf992791158c28d7c661bba1982ec97','Stefan','Spichiger',0,1,'2012-02-22 10:12:56','de',NULL,'2012-02-22 10:03:48','2012-02-22 10:12:56','User',NULL,'all','86e70d7c2d0f4ced3199c6096d4b4fcc',0,NULL),(16,'dprizon','75e1d13994f50dbc53972ab88d0a955135b2f129','Delcio','Prizon',0,1,'2014-02-24 12:55:17','en',NULL,'2012-02-24 15:44:56','2014-02-24 12:55:17','User',NULL,'all','234abd168599989c267fea270efd9d8b',0,NULL),(19,'ze_rico','853dcd8d6e6b5f57e3456ff0384cedb6c938ff7c','eric','rico',0,1,'2012-03-05 17:23:54','fr',NULL,'2012-03-05 17:21:33','2012-03-05 17:23:54','User',NULL,'all','247314978a601cf50bdb60ed3ca39dc9',0,NULL),(22,'gillerman','5e4b29bb741ece5737505d474ec8be8840185b53','John','Gillerman',0,3,'2015-04-09 15:41:52','en',NULL,'2012-03-09 03:52:30','2015-05-21 12:20:47','User',NULL,'all','b231ef67ad8b5ebed75de642cbf6984e',0,NULL),(25,'Starloff','a7d8354f0b35060e35e3793bd60126248ecd46a3','Star','Loff',0,1,'2014-12-05 14:41:26','fr',NULL,'2012-03-18 09:27:07','2014-12-05 14:41:26','User',NULL,'all','a15fe291c4fd9b3d58eca99ed48139c7',0,NULL),(27,'awcullen','6e416b5c55a035c8f40b580ab7cd96843f4f143e','Andrew','Cullen',0,1,'2013-02-08 02:35:39','en',NULL,'2012-03-23 13:41:48','2013-02-08 02:35:39','User',NULL,'all','6c37b32963ea2f632f53a00fd9d1bda2',0,NULL),(29,'phfr83','51e0ac8d5eee13b551413a04c5740099c56c0b02','FROISSANT','Philippe',0,1,'2017-07-18 15:10:06','fr',NULL,'2012-04-04 21:47:06','2017-07-18 15:10:06','User',NULL,'all','deee041290c52638f49a5cc4e0847764',0,NULL),(30,'bbony','3d3317c21e5604e5d6617b1448d714f06e3215ee','Bernard','Bony',0,1,'2013-03-27 11:04:30','fr',NULL,'2012-04-05 15:38:32','2013-03-27 11:04:30','User',NULL,'all','3b7677f1e05eb4b98800c00adcaa0760',0,NULL),(31,'mattmoss','50f5b2cd9f969a364ca5c1b556319925c731f113','Matthew','Moss',0,1,'2014-02-15 19:09:44','en',NULL,'2012-04-07 16:41:55','2014-02-15 19:10:28','User',NULL,'none','025547b88e00363b657433a02b320ae1',0,NULL),(33,'KAPILRAKH','ca5632b16bbe6ea373e18cdc260e4cc80c56b060','Kapil','Rakh',0,1,'2014-05-27 19:23:23','en',NULL,'2012-04-21 11:16:18','2014-05-27 19:23:42','User',NULL,'none','5a5c4e1ab76bb7a3a2f470939c8d802e',0,NULL),(34,'marcosludwig','d69ba69d4555028d323ddbf92824587c4e209a53','Marcos','Ludwig',0,1,'2012-05-07 06:07:20','en',NULL,'2012-05-04 05:59:14','2012-05-07 06:07:20','User',NULL,'all','3e1ee71c900a43542f8b898b09771d10',0,NULL),(36,'iselemat','fbc084c2dc2c1c4b9b8c315be8cde51882c2a039','Matthias','Isele',0,1,'2014-02-24 08:59:19','de',NULL,'2012-05-07 09:08:52','2014-02-24 08:59:39','User',NULL,'only_my_events','0468c3ba337c665b5530fdba801a32a3',0,NULL),(40,'gferon','c0a98a6d5041fbebd7e45601f24f17151603261b','Gabriel','Feron',0,1,'2014-03-10 09:10:51','en',NULL,'2012-06-18 13:48:02','2014-03-10 09:11:03','User',NULL,'none','1b7caa5e84b91b4a29d04877e7df544a',0,NULL),(41,'jcos1','d79e71885f2d4c693c10b14b52d5a8ddc46717af','J','Cos',0,1,'2012-12-04 20:49:02','en',NULL,'2012-06-18 17:12:15','2012-12-04 20:49:02','User',NULL,'all','5f54d261083f2de992c526286e04b5ea',0,NULL),(42,'mhe','87fd90cf2d5db0a8039975a319b866ef354eac20','M.','Hertog',0,1,'2012-06-20 16:11:00','en',NULL,'2012-06-20 16:09:46','2012-06-20 16:11:00','User',NULL,'all','8f9c52fbc4be644315e1672b1ecf75f9',0,NULL),(44,'dfrancesconi','077b7cfe0897d399769f7ae671ddd74ef5bc4287','Denis','Francesconi',0,1,'2014-05-12 19:04:54','en',NULL,'2012-06-22 20:52:42','2014-05-12 19:04:54','User',NULL,'all','be3e3d59276953466aa5672a752924ad',0,NULL),(45,'torie','95ae4da25da7b84d2da5c503c13862d2b19186bc','Tor-Inge','Eriksen',0,1,'2012-06-23 23:10:00','en',NULL,'2012-06-23 23:07:55','2012-06-23 23:10:00','User',NULL,'all','915af3e18cdf79e7b868fcc28db89f0d',0,NULL),(46,'stig','71596ff1ae33ca69743b2c83c1f818fb71501bb8','Stig','Helgeland',0,1,'2013-09-06 09:49:02','en',NULL,'2012-06-26 11:23:53','2013-09-06 09:49:02','User',NULL,'all','28f2e3c9397a52741346132e4d90c4b2',0,NULL),(47,'christophe.castigue','5fb48b45cc036c3cbcd0f2860dc78545f9f00e15','Christophe','Castigue',0,1,'2017-01-02 18:38:26','fr',NULL,'2012-06-27 09:46:30','2017-01-02 18:38:26','User',NULL,'all','10fb6bb0cac9370db54d3784227d5414',0,NULL),(48,'sonylazarus','355dc9cb84422ff5fa636e8f29640c9d954a7a0f','Sony','lazarus',0,1,'2012-06-27 09:51:20','en',NULL,'2012-06-27 09:50:56','2012-06-27 09:51:20','User',NULL,'all','8890ec4a23bb4ae11cd44a04ac4c55fe',0,NULL),(52,'poulsenj','8dd0cc58116b947321fce5efd41251be7dc34c56','Johannes','Poulsen',0,1,'2012-07-06 07:09:46','en',NULL,'2012-07-06 07:09:08','2012-07-06 07:09:46','User',NULL,'all','0f793bc2bdb5cce5430579a5d6d1c692',0,NULL),(53,'ViktorGasp','b9b21b943e6ba44f2a9f26777d133e689524c937','Viktor','Gasp',0,1,'2012-07-06 10:35:53','en',NULL,'2012-07-06 10:35:04','2012-07-06 10:35:53','User',NULL,'all','a0f0a6cb6691f25370f9a6881986047a',0,NULL),(54,'VDB','681332ea521876658c63642572941a45790af7fe','Johan','van den Broek',0,1,'2012-10-12 12:06:59','en',NULL,'2012-07-09 19:53:43','2012-10-12 12:06:59','User',NULL,'all','975c7534ae11dba587bd1cd726fd3d21',0,NULL),(55,'nlitt','26e8b53fffa11b506e50f97fea44e8657a6d8972','nathan','litt',0,1,'2012-07-09 22:58:03','en',NULL,'2012-07-09 22:57:41','2012-07-09 22:58:03','User',NULL,'all','37d8fecd6e4fd8a97737958eda8444f3',0,NULL),(56,'guza','eb36f2588c5bd1b90c81858c5ab8bfff1ad7aa0e','em','ka',0,1,'2012-07-10 15:52:36','en',NULL,'2012-07-10 15:52:07','2012-07-10 15:52:36','User',NULL,'all','be4a1582725737cdea0f6b02ab73e9f2',0,NULL),(57,'thauzer','c8073b5e8e997cf8476fa5c3b920ccf46871b1f1','Tomaz','Hauzer',0,1,'2012-07-24 15:38:29','en',NULL,'2012-07-24 15:37:31','2012-07-24 15:38:29','User',NULL,'all','17e47ae8d7d6341ce0dd7c161cda99ed',0,NULL),(58,'oroulet','f5c24e326e354e6ada0fbf25f8f64bddb85be49d','Olivier','Roulet-Dubonnet',0,1,'2012-08-09 10:50:59','en',NULL,'2012-08-09 10:49:36','2012-08-09 10:50:59','User',NULL,'all','e9861f8e50604a1ff70fede3e3b68c81',0,NULL),(60,'spny','c8290ac1e6997f2565ac4d751572567b3accd033','JAEWON','LEE',0,1,'2012-08-10 08:46:57','ko',NULL,'2012-08-10 08:45:59','2012-08-10 08:46:57','User',NULL,'all','e553b8e2a197ada5c59f1f32ae7249f9',0,NULL),(61,'avra','20e42912f837198466307cdc81f19629e73ae80c','Жељко','Аврамовић',0,1,'2015-04-10 15:38:36','sr',NULL,'2012-08-14 12:49:28','2015-04-10 15:38:59','User',NULL,'none','cf15cb7f9e5d638d76c977f330313490',0,NULL),(62,'m.bandu','815771707842ac8b19e1b1f6a871a7ba79f677df','Maung','Bandu',0,1,'2012-08-14 17:26:35','en',NULL,'2012-08-14 17:25:17','2012-08-14 17:26:35','User',NULL,'all','7358b6a602f04f38386df9032ecf8a49',0,NULL),(63,'pavel-ch','634d027973abf9ae37adb282e371a2e2affb3fb9','pavel','charvat',0,1,'2014-04-04 22:54:20','en',NULL,'2012-08-16 23:36:56','2014-04-04 22:54:20','User',NULL,'all','f5117df0d07a558d77c22cf694e1fa58',0,NULL),(64,'AnthonyFloyd','3f52071aec4a386688df5b48a01cde0502187abe','Anthony','Floyd',0,1,'2012-08-24 23:53:59','en',NULL,'2012-08-24 23:53:34','2012-08-24 23:53:59','User',NULL,'all','2d57f13cd6f9216bb75c2ee0b3ccf53b',0,NULL),(65,'debrouxl','cb3c34a692e9f7041b5421fd5e531ba9e40b1b79','Lionel','Debroux',0,1,'2012-08-27 18:06:05','en',NULL,'2012-08-27 13:50:06','2012-08-30 12:00:37','User',NULL,'all','244519e971004f0086d865ca687368d6',0,NULL),(66,'PPeyre','c0cf035fcd6c2650122560927508db4aa845c15b','Pascal','PEYRE',0,1,'2012-08-28 10:28:12','fr',NULL,'2012-08-27 14:04:27','2012-08-28 10:28:12','User',NULL,'all','227c91e4519d9b19f9087e2063442e32',0,NULL),(68,'cvoisin','89ea2562d3f0464d9aa95d61e5390c53e00bb079','Christophe','VOISIN',0,1,'2012-08-28 10:12:57','fr',NULL,'2012-08-28 09:01:53','2012-08-28 10:12:57','User',NULL,'all','2a7c27210786761cebfced729a5ef380',0,NULL),(69,'lbouzon','bb1daf36fe48cce859f7e4cabdc0a56da0e2ccf6','Lionel','Bouzon',0,1,'2012-08-31 10:06:32','fr',NULL,'2012-08-28 09:57:40','2012-08-31 10:06:32','User',NULL,'all','fab6f6b964fac8133be8d5402148ff9e',0,NULL),(70,'olivier.jolet@atos.net','43240f739ea889959f2b208f8330ef6a481d171a','Olivier','Jolet',0,1,'2012-08-28 14:51:54','fr',NULL,'2012-08-28 10:38:16','2012-08-28 14:51:54','User',NULL,'all','9e9d5cfb48bf4e8149c49e330b5c0de7',0,NULL),(71,'lucien.rorato','42d2c4e2079053c8f9f724c5dc9c64a618c119bd','Lucien','Rorato',0,1,'2012-08-28 14:05:45','fr',NULL,'2012-08-28 10:43:37','2012-08-28 14:05:45','User',NULL,'all','b5980b075b0e957a635fbe93ea1da139',0,NULL),(72,'vrondot','bbdb96c9fd6f313b85bc37cab883ea8696c27b57','Vincent','Rondot',0,1,'2012-08-28 16:26:45','en',NULL,'2012-08-28 10:52:39','2012-08-28 16:26:45','User',NULL,'all','13226614122bdd97a626f0162e2f2851',0,NULL),(73,'janthoine','ce365a4534f661a094362d9c2a2effcea7abea40','Jacques','Anthoine',0,1,'2012-08-29 09:34:10','fr',NULL,'2012-08-28 11:09:56','2012-08-29 09:34:10','User',NULL,'all','0552868ba79e42b7a0acb9a5bb31593c',0,NULL),(74,'Korwin','0b6e3e7deeec2ddfea20d6bcebc460ba6f6df7e5','Marc','BERGER',0,1,'2012-08-29 10:55:05','en',NULL,'2012-08-29 10:53:42','2012-08-29 10:55:05','User',NULL,'all','6ff6b275d65c74cd28b2dd8d4e8edfba',0,NULL),(75,'CCD','c0a7682a955a5cab7c282b89bfa13649ee2c5eb0','christophe','chevandier',0,1,'2012-08-29 11:05:47','en',NULL,'2012-08-29 10:57:30','2012-08-29 11:05:47','User',NULL,'all','d5736253f7e5cc9a5f63a981bb9583eb',0,NULL),(77,'wjffsx','7b61675d1fcdf14ebc46adf5a261c33fa25e51bb','junfeng','wang',0,1,'2012-08-30 02:33:02','zh',NULL,'2012-08-29 15:58:52','2012-08-30 02:33:02','User',NULL,'all','1ffc7d5cec125b08ceb2f31b97cef1a3',0,NULL),(78,'v0','6ed7e1f5df752dd80924e4e9d39c539af2ad98d7','Ruslan','Star',0,1,'2012-09-03 14:31:49','ru',NULL,'2012-09-03 14:28:36','2012-09-03 14:31:49','User',NULL,'all','f3f2c488196e925921a4180da1b63120',0,NULL),(80,'Wandern','31c518b4189d1ac0116c539cb6b2fafbe323693c','Daniel','Durham',0,1,'2012-09-10 04:40:59','en',NULL,'2012-09-10 04:23:29','2012-09-10 04:40:59','User',NULL,'all','6153f0c42e90d9704227c4c508f25263',0,NULL),(82,'danielepala','708791cf746d256e886e739bef7ff7450621d188','daniele','pala',0,1,'2012-09-12 11:27:41','en',NULL,'2012-09-12 11:26:54','2012-09-12 11:27:41','User',NULL,'all','cf7dc84836feb2688e09a681f98d215d',0,NULL),(83,'pfourre','ef4e94f3314fc58e12f3adde2d4668d3b96fe92f','pascal','Fourré',0,1,'2013-02-25 12:34:20','fr',NULL,'2012-09-20 09:18:23','2013-02-25 12:34:20','User',NULL,'all','9ef651e35d8b2516cb53cea1ba65b9a1',0,NULL),(84,'ecarfagna','d1d84dade6229b35535510e5bc6b3612263ff306','Eliceo','CARFAGNA',0,1,'2020-07-27 09:49:02','fr',NULL,'2012-09-20 09:39:36','2020-07-27 09:49:02','User',NULL,'all','2f8ed3aac2b22740aa20dbce0a4c4f03',0,NULL),(85,'cdingeon','a6d3e38bd807155c8214cad385c70333b904789e','Catherine','Dingeon',0,1,'2014-05-26 08:52:58','fr',NULL,'2012-09-20 15:56:51','2014-05-26 08:53:35','User',NULL,'none','3755a687a9f06d874f3970bf65ab9be4',0,NULL),(86,'phl025','766be826b7872917fe4c2392dca80245a545c75a','Philippe','Lallemand',0,1,'2012-09-27 21:21:11','fr',NULL,'2012-09-20 20:35:24','2012-09-27 21:21:11','User',NULL,'all','a2f4775201617b19895d0c74edc22d46',0,NULL),(87,'pablo','d1099280496ecd1e43319c108fd0e9e2c228e234','Pablo','Pascual',0,1,'2013-01-30 11:50:38','es',NULL,'2012-09-26 07:31:24','2013-01-30 11:50:38','User',NULL,'all','83f5b9ce60ebce6b59012fd38f726c72',0,NULL),(88,'smeynet','a672f44078af436b08d94cb8306d0c145a0218f1','Stéphane','MEYNET',0,1,'2013-03-26 09:29:44','fr',NULL,'2012-09-27 11:48:56','2013-03-26 09:29:44','User',NULL,'all','5ebe048d268c339eb9a051a4542d764a',0,NULL),(89,'gavioto','c67c0cc76c86e16e2b05562d6ce3afc93130ca3b','a','corral',0,1,'2012-09-28 01:08:18','en',NULL,'2012-09-28 00:20:41','2012-09-28 01:08:18','User',NULL,'all','f532f52c4cf8ca5a89ef01b0ef8b41f8',0,NULL),(91,'Archimedes','2a13f1fc2446ce943d2daf19e947d01d45a6c254','spam','sink',0,1,'2012-10-05 13:31:11','en',NULL,'2012-10-05 13:26:02','2012-10-05 13:31:11','User',NULL,'all','64a46edf9780dc3a3a142102602d68f0',0,NULL),(92,'cpipero','a00af617d3ed80d7f1bafda8a8793cff6da8ccf1','Costantino','Pipero',0,1,'2022-12-06 13:37:50','en',NULL,'2012-10-08 03:52:23','2017-03-22 20:24:49','User',NULL,'all','7df39821d1cc4944f9e2dd7ff70850f1',0,NULL),(93,'M1k','44c6a4d9416ae7552edbd86786be94d3a19d41e7','CALA','Mickael',0,1,'2021-05-17 19:49:37','fr',NULL,'2012-10-11 10:09:16','2015-03-12 19:41:50','User',NULL,'all','c59572a6febcd8f8af99b6314a857d08',0,NULL),(94,'Elodie_Julien','c70bbf100f7478bc6430b7d7c530b8d0d67bead9','Elodie','Julien',0,1,'2012-10-23 13:18:58','fr',NULL,'2012-10-11 11:46:24','2012-10-23 13:18:58','User',NULL,'all','26bcc0991b4441a24bfdabcae087016c',0,NULL),(95,'cmozzati','40b0e042c0c44b6add7928d8eaee44c8168ae275','Christophe','MOZZATI',0,1,'2014-05-27 11:48:38','fr',NULL,'2012-10-11 12:23:38','2014-05-27 11:48:56','User',NULL,'none','365c9b3b56a5c1b6cd78364e448d6135',0,NULL),(96,'Rico_la','1e97c8ecae222c88a56c3f6bd4bc6d0c02d46058','Eric','chabanne',0,1,'2012-10-11 14:20:59','fr',NULL,'2012-10-11 14:20:14','2012-10-11 14:21:36','User',NULL,'all','a104fd3abe9ba884cf619bcf6c5e7445',0,NULL),(97,'rrodriguez','9751f5193a29055bebe44f5dc73b045dd71f6f87','rafael','rodriguez',0,1,'2012-10-11 14:26:37','fr',NULL,'2012-10-11 14:25:07','2012-10-11 14:26:37','User',NULL,'all','fe4a1bc02f33777d6ed7651d0bfc1eda',0,NULL),(98,'v2nim','5325650d100b2f583a7987836a7ada211ec36ed5','Vincent','QUILLET',0,1,'2012-10-11 16:25:13','fr',NULL,'2012-10-11 16:16:30','2012-10-11 16:25:13','User',NULL,'all','5f30aaf7d997e0a0ef5fec8bf1e772e5',0,NULL),(99,'fbtech','5cb3d6ff3059b560362bd9d65ec61bfa0dd5336e','Frederic','Bouvier',0,1,'2012-11-19 11:55:10','fr',NULL,'2012-10-12 19:10:19','2012-11-19 11:55:10','User',NULL,'all','42034eb3e3e80f003e05cf06487c196a',0,NULL),(101,'atmpas','2336c189528f0608129469ce4fba0338c0985397','Michael','Pasquini',0,1,'2012-10-26 17:00:49','en',NULL,'2012-10-26 16:57:41','2012-10-26 17:00:49','User',NULL,'all','06fde6cb8cdfc4239d82bae156ae0f37',0,NULL),(103,'jeff.harding@us.abb.com','0f85171aa0cc8a8b3f037f69f1d93306c9861393','Jeffrey','Harding',0,1,'2012-10-29 15:21:39','en',NULL,'2012-10-29 15:19:48','2012-10-29 15:21:39','User',NULL,'all','597e1eefd66710571a64756fece5855a',0,NULL),(105,'wsk','539cac6ffe8bed47cda86666af92b77e9704c1fa','afdasfsdf','sdfsdf',0,1,'2012-11-09 11:28:41','en',NULL,'2012-11-09 11:27:43','2012-11-09 11:28:41','User',NULL,'all','1b7049730d44ab3280793f3d42329c7b',0,NULL),(106,'dcardille','e03ee9af6b0b0855a5d92c8b551066e68ecd71fe','Daniel','Cardille',0,1,'2022-08-02 03:35:40','en',NULL,'2012-11-18 04:59:20','2020-07-26 19:21:20','User',NULL,'all','be4f7b5d6d5417601b0f7505367416e1',0,NULL),(107,'ncc365','8e81c75c47d0fdf6abeefb620c54e9d364e518b5','Zeg','Acc',0,1,'2015-02-20 16:33:47','en',NULL,'2012-11-29 16:41:20','2015-02-20 16:34:16','User',NULL,'none','e61bc72d6e55a1dcf6696960c0532878',0,NULL),(108,'flcl','4a0dfe7cd8f5443a673f2032365f5a6822b8e816','Matthew','Smith',0,1,'2016-07-11 11:02:14','en',NULL,'2012-11-29 23:43:47','2016-07-11 11:02:14','User',NULL,'all','eaa4485c93537b867ec337c1350afa0d',0,NULL),(109,'carlosmva1','8a6e46f0654527d08119e2ab25e7f90eba6df269','carlos','mtz',0,1,'2015-02-24 14:45:40','en',NULL,'2012-11-30 06:02:00','2015-02-24 14:46:32','User',NULL,'none','8d7015733fedd25aaf9d8801f0152fe3',0,NULL),(110,'talberts','9230f6b9fc55f4c02f089835bf072566c74eb922','Theuns','Alberts',0,1,'2012-12-05 17:43:42','en',NULL,'2012-12-05 11:07:35','2012-12-05 17:43:42','User',NULL,'all','7b95f26e0095927f667d149feaeade35',0,NULL),(112,'hanswil','cfc29cb0beac5d3a49d11eca108ce286c5a7fac3','Hans','Wilmers',0,1,'2015-02-23 20:56:45','en',NULL,'2012-12-07 13:47:36','2015-02-23 20:56:45','User',NULL,'all','7441e40d301ed8fb37dd7f1eb8f13dd8',0,NULL),(114,'jmribault@geniop.com','21dd56f867cc6e1e84d12e2149d755c17d938198','jean-marc','ribault',0,1,'2013-01-03 09:42:00','fr',NULL,'2013-01-03 09:40:40','2013-01-03 09:42:00','User',NULL,'all','4d8f6933281bfc511676a26eed6473b9',0,NULL),(115,'mateiasi','b4a9492b14f6df082ace0e336d40f64db1b21521','Iulian','Mateias',0,1,'2013-01-09 13:46:51','en',NULL,'2013-01-09 13:43:27','2013-01-09 13:46:51','User',NULL,'all','945903d2cfdbbeb6f00a94ade643ef63',0,NULL),(116,'antaniker','1542be73e52b88aa259da9e50a3c283621d012a7','Thomas','B.',0,1,'2013-01-11 09:14:18','de',NULL,'2013-01-10 14:27:50','2013-01-11 09:14:18','User',NULL,'all','13fde705e9215a8afe2d80ddc9079154',0,NULL),(117,'Weber','2f23b63a50cd8f5a2acbbc0525ac7af7f9800c9f','Tobias','Weber',0,1,NULL,'de',NULL,'2013-01-10 17:39:41','2015-11-11 17:43:12','User',NULL,'all','4ea935b55809d865e1d4c6300f5c351f',0,NULL),(118,'Joelhaggar','4d4c2ff82e8098f190400e4f24cd5a2fefe1d749','Joel','Haggar',0,1,'2022-03-28 00:45:09','en',NULL,'2013-01-14 17:00:34','2022-03-28 00:45:35','User',NULL,'none','5ae719671ed3173a2a166d89eebb8a3e',0,NULL),(119,'caocuongngo','fe31b994aa198a58bb4fbf7c654b219950b73a74','Cao Cuong','NGO',0,1,'2013-01-31 15:42:15','en',NULL,'2013-01-16 11:58:53','2013-01-31 15:42:15','User',NULL,'all','c12fbae1f344fe01ad18eb4831e91980',0,NULL),(121,'bellot','8cb126db294001751cc3c43eb2d51966f0d6bb23','Patrick','Bellot',0,1,'2013-07-12 08:56:48','en',NULL,'2013-01-21 17:15:23','2013-07-12 08:56:48','User',NULL,'all','3dea5e1d59ae0b6f2b803194f43af96e',0,NULL),(122,'vincent.voisin@yahoo.fr','a787c8bfb2ed8c8d1c0e261929ca4ea040f9fc4d','vincent','voisin',0,1,'2013-02-02 01:09:42','fr',NULL,'2013-02-02 00:51:41','2013-02-02 01:09:42','User',NULL,'all','c4d50b9d88a8fbb021d23b96e1f2c404',0,NULL),(123,'sylvain.jalbert','6853ce0662a00977c095c3ec3395d29895906e22','sylvain','jalbert',0,1,NULL,'en',NULL,'2013-02-12 01:17:08','2015-11-11 17:40:47','User',NULL,'all','3489647237cb0e7be59f15c5e896a4d4',0,NULL),(126,'willsobel','5f33081130273224d17ad2a2f5908b352b4790c9','William','Sobel',0,1,'2013-02-21 21:32:47','en',NULL,'2013-02-20 21:45:22','2013-02-21 21:32:47','User',NULL,'all','7ff1d69bc44301e00fd066346d0a6f78',0,NULL),(127,'raspi','758e38584155160d82d5ac685af6f5b64225e56f','Ras','PI',0,1,'2013-02-23 23:03:14','fr',NULL,'2013-02-23 23:01:52','2013-02-23 23:03:14','User',NULL,'all','d0beda4d8e4e22dd25ab809e7fcb9a28',0,NULL),(129,'fraxo','805c44c0887778e4dd4e8f956bd3a2992a956789','Franz','Hofer',0,1,'2013-02-26 11:20:37','en',NULL,'2013-02-25 16:51:06','2013-02-26 11:20:37','User',NULL,'all','04c80dc5ee4729d60dd3c5afb78120b6',0,NULL),(131,'duck','c762b4165ddf3c2848a3c2109130c203ac95ff73','duck','duck',0,1,'2013-03-14 10:25:08','en',NULL,'2013-03-14 10:24:09','2013-03-14 10:25:08','User',NULL,'all','d36e02d0ff8ba844c4b3aed3813f5909',0,NULL),(133,'scba310','10930edb06726a87d18ce7e677d489fcaeb10365','Scott','Baron',0,1,'2013-04-09 17:36:00','en',NULL,'2013-04-09 17:35:16','2013-04-09 17:36:00','User',NULL,'all','52959341aaf002aa3201e69fc1d88239',0,NULL),(134,'leftyb','831c6839713199cea5f611106be6ab6a355b32ec','lefteris','banos',0,1,'2013-05-27 17:55:55','en',NULL,'2013-04-29 13:06:56','2013-05-27 17:55:55','User',NULL,'all','cd4ac662728f769e668f3d9b6ddba22b',0,NULL),(136,'bcoromina','f7ac3109884b4c6ab4078999e20a985658d03e93','Bernat','Coromina',0,1,'2013-05-27 17:45:20','ca',NULL,'2013-05-27 17:44:29','2020-07-27 13:27:44','User',NULL,'all','f3b9151c1b34ae78778dd9695bb0a9df',0,NULL),(137,'frankfleer','c5b45fa8379f1bf28010bc2cf46005e85db38120','JIHUA','LI',0,1,'2013-07-11 15:30:25','en',NULL,'2013-07-11 14:32:54','2013-07-11 15:30:25','User',NULL,'all','70154ca54e73b4dcf9bd11475989a039',0,NULL),(138,'pnguyen','071e1a9a9acd5a47caadaf2b504a25376b963e94','Pierre','Nguyen',0,1,'2013-07-11 14:36:39','fr',NULL,'2013-07-11 14:35:15','2013-07-11 14:36:39','User',NULL,'all','78aa340377024ec5b389b4df36d5242a',0,NULL),(140,'nhersche','e289a1899894f0593e8e836ea360783502e3fdb0','Niklaus','Hersche',0,1,'2013-07-16 14:13:46','en',NULL,'2013-07-16 14:12:16','2013-07-16 14:13:46','User',NULL,'all','8867306c8aa7481b487f49e7641183da',0,NULL),(143,'nothing','a4b34c5fe34b6f40040dc5266948caba93bcd600','none','anymore',0,1,'2013-08-25 11:51:56','zh',NULL,'2013-08-25 11:03:23','2013-08-25 11:51:56','User',NULL,'all','e0453c666154db4e273ae4ccb98021df',0,NULL),(145,'t5t5t5t5','85ce822720106b682efaf7f66ace5459cd66d8ac','sam','hamilton',0,1,'2013-11-22 14:16:57','en',NULL,'2013-08-28 17:09:53','2013-11-22 14:16:57','User',NULL,'all','17790d37593b31f37e0805a9652af33d',0,NULL),(146,'liuz','ecdcd5f1e44f814313a8064cb3cdfeeef61142ec','liuzhong','liu',0,1,'2014-01-24 07:02:37','zh',NULL,'2013-09-02 04:03:56','2014-01-24 07:02:37','User',NULL,'all','f5918672c368feeee464c93b52d2624b',0,NULL),(148,'san','7f8024f71a8a6832d1b4cc4714a37ac02fbfa581','Alex','Sokolov',0,1,'2015-03-14 23:27:46','en',NULL,'2013-09-02 11:04:52','2015-03-14 23:27:46','User',NULL,'all','d4c80dbb1260e04486983821e48785e0',0,NULL),(149,'beau','f3832616bcfd20cdce0cea06f56996e9ac705e22','beau','trepp',0,1,'2014-05-26 08:06:51','en',NULL,'2013-09-05 02:37:21','2014-05-26 08:06:51','User',NULL,'all','3ab96c91e06ff8ad96bf5e2fcb95c9e1',0,NULL),(152,'AloisZoitl','a49926e8daf6ae46780652999faa91da926d8e1a','Alois','Zoitl',0,1,'2015-03-05 21:19:43','en',NULL,'2013-09-13 21:44:40','2015-03-05 21:20:36','User',NULL,'none','5ed1709811c68e46d1cdfd2c2d78997e',0,NULL),(154,'pcj@techni.no','14c54a8b7afdbc0794927575fa0d96afe2073a1d','Per-Christian','Johannessen',0,1,'2013-10-01 08:24:52','en',NULL,'2013-09-16 11:13:55','2013-10-01 08:24:52','User',NULL,'all','1bcfa5124da703dd6d6810afb83e8b36',0,NULL),(156,'maxime.coroyer','94e3d77e87b72fdf1ad75716603a9540d6de9a34','Maxime','COROYER',0,1,'2013-10-23 14:51:31','fr',NULL,'2013-10-10 17:03:36','2013-10-23 14:51:31','User',NULL,'all','1d4c87366ff05b2ac17cd87541531f15',0,NULL),(159,'member1357','8e701843faed855e6eef11c8b3ff33b9a859ab10','Joachim','Mammele',0,1,'2014-02-24 08:06:24','de',NULL,'2013-10-28 11:07:16','2014-02-24 08:06:56','User',NULL,'none','c0cae85d21fd960645ba8e5e8ea64eec',0,NULL),(160,'gresoviac','d3d89753247bf3d6e2a788a4edac89b8079cc60d','philippe','gresoviac',0,1,NULL,'fr',NULL,'2013-12-05 08:55:58','2014-02-22 00:26:45','User',NULL,'all','6ff04b8d3cb0bdd4da49b09be2c7d37f',0,NULL),(161,'joakimsk','80e399c2e7af5b6c4eceda87db5209fe048acb1d','Joakim','Skjefstad',0,1,'2013-12-17 18:58:30','en',NULL,'2013-12-17 18:57:19','2013-12-17 18:58:30','User',NULL,'all','31ab0655ea853843969d844da082115e',0,NULL),(162,'loc_tran17','5fcb2179475f3741a127356accb4350749f03948','Loc','Tran',0,1,'2014-01-26 14:06:12','en',NULL,'2014-01-26 14:05:07','2014-01-26 14:06:12','User',NULL,'all','075f437ed05273767129ea630a926c07',0,NULL),(163,'paroga','212879b9ee4a7377d147697dbe54bf8cf14395dd','Patrick','Gansterer',0,1,'2014-05-26 08:36:12','en',NULL,'2014-02-06 09:57:42','2014-05-26 08:36:12','User',NULL,'all','e929bd92627d67fcddbd095ed216d257',0,NULL),(164,'pspeybro','fa82f15ab33b28130af48839dd5ea65221738f7d','Peter','Speybrouck',0,1,'2016-05-16 01:30:30','en',NULL,'2014-02-12 16:04:57','2016-05-16 01:30:30','User',NULL,'selected','aa37d8c9ea9517b8bf1e0f03767e4f06',0,NULL),(166,'VilemSrovnal','bc4c1de6e6299baf76ca2c313b0e2c3c4f8666fc','Vilem','Srovnal',0,1,'2018-02-23 22:28:27','en',NULL,'2014-02-13 21:47:32','2018-02-23 22:28:27','User',NULL,'all','582f924067551a797a129777de109af8',0,NULL),(167,'jph','21aa07ebf76a830c64bae8446079b03b8b915b25','Jens-Peter','Hillers',0,1,'2014-02-19 16:09:31','de',NULL,'2014-02-19 15:12:17','2014-02-19 16:09:31','User',NULL,'all','fd4051897fb43f6530c2d3a91a373bdd',0,NULL),(168,'AtleH','196d1a81f3353434ce1d76ada9c2764941af19cc','Atle','Haugan',0,1,'2015-02-24 13:55:38','en',NULL,'2014-02-20 07:28:47','2015-02-24 13:59:04','User',NULL,'none','06342c81380d534d655617a4758def3d',0,NULL),(170,'jespada','c8a330dbfa5655fa6e0a97594a4c57706a2f47d4','Jordi','Espada',0,1,'2014-03-02 11:55:57','en',NULL,'2014-03-02 11:55:30','2014-03-02 11:55:57','User',NULL,'all','4fafb7381b3855626ec39a8e9f7e32c2',0,NULL),(171,'GranCanarito','c13cbb4a054dc8ed2b8bc26bcf706683af08387f','Gran','Canarito',0,1,'2014-03-03 22:50:19','es',NULL,'2014-03-03 21:53:33','2014-03-03 22:50:19','User',NULL,'all','6de9936bd8df0981ef984c7457737b96',0,NULL),(172,'jimmy__huang','36ccac97fbc8a8ce5a4d51aaa2cfce46de937b68','jimmy','huang',0,1,'2014-03-05 14:56:03','zh',NULL,'2014-03-05 14:54:41','2014-03-05 14:56:03','User',NULL,'all','7b9b2ef72b599de24da83ceb42740873',0,NULL),(174,'bsasis','f667c15b40b54ccf09ac64039670ca4878ab0bf7','Benjamin','SANTON',0,1,'2018-03-01 11:08:58','fr',NULL,'2014-03-10 08:40:53','2018-03-01 11:08:58','User',NULL,'all','beab4772b98d31debedee396b76d2cea',0,NULL),(175,'ServoUA','e841c6c2a5910d9125145b61a726438cfd06a5fa','nir','geller',0,1,'2014-06-26 14:31:26','en',NULL,'2014-03-10 16:46:24','2014-06-26 14:31:26','User',NULL,'none','3057681c525147ccaa102fcdf8575c3a',0,NULL),(176,'broadleaf111','51e088113e130c9fa3ecabed362b0bc76c061089','Ken','Johnson',0,1,'2014-03-10 20:22:02','en',NULL,'2014-03-10 20:21:18','2014-03-10 20:22:02','User',NULL,'all','51237ea36ed2eb3c0dc998e9758a263a',0,NULL),(177,'oadam','bca1122572f7dcd2f5808b8cf0fc5616cfa078b1','Ovidiu','Adam',0,1,'2015-07-30 01:01:11','en',NULL,'2014-03-12 15:34:59','2015-07-30 01:01:11','User',NULL,'all','cbc0fd39374ee6146c47f94ca4cd25f1',0,NULL),(178,'kaltental','4d7806dff041050d5e3e455872ba497c89e680fd','Martin','Kaltental',0,1,'2014-03-28 14:01:16','en',NULL,'2014-03-19 20:31:15','2014-03-28 14:01:16','User',NULL,'all','f799ec74da43e17253cfb46f4ec9a6f0',0,NULL),(181,'oknight','224118bca19ad0650307e14d562aabf0ee08b975','Tony','Knight',0,1,'2016-05-22 15:04:43','zh',NULL,'2014-04-03 18:14:21','2016-05-22 15:04:43','User',NULL,'all','f424aff1718307c8a8c771a0510d93d2',0,NULL),(182,'alejandrosantana','a9ec45274f0c3da5e99870a33eba3c95b95238f7','Alejandro','Santana',0,1,'2015-11-11 18:48:14','es',NULL,'2014-04-10 09:26:59','2015-11-11 18:50:45','User',NULL,'all','b0b7862c67347d99da04c13156cf5b99',0,NULL),(187,'bradleyhops','405f454cd08180219fe550179848875a380736d7','bradley','hops',0,1,'2015-06-10 06:31:57','en',NULL,'2014-04-17 15:08:39','2015-06-10 06:31:57','User',NULL,'all','3b5778bea9a8c3b0a13292b2ad9fb75c',0,NULL),(188,'bgthnev','5b7e7d6d31c23952505c3a81a0168fa36307de1a','Jakub','Strych',0,1,'2014-05-21 15:31:59','cs',NULL,'2014-04-29 17:06:15','2014-05-21 15:31:59','User',NULL,'all','cc0ffd248f49e46ae7bb4d5bd3cc5350',0,NULL),(189,'r.szefner','537705fa56ac91cb73cff65bdd4ea33851c63877','Robert','Szefner',0,1,'2014-05-13 07:07:15','pl',NULL,'2014-05-03 19:24:37','2014-05-13 07:07:15','User',NULL,'all','d0328173c70556ab4a579cca2e45dc2b',0,NULL),(190,'samboy','130fa60e2aec38ef228b0477f44281e23c0a1e06','sam','sun',0,1,'2014-06-07 16:59:11','de',NULL,'2014-05-06 23:27:16','2014-06-07 16:59:11','User',NULL,'all','fad3381781a566fa27f8b1c49b991138',0,NULL),(191,'pilarsd','00a4ca19bdf41d5ad2189718e0c394de5824a02b','Pilar','Salvador',0,1,'2014-07-09 10:05:32','es',NULL,'2014-05-20 18:54:18','2014-07-09 10:05:32','User',NULL,'all','393aba1f7b26f1801020ed5026c70a98',0,NULL),(193,'arsham','3b16037af7a8b823ceecba3a92f7b1388ee2d7c1','Arsham','Atonyan',0,1,'2014-07-02 09:23:55','en',NULL,'2014-05-26 06:35:52','2014-07-02 09:23:55','User',NULL,'all','4af3f48203e563b94d9bdf8409786969',0,NULL),(194,'numo68','1d865b582c2c4c0e4c2464f6e6767585cfe637a4','Stanislav','Meduna',0,1,'2017-09-04 21:32:10','en',NULL,'2014-05-27 15:54:43','2017-09-04 21:32:10','User',NULL,'all','a28d2f0151a425cdb3a4b4a3c09e9ca4',0,NULL),(196,'alr1976','71ee351dc4b0c923cf1bec050834f4ac6bcc3c11','Alessandro','La Ragione',0,1,'2014-07-04 10:08:36','en',NULL,'2014-06-06 14:52:05','2014-07-04 10:08:36','User',NULL,'all','eaac5aa03d8b17499418cd9168b3c55f',0,NULL),(197,'Mounir','45c93819abf0f505e94803e00464d71ca4a562da','Mounir','MOHAMED',0,1,'2014-06-06 15:47:48','fr',NULL,'2014-06-06 15:46:24','2014-06-06 15:47:48','User',NULL,'all','a2227c2ece2810ac520738eb05b9aaf7',0,NULL),(198,'rmstein','db0a8a58be50fb3b9e72dc6aa0925797d3f6ae3c','Rod','Stein',0,1,'2014-06-11 23:11:39','en',NULL,'2014-06-11 23:00:54','2014-06-11 23:11:39','User',NULL,'all','ec787d24615186d170790a7de74acf09',0,NULL),(199,'bklimko@psi.pl','087c327f18ebcae83b150ebacb7ffbc2af09f2aa','Bartosz','Klimko',0,1,'2014-07-02 12:30:31','en',NULL,'2014-07-02 12:29:53','2014-07-02 12:30:31','User',NULL,'all','c68b8a20702e5f281818358ba616dda0',0,NULL),(200,'nadya','2da20e76c5a137260de7cd1b8265435ed3a3890d','dahir','nadya',0,1,NULL,'en',NULL,'2014-07-07 07:53:29','2014-07-07 07:58:59','User',NULL,'all','09d7ea5f501bf3a6222045c1997169eb',0,NULL),(202,'lvoisin','28e6cde96916e8a9469f1a5d41c35f9c612a66eb','Laurent','Voisin',0,1,'2014-07-11 15:16:37','en',NULL,'2014-07-11 13:39:16','2014-07-11 15:16:37','User',NULL,'all','6c66d17f5f75dc9d0141bc114d736929',0,NULL),(203,'zhaomuhua','79fa22523941500902985150e2dcb34bbfdef26a','muhua','zhao',0,1,'2014-07-23 08:09:56','zh',NULL,'2014-07-22 08:30:12','2014-07-23 08:09:56','User',NULL,'all','0ac93fd13467f7edcbadf50f8e5525a9',0,NULL),(204,'misari','6350518f198102938ae5f402a1510954bc6a67a5','minwoo','lee',0,1,'2014-07-23 02:44:27','ko',NULL,'2014-07-23 02:44:01','2014-07-23 02:44:27','User',NULL,'all','d3dedfbf7b3eaba2121760e7e8fdef8b',0,NULL),(205,'msliva','f6f0349861a9db6ed8295119ac8957e8b84c5822','Miroslav','Sliva',0,1,'2014-07-31 14:30:21','en',NULL,'2014-07-31 14:27:58','2014-07-31 14:30:21','User',NULL,'all','5a04403ab58605ca48dcc7da4fb809bd',0,NULL),(207,'xcvb','873d20ee1cf7dd4f40257fdff5a5fb01fe396367','Peter','Lustig',0,1,'2014-08-19 14:56:33','en',NULL,'2014-08-19 14:54:43','2014-08-19 14:56:33','User',NULL,'all','9b191d9d3168bda229c4f456f8258eae',0,NULL),(208,'emmanuel_dumas','a8e25f26b6a93f97e02dc5f7ac1e03c8c17b6456','Emmanuel','DUMAS',0,1,'2014-08-29 08:04:33','fr',NULL,'2014-08-28 17:14:27','2014-08-29 08:04:33','User',NULL,'all','b44e2dd5d595e824bab7d2a2f5c117c6',0,NULL),(209,'servantprinz','e2147c6b1a2fd41872e13933c06ae8828ad3a4c2','servant','prinz',0,1,'2014-09-02 14:09:13','en',NULL,'2014-09-02 14:08:43','2014-09-02 14:09:13','User',NULL,'all','4b1cf183859dfe4bc9b39da6096a0c8e',0,NULL),(210,'gunia@smart-hmi.de','822e323ca6be5a5ec2879396c9a2e74cb0ebd1f1','Egbert','Gunia',0,1,NULL,'en',NULL,'2014-09-15 17:32:02','2021-06-30 20:33:20','User',NULL,'all','2daf70c56caa46cc4106109754befebe',0,NULL),(211,'abelwang1979','90557799ee3475296b6abfebb6a674f2336a276e','Abel','Wang',0,1,'2014-09-22 04:15:50','en',NULL,'2014-09-22 04:14:49','2014-09-22 04:15:50','User',NULL,'all','b061caf47bda219e066147b8220b4d09',0,NULL),(212,'bb.andersen@gmail.com','578b2e1bf95ce7fad4489d7af85869ad180cc012','bb','andersen',0,1,'2014-10-23 00:36:12','en',NULL,'2014-10-23 00:35:15','2014-10-23 00:36:12','User',NULL,'all','9b5f96f48c158fc208334e789889d3b3',0,NULL),(213,'icemmnoone','16befd5e3ed0d5ccfdca3646c6c821d2cad7d1aa','sun','song',0,1,NULL,'zh',NULL,'2014-12-03 05:41:25','2021-06-30 20:33:19','User',NULL,'all','3b23b13548a7dff157b2001a349746ea',0,NULL),(214,'icemmnoone123','83eedcf4d71bce7305953f693ec22e1a687b5806','sun','song',0,1,'2014-12-05 11:02:50','en',NULL,'2014-12-03 05:51:33','2014-12-05 11:02:50','User',NULL,'all','08d81554d0e7c127e6e1be85c1997cc4',0,NULL),(215,'vvoisin','876d2bdef36637496f83663847ba796948a7dc0b','vincent','voisin',0,1,'2014-12-12 09:17:51','en',NULL,'2014-12-12 09:16:37','2014-12-12 09:17:51','User',NULL,'all','b2f5ba0a2d890f118a8d97879b70f0cd',0,NULL),(216,'tsutomu.furuya@jt.com','4688643f247238db4b0d9ad9df049188b7f869a4','Tsutomu','Furuya',0,1,'2015-01-23 01:25:39','ja',NULL,'2015-01-21 06:00:38','2015-01-23 01:25:39','User',NULL,'all','b6fe6b44cd2fd6cc2bc4362da3b2351e',0,NULL),(217,'fareac','679d99af49eada625b1a3d37b9ebce5961afc0b4','Gerhard','Wolff',0,1,'2015-02-23 12:42:31','de',NULL,'2015-01-21 09:53:09','2015-02-23 12:42:31','User',NULL,'all','6522a3066e680ec2afb3b3592d19429a',0,NULL),(218,'kongu01','1acd08247920fb91178ec126c257cc157ff19544','명규','장',0,1,'2015-01-22 10:55:27','ko',NULL,'2015-01-22 07:39:50','2015-01-22 10:55:27','User',NULL,'all','a68d928615c3c68465cba70ab84b45eb',0,NULL),(219,'alarsen','0fa353e2f35dafd0fc4cc5685142618c1e2d79de','Anders','Larsen',0,1,'2018-01-24 23:01:16','en',NULL,'2015-02-09 11:04:31','2018-01-24 23:02:19','User',NULL,'only_my_events','2a7a1c827b5f53a2ec42b4b5fb635993',0,NULL),(220,'wenhsingyu','592bcc6404d22fc5296a039e899ba349c88c57c5','Vincent','Yu',0,1,'2015-02-09 12:06:58','en',NULL,'2015-02-09 11:49:00','2015-02-09 12:06:58','User',NULL,'all','930541c5fafa144405d93a1551d0a1d7',0,NULL),(222,'pboulmier@labocom.com','f8f3a29a703e7bb7b1f19e7c2297ab8247e144ec','Pierre','Boulmier',0,1,'2016-09-22 10:03:43','fr',NULL,'2015-03-23 14:20:04','2016-09-22 10:03:43','User',NULL,'all','59da5dc1abfb50c100b0b021a1c19835',0,NULL),(223,'mt','8def0e58b9446fbd831980e6d2ca6b01031a8197','frederic','monge',0,1,'2021-04-23 14:41:26','fr',NULL,'2015-03-24 16:53:08','2021-04-22 20:13:26','User',NULL,'all','a9cfc92ee4576420797b635b04aa2b2d',0,'2021-04-22 20:13:26'),(224,'carlo','7072305799e98637a5013bd7569df063cf1a960b','Carlo','Diana',0,1,'2015-03-28 16:55:43','it',NULL,'2015-03-28 10:14:03','2015-03-28 16:55:43','User',NULL,'all','96cd2902306fe43d33b465a75055fc9e',0,NULL),(225,'sergioct85','92f218b548f24e558e20e05f386a5380e706bd31','Sergio','Marchese',0,1,'2015-04-07 12:05:03','it',NULL,'2015-03-28 10:17:20','2015-04-07 12:05:03','User',NULL,'all','5ded2befa5abfa4a67e22f8da3d5407f',0,NULL),(226,'adrienbourdet','59975b8f17ceec7a996f9028ea33fe2d82688bcd','Adrien','Bourdet',0,1,'2016-09-08 11:07:44','fr',NULL,'2015-03-31 15:54:56','2016-09-08 11:07:44','User',NULL,'all','b172b4e64d38d176d35a17a1eba2d5ce',0,NULL),(227,'hypnosis01','f93f3f229f4afd4ed4c8e86e1900a52b3abc3d66','wangdeng','wang',0,1,'2015-04-05 14:43:22','en',NULL,'2015-04-05 14:42:14','2015-04-05 14:43:22','User',NULL,'all','72658e02ee6200bb7478342daa92cd68',0,NULL),(228,'smu','9ae25e4ff31df9ed17866fcb3ff18deecc0a5cc0','Sébastien','Mulas',0,1,'2018-03-05 18:37:14','fr',NULL,'2015-04-07 13:45:38','2018-03-05 18:37:14','User',NULL,'all','52114ad04f758c40f3c33c194e3f395d',0,NULL),(229,'raymond.borscia','e628bdf19d73043d251212186b0611e67a5909ef','Raymond','BORSCIA',0,1,'2017-03-24 09:11:04','fr',NULL,'2015-04-08 10:43:20','2017-03-24 09:11:04','User',NULL,'all','5e3ae5e26083a2143d7520051abd3789',0,NULL),(230,'sebastien.salameh@ibitek.fr','7788c7c456bfa5784eb3d1fb5c4a571d6e933c9b','Sébastien','SALAMEH',0,1,'2015-12-08 18:01:52','fr',NULL,'2015-04-10 18:02:33','2015-12-08 18:01:52','User',NULL,'all','4cb042fb93ffc1f68f1b9897e02d0b83',0,NULL),(231,'jacquemet_julien','ff32fd86b78fa936c35c9e2269e80c4632d71992','Julien','Jacquemet',0,1,'2018-11-12 18:03:42','fr',NULL,'2015-04-14 09:12:46','2018-11-12 18:03:42','User',NULL,'all','bc5531647009267fd4e3663d12ed23ee',0,NULL),(233,'zy98143','b64edfb334a89b79e11c1f80a21834d5e0a8e6e8','岩','张',0,1,'2015-04-30 11:27:47','zh',NULL,'2015-04-30 11:26:22','2015-04-30 11:27:47','User',NULL,'all','b4dee6208db5ef24632db03862cc4b96',0,NULL),(234,'hrodrigues','be91a0217e0eab62191d8c89f81218626e25378b','Hugo','Rodrigues',0,1,'2016-01-25 16:17:42','fr',NULL,'2015-05-13 09:22:52','2016-01-25 16:17:42','User',NULL,'all','907c6ab6e2db1cf8548dc392fd8bb9a5',0,NULL),(235,'FranckB','f2fabcc4b1b1e595eaf833213170e0cfea9fbc40','Franck','BOUZON',0,1,'2015-06-29 09:44:08','fr',NULL,'2015-06-02 10:26:29','2015-06-29 09:44:08','User',NULL,'all','a79007bef9323edc60fc83dfe7665d53',0,NULL),(238,'CDM-I40','17624d587174826490d7002bb9b7d963b1155ad5','Wolfgang','Steigerwald',0,1,'2018-07-31 11:47:05','de',NULL,'2015-06-18 14:05:02','2018-07-31 11:47:05','User',NULL,'all','21539931593a7797616bdafc6cebe53f',0,NULL),(239,'NavdeepAhuja','1df28aa19f9b47ce363419b4eaab2b9de7f2e3c7','Navdeep','Ahuja',0,1,'2015-08-25 10:09:39','en',NULL,'2015-08-19 15:04:27','2015-08-25 10:09:39','User',NULL,'all','cd4bbf98b444dab4a4bdee7b4ddfcf17',0,NULL),(240,'TK','928f923d707cc5d4273f3631623e91477ca882b8','TK','BK',0,1,'2015-09-01 10:08:25','en',NULL,'2015-09-01 10:04:33','2015-09-01 10:08:25','User',NULL,'all','1db99b358e00598d4b34d8e1a7729507',0,NULL),(241,'bowlesdr','5fc193e89cc596207707892347fcba084dba6ac6','Dave','Bowles',0,1,'2021-02-10 15:55:46','en',NULL,'2015-09-25 16:55:30','2021-02-10 15:56:09','User',NULL,'none','6b5c699916bb32c291ba3c3969df614c',0,NULL),(242,'evesey','1e70032f6d46d76b73151f2e397f4b0bf25d7c6d','zhengxi','chen',0,1,'2015-10-14 04:44:26','en',NULL,'2015-10-14 04:42:30','2015-10-14 04:44:26','User',NULL,'all','826aef4a10e008cec3077eed192dacb6',0,NULL),(243,'ascentintellimation','89d79898158b6082e101ee07e4efff04ef2be9b8','Ascent Intellimation','AIPL',0,1,'2017-09-25 11:04:39','en',NULL,'2015-10-27 10:55:16','2017-09-25 11:04:39','User',NULL,'all','df649875fd19e35aa86af3d82cf802af',0,NULL),(244,'arinc-aim','ce6f97f1c19b052ae66f333b4c6f27b2227744cb','Craig','Tinnes',0,1,'2015-11-09 16:14:45','en',NULL,'2015-10-27 16:48:38','2015-11-09 16:14:45','User',NULL,'all','64ba7cbe4c2162a2a3acc3e816636906',0,NULL),(245,'TrapilSII','2b0a2a3b3b0b314faa302f5bcfe08d56ea1e8da0','Liotard','Loïc',0,1,'2015-10-29 21:00:10','fr',NULL,'2015-10-29 16:09:21','2015-10-29 21:00:10','User',NULL,'all','c1dc3a93228bfa4c1c4c2597c7a977da',0,NULL),(246,'valentin.saforcada','4c2f7335a60436b9d8c815e4a477020f84d38853','Valentin','SAFORCADA',0,1,'2017-12-04 09:37:28','fr',NULL,'2015-11-13 16:56:14','2017-12-04 09:37:28','User',NULL,'all','4ad97b5b6a1ffa18f765991906126c49',0,NULL),(247,'prbarros@dee.ufcg.edu.br','2b9b8f7f85b750663d97fe3886f8873a24c928e0','Pericles','Rezende Barros',0,1,'2017-08-24 15:56:27','en',NULL,'2015-11-26 18:48:07','2017-08-24 15:56:27','User',NULL,'all','75f60c160de5a12e290aa89f55ce28b3',0,NULL),(248,'imap','8e6009ba0bd0d2aa493e3b959815660036d05efe','Anthony','Le Roux',0,1,'2016-02-18 07:48:22','fr',NULL,'2015-11-27 16:51:36','2016-02-18 07:48:22','User',NULL,'all','645dd901b73cbf200002cd97e9d5bde6',0,NULL),(249,'luozhe','8d92a4f07ac5c4eeb0be103aeaa4614827b9e1a0','Zhe','Luo',0,1,'2016-01-02 06:01:56','zh',NULL,'2015-12-23 06:04:37','2016-01-02 06:01:56','User',NULL,'all','e7f8f911e804097ac420badb564a0b53',0,NULL),(250,'sieb-meyer','10185b09cba4d10cd8d672b87629fbf07e874b0f','Kai','Matzke',0,1,'2018-02-01 08:03:01','de',NULL,'2016-01-04 10:58:14','2018-02-01 08:03:01','User',NULL,'only_my_events','95ca95aa1214439c687059e5f65fa1ca',0,NULL),(251,'olaf.berens@gmx.de','680a589b9b23f7f94d97570fa305a59ab65925d8','Olaf','Berens',0,1,'2016-01-05 15:44:44','en',NULL,'2016-01-05 15:43:35','2016-01-05 15:44:44','User',NULL,'all','aeda8090b7e3a220d12bf502a7e63861',0,NULL),(252,'kamjoo.bayat@pbscontrol.com','05e59d0759c07a9ca5c561a79260aa9122e5a44f','kamjoo','bayat',0,1,'2017-04-05 12:09:16','en',NULL,'2016-01-08 13:19:13','2017-04-05 12:09:16','User',NULL,'all','28bf2944490563a56dab735bf7edba9d',0,NULL),(253,'bcocquelin','20e5c3591fd870f314107d58e3428fdf97b7570d','Benjamin','Cocquelin',0,1,'2016-04-13 16:47:27','fr',NULL,'2016-01-12 14:31:41','2016-04-13 16:47:39','User',NULL,'none','756b341b91a1d580c34ac57f214da297',0,NULL),(254,'a.gutrin','dd2283d028c2af5c1c2ae2602862be43b1cc149c','Anthony','GUTRIN',0,1,'2019-07-22 11:29:06','fr',NULL,'2016-01-12 14:51:16','2019-07-22 11:29:06','User',NULL,'all','630630d966f6f91b342d395e9a37d27a',0,NULL),(255,'ouvradou','c3cf1bc8a09076f86ebb3db9b08ea6975e593f43','francois','ouvradou',0,1,NULL,'fr',NULL,'2016-01-15 11:44:47','2016-04-14 23:02:40','User',NULL,'all','14a0f7c05b6f35f00f875c9ba8bfd863',0,NULL),(256,'morty','0ed5c808d3bc2a33254cfa7e0e74bba2233bc040','Moritz','Strübe',0,1,'2016-01-19 14:49:38','en',NULL,'2016-01-19 14:47:34','2016-01-19 14:49:38','User',NULL,'all','2dbf644faed80748bb3edaeef55b5d3e',0,NULL),(257,'pedro_nf','1a676f07bafa28f0229ba39d318829bc759dacd0','Pedro','Ferreira',0,1,'2018-06-04 17:09:04','en',NULL,'2016-01-26 13:55:07','2018-06-04 17:09:04','User',NULL,'all','011b778381d8c896007be18e5d49eb1b',0,NULL),(258,'josue.belliot@snef.fr','9ad0db1b85eab18e261f97bc4faae26324332b96','Josué','BELLIOT',0,1,'2016-02-08 09:13:17','fr',NULL,'2016-01-28 14:54:24','2016-02-08 09:13:17','User',NULL,'all','a3ad02a9777a26f1964cb12f0d7d925b',0,NULL),(259,'j.rivet','e3e336f8d1f0a9c878e23572ed87c904e0a604f9','Julien','Rivet',0,1,'2021-10-08 10:09:35','fr',NULL,'2016-02-15 10:15:51','2020-02-20 16:21:38','User',NULL,'all','7d9cc6282a5221635df704c8bf02de3b',0,NULL),(261,'arjousset','c19381d2d3936311e9997f95ddff8cc49b369f09','Arnaud','JOUSSET',0,1,'2016-03-11 10:32:41','fr',NULL,'2016-03-11 10:31:56','2016-03-11 10:32:41','User',NULL,'all','ceee2d499a5d26ad2d4190da5b136c72',0,NULL),(262,'TEobrecht','ee6bcfd8a5c176f048c5d021885bbfe286add8bf','Christoph','Obrecht',0,1,'2016-05-11 10:05:31','de',NULL,'2016-05-11 10:05:00','2016-05-11 10:05:31','User',NULL,'all','2bbd93a34572e9c0e2e848e8519b3542',0,NULL),(263,'dotti','0a289a1590067baf27dd5981110302338f009392','Klaus','D.',0,1,'2016-05-18 11:39:58','de',NULL,'2016-05-18 11:38:23','2016-05-18 11:39:58','User',NULL,'all','81147973845e31b69fe4fd4a35aee0d3',0,NULL),(264,'codersmurf','e53f221713b01f2fc33c602e728589071531d64e','Jake','Devore',0,1,'2016-05-18 18:42:21','en',NULL,'2016-05-18 18:41:18','2016-05-18 18:42:21','User',NULL,'all','497f4b9ae76284e5cab2fb6864595189',0,NULL),(265,'Serac','abaadc62b0eb5f614edd8a3e2c6e659a2869d275','Christophe','Le Priol',0,1,'2016-05-20 11:31:49','fr',NULL,'2016-05-20 11:18:37','2016-05-20 11:31:49','User',NULL,'all','53cf7b7cd06dae3812b0b14cac1bb157',0,NULL),(266,'jean.boulesteix','ec5098114751d16dd94a4b7786bea2ccba7bbb86','Jean','BOULESTEIX',0,1,'2016-05-27 16:31:05','fr',NULL,'2016-05-27 16:30:39','2016-05-27 16:31:05','User',NULL,'all','f5093021da1536827cdc62247f3876d8',0,NULL),(267,'dnobre','d136840e4ff41ba1e84c46096599e0903889dd9c','Denis','Nobre',0,1,'2016-06-06 18:45:43','pt',NULL,'2016-06-06 18:44:36','2016-06-06 18:45:43','User',NULL,'all','292bce3ed8936d970a71396a7d5aa813',0,NULL),(268,'ethali','785bd8051d0c3bec6850abc8397197fdc6e17dd5','Maxime','Rault',0,1,'2016-11-04 09:54:37','fr',NULL,'2016-07-01 11:20:26','2016-11-04 09:54:37','User',NULL,'all','4af724c5c07cb5e4f1b49e7f34b2eca5',0,NULL),(269,'ymorice','22e96b4a3c818f7c04be6c99b2724aca13a60cbf','Yvonnick','MORICE',0,1,'2018-12-26 16:00:53','fr',NULL,'2016-07-01 11:43:40','2018-12-26 16:00:53','User',NULL,'all','2f8b42126b5f34401260c98ea9ed5aa7',0,NULL),(270,'plegoff@cooperl.com','a01954ecfe7b017da608766fe6c4a61bb014616c','Patrick','LE GOFF',0,1,'2017-09-29 10:57:44','fr',NULL,'2016-07-01 11:46:39','2017-09-29 10:57:44','User',NULL,'all','f0e5c49ecc85dd0e831bf909762637e5',0,NULL),(271,'cartond','8ce33f6be920bb4b027891bc83bb0ee98d442018','David','CARTON',0,1,'2016-10-17 15:05:37','fr',NULL,'2016-07-01 11:46:44','2016-10-17 15:05:37','User',NULL,'all','e8a85e802f09bdecb0b3c4ea2c790dd3',0,NULL),(272,'hdmckee','20431302b73c2f0c7058908f3abe623a7bd8167e','Harold','McKee',0,1,'2016-07-26 17:13:21','en',NULL,'2016-07-01 20:22:25','2016-07-26 17:13:21','User',NULL,'all','0ea3909297b71b4213074278f6bf11b5',0,NULL),(273,'cnoir','fe7d1304f68e92ebcc4a5b7370829af09ec6d94c','Christophe','Noir',0,1,'2016-08-04 09:43:39','fr',NULL,'2016-07-08 14:16:07','2016-08-04 09:43:39','User',NULL,'all','a418c3a1a69ffa9631318de6e0399324',0,NULL),(274,'polarislee','b213f13af01f04f702073f01b3bb10e121a1d356','Li','Xing',0,1,'2016-07-14 17:00:09','en',NULL,'2016-07-14 16:58:59','2016-07-14 17:00:09','User',NULL,'all','2fe398b921e57204aa3faa4b5809799f',0,NULL),(275,'attakay','fa6e5449493275d62bb99ec3a97f8fc478426d02','Kofi','Nsiah',0,1,'2016-07-19 08:02:45','en',NULL,'2016-07-19 08:01:11','2016-07-19 08:02:45','User',NULL,'all','7de18f31e6c0953e83c542dd68ea0647',0,NULL),(277,'josiasyoumbi','123a2d37a29067f349433bd95f529191b0ba6c93','Josias','Youmbi',0,1,'2016-08-03 12:25:48','de',NULL,'2016-07-28 14:04:49','2016-08-03 12:25:48','User',NULL,'all','9e7366486895581cb96734d5fd62e440',0,NULL),(278,'mheitland','e506e70f10eb73aea227db6357f9468d1e085d7a','michael','heitland',0,1,'2016-09-19 11:41:01','de',NULL,'2016-09-19 11:39:50','2016-09-19 11:41:01','User',NULL,'all','47e057aa0d54e4317d075a6d2eb3332c',0,NULL),(280,'gabbe','9f488948722567882cfd58e7645fe3010112ff5d','Gábor','Varga',0,1,'2016-11-02 07:37:08','hu',NULL,'2016-10-19 16:44:41','2016-11-02 07:37:08','User',NULL,'all','f72892c6faed502a74ffc1fa388fe69e',0,NULL),(281,'marel','cca4fdd4ece93c1be784287d6d039d696db05e96','Martin','Keller',0,1,'2017-04-05 11:50:27','en',NULL,'2016-10-24 14:27:02','2017-04-05 11:50:27','User',NULL,'all','0d075f1b342829e0d52dead5c9c9b8da',0,NULL),(282,'roger.santos','a5f6b01ca0f44ca546ecfe93bc4fa26807d7d36f','Roger','Santos',0,1,'2016-10-25 16:08:47','en',NULL,'2016-10-24 22:20:48','2016-10-25 16:08:47','User',NULL,'all','fa7635340c30aed3d9da1c0db56ee5b1',0,NULL),(283,'andre.korbes','02c6cf00504486eb4671adcc20493610098c9a00','André','Korbes',0,1,'2017-08-29 15:52:04','en',NULL,'2016-10-24 22:43:15','2017-08-29 15:52:24','User',NULL,'only_my_events','d600df8537d6ed877c3bff9c2f8941f7',0,NULL),(284,'JohnDoe','d9a99b3d509db7df2ba335571cc3832a19d9163a','John','Doe',0,1,'2016-10-25 09:58:09','en',NULL,'2016-10-25 09:57:25','2016-10-25 09:58:09','User',NULL,'all','572e769a8e6a5ac7e8b481fbdaa29ca1',0,NULL),(285,'PhileasC','4827d5ff9caa7c603c241b43ab07ecd483b7943b','Phileas','Condemine',0,1,'2021-12-20 13:58:19','en',NULL,'2016-10-30 16:21:26','2021-12-20 13:57:56','User',NULL,'all','ffed3812696854727c20d3522289cc46',0,'2021-12-20 13:57:56'),(286,'hraba','e763f77f34e9e9ca1d6995b11cd0333361e59b2a','Helmut','Raba',0,1,'2022-02-07 20:32:55','de',NULL,'2016-11-06 22:53:41','2020-11-19 08:51:19','User',NULL,'all','dd15d945518893681a6ea572810e1ff0',0,NULL),(287,'faune','6830960a908319d8e1a2cbf53805e3c82404a843','Fabien','Aune',0,1,'2017-06-14 10:17:44','fr',NULL,'2016-11-07 08:13:26','2017-06-14 10:17:44','User',NULL,'all','fc85c14d628bdbfccebd2c1adad336f7',0,NULL),(288,'andy','adb28b13db604313ce898089e2e88dac83825b1d','Андрей','Баев',0,1,'2016-11-15 13:32:16','ru',NULL,'2016-11-15 13:29:39','2016-11-15 13:32:16','User',NULL,'all','20209cd796755f70e7929b0647ec6783',0,NULL),(289,'esteban.marro','d9a0a13a5effdc34088b9edb93a1f9a8ecc8f2af','Esteban','Gonzalez',0,1,'2016-11-21 15:16:21','en',NULL,'2016-11-21 15:15:46','2016-11-21 15:16:21','User',NULL,'all','f46537b28d0c0ec7504c1e690466b00f',0,NULL),(291,'ajratr','a9ca7754fc6ae3257c27132eb53222bcbb02f5dd','Airat','Rakhmatullin',0,1,'2017-01-10 09:33:06','en',NULL,'2016-12-14 21:47:50','2017-01-10 09:33:06','User',NULL,'all','c8e37dd0a9d7f40491b8f0878baa9004',0,NULL),(292,'manoharkumar','6f76975e8d2d9277298b1bb19c97ef2bb69c2119','Mnaohar','Kumar',0,1,'2016-12-17 11:20:46','en',NULL,'2016-12-17 10:37:45','2016-12-17 11:20:46','User',NULL,'all','6cfb624e2a5b69773fd6de6f881c2347',0,NULL),(293,'savoyyang','a0c9005908b03d78106b105b68a781d186510b34','savoy','yang',0,1,'2016-12-28 07:43:52','zh',NULL,'2016-12-28 07:42:20','2016-12-28 07:43:52','User',NULL,'all','79b3af483a984fc4e53a13e893851d77',0,NULL),(294,'sslab','2c3cb6ad183988cbbbd62fb741bfaf43a9bda88e','SeungYeob','Oh',0,1,'2017-08-09 03:04:49','ko',NULL,'2016-12-30 02:18:07','2017-08-09 03:04:49','User',NULL,'all','9ae9a8954a70dafcad3c228dd5502694',0,NULL),(295,'jonasgutekunst','ec44b145635ee1e31765e3262e8bb2f1c19baa3d','Jonas','Gutekunst',0,1,'2017-02-08 10:39:31','de',NULL,'2017-01-16 14:02:03','2017-02-08 10:39:31','User',NULL,'all','949c5280aa151526dd045e6fa4c0433c',0,NULL),(296,'Chaveriat','63ede6370c707fc6df4f8f0a52f2e972fef75706','Régis','LIEVIN',0,1,'2017-07-19 07:50:05','fr',NULL,'2017-02-10 13:29:13','2017-07-19 07:50:05','User',NULL,'all','11b12c93b5bbefbab3580f1359f03878',0,NULL),(298,'fgh','c591710c7c122cb10bf93e40495c5f4a78afba3e','fabien','ghisalberti',0,1,'2017-02-17 11:27:49','en',NULL,'2017-02-17 11:27:15','2017-02-17 11:27:49','User',NULL,'all','75911422fb2f3cab29f73bcc6731bcc1',0,NULL),(299,'raizakash','806105ad63dc48d90e8ed0fdd30c3447bb70f946','akash','rai',0,1,'2017-03-16 11:34:32','en',NULL,'2017-03-16 11:34:04','2017-03-16 11:34:32','User',NULL,'all','2680bb2d082ec6d6b2cd2fb1672906aa',0,NULL),(300,'roeltresco','d640ff04b770baf4eae3928640f5560a1176c5de','Roel','Schroeven',0,1,'2017-03-21 15:27:33','nl',NULL,'2017-03-21 15:26:42','2017-03-21 15:27:33','User',NULL,'all','bc89c8a2db1d7140543b8fc522f81387',0,NULL),(301,'lhr317','e54753aacb804efd3b298e3ce5d1f617e34b476c','하림','이',0,1,NULL,'ko',NULL,'2017-04-03 10:27:55','2021-08-24 08:54:26','User',NULL,'all','7a7f804354b93816457e1fa94ec7ff6b',0,NULL),(302,'q1w2','c63e8afe1dca2ed5354bc52148af0fd74faf85cc','하림','이',0,1,'2017-04-03 11:06:55','ko',NULL,'2017-04-03 11:03:22','2017-04-03 11:06:55','User',NULL,'all','ef2718ec5d80f393920222f14a9a5fc5',0,NULL),(303,'dluppi','12ac63cc391f475adf3e90649bdc384ed83cf216','Damien','LUPPI',0,1,'2019-09-09 17:16:37','fr',NULL,'2017-04-05 13:50:01','2019-09-09 17:16:37','User',NULL,'all','433856a762e8d0876ca3af7b34e0c4d7',0,NULL),(304,'gboez','1e65c7d21a100d343daf3df24cee10627866ffc1','Ghislain','Boez',0,1,'2018-05-17 08:17:18','fr',NULL,'2017-04-05 13:50:43','2018-05-17 08:17:18','User',NULL,'all','1b9c933a85edb3f17af904311888570d',0,NULL),(306,'ExelsiusJulienSollier','6404d635671031babe72e23c4253307bb206e1f0','Julien','Sollier',0,1,'2018-09-20 11:22:24','fr',NULL,'2017-04-20 11:39:26','2018-09-20 11:22:24','User',NULL,'all','269380a4400c0565467422461e8fd466',0,NULL),(307,'SESA451158','f3f71c0cf199ce9a8641477e2f5d83c4e47af913','Samuel','Charrier',0,1,NULL,'en',NULL,'2017-04-20 16:56:29','2021-08-24 08:54:14','User',NULL,'all','25c4baf91613ab380a1e4c8dd8c9fbd1',0,NULL),(308,'wemx','492fbec2b2b6901f1e725aff4b8c61c04f6681c2','Jaewoo','Jang',0,1,'2018-10-06 16:27:10','ko',NULL,'2017-04-27 10:15:19','2018-10-06 16:27:10','User',NULL,'all','0f1ce3063df2bfd88e96259e3c2f04d4',0,NULL),(309,'mharnisc','6adcf9514e99092c5c5c2a57fbe40047b38bab6b','Michael','Harnischfeger',0,1,'2018-05-17 16:11:45','de',NULL,'2017-05-15 09:49:11','2018-05-17 16:11:45','User',NULL,'all','ca92164f312cc50f02ed62a367d7edca',0,NULL),(310,'h4med','3f7694b23511d3efd9d4e242bc472eee8dced3db','Hamed','Davandeh',0,1,'2017-05-21 09:00:25','en',NULL,'2017-05-21 08:59:59','2017-05-21 09:00:25','User',NULL,'all','dfee597840428039be091533657fb0d1',0,NULL),(312,'aA760101457','c5469126d2e588301ce750defba226fa7a146ef3','yapeng','geng',0,1,'2017-05-22 05:04:29','zh',NULL,'2017-05-22 05:01:57','2017-05-22 05:04:29','User',NULL,'all','00f17c22be01cb154f3f85ded7201dfe',0,NULL),(314,'kamel.amghar@adp.fr','c0abb87748e1f70c863bb4a10502ef53e8975cbc','Kamel','Amghar',0,1,'2018-10-02 17:46:13','fr',NULL,'2017-06-12 15:08:32','2018-10-02 17:46:13','User',NULL,'all','ebce20ef1b9c53f9ec5cb164b9044fea',0,NULL),(315,'durandl78','5e1617c3c51be145de5e0a57c96282df8c67122f','laurence','durand',0,1,'2019-04-01 14:41:17','fr',NULL,'2017-06-12 15:18:46','2019-04-01 14:41:17','User',NULL,'all','9db07e27a8db975ef332837a670588f1',0,NULL),(316,'twiart','54681b82ace3307fc8ffb5edff68530c7c650597','Thibaut','Wiart',0,3,'2018-01-16 17:42:13','fr',NULL,'2017-06-13 14:17:16','2018-01-16 20:41:21','User',NULL,'all','2aa6b3084960cbe212283d78fe8d939c',0,NULL),(317,'jf.desrousseaux','2fedb903812a382c82b4acfc3ae096e7013a7415','Jean-François','DESROUSSEAUX',0,1,'2017-12-01 13:04:37','fr',NULL,'2017-06-19 11:11:42','2017-12-01 13:04:37','User',NULL,'all','e6219e1e339f0723da18b4d6dbc627ef',0,NULL),(318,'luc.m.lefebvre@renault.com','ae2ac93c8b590d7471ed9e3d1fa4b6f3b80c7a4f','Luc','LEFEBVRe',0,1,'2018-10-17 14:59:38','fr',NULL,'2017-06-20 09:16:15','2018-10-17 14:59:38','User',NULL,'all','cf2210e558d46a89e55e65eb5dfc0356',0,NULL),(319,'a178299','effe77f857544401f48fb67f04d2da8aa706ea6a','Bernard','BRICE',0,1,'2017-11-23 09:40:17','fr',NULL,'2017-06-20 09:18:25','2017-11-23 09:40:17','User',NULL,'all','52bddf6d4f6375ac5b76adb74c21b446',0,NULL),(320,'DMARIE','be4a31c98447b43a858a543a4511d99209281ef9','MARIE','Dominique',0,1,'2017-06-20 09:29:38','fr',NULL,'2017-06-20 09:24:37','2017-06-20 09:29:38','User',NULL,'all','a4573956916ea1f25aa4ebd8e7380997',0,NULL),(321,'trauden','c3ee1605ab3b67696f70e417df464b89d0f15b55','zuga','Nguyen',0,1,'2017-07-05 05:15:55','en',NULL,'2017-07-04 12:11:33','2017-07-05 05:15:55','User',NULL,'all','c39cea1e6b607427cb793dd1391939d1',0,NULL),(322,'TLaloix','2f1f46bb96f84d17457e4ed7c14a3e87680374ee','Thomas','Laloix',0,1,'2017-07-05 09:12:53','en',NULL,'2017-07-05 08:58:52','2017-07-05 09:12:53','User',NULL,'all','13b86e3f728f3bb6f57c085ef1d21771',0,NULL),(323,'TDaneau','2548aef11569e8e69858cca3f01b83ed50c6038b','Thierry','DANEAU',0,1,'2017-08-08 15:04:01','en',NULL,'2017-07-10 15:13:12','2017-08-08 15:04:01','User',NULL,'all','dd717db9b4a964c5256355905f5c1f4c',0,NULL),(324,'djibril.ndiaye','1cb63d582cc5f8b00c45a9da924f2589cbca18a3','Djibril','Ndiaye',0,1,'2019-02-23 03:43:15','fr',NULL,'2017-07-10 15:14:44','2019-02-23 03:43:15','User',NULL,'all','241fc4691e061173af6386686a98d1c0',0,NULL),(325,'kaggroups','3d12de6140978734896122a58d49194092660210','Behzad','Ebrahimi',0,1,'2021-11-26 22:55:54','en',NULL,'2017-08-15 13:05:18','2019-12-19 15:35:27','User',NULL,'all','3154d68a4d7a29d06dd3930dfac53f1d',0,NULL),(326,'peter.zhang','6b34aaef6a8a4c6bc575a3c2bda221a8c0e50cf7','Peter','Zhang',0,1,NULL,'en',NULL,'2017-09-09 18:08:33','2017-09-09 18:27:03','User',NULL,'all','f9ff2735995f7ce6b854ce0330df3c46',0,NULL),(328,'nferreira','cfa602e8c796507b0436fa4a52c05bb61f68185a','Norbert','Ferreira',0,1,'2022-10-07 09:52:28','en-GB',NULL,'2017-10-02 12:30:34','2021-10-21 13:57:16','User',NULL,'all','2e4a64a652c3847320dc551e1dd90c0f',0,NULL),(329,'fernand.alcatrao','6849a037b02ee180a86c05f4e4257a6718197755','Fernand','Alcatrao',0,3,'2018-01-16 16:04:57','fr',NULL,'2017-10-13 17:16:59','2018-01-16 20:41:19','User',NULL,'all','94c977097f5419871d2c4334ab038b54',0,NULL),(331,'m.canet','2956d4fd6a9cc4a5a96814aeed2b0a3d2338e2e2','Margaux','Canet',0,1,'2019-03-22 13:57:04','fr',NULL,'2017-10-25 11:41:19','2019-03-22 13:57:04','User',NULL,'all','7eafb910cb3fa3fdbb0ee571889f1ad2',0,NULL),(332,'vincenthlj','dfb00822bb1725806a35e4bd616981e4e4e38e34','zhe','liang',0,1,'2017-11-01 02:36:55','zh',NULL,'2017-11-01 02:36:09','2017-11-01 02:36:55','User',NULL,'all','b9589fd4efd81e880973ec7c01780b44',0,NULL),(333,'sdplex-jason','71d6bcc4a7a8a6abd362095c08c146aaf63e894f','Jason','Noh',0,1,'2019-11-19 03:14:00','en',NULL,'2017-11-23 22:41:59','2019-11-19 03:14:00','User',NULL,'only_my_events','5c23fc192842b0fe4982d58384155487',0,NULL),(334,'sdplex-sjyun','d85feb552ee9ccee81ec754527c4ded49c41876b','Sangjin','Yun',0,1,'2018-02-02 10:01:44','en',NULL,'2017-11-23 23:13:39','2018-02-02 10:01:44','User',NULL,'all','4b1447b5c484b97524e48597d8e01764',0,NULL),(335,'sdplex-DavidKwon','40f82e23517c4c85580ab736f28d0c7b30cc6d8b','David','Kwon',0,1,'2018-03-12 01:13:54','ko',NULL,'2017-11-23 23:52:41','2018-03-12 01:13:54','User',NULL,'all','dae0815cb143072af3207f3f71de4bf6',0,NULL),(336,'sdplex-kcjeon','2720abe2bd2f859b803616a5dde1158887eb7f92','kyu cheol','jeon',0,1,'2018-03-13 01:52:02','ko',NULL,'2017-11-24 01:09:13','2018-03-13 01:52:02','User',NULL,'all','cbbe6521c47564b98983fe980c04e8b3',0,NULL),(337,'siriuszip','57d667b05d8e240faf5677d8b3b8dd18ca3245c2','윤배','김',0,1,'2017-12-12 06:23:52','ko',NULL,'2017-12-11 03:24:56','2017-12-12 06:23:52','User',NULL,'all','1b52981d68f211666092498612ad3611',0,NULL),(338,'DamienPavula','2aba909ecb8f051aec3a5d339d35d5e8bbcaa87b','Damien','PAVULA',0,1,'2017-12-12 15:43:15','fr',NULL,'2017-12-12 15:42:12','2017-12-12 15:43:15','User',NULL,'all','a34b7497f5208ce14d01a50691718ecf',0,NULL),(339,'ltabare','a34f3cabcc7b9bf7472cb8209472c395c2612efb','laurent','tabare',0,1,'2017-12-14 13:36:48','fr',NULL,'2017-12-12 15:42:35','2017-12-14 13:36:48','User',NULL,'all','60256cfd1fda188c4525d9eaf9fc7b7b',0,NULL),(340,'CharlesMillet','8ffb197b9f5bec36d8538ab3ae79a171deae52ed','Charles','Millet',0,1,'2017-12-14 13:41:49','en',NULL,'2017-12-12 15:42:42','2017-12-14 13:41:49','User',NULL,'all','50689675bb92a3f31a7e1f8cc6306c9d',0,NULL),(341,'jxbardant','498b9644186c96006fc3c08efe28960e6a7c7e0a','Jean-Xavier','Bardant',0,1,'2017-12-14 12:58:23','fr',NULL,'2017-12-12 15:43:17','2017-12-14 12:58:23','User',NULL,'all','dbe62080a237ebf8c685518fd1ec9b4d',0,NULL),(342,'YannLeb','3232de8332f73a662e10bb14e8b9f964c4a09f9b','Yann','LEBAILLIF',0,1,'2018-03-07 09:34:37','fr',NULL,'2017-12-12 15:44:38','2018-03-07 09:34:37','User',NULL,'all','7633835065d488c5cc2ba35796094f5b',0,NULL),(343,'DavidBH','f32f65fdd997f56271012c562592f0d40d0639b6','David','BEN HAROUS',0,1,'2017-12-12 15:45:48','fr',NULL,'2017-12-12 15:44:50','2017-12-12 15:45:48','User',NULL,'all','eb2e7119bd84237215b092cf4cca6e1f',0,NULL),(344,'lmontagne','6cfeba5dc73728fc2d2494421172bc1bd578d843','Laurent','Montagne',0,1,'2017-12-15 16:06:53','fr',NULL,'2017-12-15 16:03:32','2017-12-15 16:06:53','User',NULL,'all','2c379f579c17afc820ebd83eca1fbe09',0,NULL),(345,'patrick.bochet@adp.fr','daccd61e7fd0062d0bb12b50c663f942391b44ca','Patrick','Bochet',0,1,'2018-07-30 11:44:34','fr',NULL,'2017-12-18 18:41:24','2018-07-30 11:44:34','User',NULL,'all','a2f996a457dddbce379b5e1af3d59eed',0,NULL),(346,'baptiste.pierard','f171811e11cdc4fb44c155f397da52a46e72442f','Baptiste','Piérard',0,1,'2020-01-31 09:42:33','fr',NULL,'2018-01-04 14:39:36','2020-01-31 09:42:33','User',NULL,'all','e4cbdb5a6ccb33261d8f9d9f971c7873',0,NULL),(347,'OlivierPesle','d66162f269535b4b90261b40671d6e132192c351','Olivier','Pesle',0,1,'2021-07-02 14:32:15','fr',NULL,'2018-01-04 14:42:44','2020-03-11 17:14:13','User',NULL,'all','78665490f429b49e3538bb20e0930adc',0,NULL),(348,'sboube','431b221caff41203aa58360f2eae62c610f5bb8f','Souley','BOUBE',0,1,'2018-02-27 15:00:17','fr',NULL,'2018-01-04 14:42:55','2018-02-27 15:00:17','User',NULL,'all','63cf659a77c80a4f0a17fda0c09094f9',0,NULL),(349,'vivien.raynal','8138eb78884ca3fe67ebd72efc3f2f9023a88752','Vivien','Raynal',0,1,'2021-07-16 11:54:28','fr',NULL,'2018-01-04 14:44:58','2021-07-16 11:54:20','User',NULL,'all','bb16ad2b0167a16e41e5491ae7dd32fb',0,'2021-07-16 11:54:20'),(350,'vatsal12','950c1ea620375ed67a01bed4144a0b1f83716bf8','Vatsal','Shah',0,1,'2018-05-07 18:49:35','en',NULL,'2018-01-12 01:50:01','2018-05-07 18:49:35','User',NULL,'all','1b785c15984f5bf93fb7be94691363af',0,NULL),(351,'leonbdong','b99ac7a6acac6c88f98a0ffd97d2d4a05bc66841','leon','dong',0,1,'2018-01-15 02:09:13','en',NULL,'2018-01-15 02:05:54','2018-01-15 02:09:13','User',NULL,'all','810c9f71599cb14f851580a5c3cb0a3b',0,NULL),(352,'tomboy-fun','9f8868c1525c7966e2926b3054fc912ac65f38f4','tomboy','fun',0,1,'2018-03-10 22:27:37','de',NULL,'2018-03-10 22:14:42','2018-03-10 22:27:37','User',NULL,'all','6d201c0b58a0dd505880168d8df8d0fc',0,NULL),(353,'ftourret','d29640b69c786758b53872492d47925e53dd81c3','Frederic','TOURRET',0,1,'2021-03-10 08:03:24','fr',NULL,'2018-03-14 15:26:46','2021-03-10 08:03:52','User',NULL,'none','5247d56075ec8f933e6ddb3e41d6cedc',0,NULL),(354,'gillesramillien','e463c5dc9a3b3059c8b20c16d2dbe3e267c35b7d','Gilles','Ramillien',0,1,'2019-08-02 16:01:39','fr',NULL,'2018-03-14 17:26:05','2019-08-02 16:01:39','User',NULL,'all','0a7877fab2651676fd9e76061ad67c98',0,NULL),(355,'bbrandely','5028118c95c42b0d09a8b02dbba55a03dc7bc674','Benoit','Brandely',0,1,'2018-03-15 16:52:26','fr',NULL,'2018-03-15 16:44:30','2018-03-15 16:52:26','User',NULL,'all','bb0d8a18a08bfecc50fa054ba146d35e',0,NULL),(356,'paulcanourgues','fc6bdb2161820dc4fca1542a043bc42a93d8ff1b','Paul','Canourgues',0,1,'2018-03-29 16:47:37','fr',NULL,'2018-03-29 16:46:05','2018-03-29 16:47:37','User',NULL,'all','ee769eacd742d3c22ef7f71cfcfe0024',0,NULL),(358,'suzhichun','c6b9144ae90e81e35f3343c07ab561a78e659c81','su','zhichun',0,1,'2018-04-10 10:34:48','zh',NULL,'2018-04-10 10:34:01','2018-04-10 10:34:48','User',NULL,'all','a04035ef480401280f7c0c3d90888fb0',0,NULL),(359,'guillaume_menard@bio-rad.com','cdee949d0fa24b24adba89b50a9b009d46e422f1','Guillaume','Menard',0,1,'2018-04-10 11:12:01','fr',NULL,'2018-04-10 10:48:52','2018-04-10 11:12:01','User',NULL,'all','676a32e46aa65977b0b9379dfcbbb654',0,NULL),(360,'zhanghubin','22d9551db2e9bc011f9cd32b720fab2f21af84f7','huabin','zhang',0,1,'2018-05-17 06:14:14','en',NULL,'2018-05-17 06:11:46','2018-05-17 06:14:14','User',NULL,'all','63f1c1bce2f1315ff3d412dc78dc10a9',0,NULL),(361,'demuru','df9c22a236347c67e55267561da39cf6ee03bf20','Francesco','Demuru',0,1,'2019-07-18 17:00:42','fr',NULL,'2018-05-30 11:30:04','2019-07-18 17:00:42','User',NULL,'all','263a5edf443012e2be6b51f1b2a3fe54',0,NULL),(362,'viscogliosi','7a87433f200a0b3c1224c07c78117465258bbb58','cedric','viscogliosi',0,1,'2018-06-04 17:38:32','fr',NULL,'2018-06-04 17:36:59','2018-06-04 17:38:32','User',NULL,'all','5eb59aee686bb9adf060e0bdd6819fb5',0,NULL),(363,'Norgren','f5010340cafc1b8a8d54fdac31985957f3aaa71e','Hassan','Darwish',0,1,NULL,'en',NULL,'2018-06-15 13:14:03','2021-08-24 08:54:13','User',NULL,'all','8c26e94e749fe6b47d5d6aa3ca1d0e3c',0,NULL),(365,'ja.janvier','0f967c71c3abd2c1a9421fed3e191a2c9e23af74','Jean-Alex','Janvier',0,1,'2018-12-12 17:57:16','fr',NULL,'2018-07-12 14:16:43','2018-12-12 17:57:16','User',NULL,'all','8e86d53a37f78319389b6ade83d5c23a',0,NULL),(366,'Konrad','a2a677570910ebb38ede356e46815b2b438c448a','Konrad','Widera',0,1,'2018-07-23 12:44:49','de',NULL,'2018-07-18 09:36:50','2018-07-23 12:44:49','User',NULL,'all','eb4365da7de309b9d3aff05d24dffd21',0,NULL),(367,'v.kostenko','51c89319c459203df435fd81e6bf71cc5187e963','Vladimir','Kostenko',0,1,'2018-07-27 09:54:37','en',NULL,'2018-07-18 12:27:30','2018-07-27 09:54:37','User',NULL,'all','8974c748026316cffc3f4453636e3d05',0,NULL),(368,'bruno.le.roy@jci.com','6ca1cf4109b584e3ef7f0e8dbc994a8986d3486b','Bruno','LE ROY',0,1,'2018-07-20 17:09:53','en',NULL,'2018-07-20 16:54:36','2018-07-20 17:09:53','User',NULL,'all','516860ae69ba996fc085c3ed78dc2ca3',0,NULL),(369,'sleclere','b8b01cc3f0b7fc14b0b8cbb856e9c1887656b7c8','SEBASTIEN','LECLERE',0,1,NULL,'fr',NULL,'2018-07-30 13:34:35','2020-07-29 14:43:42','User',NULL,'all','440440f2f0cc5a96207f720599594508',0,NULL),(371,'lecleres','fe744bb7b8c78a0bee78ec42e5ab52c17b44b1c9','SEBASTIEN','LECLERE',0,1,'2018-07-30 14:56:26','fr',NULL,'2018-07-30 13:49:43','2018-07-30 14:56:26','User',NULL,'all','c406e66fcd94118904befe3eba11f74f',0,NULL),(372,'p.rabchenyuk','b9c8b8cc1043d6068f9b4c6da461b379fd915e15','Pavel','Rabchenyuk',0,1,'2018-07-30 14:10:11','en',NULL,'2018-07-30 14:09:45','2018-07-30 14:10:11','User',NULL,'all','3f8d23f3a122be5e86c2e7c5cb12b3da',0,NULL),(373,'sise','c0fc1fc9e192f65058776bf688827fe183782b90','nicolas','cumin',0,1,'2018-11-09 08:45:24','fr',NULL,'2018-07-30 15:51:54','2018-11-09 08:45:24','User',NULL,'all','016200dd90e5b55d0f3ea9b3e37314d3',0,NULL),(374,'bmoreau','fba1df36c82411a8ba338a65129d2f9cf5ff4f2a','Benoit','Moreau',0,1,'2019-09-23 09:08:42','fr',NULL,'2018-08-07 15:19:01','2019-09-23 09:08:42','User',NULL,'all','cb5fb6115247932d8b398c9a84994951',0,NULL),(375,'stephane.guerillot','86128a3b761fa7868fee4e4b268b7957172df4fd','Stéphane','Guerillot',0,1,'2018-08-09 09:24:41','en',NULL,'2018-08-09 09:24:18','2018-08-09 09:24:41','User',NULL,'all','449aacc9157dc6e0a42fda97e4b73d7c',0,NULL),(376,'dguilbaud','b475447a8b6c6252473a6f9ed54e7154f6f2a857','didier','guilbaud',0,1,'2018-08-17 16:39:46','fr',NULL,'2018-08-17 16:38:40','2018-08-17 16:39:46','User',NULL,'all','4a6a430c62545406a1082fa0a48c26f9',0,NULL),(377,'BaukeBerg','e8527192c667cbb7393e72fc653756f691059c30','Bauke','van den Berg',0,1,'2020-12-15 22:41:03','en',NULL,'2018-09-06 00:23:35','2019-06-14 21:22:58','User',NULL,'all','df33575a5b9f03b93b1003be9a7981a3',0,NULL),(378,'jumpcn','1d51cc7a843a1059d2c7e366bee2cae1eca718dd','jumpcn','du',0,1,'2018-09-08 00:25:16','zh',NULL,'2018-09-08 00:22:35','2018-09-08 00:25:16','User',NULL,'all','c249e8c8c6fe1e85367bca44219e8062',0,NULL),(379,'fotis','6051e32251327152d5d3cd83cc1f0602495cddb7','fotis','wong',0,1,'2018-09-25 10:17:29','en',NULL,'2018-09-25 10:01:35','2018-09-25 10:17:29','User',NULL,'all','2705343d1d57a15f86cef07bfd0e7703',0,NULL),(380,'Esteve','332aa12c7934bd48552756cc01a4a9e4fc536ef6','Gerald','Bitegue',0,1,'2019-04-29 16:26:47','fr',NULL,'2018-10-17 14:25:26','2019-04-29 16:26:47','User',NULL,'all','d102a56768da5207f908e25d82185c30',0,NULL),(381,'mboual','b2d7f951787e650180fbacb3a1ff8c15f1bbc1c4','Mickaël','Boual',0,1,'2018-10-18 13:10:59','fr',NULL,'2018-10-18 12:20:28','2018-10-18 13:10:59','User',NULL,'all','685d4638c64d8e7921be4a324b8d558d',0,NULL),(382,'ferrerm','0a397d82a9e39244c0931cfb5924160f8d8ac315','Mikaël','Ferrer',0,1,NULL,'fr',NULL,'2018-10-18 12:26:01','2018-10-18 12:26:31','User',NULL,'all','1cdae49829f4fa6862571c9cae339f41',0,NULL),(383,'fvillain','ed011536171a983e4d644081bc94e22add3f2008','Fabrice','Villain',0,1,'2018-10-24 11:14:48','fr',NULL,'2018-10-24 11:14:14','2018-10-24 11:14:48','User',NULL,'all','bc3b927a8b18fa589523153e9fca16c5',0,NULL),(384,'andaks','6608f5fa28f09d3a15288e20b47ff0bffe3b5358','Muhamad Aidil','Karim',0,1,'2018-10-29 20:26:06','en',NULL,'2018-10-29 20:25:41','2018-10-29 20:26:06','User',NULL,'all','5061d42574a2cd915a8f7673a3f5243c',0,NULL),(385,'wangguang','e4fef7a7e6fbc6db1b3c8b41fa68ac37132149d5','广','王',0,1,'2018-11-02 04:32:32','zh',NULL,'2018-11-02 01:22:06','2018-11-02 04:32:32','User',NULL,'all','37edf2a6bf8402ccc0ad1d9859401bb9',0,NULL),(386,'bramey@sise-plastics.com','b7f94439f1123e58e73ff25cbe5ab7bb75ba51cb','Bruno','Ramey',0,1,'2018-11-09 08:45:11','fr',NULL,'2018-11-05 10:01:07','2018-11-09 08:45:11','User',NULL,'all','6b1472f3f3eae9e6674dab4a3c6a933b',0,NULL),(387,'ycu','2a18825cbb5434251bffb213f930f6c6112d099c','Yann','CHEVEAU',0,1,'2019-01-10 17:31:15','fr',NULL,'2018-11-05 10:01:30','2019-01-10 17:31:15','User',NULL,'all','b6e7938cb215f2d50a417984adca291b',0,NULL),(388,'rjt','0b6260bb728df98b77ffe9c5e4ed9a1fa00a1e38','renaud','jaillet',0,1,'2018-11-05 10:33:22','fr',NULL,'2018-11-05 10:02:50','2018-11-05 10:33:22','User',NULL,'all','3ee0474017cc53d0350256d1e0f5b374',0,NULL),(389,'SISE_LLE','f6488796069750ddece65ae936300f1a475a5652','Lionel','LAGARDE',0,1,'2018-11-08 14:47:15','fr',NULL,'2018-11-05 10:03:24','2018-11-08 14:47:15','User',NULL,'all','e5a6e048d9c0e0eb1a0ef06d280d25c1',0,NULL),(390,'pborge@sise-plastics.com','336e5a8853cb73fd7fd855072904e1815272302c','PHILIPPE','BORGE',0,1,'2018-11-05 17:29:48','fr',NULL,'2018-11-05 10:03:31','2018-11-05 17:29:48','User',NULL,'all','f6a679ad660b42784131f20a5e7e581a',0,NULL),(391,'xue','2558cb762c9ae4602710d5dcd32eeb0d29490360','ying','xue',0,1,NULL,'en',NULL,'2018-11-07 10:08:25','2018-11-08 08:24:00','User',NULL,'all','4bfabd5dd397ac2817c956a25ed5af78',0,NULL),(393,'natylc128585','ee3ede25e9dde757549422d14aaca68cccff0e58','Natalia','Lopez',0,1,'2018-11-23 15:37:59','en',NULL,'2018-11-22 23:02:32','2018-11-23 15:37:59','User',NULL,'all','644df22db7ca279b3327c2543296031c',0,NULL),(394,'84515264','b35e6709193c3851047512bdfd6071165ff3d7bc','何','小兵',0,1,'2018-11-23 04:28:10','en',NULL,'2018-11-23 00:51:48','2018-11-23 04:28:10','User',NULL,'all','440e4f01a56a44ab2d9d34cfe8122eda',0,NULL),(395,'zhanghuabin','829e820f04c0a0cd78299ab252e12085043a483d','huabin','zhang',0,1,'2018-12-06 16:46:19','en',NULL,'2018-12-06 16:45:44','2018-12-06 16:46:19','User',NULL,'all','c4d5954ba5fd69fd603053dbf3266578',0,NULL),(396,'zspace','9ff08c8f5a228a7fe6a94e80f89c319771b574b3','Ken','Smart',0,1,'2019-02-17 20:16:27','en',NULL,'2018-12-10 08:53:07','2019-02-17 20:16:27','User',NULL,'all','00d6c4ae38f8fc0dff8750902020b38c',0,NULL),(397,'hrobles','6b84b4eeb9372354bd5248eb7a5ae45cdd37753f','hector','robles',0,1,'2018-12-10 10:57:44','en',NULL,'2018-12-10 10:49:56','2018-12-10 10:57:44','User',NULL,'all','76482cd29abbc94022311e2bf8340238',0,NULL),(398,'JM.Capdeville','4fa52c2e16f63d37a329108065854f40b7d1067e','Jean-Marie','Capdeville',0,1,'2021-06-14 08:39:34','fr',NULL,'2018-12-13 14:16:25','2020-11-18 15:59:51','User',NULL,'all','123d64fd3e662954d9ea25b55fc88a4c',0,NULL),(399,'d.bonnet','dc4322a8186d0b8fc89e63b93265aad014ac06cc','denis',' Bonnet',0,1,'2019-02-08 16:00:59','fr',NULL,'2019-02-08 16:00:31','2019-02-08 16:00:59','User',NULL,'all','05504019508f46c41bb527a7212c7bff',0,NULL),(400,'luciano.paes','36fb67a5082e5066caef2f12025ad8bcb82ce8dd','Luciano','Paes',0,1,'2019-02-22 03:51:28','pt-BR',NULL,'2019-02-22 03:50:17','2019-02-22 03:51:28','User',NULL,'all','5bbaf5fdde8d36f4d3e88de9aa06065f',0,NULL),(401,'didier','727089d881c41ddd3789635dcd32ebaeebc0d2e0','didier','paquet',0,1,'2020-05-04 16:13:43','fr',NULL,'2019-03-05 17:37:38','2020-05-04 16:13:43','User',NULL,'all','86bca9ed0f87afbd79544b72b850335d',0,NULL),(402,'Fabio','c5ef778da2d8974e0f2417dd6128432e2a9e9daf','Fabio','Bindi',0,1,'2019-04-16 09:31:42','it',NULL,'2019-03-12 11:13:25','2019-04-16 09:31:42','User',NULL,'all','b9d946ebcb514c4f2f17e03b76edf0c7',0,NULL),(403,'Johan_s','9759634c161816f6b6814c71f804a0dd3bdf58fd','johan','sarrazin',0,1,'2020-01-30 13:21:20','en',NULL,'2019-03-20 15:07:24','2020-01-30 13:21:20','User',NULL,'all','669aed6763a6020fef490f7c7ca58c7a',0,NULL),(404,'josselin.jouvray','64693201628b3d2aa901d4002eb6742f48015870','Josselin','Jouvray',0,1,'2020-01-07 09:27:27','fr',NULL,'2019-03-20 15:08:04','2020-01-07 09:27:27','User',NULL,'all','a4086993992317a99758a533e0646676',0,NULL),(405,'brechtelm','fde050b2c91dd0b153a670544a3cfffc53311c51','Michael','Weitauer',0,1,'2019-03-28 23:57:42','de',NULL,'2019-03-28 23:39:50','2019-03-28 23:57:42','User',NULL,'all','98d62ce6f58afa32c1e2d5ba7804ea8d',0,NULL),(406,'klejim','6d6267d1a1dc2f669beb8f1a5dcd5495ac558728','Clément','Jimenez',0,1,'2019-04-03 09:11:49','en',NULL,'2019-04-03 09:11:10','2019-04-03 09:11:49','User',NULL,'all','f807a9945f84752431cf935eda9a0c47',0,NULL),(407,'RamyRagab','b3a74d797eedd76d1d7c0a0b3d3deb7d681d38df','Ramy','Ragab',0,1,NULL,'en',NULL,'2019-04-07 22:47:40','2020-07-29 14:43:33','User',NULL,'all','59710c9af1c01d7a3bd60e3e86b6080c',0,NULL),(409,'vikasvds','872f1f1e4a7d84008bc497bc97aaa99607237361','Vikas','shrivastava',0,1,'2019-04-26 06:39:03','en',NULL,'2019-04-26 05:44:50','2019-04-26 06:39:03','User',NULL,'all','5432e88d43a452cb624b31a3e6857459',0,NULL),(410,'romanov@trei.biz','02664fe59abd158dff9b1226c3d3b5dd1ee72888','Michael','Romanov',0,1,'2019-07-15 07:52:15','ru',NULL,'2019-07-02 12:39:17','2019-07-15 07:52:15','User',NULL,'all','3bd4c45fd6e1c32dc492bd50a50ae1bc',0,NULL),(411,'gilles.viard@rehau.com','bed614dbb1deaa6993c44c25581fc851a4dd56c5','gilles','viard',0,1,'2019-07-10 15:45:01','fr',NULL,'2019-07-10 15:37:54','2019-07-10 15:45:01','User',NULL,'all','5431aec2381e63d740b24c443820f616',0,NULL),(412,'seeright','5fb64a1a748c3d32cfe874dd73fa7247ee4936fc','진우','이',0,1,'2019-07-25 08:20:50','ko',NULL,'2019-07-25 06:26:31','2019-07-25 08:20:50','User',NULL,'all','6f99876e0ed007ab58d922b547eb2d59',0,NULL),(415,'jessie0662@163.com','847386a1add8ebe750c1205bfc32400cf586da5a','zhenhua','zhu',0,1,'2019-10-16 04:10:23','en',NULL,'2019-10-15 10:00:33','2019-10-16 04:10:23','User',NULL,'all','724ea1004d51531acd7a4cb8e709583e',0,NULL),(416,'ak.assad','7a54470048a2d15fcf523ffea39b7482670e83ad','AK ','ASSAD',0,1,'2020-02-07 14:34:18','en',NULL,'2019-10-24 10:50:41','2020-02-07 14:34:18','User',NULL,'all','f73d1066b9a36d6fe7fb91ec36dfd850',0,NULL),(417,'guillaume.bernard','dde246c954e05c95c5b4fae581c46ee2ae135b7f','Guillaume','BERNARD',0,1,'2019-12-20 12:12:16','en',NULL,'2019-10-24 11:03:10','2019-12-20 12:12:16','User',NULL,'all','b0a8873608f197d45fe2f8bbd6d35f5c',0,NULL),(418,'timp520','993bb89d98860f867879ec1526574ba2aa3373eb','健豪','陳',0,1,'2020-02-03 01:57:06','zh-TW',NULL,'2020-02-03 01:55:29','2020-02-03 01:57:06','User',NULL,'all','4dec54fcf37c055f066fd5988cf5240c',0,NULL),(419,'Andranik','bfecf237082a858aa53b8ad35eaf60869ee6bac6','Andranik','Sanoyan',0,1,'2020-02-18 08:20:28','en',NULL,'2020-02-18 08:12:00','2020-02-18 08:20:28','User',NULL,'all','046d87c2405895b88b3ab57c30807224',0,NULL),(420,'Baidaoui','f42fa56c958267e5116f01e12fec7a820c304f73','Ahmed','Baidaoui',0,1,'2020-03-02 14:13:48','en',NULL,'2020-02-20 15:57:55','2020-03-02 14:13:48','User',NULL,'all','3e624ded1707e97c5e394e53e17e56f9',0,NULL),(421,'Sames_Mancel','b62034437c226579b5c6b86777e96adc837549d0','Ilana','Mancel',0,1,'2020-04-01 09:50:55','fr',NULL,'2020-02-20 16:05:33','2020-04-01 09:50:55','User',NULL,'all','5e2ffa45992cbf0f1eea9a95a86987c9',0,NULL),(422,'nferrere','eebf8eb8adb178a8ab1e9168e9328fde4a5c7dfe','Nicolas','Ferrere',0,1,'2022-09-09 15:03:32','en',NULL,'2020-03-03 20:14:20','2020-10-26 10:59:35','User',NULL,'all','1e0a555d7c0a25618b6c9da130c3287b',0,NULL),(423,'HansonYang','a974628c163c2901fb7e2b4f5c0ba82d40298d5b','象辉','杨',0,1,'2020-03-04 02:28:08','zh',NULL,'2020-03-04 02:21:35','2020-03-04 02:28:08','User',NULL,'all','85533848f449cc271b59e7514f89e3e7',0,NULL),(424,'Maycko_LOUIS','e0a7c03b821983b9deb530a78b5f3eab2411ddf7','Maycko','LOUIS',0,1,'2023-02-15 11:45:56','fr',NULL,'2020-04-01 17:19:57','2020-09-28 16:34:48','User',NULL,'all','b94fab79220ebb01221a1a2b7c84b595',0,NULL),(425,'reniko','13699ecf1d31cbe7cb18dbbdcd739cd7486fed9f','Sławomir','Żurek',0,1,'2021-06-15 16:13:38','pl',NULL,'2020-06-17 01:58:45','2020-08-15 21:56:37','User',NULL,'all','a31121059e4c9bed38ed57690003abba',0,NULL),(426,'dominique.moineau@techpap.com','fb653ee30393ab8bc43c559607ce4ac893cf10b1','Dominique','MOINEAU',0,1,'2021-04-30 16:01:59','fr',NULL,'2020-06-18 16:02:54','2020-10-20 17:09:00','User',NULL,'all','768eeeb5b649c06a94f06af10ec224d9',0,NULL),(427,'Guillaume_I-MC','f5394bddf8e8d7a0e32ca2011de2a9d79090e403','Guillaume','GARBAY',0,1,'2021-02-12 17:15:26','fr',NULL,'2020-06-24 09:50:48','2020-11-20 10:56:19','User',NULL,'all','a637fd1d1d2c795e0f813e7b518ac63b',0,NULL),(428,'atasse','f82b67657060c4d04e8e55cb61c9ff14f5d6c65b','alexis','tasse',0,1,'2020-08-31 10:42:30','fr',NULL,'2020-07-29 08:57:13','2020-08-31 10:42:30','User',NULL,'all','258de8ae391d5c91fe293985c911f774',0,NULL),(429,'lmilesy','1e2d60305cc223928644c1f8fa888e4d96b4146c','lionel','milesy',0,1,'2022-09-13 09:46:25','fr',NULL,'2020-07-29 12:38:36','2020-07-29 14:43:19','User',NULL,'all','5540ededc090165085d6dc5bddc16816',0,NULL),(430,'OPCFEUCERTLAB','e556659ac8ab6fbfd164613904eb0b95f34dec13','Sebastian','Allmendinger',0,1,'2020-08-14 11:08:26','en',NULL,'2020-08-12 10:28:28','2020-08-14 11:08:26','User',NULL,'all','bb4e428def2d349ca425d3b66021c3ac',0,NULL),(431,'peigne.j@dxm.fr','d39c54f6f55b2a014c2df35ee79aa3e089aaf555','Jacques','PEIGNÉ',0,1,'2023-02-06 09:15:55','fr',NULL,'2020-08-12 15:41:02','2020-11-04 12:00:50','User',NULL,'all','4c69f73322a15cfc25c38f2a9b9f7ee0',0,NULL),(432,'michaelejigu','538c0141aa03b64eb834aef66909cee787caa95c','Michael','Ejigu',0,1,'2023-02-17 10:37:12','en',NULL,'2020-09-04 13:33:52','2020-10-29 14:15:50','User',NULL,'all','648e2d274dd959c9b554401a55625683',0,NULL),(433,'nicolas.his@gfi.world','ebaf7f55552981e80303ffe7e44919be1c49abb7','Nicolas','HIS',0,1,'2023-01-12 09:49:35','fr',NULL,'2020-09-04 13:34:50','2020-11-13 15:57:28','User',NULL,'all','dfcf664e9f588f50b417eff365234164',0,NULL),(434,'michael.ejigu','d854fa50715f112b2bcefced5272a19ed641e4ec','Michael','Ejigu',0,1,'2022-02-07 11:06:49','en',NULL,'2020-09-04 13:36:06','2020-10-21 14:05:15','User',NULL,'all','0173c404a258a673126a4966e738878e',0,NULL),(435,'sylvain.rival@gfi.fr','09bee7a09c9b77235d6130cac0d9d9e3c37af4d1','Sylvain','RIVAL',0,1,'2020-09-25 17:51:20','en',NULL,'2020-09-04 13:36:09','2020-09-25 17:51:20','User',NULL,'all','6a788763c1de097a9818e7e14be2a586',0,NULL),(436,'Chris','d4f86316a53ec3a6b77dea59c4ba80c4930c826f','Christophe','Cazes',0,1,'2023-01-27 17:52:22','en',NULL,'2020-09-04 13:38:10','2020-10-13 09:19:20','User',NULL,'all','3f5246c51402f1abb4be3708f22a51ed',0,NULL),(437,'Boyeixa','07b4387e2b67fef8e3b3eebc607d03461701e6ab','Francesco','Costa',0,1,NULL,'en',NULL,'2020-09-12 17:15:06','2020-10-14 12:50:17','User',NULL,'all','86e90c28397baf05351c25f7356ab040',0,NULL),(438,'JeanF','58e9de2b96a82371d293557b3449f812764dd2dd','Jean-François','Cuenot',0,1,'2022-07-26 12:06:55','fr',NULL,'2020-09-18 11:14:59','2020-11-13 09:40:36','User',NULL,'all','52f0448c37e9ac3bef63adbdcabc6c73',0,NULL),(439,'ilyass_opcUa','ea8905e4ac9f13ec5ca06a317c31767e9e18996b','ilyass','El Gueddari',0,1,'2020-09-23 09:18:57','fr',NULL,'2020-09-23 09:18:19','2020-09-23 09:18:57','User',NULL,'all','0f7224484ab7ff9942e8acbabe8cef1d',0,NULL),(440,'chabert','b691500aa758a60c79e44f8379fc5a4d0601b5bb','romain','chabert',0,1,'2020-09-23 09:20:14','fr',NULL,'2020-09-23 09:18:42','2020-09-23 09:20:14','User',NULL,'all','50dc4371d47627aab71344e2d8d4479f',0,NULL),(441,'fjacquet','04b6519c9e1a0f6fc6f6ed91a796503b278ba61d','florent','jacquet',0,1,'2020-10-02 11:48:53','en',NULL,'2020-09-23 09:19:47','2020-10-02 11:48:53','User',NULL,'all','f53242b806370a335c51db5770f64d76',0,NULL),(442,'Abdoussoimadou','345172bc24086eed83ef6b7db8c3f08701294885','ABDOUSSOIMADOU','Mouhamadi',0,1,'2020-11-04 11:18:35','fr',NULL,'2020-09-28 13:23:57','2020-11-04 11:18:35','User',NULL,'all','36cb4e4f9d6093397a8ce3cccc5544c2',0,NULL),(443,'Sylvain','b7c7de02c08c458bda4471fe743150c4cfafd364','Sylvain','Jeandemange',0,1,'2021-04-14 09:23:35','en',NULL,'2020-09-28 15:45:35','2020-11-02 11:41:12','User',NULL,'all','7541d46d446cb0b4a8568768a53f047e',0,NULL),(444,'ics','cb9de1c290f5d510cf8f7e6724fa40fa527ccf19','zahra','azimi',0,1,NULL,'en',NULL,'2020-10-11 09:19:35','2020-10-14 12:50:07','User',NULL,'all','6df3793dc9a51f428b7e2981ef5c26d4',0,NULL),(445,'afadul','2cbd7284e0efa01169c33fc228152a6f5ff341ef','amada','fadul',0,1,'2020-10-21 14:26:49','fr',NULL,'2020-10-21 13:37:56','2020-10-21 14:26:49','User',NULL,'all','f063160f967be4d916171c1d7f18defb',0,NULL),(446,'i.mkavavo','8e945afb309df83a97265687ea8632cb929ff465','ibrahim','mkavavo',0,1,'2020-11-18 05:36:38','fr',NULL,'2020-10-21 13:45:24','2020-11-18 05:36:38','User',NULL,'all','d52f066a8f2a63ad46749a81465b4d4e',0,NULL),(447,'LClaudel','54f91c3c970ab742c9218f7c63c847f59bbe3c10','Lionel','Claudel',0,1,'2023-02-10 13:53:26','fr',NULL,'2020-11-04 18:05:30','2020-11-20 14:03:24','User',NULL,'all','ab69bd3171cc4d6daa4be924769b0e89',0,NULL),(448,'NahidKar','18c4bc24a02bcaee2ac9ec29cacf434b7d583a64','Nahid','Kar',0,1,'2021-01-07 18:44:39','en',NULL,'2020-11-04 18:06:22','2021-01-07 18:44:22','User',NULL,'all','c35b8ae92b81c671ddb4b77ee5c3fa77',0,'2021-01-07 18:44:22'),(449,'MassyG','5e97c19bc656c921b1c70b178a4fc92f21a7984c','Massy','Goulmane',0,1,'2020-12-07 14:13:31','fr',NULL,'2020-11-04 18:06:29','2020-11-19 16:49:17','User',NULL,'all','ab4ab8beeda15d2c0595c647f3c96322',0,NULL),(450,'GenetayGA','4dbedc22f28662b68505dda7161f559916826404','Guy-Alexis','GENETAY',0,1,'2023-02-03 13:46:56','fr',NULL,'2020-11-04 18:08:01','2020-11-19 10:57:31','User',NULL,'all','70906553f532cd6562853a644ee4719b',0,NULL),(451,'RemiDelaire','0a4639316ce3643cf2855c721ff003c81305da4d','Rémi','Delaire',0,1,'2021-06-16 17:23:49','en',NULL,'2020-11-04 18:45:11','2021-06-16 17:23:24','User',NULL,'all','db7bd9c22ef7d0f7c7844cb8e693cea9',0,'2021-06-16 17:23:24'),(452,'iwindou','e41d0df70328da5215a13a04bf542999944048a3','郭','永',0,1,'2020-12-01 12:57:24','zh',NULL,'2020-11-05 15:26:06','2020-11-05 15:27:43','User',NULL,'all','1b6a698a75a1711639574b21131d3c0f',0,NULL),(454,'ValentinP','e96d79f677eef4510090510ff579c02335b054c2','Valentin','Poingt',0,1,'2020-12-09 15:12:55','fr',NULL,'2020-11-06 17:37:56','2020-11-20 09:56:23','User',NULL,'all','3c866d8fb29615e3d6f189b83f97ff93',0,NULL),(455,'Paul.L','eab07ca981fffc3e3ffb00e4dc53b84b7bee0e57','Paul','Losson',0,1,'2023-02-17 14:39:54','fr',NULL,'2020-11-09 10:36:29','2021-06-24 11:42:36','User',NULL,'all','f14654b43c100560e7fc99b35421a3c4',0,'2021-06-24 11:42:36'),(456,'tonychang2018','b4c8289f3146478d4b407c152bf1078a838b6d15','tony','chang',0,1,'2020-11-12 06:23:26','en',NULL,'2020-11-12 06:21:31','2020-11-12 06:23:26','User',NULL,'all','2a6859b0568e81771c733207f1906524',0,NULL),(457,'','','','Anonymous users',0,1,NULL,'',NULL,'2020-11-25 21:01:48','2020-11-25 21:01:48','GroupAnonymous',NULL,'',NULL,0,NULL),(458,'','','','Non member users',0,1,NULL,'',NULL,'2020-11-25 21:01:48','2020-11-25 21:01:48','GroupNonMember',NULL,'',NULL,0,NULL),(459,'Alexandre.mace','8c65dd66ed89b87b33b78664ebd5806fdcc88806','Alexandre','mace',0,1,'2021-08-17 09:58:12','fr',NULL,'2020-12-01 13:19:36','2020-12-03 16:02:35','User',NULL,'all','99b942730b7a29177418fdaef11e9c33',0,'2020-12-01 13:19:36'),(461,'ccounotte','55a8ce146df049d09c9994817a4a192d032d8026','Cedric','Counotte',0,1,'2021-03-18 10:19:04','en',NULL,'2020-12-02 15:01:03','2020-12-02 15:01:15','User',NULL,'all','bfec9ffb19afa72777daeb63d8d95ba5',0,'2020-12-02 15:01:03'),(462,'J-L.Muller','d5897d74f45e04dbb0204088929501d629cf4d4a','Jean-Louis','Muller',0,1,'2023-01-27 12:24:14','fr',NULL,'2020-12-07 16:16:06','2020-12-07 16:18:28','User',NULL,'all','56403ec7c1b35c1db0efe59f85c5fa4c',0,'2020-12-07 16:16:06'),(463,'danielexitto','ddd83c171e571619dd123dbd1cb2ebae91ee9d51','Daniele','Bortolato',0,1,'2020-12-24 15:36:26','it',NULL,'2020-12-24 15:30:05','2020-12-24 15:36:15','User',NULL,'all','141e50970103ac0ca19a4f3cb0d4cf7e',0,'2020-12-24 15:30:05'),(464,'denis.quiers','fc1c0839f2a8aa6be797b7bfd7c520b99a0f4ef0','Denis','Quiers',0,1,'2022-05-30 14:18:12','fr',NULL,'2021-02-12 12:02:06','2021-02-12 12:04:03','User',NULL,'all','c399959511cccc2ef1adffb14da16351',0,'2021-02-12 12:02:06'),(465,'frederic.scheiwe','1975cba6b0741dc65b566ac9cdf9a51d90fcd185','FRÉDÉRIC','SCHEIWE',0,1,NULL,'fr',NULL,'2021-02-15 09:14:38','2021-02-22 10:30:33','User',NULL,'all','ac34baa34497e3f161a403716890a280',0,'2021-02-15 09:14:38'),(466,'cmucha','ff0a0feab8a06554879219dc98dd17cf9c3a5cda','Clément','Mucha',0,1,'2021-04-19 11:28:55','fr',NULL,'2021-02-16 09:20:27','2021-02-16 09:24:32','User',NULL,'all','d584c968c88278188aad537e234d97f4',0,'2021-02-16 09:20:27'),(467,'zilongS','527a82c4acedc04dd1458df43bc885b5bf442984','Zilong','SHAO',0,1,'2022-03-10 09:16:05','fr',NULL,'2021-02-16 09:21:02','2021-02-16 09:24:26','User',NULL,'all','225fe8ec4e950d3b125168428a8e55ef',0,'2021-02-16 09:21:02'),(468,'gildas.viaud@termet.fr','eccf6b66c8da97046450f2d774f664b3c7906d8e','Gildas','Viaud',0,1,'2021-03-02 16:23:33','fr',NULL,'2021-02-22 11:10:11','2021-02-23 07:22:48','User',NULL,'all','ce37c5b289da29a6309d476d28fb364a',0,'2021-02-22 11:10:11'),(469,'HORELLOU','f20d979264e0fd742608a7e6c0f688aee34f9f60','Serge','Horellou',0,1,'2021-02-24 11:06:20','fr',NULL,'2021-02-22 13:30:43','2021-02-23 07:22:42','User',NULL,'all','cd20ed549a7f485b176ad66f74167e19',0,'2021-02-22 13:30:43'),(470,'AdrienP','73cf1f98f987ccbf4f9ec008a06048a8ba715322','Adrien','Pincemin',0,1,'2021-02-24 11:06:26','fr',NULL,'2021-02-22 14:04:48','2021-02-23 07:22:41','User',NULL,'all','beb03ac3c2b8085c5c14cce3e016225d',0,'2021-02-22 14:04:48'),(471,'fabrice.chevaleyre@amics.fr','87577b0780751ef154cb7b2f8d6cca7dd8a11a46','Fabrice','Chevaleyre',0,1,'2022-03-01 18:50:44','fr',NULL,'2021-02-22 17:28:31','2021-02-23 07:22:39','User',NULL,'all','f80cc823fca0aed98d91c236e6ad1420',0,'2021-02-22 17:28:31'),(472,'JEGONDAY-IAS','c4f7228b504f623aa1d9b8d3712b368bddb50d9f','Xavier','Jegonday',0,1,'2021-02-24 15:15:11','fr',NULL,'2021-02-23 07:49:04','2021-02-23 09:04:34','User',NULL,'all','3309a76a8039f66082f1b9df0945593b',0,'2021-02-23 07:49:04'),(473,'NicolasBOYER','d120e6f56e035614c6c4636228826f1788738fe3','Nicolas','BOYER',0,1,'2021-02-24 15:32:06','fr',NULL,'2021-02-23 09:08:39','2021-02-23 09:11:45','User',NULL,'all','0f541ca9bd9a83db934038fbf1e7fd1d',0,'2021-02-23 09:11:45'),(474,'marchand','812122f96aa7347507788622eab6eec43e287a7b','Patrick','Marchand',0,1,'2022-10-10 09:51:23','fr',NULL,'2021-02-24 14:37:25','2021-02-25 11:01:35','User',NULL,'all','c8fcf7d917ef0f30103ef552aa5ac3e1',0,'2021-02-24 14:37:25'),(475,'fpeyrard','fae708a8171dd58851c75f79ef7fbba017dcfa24','Fabrice','Peyrard',0,1,NULL,'fr',NULL,'2021-02-26 18:32:43','2021-06-30 20:33:25','User',NULL,'all','20aebcfabdb1fe23dbcb4f38d41ff68a',0,'2021-02-26 18:32:43'),(476,'jelex','48468a416afadb57ac86ffef41d298ae5a8adf21','jelex','lee',0,1,NULL,'ko',NULL,'2021-03-10 23:55:01','2021-06-30 20:33:13','User',NULL,'all','f5ce4570ecb1f0c5bb59bfb17b4ff49d',0,'2021-03-10 23:55:01'),(477,'ssiegzieba','c75244fc48c5b24e3e93867a95ce12c1a2809b9a','SOPHIE','SIEG-ZIEBA',0,1,'2021-10-20 14:07:51','fr',NULL,'2021-03-19 10:04:56','2021-03-19 10:10:19','User',NULL,'all','70da4a960a35ca81d0874a408f7210b8',0,'2021-03-19 10:04:56'),(479,'seanhsu','8e5c7450f062b46e09932551f38b6d5d205623fe','sean','hsu',0,1,NULL,'zh-TW',NULL,'2021-04-28 04:24:42','2021-08-24 08:54:07','User',NULL,'all','79df8e053bff64513a68427de7ed7012',0,'2021-04-28 04:24:42'),(480,'ronans','2edfe1bb0f56c4400c3d96e89e01dc9efdae6f0f','Ronan','Subileau',0,1,NULL,'fr',NULL,'2021-05-18 22:04:57','2021-06-30 20:33:53','User',NULL,'all','a5e936fc89c0fdf1d607824dbf9d4895',0,'2021-05-18 22:04:57'),(481,'JV19006','586f0fc0ea1f1df18a8a02c5f2b89ad414ac6aa9','Khalil','BEN TAMANSOURT ',0,1,NULL,'fr',NULL,'2021-06-01 09:05:57','2021-06-30 20:33:10','User',NULL,'all','baeba8f954ae61ecec73870a84c89fcc',0,'2021-06-01 09:05:57'),(482,'AdminAipl','8a27dd1f49125718a45b51cb89aa3b767f04e988','Tanmay','Borkar',0,1,NULL,'en',NULL,'2021-06-07 08:38:44','2021-06-30 20:32:56','User',NULL,'all','0673fbc57f200e3cbbdfec2f5e98f8e4',0,'2021-06-07 08:38:44'),(483,'romain.asse','2084ed3cf62146afaf46875c416d83aca9c2f0a1','Romain','ASSE',0,1,'2021-07-07 08:19:41','fr',NULL,'2021-06-30 16:57:34','2021-06-30 20:34:06','User',NULL,'all','346b5e399426fe5140dbe4246d553005',0,'2021-06-30 16:57:34'),(484,'amo','8fc63e2155271cf7fa2cf674dca697fadc839b6b','Antoine','MOREL',0,1,'2021-07-07 11:40:29','fr',NULL,'2021-06-30 17:01:02','2021-06-30 20:32:59','User',NULL,'all','b2dae9eca4f38e29ea2dc42bfe3ce455',0,'2021-06-30 17:01:02'),(485,'aharel','6d45ddc3f834a203d7f7a37ef8ac83fdbe844410','anthony','harel',0,1,'2021-07-07 08:46:37','fr',NULL,'2021-07-01 09:01:32','2021-07-01 10:18:38','User',NULL,'all','76187e8ac0544e76d1a7bd9b7e3acd8b',0,'2021-07-01 09:01:32'),(486,'romaric','cb4a56418b7f6e78f7379539b07214856503fde4','Romaric','Blanc',0,1,'2021-07-06 16:06:11','fr',NULL,'2021-07-01 10:03:53','2021-07-01 10:18:30','User',NULL,'all','0b4dc1d8631c2e9203b109e258ee7358',0,'2021-07-01 10:03:53'),(487,'s.pallard','3a477dce4c9b85b005106a7585d63ea1063b67ae','Simon','PALLARD',0,1,'2021-07-06 16:06:38','fr',NULL,'2021-07-01 11:45:27','2021-07-01 13:26:44','User',NULL,'all','0c553e0032a0907361afeefe8b151a75',0,'2021-07-01 11:45:27'),(489,'Arash','233da6b15ecf56e5ba5ca5c7cc6176292f7e64de','Arash','MORTEZA',0,1,'2023-02-16 10:52:03','fr',NULL,'2021-08-17 12:08:55','2021-08-19 14:49:40','User',NULL,'all','e16733a59a723fde8a97ac5ce69f1d86',0,'2021-08-17 12:08:55'),(490,'julien.monteil@suez.com','61b3e3166226462d0617e2b41d05a7233bd7bc01','Julien','MONTEIL',0,1,'2022-11-18 15:03:37','fr',NULL,'2021-08-19 11:08:51','2021-08-19 11:23:57','User',NULL,'all','1a38ac99db7650d6d770cc2a787cc2b4',0,'2021-08-19 11:08:51'),(491,'eduardomantovani','6e47f88d5e2d1d574138b7238d46d89062341109','Eduardo','Mantovani',0,2,NULL,'pt-BR',NULL,'2021-09-13 23:51:06','2021-09-13 23:51:06','User',NULL,'all','c1f77797600caaa1b3dbc508de7a22ff',0,'2021-09-13 23:51:06'),(492,'Gatine','bdfa4f009b94a12c1bd5e4ba18390fc8518c1812','Matthieu','GATINE',0,1,'2023-01-16 15:30:17','fr',NULL,'2021-09-22 16:41:17','2021-10-14 09:20:27','User',NULL,'all','77cb1b0993265057b9e93ad66043abf2',0,'2021-10-14 09:20:27'),(493,'damien.billot-mornet@fanuc.eu','5d34592c9bed5ab429c746e095b08d9223621fbd','Damien','Billot-Mornet',0,1,'2022-01-31 08:19:49','fr',NULL,'2021-09-27 11:26:48','2021-09-27 20:40:05','User',NULL,'all','43594f6be009b04875fade23ceafa1bd',0,'2021-09-27 11:26:48'),(494,'HWO','4c64afc99f12fc2e0865a7b8c582344424e933ed','Hervé','WOLFFER',0,2,NULL,'fr',NULL,'2021-10-12 22:11:38','2021-10-12 22:11:38','User',NULL,'all','0d4f2f167281881eac277d19cbde4b41',0,'2021-10-12 22:11:38'),(495,'Cronnier','b4d177d5d5029937a609dcf5aaebefa5206a8026','Matthieu','Cronnier',0,1,'2021-10-20 09:10:20','fr',NULL,'2021-10-14 09:20:55','2021-10-14 09:21:28','User',NULL,'all','2978e14fb757b898db1dcff3682cb908',0,'2021-10-14 09:20:55'),(496,'GOMEZ','4c00dca8e0dbc71881c02239dbba35ce25c4c28b','Marc','GOMEZ',0,1,'2023-02-15 17:08:14','fr',NULL,'2021-10-14 09:22:42','2021-10-14 09:23:27','User',NULL,'all','703fcb120e3060ba4b7d7ea181f31be0',0,'2021-10-14 09:22:42'),(497,'Padiolleau','6f4e4f48b1bcea1b9ef851c1f99ea1ac58423bb9','ERIC','PADIOLLEAU',0,1,'2021-10-20 10:39:02','fr',NULL,'2021-10-14 09:23:12','2021-10-14 09:24:52','User',NULL,'all','48493ed4e4540a48446146920b39b0f4',0,'2021-10-14 09:23:12'),(498,'abdellah.lamallem@cetim.fr','33f52589a6c9709cd1093c2fd44e5d1d53d95488','Abdellah','LAMALLEM',0,1,'2022-01-07 11:25:02','fr',NULL,'2021-10-14 09:23:26','2021-10-14 09:23:54','User',NULL,'all','c8ffd786f721905059161d6fdab55d24',0,'2021-10-14 09:23:26'),(499,'BARNABE','f5d8bb8faab108161dfa79d0515950d394d6ed42','françois','barnabe',0,1,'2021-10-20 18:48:55','fr',NULL,'2021-10-14 09:54:39','2021-10-14 09:56:22','User',NULL,'all','6b3a5d39a19d1b8e55f5d61071bf8ada',0,'2021-10-14 09:54:39'),(500,'RR','5f8e2334a8e0b16e8733a8c17709aa90cb091f50','Rémy','ROIGNOT',0,1,'2022-02-08 14:23:47','fr',NULL,'2021-10-14 10:49:59','2021-10-14 11:00:40','User',NULL,'all','606deca465993f865e9488355ca165df',0,'2021-10-14 10:49:59'),(501,'nicolas.bedouin','fa3b531f7e281e9a4f53a97863cdfbabb67e656c','Nicolas','Bedouin',0,1,'2021-10-20 16:11:53','fr',NULL,'2021-10-14 12:22:25','2021-10-14 12:23:25','User',NULL,'all','64d55f6d5d517ff231649011660d812d',0,'2021-10-14 12:22:25'),(502,'pierre.faverjon@pci.fr','81546bad092adb70b777c23aba8132eeace9d96d','Pierre','FAVERJON',0,1,'2021-10-20 13:19:05','fr',NULL,'2021-10-18 16:30:39','2021-10-18 16:33:19','User',NULL,'all','9f66f77e68ff7343b8e721d9b428704a',0,'2021-10-18 16:30:39'),(503,'nandan.chapa@imerys.com','a2475925fb5725ed909a2f9fbf42217d211ec4f5','Nandan','Chapa',0,1,'2023-02-16 13:55:54','en',NULL,'2021-10-20 05:57:30','2022-05-31 18:22:43','User',NULL,'all','fe2fce8f4548dbe391632ed3b70eca3f',0,'2022-05-31 18:22:43'),(504,'ODAUBIZIT','d92a2213cced51b74fef08f39a5d025fe07d7455','OLIVIER','DAUBIZIT',0,1,'2022-02-01 10:32:54','fr',NULL,'2021-10-20 08:11:49','2021-10-20 08:22:03','User',NULL,'all','f034314a5aa3a12e006d1a9f68ef85ac',0,'2021-10-20 08:11:49'),(505,'david.fabreguettes@imerys.com','46a90cf8819d236d795170dd10626ddcc0344f40','David','FABREGUETTES',0,1,'2022-12-01 14:52:22','en-GB',NULL,'2021-10-20 08:22:03','2021-10-26 09:32:31','User',NULL,'all','d6c0a8f70fa8669e1fd3a447171c2f93',0,'2021-10-20 08:22:03'),(506,'remy.pentier@imerys.com','d94aad328540e6b158aa0733618bb5ee846b3e15','Remy','Pentier',0,1,'2022-03-17 10:21:16','en',NULL,'2021-10-20 10:09:13','2021-10-26 09:32:40','User',NULL,'all','c4096875e338479a3fe913aff69a04e3',0,'2021-10-20 10:09:13'),(507,'OSAKKA','0054c859f59d4550509cec8357bdf958e61fae7c','Omar','SAKKA',0,1,'2022-04-21 10:27:42','fr',NULL,'2021-10-20 10:14:44','2021-10-26 09:39:19','User',NULL,'all','fe23446ba36c71cd481ed92fa074bb56',0,'2021-10-26 09:39:19'),(508,'mario','4e8032d8f7314c8402d017d66b5b6305d6ee31a6','Mario','Eltabach',0,1,'2021-10-20 16:11:14','fr',NULL,'2021-10-20 10:53:50','2021-10-20 10:54:20','User',NULL,'all','25e6d371bda3847f7eaca265fac5c4a6',0,'2021-10-20 10:53:50'),(509,'yabattache','116dee27f89d74367eb57d9a83f9141f22df5d78','Yannis','Battache',0,1,'2021-10-20 15:44:51','fr',NULL,'2021-10-20 15:42:53','2021-10-20 15:44:36','User',NULL,'all','8ef654c087f540b8f7ab9adca3bc2922',0,'2021-10-20 15:42:53'),(510,'sgreg','3b17c1d8eff9cc9fa34aebb5214c1600c78a0671','stéphane','Gregoire',0,1,'2023-02-16 08:56:38','fr',NULL,'2021-10-21 09:45:29','2021-10-26 09:32:42','User',NULL,'all','d2d61cbb52d79e4aa871e0260a6e6a13',0,'2021-10-21 09:45:29'),(511,'yelmo','87c191853a797aabc4ec2a228876340fe92eb898','yakhlef','el mokhtari',0,1,'2021-10-28 07:56:19','fr',NULL,'2021-10-22 08:50:37','2021-10-26 09:32:46','User',NULL,'all','011a603e9ab42524dd5a087daa5c7d17',0,'2021-10-22 08:50:37'),(512,'sunil','b761f8391909cb285f7fe47595f7e227d320d44f','Sunil','Yadav',0,1,'2022-08-09 15:44:25','en',NULL,'2021-10-26 09:25:39','2022-03-30 20:49:21','User',NULL,'all','e5a44abf34fcfd3ac036b727f0b7b851',0,'2022-03-30 20:49:21'),(513,'christophe.lemoullec@imerys.com','fa4031c60c0ff1779d11c0d22f7e3eeff6b085d2','christophe','Le Moullec',0,1,'2022-05-10 10:57:31','fr',NULL,'2021-10-26 09:33:28','2021-10-26 09:33:53','User',NULL,'all','c9732f4f5e69e7b7b7cb9d9800984024',0,'2021-10-26 09:33:28'),(514,'hbn','751b852991bbaf00b3b5704771b6316653e15abd','hedi','benothman',0,1,'2021-10-27 10:15:37','en',NULL,'2021-10-26 11:53:45','2021-10-26 11:54:40','User',NULL,'all','3726ac48958bc09c4110281ac14bdef1',0,'2021-10-26 11:53:45'),(515,'Ugo_M','6ee5523b91906f2a1c34ec7e00a392aea4f7cd1c','Ugo','Masciantonio',0,1,'2021-12-16 08:59:23','fr',NULL,'2021-10-29 16:50:26','2021-11-15 10:31:02','User',NULL,'all','f6827ca015838a4bf4ec8c20379f9d30',0,'2021-10-29 16:50:26'),(516,'marc.girbal','8ef9ce24322e5dcdbdb8416a094a5ed7fc0a91ed','Marc','GIRBAL',0,1,'2021-11-15 16:02:57','fr',NULL,'2021-11-15 10:31:04','2021-11-15 15:30:05','User',NULL,'all','e8b35321c8bd03a18cf14b70e0f6edb5',0,'2021-11-15 10:31:04'),(517,'bernard.mauclere@siemens.com','bab4928dff55f41420ed849e433a175a41adff78','Bernard','Mauclère',0,1,'2021-11-15 19:49:32','fr',NULL,'2021-11-15 14:35:40','2021-11-15 15:30:00','User',NULL,'all','835df3e14f4e66aec1c6baa4d11123bb',0,'2021-11-15 14:35:40'),(518,'phkoch','9de9bf3f7c3c9c3fe4351fa92b72783e9a60d6cc','Pierre-Henri','Koch',0,1,'2022-06-28 09:23:40','fr',NULL,'2021-11-15 15:30:35','2022-04-15 11:41:25','User',NULL,'all','a36d7b3db5daee19f16a1dd96c261902',0,'2022-04-15 11:41:25'),(519,'Exameca','1818c75dea7b351edbe08d6acab19747584f4015','Mesure','Exameca',0,1,'2022-01-13 14:09:25','fr',NULL,'2021-11-17 09:03:53','2021-11-17 09:05:42','User',NULL,'all','d3d2938bf0208cca98e120df2604d174',0,'2021-11-17 09:03:53'),(520,'xingjh','13f0471118f45bd9f4dbd96aff631ea920ec47e6','jinghong','xing',0,1,'2021-11-19 11:31:08','zh',NULL,'2021-11-19 02:41:39','2021-11-19 03:04:49','User',NULL,'all','0412df0b695238ce9aa66d25a10d324b',0,'2021-11-19 02:41:39'),(521,'achen','06a0c275278f14dcafc45781f061e909d9b05742','xiaowei','zhou',0,1,'2021-12-02 15:12:36','zh',NULL,'2021-12-02 15:11:04','2021-12-02 15:12:25','User',NULL,'all','08287430955ded177e10ad68bf737644',0,'2021-12-02 15:11:04'),(522,'broos42','72c6d71da8aa0f90f5d09a47d96938c56b168bf0','Bart','Roos',0,2,NULL,'nl',NULL,'2021-12-25 12:59:05','2021-12-25 12:59:05','User',NULL,'all','d77f21fea045355d11d4f66bcb60608a',0,'2021-12-25 12:59:05'),(523,'AmineIDAR22','2c14d100657a0db0c764b5ebdc3700ea39eaa79c','AMINE','IDAR',0,1,NULL,'fr',NULL,'2022-01-06 16:36:56','2022-02-28 14:03:15','User',NULL,'all','af1d6f76a66d9513dd35a0ef6dd15abc',0,'2022-01-06 16:36:56'),(524,'benoit.robellet@bontoux.com','8373de22fd7436a48bd19a9f2fd8a260fa8d56cb','Benoit','ROBELLET',0,1,'2022-05-06 16:13:45','fr',NULL,'2022-01-13 09:19:43','2022-01-13 09:56:53','User',NULL,'all','e8004fe0a253ab8463f9f302de9b5a9f',0,'2022-01-13 09:19:43'),(525,'virgiledesfosses','efb8c494b8f5048dac3a959d6cdd3e2cf708bee5','Virgile','DESFOSSES',0,1,'2022-06-16 15:47:01','fr',NULL,'2022-01-13 09:19:55','2022-01-13 11:02:33','User',NULL,'all','7febbde4601ae3473ae26d82978031a6',0,'2022-01-13 09:19:55'),(526,'JeremyL','805fa0c92cb813ba11b54e23d9202ce495c76a52','Jérémy','Lombard',0,1,'2022-12-01 14:16:29','fr',NULL,'2022-01-13 11:02:30','2022-01-13 11:03:59','User',NULL,'all','d43a147abe0a92fc90348e6ef52c4545',0,'2022-01-13 11:02:30'),(528,'cyril.dufour@bontoux.com','7810d7dd5a31035849f1ca89ab53ca4297e67d2c','Cyril','Dufour',0,1,'2023-01-17 09:15:05','fr',NULL,'2022-01-13 11:06:17','2022-03-03 09:45:46','User',NULL,'all','748ad2bc405beeec6155dcf4ea6931aa',0,'2022-03-03 09:45:46'),(529,'Larry','08d2cc12c12fc848d78250aa8336419abbc6f087','Larry','Zhang',0,1,'2022-01-18 14:08:11','en',NULL,'2022-01-18 14:02:44','2022-01-18 14:07:02','User',NULL,'all','6f2ae771084689af864e1e0f9c5296c1',0,'2022-01-18 14:02:44'),(530,'christober','722a2fcd7263be5887c74e496da94478fd5a6101','Christober','Rayappan',0,1,'2022-02-12 08:41:08','en',NULL,'2022-01-18 14:04:50','2022-01-18 14:06:12','User',NULL,'all','7dfa2af00eef19d84576de6f1ea7cdd0',0,'2022-01-18 14:04:50'),(531,'chirag.solanki','3be428ec7f406cd3b24b913adb304de30402c37c','Chirag','Solanki',0,1,'2022-08-04 11:34:37','en',NULL,'2022-01-18 14:07:44','2022-01-18 14:09:02','User',NULL,'all','4a6c0d95d427f3d3f469e2735de8d57a',0,'2022-01-18 14:07:44'),(532,'guillaumeogier','226fb8d56b446a4c62078492f6d074d2f65195d2','Guillaume','Ogier',0,1,'2022-05-24 15:48:21','en',NULL,'2022-01-18 14:08:05','2022-01-18 14:25:40','User',NULL,'all','bc736e01c71cd839955bf35729155b16',0,'2022-01-18 14:08:05'),(533,'a.peyraud','6e51773ede49c46c006d1ce63018a84cd33f3ca0','Alexandre','Peyraud',0,1,'2022-05-09 13:54:28','fr',NULL,'2022-01-18 15:11:12','2022-02-15 16:15:05','User',NULL,'all','0dabc1b4c1ec6dbeda212f18ca58b297',0,'2022-01-18 15:11:12'),(534,'volpemi1','b2e974f40875555a82abba73be947d375fb62b98','Marco','Volpe',0,1,'2022-02-02 09:32:29','fr',NULL,'2022-02-02 09:30:51','2022-02-02 09:31:54','User',NULL,'all','e24a96bd15ded5ffb7922d5dc1728728',0,'2022-02-02 09:30:51'),(535,'cmr.be@orange.fr','13527eeda954be6ede7083ca353457e35cc30f2e','Olivier','Rousseau',0,1,'2022-02-27 16:11:15','fr',NULL,'2022-02-03 14:05:01','2022-02-03 14:05:44','User',NULL,'all','2dd04034f09761e7d996e31f82238ac5',0,'2022-02-03 14:05:01'),(536,'michael.bousquet@fr.bosch.com','69c313a0587102d8fbb229049283f35b1041d605','Mickaël','BOUSQUET',0,1,'2022-03-24 13:24:57','fr',NULL,'2022-02-28 08:22:58','2022-02-28 09:03:36','User',NULL,'all','c4f5298281f91f597f652bd1bb4dbb5b',0,'2022-02-28 08:22:58'),(537,'PascalBosch','66c3ee84e5ff799ea9dc176a0a1c693724406db0','pascal','gantou',0,1,'2022-03-24 15:25:10','fr',NULL,'2022-02-28 08:25:56','2022-03-22 09:05:37','User',NULL,'all','e59f8d660b33ea11494f97ce15d43ee3',0,'2022-03-22 09:05:37'),(538,'alexandreTEF','77a2d8f8f23d5cce83872295fef64cee842fc1e9','Alexandre','Turquet',0,1,'2022-03-24 13:07:51','fr',NULL,'2022-02-28 08:27:43','2022-02-28 09:03:28','User',NULL,'all','5c9dec7d3afd0a6b4fa2717f959d6ba8',0,'2022-02-28 08:27:43'),(539,'caf9rz','6c380be04ce8729306be2662239a143e912f9d00','Fabien','CASTELLA',0,1,'2022-09-15 15:14:40','fr',NULL,'2022-02-28 09:22:23','2022-02-28 09:24:26','User',NULL,'all','3bb9b76bbdbe9e3b8123988b8b88ef6b',0,'2022-02-28 09:22:23'),(540,'esy9rz','4d5edd3347bfe35c21f7515d3b4a194eda0d61e4','Yohan','Espié',0,1,'2022-03-24 14:18:32','fr',NULL,'2022-02-28 14:00:15','2022-02-28 14:01:13','User',NULL,'all','202e63e5a59f04fcb6fd30d2b191f421',0,'2022-02-28 14:00:15'),(541,'myc9rz','705623c8e3cc859bc4f02a94ed22a25fce6cdb84','Christian','Marty',0,1,'2022-03-24 13:22:49','fr',NULL,'2022-02-28 14:00:45','2022-02-28 14:01:15','User',NULL,'all','5d9c234fd3a756fb9a65ef5c74f89dfb',0,'2022-02-28 14:00:45'),(542,'bol9rz','38df8106753286653b426e6776b5702279620f63','lionel','BOU',0,1,'2022-03-24 13:21:20','fr',NULL,'2022-02-28 14:01:13','2022-02-28 14:01:18','User',NULL,'all','a50ed211bb710f2f157155e213fd735e',0,'2022-02-28 14:01:13'),(543,'ilya.gridin','f12734ca7280f2f202d56a74507f3d6cf907e90c','Ilya','Gridin',0,1,'2022-03-01 08:43:05','en',NULL,'2022-02-28 14:02:07','2022-02-28 14:02:37','User',NULL,'all','4840b80eb34ac4acd86012000a053ddb',0,'2022-02-28 14:02:07'),(544,'Laurent.Hermet@fr.bosch.com','99791cb67ad7fabc66659aa2004d876aa0d866e1','Laurent','Hermet',0,1,'2022-03-24 13:44:17','fr',NULL,'2022-02-28 14:03:27','2022-02-28 14:03:57','User',NULL,'all','f0abf68eb0596db3ecb312014177250e',0,'2022-02-28 14:03:27'),(545,'khaled.noomani@inetum.com','83bed20100e3e4ad87704d6cedc50a0a79845dfb','khaled','NOOMANI',0,1,'2022-09-12 18:07:44','fr',NULL,'2022-03-08 11:06:38','2022-03-08 12:05:42','User',NULL,'all','e9031a962e3eb0489d32ebcc1fec6c06',0,'2022-03-08 11:06:38'),(546,'TRUONG_Daniel','b5905d75cb91d9ffeaf4793eb5aa7d713a98c71c','Daniel','*truong',0,1,'2022-09-07 16:15:02','fr',NULL,'2022-03-08 14:57:20','2022-03-11 16:07:09','User',NULL,'all','de4c55d7c6c2163a834c8db35692ff60',0,'2022-03-08 14:57:20'),(547,'gabrielvarachaud','8140d4b8c73a7a4fb6a7dd8f287c2bd5e4dfc03c','Gabriel','Varachaud',0,2,NULL,'fr',NULL,'2022-03-13 23:30:46','2022-03-13 23:30:46','User',NULL,'all','26fe6ec1d5d78c5ceffacde722138aa9',0,'2022-03-13 23:30:46'),(548,'lpsn','f0655f1396fa600b6b0c3924079133b9d0ceb02d','Loïc','Person',0,1,'2023-02-17 18:35:58','fr',NULL,'2022-03-17 17:44:39','2022-03-21 09:39:28','User',NULL,'all','19b54198398509998404c24a552535ac',0,'2022-03-21 09:39:28'),(549,'npierson','bc51453122ff2bf7085be2aa05d68a4b174c4316','Nicolas','Pierson',0,1,'2023-02-17 13:38:24','fr',NULL,'2022-03-25 14:45:25','2022-03-25 14:49:15','User',NULL,'all','37973ccfed61f29c6fd017f040acdcc3',0,'2022-03-25 14:45:25'),(550,'GillesID','715c8476e21d4e8720348353d9d1f55fa2292934','Gilles','Barrioz',0,1,'2022-11-29 07:58:28','fr',NULL,'2022-03-25 15:33:11','2022-04-08 14:18:46','User',NULL,'all','358f897bcbcf96fe5d5ba70ce88aba6c',0,'2022-04-08 14:18:46'),(551,'rgirault','8f4c44516031128a169e7563721c09531b69c42d','Raynald','GIRAULT',0,1,'2022-06-24 19:27:03','fr',NULL,'2022-03-28 08:18:43','2022-03-28 08:19:12','User',NULL,'all','17c9b654d9dd78c0eeac1b2721d10561',0,'2022-03-28 08:18:43'),(552,'rdavid','ef95c097cfff0aa46d39076c36824db51ba500eb','Romain','DAVID',0,1,'2023-01-12 17:20:15','fr',NULL,'2022-03-28 08:47:52','2022-03-28 09:02:06','User',NULL,'all','6760afd8d7374b08bfa2c9ea036aaf9e',0,'2022-03-28 08:47:52'),(553,'ybachelet','ac6f4161a88b1891ff8cfc23bfdc1ab37eb5456e','Yannick','BACHELET',0,1,'2023-01-23 16:38:32','fr',NULL,'2022-03-29 09:02:29','2022-03-29 09:03:43','User',NULL,'all','c726651287115651fc17c6d68b710af2',0,'2022-03-29 09:02:29'),(554,'rhernandez','a674df7312c53c58ca9a7bfaf1474cd43a4ba455','Rémy','Hernandez',0,1,'2022-04-12 08:51:07','fr',NULL,'2022-03-29 09:06:27','2022-03-29 09:07:20','User',NULL,'all','ab16c9e7490f3f08cfcd23c8e83031fb',0,'2022-03-29 09:06:27'),(555,'mripert','558ecd3ddd58439d42ef0c307d23b0546c4b7ec5','Micaël','RIPERT',0,1,'2022-04-12 09:10:06','fr',NULL,'2022-03-29 09:06:55','2022-03-29 09:07:22','User',NULL,'all','a36bbfb43488727b6ed8a8282ea7ba0f',0,'2022-03-29 09:06:55'),(556,'pierre.moreau@editag.eu','4fa7d79d28afcba5c83cac27e69b2f3ea0f1d3d0','Pierre','Moreau',0,1,'2022-04-14 23:13:29','fr',NULL,'2022-03-29 09:06:56','2022-03-29 09:07:16','User',NULL,'all','ca9e276be47b163ac513ac5afdd50871',0,'2022-03-29 09:06:56'),(557,'cdemongeot','efd0672f05c0ae748450aea26015702fafce75f4','Céline','DEMONGEOT',0,1,'2022-03-29 09:15:22','fr',NULL,'2022-03-29 09:13:02','2022-03-29 09:14:34','User',NULL,'all','7765687fa67537240653de8c73c4e6f4',0,'2022-03-29 09:13:02'),(558,'eric','b0d045ee4acf25bfb114fa55f88a7ebd0d0ba098','Eric','GATTO',0,1,'2022-10-18 21:46:19','fr',NULL,'2022-03-29 09:16:18','2022-03-29 09:20:17','User',NULL,'all','73aac96f9f102e19bee0f7e912343625',0,'2022-03-29 09:16:18'),(559,'MC','1e065dc136776e6d19a2c446adb6b510519b6422','MC','MC',0,2,NULL,'fr',NULL,'2022-04-06 16:05:31','2022-04-06 16:05:31','User',NULL,'all','27f1dd6f49507426b9c8d9f76ba7fbee',0,'2022-04-06 16:05:31'),(560,'fortry','583b93434b32180fcfe685645182305c636e9bcd','js','sun',0,2,NULL,'ko',NULL,'2022-04-12 03:55:40','2022-04-12 03:55:40','User',NULL,'all','d1c2b265ef66b7339a5200c1d28d1be2',0,'2022-04-12 03:55:40'),(561,'jssun','8102e1192f0041bfdd2185a5eab89e7691393607','js','sun',0,2,NULL,'ko',NULL,'2022-04-12 03:58:25','2022-04-12 03:58:25','User',NULL,'all','7c7e58e879750ef677b92037eaf2c6e1',0,'2022-04-12 03:58:25'),(562,'C.PAGAND','3c5703b937fa16d706dfd088e24011ed19534582','Camille','Pagand',0,1,'2022-04-28 10:06:55','fr',NULL,'2022-04-26 13:43:24','2022-04-26 17:13:02','User',NULL,'all','17d19b97b076048a234765c7cd3ceb9a',0,'2022-04-26 13:43:24'),(563,'Davidoq','cb70f307ee0efa2a5b14e406ff487f2b67824bd6','David','OQUIDAN',0,1,'2022-05-02 08:18:29','fr',NULL,'2022-04-26 16:21:33','2022-04-26 17:15:39','User',NULL,'all','3573733170387706749a0d6951e822eb',0,'2022-04-26 17:15:39'),(564,'EddyBou','bb99723adaea014d15082ce6c991aa233443d5b9','Eddy','Bouima',0,1,'2022-05-02 14:28:04','fr',NULL,'2022-04-28 09:02:19','2022-04-28 10:03:40','User',NULL,'all','120737b17fba63a258d29c6ecb99b8ea',0,'2022-04-28 09:02:19'),(565,'valentin.dufief','53b4a790fc017dece7bba918e4e9c9b98148360c','Valentin','DUFIEF',0,1,'2023-02-17 09:34:23','fr',NULL,'2022-05-03 09:13:37','2022-05-03 10:12:23','User',NULL,'all','4506876a74b5d45c699e9f4ead8c6abe',0,'2022-05-03 09:13:37'),(566,'l.roux@tiama.com','43fd36a024a30c9e848baadc27b4f557ae552adf','Lauriane','ROUX',0,1,'2022-05-10 09:36:50','fr',NULL,'2022-05-03 16:09:55','2022-05-03 16:10:08','User',NULL,'all','550bb2669e33dc540a22c93dce22cf3b',0,'2022-05-03 16:09:55'),(567,'belhadjameur@gmail.com','cfb3b66cbad3aea25213ed978fd4c053de0d8ed4','Ameur','BELHADJ',0,1,'2022-05-11 09:55:00','fr',NULL,'2022-05-03 16:10:02','2022-05-03 16:10:37','User',NULL,'all','8dd572c631a1282237e06d23c37f4ba9',0,'2022-05-03 16:10:02'),(568,'F.OLLIVIER','f883f5ef8e0d0aeadd45f1fc673a28c50b173f07','FREDERIC','OLLIVIER',0,1,'2022-05-12 16:15:27','fr',NULL,'2022-05-03 16:10:13','2022-05-03 16:10:31','User',NULL,'all','54011716ef552d52a228ffe85db913c6',0,'2022-05-03 16:10:13'),(569,'gbadaut','a2da1df3dce695e49fe2bb25f9ca6332aeef543a','Guillaume','Badaut',0,1,'2022-05-11 09:09:43','fr',NULL,'2022-05-03 16:11:21','2022-05-03 16:13:10','User',NULL,'all','2d6c9e8a05b3e5dca35931f756fadb17',0,'2022-05-03 16:11:21'),(570,'FabDes','0735907220e7a69d9d670667dc5fa16d72303cd5','Fabrice','DESTREBECQ',0,1,'2022-05-23 08:33:44','fr',NULL,'2022-05-03 16:12:02','2022-05-03 16:13:15','User',NULL,'all','30f3078320a23b38f2715ac884c29f78',0,'2022-05-03 16:12:02'),(571,'radekkapica','059f239393f9b8c4cb2f90f9a93dce67dbf6c665','Radek','Kapica',0,2,NULL,'en',NULL,'2022-05-24 14:51:14','2022-05-24 14:51:14','User',NULL,'all','4d36e2ca473cb1c0f0afcca8affaafbb',0,'2022-05-24 14:51:14'),(572,'ermanomurca','451f9b318a90ecb8a942c2bc36f17b5c88b37d50','Erman','Omurca',0,1,'2022-09-23 13:21:58','en',NULL,'2022-06-14 10:34:54','2022-06-14 11:37:11','User',NULL,'all','5b28a19b91d78db4537093780b607830',0,'2022-06-14 10:34:54'),(573,'semih.uygunturk@imerys.com','21addebe58f8ecef33df63bc86a8b1d2bce780cb','semih','uygunturk',0,1,'2023-02-17 10:59:47','en',NULL,'2022-06-23 16:10:01','2022-11-30 14:09:43','User',NULL,'all','b70c0b7a608a73cae89586cf5560e43e',0,'2022-11-30 14:09:43'),(574,'thomas.vervaeke@cetim.fr','a6572e70d59461445d82469ee7254931a728ec29','thomas','vervaeke',0,1,'2022-07-13 10:03:40','fr',NULL,'2022-07-05 09:01:13','2022-07-05 09:01:51','User',NULL,'all','01a3c79adf1954d99924fc93384c47ca',0,'2022-07-05 09:01:13'),(575,'Techpap','30509b89163eb1262f7aee4fb43fdbef81944e6b','didier','rech',0,1,'2022-07-22 08:55:47','fr',NULL,'2022-07-12 11:40:50','2022-07-12 13:19:02','User',NULL,'all','a8a5f9316f4718d78e62300900444e37',0,'2022-07-12 11:40:50'),(576,'cce','30ca665cbff2797281dbdb57181c994a8ce71c7a','Giorgio','Rusconi',0,1,'2022-07-29 17:03:44','en-GB',NULL,'2022-07-29 14:08:19','2022-07-29 14:09:29','User',NULL,'all','f85717b9caee37728b5d22530b95612f',0,'2022-07-29 14:08:19'),(577,'SODEL','72d920a471dafc0cf0285d5ec2aea4c112ffc51e','Didier','CHAFFAT',0,1,'2022-08-02 16:56:41','fr',NULL,'2022-08-02 16:43:40','2022-08-02 16:56:26','User',NULL,'all','2e82ecf0fec36a68fbe3ecc5d7b8e09b',0,'2022-08-02 16:43:40'),(578,'asaidani2','b3336921752176ea7e3c9e6b43faf823181a6f8a','Abdelrahman','Saidani',0,1,'2022-09-08 08:53:41','fr',NULL,'2022-09-07 17:35:05','2022-09-07 18:12:23','User',NULL,'all','a3a25de4d83e7e6404af64aebcb67e28',0,'2022-09-07 17:35:05'),(579,'dberoujon','d99e4dcb5df93732ce5d301096aa302efb19c572','Dominique','BEROUJON',0,1,'2022-09-30 17:56:09','fr',NULL,'2022-09-30 17:50:43','2022-09-30 17:55:53','User',NULL,'all','da561c33239dfa426fcf05b0da57a65d',0,'2022-09-30 17:50:43'),(580,'alaurent','7a3fe15083212f0fd0e07d44e5d18273221c235c','alexandre','LAURENT',0,1,'2022-12-19 15:08:14','fr',NULL,'2022-12-19 14:21:39','2022-12-19 15:08:03','User',NULL,'all','d92c2408aa205a9c7340e5503e228954',0,'2022-12-19 14:21:39'),(581,'diegoconti','054257305d30c41d4d3e68c89724b3d70adf31bb','Diego','Conti',0,2,NULL,'en',NULL,'2023-01-22 17:47:21','2023-01-22 17:47:21','User',NULL,'all','a7e90d966edf7dd4fa72f2c35242e187',0,'2023-01-22 17:47:21');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `versions`
--
DROP TABLE IF EXISTS `versions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `versions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) DEFAULT '',
`effective_date` date DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`updated_on` datetime DEFAULT NULL,
`wiki_page_title` varchar(255) DEFAULT NULL,
`status` varchar(255) DEFAULT 'open',
`sharing` varchar(255) NOT NULL DEFAULT 'none',
PRIMARY KEY (`id`),
KEY `versions_project_id` (`project_id`),
KEY `index_versions_on_sharing` (`sharing`)
) ENGINE=InnoDB AUTO_INCREMENT=317 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `versions`
--
LOCK TABLES `versions` WRITE;
/*!40000 ALTER TABLE `versions` DISABLE KEYS */;
INSERT INTO `versions` VALUES (1,44,'1.0.2.7','OpenOpcUa 1.0.2.7 casebase','2015-05-01','2015-04-02 09:12:59','2015-04-02 09:12:59','','open','none'),(2,46,'OpenOpcUaCoreServer 1.0.2.6','New server version codebase with minor evolution','2015-04-03','2015-04-03 08:36:57','2015-04-03 08:36:57','','open','none'),(3,46,'1.0.2.6 fixes','The new version releasee today fix couple of bug','2015-04-03','2015-04-03 15:14:36','2015-04-03 15:14:36','','open','none'),(4,1,'1.5','Refactoring of the code and independent Nodemanager','2015-09-01','2015-04-10 22:11:05','2015-04-10 22:11:05','','open','system'),(5,46,'OpenOpcUa 1.0.2.8','Codebase ver 1.0.2.8 ','2015-06-05','2015-06-03 15:11:36','2015-06-03 15:11:36','','open','none'),(6,47,'Beta 1','Version beta 1 of the configurator','2015-06-09','2015-08-09 12:37:31','2015-08-09 12:37:31','','closed','none'),(7,47,'Beta 2','Version beta 2 of the configurator','2015-07-03','2015-08-09 12:38:19','2015-08-09 12:38:19','','closed','none'),(8,46,'OpenOpcUaConfigManager Beta3','Version beta 3 of the configurator','2015-08-13','2015-08-13 17:17:07','2015-08-13 17:17:07','','open','system'),(9,46,'OpenOpcUaClientSdk_1_0_2_9','OpenOpcUa 1.0.2.9 ClientSdk Beta1',NULL,'2015-09-03 10:31:22','2015-09-03 10:31:22','','open','system'),(10,46,'OpenOpcUaConfigManager Beta4','Version beta 4 of the configurator','2015-09-14','2015-09-14 11:18:52','2015-09-14 11:18:52','','open','system'),(11,46,'Documentation','OpenOpcUa Documentation',NULL,'2015-11-03 13:23:56','2015-11-03 13:23:56','','open','none'),(12,46,'OpenOpcUa_1_0_3_2','Codebase nov 2015','2015-11-11','2015-11-11 17:22:32','2015-11-11 17:22:32','','open','none'),(13,46,'OpenOpcUa 1.0.4.0','Codebase dec 2015 ','2015-12-25','2015-12-10 16:39:30','2015-12-10 16:39:30','','open','system'),(14,46,'UAFlexClient','The OPCUA flexible client','2016-05-17','2016-05-15 23:49:50','2016-05-15 23:49:50','','open','none'),(15,46,'OpenOpcUa 1.0.4.1','Codebase 1.0.4.1','2016-06-21','2016-06-21 19:57:12','2016-06-21 19:57:12','','open','none'),(16,46,'OpenOpcUa 1.0.4.2','Codebase 1.0.4.2','2016-07-11','2016-07-11 10:48:59','2016-07-11 10:48:59','','open','system'),(17,49,'OpenOpcUa Version 64bits','Version 64bits','2016-09-29','2016-08-03 14:40:27','2016-08-03 14:40:27','','open','none'),(18,49,'VpiMdbMaster string support','','2016-08-05','2016-08-03 14:41:41','2016-08-03 14:41:41','','open','none'),(19,49,'VpiUaClnt','Vpi UA Client','2016-08-19','2016-08-03 15:06:32','2016-08-03 15:06:32','','open','none'),(20,46,'OpenOpcUa 1.0.4.3','Version 1.0.4.3','2016-09-29','2016-09-22 08:15:17','2016-09-22 08:15:17','','open','none'),(21,48,'VpiS7','',NULL,'2016-09-22 17:24:55','2016-09-22 17:24:55','','open','none'),(22,48,'VpiCooperl','',NULL,'2016-09-22 17:25:04','2016-09-22 17:25:04','','open','none'),(23,48,'VpiRest','',NULL,'2016-09-22 17:25:12','2016-09-22 17:25:12','','open','none'),(24,46,'OpenOpcUa 1.0.4.4','Codebase Fall 2016','2016-10-12','2016-10-12 13:32:42','2016-10-12 13:32:42','','open','none'),(25,48,'Projet 2016','',NULL,'2016-10-12 14:39:48','2016-10-12 14:39:48','','open','none'),(26,48,'VpiUaClnt','Vpi UA Client for UA server aggregation',NULL,'2016-10-17 16:30:04','2016-10-17 16:30:04','','open','none'),(27,50,'VpiEthIp','VpiEthernet/Ip for OpenOpcUa and RA PLCs',NULL,'2016-11-04 15:29:00','2016-11-04 15:29:00','','open','none'),(28,50,'Documentation','',NULL,'2016-11-04 15:29:14','2016-11-04 15:29:14','','open','none'),(29,47,'OpenOpcUaConfigManager 1.0','',NULL,'2016-11-16 08:25:55','2016-11-16 08:25:55',NULL,'open','none'),(30,49,'Suivi Projet','',NULL,'2016-11-16 14:19:59','2016-11-16 14:19:59','','open','none'),(31,50,'Outils','Autres outils',NULL,'2016-11-17 17:12:47','2016-11-17 17:12:47','','open','none'),(32,46,'OpenOpcUa 1.0.4.6','OpenOpcUa 1.0.4.6 codebase',NULL,'2016-12-19 10:40:34','2016-12-19 10:40:34','','open','none'),(33,1,'OpenOpcUa Schema','Schemas used in OpenOpcUa Client and server',NULL,'2016-12-19 17:56:06','2016-12-19 17:56:06','','open','none'),(34,49,'Client OPCUA','',NULL,'2016-12-20 10:19:47','2016-12-20 10:19:47','','open','none'),(35,49,'Binaries','OpenOpcUa Binaries',NULL,'2017-03-21 14:46:04','2017-03-21 14:46:04','','open','none'),(36,49,'Demo','',NULL,'2017-03-27 18:41:23','2017-03-27 18:41:23','','open','none'),(37,46,'OpenOpcUa 1.0.4.7','',NULL,'2017-04-03 18:14:20','2017-04-03 18:14:20','','open','none'),(38,51,'Documentation','Documentation',NULL,'2017-04-05 13:46:28','2017-04-05 13:46:28','','open','none'),(39,51,'Binaries','',NULL,'2017-04-05 13:46:41','2017-04-05 13:46:41','','open','none'),(40,51,'Various','',NULL,'2017-04-05 13:46:57','2017-04-05 13:46:57','','open','none'),(41,51,'Sources','',NULL,'2017-04-05 14:20:39','2017-04-05 14:20:39','','open','none'),(42,49,'Meeting','',NULL,'2017-05-03 15:13:47','2017-05-03 15:13:47','','open','none'),(43,51,'Meeting','',NULL,'2017-05-18 17:17:27','2017-05-18 17:17:27','','open','none'),(44,52,'Configuration','',NULL,'2017-06-12 15:09:58','2017-06-12 15:09:58','','open','none'),(45,52,'Documentation','',NULL,'2017-06-12 15:10:08','2017-06-12 15:10:08','','open','none'),(46,52,'Binaries','',NULL,'2017-06-12 15:10:16','2017-06-12 15:10:16','','open','none'),(47,48,'CooperlBox -Moxa','',NULL,'2017-06-14 01:53:39','2017-06-14 01:53:39','','open','none'),(48,53,'Documentation','',NULL,'2017-06-20 09:23:25','2017-06-20 09:23:25','','open','none'),(49,53,'Binairies','',NULL,'2017-06-20 09:23:38','2017-06-20 09:23:38','','open','none'),(50,53,'NodeSet','',NULL,'2017-06-20 10:41:13','2017-06-20 10:41:13','','open','none'),(51,53,'SDK','',NULL,'2017-06-22 11:06:35','2017-06-22 11:06:35','','open','none'),(52,53,'Demo','Various demon',NULL,'2017-07-03 14:36:58','2017-07-03 14:36:58','','open','none'),(53,53,'Tools','',NULL,'2017-07-03 15:38:10','2017-07-03 15:38:10','','open','none'),(54,48,'Sources','',NULL,'2017-07-11 14:22:37','2017-07-11 14:22:37','','open','none'),(55,52,'Demo','Various demo',NULL,'2017-07-27 15:27:33','2017-07-27 15:27:33','','open','none'),(56,51,'Demo','',NULL,'2017-08-02 18:00:38','2017-08-02 18:00:38','','open','none'),(57,54,'Binaries','',NULL,'2017-09-01 10:55:04','2017-09-01 10:55:04','','open','none'),(58,54,'Documentation','',NULL,'2017-09-01 10:55:14','2017-09-01 10:55:14','','open','none'),(59,54,'Demo','',NULL,'2017-09-01 10:55:29','2017-09-01 10:55:29','','open','none'),(60,49,'Source','',NULL,'2017-09-06 17:47:20','2017-09-06 17:47:20','','open','none'),(61,54,'Sources','',NULL,'2017-09-13 09:44:27','2017-09-13 09:44:27','','open','none'),(62,55,'Documentation','',NULL,'2017-09-17 15:57:09','2017-09-17 15:57:09','','open','none'),(63,51,'VpiUaClient 1.0.0.1','',NULL,'2017-09-18 19:56:52','2017-09-18 19:56:52','','open','system'),(64,54,'Calls','',NULL,'2017-09-20 12:41:08','2017-09-20 12:41:08','','open','none'),(65,56,'Sources','',NULL,'2017-10-01 16:28:17','2017-10-01 16:28:17','','open','none'),(66,56,'Documentation','',NULL,'2017-10-01 16:28:26','2017-10-01 16:28:26','','open','none'),(67,56,'Demo','',NULL,'2017-10-01 16:28:33','2017-10-01 16:28:33','','open','none'),(68,56,'Suivi Projet','',NULL,'2017-10-02 16:57:18','2017-10-02 16:57:18','','open','none'),(69,48,'Demo','',NULL,'2017-10-19 10:00:13','2017-10-19 10:00:13','','open','none'),(70,56,'Binaries','',NULL,'2017-10-26 11:34:42','2017-10-26 11:34:42','','open','none'),(71,51,'OpenOpcUa 1.0.5.2','',NULL,'2017-11-08 18:23:46','2017-11-08 18:23:46','','open','system'),(72,48,'Binaries','',NULL,'2017-11-14 10:50:10','2017-11-14 10:50:10','','open','none'),(73,49,'NodeSet','',NULL,'2017-12-01 17:44:35','2017-12-01 17:44:35','','open','none'),(74,57,'Demo','',NULL,'2017-12-05 10:51:59','2017-12-05 10:51:59','','open','none'),(75,57,'Binaries','',NULL,'2017-12-05 10:52:10','2017-12-05 10:52:10','','open','none'),(76,57,'Documentation','',NULL,'2017-12-05 10:52:19','2017-12-05 10:52:19','','open','none'),(77,57,'Meeting','',NULL,'2017-12-05 12:52:33','2017-12-05 12:52:33','','open','none'),(78,48,'Cooperl Test','OPC Windows (Test cooperl)',NULL,'2017-12-18 09:43:18','2017-12-18 09:49:26','','open','none'),(79,57,'Source','',NULL,'2017-12-19 09:10:00','2017-12-19 09:10:00','','open','none'),(80,58,'Binairies','',NULL,'2018-01-04 13:48:15','2018-01-04 13:48:15','','open','none'),(81,58,'Demo','',NULL,'2018-01-04 13:48:22','2018-01-04 13:48:22','','open','none'),(82,58,'Source','',NULL,'2018-01-04 13:48:31','2018-01-04 13:48:31','','open','none'),(83,58,'Doc','',NULL,'2018-01-04 13:48:37','2018-01-04 13:48:37','','open','none'),(84,58,'Tools','',NULL,'2018-01-04 13:48:51','2018-01-04 13:48:51','','open','none'),(85,46,'OpenOpcUa 1.0.5.2','',NULL,'2018-01-24 22:21:33','2018-01-24 22:51:46','','open','none'),(86,59,'Documentation','',NULL,'2018-02-07 14:38:20','2018-02-07 14:38:20','','open','none'),(87,59,'Demo','',NULL,'2018-02-07 14:38:29','2018-02-07 14:38:29','','open','none'),(88,59,'Binaries','',NULL,'2018-02-07 14:38:40','2018-02-07 14:38:40','','open','none'),(89,59,'Sources','',NULL,'2018-02-07 14:38:49','2018-02-07 14:38:49','','open','none'),(90,60,'Documentation','',NULL,'2018-03-15 16:43:35','2018-03-15 16:43:35','','open','none'),(91,60,'Binaries','',NULL,'2018-03-15 16:43:46','2018-03-15 16:43:46','','open','none'),(92,60,'Demo','',NULL,'2018-03-15 16:43:54','2018-03-15 16:43:54','','open','none'),(93,56,'Projets','',NULL,'2018-04-09 10:02:08','2018-04-09 10:02:08','','open','none'),(94,51,'OpenOpcUa 1.0.5.4','',NULL,'2018-05-16 12:44:21','2018-05-16 12:44:21','','open','none'),(95,61,'Binaries','',NULL,'2018-05-17 08:54:39','2018-05-17 08:54:39',NULL,'open','none'),(96,61,'Documentation','',NULL,'2018-05-17 08:54:49','2018-05-17 08:54:49',NULL,'open','none'),(97,61,'Demo','',NULL,'2018-05-17 08:54:58','2018-05-17 08:54:58',NULL,'open','none'),(98,61,'Sources','',NULL,'2018-05-17 08:55:20','2018-05-17 08:55:20',NULL,'open','none'),(99,62,'Demo','',NULL,'2018-05-30 13:52:45','2018-05-30 13:52:45','','open','none'),(100,62,'Documentation','',NULL,'2018-05-30 13:54:24','2018-05-30 13:54:24','','open','none'),(101,62,'Sources','',NULL,'2018-05-30 13:55:03','2018-05-30 13:55:03','','open','none'),(102,62,'Binaries','',NULL,'2018-05-30 13:55:16','2018-05-30 13:55:16','','open','none'),(103,60,'Sources','',NULL,'2018-06-06 14:12:43','2018-06-06 14:12:43','','open','none'),(104,62,'Suivi Projet','',NULL,'2018-06-28 14:50:43','2018-06-28 14:50:43','','open','none'),(105,46,'OpenOpcUa 1.0.5.5','',NULL,'2018-07-27 15:00:47','2018-07-27 15:00:47','','open','none'),(106,63,'Sources','',NULL,'2018-07-30 11:58:15','2018-07-30 11:58:30',NULL,'open','none'),(107,63,'Documentation','',NULL,'2018-07-30 11:58:43','2018-07-30 11:58:43',NULL,'open','none'),(108,63,'Binairies','',NULL,'2018-07-30 11:58:53','2018-07-30 11:58:53',NULL,'open','none'),(109,63,'Demo','',NULL,'2018-07-31 17:30:33','2018-07-31 17:30:33',NULL,'open','none'),(110,56,'VpiTycoEx','',NULL,'2018-09-19 17:40:43','2018-09-19 17:40:43','','open','none'),(111,49,'Outils','',NULL,'2018-09-25 16:26:20','2018-09-25 16:26:20','','open','none'),(112,46,'Schema','',NULL,'2018-09-30 18:48:09','2018-09-30 18:48:09','','open','none'),(113,46,'OpenOpcUa 1.0.5.6','',NULL,'2018-10-17 13:45:57','2019-01-08 13:49:18','','open','none'),(114,64,'Binairies','',NULL,'2018-10-24 11:11:21','2018-10-24 11:11:21',NULL,'open','none'),(115,64,'Documentation','',NULL,'2018-10-24 11:11:29','2018-10-24 11:11:29',NULL,'open','none'),(116,56,'VpiTyco','',NULL,'2018-12-18 15:21:54','2018-12-18 15:21:54','','open','none'),(117,52,'Wrapper OLW','',NULL,'2019-01-16 12:14:41','2019-01-16 12:14:41','','open','none'),(118,56,'OpenOpcUaConfigManager','',NULL,'2019-02-01 15:13:38','2019-02-01 15:13:38','','open','none'),(119,46,'OpenOpcUa 1.0.5.7','',NULL,'2019-02-17 07:56:16','2019-02-17 07:56:16','','open','none'),(120,46,'Binairies','',NULL,'2019-02-17 07:56:32','2019-02-17 07:56:32','','open','none'),(121,66,'FORMATION','',NULL,'2019-04-03 08:35:58','2019-04-03 08:35:58',NULL,'open','none'),(122,65,'Binaries','',NULL,'2019-04-03 17:25:09','2019-04-03 17:25:09',NULL,'open','none'),(123,65,'LIVRABLES','',NULL,'2019-04-03 23:43:08','2019-04-03 23:43:08',NULL,'open','none'),(124,67,'Doc','',NULL,'2019-07-10 15:41:07','2019-07-10 15:41:07','','open','none'),(125,67,'Source','',NULL,'2019-07-10 15:41:20','2019-07-10 15:41:20','','open','none'),(126,67,'Binaries','',NULL,'2019-07-10 15:41:34','2019-07-10 15:41:34','','open','none'),(127,66,'Etude','',NULL,'2019-09-02 13:12:31','2019-09-02 13:12:31',NULL,'open','none'),(128,66,'Tools','',NULL,'2019-09-04 15:51:58','2019-09-04 15:51:58',NULL,'open','none'),(129,68,'Documentation','',NULL,'2019-10-09 10:42:08','2019-10-09 10:42:08',NULL,'open','none'),(130,68,'Binaries','',NULL,'2019-10-09 10:42:20','2019-10-09 10:42:20',NULL,'open','none'),(131,68,'Sources','',NULL,'2019-10-09 10:42:28','2019-10-09 10:42:28',NULL,'open','none'),(132,68,'Demo','',NULL,'2019-10-09 10:42:42','2019-10-09 10:42:42',NULL,'open','none'),(133,69,'Demo','Demo',NULL,'2019-10-24 11:12:15','2019-10-24 11:12:15','','open','none'),(134,69,'Sources','',NULL,'2019-10-24 11:12:27','2019-10-24 11:12:27','','open','none'),(135,69,'Documentation','',NULL,'2019-10-24 11:12:38','2019-10-24 11:12:38','','open','none'),(136,69,'Binaries','',NULL,'2019-10-24 11:12:53','2019-10-24 11:12:53','','open','none'),(137,66,'ModeleN4','',NULL,'2019-12-06 18:38:17','2019-12-06 18:38:17',NULL,'open','none'),(138,66,'Documentation','',NULL,'2019-12-17 16:53:12','2019-12-17 16:53:12',NULL,'open','none'),(139,70,'Documentation','',NULL,'2020-02-20 16:06:33','2020-02-20 16:06:33',NULL,'open','none'),(140,70,'Binaries','',NULL,'2020-02-20 16:06:47','2020-02-20 16:06:47',NULL,'open','none'),(141,70,'Sources','',NULL,'2020-02-20 16:06:57','2020-02-20 16:06:57',NULL,'open','none'),(142,66,'Demo','Stockage de demo',NULL,'2020-05-04 17:53:15','2020-05-04 17:53:15',NULL,'open','none'),(143,70,'Demo','',NULL,'2020-05-09 17:15:14','2020-05-09 17:15:14',NULL,'open','none'),(144,71,'Demo','',NULL,'2020-06-18 15:33:32','2020-06-18 15:33:32','','open','none'),(145,71,'Sources','',NULL,'2020-06-18 15:33:39','2020-06-18 15:33:39','','open','none'),(146,71,'Documentation','',NULL,'2020-06-18 15:33:50','2020-06-18 15:33:50','','open','none'),(147,72,'Demo','',NULL,'2020-06-24 10:02:26','2020-06-24 10:02:26','','open','none'),(148,72,'Sources','',NULL,'2020-06-24 10:02:44','2020-06-24 10:02:44','','open','none'),(149,72,'Documentation','',NULL,'2020-06-24 10:02:56','2020-06-24 10:02:56','','open','none'),(150,72,'Binairies','',NULL,'2020-06-24 10:03:09','2020-06-24 10:03:09','','open','none'),(151,72,'Tools','',NULL,'2020-06-24 15:54:20','2020-06-24 15:54:20','','open','none'),(152,46,'OpenOpcUa_1.0.5.8','',NULL,'2020-07-03 16:24:46','2020-07-03 16:25:21','','open','none'),(153,46,'NodeSet 1.0.4','',NULL,'2020-07-03 16:25:54','2020-07-03 16:25:54','','open','none'),(154,73,'Doc','',NULL,'2020-07-29 14:44:57','2020-07-29 14:44:57','','open','none'),(155,73,'Sources','',NULL,'2020-07-29 14:45:04','2020-07-29 14:45:04','','open','none'),(156,73,'Binaries','',NULL,'2020-07-29 14:45:14','2020-07-29 14:45:14','','open','none'),(157,73,'Demo','',NULL,'2020-07-29 14:45:25','2020-07-29 14:45:25','','open','none'),(158,74,'Demo','',NULL,'2020-08-12 23:28:29','2020-08-12 23:28:29',NULL,'open','none'),(159,74,'Binaries','',NULL,'2020-08-12 23:28:50','2020-08-12 23:28:50',NULL,'open','none'),(160,74,'Doc','',NULL,'2020-08-12 23:29:05','2020-08-12 23:29:05',NULL,'open','none'),(161,75,'Doc','',NULL,'2020-09-04 13:33:23','2020-09-04 13:33:23','','open','none'),(162,75,'Binaries','',NULL,'2020-09-04 13:33:44','2020-09-04 13:33:44','','open','none'),(163,75,'Sources','',NULL,'2020-09-04 13:34:13','2020-09-04 13:34:13','','open','none'),(164,75,'Demo','',NULL,'2020-09-04 14:51:03','2020-09-04 14:51:03','','open','none'),(165,75,'Various','',NULL,'2020-09-04 16:13:08','2020-09-04 16:13:08','','open','none'),(166,76,'Demo','',NULL,'2020-09-23 08:55:41','2020-09-23 08:55:41',NULL,'open','none'),(167,76,'Doc','',NULL,'2020-09-23 08:55:51','2020-09-23 08:55:51',NULL,'open','none'),(168,76,'Sources','',NULL,'2020-09-23 08:56:00','2020-09-23 08:56:00',NULL,'open','none'),(169,76,'Binaries','',NULL,'2020-09-23 08:56:09','2020-09-23 08:56:09',NULL,'open','none'),(170,77,'Various Doc','',NULL,'2020-09-28 16:22:29','2020-09-28 16:22:29','','open','none'),(171,77,'Minutes','',NULL,'2020-09-28 16:22:38','2020-09-28 16:22:38','','open','none'),(172,77,'Demo','',NULL,'2020-09-28 16:22:54','2020-09-28 16:22:54','','open','none'),(173,40,'Demo','',NULL,'2020-10-06 23:13:35','2020-10-06 23:13:35','','open','none'),(174,40,'Doc','',NULL,'2020-10-06 23:13:43','2020-10-06 23:13:43','','open','none'),(175,78,'Doc','',NULL,'2020-11-04 20:11:42','2020-11-04 20:11:42','','open','none'),(176,78,'Tools','',NULL,'2020-11-04 20:11:50','2020-11-04 20:11:50','','open','none'),(177,78,'Other','',NULL,'2020-11-04 20:12:07','2020-11-04 20:12:07','','open','none'),(178,78,'Demo','',NULL,'2020-11-04 20:12:26','2020-11-04 20:12:26','','open','none'),(179,78,'Binaries','',NULL,'2020-11-19 10:31:09','2020-11-19 10:31:09','','open','none'),(180,78,'Xmi_Exported_Model','',NULL,'2020-11-19 11:55:33','2020-11-19 11:55:33','','open','none'),(181,73,'Tools','',NULL,'2020-12-01 19:23:40','2020-12-01 19:23:40','','open','none'),(182,75,'Tools','',NULL,'2020-12-09 11:28:53','2020-12-09 11:28:53','','open','none'),(183,79,'Doc','',NULL,'2021-01-08 09:37:56','2021-01-08 09:37:56','','open','none'),(184,79,'Binaries','',NULL,'2021-01-08 09:38:07','2021-01-08 09:38:07','','open','none'),(185,79,'Demo','',NULL,'2021-01-08 09:38:26','2021-01-08 09:38:26','','open','none'),(186,77,'Binaries','',NULL,'2021-02-04 13:59:43','2021-02-04 13:59:43','','open','none'),(187,72,'Various','',NULL,'2021-02-16 15:16:29','2021-02-16 15:16:29','','open','none'),(188,78,'Data Model 2.0','','2021-04-30','2021-02-19 14:43:33','2021-02-19 14:43:33','','open','none'),(189,80,'Documentation','',NULL,'2021-02-23 07:25:45','2021-02-23 07:25:45','','open','none'),(190,80,'Binaries','',NULL,'2021-02-23 07:25:58','2021-02-23 07:25:58','','open','none'),(191,80,'Demo','',NULL,'2021-02-23 07:26:18','2021-02-23 07:26:18','','open','none'),(192,80,'Administratif','',NULL,'2021-02-24 08:54:12','2021-02-24 08:54:12','','open','none'),(193,81,'Documentation','',NULL,'2021-02-24 12:49:21','2021-02-24 12:49:21','','open','none'),(194,81,'Binaries','',NULL,'2021-02-24 12:49:33','2021-02-24 12:49:33','','open','none'),(195,81,'OPC-40223','Pumps and Vacum pumps',NULL,'2021-02-24 13:29:32','2021-02-24 13:29:32','','open','none'),(196,77,'CCTP','',NULL,'2021-03-10 09:28:06','2021-03-10 09:28:06','','open','none'),(197,81,'Demo','',NULL,'2021-03-17 16:54:20','2021-03-17 16:54:20','','open','none'),(198,46,'1.0.5.9','',NULL,'2021-04-07 11:36:57','2021-04-07 11:36:57','','open','none'),(199,79,'Source','',NULL,'2021-04-09 11:55:59','2021-04-09 11:55:59','','open','none'),(200,46,'Tools','',NULL,'2021-04-29 21:05:32','2021-04-29 21:05:32','','open','none'),(201,69,'Tools','',NULL,'2021-04-29 21:06:16','2021-04-29 21:06:16','','open','none'),(202,62,'Tools','',NULL,'2021-04-29 21:07:40','2021-04-29 21:07:40','','open','none'),(203,54,'Tools','',NULL,'2021-04-29 21:08:36','2021-04-29 21:08:36','','open','none'),(204,71,'Tools','',NULL,'2021-04-29 21:09:29','2021-04-29 21:09:29','','open','none'),(205,81,'Tools','',NULL,'2021-06-24 17:17:22','2021-06-24 17:17:22','','open','none'),(206,82,'Tools','',NULL,'2021-06-30 16:57:27','2021-06-30 16:57:27','','open','none'),(207,82,'Binaries','',NULL,'2021-06-30 16:57:41','2021-06-30 16:57:41','','open','none'),(208,82,'Doc','',NULL,'2021-06-30 16:57:51','2021-06-30 16:57:51','','open','none'),(209,82,'Other','',NULL,'2021-06-30 16:58:01','2021-06-30 16:58:01','','open','none'),(210,82,'Atelier01','',NULL,'2021-07-01 13:48:50','2021-07-01 13:48:50','','open','none'),(211,82,'Atelier02','',NULL,'2021-07-01 13:49:00','2021-07-01 13:49:00','','open','none'),(212,82,'Atelier03','',NULL,'2021-07-01 13:49:09','2021-07-01 13:49:09','','open','none'),(213,82,'Atelier04','',NULL,'2021-07-01 13:49:16','2021-07-01 13:49:16','','open','none'),(214,82,'Atelier05','',NULL,'2021-07-01 13:49:24','2021-07-01 13:49:24','','open','none'),(215,82,'Atelier06','',NULL,'2021-07-01 13:49:31','2021-07-01 13:49:31','','open','none'),(216,82,'Atelier07','',NULL,'2021-07-01 13:49:38','2021-07-01 13:49:38','','open','none'),(217,82,'Atelier08','',NULL,'2021-07-05 15:35:45','2021-07-05 15:35:58','','open','none'),(218,84,'Ateliers','',NULL,'2021-08-19 09:46:01','2021-08-19 09:46:01','','open','none'),(219,84,'Supports','',NULL,'2021-08-19 09:46:15','2021-08-19 09:46:15','','open','none'),(220,84,'Divers','',NULL,'2021-08-19 09:46:25','2021-08-19 09:46:25','','open','none'),(221,84,'Atelier01','',NULL,'2021-08-19 09:47:36','2021-08-19 09:47:36','','open','none'),(222,84,'Atelier02','',NULL,'2021-08-19 09:47:45','2021-08-19 09:47:45','','open','none'),(223,84,'Atelier03','',NULL,'2021-08-19 09:47:56','2021-08-19 09:47:56','','open','none'),(224,84,'Atelier04','',NULL,'2021-08-19 09:48:08','2021-08-19 09:48:08','','open','none'),(225,84,'Atelier05','',NULL,'2021-08-19 09:48:20','2021-08-19 09:48:20','','open','none'),(226,84,'Atelier06','',NULL,'2021-08-20 23:54:59','2021-08-20 23:54:59','','open','none'),(227,84,'Atelier07','',NULL,'2021-08-20 23:55:10','2021-08-20 23:55:10','','open','none'),(228,70,'Tools','',NULL,'2021-10-06 14:13:00','2021-10-06 14:13:00',NULL,'open','none'),(229,88,'Doc','',NULL,'2021-10-18 16:45:27','2021-10-18 16:45:27','','open','none'),(230,88,'Binaries','',NULL,'2021-10-18 16:45:37','2021-10-18 16:45:37','','open','none'),(231,88,'MTConnect - 30070','',NULL,'2021-10-18 16:47:55','2021-10-18 16:49:39','','open','none'),(232,88,'CNC - 40502','',NULL,'2021-10-18 16:48:20','2021-10-18 16:50:14','','open','none'),(233,88,'Machine Tools - 40501-1','',NULL,'2021-10-18 16:48:48','2021-10-18 16:49:59','','open','none'),(234,88,'Machinery - 40001-1','',NULL,'2021-10-18 16:49:17','2021-10-18 16:49:17','','open','none'),(235,88,'Industrial Automation 10000-200','',NULL,'2021-10-18 16:50:49','2021-10-18 16:50:49','','open','none'),(236,89,'Demo','',NULL,'2021-10-19 18:22:54','2021-10-19 18:22:54','','open','none'),(237,89,'Tools','',NULL,'2021-10-19 18:23:02','2021-10-19 18:23:02','','open','none'),(238,89,'Doc','',NULL,'2021-10-19 18:23:07','2021-10-19 18:23:07','','open','none'),(239,89,'Binaries','',NULL,'2021-10-19 18:23:16','2021-10-19 18:23:16','','open','none'),(240,93,'Doc','',NULL,'2021-11-17 08:49:45','2021-11-17 08:49:45','','open','none'),(241,93,'Demo','',NULL,'2021-11-17 08:49:56','2021-11-17 08:49:56','','open','none'),(242,94,'Binaries','',NULL,'2021-11-17 22:11:12','2021-11-17 22:11:12',NULL,'open','none'),(243,94,'Doc','',NULL,'2021-12-13 12:01:23','2021-12-13 12:01:23',NULL,'open','none'),(244,78,'Sources','',NULL,'2021-12-17 14:38:49','2021-12-17 14:38:49','','open','none'),(245,92,'Demo','',NULL,'2022-01-05 15:33:20','2022-01-05 15:33:20','','open','none'),(246,95,'DEMO','',NULL,'2022-01-06 16:30:45','2022-01-06 16:30:45',NULL,'open','none'),(247,95,'BINAIRES','',NULL,'2022-01-06 16:30:56','2022-01-06 16:30:56',NULL,'open','none'),(248,95,'DOC','',NULL,'2022-01-06 16:31:20','2022-01-06 16:31:20',NULL,'open','none'),(249,96,'Doc','Documentation',NULL,'2022-01-13 17:12:36','2022-01-13 17:12:36','','open','none'),(250,96,'Sources','Source file',NULL,'2022-01-13 17:12:58','2022-01-13 17:12:58','','open','none'),(251,96,'Binaires','Binary file',NULL,'2022-01-13 17:13:13','2022-01-13 17:13:13','','open','none'),(252,96,'Demo','',NULL,'2022-01-13 17:13:27','2022-01-13 17:13:27','','open','none'),(253,92,'Model','',NULL,'2022-01-24 14:59:13','2022-01-24 14:59:13','','open','none'),(254,92,'Tools','',NULL,'2022-02-01 21:17:47','2022-02-01 21:17:47','','open','none'),(255,97,'Doc','',NULL,'2022-02-02 14:45:14','2022-02-02 14:45:14','','open','none'),(256,97,'Binaries','',NULL,'2022-02-02 14:45:29','2022-02-02 14:45:29','','open','none'),(257,97,'Lab01','',NULL,'2022-02-02 15:32:39','2022-02-02 15:32:39','','open','none'),(258,97,'Lab02','',NULL,'2022-02-02 15:32:48','2022-02-02 15:32:48','','open','none'),(259,97,'Model','',NULL,'2022-02-08 16:59:01','2022-02-08 16:59:01','','open','none'),(260,99,'Supports','',NULL,'2022-02-23 13:08:41','2022-02-23 13:10:27','','open','none'),(262,99,'Atelier01','',NULL,'2022-02-23 13:09:05','2022-02-23 13:12:36','','open','none'),(263,99,'Divers','',NULL,'2022-02-23 13:10:39','2022-02-23 13:10:39','','open','none'),(264,99,'Atelier02','',NULL,'2022-02-23 13:18:49','2022-02-23 13:18:49','','open','none'),(265,99,'Atelier03','',NULL,'2022-02-23 13:19:15','2022-02-23 13:19:15','','open','none'),(266,96,'Various','',NULL,'2022-03-03 16:29:21','2022-03-03 16:29:21','','open','none'),(267,100,'Demo','',NULL,'2022-03-08 16:18:49','2022-03-08 16:18:49','','open','none'),(268,100,'Binaries','',NULL,'2022-03-08 16:26:11','2022-03-08 16:26:11','','open','none'),(269,100,'Divers','',NULL,'2022-03-11 16:06:28','2022-03-11 16:06:28','','open','none'),(270,96,'Tools','',NULL,'2022-03-16 14:45:15','2022-03-16 14:45:15','','open','none'),(271,102,'Atelier01','',NULL,'2022-03-20 22:48:45','2022-03-20 22:48:45','','open','none'),(272,102,'Atelier02','',NULL,'2022-03-20 22:48:53','2022-03-20 22:48:53','','open','none'),(273,102,'Atelier03','',NULL,'2022-03-20 22:49:00','2022-03-20 22:49:00','','open','none'),(274,102,'Atelier04','',NULL,'2022-03-20 22:49:09','2022-03-20 22:49:09','','open','none'),(275,102,'Atelier05','',NULL,'2022-03-20 22:49:16','2022-03-20 22:49:16','','open','none'),(276,102,'Support','',NULL,'2022-03-20 22:49:30','2022-03-20 22:49:30','','open','none'),(277,102,'Doc','',NULL,'2022-03-20 22:49:36','2022-03-20 22:49:36','','open','none'),(278,102,'Binaries','',NULL,'2022-03-22 15:24:33','2022-03-22 15:24:33','','open','none'),(279,95,'Tools','',NULL,'2022-03-23 14:30:26','2022-03-23 14:30:26',NULL,'open','none'),(280,102,'Tools','',NULL,'2022-03-24 13:21:27','2022-03-24 13:21:27','','open','none'),(281,102,'Divers','',NULL,'2022-03-24 13:56:37','2022-03-24 13:56:37','','open','none'),(282,103,'Doc','',NULL,'2022-03-25 14:38:50','2022-03-25 14:38:50','','open','none'),(283,104,'DEMO','',NULL,'2022-03-29 08:48:40','2022-03-29 08:48:40','','open','none'),(284,104,'DOC','',NULL,'2022-03-29 08:48:46','2022-03-29 08:48:46','','open','none'),(285,104,'BINARIES','',NULL,'2022-03-29 08:48:58','2022-03-29 08:48:58','','open','none'),(286,104,'SOURCES','',NULL,'2022-03-29 08:49:05','2022-03-29 08:49:05','','open','none'),(287,104,'OTHER','',NULL,'2022-03-29 08:49:26','2022-03-29 08:49:26','','open','none'),(288,97,'Demo','',NULL,'2022-04-08 17:23:21','2022-04-08 17:23:21','','open','none'),(289,104,'TOOLS','',NULL,'2022-04-12 13:52:47','2022-04-12 13:52:47','','open','none'),(290,89,'Various','',NULL,'2022-04-12 23:32:10','2022-04-12 23:32:10','','open','none'),(291,103,'XmlSamples','',NULL,'2022-04-19 19:38:20','2022-04-19 19:38:20','','open','none'),(292,101,'Binaires','',NULL,'2022-04-20 09:46:44','2022-04-20 09:46:44','','open','none'),(293,92,'Doc','',NULL,'2022-04-21 20:58:17','2022-04-21 20:58:17','','open','none'),(294,49,'Doc','',NULL,'2022-05-03 16:13:53','2022-05-03 16:13:53','','open','none'),(295,49,'ATELIERS','',NULL,'2022-05-04 08:43:14','2022-05-04 08:43:14','','open','none'),(296,103,'Demo','',NULL,'2022-05-05 22:00:49','2022-05-05 22:00:49','','open','none'),(297,96,'Modele','',NULL,'2022-05-06 16:42:09','2022-05-06 16:42:09','','open','none'),(298,97,'Tools','',NULL,'2022-05-07 17:46:27','2022-05-07 17:46:27','','open','none'),(299,100,'Model','',NULL,'2022-06-30 17:20:01','2022-06-30 17:20:01','','open','none'),(300,106,'Doc','',NULL,'2022-07-04 10:56:03','2022-07-04 10:56:03','','open','none'),(301,106,'Atelier1','',NULL,'2022-07-04 10:56:16','2022-07-04 10:56:16','','open','none'),(302,106,'Atelier2','',NULL,'2022-07-04 10:56:46','2022-07-04 10:56:46','','open','none'),(303,106,'Atelier3','',NULL,'2022-07-04 11:07:26','2022-07-04 11:07:26','','open','none'),(304,106,'Atelier4','',NULL,'2022-07-04 11:07:34','2022-07-04 11:07:34','','open','none'),(305,106,'Atelier5','',NULL,'2022-07-04 11:07:42','2022-07-04 11:07:42','','open','none'),(306,106,'Atelier6','',NULL,'2022-07-04 11:07:49','2022-07-04 11:07:49','','open','none'),(307,89,'ComDaWrapper','',NULL,'2022-09-05 09:08:44','2022-09-05 09:08:44','','open','none'),(308,89,'Prod_Config','',NULL,'2022-09-07 14:09:11','2022-09-07 14:09:11','','open','none'),(309,103,'Binaries','',NULL,'2022-09-09 14:05:57','2022-09-09 14:05:57','','open','none'),(310,78,'Model','',NULL,'2022-10-12 14:09:44','2022-10-12 14:09:44','','open','none'),(311,73,'Various','',NULL,'2022-10-20 14:32:39','2022-10-20 14:32:39','','open','none'),(312,108,'DataModel','',NULL,'2023-01-12 09:34:41','2023-01-12 09:34:41','','open','none'),(313,108,'Doc','',NULL,'2023-01-12 09:35:11','2023-01-12 09:35:11','','open','none'),(314,108,'Tools','',NULL,'2023-01-12 09:35:18','2023-01-12 09:35:18','','open','none'),(315,108,'Binaries','',NULL,'2023-01-16 17:24:01','2023-01-16 17:24:01','','open','none'),(316,108,'Demo','',NULL,'2023-02-13 16:02:35','2023-02-13 16:02:35','','open','none');
/*!40000 ALTER TABLE `versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `watchers`
--
DROP TABLE IF EXISTS `watchers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `watchers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`watchable_type` varchar(255) NOT NULL DEFAULT '',
`watchable_id` int(11) NOT NULL DEFAULT '0',
`user_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `watchers_user_id_type` (`user_id`,`watchable_type`),
KEY `index_watchers_on_user_id` (`user_id`),
KEY `index_watchers_on_watchable_id_and_watchable_type` (`watchable_id`,`watchable_type`)
) ENGINE=InnoDB AUTO_INCREMENT=331 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `watchers`
--
LOCK TABLES `watchers` WRITE;
/*!40000 ALTER TABLE `watchers` DISABLE KEYS */;
INSERT INTO `watchers` VALUES (1,'News',1,1),(2,'News',2,1),(3,'News',3,1),(4,'News',4,1),(5,'News',5,1),(6,'News',6,1),(7,'News',7,1),(8,'News',8,1),(9,'News',9,1),(10,'News',10,1),(11,'News',11,1),(12,'News',12,1),(13,'News',13,1),(14,'News',14,1),(15,'News',15,1),(16,'News',16,1),(17,'News',17,1),(18,'News',18,1),(19,'Issue',14,134),(20,'News',19,1),(21,'News',20,1),(22,'Issue',14,146),(24,'News',21,1),(25,'News',22,1),(26,'Issue',18,164),(27,'News',23,1),(28,'News',24,1),(29,'Message',1,1),(31,'News',25,1),(32,'News',26,1),(33,'News',27,1),(34,'News',28,1),(35,'Message',3,197),(36,'Message',3,1),(37,'News',29,1),(38,'News',30,1),(39,'News',31,1),(40,'News',32,1),(41,'News',33,1),(42,'Message',5,92),(43,'News',34,1),(44,'News',35,1),(45,'News',36,1),(46,'News',37,1),(47,'News',38,1),(48,'News',39,1),(49,'News',40,1),(50,'News',41,1),(51,'News',42,1),(52,'News',43,1),(53,'News',44,1),(55,'News',45,1),(56,'News',46,1),(57,'News',47,1),(58,'News',48,1),(59,'News',49,1),(60,'Message',6,1),(61,'News',50,1),(62,'Board',4,269),(63,'Message',6,269),(64,'Message',7,269),(65,'Message',8,277),(66,'Issue',94,269),(67,'Issue',84,226),(68,'Issue',96,226),(69,'Issue',92,226),(70,'News',51,1),(71,'News',52,1),(72,'News',53,1),(73,'Message',7,1),(74,'News',54,1),(75,'News',55,1),(76,'News',56,1),(77,'Issue',113,283),(78,'Issue',112,283),(79,'Issue',114,295),(81,'News',57,1),(82,'News',58,1),(83,'News',59,1),(84,'News',60,1),(85,'News',61,1),(86,'News',62,1),(87,'Message',10,1),(88,'News',63,1),(89,'News',64,1),(90,'News',65,1),(91,'News',66,1),(92,'News',67,1),(93,'News',68,1),(94,'News',69,1),(95,'News',70,1),(96,'News',71,1),(98,'News',73,1),(99,'News',74,1),(100,'News',75,1),(101,'News',76,1),(102,'News',77,1),(103,'News',78,1),(104,'Issue',168,350),(105,'News',79,1),(106,'News',80,1),(107,'News',81,1),(108,'News',82,1),(109,'News',83,1),(110,'News',84,1),(111,'News',85,1),(112,'News',86,1),(113,'News',87,1),(114,'News',88,1),(115,'News',89,1),(116,'News',90,1),(117,'News',91,1),(118,'News',92,1),(119,'News',93,1),(120,'News',94,1),(121,'News',95,1),(122,'News',96,1),(123,'News',97,1),(124,'News',98,1),(125,'News',99,1),(126,'News',100,1),(127,'News',101,1),(128,'News',102,1),(129,'Issue',322,346),(130,'News',103,1),(131,'News',104,1),(132,'News',105,1),(133,'News',106,1),(134,'News',107,1),(135,'News',108,1),(136,'News',109,1),(137,'News',110,1),(138,'News',111,1),(139,'News',112,1),(140,'News',113,1),(141,'News',114,1),(142,'News',115,1),(143,'News',116,1),(144,'News',117,1),(145,'News',118,1),(146,'News',119,1),(147,'News',120,1),(148,'News',121,1),(149,'News',122,1),(150,'News',123,1),(151,'News',124,1),(152,'Board',2,418),(153,'News',125,1),(154,'News',126,1),(155,'News',127,1),(156,'WikiPage',5,1),(157,'News',128,1),(158,'News',129,1),(159,'News',130,1),(160,'News',131,1),(161,'News',132,1),(162,'News',133,1),(163,'News',134,1),(164,'News',135,1),(165,'News',136,1),(166,'News',137,1),(167,'News',138,1),(169,'News',140,1),(170,'News',141,1),(171,'News',142,1),(172,'News',143,1),(173,'Issue',492,398),(174,'News',144,1),(175,'News',145,1),(176,'News',146,1),(177,'News',147,1),(178,'News',148,1),(179,'News',149,1),(180,'Issue',518,459),(181,'News',150,1),(182,'News',151,1),(183,'News',152,1),(184,'News',153,1),(185,'News',154,1),(187,'Issue',532,398),(188,'News',155,1),(189,'News',156,1),(190,'News',157,1),(191,'Issue',554,462),(192,'News',158,1),(193,'News',159,1),(194,'News',160,1),(195,'News',161,1),(196,'News',162,1),(197,'News',163,1),(198,'News',164,1),(199,'News',165,1),(200,'News',166,1),(201,'News',167,1),(202,'News',168,1),(203,'News',169,1),(204,'News',170,1),(205,'News',171,1),(206,'News',172,1),(207,'News',173,1),(208,'News',174,1),(209,'News',175,1),(210,'News',176,1),(211,'News',177,1),(212,'News',178,1),(213,'Issue',483,259),(214,'News',179,1),(215,'News',180,1),(216,'News',181,1),(217,'News',182,1),(218,'News',183,1),(219,'News',184,1),(220,'News',185,1),(221,'News',186,1),(222,'News',187,1),(223,'News',188,1),(224,'News',189,1),(225,'News',190,1),(226,'News',191,1),(227,'News',192,1),(228,'News',193,1),(229,'News',194,1),(230,'News',195,1),(231,'News',196,1),(232,'News',197,1),(233,'News',198,1),(234,'News',199,1),(235,'News',200,1),(236,'News',201,1),(237,'News',202,1),(238,'News',203,1),(239,'News',204,1),(240,'News',205,1),(241,'News',206,1),(242,'News',207,1),(243,'News',208,1),(244,'News',209,1),(245,'News',210,1),(246,'News',211,1),(247,'News',212,1),(248,'News',213,1),(249,'News',214,1),(250,'News',215,1),(251,'News',216,1),(252,'News',217,1),(253,'News',218,1),(254,'News',219,1),(255,'News',220,1),(256,'News',221,1),(257,'News',222,1),(258,'News',223,1),(259,'News',224,1),(260,'News',225,1),(261,'News',226,1),(262,'News',227,1),(263,'News',228,1),(264,'News',229,1),(265,'News',230,1),(266,'News',231,1),(267,'News',232,1),(268,'News',233,1),(269,'News',234,1),(270,'News',235,1),(271,'News',236,1),(272,'News',237,1),(273,'News',238,1),(274,'News',239,1),(275,'News',240,1),(276,'News',241,1),(277,'News',242,1),(278,'News',243,1),(280,'News',244,1),(281,'News',245,1),(282,'News',246,1),(283,'News',247,1),(284,'News',248,1),(285,'News',249,1),(286,'News',250,1),(287,'News',251,1),(288,'News',252,1),(289,'News',253,1),(290,'News',254,1),(291,'News',255,1),(292,'News',256,1),(293,'News',257,1),(294,'News',258,1),(295,'News',259,1),(296,'News',260,1),(297,'News',261,1),(298,'News',262,1),(299,'News',263,1),(300,'News',264,1),(301,'News',265,1),(302,'Issue',877,575),(303,'News',266,1),(304,'News',267,1),(305,'News',268,1),(306,'News',269,1),(307,'News',270,1),(308,'News',271,1),(309,'News',272,1),(310,'News',273,1),(311,'News',274,1),(312,'News',275,1),(313,'News',276,1),(314,'News',277,1),(315,'News',278,1),(316,'News',279,1),(317,'News',280,1),(318,'News',281,1),(319,'News',282,1),(320,'News',283,1),(321,'News',284,1),(322,'News',285,1),(323,'News',286,1),(324,'News',287,1),(325,'News',288,1),(326,'News',289,1),(327,'News',290,1),(328,'News',291,1),(329,'News',292,1),(330,'News',293,1);
/*!40000 ALTER TABLE `watchers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wiki_content_versions`
--
DROP TABLE IF EXISTS `wiki_content_versions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wiki_content_versions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`wiki_content_id` int(11) NOT NULL,
`page_id` int(11) NOT NULL,
`author_id` int(11) DEFAULT NULL,
`data` longblob,
`compression` varchar(6) DEFAULT '',
`comments` varchar(1024) DEFAULT '',
`updated_on` datetime NOT NULL,
`version` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `wiki_content_versions_wcid` (`wiki_content_id`),
KEY `index_wiki_content_versions_on_updated_on` (`updated_on`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wiki_content_versions`
--
LOCK TABLES `wiki_content_versions` WRITE;
/*!40000 ALTER TABLE `wiki_content_versions` DISABLE KEYS */;
INSERT INTO `wiki_content_versions` VALUES (1,1,1,1,_binary 'h1. *OpenOpcUa for Sponsors*\r\nh2. v 1.0.2.8\r\nVersion 1.0.2.8 target Windows and Linux. \r\nThe Windows toolchain is supporting only Visual Studio 2013','','','2015-06-03 15:16:39',1),(2,1,1,1,_binary 'h1. *OpenOpcUa for Sponsors*\r\nv 1.0.2.8\r\n<pre>\r\nVersion 1.0.2.8 target Windows and Linux. \r\nThe Windows toolchain is supporting only Visual Studio 2013\r\n</pre>','','','2015-06-03 15:44:06',2),(3,2,2,1,_binary 'h1. Wiki\r\nQuelques informations utiles\r\nConversion décimale vers IEEE : http://babbage.cs.qc.cuny.edu/IEEE-754.old/Decimal.html','','','2016-10-10 15:40:04',1),(4,2,2,1,_binary 'h1. Quelques informations utiles\r\nConversion décimale vers IEEE : http://babbage.cs.qc.cuny.edu/IEEE-754.old/Decimal.html','','','2016-10-10 15:41:07',2),(5,2,2,1,_binary 'h1. Quelques informations utiles\r\nh2. Conversion décimale vers IEEE : \r\n http://babbage.cs.qc.cuny.edu/IEEE-754.old/Decimal.html\r\nh2. Conversion Float to hex : \r\n https://gregstoll.dyndns.org/~gregstoll/floattohex/','','','2016-10-30 14:01:29',3),(6,2,2,1,_binary 'h1. Quelques informations utiles\r\nh2. Conversion décimale vers IEEE : \r\n http://babbage.cs.qc.cuny.edu/IEEE-754.old/Decimal.html\r\nh2. Conversion Float to hex : \r\n https://gregstoll.dyndns.org/~gregstoll/floattohex/\r\nVpiS7\r\nUne nouvelle version est disponible. Elle prend en charge la lecture des chaines et de DB structurés\r\n','','','2016-11-30 14:07:44',4),(7,3,3,1,_binary 'h1. OpenOpcUaWiki\r\nOPC Foundation LDS\r\n\r\n* The Local Discovery Server (LDS) provides the necessary infrastructure to publicly expose the OPC UA Servers available on a given computer.\r\n* When OpenOpcUaCoreServer is configuration to register to the LDS you have to copy its certificate in C:\\ProgramData\\OPC Foundation\\UA\\Discovery\\pki\\trusted\\certs when using the OPC Fondation LDS.\r\n','','','2016-12-23 16:43:53',1),(8,3,3,1,_binary 'h1. OpenOpcUaWiki\r\nOPC Foundation LDS\r\n\r\n* The Local Discovery Server (LDS) provides the necessary infrastructure to publicly expose the OPC UA Servers available on a given computer.\r\n* When OpenOpcUaCoreServer is configured to register to the LDS you have to copy its certificate in C:\\ProgramData\\OPC Foundation\\UA\\Discovery\\pki\\trusted\\certs when using the OPC Fondation LDS.\r\n','','','2017-01-12 19:39:45',2),(9,1,1,1,_binary 'h1. *OpenOpcUa for Sponsors*\r\nv 1.0.2.8\r\n<pre>\r\nVersion 1.0.2.8 target Windows and Linux. \r\nThe Windows toolchain is supporting only Visual Studio 2013\r\n</pre>\r\nh1. Where are the Debug DLL for CRT VS2013 ?\r\nJust here\r\nC:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\VC\\redist\\Debug_NonRedist\\x86\\Microsoft.VC120.DebugCRT','','','2017-08-24 15:54:42',3),(10,4,4,1,_binary 'h1. Wiki\r\nIssue data_seg\r\nhttps://msdn.microsoft.com/en-us/library/h90dkhs0(v=vs.90).aspx\r\n','','','2017-09-01 16:27:41',1),(11,5,5,285,_binary 'Les progrès récents du Machine Learning grâce aux Graphical Processing Units (GPU) et aux Réseaux de neurones convolutifs profonds (Deep Learning et Convolutional Neural Networks) ont permis de développer des modèles prédictifs sur la base d’images.\r\nDes concours tels que Image Net, remportés par Google, Microsoft et d’autres géants du numérique ont permis de démontrer la performance de ces algorithmes pour l’analyse d’image (computer vision). Les méthodes mises en place sont performantes pour reconnaître des objets à partir de données supervisées, c’est-à-dire que l’apprentissage se fait à partir de données toujours labellisées. Tous les experts s’accordent à dire que ces avancées en intelligence artificielle sont indéniables depuis que le seuil d’erreur est meilleur que celui des humains soit 5% d’erreur dans la classification d’objets parmi 22,000 catégories. Les sujets d’apprentissage partiellement supervisé voire non-supervisé tels que la détection de la fraude, la détection d’anomalie et la maintenance prédictive sont plus difficiles. \r\nSans parler d’utiliser des images, la maintenance prédictive [respectivement la fraude] sur la base de données structurées « simples » (booléens, entiers ou flottants) est un sujet de recherche d’actualité : 166 [respectivement 195] thèses soutenues en France sur le sujet entre 2012 et 2017. L’analyse de données riches telles que des images, permettra d’aller plus loin dans la recherche et de mettre à profit l’effervescence actuelle sur les sujets d’apprentissage profond et de vision par ordinateur.\r\nAujourd’hui aucun système basé sur l’analyse d’image n’a fait ses preuves sur les sujets d’apprentissage non supervisé. Certains articles de recherche ont déjà été publiés très récemment autour de la détection d’anomalie grâce à l’apprentissage profond et l’analyse d’images, mais aucun n’est appliqué sur des données de process et ils exploitent des bases de données de recherche telles que MNIST, CIFAR-10 ou Image-Net. https://export.arxiv.org/pdf/1704.06743 \r\nTout travail dans ce domaine est aujourd’hui de l’ordre de la recherche à cause des différents verrous techniques et technologiques : \r\n- Capacité de calcul : les calculs multi-GPU nécessaires à l’apprentissage sur des centaines de milliers voire des millions d’images sont coûteux et ne sont maîtrisés que par un petit écosystème d’experts – il suffit de voir le taux de participation aux Kaggle de « computer vision » comparé à ceux d’analyse de données structurées limitées à des nombres et des caractères.\r\n- Difficulté à évaluer les performances des modèles non-supervisés. Même dans le cas de données partiellement labellisées, ces « labels » ne permettront pas de découvrir de nouveaux « patterns » de fraude ou d’anomalies.\r\n- Difficile d’anticiper ce que ces modèles permettront de trouver : le terme de sérendipité est récurrent en apprentissage non-supervisé parce que ces modèles permettent de répondre à des questions inattendues mais pas forcément à celles formulées initialement.\r\nCes recherches sont souvent l’occasion de mesurer la qualité des données disponibles et de définir les pistes d’amélioration (résolution, exposition, échantillonnage, besoin de redondance ie validation par plusieurs sources d’acquisition/points de vue…)\r\n\r\nNous proposons de traiter le sujet de l’application du deep learning à la détection d’anomalies dans les process industriels\r\n','','','2017-09-17 16:05:59',1),(12,6,6,1,_binary 'Utilisation de clrinterop\r\nIntroduction\r\nWelcome to the CLR Interop CodePlex site, which is managed by the CLR Interop team. Our goal is to provide tools and samples that enhance your interop development experience. Please feel free to share comments or feedback with us. \r\n\r\nProject Description: P/Invoke Interop Assistant\r\nIn marshalling there are many attributes and rules for dealing with types. Understanding all of these can be a bit daunting. To improve the development experience, the P/Invoke Interop Assistant was created. It is a tool that conveniently converts C/C++ to managed P/Invoke signatures or verse visa. It even comes with a database of Win32 functions, data types, and constants, so the common task of adding a Win32 P/Invoke to your C# or Visual Basic source file is made very easy. There is a great marshalling article on MSDN Magazine website which highlights the tool. We hope you enjoy it!\r\n\r\nProject Description: Type Library Importer in Managed Code \r\nTlbimp is a command line tool which creates a managed, interop assembly from a COM type library. This is essentially the same tool that was released with versions of the .NET Framework SDK, but written entirely in managed code. Providing a managed version will enable developers to explore and extend its features. We also plan on adding new features to make it more customizable. Stay tuned for more enhancements!\r\n\r\nProject Description: IL Stub Diagnostic Tool\r\nIL stubs are dynamically generated on the fly by the CLR and handle the marshalling and invocation of the target method. The IL Stub Diagnostic tool was created to ease the interop debugging experience. It is a real-time monitor which shows the details of every IL stub generated by the CLR in a given process. For each stub, the tool currently displays its IL code as well as the signature of the managed/native methods. This release is supported on Windows Vista+. Further, we plan on releasing enhancements of the tool during the Visual Studio 2010 Beta period. Stay tuned!!\r\n\r\nProject Description: CustomQueryInterface Sample - IDispatch and Aggregation\r\nICustomQueryInterface is a new interface that will be released in CLR v4. This feature will enable developers to provide their own managed implementation of custom and standard COM interfaces (except IUnknown). In this sample, we will show you how to construct a managed COM aggregation system in the context of a managed implementation of IDispatch with ICustomQueryInterface.\r\n\r\nProject Description: CustomQueryInterface Sample - IMarshal on WCF\r\nICustomQueryInterface is a new interface that will be released in CLR v4 and we already released a sample above to demo managed aggregation and customized IDispatch. To further demo the power of CustomQueryInterface and the ability to use the .Net technology (WCF) within COM world, this sample targets the customization of IMarshal interface by using WCF.','','','2018-09-25 16:28:42',1),(13,1,1,1,_binary 'h1. *OpenOpcUa for Sponsors*\r\nv 1.0.2.8\r\n<pre>\r\nVersion 1.0.2.8 target Windows and Linux. \r\nThe Windows toolchain is supporting only Visual Studio 2013\r\n</pre>\r\nh1. Where are the Debug DLL for CRT VS2013 ?\r\nJust here\r\nC:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\VC\\redist\\Debug_NonRedist\\x86\\Microsoft.VC120.DebugCRT\r\nh1. RFC5280\r\n - https://www.rfc-editor.org/rfc/rfc5280.html \r\n','','','2019-07-19 17:46:20',4),(14,5,5,1,_binary 'XGB : eXtreme Gradient Boosting\r\nXGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. It implements machine learning algorithms under the Gradient Boosting framework. XGBoost provides a parallel tree boosting (also known as GBDT, GBM) that solve many data science problems in a fast and accurate way. The same code runs on major distributed environment (Kubernetes, Hadoop, SGE, MPI, Dask) and can solve problems beyond billions of examples.\r\n\r\nGénéralités\r\n \r\nLes progrès récents du Machine Learning grâce aux Graphical Processing Units (GPU) et aux Réseaux de neurones convolutifs profonds (Deep Learning et Convolutional Neural Networks) ont permis de développer des modèles prédictifs sur la base d’images.\r\nDes concours tels que Image Net, remportés par Google, Microsoft et d’autres géants du numérique ont permis de démontrer la performance de ces algorithmes pour l’analyse d’image (computer vision). Les méthodes mises en place sont performantes pour reconnaître des objets à partir de données supervisées, c’est-à-dire que l’apprentissage se fait à partir de données toujours labellisées. Tous les experts s’accordent à dire que ces avancées en intelligence artificielle sont indéniables depuis que le seuil d’erreur est meilleur que celui des humains soit 5% d’erreur dans la classification d’objets parmi 22,000 catégories. Les sujets d’apprentissage partiellement supervisé voire non-supervisé tels que la détection de la fraude, la détection d’anomalie et la maintenance prédictive sont plus difficiles. \r\nSans parler d’utiliser des images, la maintenance prédictive [respectivement la fraude] sur la base de données structurées « simples » (booléens, entiers ou flottants) est un sujet de recherche d’actualité : 166 [respectivement 195] thèses soutenues en France sur le sujet entre 2012 et 2017. L’analyse de données riches telles que des images, permettra d’aller plus loin dans la recherche et de mettre à profit l’effervescence actuelle sur les sujets d’apprentissage profond et de vision par ordinateur.\r\nAujourd’hui aucun système basé sur l’analyse d’image n’a fait ses preuves sur les sujets d’apprentissage non supervisé. Certains articles de recherche ont déjà été publiés très récemment autour de la détection d’anomalie grâce à l’apprentissage profond et l’analyse d’images, mais aucun n’est appliqué sur des données de process et ils exploitent des bases de données de recherche telles que MNIST, CIFAR-10 ou Image-Net. https://export.arxiv.org/pdf/1704.06743 \r\nTout travail dans ce domaine est aujourd’hui de l’ordre de la recherche à cause des différents verrous techniques et technologiques : \r\n- Capacité de calcul : les calculs multi-GPU nécessaires à l’apprentissage sur des centaines de milliers voire des millions d’images sont coûteux et ne sont maîtrisés que par un petit écosystème d’experts – il suffit de voir le taux de participation aux Kaggle de « computer vision » comparé à ceux d’analyse de données structurées limitées à des nombres et des caractères.\r\n- Difficulté à évaluer les performances des modèles non-supervisés. Même dans le cas de données partiellement labellisées, ces « labels » ne permettront pas de découvrir de nouveaux « patterns » de fraude ou d’anomalies.\r\n- Difficile d’anticiper ce que ces modèles permettront de trouver : le terme de sérendipité est récurrent en apprentissage non-supervisé parce que ces modèles permettent de répondre à des questions inattendues mais pas forcément à celles formulées initialement.\r\nCes recherches sont souvent l’occasion de mesurer la qualité des données disponibles et de définir les pistes d’amélioration (résolution, exposition, échantillonnage, besoin de redondance ie validation par plusieurs sources d’acquisition/points de vue…)\r\n\r\nNous proposons de traiter le sujet de l’application du deep learning à la détection d’anomalies dans les process industriels\r\n','','','2020-06-05 12:44:41',2),(15,7,7,1,_binary 'h1. Gestion de la production\r\nh2. MRP est la planification des ressources de production, qui se décompose en trois phases :\r\nMRP0 : planification des besoins en composants (Material Requirements Planning). Système de planification qui détermine les besoins en composants à partir des demandes en produits finis et des approvisionnements existants (1965) ;\r\nh2. MRP1 : MRP0 auquel on a ajouté le calcul des charges de l\'outil de production engendrées par les besoins en composants (1971) ;\r\nh2. \r\nMRP2 : planification des capacités de production (Manufacturing Resources Planning). MRP1 intégrant un calcul des coûts de production et une planification des besoins intégrant la contrainte de charge à capacité finie de l\'outil de production (1979).','','','2020-06-15 18:47:20',1),(16,5,5,1,_binary 'XGB : eXtreme Gradient Boosting https://github.com/dmlc/xgboost\r\nXGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. It implements machine learning algorithms under the Gradient Boosting framework. XGBoost provides a parallel tree boosting (also known as GBDT, GBM) that solve many data science problems in a fast and accurate way. The same code runs on major distributed environment (Kubernetes, Hadoop, SGE, MPI, Dask) and can solve problems beyond billions of examples.\r\n\r\nGénéralités\r\n \r\nLes progrès récents du Machine Learning grâce aux Graphical Processing Units (GPU) et aux Réseaux de neurones convolutifs profonds (Deep Learning et Convolutional Neural Networks) ont permis de développer des modèles prédictifs sur la base d’images.\r\nDes concours tels que Image Net, remportés par Google, Microsoft et d’autres géants du numérique ont permis de démontrer la performance de ces algorithmes pour l’analyse d’image (computer vision). Les méthodes mises en place sont performantes pour reconnaître des objets à partir de données supervisées, c’est-à-dire que l’apprentissage se fait à partir de données toujours labellisées. Tous les experts s’accordent à dire que ces avancées en intelligence artificielle sont indéniables depuis que le seuil d’erreur est meilleur que celui des humains soit 5% d’erreur dans la classification d’objets parmi 22,000 catégories. Les sujets d’apprentissage partiellement supervisé voire non-supervisé tels que la détection de la fraude, la détection d’anomalie et la maintenance prédictive sont plus difficiles. \r\nSans parler d’utiliser des images, la maintenance prédictive [respectivement la fraude] sur la base de données structurées « simples » (booléens, entiers ou flottants) est un sujet de recherche d’actualité : 166 [respectivement 195] thèses soutenues en France sur le sujet entre 2012 et 2017. L’analyse de données riches telles que des images, permettra d’aller plus loin dans la recherche et de mettre à profit l’effervescence actuelle sur les sujets d’apprentissage profond et de vision par ordinateur.\r\nAujourd’hui aucun système basé sur l’analyse d’image n’a fait ses preuves sur les sujets d’apprentissage non supervisé. Certains articles de recherche ont déjà été publiés très récemment autour de la détection d’anomalie grâce à l’apprentissage profond et l’analyse d’images, mais aucun n’est appliqué sur des données de process et ils exploitent des bases de données de recherche telles que MNIST, CIFAR-10 ou Image-Net. https://export.arxiv.org/pdf/1704.06743 \r\nTout travail dans ce domaine est aujourd’hui de l’ordre de la recherche à cause des différents verrous techniques et technologiques : \r\n- Capacité de calcul : les calculs multi-GPU nécessaires à l’apprentissage sur des centaines de milliers voire des millions d’images sont coûteux et ne sont maîtrisés que par un petit écosystème d’experts – il suffit de voir le taux de participation aux Kaggle de « computer vision » comparé à ceux d’analyse de données structurées limitées à des nombres et des caractères.\r\n- Difficulté à évaluer les performances des modèles non-supervisés. Même dans le cas de données partiellement labellisées, ces « labels » ne permettront pas de découvrir de nouveaux « patterns » de fraude ou d’anomalies.\r\n- Difficile d’anticiper ce que ces modèles permettront de trouver : le terme de sérendipité est récurrent en apprentissage non-supervisé parce que ces modèles permettent de répondre à des questions inattendues mais pas forcément à celles formulées initialement.\r\nCes recherches sont souvent l’occasion de mesurer la qualité des données disponibles et de définir les pistes d’amélioration (résolution, exposition, échantillonnage, besoin de redondance ie validation par plusieurs sources d’acquisition/points de vue…)\r\n\r\nNous proposons de traiter le sujet de l’application du deep learning à la détection d’anomalies dans les process industriels\r\n','','','2020-06-17 11:48:51',3),(17,8,8,1,_binary 'h1. Wiki\r\nPour exécuter la démo :\r\n# Installer les binaires du VS2013 : https://www.microsoft.com/fr-FR/download/details.aspx?id=40784\r\n# Lancez le serveur : StartServerRelease.bat\r\n# Utilisez un client pour vous connecter au serveur','','','2020-06-18 15:50:56',1),(18,5,5,1,_binary 'XGB : eXtreme Gradient Boosting https://github.com/dmlc/xgboost\r\nXGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. It implements machine learning algorithms under the Gradient Boosting framework. XGBoost provides a parallel tree boosting (also known as GBDT, GBM) that solve many data science problems in a fast and accurate way. The same code runs on major distributed environment (Kubernetes, Hadoop, SGE, MPI, Dask) and can solve problems beyond billions of examples.\r\n\r\nGénéralités\r\n \r\nLes progrès récents du Machine Learning grâce aux Graphical Processing Units (GPU) et aux Réseaux de neurones convolutifs profonds (Deep Learning et Convolutional Neural Networks) ont permis de développer des modèles prédictifs sur la base d’images.\r\nDes concours tels que Image Net, remportés par Google, Microsoft et d’autres géants du numérique ont permis de démontrer la performance de ces algorithmes pour l’analyse d’image (computer vision). Les méthodes mises en place sont performantes pour reconnaître des objets à partir de données supervisées, c’est-à-dire que l’apprentissage se fait à partir de données toujours labellisées. Tous les experts s’accordent à dire que ces avancées en intelligence artificielle sont indéniables depuis que le seuil d’erreur est meilleur que celui des humains soit 5% d’erreur dans la classification d’objets parmi 22,000 catégories. Les sujets d’apprentissage partiellement supervisé voire non-supervisé tels que la détection de la fraude, la détection d’anomalie et la maintenance prédictive sont plus difficiles. \r\nSans parler d’utiliser des images, la maintenance prédictive [respectivement la fraude] sur la base de données structurées « simples » (booléens, entiers ou flottants) est un sujet de recherche d’actualité : 166 [respectivement 195] thèses soutenues en France sur le sujet entre 2012 et 2017. L’analyse de données riches telles que des images, permettra d’aller plus loin dans la recherche et de mettre à profit l’effervescence actuelle sur les sujets d’apprentissage profond et de vision par ordinateur.\r\nAujourd’hui aucun système basé sur l’analyse d’image n’a fait ses preuves sur les sujets d’apprentissage non supervisé. Certains articles de recherche ont déjà été publiés très récemment autour de la détection d’anomalie grâce à l’apprentissage profond et l’analyse d’images, mais aucun n’est appliqué sur des données de process et ils exploitent des bases de données de recherche telles que MNIST, CIFAR-10 ou Image-Net. https://export.arxiv.org/pdf/1704.06743 \r\nTout travail dans ce domaine est aujourd’hui de l’ordre de la recherche à cause des différents verrous techniques et technologiques : \r\n- Capacité de calcul : les calculs multi-GPU nécessaires à l’apprentissage sur des centaines de milliers voire des millions d’images sont coûteux et ne sont maîtrisés que par un petit écosystème d’experts – il suffit de voir le taux de participation aux Kaggle de « computer vision » comparé à ceux d’analyse de données structurées limitées à des nombres et des caractères.\r\n- Difficulté à évaluer les performances des modèles non-supervisés. Même dans le cas de données partiellement labellisées, ces « labels » ne permettront pas de découvrir de nouveaux « patterns » de fraude ou d’anomalies.\r\n- Difficile d’anticiper ce que ces modèles permettront de trouver : le terme de sérendipité est récurrent en apprentissage non-supervisé parce que ces modèles permettent de répondre à des questions inattendues mais pas forcément à celles formulées initialement.\r\nCes recherches sont souvent l’occasion de mesurer la qualité des données disponibles et de définir les pistes d’amélioration (résolution, exposition, échantillonnage, besoin de redondance ie validation par plusieurs sources d’acquisition/points de vue…)\r\n\r\nNous proposons de traiter le sujet de l’application du deep learning à la détection d’anomalies dans les process industriels\r\n\r\n\r\nFederated learning (also known as collaborative learning)\r\nhttps://en.m.wikipedia.org/wiki/Federated_learning\r\n','','','2021-08-24 17:21:23',4),(19,9,9,1,_binary 'h1. Wiki\r\nh2. Definition\r\nh3. Category \r\n@A category is a term used to classify lexical entries.@','','','2021-11-16 15:25:32',1),(20,3,3,1,_binary 'h1. OpenOpcUaWiki\r\nOPC Foundation LDS\r\n\r\n* The Local Discovery Server (LDS) provides the necessary infrastructure to publicly expose the OPC UA Servers available on a given computer.\r\n* When OpenOpcUaCoreServer is configured to register to the LDS you have to copy its certificate in C:\\ProgramData\\OPC Foundation\\UA\\Discovery\\pki\\trusted\\certs when using the OPC Fondation LDS.\r\n\r\nh1. What is ETL?\r\n* ETL, which stands for extract, transform and load, is a data integration process that combines data from multiple data sources into a single, consistent data store that is loaded into a data warehouse or other target system.\r\n* OOUACoreServer is the perfect software to achieve ETL.','','','2022-03-30 15:31:42',3),(21,3,3,1,_binary 'h1. OpenOpcUaWiki\r\nOPC Foundation LDS\r\n\r\n* The Local Discovery Server (LDS) provides the necessary infrastructure to publicly expose the OPC UA Servers available on a given computer.\r\n* When OpenOpcUaCoreServer is configured to register to the LDS you have to copy its certificate in C:\\ProgramData\\OPC Foundation\\UA\\Discovery\\pki\\trusted\\certs when using the OPC Fondation LDS.\r\n\r\nh1. What is ETL?\r\n\r\n* ETL, which stands for extract, transform and load, is a data integration process that combines data from multiple data sources into a single, consistent data store that is loaded into a data warehouse or other target system.\r\n* OOUACoreServer is the perfect software to achieve ETL.','','','2022-03-30 15:32:02',4),(22,3,3,1,_binary 'h1. OpenOpcUaWiki\r\nOPC Foundation LDS\r\n\r\n* The Local Discovery Server (LDS) provides the necessary infrastructure to publicly expose the OPC UA Servers available on a given computer.\r\n* When OpenOpcUaCoreServer is configured to register to the LDS you have to copy its certificate in C:\\ProgramData\\OPC Foundation\\UA\\Discovery\\pki\\trusted\\certs when using the OPC Fondation LDS.\r\n\r\nh1. What is ETL?\r\n\r\n* ETL, which stands for extract, transform and load, is a data integration process that combines data from multiple data sources into a single, consistent data store that is loaded into a data warehouse or other target system.\r\n* OOUACoreServer is the perfect software to achieve ETL.\r\n\r\nh1. ASCII_TABLE\r\n!ASII_TABLE.jpg!','','','2022-07-28 13:19:22',5),(23,3,3,1,_binary 'h1. OpenOpcUaWiki\r\nOPC Foundation LDS\r\n\r\n* The Local Discovery Server (LDS) provides the necessary infrastructure to publicly expose the OPC UA Servers available on a given computer.\r\n* When OpenOpcUaCoreServer is configured to register to the LDS you have to copy its certificate in C:\\ProgramData\\OPC Foundation\\UA\\Discovery\\pki\\trusted\\certs when using the OPC Fondation LDS.\r\n\r\nh1. What is ETL?\r\n\r\n* ETL, which stands for extract, transform and load, is a data integration process that combines data from multiple data sources into a single, consistent data store that is loaded into a data warehouse or other target system.\r\n* OOUACoreServer is the perfect software to achieve ETL.\r\n\r\nh1. ASCII_TABLE\r\n!ASII_TABLE.jpg!\r\n\r\nh1. LUA Tutorial Link\r\n* [[https://www.tutorialspoint.com/lua/if_else_statement_in_lua.htm]]','','','2022-08-01 18:06:58',6),(24,10,10,1,_binary 'h1. Structure Padding article\r\nhttps://thoughts-on-coding.com/2020/09/14/structure-padding-in-cpp/\r\n','','','2022-08-20 16:29:50',1);
/*!40000 ALTER TABLE `wiki_content_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wiki_contents`
--
DROP TABLE IF EXISTS `wiki_contents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wiki_contents` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`page_id` int(11) NOT NULL,
`author_id` int(11) DEFAULT NULL,
`text` longtext,
`comments` varchar(1024) DEFAULT '',
`updated_on` datetime NOT NULL,
`version` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `wiki_contents_page_id` (`page_id`),
KEY `index_wiki_contents_on_author_id` (`author_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wiki_contents`
--
LOCK TABLES `wiki_contents` WRITE;
/*!40000 ALTER TABLE `wiki_contents` DISABLE KEYS */;
INSERT INTO `wiki_contents` VALUES (1,1,1,'h1. *OpenOpcUa for Sponsors*\r\nv 1.0.2.8\r\n<pre>\r\nVersion 1.0.2.8 target Windows and Linux. \r\nThe Windows toolchain is supporting only Visual Studio 2013\r\n</pre>\r\nh1. Where are the Debug DLL for CRT VS2013 ?\r\nJust here\r\nC:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\VC\\redist\\Debug_NonRedist\\x86\\Microsoft.VC120.DebugCRT\r\nh1. RFC5280\r\n - https://www.rfc-editor.org/rfc/rfc5280.html \r\n','','2019-07-19 17:46:20',4),(2,2,1,'h1. Quelques informations utiles\r\nh2. Conversion décimale vers IEEE : \r\n http://babbage.cs.qc.cuny.edu/IEEE-754.old/Decimal.html\r\nh2. Conversion Float to hex : \r\n https://gregstoll.dyndns.org/~gregstoll/floattohex/\r\nVpiS7\r\nUne nouvelle version est disponible. Elle prend en charge la lecture des chaines et de DB structurés\r\n','','2016-11-30 14:07:44',4),(3,3,1,'h1. OpenOpcUaWiki\r\nOPC Foundation LDS\r\n\r\n* The Local Discovery Server (LDS) provides the necessary infrastructure to publicly expose the OPC UA Servers available on a given computer.\r\n* When OpenOpcUaCoreServer is configured to register to the LDS you have to copy its certificate in C:\\ProgramData\\OPC Foundation\\UA\\Discovery\\pki\\trusted\\certs when using the OPC Fondation LDS.\r\n\r\nh1. What is ETL?\r\n\r\n* ETL, which stands for extract, transform and load, is a data integration process that combines data from multiple data sources into a single, consistent data store that is loaded into a data warehouse or other target system.\r\n* OOUACoreServer is the perfect software to achieve ETL.\r\n\r\nh1. ASCII_TABLE\r\n!ASII_TABLE.jpg!\r\n\r\nh1. LUA Tutorial Link\r\n* [[https://www.tutorialspoint.com/lua/if_else_statement_in_lua.htm]]','','2022-08-01 18:06:58',6),(4,4,1,'h1. Wiki\r\nIssue data_seg\r\nhttps://msdn.microsoft.com/en-us/library/h90dkhs0(v=vs.90).aspx\r\n','','2017-09-01 16:27:41',1),(5,5,1,'XGB : eXtreme Gradient Boosting https://github.com/dmlc/xgboost\r\nXGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. It implements machine learning algorithms under the Gradient Boosting framework. XGBoost provides a parallel tree boosting (also known as GBDT, GBM) that solve many data science problems in a fast and accurate way. The same code runs on major distributed environment (Kubernetes, Hadoop, SGE, MPI, Dask) and can solve problems beyond billions of examples.\r\n\r\nGénéralités\r\n \r\nLes progrès récents du Machine Learning grâce aux Graphical Processing Units (GPU) et aux Réseaux de neurones convolutifs profonds (Deep Learning et Convolutional Neural Networks) ont permis de développer des modèles prédictifs sur la base d’images.\r\nDes concours tels que Image Net, remportés par Google, Microsoft et d’autres géants du numérique ont permis de démontrer la performance de ces algorithmes pour l’analyse d’image (computer vision). Les méthodes mises en place sont performantes pour reconnaître des objets à partir de données supervisées, c’est-à-dire que l’apprentissage se fait à partir de données toujours labellisées. Tous les experts s’accordent à dire que ces avancées en intelligence artificielle sont indéniables depuis que le seuil d’erreur est meilleur que celui des humains soit 5% d’erreur dans la classification d’objets parmi 22,000 catégories. Les sujets d’apprentissage partiellement supervisé voire non-supervisé tels que la détection de la fraude, la détection d’anomalie et la maintenance prédictive sont plus difficiles. \r\nSans parler d’utiliser des images, la maintenance prédictive [respectivement la fraude] sur la base de données structurées « simples » (booléens, entiers ou flottants) est un sujet de recherche d’actualité : 166 [respectivement 195] thèses soutenues en France sur le sujet entre 2012 et 2017. L’analyse de données riches telles que des images, permettra d’aller plus loin dans la recherche et de mettre à profit l’effervescence actuelle sur les sujets d’apprentissage profond et de vision par ordinateur.\r\nAujourd’hui aucun système basé sur l’analyse d’image n’a fait ses preuves sur les sujets d’apprentissage non supervisé. Certains articles de recherche ont déjà été publiés très récemment autour de la détection d’anomalie grâce à l’apprentissage profond et l’analyse d’images, mais aucun n’est appliqué sur des données de process et ils exploitent des bases de données de recherche telles que MNIST, CIFAR-10 ou Image-Net. https://export.arxiv.org/pdf/1704.06743 \r\nTout travail dans ce domaine est aujourd’hui de l’ordre de la recherche à cause des différents verrous techniques et technologiques : \r\n- Capacité de calcul : les calculs multi-GPU nécessaires à l’apprentissage sur des centaines de milliers voire des millions d’images sont coûteux et ne sont maîtrisés que par un petit écosystème d’experts – il suffit de voir le taux de participation aux Kaggle de « computer vision » comparé à ceux d’analyse de données structurées limitées à des nombres et des caractères.\r\n- Difficulté à évaluer les performances des modèles non-supervisés. Même dans le cas de données partiellement labellisées, ces « labels » ne permettront pas de découvrir de nouveaux « patterns » de fraude ou d’anomalies.\r\n- Difficile d’anticiper ce que ces modèles permettront de trouver : le terme de sérendipité est récurrent en apprentissage non-supervisé parce que ces modèles permettent de répondre à des questions inattendues mais pas forcément à celles formulées initialement.\r\nCes recherches sont souvent l’occasion de mesurer la qualité des données disponibles et de définir les pistes d’amélioration (résolution, exposition, échantillonnage, besoin de redondance ie validation par plusieurs sources d’acquisition/points de vue…)\r\n\r\nNous proposons de traiter le sujet de l’application du deep learning à la détection d’anomalies dans les process industriels\r\n\r\n\r\nFederated learning (also known as collaborative learning)\r\nhttps://en.m.wikipedia.org/wiki/Federated_learning\r\n','','2021-08-24 17:21:23',4),(6,6,1,'Utilisation de clrinterop\r\nIntroduction\r\nWelcome to the CLR Interop CodePlex site, which is managed by the CLR Interop team. Our goal is to provide tools and samples that enhance your interop development experience. Please feel free to share comments or feedback with us. \r\n\r\nProject Description: P/Invoke Interop Assistant\r\nIn marshalling there are many attributes and rules for dealing with types. Understanding all of these can be a bit daunting. To improve the development experience, the P/Invoke Interop Assistant was created. It is a tool that conveniently converts C/C++ to managed P/Invoke signatures or verse visa. It even comes with a database of Win32 functions, data types, and constants, so the common task of adding a Win32 P/Invoke to your C# or Visual Basic source file is made very easy. There is a great marshalling article on MSDN Magazine website which highlights the tool. We hope you enjoy it!\r\n\r\nProject Description: Type Library Importer in Managed Code \r\nTlbimp is a command line tool which creates a managed, interop assembly from a COM type library. This is essentially the same tool that was released with versions of the .NET Framework SDK, but written entirely in managed code. Providing a managed version will enable developers to explore and extend its features. We also plan on adding new features to make it more customizable. Stay tuned for more enhancements!\r\n\r\nProject Description: IL Stub Diagnostic Tool\r\nIL stubs are dynamically generated on the fly by the CLR and handle the marshalling and invocation of the target method. The IL Stub Diagnostic tool was created to ease the interop debugging experience. It is a real-time monitor which shows the details of every IL stub generated by the CLR in a given process. For each stub, the tool currently displays its IL code as well as the signature of the managed/native methods. This release is supported on Windows Vista+. Further, we plan on releasing enhancements of the tool during the Visual Studio 2010 Beta period. Stay tuned!!\r\n\r\nProject Description: CustomQueryInterface Sample - IDispatch and Aggregation\r\nICustomQueryInterface is a new interface that will be released in CLR v4. This feature will enable developers to provide their own managed implementation of custom and standard COM interfaces (except IUnknown). In this sample, we will show you how to construct a managed COM aggregation system in the context of a managed implementation of IDispatch with ICustomQueryInterface.\r\n\r\nProject Description: CustomQueryInterface Sample - IMarshal on WCF\r\nICustomQueryInterface is a new interface that will be released in CLR v4 and we already released a sample above to demo managed aggregation and customized IDispatch. To further demo the power of CustomQueryInterface and the ability to use the .Net technology (WCF) within COM world, this sample targets the customization of IMarshal interface by using WCF.','','2018-09-25 16:28:42',1),(7,7,1,'h1. Gestion de la production\r\nh2. MRP est la planification des ressources de production, qui se décompose en trois phases :\r\nMRP0 : planification des besoins en composants (Material Requirements Planning). Système de planification qui détermine les besoins en composants à partir des demandes en produits finis et des approvisionnements existants (1965) ;\r\nh2. MRP1 : MRP0 auquel on a ajouté le calcul des charges de l\'outil de production engendrées par les besoins en composants (1971) ;\r\nh2. \r\nMRP2 : planification des capacités de production (Manufacturing Resources Planning). MRP1 intégrant un calcul des coûts de production et une planification des besoins intégrant la contrainte de charge à capacité finie de l\'outil de production (1979).','','2020-06-15 18:47:20',1),(8,8,1,'h1. Wiki\r\nPour exécuter la démo :\r\n# Installer les binaires du VS2013 : https://www.microsoft.com/fr-FR/download/details.aspx?id=40784\r\n# Lancez le serveur : StartServerRelease.bat\r\n# Utilisez un client pour vous connecter au serveur','','2020-06-18 15:50:56',1),(9,9,1,'h1. Wiki\r\nh2. Definition\r\nh3. Category \r\n@A category is a term used to classify lexical entries.@','','2021-11-16 15:25:32',1),(10,10,1,'h1. Structure Padding article\r\nhttps://thoughts-on-coding.com/2020/09/14/structure-padding-in-cpp/\r\n','','2022-08-20 16:29:50',1);
/*!40000 ALTER TABLE `wiki_contents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wiki_pages`
--
DROP TABLE IF EXISTS `wiki_pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wiki_pages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`wiki_id` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`created_on` datetime NOT NULL,
`protected` tinyint(1) NOT NULL DEFAULT '0',
`parent_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `wiki_pages_wiki_id_title` (`wiki_id`,`title`),
KEY `index_wiki_pages_on_wiki_id` (`wiki_id`),
KEY `index_wiki_pages_on_parent_id` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wiki_pages`
--
LOCK TABLES `wiki_pages` WRITE;
/*!40000 ALTER TABLE `wiki_pages` DISABLE KEYS */;
INSERT INTO `wiki_pages` VALUES (1,42,'Wiki','2015-06-03 15:16:39',0,NULL),(2,44,'Wiki','2016-10-10 15:40:04',0,NULL),(3,1,'Wiki','2016-12-23 16:43:53',0,NULL),(4,50,'Wiki','2017-09-01 16:27:41',0,NULL),(5,51,'Wiki','2017-09-17 16:05:59',0,NULL),(6,45,'Wiki','2018-09-25 16:28:42',0,NULL),(7,15,'Wiki','2020-06-15 18:47:20',0,NULL),(8,60,'Wiki','2020-06-18 15:50:56',0,NULL),(9,79,'Wiki','2021-11-16 15:25:32',0,NULL),(10,40,'Wiki','2022-08-20 16:29:50',0,NULL);
/*!40000 ALTER TABLE `wiki_pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wiki_redirects`
--
DROP TABLE IF EXISTS `wiki_redirects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wiki_redirects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`wiki_id` int(11) NOT NULL,
`title` varchar(255) DEFAULT NULL,
`redirects_to` varchar(255) DEFAULT NULL,
`created_on` datetime NOT NULL,
`redirects_to_wiki_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `wiki_redirects_wiki_id_title` (`wiki_id`,`title`),
KEY `index_wiki_redirects_on_wiki_id` (`wiki_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wiki_redirects`
--
LOCK TABLES `wiki_redirects` WRITE;
/*!40000 ALTER TABLE `wiki_redirects` DISABLE KEYS */;
/*!40000 ALTER TABLE `wiki_redirects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wikis`
--
DROP TABLE IF EXISTS `wikis`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wikis` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL,
`start_page` varchar(255) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `wikis_project_id` (`project_id`)
) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wikis`
--
LOCK TABLES `wikis` WRITE;
/*!40000 ALTER TABLE `wikis` DISABLE KEYS */;
INSERT INTO `wikis` VALUES (1,1,'Wiki',1),(3,3,'Wiki',1),(4,4,'Wiki',1),(5,5,'Wiki',1),(6,6,'Wiki',1),(7,7,'Wiki',1),(8,8,'Wiki',1),(9,9,'Wiki',1),(10,10,'Wiki',1),(11,11,'Wiki',1),(12,12,'Wiki',1),(13,13,'Wiki',1),(14,14,'Wiki',1),(15,15,'Wiki',1),(16,16,'Wiki',1),(17,17,'Wiki',1),(18,18,'Wiki',1),(19,19,'Wiki',1),(20,20,'Wiki',1),(21,21,'Wiki',1),(23,23,'Wiki',1),(24,24,'Wiki',1),(25,25,'Wiki',1),(26,26,'Wiki',1),(28,28,'Wiki',1),(29,29,'Wiki',1),(30,30,'Wiki',1),(31,31,'Wiki',1),(32,32,'Wiki',1),(33,34,'Wiki',1),(34,35,'Wiki',1),(39,40,'Wiki',1),(40,43,'Wiki',1),(41,44,'Wiki',1),(42,46,'Wiki',1),(43,47,'Wiki',1),(44,48,'Wiki',1),(45,49,'Wiki',1),(46,50,'Wiki',1),(47,51,'Wiki',1),(48,52,'Wiki',1),(49,53,'Wiki',1),(50,54,'Wiki',1),(51,55,'Wiki',1),(52,56,'Wiki',1),(53,57,'Wiki',1),(54,58,'Wiki',1),(55,59,'Wiki',1),(56,60,'Wiki',1),(57,62,'Wiki',1),(58,67,'Wiki',1),(59,69,'Wiki',1),(60,71,'Wiki',1),(61,72,'Wiki',1),(62,73,'Wiki',1),(63,75,'Wiki',1),(64,77,'Wiki',1),(65,78,'Wiki',1),(66,79,'Wiki',1),(67,80,'Wiki',1),(68,81,'Wiki',1),(69,82,'Wiki',1),(70,83,'Wiki',1),(71,84,'Wiki',1),(72,85,'Wiki',1),(73,86,'Wiki',1),(74,87,'Wiki',1),(75,88,'Wiki',1),(76,89,'Wiki',1),(77,90,'Wiki',1),(78,91,'Wiki',1),(79,92,'Wiki',1),(80,93,'Wiki',1),(81,96,'Wiki',1),(82,97,'Wiki',1),(83,99,'Wiki',1),(84,100,'Wiki',1),(85,101,'Wiki',1),(86,102,'Wiki',1),(87,103,'Wiki',1),(88,104,'Wiki',1),(89,105,'Wiki',1),(90,106,'Wiki',1),(91,108,'Wiki',1),(92,109,'Wiki',1);
/*!40000 ALTER TABLE `wikis` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `workflows`
--
DROP TABLE IF EXISTS `workflows`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `workflows` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tracker_id` int(11) NOT NULL DEFAULT '0',
`old_status_id` int(11) NOT NULL DEFAULT '0',
`new_status_id` int(11) NOT NULL DEFAULT '0',
`role_id` int(11) NOT NULL DEFAULT '0',
`assignee` tinyint(1) NOT NULL DEFAULT '0',
`author` tinyint(1) NOT NULL DEFAULT '0',
`type` varchar(30) DEFAULT NULL,
`field_name` varchar(30) DEFAULT NULL,
`rule` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `wkfs_role_tracker_old_status` (`role_id`,`tracker_id`,`old_status_id`),
KEY `index_workflows_on_old_status_id` (`old_status_id`),
KEY `index_workflows_on_role_id` (`role_id`),
KEY `index_workflows_on_new_status_id` (`new_status_id`),
KEY `index_workflows_on_tracker_id` (`tracker_id`)
) ENGINE=InnoDB AUTO_INCREMENT=447 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `workflows`
--
LOCK TABLES `workflows` WRITE;
/*!40000 ALTER TABLE `workflows` DISABLE KEYS */;
INSERT INTO `workflows` VALUES (1,1,1,2,3,0,0,'WorkflowTransition',NULL,NULL),(2,1,1,3,3,0,0,'WorkflowTransition',NULL,NULL),(3,1,1,4,3,0,0,'WorkflowTransition',NULL,NULL),(4,1,1,5,3,0,0,'WorkflowTransition',NULL,NULL),(5,1,1,6,3,0,0,'WorkflowTransition',NULL,NULL),(6,1,2,1,3,0,0,'WorkflowTransition',NULL,NULL),(7,1,2,3,3,0,0,'WorkflowTransition',NULL,NULL),(8,1,2,4,3,0,0,'WorkflowTransition',NULL,NULL),(9,1,2,5,3,0,0,'WorkflowTransition',NULL,NULL),(10,1,2,6,3,0,0,'WorkflowTransition',NULL,NULL),(11,1,3,1,3,0,0,'WorkflowTransition',NULL,NULL),(12,1,3,2,3,0,0,'WorkflowTransition',NULL,NULL),(13,1,3,4,3,0,0,'WorkflowTransition',NULL,NULL),(14,1,3,5,3,0,0,'WorkflowTransition',NULL,NULL),(15,1,3,6,3,0,0,'WorkflowTransition',NULL,NULL),(16,1,4,1,3,0,0,'WorkflowTransition',NULL,NULL),(17,1,4,2,3,0,0,'WorkflowTransition',NULL,NULL),(18,1,4,3,3,0,0,'WorkflowTransition',NULL,NULL),(19,1,4,5,3,0,0,'WorkflowTransition',NULL,NULL),(20,1,4,6,3,0,0,'WorkflowTransition',NULL,NULL),(21,1,5,1,3,0,0,'WorkflowTransition',NULL,NULL),(22,1,5,2,3,0,0,'WorkflowTransition',NULL,NULL),(23,1,5,3,3,0,0,'WorkflowTransition',NULL,NULL),(24,1,5,4,3,0,0,'WorkflowTransition',NULL,NULL),(25,1,5,6,3,0,0,'WorkflowTransition',NULL,NULL),(26,1,6,1,3,0,0,'WorkflowTransition',NULL,NULL),(27,1,6,2,3,0,0,'WorkflowTransition',NULL,NULL),(28,1,6,3,3,0,0,'WorkflowTransition',NULL,NULL),(29,1,6,4,3,0,0,'WorkflowTransition',NULL,NULL),(30,1,6,5,3,0,0,'WorkflowTransition',NULL,NULL),(31,2,1,2,3,0,0,'WorkflowTransition',NULL,NULL),(32,2,1,3,3,0,0,'WorkflowTransition',NULL,NULL),(33,2,1,4,3,0,0,'WorkflowTransition',NULL,NULL),(34,2,1,5,3,0,0,'WorkflowTransition',NULL,NULL),(35,2,1,6,3,0,0,'WorkflowTransition',NULL,NULL),(36,2,2,1,3,0,0,'WorkflowTransition',NULL,NULL),(37,2,2,3,3,0,0,'WorkflowTransition',NULL,NULL),(38,2,2,4,3,0,0,'WorkflowTransition',NULL,NULL),(39,2,2,5,3,0,0,'WorkflowTransition',NULL,NULL),(40,2,2,6,3,0,0,'WorkflowTransition',NULL,NULL),(41,2,3,1,3,0,0,'WorkflowTransition',NULL,NULL),(42,2,3,2,3,0,0,'WorkflowTransition',NULL,NULL),(43,2,3,4,3,0,0,'WorkflowTransition',NULL,NULL),(44,2,3,5,3,0,0,'WorkflowTransition',NULL,NULL),(45,2,3,6,3,0,0,'WorkflowTransition',NULL,NULL),(46,2,4,1,3,0,0,'WorkflowTransition',NULL,NULL),(47,2,4,2,3,0,0,'WorkflowTransition',NULL,NULL),(48,2,4,3,3,0,0,'WorkflowTransition',NULL,NULL),(49,2,4,5,3,0,0,'WorkflowTransition',NULL,NULL),(50,2,4,6,3,0,0,'WorkflowTransition',NULL,NULL),(51,2,5,1,3,0,0,'WorkflowTransition',NULL,NULL),(52,2,5,2,3,0,0,'WorkflowTransition',NULL,NULL),(53,2,5,3,3,0,0,'WorkflowTransition',NULL,NULL),(54,2,5,4,3,0,0,'WorkflowTransition',NULL,NULL),(55,2,5,6,3,0,0,'WorkflowTransition',NULL,NULL),(56,2,6,1,3,0,0,'WorkflowTransition',NULL,NULL),(57,2,6,2,3,0,0,'WorkflowTransition',NULL,NULL),(58,2,6,3,3,0,0,'WorkflowTransition',NULL,NULL),(59,2,6,4,3,0,0,'WorkflowTransition',NULL,NULL),(60,2,6,5,3,0,0,'WorkflowTransition',NULL,NULL),(61,3,1,2,3,0,0,'WorkflowTransition',NULL,NULL),(62,3,1,3,3,0,0,'WorkflowTransition',NULL,NULL),(63,3,1,4,3,0,0,'WorkflowTransition',NULL,NULL),(64,3,1,5,3,0,0,'WorkflowTransition',NULL,NULL),(65,3,1,6,3,0,0,'WorkflowTransition',NULL,NULL),(66,3,2,1,3,0,0,'WorkflowTransition',NULL,NULL),(67,3,2,3,3,0,0,'WorkflowTransition',NULL,NULL),(68,3,2,4,3,0,0,'WorkflowTransition',NULL,NULL),(69,3,2,5,3,0,0,'WorkflowTransition',NULL,NULL),(70,3,2,6,3,0,0,'WorkflowTransition',NULL,NULL),(71,3,3,1,3,0,0,'WorkflowTransition',NULL,NULL),(72,3,3,2,3,0,0,'WorkflowTransition',NULL,NULL),(73,3,3,4,3,0,0,'WorkflowTransition',NULL,NULL),(74,3,3,5,3,0,0,'WorkflowTransition',NULL,NULL),(75,3,3,6,3,0,0,'WorkflowTransition',NULL,NULL),(76,3,4,1,3,0,0,'WorkflowTransition',NULL,NULL),(77,3,4,2,3,0,0,'WorkflowTransition',NULL,NULL),(78,3,4,3,3,0,0,'WorkflowTransition',NULL,NULL),(79,3,4,5,3,0,0,'WorkflowTransition',NULL,NULL),(80,3,4,6,3,0,0,'WorkflowTransition',NULL,NULL),(81,3,5,1,3,0,0,'WorkflowTransition',NULL,NULL),(82,3,5,2,3,0,0,'WorkflowTransition',NULL,NULL),(83,3,5,3,3,0,0,'WorkflowTransition',NULL,NULL),(84,3,5,4,3,0,0,'WorkflowTransition',NULL,NULL),(85,3,5,6,3,0,0,'WorkflowTransition',NULL,NULL),(86,3,6,1,3,0,0,'WorkflowTransition',NULL,NULL),(87,3,6,2,3,0,0,'WorkflowTransition',NULL,NULL),(88,3,6,3,3,0,0,'WorkflowTransition',NULL,NULL),(89,3,6,4,3,0,0,'WorkflowTransition',NULL,NULL),(90,3,6,5,3,0,0,'WorkflowTransition',NULL,NULL),(91,1,1,2,4,0,0,'WorkflowTransition',NULL,NULL),(92,1,1,3,4,0,0,'WorkflowTransition',NULL,NULL),(93,1,1,4,4,0,0,'WorkflowTransition',NULL,NULL),(94,1,1,5,4,0,0,'WorkflowTransition',NULL,NULL),(95,1,2,3,4,0,0,'WorkflowTransition',NULL,NULL),(96,1,2,4,4,0,0,'WorkflowTransition',NULL,NULL),(97,1,2,5,4,0,0,'WorkflowTransition',NULL,NULL),(98,1,3,2,4,0,0,'WorkflowTransition',NULL,NULL),(99,1,3,4,4,0,0,'WorkflowTransition',NULL,NULL),(100,1,3,5,4,0,0,'WorkflowTransition',NULL,NULL),(101,1,4,2,4,0,0,'WorkflowTransition',NULL,NULL),(102,1,4,3,4,0,0,'WorkflowTransition',NULL,NULL),(103,1,4,5,4,0,0,'WorkflowTransition',NULL,NULL),(104,2,1,2,4,0,0,'WorkflowTransition',NULL,NULL),(105,2,1,3,4,0,0,'WorkflowTransition',NULL,NULL),(106,2,1,4,4,0,0,'WorkflowTransition',NULL,NULL),(107,2,1,5,4,0,0,'WorkflowTransition',NULL,NULL),(108,2,2,3,4,0,0,'WorkflowTransition',NULL,NULL),(109,2,2,4,4,0,0,'WorkflowTransition',NULL,NULL),(110,2,2,5,4,0,0,'WorkflowTransition',NULL,NULL),(111,2,3,2,4,0,0,'WorkflowTransition',NULL,NULL),(112,2,3,4,4,0,0,'WorkflowTransition',NULL,NULL),(113,2,3,5,4,0,0,'WorkflowTransition',NULL,NULL),(114,2,4,2,4,0,0,'WorkflowTransition',NULL,NULL),(115,2,4,3,4,0,0,'WorkflowTransition',NULL,NULL),(116,2,4,5,4,0,0,'WorkflowTransition',NULL,NULL),(117,3,1,2,4,0,0,'WorkflowTransition',NULL,NULL),(118,3,1,3,4,0,0,'WorkflowTransition',NULL,NULL),(119,3,1,4,4,0,0,'WorkflowTransition',NULL,NULL),(120,3,1,5,4,0,0,'WorkflowTransition',NULL,NULL),(121,3,2,3,4,0,0,'WorkflowTransition',NULL,NULL),(122,3,2,4,4,0,0,'WorkflowTransition',NULL,NULL),(123,3,2,5,4,0,0,'WorkflowTransition',NULL,NULL),(124,3,3,2,4,0,0,'WorkflowTransition',NULL,NULL),(125,3,3,4,4,0,0,'WorkflowTransition',NULL,NULL),(126,3,3,5,4,0,0,'WorkflowTransition',NULL,NULL),(127,3,4,2,4,0,0,'WorkflowTransition',NULL,NULL),(128,3,4,3,4,0,0,'WorkflowTransition',NULL,NULL),(129,3,4,5,4,0,0,'WorkflowTransition',NULL,NULL),(130,1,1,5,5,0,0,'WorkflowTransition',NULL,NULL),(131,1,2,5,5,0,0,'WorkflowTransition',NULL,NULL),(132,1,3,5,5,0,0,'WorkflowTransition',NULL,NULL),(133,1,4,5,5,0,0,'WorkflowTransition',NULL,NULL),(134,1,3,4,5,0,0,'WorkflowTransition',NULL,NULL),(135,2,1,5,5,0,0,'WorkflowTransition',NULL,NULL),(136,2,2,5,5,0,0,'WorkflowTransition',NULL,NULL),(137,2,3,5,5,0,0,'WorkflowTransition',NULL,NULL),(138,2,4,5,5,0,0,'WorkflowTransition',NULL,NULL),(139,2,3,4,5,0,0,'WorkflowTransition',NULL,NULL),(140,3,1,5,5,0,0,'WorkflowTransition',NULL,NULL),(141,3,2,5,5,0,0,'WorkflowTransition',NULL,NULL),(142,3,3,5,5,0,0,'WorkflowTransition',NULL,NULL),(143,3,4,5,5,0,0,'WorkflowTransition',NULL,NULL),(144,3,3,4,5,0,0,'WorkflowTransition',NULL,NULL),(145,1,1,0,4,0,0,'WorkflowPermission','project_id','readonly'),(146,2,1,0,4,0,0,'WorkflowPermission','project_id','readonly'),(147,3,1,0,4,0,0,'WorkflowPermission','project_id','readonly'),(148,1,2,0,4,0,0,'WorkflowPermission','project_id','readonly'),(149,2,2,0,4,0,0,'WorkflowPermission','project_id','readonly'),(150,3,2,0,4,0,0,'WorkflowPermission','project_id','readonly'),(151,1,4,0,4,0,0,'WorkflowPermission','project_id','readonly'),(152,2,4,0,4,0,0,'WorkflowPermission','project_id','readonly'),(153,3,4,0,4,0,0,'WorkflowPermission','project_id','readonly'),(154,1,3,0,4,0,0,'WorkflowPermission','project_id','readonly'),(155,2,3,0,4,0,0,'WorkflowPermission','project_id','readonly'),(156,3,3,0,4,0,0,'WorkflowPermission','project_id','readonly'),(157,1,5,0,4,0,0,'WorkflowPermission','project_id','readonly'),(158,2,5,0,4,0,0,'WorkflowPermission','project_id','readonly'),(159,3,5,0,4,0,0,'WorkflowPermission','project_id','readonly'),(160,1,6,0,4,0,0,'WorkflowPermission','project_id','readonly'),(161,2,6,0,4,0,0,'WorkflowPermission','project_id','readonly'),(162,3,6,0,4,0,0,'WorkflowPermission','project_id','readonly'),(176,1,0,1,1,0,0,'WorkflowTransition',NULL,NULL),(177,2,0,1,1,0,0,'WorkflowTransition',NULL,NULL),(178,3,0,1,1,0,0,'WorkflowTransition',NULL,NULL),(179,1,0,1,2,0,0,'WorkflowTransition',NULL,NULL),(180,2,0,1,2,0,0,'WorkflowTransition',NULL,NULL),(181,3,0,1,2,0,0,'WorkflowTransition',NULL,NULL),(182,1,0,1,3,0,0,'WorkflowTransition',NULL,NULL),(183,2,0,1,3,0,0,'WorkflowTransition',NULL,NULL),(184,3,0,1,3,0,0,'WorkflowTransition',NULL,NULL),(185,1,0,1,4,0,0,'WorkflowTransition',NULL,NULL),(186,2,0,1,4,0,0,'WorkflowTransition',NULL,NULL),(187,3,0,1,4,0,0,'WorkflowTransition',NULL,NULL),(188,1,0,1,5,0,0,'WorkflowTransition',NULL,NULL),(189,2,0,1,5,0,0,'WorkflowTransition',NULL,NULL),(190,3,0,1,5,0,0,'WorkflowTransition',NULL,NULL),(191,1,0,1,6,0,0,'WorkflowTransition',NULL,NULL),(192,2,0,1,6,0,0,'WorkflowTransition',NULL,NULL),(193,3,0,1,6,0,0,'WorkflowTransition',NULL,NULL),(194,1,0,1,7,0,0,'WorkflowTransition',NULL,NULL),(195,2,0,1,7,0,0,'WorkflowTransition',NULL,NULL),(196,3,0,1,7,0,0,'WorkflowTransition',NULL,NULL),(197,1,0,1,8,0,0,'WorkflowTransition',NULL,NULL),(198,2,0,1,8,0,0,'WorkflowTransition',NULL,NULL),(199,3,0,1,8,0,0,'WorkflowTransition',NULL,NULL),(207,1,0,2,3,0,0,'WorkflowTransition',NULL,NULL),(208,1,0,3,3,0,0,'WorkflowTransition',NULL,NULL),(209,1,0,4,3,0,0,'WorkflowTransition',NULL,NULL),(210,1,0,5,3,0,0,'WorkflowTransition',NULL,NULL),(211,1,0,6,3,0,0,'WorkflowTransition',NULL,NULL),(212,1,0,2,4,0,0,'WorkflowTransition',NULL,NULL),(213,1,0,3,4,0,0,'WorkflowTransition',NULL,NULL),(214,1,0,4,4,0,0,'WorkflowTransition',NULL,NULL),(215,1,0,5,4,0,0,'WorkflowTransition',NULL,NULL),(216,1,0,5,5,0,0,'WorkflowTransition',NULL,NULL),(217,2,0,2,3,0,0,'WorkflowTransition',NULL,NULL),(218,2,0,3,3,0,0,'WorkflowTransition',NULL,NULL),(219,2,0,4,3,0,0,'WorkflowTransition',NULL,NULL),(220,2,0,5,3,0,0,'WorkflowTransition',NULL,NULL),(221,2,0,6,3,0,0,'WorkflowTransition',NULL,NULL),(222,2,0,2,4,0,0,'WorkflowTransition',NULL,NULL),(223,2,0,3,4,0,0,'WorkflowTransition',NULL,NULL),(224,2,0,4,4,0,0,'WorkflowTransition',NULL,NULL),(225,2,0,5,4,0,0,'WorkflowTransition',NULL,NULL),(226,2,0,5,5,0,0,'WorkflowTransition',NULL,NULL),(227,3,0,2,3,0,0,'WorkflowTransition',NULL,NULL),(228,3,0,3,3,0,0,'WorkflowTransition',NULL,NULL),(229,3,0,4,3,0,0,'WorkflowTransition',NULL,NULL),(230,3,0,5,3,0,0,'WorkflowTransition',NULL,NULL),(231,3,0,6,3,0,0,'WorkflowTransition',NULL,NULL),(232,3,0,2,4,0,0,'WorkflowTransition',NULL,NULL),(233,3,0,3,4,0,0,'WorkflowTransition',NULL,NULL),(234,3,0,4,4,0,0,'WorkflowTransition',NULL,NULL),(235,3,0,5,4,0,0,'WorkflowTransition',NULL,NULL),(236,3,0,5,5,0,0,'WorkflowTransition',NULL,NULL),(237,4,0,1,1,0,0,'WorkflowTransition',NULL,NULL),(238,4,0,1,3,0,0,'WorkflowTransition',NULL,NULL),(239,4,0,2,3,0,0,'WorkflowTransition',NULL,NULL),(240,4,0,3,3,0,0,'WorkflowTransition',NULL,NULL),(241,4,0,4,3,0,0,'WorkflowTransition',NULL,NULL),(242,4,0,5,3,0,0,'WorkflowTransition',NULL,NULL),(243,4,0,6,3,0,0,'WorkflowTransition',NULL,NULL),(244,4,1,2,3,0,0,'WorkflowTransition',NULL,NULL),(245,4,1,3,3,0,0,'WorkflowTransition',NULL,NULL),(246,4,1,4,3,0,0,'WorkflowTransition',NULL,NULL),(247,4,1,5,3,0,0,'WorkflowTransition',NULL,NULL),(248,4,1,6,3,0,0,'WorkflowTransition',NULL,NULL),(249,4,2,1,3,0,0,'WorkflowTransition',NULL,NULL),(250,4,2,3,3,0,0,'WorkflowTransition',NULL,NULL),(251,4,2,4,3,0,0,'WorkflowTransition',NULL,NULL),(252,4,2,5,3,0,0,'WorkflowTransition',NULL,NULL),(253,4,2,6,3,0,0,'WorkflowTransition',NULL,NULL),(254,4,3,1,3,0,0,'WorkflowTransition',NULL,NULL),(255,4,3,2,3,0,0,'WorkflowTransition',NULL,NULL),(256,4,3,4,3,0,0,'WorkflowTransition',NULL,NULL),(257,4,3,5,3,0,0,'WorkflowTransition',NULL,NULL),(258,4,3,6,3,0,0,'WorkflowTransition',NULL,NULL),(259,4,4,1,3,0,0,'WorkflowTransition',NULL,NULL),(260,4,4,2,3,0,0,'WorkflowTransition',NULL,NULL),(261,4,4,3,3,0,0,'WorkflowTransition',NULL,NULL),(262,4,4,5,3,0,0,'WorkflowTransition',NULL,NULL),(263,4,4,6,3,0,0,'WorkflowTransition',NULL,NULL),(264,4,5,1,3,0,0,'WorkflowTransition',NULL,NULL),(265,4,5,2,3,0,0,'WorkflowTransition',NULL,NULL),(266,4,5,3,3,0,0,'WorkflowTransition',NULL,NULL),(267,4,5,4,3,0,0,'WorkflowTransition',NULL,NULL),(268,4,5,6,3,0,0,'WorkflowTransition',NULL,NULL),(269,4,6,1,3,0,0,'WorkflowTransition',NULL,NULL),(270,4,6,2,3,0,0,'WorkflowTransition',NULL,NULL),(271,4,6,3,3,0,0,'WorkflowTransition',NULL,NULL),(272,4,6,4,3,0,0,'WorkflowTransition',NULL,NULL),(273,4,6,5,3,0,0,'WorkflowTransition',NULL,NULL),(301,4,0,1,4,0,0,'WorkflowTransition',NULL,NULL),(302,4,0,2,4,0,0,'WorkflowTransition',NULL,NULL),(303,4,0,3,4,0,0,'WorkflowTransition',NULL,NULL),(304,4,0,4,4,0,0,'WorkflowTransition',NULL,NULL),(305,4,0,5,4,0,0,'WorkflowTransition',NULL,NULL),(306,4,1,2,4,0,0,'WorkflowTransition',NULL,NULL),(307,4,1,3,4,0,0,'WorkflowTransition',NULL,NULL),(308,4,1,4,4,0,0,'WorkflowTransition',NULL,NULL),(309,4,1,5,4,0,0,'WorkflowTransition',NULL,NULL),(310,4,1,0,4,0,0,'WorkflowPermission','project_id','readonly'),(311,4,2,3,4,0,0,'WorkflowTransition',NULL,NULL),(312,4,2,4,4,0,0,'WorkflowTransition',NULL,NULL),(313,4,2,5,4,0,0,'WorkflowTransition',NULL,NULL),(314,4,2,0,4,0,0,'WorkflowPermission','project_id','readonly'),(315,4,3,2,4,0,0,'WorkflowTransition',NULL,NULL),(316,4,3,4,4,0,0,'WorkflowTransition',NULL,NULL),(317,4,3,5,4,0,0,'WorkflowTransition',NULL,NULL),(318,4,3,0,4,0,0,'WorkflowPermission','project_id','readonly'),(319,4,4,2,4,0,0,'WorkflowTransition',NULL,NULL),(320,4,4,3,4,0,0,'WorkflowTransition',NULL,NULL),(321,4,4,5,4,0,0,'WorkflowTransition',NULL,NULL),(322,4,4,0,4,0,0,'WorkflowPermission','project_id','readonly'),(323,4,5,0,4,0,0,'WorkflowPermission','project_id','readonly'),(324,4,6,0,4,0,0,'WorkflowPermission','project_id','readonly'),(332,4,1,5,5,0,0,'WorkflowTransition',NULL,NULL),(333,4,2,5,5,0,0,'WorkflowTransition',NULL,NULL),(334,4,3,5,5,0,0,'WorkflowTransition',NULL,NULL),(335,4,4,5,5,0,0,'WorkflowTransition',NULL,NULL),(336,4,3,4,5,0,0,'WorkflowTransition',NULL,NULL),(337,4,0,1,5,0,0,'WorkflowTransition',NULL,NULL),(338,4,0,5,5,0,0,'WorkflowTransition',NULL,NULL),(339,4,0,1,6,0,0,'WorkflowTransition',NULL,NULL),(340,4,0,1,7,0,0,'WorkflowTransition',NULL,NULL),(341,4,0,1,8,0,0,'WorkflowTransition',NULL,NULL),(342,5,0,1,1,0,0,'WorkflowTransition',NULL,NULL),(343,5,0,1,3,0,0,'WorkflowTransition',NULL,NULL),(344,5,0,2,3,0,0,'WorkflowTransition',NULL,NULL),(345,5,0,3,3,0,0,'WorkflowTransition',NULL,NULL),(346,5,0,4,3,0,0,'WorkflowTransition',NULL,NULL),(347,5,0,5,3,0,0,'WorkflowTransition',NULL,NULL),(348,5,0,6,3,0,0,'WorkflowTransition',NULL,NULL),(349,5,1,2,3,0,0,'WorkflowTransition',NULL,NULL),(350,5,1,3,3,0,0,'WorkflowTransition',NULL,NULL),(351,5,1,4,3,0,0,'WorkflowTransition',NULL,NULL),(352,5,1,5,3,0,0,'WorkflowTransition',NULL,NULL),(353,5,1,6,3,0,0,'WorkflowTransition',NULL,NULL),(354,5,2,1,3,0,0,'WorkflowTransition',NULL,NULL),(355,5,2,3,3,0,0,'WorkflowTransition',NULL,NULL),(356,5,2,4,3,0,0,'WorkflowTransition',NULL,NULL),(357,5,2,5,3,0,0,'WorkflowTransition',NULL,NULL),(358,5,2,6,3,0,0,'WorkflowTransition',NULL,NULL),(359,5,3,1,3,0,0,'WorkflowTransition',NULL,NULL),(360,5,3,2,3,0,0,'WorkflowTransition',NULL,NULL),(361,5,3,4,3,0,0,'WorkflowTransition',NULL,NULL),(362,5,3,5,3,0,0,'WorkflowTransition',NULL,NULL),(363,5,3,6,3,0,0,'WorkflowTransition',NULL,NULL),(364,5,4,1,3,0,0,'WorkflowTransition',NULL,NULL),(365,5,4,2,3,0,0,'WorkflowTransition',NULL,NULL),(366,5,4,3,3,0,0,'WorkflowTransition',NULL,NULL),(367,5,4,5,3,0,0,'WorkflowTransition',NULL,NULL),(368,5,4,6,3,0,0,'WorkflowTransition',NULL,NULL),(369,5,5,1,3,0,0,'WorkflowTransition',NULL,NULL),(370,5,5,2,3,0,0,'WorkflowTransition',NULL,NULL),(371,5,5,3,3,0,0,'WorkflowTransition',NULL,NULL),(372,5,5,4,3,0,0,'WorkflowTransition',NULL,NULL),(373,5,5,6,3,0,0,'WorkflowTransition',NULL,NULL),(374,5,6,1,3,0,0,'WorkflowTransition',NULL,NULL),(375,5,6,2,3,0,0,'WorkflowTransition',NULL,NULL),(376,5,6,3,3,0,0,'WorkflowTransition',NULL,NULL),(377,5,6,4,3,0,0,'WorkflowTransition',NULL,NULL),(378,5,6,5,3,0,0,'WorkflowTransition',NULL,NULL),(406,5,0,1,4,0,0,'WorkflowTransition',NULL,NULL),(407,5,0,2,4,0,0,'WorkflowTransition',NULL,NULL),(408,5,0,3,4,0,0,'WorkflowTransition',NULL,NULL),(409,5,0,4,4,0,0,'WorkflowTransition',NULL,NULL),(410,5,0,5,4,0,0,'WorkflowTransition',NULL,NULL),(411,5,1,2,4,0,0,'WorkflowTransition',NULL,NULL),(412,5,1,3,4,0,0,'WorkflowTransition',NULL,NULL),(413,5,1,4,4,0,0,'WorkflowTransition',NULL,NULL),(414,5,1,5,4,0,0,'WorkflowTransition',NULL,NULL),(415,5,1,0,4,0,0,'WorkflowPermission','project_id','readonly'),(416,5,2,3,4,0,0,'WorkflowTransition',NULL,NULL),(417,5,2,4,4,0,0,'WorkflowTransition',NULL,NULL),(418,5,2,5,4,0,0,'WorkflowTransition',NULL,NULL),(419,5,2,0,4,0,0,'WorkflowPermission','project_id','readonly'),(420,5,3,2,4,0,0,'WorkflowTransition',NULL,NULL),(421,5,3,4,4,0,0,'WorkflowTransition',NULL,NULL),(422,5,3,5,4,0,0,'WorkflowTransition',NULL,NULL),(423,5,3,0,4,0,0,'WorkflowPermission','project_id','readonly'),(424,5,4,2,4,0,0,'WorkflowTransition',NULL,NULL),(425,5,4,3,4,0,0,'WorkflowTransition',NULL,NULL),(426,5,4,5,4,0,0,'WorkflowTransition',NULL,NULL),(427,5,4,0,4,0,0,'WorkflowPermission','project_id','readonly'),(428,5,5,0,4,0,0,'WorkflowPermission','project_id','readonly'),(429,5,6,0,4,0,0,'WorkflowPermission','project_id','readonly'),(437,5,1,5,5,0,0,'WorkflowTransition',NULL,NULL),(438,5,2,5,5,0,0,'WorkflowTransition',NULL,NULL),(439,5,3,5,5,0,0,'WorkflowTransition',NULL,NULL),(440,5,4,5,5,0,0,'WorkflowTransition',NULL,NULL),(441,5,3,4,5,0,0,'WorkflowTransition',NULL,NULL),(442,5,0,1,5,0,0,'WorkflowTransition',NULL,NULL),(443,5,0,5,5,0,0,'WorkflowTransition',NULL,NULL),(444,5,0,1,6,0,0,'WorkflowTransition',NULL,NULL),(445,5,0,1,7,0,0,'WorkflowTransition',NULL,NULL),(446,5,0,1,8,0,0,'WorkflowTransition',NULL,NULL);
/*!40000 ALTER TABLE `workflows` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping events for database 'bitnami_redmine'
--
--
-- Dumping routines for database 'bitnami_redmine'
--
--
-- Current Database: `test`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `test`;
--
-- Dumping events for database 'test'
--
--
-- Dumping routines for database 'test'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-02-19 18:04:41